sql stringlengths 6 1.05M |
|---|
<reponame>Shuttl-Tech/antlr_psql
-- file:timestamptz.sql ln:85 expect:true
INSERT INTO TIMESTAMPTZ_TBL VALUES ('Feb 10 17:32:01 1997 -0800')
|
<gh_stars>10-100
CREATE TABLE [dbo].[Record](
CreatedDateTime DateTime NOT NULL) |
<filename>data/adt/legacy/emptyadt.sql<gh_stars>1-10
delete from patient;
delete from patientname;
delete from patientaddress;
delete from patientrace; |
<gh_stars>0
REPLACE INTO `thinkox_hooks` (`id`, `name`, `description`, `type`, `update_time`, `addons`) VALUES
(1, 'pageHeader', '页面header钩子,一般用于加载插件CSS文件和代码', 1, 0, 'ImageSlider'),
(2, 'pageFooter', '页面footer钩子,一般用于加载插件JS文件和JS代码', 1, 0, 'ReturnTop,SuperLinks'),
(3, 'documentEditForm', '添加编辑表单的 扩展内容钩子', 1, 0, 'Attachment'),
(4, 'documentDetailAfter', '文档末尾显示', 1, 0, 'Attachment,SocialComment,Avatar,Tianyi'),
(5, 'documentDetailBefore', '页面内容前显示用钩子', 1, 0, ''),
(6, 'documentSaveComplete', '保存文档数据后的扩展钩子', 2, 0, 'Attachment'),
(7, 'documentEditFormContent', '添加编辑表单的内容显示钩子', 1, 0, 'Editor'),
(8, 'adminArticleEdit', '后台内容编辑页编辑器', 1, 1378982734, 'EditorForAdmin'),
(13, 'AdminIndex', '首页小格子个性化显示', 1, 1382596073, 'SiteStat,SystemInfo,DevTeam,SyncLogin,Advertising'),
(14, 'topicComment', '评论提交方式扩展钩子。', 1, 1380163518, 'Editor'),
(16, 'app_begin', '应用开始', 2, 1384481614, 'Models'),
(17, 'checkin', '签到', 1, 1395371353, 'Checkin'),
(18, 'Rank', '签到排名钩子', 1, 1395387442, 'Rank_checkin'),
(20, 'support', '赞', 1, 1398264759, 'Support'),
(21, 'localComment', '本地评论插件', 1, 1399440321, 'LocalComment'),
(22, 'weiboType', '插入图片', 1, 1402390749, 'InsertImage,InsertFile'),
(23, 'repost', '转发钩子', 1, 1403668286, 'Repost'),
(24, 'syncLogin', '第三方登陆位置', 1, 1403700579, 'SyncLogin'),
(25, 'syncMeta', '第三方登陆meta接口', 1, 1403700633, 'SyncLogin'),
(26, 'J_China_City', '每个系统都需要的一个中国省市区三级联动插件。', 1, 1403841931, 'ChinaCity'),
(27, 'Advs', '广告位插件', 1, 1406687667, 'Advs'),
(28, 'imageSlider', '图片轮播钩子', 1, 1407144022, 'ImageSlider'),
(29, 'friendLink', '友情链接插件', 1, 1407156413, 'SuperLinks'),
(30, 'beforeSendWeibo', '在发微博之前预处理微博', 2, 1408084504, 'InsertFile'),
(31, 'beforeSendRepost', '转发微博前的预处理钩子', 2, 1408085689, '');
|
CREATE USER 'console'@'%' IDENTIFIED BY 'defaultpass';
grant all privileges on saturn_console.* to 'console'@'%' identified by 'defaultpass' with grant option;
flush privileges;
# chang it in production: set password for 'console'@'%'=PASSWORD('<PASSWORD>'); flush privileges; |
<filename>DataAccessLayer/ConcreteDataStore/SqlIndexDataStore/Scripts/StoredProcedures/update/update_UpdateEntityIndexEntry.sql
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
-- =============================================
-- Author: richa
-- Create date: 2013-03-06
-- Description: Update Azure entity index entry
-- =============================================
USE IndexDatastore;
IF OBJECT_ID('dbo.UpdateEntityIndexEntry') IS NULL
EXEC('CREATE PROCEDURE dbo.UpdateEntityIndexEntry AS BEGIN SET NOCOUNT ON; END')
GO
ALTER PROCEDURE dbo.UpdateEntityIndexEntry
@ExternalEntityId UNIQUEIDENTIFIER,
@Version INT,
@TimeStamp DATETIME,
@StorageAccountName VARCHAR(120),
@TableName VARCHAR(120),
@Partition VARCHAR(120),
@RowId UNIQUEIDENTIFIER,
@AssociationList dbo.AssociationListParam READONLY,
@LastModifiedUser NVARCHAR(120),
@SchemaVersion INT,
@ExternalName NVARCHAR(120),
@ExternalType NVARCHAR(120),
@EntityCategory NVARCHAR(120),
@Active BIT
AS
BEGIN
SET NOCOUNT ON;
-- Adding the record to the key fields table and updating the entity index must succeed together.
-- Either can fail if an intervening update has caused the entity version to roll to the version
-- we are trying to add.
BEGIN TRANSACTION UpdateEntityIndex
-- For now we always update storage type
DECLARE @StorageType VARCHAR(20);
EXEC dbo.StorageAccount_GetStorageType @StorageAccountName, @StorageType OUTPUT;
-- Add new entry to the key fields table.
-- Set up a table variable to receive the result that we don't want in our own result
DECLARE @DropItOnTheFloor TABLE (
xId UNIQUEIDENTIFIER,
LocalVersion INT,
StorageAccountName VARCHAR(120),
TableName VARCHAR(120),
Partition VARCHAR(120),
RowId UNIQUEIDENTIFIER,
VersionTimestamp DATETIME);
INSERT @DropItOnTheFloor EXEC dbo.KeyFields_InsertAzureKeyFields @ExternalEntityId, @StorageAccountName, @TableName, @Partition, @RowId, @Version, @TimeStamp
IF NOT @@ERROR = 0
BEGIN
ROLLBACK TRANSACTION UpdateEntityIndex
RETURN;
END
-- Add associations to association cache.
-- Set up a table variable to receive the result that we don't want in our own result
DECLARE @DropItOnTheFloorAssoc TABLE(
xId uniqueidentifier,
xIdTarget uniqueidentifier,
Version int,
ExternalName nvarchar(120),
AssociationType varchar(15),
Details nvarchar(240) NULL
);
INSERT @DropItOnTheFloorAssoc EXEC dbo.UpdateAssociationsCurrent @ExternalEntityId, @AssociationList
IF NOT @@ERROR = 0
BEGIN
ROLLBACK TRANSACTION UpdateEntityIndex
RETURN;
END
DECLARE @EntityExists INT;
SELECT @EntityExists = COUNT(*) FROM dbo.EntityId WHERE xId = @ExternalEntityId;
IF @EntityExists = 0
BEGIN
-- Insert the entity index entry
DECLARE @InitialVersion INT = 0;
DECLARE @InitialActive BIT = 1;
DECLARE @WriteLock BIT = 0;
INSERT INTO dbo.EntityId (xId, StorageType, Version, CreateDate, LastModifiedDate, WriteLock, HomeStorageAccountName,
LastModifiedUser, SchemaVersion, ExternalName, ExternalType, EntityCategory, Active)
VALUES (@ExternalEntityId, @StorageType, @InitialVersion, @TimeStamp, @TimeStamp, @WriteLock, @StorageAccountName,
@LastModifiedUser, @SchemaVersion, @ExternalName, @ExternalType, @EntityCategory, @InitialActive)
END
ELSE
BEGIN
-- If we are incrementing the version by more than one an intervening update has occured on this record
-- and we should fail
DECLARE @CurrentVersion INT;
SELECT @CurrentVersion = @Version - 1;
-- Update the entity index entry
UPDATE dbo.EntityId
SET Version = @Version, LastModifiedDate = @TimeStamp, HomeStorageAccountName = @StorageAccountName, StorageType = @StorageType,
LastModifiedUser = @LastModifiedUser, SchemaVersion = @SchemaVersion, ExternalName = @ExternalName, ExternalType = @ExternalType,
EntityCategory = @EntityCategory, Active = @Active
WHERE xId = @ExternalEntityId AND Version = @CurrentVersion;
END
IF @@ROWCOUNT = 0
BEGIN
ROLLBACK TRANSACTION UpdateEntityIndex
RAISERROR ('Update failed to modify the entity index record.', 16, 1);
RETURN;
END
COMMIT TRANSACTION UpdateEntityIndex
RETURN;
END
GO
|
-- phpMyAdmin SQL Dump
-- version 4.0.10deb1
-- http://www.phpmyadmin.net
--
-- 主机: localhost
-- 生成日期: 2016-12-06 08:20:22
-- 服务器版本: 5.5.53-0ubuntu0.14.04.1
-- PHP 版本: 5.5.9-1ubuntu4.20
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 */;
--
-- 数据库: `s_admin`
--
-- --------------------------------------------------------
--
-- 表的结构 `darling_article`
--
CREATE TABLE IF NOT EXISTS `darling_article` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`cat_id` int(11) NOT NULL COMMENT '分类id',
`title` varchar(255) NOT NULL COMMENT '标题',
`views` int(5) NOT NULL DEFAULT 0 COMMENT '阅读数',
`pics` varchar(255) DEFAULT NULL,
`description` varchar(520) NOT NULL,
`content` text NOT NULL,
`create_time` int(11) NOT NULL,
`update_time` int(11) NOT NULL,
`status` tinyint(1) NOT NULL COMMENT '状态1:可用;0:不可用',
`sort` int(5) NOT NULL COMMENT '排序',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- 表的结构 `darling_file`
--
CREATE TABLE IF NOT EXISTS `darling_file` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '文件ID',
`name` char(50) NOT NULL DEFAULT '' COMMENT '原始文件名',
`savename` char(225) NOT NULL DEFAULT '' COMMENT '保存名称',
`savepath` char(225) NOT NULL DEFAULT '' COMMENT '文件保存路径',
`ext` char(5) NOT NULL DEFAULT '' COMMENT '文件后缀',
`mime` char(40) NOT NULL DEFAULT '' COMMENT '文件mime类型',
`size` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '文件大小',
`md5` char(32) NOT NULL DEFAULT '' COMMENT '文件md5',
`sha1` char(40) NOT NULL DEFAULT '' COMMENT '文件 sha1编码',
`location` varchar(500) NOT NULL DEFAULT '0' COMMENT '文件保存位置',
`url` varchar(255) NOT NULL DEFAULT '' COMMENT '远程地址',
`create_time` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '上传时间',
`ossres` varchar(255) DEFAULT NULL COMMENT 'oss返回的完整文件路径',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='文件表' AUTO_INCREMENT=7 ;
--
-- 转存表中的数据 `darling_file`
--
INSERT INTO `darling_file` (`id`, `name`, `savename`, `savepath`, `ext`, `mime`, `size`, `md5`, `sha1`, `location`, `url`, `create_time`, `ossres`) VALUES
(6, '1269fa1fa7.jpg', '68cdc7dcb9b0fb80b4e4a6f4d8587fe4.jpg', '20161206/68cdc7dcb9b0fb80b4e4a6f4d8587fe4.jpg', 'jpg', '', 768774, 'baf46c63d1d09ea3ab613f73736bec1c', '210557ead1ba77b7a9faec5bfd4b2214c7244489', '/usr/share/nginx/html/uploads/20161206/68cdc7dcb9b0fb80b4e4a6f4d8587fe4.jpg', '', 1481006044, NULL),
(5, '1.jpg', '57295f3fd3c811b62646fbfea17b5b9e.jpg', '20161206/57295f3fd3c811b62646fbfea17b5b9e.jpg', 'jpg', '', 151855, '0e6dda7cd91063966caf0baf1b80f659', '434d2b487044b05687d0b126c8c0e04e04ea750a', '/usr/share/nginx/html/uploads/20161206/57295f3fd3c811b62646fbfea17b5b9e.jpg', '', 1480995661, NULL);
-- --------------------------------------------------------
--
-- 表的结构 `darling_menu_url`
--
CREATE TABLE IF NOT EXISTS `darling_menu_url` (
`menu_id` int(11) NOT NULL AUTO_INCREMENT,
`menu_name` varchar(50) NOT NULL,
`menu_url` varchar(255) NOT NULL,
`module_id` int(11) NOT NULL,
`is_show` tinyint(4) NOT NULL COMMENT '是否在sidebar里出现',
`online` int(11) NOT NULL DEFAULT '1' COMMENT '在线状态,还是下线状态,即可用,不可用。',
`shortcut_allowed` int(10) unsigned NOT NULL DEFAULT '1' COMMENT '是否允许快捷访问',
`sort` int(10) NOT NULL DEFAULT '0' COMMENT '排序',
`menu_desc` varchar(255) DEFAULT NULL,
`father_menu` int(11) NOT NULL DEFAULT '0' COMMENT '上一级菜单',
PRIMARY KEY (`menu_id`),
UNIQUE KEY `menu_url` (`menu_url`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='功能链接(菜单链接)' AUTO_INCREMENT=29 ;
--
-- 转存表中的数据 `darling_menu_url`
--
INSERT INTO `darling_menu_url` (`menu_id`, `menu_name`, `menu_url`, `module_id`, `is_show`, `online`, `shortcut_allowed`, `sort`, `menu_desc`, `father_menu`) VALUES
(1, '首页', 'Index/index', 1, 0, 1, 1, 0, '后台首页', 0),
(2, '账号列表', 'User/index', 1, 1, 1, 1, 0, '账号列表', 0),
(3, '修改账号', 'User/edit', 1, 0, 1, 0, 0, '修改账号', 2),
(4, '新建账号', 'User/add', 1, 0, 1, 1, 0, '新建账号', 2),
(5, '个人信息', 'User/profile', 1, 0, 1, 1, 0, '个人信息', 0),
(6, '账号组成员', 'User/showGroup', 1, 0, 1, 0, 0, '显示账号组详情及该组成员', 7),
(7, '账号组管理', 'Group/index', 1, 1, 1, 1, 4, '增加管理员', 0),
(8, '修改账号组', 'Group/edit', 1, 0, 1, 0, 0, '修改账号组', 7),
(9, '新建账号组', 'Group/add', 1, 0, 1, 1, 0, '新建账号组', 7),
(10, '权限管理', 'Group/group_role', 1, 1, 1, 1, 3, '用户权限依赖于账号组的权限', 0),
(11, '菜单模块', 'Module/index', 1, 1, 1, 1, 0, '菜单里的模块', 0),
(12, '编辑菜单模块', 'Module/edit', 1, 0, 1, 0, 0, '编辑模块', 11),
(13, '添加菜单模块', 'Module/add', 1, 0, 1, 1, 0, '添加菜单模块', 11),
(14, '功能列表', 'Menu/index', 1, 1, 1, 1, 0, '菜单功能及可访问的链接', 0),
(15, '增加功能', 'Menu/add', 1, 0, 1, 1, 0, '增加功能', 14),
(16, '功能修改', 'Menu/edit', 1, 0, 1, 0, 0, '修改功能', 14),
(17, '设置模板', '/panel/set.php', 1, 0, 1, 1, 0, '设置模板', 0),
(19, '菜单链接列表', '/panel/module.php', 1, 0, 1, 0, 0, '显示模块详情及该模块下的菜单', 11),
(20, '登入', 'Login/index', 1, 0, 1, 1, 0, '登入页面', 0),
(21, '操作记录', 'Syslog/index', 1, 1, 1, 1, 2, '用户操作的历史行为', 0),
(22, '系统信息', 'System/index', 1, 1, 1, 1, 0, '显示系统相关信息', 0),
(24, '博客列表', 'Blog/index', 8, 1, 1, 1, 1, '博客列表', 0),
(27, '添加博客', 'Blog/add', 8, 0, 1, 1, 1, '添加博客', 24),
(28, '编辑博客', 'Blog/edit', 8, 0, 1, 1, 2, '编辑博客', 24);
-- --------------------------------------------------------
--
-- 表的结构 `darling_module`
--
CREATE TABLE IF NOT EXISTS `darling_module` (
`module_id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`module_name` varchar(50) NOT NULL,
`module_url` varchar(128) NOT NULL,
`module_sort` int(11) unsigned NOT NULL DEFAULT '1',
`module_desc` varchar(255) DEFAULT NULL,
`module_icon` varchar(32) DEFAULT 'icon-th' COMMENT '菜单模块图标',
`online` int(11) NOT NULL DEFAULT '1' COMMENT '模块是否在线',
PRIMARY KEY (`module_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='菜单模块' AUTO_INCREMENT=11 ;
--
-- 转存表中的数据 `darling_module`
--
INSERT INTO `darling_module` (`module_id`, `module_name`, `module_url`, `module_sort`, `module_desc`, `module_icon`, `online`) VALUES
(1, '网站管理', 'Index/index', 1, '配置网站的相关信息', 'icon-th', 1),
(8, '博客模块', 'Blog/index', 2, '我的博客', 'icon-th', 1);
-- --------------------------------------------------------
--
-- 表的结构 `darling_system`
--
CREATE TABLE IF NOT EXISTS `darling_system` (
`key_name` varchar(32) COLLATE utf8_unicode_ci NOT NULL,
`key_value` text COLLATE utf8_unicode_ci NOT NULL,
PRIMARY KEY (`key_name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci COMMENT='系统配置表';
--
-- 转存表中的数据 `darling_system`
--
INSERT INTO `darling_system` (`key_name`, `key_value`) VALUES
('timezone', '"Asia/Shanghai"');
-- --------------------------------------------------------
--
-- 表的结构 `darling_sys_log`
--
CREATE TABLE IF NOT EXISTS `darling_sys_log` (
`op_id` int(11) NOT NULL AUTO_INCREMENT,
`user_name` varchar(32) NOT NULL,
`action` varchar(255) NOT NULL,
`class_name` varchar(255) NOT NULL COMMENT '操作了哪个类的对象',
`class_obj` varchar(32) NOT NULL COMMENT '操作的对象是谁,可能为对象的ID',
`result` text NOT NULL COMMENT '操作的结果',
`op_time` int(11) NOT NULL,
PRIMARY KEY (`op_id`),
KEY `op_time` (`op_time`),
KEY `class_name` (`class_name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='操作日志表' AUTO_INCREMENT=378 ;
--
-- 转存表中的数据 `darling_sys_log`
--
INSERT INTO `darling_sys_log` (`op_id`, `user_name`, `action`, `class_name`, `class_obj`, `result`, `op_time`) VALUES
(283, 'admin', 'MODIFY', 'UserGroup', '4', '{"group_id":"4","group_role":"1,5,8,11"}', 1475203109),
(284, 'admin', 'MODIFY', 'UserGroup', '4', '{"group_id":"4","group_role":"1,5,8"}', 1475203115),
(285, 'admin', 'ADD', 'UserGroup', '1', '{"group_name":"adf","group_desc":"adfsa","group_role":"1,5,17,18,22,23,24,25","owner_id":1}', 1475203599),
(286, 'admin', 'MODIFY', 'Module', '4', '{"module_id":4,"module_name":"\\u4ea7\\u54c1\\u7ba1\\u7406","module_url":"\\/product\\/index.php","module_sort":"2","module_desc":"\\u4ea7\\u54c1\\u7ba1\\u7406"}', 1475206034),
(287, 'admin', 'MODIFY', 'Module', '6', '{"module_id":"6","module_name":"\\u8bbe\\u8ba1\\u5e08\\u7ba1\\u740611","module_url":"\\/designer\\/index,php","module_sort":"2","module_desc":"\\u8bbe\\u8ba1\\u5e08\\u7ba1\\u7406"}', 1475206401),
(288, 'admin', 'MODIFY', 'Module', '6', '{"module_id":"6","module_name":"\\u8bbe\\u8ba1\\u5e08\\u7ba1\\u7406","module_url":"\\/designer\\/index,php","module_sort":"2","module_desc":"\\u8bbe\\u8ba1\\u5e08\\u7ba1\\u7406"}', 1475206409),
(289, 'admin', 'ADD', 'Module', '1', '{"module_name":"sfsadf","module_url":"Module\\/add","module_sort":"12","module_desc":"aqefdasqrd"}', 1475206884),
(290, 'admin', 'DEL', 'Module', '9', '{"module_id":9,"module_name":"sfsadf","module_url":"Module\\/add","module_sort":12,"module_desc":"aqefdasqrd","module_icon":"icon-th","online":1}', 1475206889),
(291, 'admin', 'MODIFY', 'MenuUrl', '123', '{"menu_name":"\\u8054\\u7edc\\u8be6\\u60c5","menu_url":"Contact\\/show","module_id":"7","is_show":"0","father_menu":"0","online":"1","shortcut_allowed":"0","sort":"0","menu_desc":"\\u663e\\u793a\\u8054\\u7edc\\u8be6\\u60c5\\u963f\\u9053\\u592b","menu_id":123}', 1475215593),
(292, 'admin', 'MODIFY', 'MenuUrl', '123', '{"menu_name":"\\u8054\\u7edc\\u8be6\\u60c5","menu_url":"Contact\\/show","module_id":"7","is_show":"0","father_menu":"0","online":"1","shortcut_allowed":"0","sort":"0","menu_desc":"\\u663e\\u793a\\u8054\\u7edc\\u8be6\\u60c5","menu_id":123}', 1475215600),
(293, 'admin', 'ADD', 'MenuUrl', '1', '{"menu_name":"\\u6d4b\\u8bd5","menu_url":"Test\\/index","module_id":"6","is_show":"1","father_menu":"0","shortcut_allowed":"0","sort":"0","menu_desc":"\\u5566\\u5566\\u5566"}', 1475215979),
(294, 'admin', 'MODIFY', 'MenuUrl', '124', '{"menu_name":"\\u6d4b\\u8bd5","menu_url":"Test\\/index","module_id":"6","is_show":"1","father_menu":"0","online":"1","shortcut_allowed":"0","sort":"0","menu_desc":"\\u5566\\u5566\\u5566sdf","menu_id":124}', 1475215991),
(295, 'admin', 'DEL', 'MenuUrl', '124', '{"menu_id":124,"menu_name":"\\u6d4b\\u8bd5","menu_url":"Test\\/index","module_id":6,"is_show":1,"online":1,"shortcut_allowed":0,"sort":0,"menu_desc":"\\u5566\\u5566\\u5566sdf","father_menu":0}', 1475216017),
(296, 'admin', 'DEL', 'Module', '6', '{"module_id":6,"module_name":"\\u8bbe\\u8ba1\\u5e08\\u7ba1\\u7406","module_url":"\\/designer\\/index,php","module_sort":2,"module_desc":"\\u8bbe\\u8ba1\\u5e08\\u7ba1\\u7406","module_icon":"icon-font","online":1}', 1475216048),
(297, 'admin', 'DEL', 'Module', '7', '{"module_id":7,"module_name":"\\u8054\\u7edc\\u7ba1\\u7406","module_url":"\\/contact\\/index.php","module_sort":1,"module_desc":"\\u8054\\u7edc\\u7ba1\\u7406","module_icon":"icon-headphones","online":1}', 1475216052),
(298, 'admin', 'DEL', 'Module', '5', '{"module_id":5,"module_name":"\\u7ecf\\u9500\\u5546\\u7ba1\\u7406","module_url":"\\/dealer\\/index.php","module_sort":1,"module_desc":"\\u7ecf\\u9500\\u5546\\u7ba1\\u7406","module_icon":"icon-user","online":1}', 1475216055),
(299, 'admin', 'DEL', 'Module', '4', '{"module_id":4,"module_name":"\\u4ea7\\u54c1\\u7ba1\\u7406","module_url":"\\/product\\/index.php","module_sort":2,"module_desc":"\\u4ea7\\u54c1\\u7ba1\\u7406","module_icon":"icon-align-justify","online":1}', 1475216059),
(300, 'admin', 'MODIFY', 'Module', '1', '{"module_id":"1","module_name":"\\u7f51\\u7ad9\\u7ba1\\u7406","module_url":"Index\\/index","module_sort":"1","module_desc":"\\u914d\\u7f6e\\u7f51\\u7ad9\\u7684\\u76f8\\u5173\\u4fe1\\u606f"}', 1475216070),
(301, 'admin', 'ADD', 'Module', '1', '{"module_name":"\\u6d4b\\u8bd5\\u6a21\\u5757","module_url":"Test\\/index","module_sort":"2","module_desc":"\\u5566\\u5566"}', 1475216127),
(302, 'admin', 'ADD', 'MenuUrl', '1', '{"menu_name":"\\u6d4b\\u8bd5\\u5217\\u8868","menu_url":"Test\\/index","module_id":"8","is_show":"1","father_menu":"0","shortcut_allowed":"1","sort":"0","menu_desc":"\\u5475\\u5475\\u5475"}', 1475216224),
(303, 'admin', 'MODIFY', 'UserGroup', '1', '{"group_id":1,"group_role":"1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,117,125"}', 1475216233),
(304, 'admin', 'MODIFY', 'MenuUrl', '117', '{"menu_name":"\\u6587\\u4ef6\\u4e0a\\u4f20","menu_url":"File\\/upload","module_id":"8","is_show":"1","father_menu":"0","online":"1","shortcut_allowed":"1","sort":"1","menu_desc":"\\u6587\\u4ef6\\u4e0a\\u4f20\\u63a7\\u5236","menu_id":117}', 1475216258),
(305, 'admin', 'MODIFY', 'UserGroup', '1', '{"group_name":"\\u8d85\\u7ea7\\u7ba1\\u7406\\u5458\\u7ec4","group_desc":"\\u4e07\\u80fd\\u7684\\u4e0d\\u662f\\u795e\\uff0c\\u662f\\u7a0b\\u5e8f\\u5458bbb","group_id":1}', 1475216542),
(306, 'admin', 'MODIFY', 'UserGroup', '1', '{"group_name":"\\u8d85\\u7ea7\\u7ba1\\u7406\\u5458\\u7ec4","group_desc":"\\u4e07\\u80fd\\u7684\\u4e0d\\u662f\\u795e\\uff0c\\u662f\\u7a0b\\u5e8f\\u5458\\uff0c\\u54c8\\u54c8\\u54c8","group_id":1}', 1475216553),
(307, 'admin', 'ADD', 'UserGroup', '1', '{"group_name":"\\u6d4b\\u8bd5\\u8d26\\u53f7\\u7ec4","group_desc":"\\u5566\\u5566\\u5566\\u5566","group_role":"1,5,17,18,22,23,24,25","owner_id":1}', 1475216632),
(308, 'admin', 'MODIFY', 'MenuUrl', '3', '{"menu_name":"\\u4fee\\u6539\\u8d26\\u53f7","menu_url":"User\\/edit","module_id":"1","is_show":"0","father_menu":"2","online":"1","shortcut_allowed":"0","sort":"0","menu_desc":"\\u4fee\\u6539\\u8d26\\u53f7","menu_id":3}', 1475905662),
(309, 'admin', 'MODIFY', 'User', '1', '{"user_id":"26","user_name":"demo","real_name":"sunny","mobile":"15812345678","email":"<EMAIL>","user_desc":"\\u9ed8\\u8ba4\\u7528\\u6237\\u7ec4\\u6210\\u5458","user_group":"1"}', 1475905681),
(310, 'admin', 'LOGIN', 'User', '1', '{"IP":"192.168.18.130"}', 1475905772),
(311, 'admin', 'DEL', 'User', '26', '{"user_id":26,"user_name":"demo","password":"<PASSWORD>","real_name":"<PASSWORD>ny","mobile":"15812345678","email":"<EMAIL>","user_desc":"\\u9ed8\\u8ba4\\u7528\\u6237\\u7ec4\\u6210\\u5458","login_time":1468824260,"status":1,"login_ip":"192.168.18.113","user_group":1,"template":"schoolpainting","shortcuts":"","show_quicknote":0}', 1475906111),
(312, 'admin', 'ADD', 'User', '1', '{"user_name":"sunny","password":"<PASSWORD>","real_name":"<PASSWORD>","mobile":"15866863307","email":"<EMAIL>2<EMAIL>","user_desc":"lalallal","user_group":"1"}', 1475906230),
(313, 'sunny', 'LOGIN', 'User', '38', '{"IP":"192.168.18.130"}', 1475906254),
(314, 'sunny', 'MODIFY', 'User', '1', '{"user_id":"38","user_name":"sunny","real_name":"kebenxiaoming","mobile":"15866863307","email":"<EMAIL>2<EMAIL>","user_desc":"lalallal","user_group":"5"}', 1475906325),
(315, 'sunny', 'LOGIN', 'User', '38', '{"IP":"192.168.18.130"}', 1475906419),
(316, 'admin', 'LOGIN', 'User', '1', '{"IP":"192.168.18.130"}', 1475906434),
(317, 'admin', 'MODIFY', 'MenuUrl', '24', '{"menu_name":"\\u6d4b\\u8bd5\\u5217\\u8868","menu_url":"Test\\/index","module_id":"8","is_show":"1","father_menu":"0","online":"1","sort":"1","menu_desc":"\\u5475\\u5475\\u5475","menu_id":24}', 1475907403),
(318, 'admin', 'ADD', 'MenuUrl', '1', '{"menu_name":"\\u6d4b\\u8bd51","menu_url":"Test\\/aa","module_id":"8","is_show":"1","father_menu":"0","sort":"0","menu_desc":"aaaaa"}', 1475907461),
(319, 'admin', 'LOGIN', 'User', '1', '{"IP":"192.168.18.130"}', 1475908095),
(320, 'admin', 'LOGIN', 'User', '1', '{"IP":"192.168.18.130"}', 1475908222),
(321, 'admin', 'MODIFY', 'User', '1', '{"user_id":"38","user_name":"sunny","real_name":"kebenxiaoming","mobile":"15866863307","email":"<EMAIL>","user_desc":"lalallal1111","user_group":"5"}', 1475914886),
(322, 'admin', 'MODIFY', 'User', '1', '{"user_id":"1","user_name":"admin","real_name":"SomewhereYu","mobile":"13800138001","email":"<EMAIL>","user_desc":"\\u521d\\u59cb\\u7684\\u8d85\\u7ea7\\u7ba1\\u7406\\u5458!","user_group":"5"}', 1475917866),
(323, 'admin', 'MODIFY', 'User', '1', '{"user_id":"1","user_name":"admin","real_name":"SomewhereYu","mobile":"13800138001","email":"<EMAIL>","user_desc":"\\u521d\\u59cb\\u7684\\u8d85\\u7ea7\\u7ba1\\u7406\\u5458!","user_group":"1"}', 1475917870),
(324, 'admin', 'MODIFY', 'User', '1', '{"user_id":"38","user_name":"sunny","real_name":"kebenxiaoming","mobile":"15866863307","email":"<EMAIL>","user_desc":"lalallal1111","user_group":"3"}', 1475917957),
(325, 'admin', 'LOGIN', 'User', '1', '{"IP":"192.168.18.130"}', 1475918776),
(326, 'admin', 'LOGIN', 'User', '1', '{"IP":"192.168.18.130"}', 1475918796),
(327, 'admin', 'LOGIN', 'User', '1', '{"IP":"192.168.18.130"}', 1475919208),
(328, 'admin', 'LOGIN', 'User', '1', '{"IP":"192.168.18.130"}', 1475919254),
(329, 'admin', 'LOGIN', 'User', '1', '{"IP":"192.168.18.130"}', 1475919307),
(330, 'admin', 'LOGIN', 'User', '1', '{"IP":"192.168.18.130"}', 1475979133),
(331, 'admin', 'LOGIN', 'User', '1', '{"IP":"192.168.18.130"}', 1475979168),
(332, 'admin', 'LOGIN', 'User', '1', '{"IP":"192.168.18.130"}', 1475979202),
(333, 'admin', 'LOGIN', 'User', '1', '{"IP":"192.168.18.130"}', 1475979495),
(334, 'admin', 'LOGIN', 'User', '1', '{"IP":"192.168.18.130"}', 1476064693),
(335, 'admin', 'LOGIN', 'User', '1', '{"IP":"192.168.18.130"}', 1476086906),
(336, 'admin', 'LOGIN', 'User', '1', '{"IP":"192.168.18.130"}', 1476780988),
(337, 'admin', 'LOGIN', 'User', '1', '{"IP":"192.168.18.134"}', 1477633952),
(338, 'admin', 'LOGIN', 'User', '1', '{"IP":"192.168.18.134"}', 1477637882),
(339, 'admin', 'ADD', 'UserGroup', '1', '{"group_name":"adf","group_desc":"adfadf","group_role":"1,5,17,18,22,23,24,25","owner_id":1}', 1477638005),
(340, 'admin', 'MODIFY', 'UserGroup', '1', '{"group_name":"\\u8d85\\u7ea7\\u7ba1\\u7406\\u5458\\u7ec4","group_desc":"\\u4e07\\u80fd\\u7684\\u4e0d\\u662f\\u795e\\uff0c\\u662f\\u7a0b\\u5e8f\\u5458,sadfdsa","group_id":1}', 1477638060),
(341, 'admin', 'MODIFY', 'Module', '8', '{"module_id":"8","module_name":"\\u6d4b\\u8bd5\\u6a21\\u5757","module_url":"Test\\/index","module_sort":"3","module_desc":"\\u5566\\u5566"}', 1477638283),
(342, 'admin', 'MODIFY', 'Module', '8', '{"module_id":"8","module_name":"\\u6d4b\\u8bd5\\u6a21\\u5757","module_url":"Test\\/index","module_sort":"2","module_desc":"\\u5566\\u5566"}', 1477638294),
(343, 'admin', 'DEL', 'User', '38', '{"user_id":38,"user_name":"sunny","password":"<PASSWORD>","real_name":"kebenxiaoming","mobile":"15866863307","email":"<EMAIL>","user_desc":"lalallal1111","login_time":1475906419,"status":1,"login_ip":"192.168.18.130","user_group":3,"template":"default","shortcuts":null,"show_quicknote":0}', 1477638331),
(344, 'admin', 'LOGIN', 'User', '1', '{"IP":"192.168.18.222"}', 1480407125),
(345, 'admin', 'LOGIN', 'User', '1', '{"IP":"192.168.18.222"}', 1480572728),
(346, 'admin', 'LOGIN', 'User', '1', '{"IP":"192.168.18.222"}', 1480650361),
(347, 'admin', 'ADD', 'User', '4', '{"user_name":"demo","password":"<PASSWORD>","real_name":"\\u54c8\\u54c8\\u54c8","mobile":"15866863307","email":"<EMAIL>","user_desc":"saaaaaaaaaaaaaa","user_group":"1"}', 1480669327),
(348, 'admin', 'MODIFY', 'User', '1', '{"user_id":"4","user_name":"demo","real_name":"\\u54c8\\u54c8\\u54c8111","mobile":"15866863307","email":"<EMAIL>","user_desc":"saaaaaaaaaaaaaa","user_group":"1"}', 1480670180),
(349, 'admin', 'DEL', 'User', '4', '{"user_id":"4","user_name":"demo","password":"<PASSWORD>","real_name":"\\u54c8\\u54c8\\u54c8111","mobile":"15866863307","email":"<EMAIL> <EMAIL>","user_desc":"saaaaaaaaaaaaaa","login_time":null,"status":"1","login_ip":null,"user_group":"1","template":"default","shortcuts":null,"show_quicknote":"0"}', 1480670390),
(350, 'admin', 'LOGIN', 'User', '1', '{"IP":"192.168.18.222"}', 1480900228),
(351, 'admin', 'MODIFY', 'UserGroup', '1', '{"group_name":"\\u8d85\\u7ea7\\u7ba1\\u7406\\u5458\\u7ec4","group_desc":"\\u4e07\\u80fd\\u7684\\u4e0d\\u662f\\u795e\\uff0c\\u662f\\u7a0b\\u5e8f\\u5458","group_id":"1"}', 1480901950),
(352, 'admin', 'MODIFY', 'UserGroup', '1', '{"group_name":"\\u8d85\\u7ea7\\u7ba1\\u7406\\u5458\\u7ec4","group_desc":"\\u4e07\\u80fd\\u7684\\u4e0d\\u662f\\u795e\\uff0c\\u662f\\u7a0b\\u5e8f\\u5458","group_id":"1"}', 1480901972),
(353, 'admin', 'MODIFY', 'UserGroup', '1', '{"group_name":"\\u8d85\\u7ea7\\u7ba1\\u7406\\u5458\\u7ec4","group_desc":"\\u4e07\\u80fd\\u7684\\u4e0d\\u662f\\u795e\\uff0c\\u662f\\u7a0b\\u5e8f\\u5458","group_id":"1"}', 1480902560),
(354, 'admin', 'ADD', 'UserGroup', '6', '{"group_name":"adf","group_desc":"test","group_role":"1,5,17,18,22,23,24,25","owner_id":"1"}', 1480902849),
(355, 'admin', 'MODIFY', 'UserGroup', '1', '{"group_id":1,"group_role":"1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26"}', 1480903846),
(356, 'admin', 'MODIFY', 'UserGroup', '1', '{"group_id":1,"group_role":"1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26"}', 1480904287),
(357, 'admin', 'ADD', 'UserGroup', '7', '{"group_name":"\\u6d4b\\u8bd5\\u8d26\\u53f7\\u7ec4","group_desc":"\\u5566\\u5566\\u5566","group_role":"1,5,17,18,22,23,24,25","owner_id":"1"}', 1480904302),
(358, 'admin', 'MODIFY', 'Module', '8', '{"module_id":"8","module_name":"\\u6d4b\\u8bd5\\u6a21\\u57571","module_url":"Test\\/index","module_sort":"2","module_desc":"\\u5566\\u5566"}', 1480907600),
(359, 'admin', 'ADD', 'Module', '9', '{"module_name":"\\u6d4b\\u8bd5\\u6a21\\u5757123","module_url":"Module\\/add","module_sort":"3","module_desc":"\\u554a\\u554a\\u554a\\u554a\\u554a\\u554a"}', 1480908090),
(360, 'admin', 'ADD', 'Module', '10', '{"module_name":"\\u6d4b\\u8bd5\\u6a21\\u5757123","module_url":"Module\\/add","module_sort":"2","module_desc":" "}', 1480908125),
(361, 'admin', 'DEL', 'Module', '10', '{"module_id":"10","module_name":"\\u6d4b\\u8bd5\\u6a21\\u5757123","module_url":"Module\\/add","module_sort":"2","module_desc":" ","module_icon":"icon-th","online":"1"}', 1480908128),
(362, 'admin', 'MODIFY', 'Module', '8', '{"module_id":"8","module_name":"\\u6d4b\\u8bd5\\u6a21\\u5757","module_url":"Test\\/index","module_sort":"2","module_desc":"\\u5566\\u5566"}', 1480909407),
(363, 'admin', 'ADD', 'MenuUrl', '26', '{"menu_name":"\\u6d4b\\u8bd51","menu_url":"User\\/edit22","module_id":"8","is_show":"1","father_menu":"2","sort":"3","menu_desc":"\\u554a\\u554a\\u554a\\u554a\\u554a\\u554a\\u554a"}', 1480909911),
(364, 'admin', 'MODIFY', 'MenuUrl', '26', '{"menu_name":"\\u6d4b\\u8bd51","menu_url":"User\\/edit23","module_id":"8","is_show":"1","father_menu":"2","sort":"3","menu_desc":"\\u554a\\u554a\\u554a\\u554a\\u554a\\u554a\\u554a","menu_id":26}', 1480910346),
(365, 'admin', 'MODIFY', 'MenuUrl', '26', '{"menu_name":"\\u6d4b\\u8bd51","menu_url":"User\\/edit23","module_id":"8","is_show":"0","father_menu":"2","sort":"3","menu_desc":"\\u554a\\u554a\\u554a\\u554a\\u554a\\u554a\\u554a","menu_id":26}', 1480910363),
(366, 'admin', 'DEL', 'MenuUrl', '26', '{"menu_id":"26","menu_name":"\\u6d4b\\u8bd51","menu_url":"User\\/edit23","module_id":"8","is_show":"0","online":"1","shortcut_allowed":"1","sort":"3","menu_desc":"\\u554a\\u554a\\u554a\\u554a\\u554a\\u554a\\u554a","father_menu":"2"}', 1480910423),
(367, 'admin', 'MODIFY', 'User', '1', '{"user_id":"1","user_name":"admin","real_name":"yourname","mobile":"13800138001","email":"<EMAIL>","user_desc":"\\u521d\\u59cb\\u7684\\u8d85\\u7ea7\\u7ba1\\u7406\\u5458!","user_group":"1"}', 1480915894),
(368, 'admin', 'MODIFY', 'Module', '8', '{"module_id":"8","module_name":"\\u535a\\u5ba2\\u6a21\\u5757","module_url":"Blog\\/index","module_sort":"2","module_desc":"\\u6211\\u7684\\u535a\\u5ba2"}', 1480920422),
(369, 'admin', 'DEL', 'MenuUrl', '25', '{"menu_id":"25","menu_name":"\\u6d4b\\u8bd51","menu_url":"Test\\/aa","module_id":"8","is_show":"1","online":"1","shortcut_allowed":"1","sort":"0","menu_desc":"aaaaa","father_menu":"0"}', 1480920431),
(370, 'admin', 'MODIFY', 'MenuUrl', '24', '{"menu_name":"\\u6d4b\\u8bd5\\u5217\\u8868","menu_url":"Blog\\/index","module_id":"8","is_show":"1","father_menu":"0","sort":"1","menu_desc":"\\u535a\\u5ba2\\u5217\\u8868","menu_id":24}', 1480920602),
(371, 'admin', 'MODIFY', 'MenuUrl', '24', '{"menu_name":"\\u535a\\u5ba2\\u5217\\u8868","menu_url":"Blog\\/index","module_id":"8","is_show":"1","father_menu":"0","sort":"1","menu_desc":"\\u535a\\u5ba2\\u5217\\u8868","menu_id":24}', 1480920620),
(372, 'admin', 'LOGIN', 'User', '1', '{"IP":"192.168.127.12"}', 1480992870),
(373, 'admin', 'LOGIN', 'User', '1', '{"IP":"192.168.127.12"}', 1481005789),
(374, 'admin', 'ADD', 'MenuUrl', '27', '{"menu_name":"\\u6dfb\\u52a0\\u535a\\u5ba2","menu_url":"Blog\\/add","module_id":"8","is_show":"0","father_menu":"24","sort":"1","menu_desc":"\\u6dfb\\u52a0\\u535a\\u5ba2"}', 1481005821),
(375, 'admin', 'ADD', 'MenuUrl', '28', '{"menu_name":"\\u7f16\\u8f91\\u535a\\u5ba2","menu_url":"Blog\\/edit","module_id":"8","is_show":"0","father_menu":"24","sort":"2","menu_desc":"\\u7f16\\u8f91\\u535a\\u5ba2"}', 1481005847),
(376, 'admin', 'MODIFY', 'UserGroup', '1', '{"group_id":1,"group_role":"1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28"}', 1481005852),
(377, 'admin', 'DEL', 'MenuUrl', '23', '{"menu_id":"23","menu_name":"\\u6587\\u4ef6\\u4e0a\\u4f20","menu_url":"File\\/upload","module_id":"8","is_show":"1","online":"1","shortcut_allowed":"1","sort":"1","menu_desc":"\\u6587\\u4ef6\\u4e0a\\u4f20\\u63a7\\u5236","father_menu":"0"}', 1481006186);
-- --------------------------------------------------------
--
-- 表的结构 `darling_user`
--
CREATE TABLE IF NOT EXISTS `darling_user` (
`user_id` int(11) NOT NULL AUTO_INCREMENT,
`token` varchar(520) COMMENT '接口登录token',
`user_name` varchar(50) NOT NULL,
`password` varchar(255) NOT NULL,
`real_name` varchar(255),
`mobile` varchar(20),
`email` varchar(255),
`user_desc` varchar(255) DEFAULT NULL,
`login_time` int(11) DEFAULT NULL COMMENT '登录时间',
`token_time` int(11) DEFAULT NULL COMMENT '接口token过期记录',
`status` tinyint(4) NOT NULL DEFAULT '1',
`login_ip` varchar(32) DEFAULT NULL,
`user_group` int(11) NOT NULL COMMENT ' 账号组:1:超级管理员;3:经销商管理;4:设计师',
`template` varchar(32) NOT NULL DEFAULT 'default' COMMENT '主题模板',
`shortcuts` text COMMENT '快捷菜单',
`show_quicknote` int(11) NOT NULL DEFAULT '0' COMMENT '是否显示quicknote',
PRIMARY KEY (`user_id`),
UNIQUE KEY `user_name` (`user_name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='后台用户' AUTO_INCREMENT=5 ;
--
-- 转存表中的数据 `darling_user`
--
INSERT INTO `darling_user` (`user_id`, `user_name`, `password`, `real_name`, `mobile`, `email`, `user_desc`, `login_time`, `status`, `login_ip`, `user_group`, `template`, `shortcuts`, `show_quicknote`) VALUES
(1, 'admin', '<PASSWORD>', 'yourname', '13800138001', '<EMAIL>', '初始的超级管理员!', 1481005789, 1, '192.168.127.12', 1, 'schoolpainting', '<PASSWORD>', 0);
-- --------------------------------------------------------
--
-- 表的结构 `darling_user_group`
--
CREATE TABLE IF NOT EXISTS `darling_user_group` (
`group_id` int(11) NOT NULL AUTO_INCREMENT,
`group_name` varchar(32) DEFAULT NULL,
`group_role` text CHARACTER SET utf8 COLLATE utf8_unicode_ci COMMENT '初始权限为1,5,17,18,22,23,24,25',
`owner_id` int(11) DEFAULT NULL COMMENT '创建人ID',
`group_desc` varchar(64) CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT NULL,
PRIMARY KEY (`group_id`),
KEY `OWNER` (`owner_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='账号组' AUTO_INCREMENT=8 ;
--
-- 转存表中的数据 `darling_user_group`
--
INSERT INTO `darling_user_group` (`group_id`, `group_name`, `group_role`, `owner_id`, `group_desc`) VALUES
(1, '超级管理员组', '1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28', 1, '万能的不是神,是程序员'),
(7, '测试账号组', '1,5,17,18,22,23,24,25', 1, '啦啦啦');
-- ----------------------------
-- Table structure for darling_comment
-- ----------------------------
DROP TABLE IF EXISTS `darling_comment`;
CREATE TABLE `darling_comment` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`article_id` int(11) NOT NULL,
`uid` int(11) NOT NULL DEFAULT '0' COMMENT '目前没有用户默认为0',
`content` text NOT NULL,
`create_time` int(11) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Table structure for darling_reply
-- ----------------------------
DROP TABLE IF EXISTS `darling_reply`;
CREATE TABLE `darling_reply` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`comment_id` int(11) NOT NULL,
`reply_id` int(11) NOT NULL,
`from_uid` int(11) NOT NULL,
`to_uid` int(11) NOT NULL,
`content` text NOT NULL,
`create_time` int(11) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!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 */;
|
<gh_stars>0
-- phpMyAdmin SQL Dump
-- version 4.8.4
-- https://www.phpmyadmin.net/
--
-- Host: 127.0.0.1
-- Generation Time: Jan 08, 2020 at 11:54 AM
-- Server version: 10.1.37-MariaDB
-- PHP Version: 7.3.0
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET AUTOCOMMIT = 0;
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: `chandra`
--
-- --------------------------------------------------------
--
-- Table structure for table `crawl_data`
--
CREATE TABLE `crawl_data` (
`id` bigint(20) NOT NULL,
`name` varchar(255) DEFAULT NULL,
`screen_name` varchar(255) DEFAULT NULL,
`tweet_id` int(11) DEFAULT NULL,
`text` text,
`flag` varchar(10) NOT NULL,
`followers_count` varchar(255) DEFAULT NULL,
`following_count` varchar(255) DEFAULT NULL,
`location` varchar(255) DEFAULT NULL,
`verified` varchar(255) DEFAULT NULL,
`different_year` int(11) DEFAULT NULL,
`created_post` varchar(255) DEFAULT NULL,
`created_account` varchar(255) DEFAULT NULL,
`token_search` varchar(255) DEFAULT NULL,
`result_crawl_json` text,
`class_hoax` tinyint(4) DEFAULT NULL,
`class_hoax_info` varchar(255) DEFAULT NULL,
`tokenizing` text,
`keyword` varchar(255) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
--
-- Dumping data for table `crawl_data`
--
INSERT INTO `crawl_data` (`id`, `name`, `screen_name`, `tweet_id`, `text`, `flag`, `followers_count`, `following_count`, `location`, `verified`, `different_year`, `created_post`, `created_account`, `token_search`, `result_crawl_json`, `class_hoax`, `class_hoax_info`, `tokenizing`, `keyword`) VALUES
(360, 'bang jo', '@bangjo60173180', 2147483647, '@pub2020 mo bilang ke pak jokowi kalau kamu pelit', 'positif', '57', '367', '', 'No', 0, 'Thu Jul 25 10:23:14 +0000 2019', 'Sun May 12 17:42:56 +0000 2019', '20190725102406', '{\"created_at\":\"Thu Jul 25 10:23:14 +0000 2019\",\"id\":1154336297445543936,\"id_str\":\"1154336297445543936\",\"text\":\"@pub2020 mo bilang ke pak jokowi kalau kamu pelit\",\"truncated\":false,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"pub2020\",\"name\":\"ihsan\",\"id\":1092051430641418241,\"id_str\":\"1092051430641418241\",\"indices\":[0,8]}],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\">Twitter for Android<\\/a>\",\"in_reply_to_status_id\":1153593101803540480,\"in_reply_to_status_id_str\":\"1153593101803540480\",\"in_reply_to_user_id\":1092051430641418241,\"in_reply_to_user_id_str\":\"1092051430641418241\",\"in_reply_to_screen_name\":\"pub2020\",\"user\":{\"id\":1127630247040438272,\"id_str\":\"1127630247040438272\",\"name\":\"bang jo\",\"screen_name\":\"bangjo60173180\",\"location\":\"\",\"description\":\"allah\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":57,\"friends_count\":367,\"listed_count\":0,\"created_at\":\"Sun May 12 17:42:56 +0000 2019\",\"favourites_count\":700,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":66,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1127630559830626304\\/gexKqWoP_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1127630559830626304\\/gexKqWoP_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":0,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"}', NULL, NULL, 'pub2020 mo bilang ke pak jokowi kalau kamu pelit', 'jokowi'),
(359, 'aya', '@ghaisqni', 2147483647, 'RT @TirtoID: Jokowi secara resmi telah menerbitkan Peraturan Pemerintah yang mengatur tata cara pencatatan perkawinan bagi penghayat keperc…', 'netral', '509', '262', 'Yogyakarta, Indonesia', 'No', 7, 'Thu Jul 25 10:23:24 +0000 2019', 'Mon Nov 07 06:11:53 +0000 2011', '20190725102406', '{\"created_at\":\"Thu Jul 25 10:23:24 +0000 2019\",\"id\":1154336341338935296,\"id_str\":\"1154336341338935296\",\"text\":\"RT @TirtoID: Jokowi secara resmi telah menerbitkan Peraturan Pemerintah yang mengatur tata cara pencatatan perkawinan bagi penghayat keperc\\u2026\",\"truncated\":false,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"TirtoID\",\"name\":\"tirto.id\",\"id\":4187275698,\"id_str\":\"4187275698\",\"indices\":[3,11]}],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\">Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":406794644,\"id_str\":\"406794644\",\"name\":\"aya\",\"screen_name\":\"ghaisqni\",\"location\":\"Yogyakarta, Indonesia\",\"description\":\"cat person tapi avanya anjing.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":509,\"friends_count\":262,\"listed_count\":0,\"created_at\":\"Mon Nov 07 06:11:53 +0000 2011\",\"favourites_count\":2154,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":31869,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1149347820668780544\\/tncPK2P6_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1149347820668780544\\/tncPK2P6_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/406794644\\/1562230835\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Thu Jul 25 10:16:31 +0000 2019\",\"id\":1154334608667766784,\"id_str\":\"1154334608667766784\",\"text\":\"Jokowi secara resmi telah menerbitkan Peraturan Pemerintah yang mengatur tata cara pencatatan perkawinan bagi pengh\\u2026 https:\\/\\/t.co\\/hgixqWsNDN\",\"truncated\":true,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/hgixqWsNDN\",\"expanded_url\":\"https:\\/\\/twitter.com\\/i\\/web\\/status\\/1154334608667766784\",\"display_url\":\"twitter.com\\/i\\/web\\/status\\/1\\u2026\",\"indices\":[117,140]}]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"https:\\/\\/about.twitter.com\\/products\\/tweetdeck\\\" rel=\\\"nofollow\\\">TweetDeck<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":4187275698,\"id_str\":\"4187275698\",\"name\":\"tirto.id\",\"screen_name\":\"TirtoID\",\"location\":\"Indonesia\",\"description\":\"Jurnalisme data. Media analisis. Infografik ciamik.\",\"url\":\"https:\\/\\/t.co\\/Ss5eQAlNn3\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Ss5eQAlNn3\",\"expanded_url\":\"https:\\/\\/tirto.id\\/\",\"display_url\":\"tirto.id\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":310656,\"friends_count\":45,\"listed_count\":647,\"created_at\":\"Tue Nov 10 06:15:05 +0000 2015\",\"favourites_count\":992,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":true,\"statuses_count\":53117,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1009463042206150657\\/MVj3R8no_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1009463042206150657\\/MVj3R8no_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/4187275698\\/1529509859\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":20,\"favorite_count\":27,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"in\"},\"is_quote_status\":false,\"retweet_count\":20,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"}', NULL, NULL, 'rt tirtoid jokowi cara resmi telah terbit atur perintah yang atur tata cara catat kawin bagi hayat keperc', 'jokowi'),
(349, '<NAME>', '@thegr8gerits', 2147483647, '@radenrauf Yuni sarah ft. Raffi Ahmad - 50 tahun lagi (ditinggal nikah yuninya)', 'positif', '171', '76', 'Dimana weh asal sama kamu', 'No', 5, 'Mon Jul 22 15:41:55 +0000 2019', 'Mon Oct 28 01:56:32 +0000 2013', '20190722073626', '{\"created_at\":\"Mon Jul 22 15:41:55 +0000 2019\",\"id\":1153329334297346048,\"id_str\":\"1153329334297346048\",\"text\":\"@radenrauf Yuni sarah ft. Raffi Ahmad - 50 tahun lagi (ditinggal nikah yuninya)\",\"truncated\":false,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"radenrauf\",\"name\":\"IG: @radenrauf\",\"id\":26970305,\"id_str\":\"26970305\",\"indices\":[0,10]}],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\">Twitter for Android<\\/a>\",\"in_reply_to_status_id\":1153125374366117888,\"in_reply_to_status_id_str\":\"1153125374366117888\",\"in_reply_to_user_id\":26970305,\"in_reply_to_user_id_str\":\"26970305\",\"in_reply_to_screen_name\":\"radenrauf\",\"user\":{\"id\":2159997463,\"id_str\":\"2159997463\",\"name\":\"<NAME>\",\"screen_name\":\"thegr8gerits\",\"location\":\"Dimana weh asal sama kamu\",\"description\":\"penyuka seblak ga pedes\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":171,\"friends_count\":76,\"listed_count\":0,\"created_at\":\"Mon Oct 28 01:56:32 +0000 2013\",\"favourites_count\":20,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":4651,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme18\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme18\\/bg.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1153178280897335297\\/wNt3niFq_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1153178280897335297\\/wNt3niFq_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2159997463\\/1561961728\",\"profile_link_color\":\"038543\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":0,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"}', NULL, NULL, 'radenrauf yuni sarah ft raffi ahmad - 50 tahun lagi tinggal nikah yuninya', 'raffi ahmad'),
(350, 'W.', '@jeonww', 2147483647, 'RT @kaiakerber: @yourjinhyuk Kok lo nyalahin istrinya raffi ahmad sih', 'positif', '398', '349', 'l\'antique vs opulents', 'No', 1, 'Mon Jul 22 15:24:30 +0000 2019', 'Thu Oct 19 05:52:12 +0000 2017', '20190722073626', '{\"created_at\":\"Mon Jul 22 15:24:30 +0000 2019\",\"id\":1153324950108815360,\"id_str\":\"1153324950108815360\",\"text\":\"RT @kaiakerber: @yourjinhyuk Kok lo nyalahin istrinya raffi ahmad sih\",\"truncated\":false,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"kaiakerber\",\"name\":\"<NAME>\",\"id\":816421721955667968,\"id_str\":\"816421721955667968\",\"indices\":[3,14]},{\"screen_name\":\"yourjinhyuk\",\"name\":\"Jinhyuk \\u2600\\ufe0f\",\"id\":1136272771443412992,\"id_str\":\"1136272771443412992\",\"indices\":[16,28]}],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\">Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":920890302654590976,\"id_str\":\"920890302654590976\",\"name\":\"W.\",\"screen_name\":\"jeonww\",\"location\":\"l\'antique vs opulents\",\"description\":\"\\ud835\\udc0d\\ud835\\udc28\\ud835\\udc2d \\ud835\\udc11\\ud835\\udc1e\\ud835\\udc1a\\ud835\\udc25 \\u2022Dope but actually dork, his deep voice can soothe before you sleep. Take a part on Hip Hop Unit from SEVENTEEN as a rapper and his name is \\uc804\\uc6d0\\uc6b0.\",\"url\":\"https:\\/\\/t.co\\/RLrfG9lptT\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/RLrfG9lptT\",\"expanded_url\":\"https:\\/\\/curiouscat.me\\/ketsuuu\",\"display_url\":\"curiouscat.me\\/ketsuuu\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":398,\"friends_count\":349,\"listed_count\":10,\"created_at\":\"Thu Oct 19 05:52:12 +0000 2017\",\"favourites_count\":386,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":15854,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1151486965734203396\\/iogRn8UI_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1151486965734203396\\/iogRn8UI_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/920890302654590976\\/1563370859\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Mon Jul 22 15:18:25 +0000 2019\",\"id\":1153323419020083200,\"id_str\":\"1153323419020083200\",\"text\":\"@yourjinhyuk Kok lo nyalahin istrinya raffi ahmad sih\",\"truncated\":false,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"yourjinhyuk\",\"name\":\"Jinhyuk \\u2600\\ufe0f\",\"id\":1136272771443412992,\"id_str\":\"1136272771443412992\",\"indices\":[0,12]}],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\">Twitter for Android<\\/a>\",\"in_reply_to_status_id\":1153323260051775488,\"in_reply_to_status_id_str\":\"1153323260051775488\",\"in_reply_to_user_id\":1136272771443412992,\"in_reply_to_user_id_str\":\"1136272771443412992\",\"in_reply_to_screen_name\":\"yourjinhyuk\",\"user\":{\"id\":816421721955667968,\"id_str\":\"816421721955667968\",\"name\":\"<NAME>\",\"screen_name\":\"kaiakerber\",\"location\":\"#BROKIES & St. Psychedlia. \",\"description\":\"\\u211d\\u2119\\ufe32 Multitasking as a daughter, as a seventeen year old American model under the DNA Models and also, as a bakwan-giver for Matteo only. Antiquettes Alumnus.\",\"url\":\"https:\\/\\/t.co\\/zY39rZuMO8\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/zY39rZuMO8\",\"expanded_url\":\"http:\\/\\/Curiouscat.me\\/jalanraia\",\"display_url\":\"Curiouscat.me\\/jalanraia\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":633,\"friends_count\":499,\"listed_count\":12,\"created_at\":\"Tue Jan 03 23:11:21 +0000 2017\",\"favourites_count\":1528,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":46828,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1152886710352531456\\/0UxQW-2n_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1152886710352531456\\/0UxQW-2n_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/816421721955667968\\/1563479237\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":4,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"},\"is_quote_status\":false,\"retweet_count\":4,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"}', NULL, NULL, 'rt kaiakerber yourjinhyuk kok lo nyalahin istri raffi ahmad sih', 'raffi ahmad'),
(351, 'Love, Yohan.', '@kyohan', 2147483647, 'RT @kaiakerber: @yourjinhyuk Kok lo nyalahin istrinya raffi ahmad sih', 'positif', '547', '246', 'l\'antique ? dumpies', 'No', 2, 'Mon Jul 22 15:22:20 +0000 2019', 'Sat Aug 20 08:17:13 +0000 2016', '20190722073626', '{\"created_at\":\"Mon Jul 22 15:22:20 +0000 2019\",\"id\":1153324405767806977,\"id_str\":\"1153324405767806977\",\"text\":\"RT @kaiakerber: @yourjinhyuk Kok lo nyalahin istrinya raffi ahmad sih\",\"truncated\":false,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"kaiakerber\",\"name\":\"<NAME>\",\"id\":816421721955667968,\"id_str\":\"816421721955667968\",\"indices\":[3,14]},{\"screen_name\":\"yourjinhyuk\",\"name\":\"Jinhyuk \\u2600\\ufe0f\",\"id\":1136272771443412992,\"id_str\":\"1136272771443412992\",\"indices\":[16,28]}],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"https:\\/\\/mobile.twitter.com\\\" rel=\\\"nofollow\\\">Twitter Web App<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":766911954858352640,\"id_str\":\"766911954858352640\",\"name\":\"<NAME>.\",\"screen_name\":\"kyohan\",\"location\":\"l\'antique \\u25cb dumpies\",\"description\":\"\\u300aGen!RP\\u300bProudly has become one of eleven brilliant gems of X1 and also mandated as the fourth generation of nation center and Jeffrey\'s personal kitten.\",\"url\":\"https:\\/\\/t.co\\/LrwdtL0oZv\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/LrwdtL0oZv\",\"expanded_url\":\"http:\\/\\/curiouscat.me\\/yo-yo\",\"display_url\":\"curiouscat.me\\/yo-yo\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":547,\"friends_count\":246,\"listed_count\":14,\"created_at\":\"Sat Aug 20 08:17:13 +0000 2016\",\"favourites_count\":561,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":20558,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1152273115478577152\\/lTm0mnGG_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1152273115478577152\\/lTm0mnGG_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/766911954858352640\\/1563558296\",\"profile_link_color\":\"961906\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Mon Jul 22 15:18:25 +0000 2019\",\"id\":1153323419020083200,\"id_str\":\"1153323419020083200\",\"text\":\"@yourjinhyuk Kok lo nyalahin istrinya raffi ahmad sih\",\"truncated\":false,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"yourjinhyuk\",\"name\":\"Jinhyuk \\u2600\\ufe0f\",\"id\":1136272771443412992,\"id_str\":\"1136272771443412992\",\"indices\":[0,12]}],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\">Twitter for Android<\\/a>\",\"in_reply_to_status_id\":1153323260051775488,\"in_reply_to_status_id_str\":\"1153323260051775488\",\"in_reply_to_user_id\":1136272771443412992,\"in_reply_to_user_id_str\":\"1136272771443412992\",\"in_reply_to_screen_name\":\"yourjinhyuk\",\"user\":{\"id\":816421721955667968,\"id_str\":\"816421721955667968\",\"name\":\"<NAME>\",\"screen_name\":\"kaiakerber\",\"location\":\"#BROKIES & St. Psychedlia. \",\"description\":\"\\u211d\\u2119\\ufe32 Multitasking as a daughter, as a seventeen year old American model under the DNA Models and also, as a bakwan-giver for Matteo only. Antiquettes Alumnus.\",\"url\":\"https:\\/\\/t.co\\/zY39rZuMO8\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/zY39rZuMO8\",\"expanded_url\":\"http:\\/\\/Curiouscat.me\\/jalanraia\",\"display_url\":\"Curiouscat.me\\/jalanraia\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":633,\"friends_count\":499,\"listed_count\":12,\"created_at\":\"Tue Jan 03 23:11:21 +0000 2017\",\"favourites_count\":1528,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":46828,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1152886710352531456\\/0UxQW-2n_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1152886710352531456\\/0UxQW-2n_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/816421721955667968\\/1563479237\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":4,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"},\"is_quote_status\":false,\"retweet_count\":4,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"}', NULL, NULL, 'rt kaiakerber yourjinhyuk kok lo nyalahin istri raffi ahmad sih', 'raffi ahmad'),
(369, 'Sesuai aplikasi ya mas', '@babangrab', 2147483647, 'RT @MarnoMbois: Pak @jokowi, kami juga menyarankan untuk adanya Menteri Penguapan, guna mengarahkan pelajar+mahasiswa yang ongap-angop wae…', 'positif', '13', '204', 'Suka Makmur, Indonesia', 'No', 1, 'Thu Jul 25 10:22:39 +0000 2019', 'Mon May 14 16:24:12 +0000 2018', '20190725102406', '{\"created_at\":\"Thu Jul 25 10:22:39 +0000 2019\",\"id\":1154336150435221504,\"id_str\":\"1154336150435221504\",\"text\":\"RT @MarnoMbois: Pak @jokowi, kami juga menyarankan untuk adanya Menteri Penguapan, guna mengarahkan pelajar+mahasiswa yang ongap-angop wae\\u2026\",\"truncated\":false,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"MarnoMbois\",\"name\":\"<NAME>\",\"id\":3041601229,\"id_str\":\"3041601229\",\"indices\":[3,14]},{\"screen_name\":\"jokowi\",\"name\":\"<NAME>\",\"id\":366987179,\"id_str\":\"366987179\",\"indices\":[20,27]}],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\">Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":996063637864251392,\"id_str\":\"996063637864251392\",\"name\":\"Sesuai aplikasi ya mas\",\"screen_name\":\"babangrab\",\"location\":\"Suka Makmur, Indonesia\",\"description\":\"Berbahagialah jiwa jiwa lemah ,-\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":13,\"friends_count\":204,\"listed_count\":0,\"created_at\":\"Mon May 14 16:24:12 +0000 2018\",\"favourites_count\":386,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":569,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1154205167530627072\\/ZdEj1GuO_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1154205167530627072\\/ZdEj1GuO_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/996063637864251392\\/1539134350\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Thu Jul 25 09:40:09 +0000 2019\",\"id\":1154325455173849088,\"id_str\":\"1154325455173849088\",\"text\":\"Pak @jokowi, kami juga menyarankan untuk adanya Menteri Penguapan, guna mengarahkan pelajar+mahasiswa yang ongap-an\\u2026 https:\\/\\/t.co\\/asB7EV1kTk\",\"truncated\":true,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"jokowi\",\"name\":\"<NAME>\",\"id\":366987179,\"id_str\":\"366987179\",\"indices\":[4,11]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/asB7EV1kTk\",\"expanded_url\":\"https:\\/\\/twitter.com\\/i\\/web\\/status\\/1154325455173849088\",\"display_url\":\"twitter.com\\/i\\/web\\/status\\/1\\u2026\",\"indices\":[117,140]}]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\">Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":3041601229,\"id_str\":\"3041601229\",\"name\":\"<NAME>\",\"screen_name\":\"MarnoMbois\",\"location\":\"<EMAIL> \",\"description\":\"Piye perasaanmu nek dadi kates? \\/\\/ IG: marnologue_\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":95315,\"friends_count\":0,\"listed_count\":71,\"created_at\":\"Wed Feb 25 16:24:28 +0000 2015\",\"favourites_count\":4,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":11324,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1033618112875130880\\/rwuS9kAI_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1033618112875130880\\/rwuS9kAI_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3041601229\\/1558181205\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":79,\"favorite_count\":131,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"},\"is_quote_status\":false,\"retweet_count\":79,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"}', NULL, NULL, 'rt marnombois pak jokowi kami juga saran untuk ada menteri uap guna arah ajar mahasiswa yang ongap-angop wae', 'jokowi'),
(294, 'Nave', '@Nave__', 2147483647, 'RT @kacamatcha: @SiiJagoan Salut sama lulove, meskipun di becandain sama ricis ga marah. Bagus, cowo emang ga boleh kasar sama cewe:)', 'positif', '602', '356', 'Jakarta Capital Region, Indonesia', 'No', 9, 'Wed Jul 17 04:22:38 +0000 2019', 'Sat Jan 30 04:12:39 +0000 2010', '20190717050922', '{\"created_at\":\"Wed Jul 17 04:22:38 +0000 2019\",\"id\":1151346448216125441,\"id_str\":\"1151346448216125441\",\"text\":\"RT @kacamatcha: @SiiJagoan Salut sama lulove, meskipun di becandain sama ricis ga marah. Bagus, cowo emang ga boleh kasar sama cewe:)\",\"truncated\":false,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"kacamatcha\",\"name\":\"cup tea\",\"id\":1015252934395756544,\"id_str\":\"1015252934395756544\",\"indices\":[3,14]},{\"screen_name\":\"SiiJagoan\",\"name\":\"PANCA - PMAN\",\"id\":110090649,\"id_str\":\"110090649\",\"indices\":[16,26]}],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\">Twitter for iPhone<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":109754382,\"id_str\":\"109754382\",\"name\":\"Nave\",\"screen_name\":\"Nave__\",\"location\":\"Jakarta Capital Region, Indonesia\",\"description\":\"a singer. and a writer. oh and also a university student. click on the link below to see my blog. instagram: @na.ve\",\"url\":\"https:\\/\\/t.co\\/Lav3hxiV7J\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Lav3hxiV7J\",\"expanded_url\":\"http:\\/\\/www.ineverymoments.blogspot.com\",\"display_url\":\"ineverymoments.blogspot.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":602,\"friends_count\":356,\"listed_count\":1,\"created_at\":\"Sat Jan 30 04:12:39 +0000 2010\",\"favourites_count\":643,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":56637,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme10\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme10\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1080684661418844160\\/Hnto5aZ7_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1080684661418844160\\/Hnto5aZ7_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/109754382\\/1432903980\",\"profile_link_color\":\"000000\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"FFFFFF\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Mon Jul 15 01:50:49 +0000 2019\",\"id\":1150583465860976640,\"id_str\":\"1150583465860976640\",\"text\":\"@SiiJagoan Salut sama lulove, meskipun di becandain sama ricis ga marah. Bagus, cowo emang ga boleh kasar sama cewe:)\",\"truncated\":false,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"SiiJagoan\",\"name\":\"PANCA - PMAN\",\"id\":110090649,\"id_str\":\"110090649\",\"indices\":[0,10]}],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\">Twitter for Android<\\/a>\",\"in_reply_to_status_id\":1150567037325807618,\"in_reply_to_status_id_str\":\"1150567037325807618\",\"in_reply_to_user_id\":110090649,\"in_reply_to_user_id_str\":\"110090649\",\"in_reply_to_screen_name\":\"SiiJagoan\",\"user\":{\"id\":1015252934395756544,\"id_str\":\"1015252934395756544\",\"name\":\"cup tea\",\"screen_name\":\"kacamatcha\",\"location\":\"South Borneo, Indonesia\",\"description\":\"Mahasiswi psikologi tapi pengen jadi jurnalis\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":120,\"friends_count\":137,\"listed_count\":0,\"created_at\":\"Fri Jul 06 15:15:36 +0000 2018\",\"favourites_count\":284,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1256,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1150784913018253313\\/axLvmYIl_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1150784913018253313\\/axLvmYIl_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1015252934395756544\\/1545714587\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":1911,\"favorite_count\":2305,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"},\"is_quote_status\":false,\"retweet_count\":1911,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"}', NULL, NULL, 'rt kacamatcha siijagoan salut sama lulove meski di becandain sama ricis ga marah bagus cowo emang ga boleh kasar sama cewe', 'ricis'),
(295, 'Nave', '@Nave__', 2147483647, 'RT @kimeriooh: @SiiJagoan Gua ga pernah nonton video2 ricis sebelum nya tapi kalo dia collab sama LL sumpah lucu bat si ricis nya berani gi…', 'positif', '602', '356', 'Jakarta Capital Region, Indonesia', 'No', 9, 'Wed Jul 17 04:22:32 +0000 2019', 'Sat Jan 30 04:12:39 +0000 2010', '20190717050922', '{\"created_at\":\"Wed Jul 17 04:22:32 +0000 2019\",\"id\":1151346421435514880,\"id_str\":\"1151346421435514880\",\"text\":\"RT @kimeriooh: @SiiJagoan Gua ga pernah nonton video2 ricis sebelum nya tapi kalo dia collab sama LL sumpah lucu bat si ricis nya berani gi\\u2026\",\"truncated\":false,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"kimeriooh\",\"name\":\"B chity lights\",\"id\":562693943,\"id_str\":\"562693943\",\"indices\":[3,13]},{\"screen_name\":\"SiiJagoan\",\"name\":\"<NAME>\",\"id\":110090649,\"id_str\":\"110090649\",\"indices\":[15,25]}],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\">Twitter for iPhone<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":109754382,\"id_str\":\"109754382\",\"name\":\"Nave\",\"screen_name\":\"Nave__\",\"location\":\"Jakarta Capital Region, Indonesia\",\"description\":\"a singer. and a writer. oh and also a university student. click on the link below to see my blog. instagram: @na.ve\",\"url\":\"https:\\/\\/t.co\\/Lav3hxiV7J\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Lav3hxiV7J\",\"expanded_url\":\"http:\\/\\/www.ineverymoments.blogspot.com\",\"display_url\":\"ineverymoments.blogspot.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":602,\"friends_count\":356,\"listed_count\":1,\"created_at\":\"Sat Jan 30 04:12:39 +0000 2010\",\"favourites_count\":643,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":56637,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme10\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme10\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1080684661418844160\\/Hnto5aZ7_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1080684661418844160\\/Hnto5aZ7_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/109754382\\/1432903980\",\"profile_link_color\":\"000000\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"FFFFFF\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Mon Jul 15 06:42:14 +0000 2019\",\"id\":1150656803291537408,\"id_str\":\"1150656803291537408\",\"text\":\"@SiiJagoan Gua ga pernah nonton video2 ricis sebelum nya tapi kalo dia collab sama LL sumpah lucu bat si ricis nya\\u2026 https:\\/\\/t.co\\/ejcXnvevfj\",\"truncated\":true,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"SiiJagoan\",\"name\":\"PANCA - PMAN\",\"id\":110090649,\"id_str\":\"110090649\",\"indices\":[0,10]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ejcXnvevfj\",\"expanded_url\":\"https:\\/\\/twitter.com\\/i\\/web\\/status\\/1150656803291537408\",\"display_url\":\"twitter.com\\/i\\/web\\/status\\/1\\u2026\",\"indices\":[116,139]}]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\">Twitter for iPhone<\\/a>\",\"in_reply_to_status_id\":1150567037325807618,\"in_reply_to_status_id_str\":\"1150567037325807618\",\"in_reply_to_user_id\":110090649,\"in_reply_to_user_id_str\":\"110090649\",\"in_reply_to_screen_name\":\"SiiJagoan\",\"user\":{\"id\":562693943,\"id_str\":\"562693943\",\"name\":\"<NAME>\",\"screen_name\":\"kimeriooh\",\"location\":\"exoplanet nine alien\",\"description\":\"\\u2728stan planet \\uc5b5\\uc18c\\u2728@weareoneEXO @B_Hundred_Hyun @layzhang\\u26a1\\ufe0fremember @WannaOne_twt\\ud83c\\udf88belum menjadi rumput @NCTsmtown\\ud83c\\udf31maaf tapi aku ot9 forever\\ud83d\\udd25\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":502,\"friends_count\":748,\"listed_count\":1,\"created_at\":\"Wed Apr 25 08:09:02 +0000 2012\",\"favourites_count\":5849,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":26758,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"B2DFDA\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1150494229170286592\\/OvIS0fTX_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1150494229170286592\\/OvIS0fTX_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/562693943\\/1563306935\",\"profile_link_color\":\"93A644\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":111,\"favorite_count\":288,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"},\"is_quote_status\":false,\"retweet_count\":111,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"}', NULL, NULL, 'rt kimeriooh siijagoan gua ga pernah nonton video2 ricis belum nya tapi kalo dia collab sama ll sumpah lucu bat si ricis nya berani gi', 'ricis');
INSERT INTO `crawl_data` (`id`, `name`, `screen_name`, `tweet_id`, `text`, `flag`, `followers_count`, `following_count`, `location`, `verified`, `different_year`, `created_post`, `created_account`, `token_search`, `result_crawl_json`, `class_hoax`, `class_hoax_info`, `tokenizing`, `keyword`) VALUES
(292, 'Jia', '@jongdaeforlyfe', 2147483647, 'RT @kembaranjeno: @yurisndika @itsaleey Walaupun dicengin ama ricis tapi dia ga main kasar. Lucinta luna emang laki laki yang hebat.', 'positif', '255', '393', '', 'No', 5, 'Wed Jul 17 04:32:08 +0000 2019', 'Fri Oct 18 06:17:49 +0000 2013', '20190717050922', '{\"created_at\":\"Wed Jul 17 04:32:08 +0000 2019\",\"id\":1151348835630764032,\"id_str\":\"1151348835630764032\",\"text\":\"RT @kembaranjeno: @yurisndika @itsaleey Walaupun dicengin ama ricis tapi dia ga main kasar. Lucinta luna emang laki laki yang hebat.\",\"truncated\":false,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"kembaranjeno\",\"name\":\"<NAME>\",\"id\":2340181520,\"id_str\":\"2340181520\",\"indices\":[3,16]},{\"screen_name\":\"yurisndika\",\"name\":\"\\/\\/\",\"id\":2665318182,\"id_str\":\"2665318182\",\"indices\":[18,29]},{\"screen_name\":\"itsaleey\",\"name\":\"<NAME>\",\"id\":78565229,\"id_str\":\"78565229\",\"indices\":[30,39]}],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\">Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1968288296,\"id_str\":\"1968288296\",\"name\":\"Jia\",\"screen_name\":\"jongdaeforlyfe\",\"location\":\"\",\"description\":\"EXO-L \\u2764\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":255,\"friends_count\":393,\"listed_count\":0,\"created_at\":\"Fri Oct 18 06:17:49 +0000 2013\",\"favourites_count\":2552,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":4070,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1149501345084215298\\/o8a3IqeX_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1149501345084215298\\/o8a3IqeX_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1968288296\\/1562317009\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Mon Jul 15 06:48:01 +0000 2019\",\"id\":1150658258534715392,\"id_str\":\"1150658258534715392\",\"text\":\"@yurisndika @itsaleey Walaupun dicengin ama ricis tapi dia ga main kasar. Lucinta luna emang laki laki yang hebat.\",\"truncated\":false,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"yurisndika\",\"name\":\"\\/\\/\",\"id\":2665318182,\"id_str\":\"2665318182\",\"indices\":[0,11]},{\"screen_name\":\"itsaleey\",\"name\":\"<NAME>\",\"id\":78565229,\"id_str\":\"78565229\",\"indices\":[12,21]}],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\">Twitter for Android<\\/a>\",\"in_reply_to_status_id\":1150450052290105344,\"in_reply_to_status_id_str\":\"1150450052290105344\",\"in_reply_to_user_id\":2665318182,\"in_reply_to_user_id_str\":\"2665318182\",\"in_reply_to_screen_name\":\"yurisndika\",\"user\":{\"id\":2340181520,\"id_str\":\"2340181520\",\"name\":\"NCT Jeno\",\"screen_name\":\"kembaranjeno\",\"location\":\"Kota Surabaya, Jawa Timur\",\"description\":\"YoonA Stand \\u2022 Buddy \\u2022 VIP&NCTzen\\u2022 \\u2022TeamViny \\u2022 Madridista \\u2022 MayuyyOshi \\u2022 YukoOshi \\u2022 Sahabat Noah \\u2022 Sakuratan\\nHambaALLAH\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":69,\"friends_count\":348,\"listed_count\":2,\"created_at\":\"Wed Feb 12 11:27:05 +0000 2014\",\"favourites_count\":4701,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":9546,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1097487388169785345\\/1NB5RaM2_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1097487388169785345\\/1NB5RaM2_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2340181520\\/1531484265\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":769,\"favorite_count\":993,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"},\"is_quote_status\":false,\"retweet_count\":769,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"}', NULL, NULL, 'rt kembaranjeno yurisndika itsaleey walaupun dicengin ama ricis tapi dia ga main kasar lucinta luna emang laki laki yang hebat', 'ricis'),
(291, '???? ???????', '@wnyongie', 2147483647, '@uxshiuf @ejiinhee_ . . . ak ria ricis ka dedep jadi ll n — ! ????', 'positif', '2039', '2138', 'non—datging. ????', 'No', 0, 'Wed Jul 17 04:32:48 +0000 2019', 'Sun Feb 03 01:03:44 +0000 2019', '20190717050922', '{\"created_at\":\"Wed Jul 17 04:32:48 +0000 2019\",\"id\":1151349003751026689,\"id_str\":\"1151349003751026689\",\"text\":\"@uxshiuf @ejiinhee_ . . . ak ria ricis ka dedep jadi ll n \\u2014 ! \\ud83d\\ude3e\",\"truncated\":false,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"uxshiuf\",\"name\":\"kadevi.\",\"id\":1042296574229934080,\"id_str\":\"1042296574229934080\",\"indices\":[0,8]},{\"screen_name\":\"ejiinhee_\",\"name\":\"Jinne, \\uc804\",\"id\":1102552615659827200,\"id_str\":\"1102552615659827200\",\"indices\":[9,19]}],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\">Twitter for Android<\\/a>\",\"in_reply_to_status_id\":1151118981970841602,\"in_reply_to_status_id_str\":\"1151118981970841602\",\"in_reply_to_user_id\":1042296574229934080,\"in_reply_to_user_id_str\":\"1042296574229934080\",\"in_reply_to_screen_name\":\"uxshiuf\",\"user\":{\"id\":1091864781009477632,\"id_str\":\"1091864781009477632\",\"name\":\"\\u02da\\u2661\\u0337\\u0337 \\u0280\\u1d00\\u0280\\u1d00\\u02b7\\u1d4f\\u1d48\",\"screen_name\":\"wnyongie\",\"location\":\"non\\u2014datging. \\ud83d\\ude3e\",\"description\":\"` \\u2661\\u0337\\u0337 \\u1762 [ O4\\ub144 ] \\u275d E\\u028f\\u1d07s O\\u0274 M\\u1d07!IZ*ONE O\\u0493\\u0493\\u026a\\u1d04\\u026a\\u1d00\\u029f\\u029f C\\u1d07\\u0274\\u1d1b\\u1d07\\u0280 \\uc785\\ub2c8\\ub2e4 \\u02ce\\u02ca\\u02d7 K\\u1952o\\u1955\\u1952 \\u1972s Wo\\u1952\\u10e7o\\u1959\\u1952g d\\u1971 J\\u1972\\u1952g \\u0fd0\\ud83d\\udd4a \\ua4b0 \\u1952\\u1959ss\\u1972 x r\\u1972r\\u1972 \\u1955\\u03b9th @guanlirdn \\ua4b1 \\ud83e\\udd5e @renjunds` lilsist #MILL0NxN4\",\"url\":\"https:\\/\\/t.co\\/QVYNdGhfBJ\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/QVYNdGhfBJ\",\"expanded_url\":\"http:\\/\\/WYSQ.WAKANDA.co\",\"display_url\":\"WYSQ.WAKANDA.co\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2039,\"friends_count\":2138,\"listed_count\":3,\"created_at\":\"Sun Feb 03 01:03:44 +0000 2019\",\"favourites_count\":267,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":7692,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1151275659634700288\\/zjt2mGKK_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1151275659634700288\\/zjt2mGKK_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1091864781009477632\\/1563287902\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":0,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"}', NULL, NULL, 'uxshiuf ejiinhee ak ria ricis ka dedep jadi ll n', 'ricis'),
(288, 'y?', '@catshyy', 2147483647, '@1seayou chatime ricis sumpa', 'positif', '72', '109', 'aKuN nGelUh', 'No', 0, 'Wed Jul 17 04:39:25 +0000 2019', 'Fri Jul 12 02:57:53 +0000 2019', '20190717050922', '{\"created_at\":\"Wed Jul 17 04:39:25 +0000 2019\",\"id\":1151350669778886656,\"id_str\":\"1151350669778886656\",\"text\":\"@1seayou chatime ricis sumpa\",\"truncated\":false,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"1seayou\",\"name\":\"Chaca.\",\"id\":1147314836268699648,\"id_str\":\"1147314836268699648\",\"indices\":[0,8]}],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\">Twitter for iPhone<\\/a>\",\"in_reply_to_status_id\":1151347011238522882,\"in_reply_to_status_id_str\":\"1151347011238522882\",\"in_reply_to_user_id\":1147314836268699648,\"in_reply_to_user_id_str\":\"1147314836268699648\",\"in_reply_to_screen_name\":\"1seayou\",\"user\":{\"id\":1149513179325587456,\"id_str\":\"1149513179325587456\",\"name\":\"y?\",\"screen_name\":\"catshyy\",\"location\":\"aKuN nGelUh\",\"description\":\"km kenapasi mara mara aja\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":72,\"friends_count\":109,\"listed_count\":0,\"created_at\":\"Fri Jul 12 02:57:53 +0000 2019\",\"favourites_count\":17,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":270,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1150355994246934528\\/Q4ahkOZl_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1150355994246934528\\/Q4ahkOZl_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1149513179325587456\\/1563109844\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":0,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"}', NULL, NULL, '1seayou chatime ricis sumpa', 'ricis'),
(289, '<NAME>', '@lycreesd', 2147483647, 'RT @kematianmuu: -Thread-\nKampus Horror\n\nBukan maksud menjelekan pihak manapun tapi ini adalah beberapa cerita nyata yang saya dan teman-te…', 'positif', '80', '51', 'Jawa Timur, Surabaya', 'No', 8, 'Wed Jul 17 04:37:02 +0000 2019', 'Thu Mar 31 08:05:43 +0000 2011', '20190717050922', '{\"created_at\":\"Wed Jul 17 04:37:02 +0000 2019\",\"id\":1151350070572269570,\"id_str\":\"1151350070572269570\",\"text\":\"RT @kematianmuu: -Thread-\\nKampus Horror\\n\\nBukan maksud menjelekan pihak manapun tapi ini adalah beberapa cerita nyata yang saya dan teman-te\\u2026\",\"truncated\":false,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"kematianmuu\",\"name\":\"suka send gif unyu\",\"id\":1120182868771082240,\"id_str\":\"1120182868771082240\",\"indices\":[3,15]}],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\">Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":274913535,\"id_str\":\"274913535\",\"name\":\"<NAME>\",\"screen_name\":\"lycreesd\",\"location\":\"Jawa Timur, Surabaya\",\"description\":\"Ora Et Labora\",\"url\":\"https:\\/\\/t.co\\/YA4lqZ1Uyb\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/YA4lqZ1Uyb\",\"expanded_url\":\"https:\\/\\/www.instagram.com\\/luckya_n\",\"display_url\":\"instagram.com\\/luckya_n\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":80,\"friends_count\":51,\"listed_count\":1,\"created_at\":\"Thu Mar 31 08:05:43 +0000 2011\",\"favourites_count\":3,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":71,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"170807\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme15\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme15\\/bg.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/755697254304886784\\/64ExUsie_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/755697254304886784\\/64ExUsie_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/274913535\\/1544243789\",\"profile_link_color\":\"1B95E0\",\"profile_sidebar_border_color\":\"EDE4C2\",\"profile_sidebar_fill_color\":\"BAD1C2\",\"profile_text_color\":\"C9878B\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Wed Jul 10 12:54:12 +0000 2019\",\"id\":1148938470510907397,\"id_str\":\"1148938470510907397\",\"text\":\"-Thread-\\nKampus Horror\\n\\nBukan maksud menjelekan pihak manapun tapi ini adalah beberapa cerita nyata yang saya dan t\\u2026 https:\\/\\/t.co\\/xZ0VguUEbH\",\"truncated\":true,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/xZ0VguUEbH\",\"expanded_url\":\"https:\\/\\/twitter.com\\/i\\/web\\/status\\/1148938470510907397\",\"display_url\":\"twitter.com\\/i\\/web\\/status\\/1\\u2026\",\"indices\":[117,140]}]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\">Twitter Web Client<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1120182868771082240,\"id_str\":\"1120182868771082240\",\"name\":\"suka send gif unyu\",\"screen_name\":\"kematianmuu\",\"location\":\"antara bogor dan jakarta\",\"description\":\"pen beraq tapi lg gpunya duit\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":53,\"friends_count\":87,\"listed_count\":0,\"created_at\":\"Mon Apr 22 04:29:42 +0000 2019\",\"favourites_count\":152,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":447,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1145693314978467841\\/7amx18a__normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1145693314978467841\\/7amx18a__normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1120182868771082240\\/1555909280\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":150,\"favorite_count\":430,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"},\"is_quote_status\":false,\"retweet_count\":150,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"}', NULL, NULL, 'rt kematianmuu -thread- kampus horror bukan maksud jelek pihak mana tapi ini adalah beberapa cerita nyata yang saya dan teman-te', 'ricis'),
(284, 'meeng', '@wwoseok', 2147483647, 'Mau balik ke ricis hikd. Balikin gem gue @chiltapon', 'positif', '498', '444', 'current rank: 2?', 'No', 0, 'Wed Jul 17 05:03:23 +0000 2019', 'Mon Feb 25 10:49:55 +0000 2019', '20190717050922', '{\"created_at\":\"Wed Jul 17 05:03:23 +0000 2019\",\"id\":1151356700986732544,\"id_str\":\"1151356700986732544\",\"text\":\"Mau balik ke ricis hikd. Balikin gem gue @chiltapon\",\"truncated\":false,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"chiltapon\",\"name\":\"VAREN$\",\"id\":2436706652,\"id_str\":\"2436706652\",\"indices\":[41,51]}],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\">Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1099984830761033729,\"id_str\":\"1099984830761033729\",\"name\":\"meeng\",\"screen_name\":\"wwoseok\",\"location\":\"current rank: 2\\ub4f1\",\"description\":\"\\u208d RP\\/OOC\\u20141996 \\u208e\\u00a0\\uc8fc\\uac04 \\ub9cc\\ud654\\ucc45\\uc744 \\uc88b\\uc544\\ud558\\ub294 \\uc0ac\\ub78c\\uc740 \\ub4dc\\ub7fc, \\ud0c1\\uad6c \\ubc0f \\uc5f0\\uae30\\ub97c \\uc88b\\uc544\\ud569\\ub2c8\\ub2e4. \\ud835\\udc13\\ud835\\udc28\\ud835\\udc29 \\ud835\\udc0c\\ud835\\udc1e\\ud835\\udc1d\\ud835\\udc22\\ud835\\udc1a \\ud835\\udc04\\ud835\\udc27\\ud835\\udc2d\'\\ud835\\udc2c \\ud835\\udc0a\\ud835\\udc22\\ud835\\udc26 \\ud835\\udc16\\ud835\\udc28\\ud835\\udc28\\ud835\\udc2c\\ud835\\udc1e\\ud835\\udc28\\ud835\\udc24 \\ud504\\ub85c\\ub4c0\\uc2a4 \\uff58 101\\uc758 \\uc5f0\\uc218\\uc0dd CP: @PEDESX1O1 @DAZZLEWOO\",\"url\":\"https:\\/\\/t.co\\/bAMMBT6Z2F\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/bAMMBT6Z2F\",\"expanded_url\":\"http:\\/\\/www.ns-a-fw.com\",\"display_url\":\"ns-a-fw.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":498,\"friends_count\":444,\"listed_count\":3,\"created_at\":\"Mon Feb 25 10:49:55 +0000 2019\",\"favourites_count\":964,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":16139,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1151075223338274816\\/E1AW0R5O_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1151075223338274816\\/E1AW0R5O_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1099984830761033729\\/1563272693\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":0,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"}', NULL, NULL, 'mau balik ke ricis hikd balikin gem gue chiltapon', 'ricis'),
(285, 'MatahariFlower????', '@Its_SunFlawer', 2147483647, 'RT @kematianmuu: -Thread-\nKampus Horror\n\nBukan maksud menjelekan pihak manapun tapi ini adalah beberapa cerita nyata yang saya dan teman-te…', 'positif', '228', '351', 'Indramayu, Indonesia', 'No', 2, 'Wed Jul 17 04:55:28 +0000 2019', 'Wed Jan 25 09:20:34 +0000 2017', '20190717050922', '{\"created_at\":\"Wed Jul 17 04:55:28 +0000 2019\",\"id\":1151354710789521408,\"id_str\":\"1151354710789521408\",\"text\":\"RT @kematianmuu: -Thread-\\nKampus Horror\\n\\nBukan maksud menjelekan pihak manapun tapi ini adalah beberapa cerita nyata yang saya dan teman-te\\u2026\",\"truncated\":false,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"kematianmuu\",\"name\":\"suka send gif unyu\",\"id\":1120182868771082240,\"id_str\":\"1120182868771082240\",\"indices\":[3,15]}],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"https:\\/\\/mobile.twitter.com\\\" rel=\\\"nofollow\\\">Twitter Web App<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":824185181242327040,\"id_str\":\"824185181242327040\",\"name\":\"MatahariFlower\\ud83c\\udf3b\",\"screen_name\":\"Its_SunFlawer\",\"location\":\"Indramayu, Indonesia\",\"description\":\"Free follback gais, jgn sungkan untuk follow nanti lgs di follback kok! \\nDo not unfollow please!\\nIt\'s me ona\\ud83c\\udf3b\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":228,\"friends_count\":351,\"listed_count\":0,\"created_at\":\"Wed Jan 25 09:20:34 +0000 2017\",\"favourites_count\":4394,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2947,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1146738663373471744\\/oDUaEElC_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1146738663373471744\\/oDUaEElC_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/824185181242327040\\/1523606903\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Wed Jul 10 12:54:12 +0000 2019\",\"id\":1148938470510907397,\"id_str\":\"1148938470510907397\",\"text\":\"-Thread-\\nKampus Horror\\n\\nBukan maksud menjelekan pihak manapun tapi ini adalah beberapa cerita nyata yang saya dan t\\u2026 https:\\/\\/t.co\\/xZ0VguUEbH\",\"truncated\":true,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/xZ0VguUEbH\",\"expanded_url\":\"https:\\/\\/twitter.com\\/i\\/web\\/status\\/1148938470510907397\",\"display_url\":\"twitter.com\\/i\\/web\\/status\\/1\\u2026\",\"indices\":[117,140]}]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\">Twitter Web Client<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1120182868771082240,\"id_str\":\"1120182868771082240\",\"name\":\"<NAME>\",\"screen_name\":\"kematianmuu\",\"location\":\"antara bogor dan jakarta\",\"description\":\"pen beraq tapi lg gpunya duit\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":53,\"friends_count\":87,\"listed_count\":0,\"created_at\":\"Mon Apr 22 04:29:42 +0000 2019\",\"favourites_count\":152,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":447,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1145693314978467841\\/7amx18a__normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1145693314978467841\\/7amx18a__normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1120182868771082240\\/1555909280\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":150,\"favorite_count\":430,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"},\"is_quote_status\":false,\"retweet_count\":150,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"}', NULL, NULL, 'rt kematianmuu -thread- kampus horror bukan maksud jelek pihak mana tapi ini adalah beberapa cerita nyata yang saya dan teman-te', 'ricis'),
(290, 'SFJournals', '@siwafathzee', 2147483647, 'RT @kematianmuu: -Thread-\nKampus Horror\n\nBukan maksud menjelekan pihak manapun tapi ini adalah beberapa cerita nyata yang saya dan teman-te…', 'positif', '93', '71', 'FIB-UI\'19 insyaallah', 'No', 6, 'Wed Jul 17 04:36:29 +0000 2019', 'Mon May 06 03:32:01 +0000 2013', '20190717050922', '{\"created_at\":\"Wed Jul 17 04:36:29 +0000 2019\",\"id\":1151349932885860353,\"id_str\":\"1151349932885860353\",\"text\":\"RT @kematianmuu: -Thread-\\nKampus Horror\\n\\nBukan maksud menjelekan pihak manapun tapi ini adalah beberapa cerita nyata yang saya dan teman-te\\u2026\",\"truncated\":false,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"kematianmuu\",\"name\":\"suka send gif unyu\",\"id\":1120182868771082240,\"id_str\":\"1120182868771082240\",\"indices\":[3,15]}],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\">Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1406697740,\"id_str\":\"1406697740\",\"name\":\"SFJournals\",\"screen_name\":\"siwafathzee\",\"location\":\"FIB-UI\'19 insyaallah\",\"description\":\"hanya seorang gadis literalis berusia 17 tahun penyuka sastra yang mencintai seni.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":93,\"friends_count\":71,\"listed_count\":0,\"created_at\":\"Mon May 06 03:32:01 +0000 2013\",\"favourites_count\":233,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":445,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1149510183552290816\\/Xh7ar7_C_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1149510183552290816\\/Xh7ar7_C_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1406697740\\/1561619487\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Wed Jul 10 12:54:12 +0000 2019\",\"id\":1148938470510907397,\"id_str\":\"1148938470510907397\",\"text\":\"-Thread-\\nKampus Horror\\n\\nBukan maksud menjelekan pihak manapun tapi ini adalah beberapa cerita nyata yang saya dan t\\u2026 https:\\/\\/t.co\\/xZ0VguUEbH\",\"truncated\":true,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/xZ0VguUEbH\",\"expanded_url\":\"https:\\/\\/twitter.com\\/i\\/web\\/status\\/1148938470510907397\",\"display_url\":\"twitter.com\\/i\\/web\\/status\\/1\\u2026\",\"indices\":[117,140]}]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\">Twitter Web Client<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1120182868771082240,\"id_str\":\"1120182868771082240\",\"name\":\"suka send gif unyu\",\"screen_name\":\"kematianmuu\",\"location\":\"antara bogor dan jakarta\",\"description\":\"pen beraq tapi lg gpunya duit\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":53,\"friends_count\":87,\"listed_count\":0,\"created_at\":\"Mon Apr 22 04:29:42 +0000 2019\",\"favourites_count\":152,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":447,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1145693314978467841\\/7amx18a__normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1145693314978467841\\/7amx18a__normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1120182868771082240\\/1555909280\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":150,\"favorite_count\":430,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"},\"is_quote_status\":false,\"retweet_count\":150,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"}', NULL, NULL, 'rt kematianmuu -thread- kampus horror bukan maksud jelek pihak mana tapi ini adalah beberapa cerita nyata yang saya dan teman-te', 'ricis'),
(287, '????', '@watanabeaiur', 2147483647, '@honeeyxbi @snorlaxkoalaa AKU MAU NONTON YG VIDEO SM RICIS AH????????????', 'positif', '423', '505', '', 'No', 0, 'Wed Jul 17 04:39:48 +0000 2019', 'Sun Apr 21 14:16:24 +0000 2019', '20190717050922', '{\"created_at\":\"Wed Jul 17 04:39:48 +0000 2019\",\"id\":1151350768164753410,\"id_str\":\"1151350768164753410\",\"text\":\"@honeeyxbi @snorlaxkoalaa AKU MAU NONTON YG VIDEO SM RICIS AH\\ud83d\\udc4d\\ud83d\\udc4d\\ud83d\\udc4d\",\"truncated\":false,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"honeeyxbi\",\"name\":\"im.\",\"id\":1120962163596611584,\"id_str\":\"1120962163596611584\",\"indices\":[0,10]},{\"screen_name\":\"snorlaxkoalaa\",\"name\":\"<NAME>\",\"id\":1532940756,\"id_str\":\"1532940756\",\"indices\":[11,25]}],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\">Twitter for Android<\\/a>\",\"in_reply_to_status_id\":1151188752892432389,\"in_reply_to_status_id_str\":\"1151188752892432389\",\"in_reply_to_user_id\":1120962163596611584,\"in_reply_to_user_id_str\":\"1120962163596611584\",\"in_reply_to_screen_name\":\"honeeyxbi\",\"user\":{\"id\":1119968127108804611,\"id_str\":\"1119968127108804611\",\"name\":\"\\<PASSWORD>\\<PASSWORD>\",\"screen_name\":\"watanabeaiur\",\"location\":\"\",\"description\":\"pjwoo | treasure13 x ikon \\u2728\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":423,\"friends_count\":505,\"listed_count\":2,\"created_at\":\"Sun Apr 21 14:16:24 +0000 2019\",\"favourites_count\":3369,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":14753,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1150274075178098689\\/cTClDpVS_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1150274075178098689\\/cTClDpVS_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1119968127108804611\\/1563156567\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":0,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"}', NULL, NULL, 'honeeyxbi snorlaxkoalaa aku mau nonton yg video sm ricis ah', 'ricis'),
(286, 'be', '@gwsheart_', 2147483647, 'RT @kembaranjeno: @yurisndika @itsaleey Walaupun dicengin ama ricis tapi dia ga main kasar. Lucinta luna emang laki laki yang hebat.', 'positif', '305', '70', '', 'No', 1, 'Wed Jul 17 04:52:23 +0000 2019', 'Wed Jul 26 11:15:59 +0000 2017', '20190717050922', '{\"created_at\":\"Wed Jul 17 04:52:23 +0000 2019\",\"id\":1151353934130212864,\"id_str\":\"1151353934130212864\",\"text\":\"RT @kembaranjeno: @yurisndika @itsaleey Walaupun dicengin ama ricis tapi dia ga main kasar. Lucinta luna emang laki laki yang hebat.\",\"truncated\":false,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"kembaranjeno\",\"name\":\"NCT Jeno\",\"id\":2340181520,\"id_str\":\"2340181520\",\"indices\":[3,16]},{\"screen_name\":\"yurisndika\",\"name\":\"\\/\\/\",\"id\":2665318182,\"id_str\":\"2665318182\",\"indices\":[18,29]},{\"screen_name\":\"itsaleey\",\"name\":\"<NAME>\",\"id\":78565229,\"id_str\":\"78565229\",\"indices\":[30,39]}],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\">Twitter for iPhone<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":890168816545611777,\"id_str\":\"890168816545611777\",\"name\":\"be\",\"screen_name\":\"gwsheart_\",\"location\":\"\",\"description\":\"mv , k ms vwlz\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":305,\"friends_count\":70,\"listed_count\":0,\"created_at\":\"Wed Jul 26 11:15:59 +0000 2017\",\"favourites_count\":161,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":420,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1151090016275193857\\/Ssh9aUOY_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1151090016275193857\\/Ssh9aUOY_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/890168816545611777\\/1551628313\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Mon Jul 15 06:48:01 +0000 2019\",\"id\":1150658258534715392,\"id_str\":\"1150658258534715392\",\"text\":\"@yurisndika @itsaleey Walaupun dicengin ama ricis tapi dia ga main kasar. Lucinta luna emang laki laki yang hebat.\",\"truncated\":false,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"yurisndika\",\"name\":\"\\/\\/\",\"id\":2665318182,\"id_str\":\"2665318182\",\"indices\":[0,11]},{\"screen_name\":\"itsaleey\",\"name\":\"<NAME>\",\"id\":78565229,\"id_str\":\"78565229\",\"indices\":[12,21]}],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\">Twitter for Android<\\/a>\",\"in_reply_to_status_id\":1150450052290105344,\"in_reply_to_status_id_str\":\"1150450052290105344\",\"in_reply_to_user_id\":2665318182,\"in_reply_to_user_id_str\":\"2665318182\",\"in_reply_to_screen_name\":\"yurisndika\",\"user\":{\"id\":2340181520,\"id_str\":\"2340181520\",\"name\":\"<NAME>\",\"screen_name\":\"kembaranjeno\",\"location\":\"Kota Surabaya, Jawa Timur\",\"description\":\"YoonA Stand \\u2022 Buddy \\u2022 VIP&NCTzen\\u2022 \\u2022TeamViny \\u2022 Madridista \\u2022 MayuyyOshi \\u2022 YukoOshi \\u2022 Sahabat Noah \\u2022 Sakuratan\\nHambaALLAH\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":69,\"friends_count\":348,\"listed_count\":2,\"created_at\":\"Wed Feb 12 11:27:05 +0000 2014\",\"favourites_count\":4701,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":9546,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1097487388169785345\\/1NB5RaM2_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1097487388169785345\\/1NB5RaM2_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2340181520\\/1531484265\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":769,\"favorite_count\":993,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"},\"is_quote_status\":false,\"retweet_count\":769,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"}', NULL, NULL, 'rt kembaranjeno yurisndika itsaleey walaupun dicengin ama ricis tapi dia ga main kasar lucinta luna emang laki laki yang hebat', 'ricis'),
(123, '?????', '@amuge7', 2147483647, '?? ??????? ??? ??\n\n26? E1?? 15nn?? \n27? 39?? 10?\n\n?? ???? ? ?????? !\n\n??? ?????? ??? ??? ???? ?? ???? ?????', 'positif', '0', '1', '', 'No', 1, 'Wed Jul 17 00:33:05 +0000 2019', 'Tue Oct 24 15:23:18 +0000 2017', '20190717123327', '{\"created_at\":\"Wed Jul 17 00:33:05 +0000 2019\",\"id\":1151288679433789440,\"id_str\":\"1151288679433789440\",\"text\":\"\\uc5d1\\uc18c \\uc775\\uc2a4\\ud50c\\ub85c\\ub808\\uc774\\uc158 \\ucf58\\uc11c\\ud2b8 \\uc591\\ub3c4\\n\\n26\\uc77c E1\\uad6c\\uc5ed 15nn\\ubc88\\ub300 \\n27\\uc77c 39\\uad6c\\uc5ed 10\\uc5f4\\n\\n\\uae08\\uc561 \\uc81c\\uc2dc\\ud574\\uc11c \\ub380 \\ud3b8\\ud558\\uac8c\\uc8fc\\uc138\\uc694 !\\n\\n\\ubc30\\uc1a1\\uc740 \\ub4f1\\uae30\\uac70\\ub798\\ud558\\uace0 \\uc218\\uc218\\ub8cc \\ubd80\\ub2f4\\uc2dc \\ud2f0\\ucf13\\ubca0\\uc774 \\uac70\\ub798 \\uac00\\ub2a5\\ud574\\uc694 \\ub514\\uc5e0\\uc8fc\\uc138\\uc694\",\"truncated\":false,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"metadata\":{\"result_type\":\"recent\",\"iso_language_code\":\"ko\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\">Twitter for iPhone<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":922845966155137025,\"id_str\":\"922845966155137025\",\"name\":\"\\uc7a1\\ub2e4\\ud55c\\uacc4\\uc815\",\"screen_name\":\"amuge7\",\"location\":\"\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":0,\"friends_count\":1,\"listed_count\":0,\"created_at\":\"Tue Oct 24 15:23:18 +0000 2017\",\"favourites_count\":0,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":4,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/abs.twimg.com\\/sticky\\/default_profile_images\\/default_profile_normal.png\",\"profile_image_url_https\":\"https:\\/\\/abs.twimg.com\\/sticky\\/default_profile_images\\/default_profile_normal.png\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":true,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":0,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"lang\":\"ko\"}', NULL, NULL, '26 e1 15nn 27 39 10', '10');
INSERT INTO `crawl_data` (`id`, `name`, `screen_name`, `tweet_id`, `text`, `flag`, `followers_count`, `following_count`, `location`, `verified`, `different_year`, `created_post`, `created_account`, `token_search`, `result_crawl_json`, `class_hoax`, `class_hoax_info`, `tokenizing`, `keyword`) VALUES
(120, '<NAME>', '@laboralrh', 2147483647, 'RT @josetorohardy: En Venezuela no es ilegal portar dólares. Se pueden ingresar hasta $10.000 sin notifificación. Por resolución del BCV pr…', 'positif', '27', '167', '', 'No', 8, 'Wed Jul 17 00:33:05 +0000 2019', 'Mon Sep 13 16:18:51 +0000 2010', '20190717123327', '{\"created_at\":\"Wed Jul 17 00:33:05 +0000 2019\",\"id\":1151288680205705216,\"id_str\":\"1151288680205705216\",\"text\":\"RT @josetorohardy: En Venezuela no es ilegal portar d\\u00f3lares. Se pueden ingresar hasta $10.000 sin notifificaci\\u00f3n. Por resoluci\\u00f3n del BCV pr\\u2026\",\"truncated\":false,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"josetorohardy\",\"name\":\"<NAME>\",\"id\":112005594,\"id_str\":\"112005594\",\"indices\":[3,17]}],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"es\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\">Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":190302117,\"id_str\":\"190302117\",\"name\":\"gloria araujo\",\"screen_name\":\"laboralrh\",\"location\":\"\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":27,\"friends_count\":167,\"listed_count\":0,\"created_at\":\"Mon Sep 13 16:18:51 +0000 2010\",\"favourites_count\":11043,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":5749,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1014683673449455617\\/dz0yg4Wp_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1014683673449455617\\/dz0yg4Wp_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Mon Jul 15 22:11:25 +0000 2019\",\"id\":1150890639724285954,\"id_str\":\"1150890639724285954\",\"text\":\"En Venezuela no es ilegal portar d\\u00f3lares. Se pueden ingresar hasta $10.000 sin notifificaci\\u00f3n. Por resoluci\\u00f3n del B\\u2026 https:\\/\\/t.co\\/hP4zuAphW1\",\"truncated\":true,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/hP4zuAphW1\",\"expanded_url\":\"https:\\/\\/twitter.com\\/i\\/web\\/status\\/1150890639724285954\",\"display_url\":\"twitter.com\\/i\\/web\\/status\\/1\\u2026\",\"indices\":[117,140]}]},\"metadata\":{\"iso_language_code\":\"es\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/ipad\\\" rel=\\\"nofollow\\\">Twitter for iPad<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":112005594,\"id_str\":\"112005594\",\"name\":\"<NAME>\",\"screen_name\":\"josetorohardy\",\"location\":\"Caracas\",\"description\":\"Economista.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":491580,\"friends_count\":685,\"listed_count\":1299,\"created_at\":\"Sat Feb 06 23:06:47 +0000 2010\",\"favourites_count\":290,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":41546,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/648815836019445760\\/dTAO0vr1_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/648815836019445760\\/dTAO0vr1_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/112005594\\/1443521118\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":7655,\"favorite_count\":6565,\"favorited\":false,\"retweeted\":false,\"lang\":\"es\"},\"is_quote_status\":false,\"retweet_count\":7655,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"lang\":\"es\"}', NULL, NULL, 'rt josetorohardy en venezuela no es ilegal portar d lares se pueden ingresar hasta 10 000 sin notifificaci n por resoluci n del bcv pr', '10'),
(121, '<NAME>', '@DaveyDankz', 2147483647, 'RT @dog_rates: This is Sasha. She used to be in charge of looking out this window. Decided to confront her replacement. 13/10 just wants to…', 'positif', '70', '28', '', 'No', 4, 'Wed Jul 17 00:33:05 +0000 2019', 'Wed Oct 29 23:18:57 +0000 2014', '20190717123327', '{\"created_at\":\"Wed Jul 17 00:33:05 +0000 2019\",\"id\":1151288679769489409,\"id_str\":\"1151288679769489409\",\"text\":\"RT @dog_rates: This is Sasha. She used to be in charge of looking out this window. Decided to confront her replacement. 13\\/10 just wants to\\u2026\",\"truncated\":false,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"dog_rates\",\"name\":\"WeRateDogs\\u2122\",\"id\":4196983835,\"id_str\":\"4196983835\",\"indices\":[3,13]}],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\">Twitter for iPhone<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":2882644716,\"id_str\":\"2882644716\",\"name\":\"<NAME>\",\"screen_name\":\"DaveyDankz\",\"location\":\"\",\"description\":\"My name\'s Dave and I like to party. 02\\/12\\/91 Tejano livin\' in Minnesnowta\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":70,\"friends_count\":28,\"listed_count\":10,\"created_at\":\"Wed Oct 29 23:18:57 +0000 2014\",\"favourites_count\":5287,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":11546,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1115019830346887168\\/QYRL0Nna_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1115019830346887168\\/QYRL0Nna_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2882644716\\/1414625082\",\"profile_link_color\":\"4A913C\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Wed Jul 17 00:06:34 +0000 2019\",\"id\":1151282006291955712,\"id_str\":\"1151282006291955712\",\"text\":\"This is Sasha. She used to be in charge of looking out this window. Decided to confront her replacement. 13\\/10 just\\u2026 https:\\/\\/t.co\\/isFaQr06To\",\"truncated\":true,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/isFaQr06To\",\"expanded_url\":\"https:\\/\\/twitter.com\\/i\\/web\\/status\\/1151282006291955712\",\"display_url\":\"twitter.com\\/i\\/web\\/status\\/1\\u2026\",\"indices\":[117,140]}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"https:\\/\\/studio.twitter.com\\\" rel=\\\"nofollow\\\">Twitter Media Studio<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":4196983835,\"id_str\":\"4196983835\",\"name\":\"WeRateDogs\\u2122\",\"screen_name\":\"dog_rates\",\"location\":\"\\u300c DM YOUR DOGS \\u300d\",\"description\":\"Your Only Source For Professional Dog Ratings Instagram and Facebook \\u27aa WeRateDogs <EMAIL> \\u2800\\u2800\\u2800\\u2800\\u2800\\u2800\\u2800\\u2800\\u2800\\u2800\\u2800\\u2800\",\"url\":\"https:\\/\\/t.co\\/N7sNNHSfPq\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/N7sNNHSfPq\",\"expanded_url\":\"http:\\/\\/weratedogs.com\",\"display_url\":\"weratedogs.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":8228819,\"friends_count\":12,\"listed_count\":6326,\"created_at\":\"Sun Nov 15 21:41:29 +0000 2015\",\"favourites_count\":142494,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":true,\"statuses_count\":10519,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1112594177961844736\\/qQK8NJT-_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1112594177961844736\\/qQK8NJT-_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/4196983835\\/1562002967\",\"profile_link_color\":\"F5ABB5\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":2814,\"favorite_count\":18468,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"is_quote_status\":false,\"retweet_count\":2814,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"}', NULL, NULL, 'rt dog rates this is sasha she used to be in charge of looking out this window decided to confront her replacement 13 10 just wants to', '10'),
(122, '???????????@???2??????????????', '@Liino_pyon', 2147483647, 'RT @akiko_lawson: ??????????\n???????1???????????? #???????????? ????????????10???????1????????? ?????????????\n1???7/17 10:59??? #???? #????…', 'positif', '1449', '699', '???????????????', 'No', 2, 'Wed Jul 17 00:33:05 +0000 2019', 'Thu Mar 02 13:03:13 +0000 2017', '20190717123327', '{\"created_at\":\"Wed Jul 17 00:33:05 +0000 2019\",\"id\":1151288679656087554,\"id_str\":\"1151288679656087554\",\"text\":\"RT @akiko_lawson: \\uff3c\\u4eca\\u65e5\\u304b\\u3089\\u30b9\\u30bf\\u30fc\\u30c8\\uff0f\\n\\u30d7\\u30ea\\u30f3\\u304c\\u4e38\\u3054\\u30681\\u500b\\u5165\\u3063\\u305f\\u3001\\u3082\\u3061\\u3082\\u3061\\u751f\\u5730\\u306e #\\u3069\\u3089\\u3082\\u3063\\u3061\\u7121\\u6599\\u30d7\\u30ec\\u30bc\\u30f3\\u30c8 \\uff01\\u30d5\\u30a9\\u30ed\\u30fc\\uff06\\u30ea\\u30c4\\u30a4\\u30fc\\u30c8\\u306710\\u65e5\\u9593\\u9023\\u7d9a\\u3001\\u6bce\\u65e51\\u4e07\\u540d\\u69d8\\u306b\\u3069\\u3089\\u3082\\u3063\\u3061 \\u30d7\\u30ea\\u30f3\\uff06\\u30db\\u30a4\\u30c3\\u30d7\\u304c\\u5f53\\u305f\\u308b\\u266a\\n1\\u65e5\\u76ee\\u306f7\\/17 10:59\\u307e\\u3067\\uff01 #\\u30ed\\u30fc\\u30bd\\u30f3 #\\u30a6\\u30c1\\u30ab\\u30d5\\u2026\",\"truncated\":false,\"entities\":{\"hashtags\":[{\"text\":\"\\u3069\\u3089\\u3082\\u3063\\u3061\\u7121\\u6599\\u30d7\\u30ec\\u30bc\\u30f3\\u30c8\",\"indices\":[50,63]},{\"text\":\"\\u30ed\\u30fc\\u30bd\\u30f3\",\"indices\":[128,133]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"akiko_lawson\",\"name\":\"\\u30ed\\u30fc\\u30bd\\u30f3\",\"id\":115639376,\"id_str\":\"115639376\",\"indices\":[3,16]}],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"ja\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\">Twitter for iPhone<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":837287175431454723,\"id_str\":\"837287175431454723\",\"name\":\"\\u308a\\u30fc\\u306e\\ud83d\\udc9b\\ud83d\\udc36@\\u590f\\u30b3\\u30df2\\u65e5\\u76ee\\u5148\\u884c\\u5165\\u5834\\u5f53\\u305f\\u3063\\u305f\\ud83d\\ude4c\",\"screen_name\":\"Liino_pyon\",\"location\":\"\\u8e0a\\u3063\\u3066\\u307f\\u305f\\u52d5\\u753b\\u306f\\u3053\\u3061\\u3089\\u304b\\u3089\\uff01\\u2193\",\"description\":\"\\u63a8\\u3057\\u30de\\u30fc\\u30af\\ud83d\\udc9b\\ud83d\\udc36\\u300117\\u30a2\\u30d7\\u30ea\\u8a8d\\u8a3c\\u30e9\\u30a4\\u30d0\\u30fc\\u306b\\u306a\\u308a\\u307e\\u3057\\u305f\\uff01\\u30e9\\u30d6\\u30e9\\u30a4\\u30d6\\/\\u03bc\'s(\\u51db)\\/\\u30de\\u30af\\u30ed\\u30b9\\/\\u30d0\\u30f3\\u30c9\\u30ea(\\u30cf\\u30ed\\u30cf\\u30d4\\u3001\\u3053\\u3053\\u308d\\u3093)\\/\\u30ad\\u30ba\\u30ca\\u30a2\\u30a4\\/\\u5742\\u672c\\u771f\\u7dbe\\/\\u6c34\\u6a39\\u5948\\u3005\\u2741\\u8e0a\\u3063\\u305f\\u308a\\u30b2\\u30fc\\u30e0\\u3057\\u305f\\u308a\\u3002\\u52a0\\u5de5\\u3067\\u8aa4\\u9b54\\u5316\\u3057\\u307e\\u304f\\u308a\\u3067\\u3059\\u2190 \\u3088\\u308d\\u3057\\u304f\\u304a\\u9858\\u3044\\u3057\\u307e\\u3059\\uff01\\u30b3\\u30b9:\\u7d20 4:6\\u3067\\u3059\\u3002@mikuronnzu \\u661f\\u7a7a\\u51db\\u2606\\u3002.:\\uff0a\\u30fb\\u309c\",\"url\":\"https:\\/\\/t.co\\/XxNzv7LKvk\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/XxNzv7LKvk\",\"expanded_url\":\"http:\\/\\/sp.nicovideo.jp\\/mylist\\/61904624\",\"display_url\":\"sp.nicovideo.jp\\/mylist\\/61904624\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1449,\"friends_count\":699,\"listed_count\":62,\"created_at\":\"Thu Mar 02 13:03:13 +0000 2017\",\"favourites_count\":115676,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":30175,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1149554877447540737\\/nIQrehiY_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1149554877447540737\\/nIQrehiY_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/837287175431454723\\/1563098258\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Tue Jul 16 01:00:25 +0000 2019\",\"id\":1150933170314993664,\"id_str\":\"1150933170314993664\",\"text\":\"\\uff3c\\u4eca\\u65e5\\u304b\\u3089\\u30b9\\u30bf\\u30fc\\u30c8\\uff0f\\n\\u30d7\\u30ea\\u30f3\\u304c\\u4e38\\u3054\\u30681\\u500b\\u5165\\u3063\\u305f\\u3001\\u3082\\u3061\\u3082\\u3061\\u751f\\u5730\\u306e #\\u3069\\u3089\\u3082\\u3063\\u3061\\u7121\\u6599\\u30d7\\u30ec\\u30bc\\u30f3\\u30c8 \\uff01\\u30d5\\u30a9\\u30ed\\u30fc\\uff06\\u30ea\\u30c4\\u30a4\\u30fc\\u30c8\\u306710\\u65e5\\u9593\\u9023\\u7d9a\\u3001\\u6bce\\u65e51\\u4e07\\u540d\\u69d8\\u306b\\u3069\\u3089\\u3082\\u3063\\u3061 \\u30d7\\u30ea\\u30f3\\uff06\\u30db\\u30a4\\u30c3\\u30d7\\u304c\\u5f53\\u305f\\u308b\\u266a\\n1\\u65e5\\u76ee\\u306f7\\/17 10:59\\u307e\\u3067\\uff01 #\\u30ed\\u30fc\\u30bd\\u30f3\\u2026 https:\\/\\/t.co\\/1bGaljJO4P\",\"truncated\":true,\"entities\":{\"hashtags\":[{\"text\":\"\\u3069\\u3089\\u3082\\u3063\\u3061\\u7121\\u6599\\u30d7\\u30ec\\u30bc\\u30f3\\u30c8\",\"indices\":[32,45]},{\"text\":\"\\u30ed\\u30fc\\u30bd\\u30f3\",\"indices\":[110,115]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/1bGaljJO4P\",\"expanded_url\":\"https:\\/\\/twitter.com\\/i\\/web\\/status\\/1150933170314993664\",\"display_url\":\"twitter.com\\/i\\/web\\/status\\/1\\u2026\",\"indices\":[117,140]}]},\"metadata\":{\"iso_language_code\":\"ja\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/www.salesforce.com\\\" rel=\\\"nofollow\\\">Salesforce - Social Studio<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":115639376,\"id_str\":\"115639376\",\"name\":\"\\u30ed\\u30fc\\u30bd\\u30f3\",\"screen_name\":\"akiko_lawson\",\"location\":\"\",\"description\":\"\\u3010\\u30ed\\u30fc\\u30bd\\u30f3\\u516c\\u5f0fTwitter\\u3011\\u30ed\\u30fc\\u30bd\\u30f3\\u30af\\u30eb\\u30fc\\u266a\\u3042\\u304d\\u3053\\u3067\\u3059(^^)\\u6700\\u65b0\\u60c5\\u5831\\u3092\\u30de\\u30a4\\u30da\\u30fc\\u30b9\\u3067\\u304a\\u77e5\\u3089\\u305b\\u3057\\u307e\\u3059\\u3002instagram\\u306f https:\\/\\/t.co\\/ug6xZ4vRHx \\u2606 youtube\\u306fhttps:\\/\\/t.co\\/yt55FzhTOk\",\"url\":\"https:\\/\\/t.co\\/8vXbTU361Y\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/8vXbTU361Y\",\"expanded_url\":\"http:\\/\\/lawson.co.jp\",\"display_url\":\"lawson.co.jp\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ug6xZ4vRHx\",\"expanded_url\":\"https:\\/\\/www.instagram.com\\/akiko_lawson\\/\",\"display_url\":\"instagram.com\\/akiko_lawson\\/\",\"indices\":[62,85]},{\"url\":\"https:\\/\\/t.co\\/yt55FzhTOk\",\"expanded_url\":\"https:\\/\\/m.youtube.com\\/user\\/lawsonnews\",\"display_url\":\"m.youtube.com\\/user\\/lawsonnews\",\"indices\":[96,119]}]}},\"protected\":false,\"followers_count\":4182342,\"friends_count\":192220,\"listed_count\":12710,\"created_at\":\"Fri Feb 19 11:16:00 +0000 2010\",\"favourites_count\":247,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":50436805,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/875517108884455426\\/q3HMm7hU_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/875517108884455426\\/q3HMm7hU_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/115639376\\/1556007147\",\"profile_link_color\":\"F5ABB5\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":231992,\"favorite_count\":27289,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"ja\"},\"is_quote_status\":false,\"retweet_count\":231992,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"lang\":\"ja\"}', NULL, NULL, 'rt akiko lawson 1 10 1 1 7 17 10 59', '10'),
(366, 'SiLindaa', '@LindArdianti', 2147483647, '@Elina_Vay @budimandjatmiko @jokowi Calon mentri nih pak @budimandjatmiko \nAmiieen.', 'positif', '49', '83', 'Serang, Indonesia', 'No', 4, 'Thu Jul 25 10:22:51 +0000 2019', 'Wed Sep 10 12:46:02 +0000 2014', '20190725102406', '{\"created_at\":\"Thu Jul 25 10:22:51 +0000 2019\",\"id\":1154336202662617090,\"id_str\":\"1154336202662617090\",\"text\":\"@Elina_Vay @budimandjatmiko @jokowi Calon mentri nih pak @budimandjatmiko \\nAmiieen.\",\"truncated\":false,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Elina_Vay\",\"name\":\"#GustiOraSare\",\"id\":3253266487,\"id_str\":\"3253266487\",\"indices\":[0,10]},{\"screen_name\":\"budimandjatmiko\",\"name\":\"<NAME> (IG: budimaninovator)\",\"id\":183217247,\"id_str\":\"183217247\",\"indices\":[11,27]},{\"screen_name\":\"jokowi\",\"name\":\"<NAME>\",\"id\":366987179,\"id_str\":\"366987179\",\"indices\":[28,35]},{\"screen_name\":\"budimandjatmiko\",\"name\":\"<NAME> (IG: budimaninovator)\",\"id\":183217247,\"id_str\":\"183217247\",\"indices\":[57,73]}],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\">Twitter for Android<\\/a>\",\"in_reply_to_status_id\":1154334885718323200,\"in_reply_to_status_id_str\":\"1154334885718323200\",\"in_reply_to_user_id\":3253266487,\"in_reply_to_user_id_str\":\"3253266487\",\"in_reply_to_screen_name\":\"Elina_Vay\",\"user\":{\"id\":2766268785,\"id_str\":\"2766268785\",\"name\":\"SiLindaa\",\"screen_name\":\"LindArdianti\",\"location\":\"Serang, Indonesia\",\"description\":\"Mamih muda dari #QueenzaMikhayla dan pasangan hidup dari #MuhammadAkbar\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":49,\"friends_count\":83,\"listed_count\":0,\"created_at\":\"Wed Sep 10 12:46:02 +0000 2014\",\"favourites_count\":50,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1316,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1106583728879362049\\/qu918drC_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1106583728879362049\\/qu918drC_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2766268785\\/1551100110\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":0,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"}', NULL, NULL, 'elina vay budimandjatmiko jokowi calon tri nih pak budimandjatmiko amiieen', 'jokowi'),
(367, 'Pemahaman nenek lu !', '@kiasleo', 2147483647, 'RT @anitacaroline99: hebatt itulah bedanya jaman jokowi dan jaman SBY.. btw skrng udh ganti istilah.. dlu namanya \"wajib pajak\" skrng naman…', 'positif', '612', '2361', 'blok kaum', 'No', 7, 'Thu Jul 25 10:22:51 +0000 2019', 'Fri Nov 11 05:01:49 +0000 2011', '20190725102406', '{\"created_at\":\"Thu Jul 25 10:22:51 +0000 2019\",\"id\":1154336199944785920,\"id_str\":\"1154336199944785920\",\"text\":\"RT @anitacaroline99: hebatt itulah bedanya jaman jokowi dan jaman SBY.. btw skrng udh ganti istilah.. dlu namanya \\\"wajib pajak\\\" skrng naman\\u2026\",\"truncated\":false,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"anitacaroline99\",\"name\":\"anitacaroline\",\"id\":1148478939846737920,\"id_str\":\"1148478939846737920\",\"indices\":[3,19]}],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\">Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":409745359,\"id_str\":\"409745359\",\"name\":\"<NAME> !\",\"screen_name\":\"kiasleo\",\"location\":\"blok kaum\",\"description\":\"Nomaden & Omnivora\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":612,\"friends_count\":2361,\"listed_count\":42,\"created_at\":\"Fri Nov 11 05:01:49 +0000 2011\",\"favourites_count\":1158,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":226487,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"131516\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme14\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme14\\/bg.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/921919417428074497\\/25N3X04B_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/921919417428074497\\/25N3X04B_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/409745359\\/1504462767\",\"profile_link_color\":\"009999\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"EFEFEF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Thu Jul 25 08:35:15 +0000 2019\",\"id\":1154309122562465797,\"id_str\":\"1154309122562465797\",\"text\":\"hebatt itulah bedanya jaman jokowi dan jaman SBY.. btw skrng udh ganti istilah.. dlu namanya \\\"wajib pajak\\\" skrng na\\u2026 https:\\/\\/t.co\\/wGtmc1xW6r\",\"truncated\":true,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/wGtmc1xW6r\",\"expanded_url\":\"https:\\/\\/twitter.com\\/i\\/web\\/status\\/1154309122562465797\",\"display_url\":\"twitter.com\\/i\\/web\\/status\\/1\\u2026\",\"indices\":[117,140]}]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"https:\\/\\/mobile.twitter.com\\\" rel=\\\"nofollow\\\">Twitter Web App<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1148478939846737920,\"id_str\":\"1148478939846737920\",\"name\":\"anitacaroline\",\"screen_name\":\"anitacaroline99\",\"location\":\"\",\"description\":\"sugar baby\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":72,\"friends_count\":173,\"listed_count\":0,\"created_at\":\"Tue Jul 09 06:28:11 +0000 2019\",\"favourites_count\":42,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":66,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1148481447491067904\\/2DviNJpt_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1148481447491067904\\/2DviNJpt_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1148478939846737920\\/1562654682\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":11,\"favorite_count\":27,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"in\"},\"is_quote_status\":false,\"retweet_count\":11,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"}', NULL, NULL, 'rt anitacaroline99 hebatt itu beda jaman jokowi dan jaman sby btw skrng udh ganti istilah dlu nama wajib pajak skrng naman', 'jokowi'),
(283, '<NAME>', '@KarimTukih', 2147483647, 'RT @KabarFZ: Fadli Zon Apresiasi Kegiatan Leadership Forum Sebagai Bagian Networking Dan Tukar Pikiran Tentang Tantangan Dan Ancaman Terhad…', 'positif', '1060', '760', 'Bengkulu, Indonesia', 'No', 3, 'Tue Jul 16 23:15:42 +0000 2019', 'Tue Jun 21 06:31:49 +0000 2016', '20190717050816', '{\"created_at\":\"Tue Jul 16 23:15:42 +0000 2019\",\"id\":1151269205125156865,\"id_str\":\"1151269205125156865\",\"text\":\"RT @KabarFZ: Fadli Zon Apresiasi Kegiatan Leadership Forum Sebagai Bagian Networking Dan Tukar Pikiran Tentang Tantangan Dan Ancaman Terhad\\u2026\",\"truncated\":false,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"KabarFZ\",\"name\":\"<NAME>\",\"id\":961621748927012864,\"id_str\":\"961621748927012864\",\"indices\":[3,11]}],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\">Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":745142159741837312,\"id_str\":\"745142159741837312\",\"name\":\"<NAME>\",\"screen_name\":\"KarimTukih\",\"location\":\"Bengkulu, Indonesia\",\"description\":\"Musik\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1060,\"friends_count\":760,\"listed_count\":19,\"created_at\":\"Tue Jun 21 06:31:49 +0000 2016\",\"favourites_count\":5790,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":15352,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/879244459451351041\\/CITRcIGv_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/879244459451351041\\/CITRcIGv_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Tue Jul 16 19:24:48 +0000 2019\",\"id\":1151211097036378112,\"id_str\":\"1151211097036378112\",\"text\":\"Fadli Zon Apresiasi Kegiatan Leadership Forum Sebagai Bagian Networking Dan Tukar Pikiran Tentang Tantangan Dan Anc\\u2026 https:\\/\\/t.co\\/ZP3D1uUGeU\",\"truncated\":true,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ZP3D1uUGeU\",\"expanded_url\":\"https:\\/\\/twitter.com\\/i\\/web\\/status\\/1151211097036378112\",\"display_url\":\"twitter.com\\/i\\/web\\/status\\/1\\u2026\",\"indices\":[117,140]}]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\">Twitter for iPhone<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":961621748927012864,\"id_str\":\"961621748927012864\",\"name\":\"<NAME>\",\"screen_name\":\"KabarFZ\",\"location\":\"Jakarta Barat, DKI Jakarta\",\"description\":\"\",\"url\":\"https:\\/\\/t.co\\/O7GijNwU8A\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/O7GijNwU8A\",\"expanded_url\":\"http:\\/\\/fadlizon.com\",\"display_url\":\"fadlizon.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2866,\"friends_count\":52,\"listed_count\":1,\"created_at\":\"Thu Feb 08 15:24:25 +0000 2018\",\"favourites_count\":2,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":960,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1021340798942470145\\/dFHEwz6i_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1021340798942470145\\/dFHEwz6i_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/961621748927012864\\/1518105236\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":10,\"favorite_count\":83,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"in\"},\"is_quote_status\":false,\"retweet_count\":10,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"}', NULL, NULL, 'rt kabarfz fadli zon apresiasi giat leadership forum bagai bagi networking dan tukar pikir tentang tantang dan ancam had', 'fadli zon'),
(124, '?????-?? ??????', '@despair__one', 2147483647, '? ???? ??? ????? ????? ??? ??? ??????\n?????? ???????? ? 12 ???????? ? 8/9\n?????? ?????? ? 3/4 ?????????? ? 10/11/12', 'positif', '175', '290', '?????????? ? ???????', 'No', 2, 'Wed Jul 17 00:33:05 +0000 2019', 'Sun Sep 11 08:33:49 +0000 2016', '20190717123327', '{\"created_at\":\"Wed Jul 17 00:33:05 +0000 2019\",\"id\":1151288679413010433,\"id_str\":\"1151288679413010433\",\"text\":\"\\u042f \\u0441\\u0435\\u0431\\u0435 \\u0442\\u0430\\u043a \\u0441\\u0431\\u0438\\u043b\\u0430 \\u0440\\u0435\\u0436\\u0438\\u043c \\u0441\\u043d\\u0430 \\u0447\\u0442\\u043e \\u043f\\u0438\\u0437\\u0434\\u0435\\u0446\\n\\u0420\\u0430\\u043d\\u044c\\u0448\\u0435 \\u043b\\u043e\\u0436\\u0438\\u043b\\u0430\\u0441\\u044c \\u0432 12 \\u0432\\u0441\\u0442\\u0430\\u0432\\u0430\\u043b\\u0430 \\u0432 8\\/9\\n\\u0422\\u0435\\u043f\\u0435\\u0440\\u044c \\u043b\\u043e\\u0436\\u0443\\u0441\\u044c \\u0432 3\\/4 \\u043f\\u0440\\u043e\\u0441\\u044b\\u043f\\u0430\\u044e\\u0441\\u044c \\u0432 10\\/11\\/12\",\"truncated\":false,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"metadata\":{\"result_type\":\"recent\",\"iso_language_code\":\"ru\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\">Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":774888664958722048,\"id_str\":\"774888664958722048\",\"name\":\"\\u043a\\u0430\\u043a\\u043e\\u0439-\\u0442\\u043e \\u0433\\u0438\\u0431\\u0440\\u0438\\u0434\",\"screen_name\":\"despair__one\",\"location\":\"\\u043f\\u043e\\u0442\\u0435\\u0440\\u044f\\u043b\\u0430\\u0441\\u044c \\u0432 \\u043f\\u0443\\u0441\\u0442\\u043e\\u0442\\u0435\",\"description\":\"\'till death we do art\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":175,\"friends_count\":290,\"listed_count\":3,\"created_at\":\"Sun Sep 11 08:33:49 +0000 2016\",\"favourites_count\":28370,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":4238,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1148288412857917442\\/Ui3mDoAJ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1148288412857917442\\/Ui3mDoAJ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/774888664958722048\\/1562608267\",\"profile_link_color\":\"ABB8C2\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":0,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"lang\":\"ru\"}', NULL, NULL, '12 8 9 3 4 10 11 12', '10'),
(365, 'Alfian', '@Alfian49144687', 2147483647, 'RT @IreneViena: Golkar jangan niru PKB banyak tingkah mau menghambat rekonsiliasi Jokowi-Prabowo\n\nJgn komentar yg aneh2 .. elitnya banyak c…', 'positif', '65', '158', '', 'No', 0, 'Thu Jul 25 10:22:54 +0000 2019', 'Wed Jun 26 17:20:35 +0000 2019', '20190725102406', '{\"created_at\":\"Thu Jul 25 10:22:54 +0000 2019\",\"id\":1154336212850659328,\"id_str\":\"1154336212850659328\",\"text\":\"RT @IreneViena: Golkar jangan niru PKB banyak tingkah mau menghambat rekonsiliasi Jokowi-Prabowo\\n\\nJgn komentar yg aneh2 .. elitnya banyak c\\u2026\",\"truncated\":false,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"IreneViena\",\"name\":\"Irene\",\"id\":805629166095769600,\"id_str\":\"805629166095769600\",\"indices\":[3,14]}],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\">Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1143932079576473600,\"id_str\":\"1143932079576473600\",\"name\":\"Alfian\",\"screen_name\":\"Alfian49144687\",\"location\":\"\",\"description\":\"jujur jujur dan jujur\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":65,\"friends_count\":158,\"listed_count\":0,\"created_at\":\"Wed Jun 26 17:20:35 +0000 2019\",\"favourites_count\":997,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":733,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1143932400587509760\\/5ztAPCke_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1143932400587509760\\/5ztAPCke_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Thu Jul 25 10:21:09 +0000 2019\",\"id\":1154335771115102208,\"id_str\":\"1154335771115102208\",\"text\":\"Golkar jangan niru PKB banyak tingkah mau menghambat rekonsiliasi Jokowi-Prabowo\\n\\nJgn komentar yg aneh2 .. elitnya\\u2026 https:\\/\\/t.co\\/TRFUw8KQg0\",\"truncated\":true,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/TRFUw8KQg0\",\"expanded_url\":\"https:\\/\\/twitter.com\\/i\\/web\\/status\\/1154335771115102208\",\"display_url\":\"twitter.com\\/i\\/web\\/status\\/1\\u2026\",\"indices\":[116,139]}]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\">Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":805629166095769600,\"id_str\":\"805629166095769600\",\"name\":\"Irene\",\"screen_name\":\"IreneViena\",\"location\":\"Hong Kong\",\"description\":\"Menagih janjimu nan tak kunjung tunai seperti Menunggu Godot di Salihara\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":111348,\"friends_count\":1488,\"listed_count\":80,\"created_at\":\"Mon Dec 05 04:25:35 +0000 2016\",\"favourites_count\":65,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":46774,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/924510371540373504\\/AZVzFqZ8_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/924510371540373504\\/AZVzFqZ8_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/805629166095769600\\/1509255546\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":5,\"favorite_count\":8,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"},\"is_quote_status\":false,\"retweet_count\":5,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"}', NULL, NULL, 'rt ireneviena golkar jangan niru pkb banyak tingkah mau hambat rekonsiliasi jokowi-prabowo jgn komentar yg aneh2 elitnya banyak c', 'jokowi');
INSERT INTO `crawl_data` (`id`, `name`, `screen_name`, `tweet_id`, `text`, `flag`, `followers_count`, `following_count`, `location`, `verified`, `different_year`, `created_post`, `created_account`, `token_search`, `result_crawl_json`, `class_hoax`, `class_hoax_info`, `tokenizing`, `keyword`) VALUES
(361, 'Stella_kookluv', '@SKookluv', 2147483647, 'RT @jokowi: Sembilan MoU kerja sama Indonesia dan Uni Emirat Arab di bidang ekonomi dan keumatan saya bahas bersama Putra Mahkota Abu Dhabi…', 'positif', '1', '35', '', 'No', 0, 'Thu Jul 25 10:23:10 +0000 2019', 'Wed Jul 17 13:38:22 +0000 2019', '20190725102406', '{\"created_at\":\"Thu Jul 25 10:23:10 +0000 2019\",\"id\":1154336279754002433,\"id_str\":\"1154336279754002433\",\"text\":\"RT @jokowi: Sembilan MoU kerja sama Indonesia dan Uni Emirat Arab di bidang ekonomi dan keumatan saya bahas bersama Putra Mahkota Abu Dhabi\\u2026\",\"truncated\":false,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"jokowi\",\"name\":\"<NAME>\",\"id\":366987179,\"id_str\":\"366987179\",\"indices\":[3,10]}],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\">Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1151486299175436288,\"id_str\":\"1151486299175436288\",\"name\":\"Stella_kookluv\",\"screen_name\":\"SKookluv\",\"location\":\"\",\"description\":\"army from indo\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1,\"friends_count\":35,\"listed_count\":0,\"created_at\":\"Wed Jul 17 13:38:22 +0000 2019\",\"favourites_count\":118,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":50,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1151486502846599168\\/_Vf1rslR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1151486502846599168\\/_Vf1rslR_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Wed Jul 24 12:16:28 +0000 2019\",\"id\":1154002406423687168,\"id_str\":\"1154002406423687168\",\"text\":\"Sembilan MoU kerja sama Indonesia dan Uni Emirat Arab di bidang ekonomi dan keumatan saya bahas bersama Putra Mahko\\u2026 https:\\/\\/t.co\\/fgqXcXAQeq\",\"truncated\":true,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/fgqXcXAQeq\",\"expanded_url\":\"https:\\/\\/twitter.com\\/i\\/web\\/status\\/1154002406423687168\",\"display_url\":\"twitter.com\\/i\\/web\\/status\\/1\\u2026\",\"indices\":[117,140]}]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\">Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":366987179,\"id_str\":\"366987179\",\"name\":\"<NAME>\",\"screen_name\":\"jokowi\",\"location\":\"Jakarta\",\"description\":\"Akun Twitter resmi Presiden Republik Indonesia Joko Widodo \\ud83c\\uddee\\ud83c\\udde9. \\n#MenujuIndonesiaMaju\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":11789230,\"friends_count\":60,\"listed_count\":3968,\"created_at\":\"Sat Sep 03 05:21:21 +0000 2011\",\"favourites_count\":0,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1898,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"5B5C5A\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme14\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme14\\/bg.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/953822043211886592\\/IUEJdPg9_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/953822043211886592\\/IUEJdPg9_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/366987179\\/1540015919\",\"profile_link_color\":\"009999\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"99CC33\",\"profile_text_color\":\"3E4415\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"regular\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":1035,\"favorite_count\":7362,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"in\"},\"is_quote_status\":false,\"retweet_count\":1035,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"}', NULL, NULL, 'rt jokowi sembilan mou kerja sama indonesia dan uni emirat arab di bidang ekonomi dan umat saya bahas sama putra mahkota abu dhabi', 'jokowi'),
(362, 'aioe', '@aioeaioe', 2147483647, 'RT @TirtoID: Jokowi secara resmi telah menerbitkan Peraturan Pemerintah yang mengatur tata cara pencatatan perkawinan bagi penghayat keperc…', 'positif', '359', '138', '', 'No', 6, 'Thu Jul 25 10:23:05 +0000 2019', 'Sun Sep 23 06:06:52 +0000 2012', '20190725102406', '{\"created_at\":\"Thu Jul 25 10:23:05 +0000 2019\",\"id\":1154336261580005380,\"id_str\":\"1154336261580005380\",\"text\":\"RT @TirtoID: Jokowi secara resmi telah menerbitkan Peraturan Pemerintah yang mengatur tata cara pencatatan perkawinan bagi penghayat keperc\\u2026\",\"truncated\":false,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"TirtoID\",\"name\":\"tirto.id\",\"id\":4187275698,\"id_str\":\"4187275698\",\"indices\":[3,11]}],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\">Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":841114400,\"id_str\":\"841114400\",\"name\":\"aioe\",\"screen_name\":\"aioeaioe\",\"location\":\"\",\"description\":\"dikit ngomong dikit salah\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":359,\"friends_count\":138,\"listed_count\":0,\"created_at\":\"Sun Sep 23 06:06:52 +0000 2012\",\"favourites_count\":1,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":33285,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme15\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme15\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1140260888454107137\\/aRXHiokM_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1140260888454107137\\/aRXHiokM_normal.jpg\",\"profile_link_color\":\"000000\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Thu Jul 25 10:16:31 +0000 2019\",\"id\":1154334608667766784,\"id_str\":\"1154334608667766784\",\"text\":\"Jokowi secara resmi telah menerbitkan Peraturan Pemerintah yang mengatur tata cara pencatatan perkawinan bagi pengh\\u2026 https:\\/\\/t.co\\/hgixqWsNDN\",\"truncated\":true,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/hgixqWsNDN\",\"expanded_url\":\"https:\\/\\/twitter.com\\/i\\/web\\/status\\/1154334608667766784\",\"display_url\":\"twitter.com\\/i\\/web\\/status\\/1\\u2026\",\"indices\":[117,140]}]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"https:\\/\\/about.twitter.com\\/products\\/tweetdeck\\\" rel=\\\"nofollow\\\">TweetDeck<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":4187275698,\"id_str\":\"4187275698\",\"name\":\"tirto.id\",\"screen_name\":\"TirtoID\",\"location\":\"Indonesia\",\"description\":\"Jurnalisme data. Media analisis. Infografik ciamik.\",\"url\":\"https:\\/\\/t.co\\/Ss5eQAlNn3\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Ss5eQAlNn3\",\"expanded_url\":\"https:\\/\\/tirto.id\\/\",\"display_url\":\"tirto.id\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":310656,\"friends_count\":45,\"listed_count\":647,\"created_at\":\"Tue Nov 10 06:15:05 +0000 2015\",\"favourites_count\":992,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":true,\"statuses_count\":53117,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1009463042206150657\\/MVj3R8no_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1009463042206150657\\/MVj3R8no_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/4187275698\\/1529509859\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":21,\"favorite_count\":31,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"in\"},\"is_quote_status\":false,\"retweet_count\":21,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"}', NULL, NULL, 'rt tirtoid jokowi cara resmi telah terbit atur perintah yang atur tata cara catat kawin bagi hayat keperc', 'jokowi'),
(363, 'greenteafreakss', '@greenteafreakss', 2147483647, 'RT @IreneViena: Golkar jangan niru PKB banyak tingkah mau menghambat rekonsiliasi Jokowi-Prabowo\n\nJgn komentar yg aneh2 .. elitnya banyak c…', 'positif', '61', '813', '', 'No', 3, 'Thu Jul 25 10:23:03 +0000 2019', 'Mon Apr 11 23:46:28 +0000 2016', '20190725102406', '{\"created_at\":\"Thu Jul 25 10:23:03 +0000 2019\",\"id\":1154336251186540544,\"id_str\":\"1154336251186540544\",\"text\":\"RT @IreneViena: Golkar jangan niru PKB banyak tingkah mau menghambat rekonsiliasi Jokowi-Prabowo\\n\\nJgn komentar yg aneh2 .. elitnya banyak c\\u2026\",\"truncated\":false,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"IreneViena\",\"name\":\"Irene\",\"id\":805629166095769600,\"id_str\":\"805629166095769600\",\"indices\":[3,14]}],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\">Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":719672998089924609,\"id_str\":\"719672998089924609\",\"name\":\"greenteafreakss\",\"screen_name\":\"greenteafreakss\",\"location\":\"\",\"description\":\"Movie, Culinary, & Sport Addict\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":61,\"friends_count\":813,\"listed_count\":2,\"created_at\":\"Mon Apr 11 23:46:28 +0000 2016\",\"favourites_count\":691,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":3782,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1135043079361064961\\/AWRHKtyf_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1135043079361064961\\/AWRHKtyf_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Thu Jul 25 10:21:09 +0000 2019\",\"id\":1154335771115102208,\"id_str\":\"1154335771115102208\",\"text\":\"Golkar jangan niru PKB banyak tingkah mau menghambat rekonsiliasi Jokowi-Prabowo\\n\\nJgn komentar yg aneh2 .. elitnya\\u2026 https:\\/\\/t.co\\/TRFUw8KQg0\",\"truncated\":true,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/TRFUw8KQg0\",\"expanded_url\":\"https:\\/\\/twitter.com\\/i\\/web\\/status\\/1154335771115102208\",\"display_url\":\"twitter.com\\/i\\/web\\/status\\/1\\u2026\",\"indices\":[116,139]}]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\">Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":805629166095769600,\"id_str\":\"805629166095769600\",\"name\":\"Irene\",\"screen_name\":\"IreneViena\",\"location\":\"Hong Kong\",\"description\":\"Menagih janjimu nan tak kunjung tunai seperti Menunggu Godot di Salihara\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":111348,\"friends_count\":1488,\"listed_count\":80,\"created_at\":\"Mon Dec 05 04:25:35 +0000 2016\",\"favourites_count\":65,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":46774,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/924510371540373504\\/AZVzFqZ8_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/924510371540373504\\/AZVzFqZ8_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/805629166095769600\\/1509255546\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":5,\"favorite_count\":8,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"},\"is_quote_status\":false,\"retweet_count\":5,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"}', NULL, NULL, 'rt ireneviena golkar jangan niru pkb banyak tingkah mau hambat rekonsiliasi jokowi-prabowo jgn komentar yg aneh2 elitnya banyak c', 'jokowi'),
(364, '<NAME>', '@AntiHoaxs2', 2147483647, 'RT @kompascom: Koalisi \"Save Ibu Nuril\" bersyukur akan keputusan DPR menyetujui pertimbangan pemberian amnesti untuk Baiq Nuril Maqnun. #Na…', 'positif', '19411', '129', 'Jabodetabek', 'No', 4, 'Thu Jul 25 10:23:02 +0000 2019', 'Wed Oct 08 18:48:14 +0000 2014', '20190725102406', '{\"created_at\":\"Thu Jul 25 10:23:02 +0000 2019\",\"id\":1154336249169080321,\"id_str\":\"1154336249169080321\",\"text\":\"RT @kompascom: Koalisi \\\"Save Ibu Nuril\\\" bersyukur akan keputusan DPR menyetujui pertimbangan pemberian amnesti untuk Baiq Nuril Maqnun. #Na\\u2026\",\"truncated\":false,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"kompascom\",\"name\":\"Kompas.com\",\"id\":23343960,\"id_str\":\"23343960\",\"indices\":[3,13]}],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"https:\\/\\/mobile.twitter.com\\\" rel=\\\"nofollow\\\">Twitter Web App<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":2816348595,\"id_str\":\"2816348595\",\"name\":\"<NAME>\",\"screen_name\":\"AntiHoaxs2\",\"location\":\"Jabodetabek\",\"description\":\"D<NAME>\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":19411,\"friends_count\":129,\"listed_count\":40,\"created_at\":\"Wed Oct 08 18:48:14 +0000 2014\",\"favourites_count\":5,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":957,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1099606410336169984\\/XvFqHh2i_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1099606410336169984\\/XvFqHh2i_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2816348595\\/1551578151\",\"profile_link_color\":\"F5ABB5\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Thu Jul 25 10:13:16 +0000 2019\",\"id\":1154333787859214336,\"id_str\":\"1154333787859214336\",\"text\":\"Koalisi \\\"Save Ibu Nuril\\\" bersyukur akan keputusan DPR menyetujui pertimbangan pemberian amnesti untuk Baiq Nuril Ma\\u2026 https:\\/\\/t.co\\/gIDZjzHZhh\",\"truncated\":true,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/gIDZjzHZhh\",\"expanded_url\":\"https:\\/\\/twitter.com\\/i\\/web\\/status\\/1154333787859214336\",\"display_url\":\"twitter.com\\/i\\/web\\/status\\/1\\u2026\",\"indices\":[117,140]}]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"https:\\/\\/mobile.twitter.com\\\" rel=\\\"nofollow\\\">Twitter Web App<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":23343960,\"id_str\":\"23343960\",\"name\":\"Kompas.com\",\"screen_name\":\"kompascom\",\"location\":\"Indonesia\",\"description\":\"<NAME> | <EMAIL> | <NAME>\",\"url\":\"https:\\/\\/t.co\\/69oEiSoI5p\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/69oEiSoI5p\",\"expanded_url\":\"http:\\/\\/www.kompas.com\",\"display_url\":\"kompas.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":7230365,\"friends_count\":25,\"listed_count\":10584,\"created_at\":\"Sun Mar 08 19:32:04 +0000 2009\",\"favourites_count\":105,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1310136,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"1B3567\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/924834031509712896\\/SjhqOzgA_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/924834031509712896\\/SjhqOzgA_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/23343960\\/1562750149\",\"profile_link_color\":\"1B3567\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F4990A\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"regular\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":1,\"favorite_count\":6,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"in\"},\"is_quote_status\":false,\"retweet_count\":1,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"}', NULL, NULL, 'rt kompascom koalisi save ibu nuril syukur akan putus dpr tuju timbang beri amnesti untuk baiq nuril maqnun na', 'jokowi'),
(347, '<NAME>', '@Aidith_Maya', 2147483647, '@atr_ahre @AilynBonilla Esta es luna ????', 'positif', '1427', '500', 'ÜT: 6.2393248,-75.587562', 'No', 9, 'Mon Jul 22 03:49:47 +0000 2019', 'Fri Sep 18 22:42:44 +0000 2009', '20190722061529', '{\"created_at\":\"Mon Jul 22 03:49:47 +0000 2019\",\"id\":1153150118780112897,\"id_str\":\"1153150118780112897\",\"text\":\"@atr_ahre @AilynBonilla Esta es luna \\ud83d\\ude02\",\"truncated\":false,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"atr_ahre\",\"name\":\"<NAME>\",\"id\":240709764,\"id_str\":\"240709764\",\"indices\":[0,9]},{\"screen_name\":\"AilynBonilla\",\"name\":\"<NAME>\",\"id\":518132407,\"id_str\":\"518132407\",\"indices\":[10,23]}],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"es\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\">Twitter for iPhone<\\/a>\",\"in_reply_to_status_id\":1153108165598334976,\"in_reply_to_status_id_str\":\"1153108165598334976\",\"in_reply_to_user_id\":240709764,\"in_reply_to_user_id_str\":\"240709764\",\"in_reply_to_screen_name\":\"atr_ahre\",\"user\":{\"id\":75406820,\"id_str\":\"75406820\",\"name\":\"<NAME>\",\"screen_name\":\"Aidith_Maya\",\"location\":\"\\u00dcT: 6.2393248,-75.587562\",\"description\":\"QUIBD\\u00d3-CHOC\\u00d3\",\"url\":\"https:\\/\\/t.co\\/dBHlIBhfHo\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/dBHlIBhfHo\",\"expanded_url\":\"http:\\/\\/facebook.com\",\"display_url\":\"facebook.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1427,\"friends_count\":500,\"listed_count\":6,\"created_at\":\"Fri Sep 18 22:42:44 +0000 2009\",\"favourites_count\":11118,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":28204,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme10\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme10\\/bg.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1099142568238088194\\/hWcYm5TW_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1099142568238088194\\/hWcYm5TW_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/75406820\\/1439518782\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"829D5E\",\"profile_sidebar_fill_color\":\"99CC33\",\"profile_text_color\":\"3E4415\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":0,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"lang\":\"es\"}', NULL, NULL, 'atr ahre ailynbonilla esta es luna', 'luna maya'),
(282, 'Masdjodi', '@Masdjodi1', 2147483647, 'RT @KabarFZ: Fadli Zon Apresiasi Kegiatan Leadership Forum Sebagai Bagian Networking Dan Tukar Pikiran Tentang Tantangan Dan Ancaman Terhad…', 'positif', '463', '30', '', 'No', 0, 'Wed Jul 17 00:40:26 +0000 2019', 'Mon Dec 03 13:44:01 +0000 2018', '20190717050816', '{\"created_at\":\"Wed Jul 17 00:40:26 +0000 2019\",\"id\":1151290529721622528,\"id_str\":\"1151290529721622528\",\"text\":\"RT @KabarFZ: Fadli Zon Apresiasi Kegiatan Leadership Forum Sebagai Bagian Networking Dan Tukar Pikiran Tentang Tantangan Dan Ancaman Terhad\\u2026\",\"truncated\":false,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"KabarFZ\",\"name\":\"<NAME>\",\"id\":961621748927012864,\"id_str\":\"961621748927012864\",\"indices\":[3,11]}],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\">Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1069588063662174209,\"id_str\":\"1069588063662174209\",\"name\":\"Masdjodi\",\"screen_name\":\"Masdjodi1\",\"location\":\"\",\"description\":\"Aku biasa saja .., nikmati kicauan, berlayar mengarungi waktu hingga hilang dari pandangan ...\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":463,\"friends_count\":30,\"listed_count\":0,\"created_at\":\"Mon Dec 03 13:44:01 +0000 2018\",\"favourites_count\":32477,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2969,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1098240506369196033\\/HFc4lATQ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1098240506369196033\\/HFc4lATQ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1069588063662174209\\/1550677090\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Tue Jul 16 19:24:48 +0000 2019\",\"id\":1151211097036378112,\"id_str\":\"1151211097036378112\",\"text\":\"Fadli Zon Apresiasi Kegiatan Leadership Forum Sebagai Bagian Networking Dan Tukar Pikiran Tentang Tantangan Dan Anc\\u2026 https:\\/\\/t.co\\/ZP3D1uUGeU\",\"truncated\":true,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ZP3D1uUGeU\",\"expanded_url\":\"https:\\/\\/twitter.com\\/i\\/web\\/status\\/1151211097036378112\",\"display_url\":\"twitter.com\\/i\\/web\\/status\\/1\\u2026\",\"indices\":[117,140]}]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\">Twitter for iPhone<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":961621748927012864,\"id_str\":\"961621748927012864\",\"name\":\"<NAME>\",\"screen_name\":\"KabarFZ\",\"location\":\"Jakarta Barat, DKI Jakarta\",\"description\":\"\",\"url\":\"https:\\/\\/t.co\\/O7GijNwU8A\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/O7GijNwU8A\",\"expanded_url\":\"http:\\/\\/fadlizon.com\",\"display_url\":\"fadlizon.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2866,\"friends_count\":52,\"listed_count\":1,\"created_at\":\"Thu Feb 08 15:24:25 +0000 2018\",\"favourites_count\":2,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":960,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1021340798942470145\\/dFHEwz6i_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1021340798942470145\\/dFHEwz6i_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/961621748927012864\\/1518105236\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":10,\"favorite_count\":83,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"in\"},\"is_quote_status\":false,\"retweet_count\":10,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"}', NULL, NULL, 'rt kabarfz fadli zon apresiasi giat leadership forum bagai bagi networking dan tukar pikir tentang tantang dan ancam had', 'fadli zon'),
(281, '<NAME>', '@initiharjo', 2147483647, '@ustadtengkuzul Fadli Zon mengatakan korupsi adalah olie pembangunan , Bro', 'positif', '9', '60', 'Las Vegas, NV', 'No', 0, 'Wed Jul 17 01:02:52 +0000 2019', 'Sat Oct 13 03:55:20 +0000 2018', '20190717050816', '{\"created_at\":\"Wed Jul 17 01:02:52 +0000 2019\",\"id\":1151296173258317824,\"id_str\":\"1151296173258317824\",\"text\":\"@ustadtengkuzul Fadli Zon mengatakan korupsi adalah olie pembangunan , Bro\",\"truncated\":false,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"ustadtengkuzul\",\"name\":\"tengkuzulkarnain\",\"id\":843793805010644992,\"id_str\":\"843793805010644992\",\"indices\":[0,15]}],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\">Twitter for iPhone<\\/a>\",\"in_reply_to_status_id\":1150923819885846528,\"in_reply_to_status_id_str\":\"1150923819885846528\",\"in_reply_to_user_id\":843793805010644992,\"in_reply_to_user_id_str\":\"843793805010644992\",\"in_reply_to_screen_name\":\"ustadtengkuzul\",\"user\":{\"id\":1050958138302590977,\"id_str\":\"1050958138302590977\",\"name\":\"<NAME>\",\"screen_name\":\"initiharjo\",\"location\":\"Las Vegas, NV\",\"description\":\"Ojo ketungkul , lan ojo kebranang ing gegayuhan\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":9,\"friends_count\":60,\"listed_count\":0,\"created_at\":\"Sat Oct 13 03:55:20 +0000 2018\",\"favourites_count\":78,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":859,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1146612602903990272\\/b7abT4BX_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1146612602903990272\\/b7abT4BX_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1050958138302590977\\/1551613413\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":{\"id\":\"6e0f0a00ef60a2bf\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/6e0f0a00ef60a2bf.json\",\"place_type\":\"admin\",\"name\":\"West Borneo\",\"full_name\":\"West Borneo, Indonesia\",\"country_code\":\"ID\",\"country\":\"Indonesia\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[108.5949,-3.067652],[114.2008722,-3.067652],[114.2008722,2.0810503],[108.5949,2.0810503]]]},\"attributes\":[]},\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":0,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"}', NULL, NULL, 'ustadtengkuzul fadli zon kata korupsi adalah olie bangun bro', 'fadli zon'),
(280, '<NAME>', '@Nastarsyawalan', 2147483647, '@kompasiana @kompascom Buku how to be fadli zon ada g min?', 'positif', '719', '955', 'Yogya yang penuh neonbox', 'No', 8, 'Wed Jul 17 01:36:51 +0000 2019', 'Thu Feb 10 06:04:57 +0000 2011', '20190717050816', '{\"created_at\":\"Wed Jul 17 01:36:51 +0000 2019\",\"id\":1151304726136279040,\"id_str\":\"1151304726136279040\",\"text\":\"@kompasiana @kompascom Buku how to be fadli zon ada g min?\",\"truncated\":false,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"kompasiana\",\"name\":\"Kompasiana\",\"id\":23786106,\"id_str\":\"23786106\",\"indices\":[0,11]},{\"screen_name\":\"kompascom\",\"name\":\"Kompas.com\",\"id\":23343960,\"id_str\":\"23343960\",\"indices\":[12,22]}],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\">Twitter for Android<\\/a>\",\"in_reply_to_status_id\":1151280353186738176,\"in_reply_to_status_id_str\":\"1151280353186738176\",\"in_reply_to_user_id\":23786106,\"in_reply_to_user_id_str\":\"23786106\",\"in_reply_to_screen_name\":\"kompasiana\",\"user\":{\"id\":250000162,\"id_str\":\"250000162\",\"name\":\"<NAME>\",\"screen_name\":\"Nastarsyawalan\",\"location\":\"Yogya yang penuh neonbox\",\"description\":\"Selebtweet wannabe; social climber; haus eksistensi\",\"url\":\"https:\\/\\/t.co\\/thMaN9QG3y\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/thMaN9QG3y\",\"expanded_url\":\"http:\\/\\/ayonekoneko.blogspot.com\\/\",\"display_url\":\"ayonekoneko.blogspot.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":719,\"friends_count\":955,\"listed_count\":9,\"created_at\":\"Thu Feb 10 06:04:57 +0000 2011\",\"favourites_count\":720,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":48294,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1019284208831741953\\/Zq6m1B_s_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1019284208831741953\\/Zq6m1B_s_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/250000162\\/1467223418\",\"profile_link_color\":\"825421\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"F6CE93\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":0,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"}', NULL, NULL, 'kompasiana kompascom buku how to be fadli zon ada g min', 'fadli zon'),
(279, 'vanidiana', '@vanidiana', 2147483647, 'RT @Pengamat_Eksis: @andre_rosiade @panca66 @YanHarahap @AndiArief__ @prabowo @OssyDermawan gw jadi inget fadli zon ketakutan saat malam it…', 'positif', '547', '487', 'Indonesia', 'No', 10, 'Wed Jul 17 02:31:57 +0000 2019', 'Fri Aug 22 23:38:35 +0000 2008', '20190717050816', '{\"created_at\":\"Wed Jul 17 02:31:57 +0000 2019\",\"id\":1151318592236867584,\"id_str\":\"1151318592236867584\",\"text\":\"RT @Pengamat_Eksis: @andre_rosiade @panca66 @YanHarahap @AndiArief__ @prabowo @OssyDermawan gw jadi inget fadli zon ketakutan saat malam it\\u2026\",\"truncated\":false,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Pengamat_Eksis\",\"name\":\"<NAME>\",\"id\":959311658425368577,\"id_str\":\"959311658425368577\",\"indices\":[3,18]},{\"screen_name\":\"andre_rosiade\",\"name\":\"<NAME>\",\"id\":190679407,\"id_str\":\"190679407\",\"indices\":[20,34]},{\"screen_name\":\"panca66\",\"name\":\"Panca\",\"id\":82042655,\"id_str\":\"82042655\",\"indices\":[35,43]},{\"screen_name\":\"YanHarahap\",\"name\":\"<NAME>\",\"id\":61465123,\"id_str\":\"61465123\",\"indices\":[44,55]},{\"screen_name\":\"AndiArief__\",\"name\":\"andi arief\",\"id\":3252997136,\"id_str\":\"3252997136\",\"indices\":[56,68]},{\"screen_name\":\"prabowo\",\"name\":\"<NAME>\",\"id\":40580714,\"id_str\":\"40580714\",\"indices\":[69,77]},{\"screen_name\":\"OssyDermawan\",\"name\":\"<NAME>\",\"id\":986216802299473921,\"id_str\":\"986216802299473921\",\"indices\":[78,91]}],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\">Twitter Web Client<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":15951742,\"id_str\":\"15951742\",\"name\":\"vanidiana\",\"screen_name\":\"vanidiana\",\"location\":\"Indonesia\",\"description\":\"Internet Freelance Writer\",\"url\":\"http:\\/\\/t.co\\/263M9EYehm\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/263M9EYehm\",\"expanded_url\":\"http:\\/\\/vanidiana.com\",\"display_url\":\"vanidiana.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":547,\"friends_count\":487,\"listed_count\":15,\"created_at\":\"Fri Aug 22 23:38:35 +0000 2008\",\"favourites_count\":15651,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":10197,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FF6699\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/452202912270151680\\/3C1sU9Ah_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/452202912270151680\\/3C1sU9Ah_normal.jpeg\",\"profile_link_color\":\"B40B43\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Tue Jul 16 02:52:29 +0000 2019\",\"id\":1150961371099455488,\"id_str\":\"1150961371099455488\",\"text\":\"@andre_rosiade @panca66 @YanHarahap @AndiArief__ @prabowo @OssyDermawan gw jadi inget fadli zon ketakutan saat mala\\u2026 https:\\/\\/t.co\\/Kz9jLmECFZ\",\"truncated\":true,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"andre_rosiade\",\"name\":\"<NAME>\",\"id\":190679407,\"id_str\":\"190679407\",\"indices\":[0,14]},{\"screen_name\":\"panca66\",\"name\":\"Panca\",\"id\":82042655,\"id_str\":\"82042655\",\"indices\":[15,23]},{\"screen_name\":\"YanHarahap\",\"name\":\"<NAME>\",\"id\":61465123,\"id_str\":\"61465123\",\"indices\":[24,35]},{\"screen_name\":\"AndiArief__\",\"name\":\"<NAME>\",\"id\":3252997136,\"id_str\":\"3252997136\",\"indices\":[36,48]},{\"screen_name\":\"prabowo\",\"name\":\"<NAME>\",\"id\":40580714,\"id_str\":\"40580714\",\"indices\":[49,57]},{\"screen_name\":\"OssyDermawan\",\"name\":\"<NAME>\",\"id\":986216802299473921,\"id_str\":\"986216802299473921\",\"indices\":[58,71]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Kz9jLmECFZ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/i\\/web\\/status\\/1150961371099455488\",\"display_url\":\"twitter.com\\/i\\/web\\/status\\/1\\u2026\",\"indices\":[117,140]}]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\">Twitter for Android<\\/a>\",\"in_reply_to_status_id\":1150711352706514944,\"in_reply_to_status_id_str\":\"1150711352706514944\",\"in_reply_to_user_id\":190679407,\"in_reply_to_user_id_str\":\"190679407\",\"in_reply_to_screen_name\":\"andre_rosiade\",\"user\":{\"id\":959311658425368577,\"id_str\":\"959311658425368577\",\"name\":\"<NAME>\",\"screen_name\":\"Pengamat_Eksis\",\"location\":\"wakanda\",\"description\":\"~berharap keadilan itu nyata walau hanya secerah lilin di kegelapan~\\n\\nakun ini mulai sekarang akan kritis terhadap hati yang busuk\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":541,\"friends_count\":340,\"listed_count\":0,\"created_at\":\"Fri Feb 02 06:24:57 +0000 2018\",\"favourites_count\":1378,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":4595,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1137236038957486081\\/3x1qvhSE_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1137236038957486081\\/3x1qvhSE_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/959311658425368577\\/1537778905\",\"profile_link_color\":\"19CF86\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":2,\"favorite_count\":2,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"},\"is_quote_status\":false,\"retweet_count\":2,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"}', NULL, NULL, 'rt amat eks andre rosiade panca66 yanharahap andiarief prabowo ossydermawan gw jadi inget fadli zon takut saat malam it', 'fadli zon');
INSERT INTO `crawl_data` (`id`, `name`, `screen_name`, `tweet_id`, `text`, `flag`, `followers_count`, `following_count`, `location`, `verified`, `different_year`, `created_post`, `created_account`, `token_search`, `result_crawl_json`, `class_hoax`, `class_hoax_info`, `tokenizing`, `keyword`) VALUES
(278, '<NAME>', '@syamsul49559735', 2147483647, 'RT @KabarFZ: Fadli Zon Apresiasi Kegiatan Leadership Forum Sebagai Bagian Networking Dan Tukar Pikiran Tentang Tantangan Dan Ancaman Terhad…', 'positif', '33', '40', '', 'No', 3, 'Wed Jul 17 02:59:47 +0000 2019', 'Sun Oct 18 22:35:18 +0000 2015', '20190717050816', '{\"created_at\":\"Wed Jul 17 02:59:47 +0000 2019\",\"id\":1151325594954559488,\"id_str\":\"1151325594954559488\",\"text\":\"RT @KabarFZ: Fadli Zon Apresiasi Kegiatan Leadership Forum Sebagai Bagian Networking Dan Tukar Pikiran Tentang Tantangan Dan Ancaman Terhad\\u2026\",\"truncated\":false,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"KabarFZ\",\"name\":\"<NAME>\",\"id\":961621748927012864,\"id_str\":\"961621748927012864\",\"indices\":[3,11]}],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\">Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":3940428972,\"id_str\":\"3940428972\",\"name\":\"<NAME>\",\"screen_name\":\"syamsul49559735\",\"location\":\"\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33,\"friends_count\":40,\"listed_count\":0,\"created_at\":\"Sun Oct 18 22:35:18 +0000 2015\",\"favourites_count\":7220,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":7424,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/660427040760336384\\/L7PNe85d_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/660427040760336384\\/L7PNe85d_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Tue Jul 16 19:24:48 +0000 2019\",\"id\":1151211097036378112,\"id_str\":\"1151211097036378112\",\"text\":\"<NAME> Apresiasi Kegiatan Leadership Forum Sebagai Bagian Networking Dan Tukar Pikiran Tentang Tantangan Dan Anc\\u2026 https:\\/\\/t.co\\/ZP3D1uUGeU\",\"truncated\":true,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ZP3D1uUGeU\",\"expanded_url\":\"https:\\/\\/twitter.com\\/i\\/web\\/status\\/1151211097036378112\",\"display_url\":\"twitter.com\\/i\\/web\\/status\\/1\\u2026\",\"indices\":[117,140]}]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\">Twitter for iPhone<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":961621748927012864,\"id_str\":\"961621748927012864\",\"name\":\"<NAME>\",\"screen_name\":\"KabarFZ\",\"location\":\"Jakarta Barat, DKI Jakarta\",\"description\":\"\",\"url\":\"https:\\/\\/t.co\\/O7GijNwU8A\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/O7GijNwU8A\",\"expanded_url\":\"http:\\/\\/fadlizon.com\",\"display_url\":\"fadlizon.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2866,\"friends_count\":52,\"listed_count\":1,\"created_at\":\"Thu Feb 08 15:24:25 +0000 2018\",\"favourites_count\":2,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":960,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1021340798942470145\\/dFHEwz6i_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1021340798942470145\\/dFHEwz6i_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/961621748927012864\\/1518105236\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":10,\"favorite_count\":83,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"in\"},\"is_quote_status\":false,\"retweet_count\":10,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"}', NULL, NULL, 'rt kabarfz fadli zon apresiasi giat leadership forum bagai bagi networking dan tukar pikir tentang tantang dan ancam had', 'fadli zon'),
(368, '<NAME>', '@kwacihamtaro', 2147483647, '@5thform @gojekindonesia Emangdeh. Gmn sih ni jokowi', 'positif', '433', '445', 'PT. Mencari Cinta Sejati', 'No', 9, 'Thu Jul 25 10:22:46 +0000 2019', 'Fri Oct 30 06:33:11 +0000 2009', '20190725102406', '{\"created_at\":\"Thu Jul 25 10:22:46 +0000 2019\",\"id\":1154336181741477890,\"id_str\":\"1154336181741477890\",\"text\":\"@5thform @gojekindonesia Emangdeh. Gmn sih ni jokowi\",\"truncated\":false,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"5thform\",\"name\":\"d\",\"id\":64424067,\"id_str\":\"64424067\",\"indices\":[0,8]},{\"screen_name\":\"gojekindonesia\",\"name\":\"<NAME>\",\"id\":226481275,\"id_str\":\"226481275\",\"indices\":[9,24]}],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\">Twitter for Android<\\/a>\",\"in_reply_to_status_id\":1154332591098433536,\"in_reply_to_status_id_str\":\"1154332591098433536\",\"in_reply_to_user_id\":64424067,\"in_reply_to_user_id_str\":\"64424067\",\"in_reply_to_screen_name\":\"5thform\",\"user\":{\"id\":86254979,\"id_str\":\"86254979\",\"name\":\"<NAME>\",\"screen_name\":\"kwacihamtaro\",\"location\":\"PT. Mencari Cinta Sejati\",\"description\":\"\\u2601\\ufe0f | Kata org aku tuh pendiem. Diem-diem sayang kamu.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":433,\"friends_count\":445,\"listed_count\":0,\"created_at\":\"Fri Oct 30 06:33:11 +0000 2009\",\"favourites_count\":331,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":15623,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"B2DFDA\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme13\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme13\\/bg.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1108483063237898240\\/ZC7S7qBo_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1108483063237898240\\/ZC7S7qBo_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/86254979\\/1554521419\",\"profile_link_color\":\"E476F7\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"FFFFFF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":0,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"}', NULL, NULL, '5thform gojekindonesia emangdeh gmn sih ni jokowi', 'jokowi'),
(334, 'Black Rhose', '@RhoseBlack', 2147483647, '@MaulanaT__ @prabowo Narasi memujinya juga lebay sih...\n\nKeberpihakan bukan tidak boleh kecewa, mendukung seseorang tidak auto_manut wae.', 'negatif', '1339', '793', 'Surakarta', 'No', 1, 'Sat Jul 20 08:28:56 +0000 2019', 'Fri Jun 29 08:58:59 +0000 2018', '20190720082928', '{\"created_at\":\"Sat Jul 20 08:28:56 +0000 2019\",\"id\":1152495594859950080,\"id_str\":\"1152495594859950080\",\"text\":\"@MaulanaT__ @prabowo Narasi memujinya juga lebay sih...\\n\\nKeberpihakan bukan tidak boleh kecewa, mendukung seseorang tidak auto_manut wae.\",\"truncated\":false,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"MaulanaT__\",\"name\":\"\\ud83c\\uddee\\ud83c\\udde9MT\\ud83d\\udd1d\\ud83c\\udd94\\ud83c\\uddf5\\ud83c\\uddf8\",\"id\":1132895301809795072,\"id_str\":\"1132895301809795072\",\"indices\":[0,11]},{\"screen_name\":\"prabowo\",\"name\":\"<NAME>\",\"id\":40580714,\"id_str\":\"40580714\",\"indices\":[12,20]}],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"https:\\/\\/mobile.twitter.com\\\" rel=\\\"nofollow\\\">Twitter Web App<\\/a>\",\"in_reply_to_status_id\":1152495073793196032,\"in_reply_to_status_id_str\":\"1152495073793196032\",\"in_reply_to_user_id\":1132895301809795072,\"in_reply_to_user_id_str\":\"1132895301809795072\",\"in_reply_to_screen_name\":\"MaulanaT__\",\"user\":{\"id\":1012621440049299456,\"id_str\":\"1012621440049299456\",\"name\":\"<NAME>\",\"screen_name\":\"RhoseBlack\",\"location\":\"Surakarta\",\"description\":\"Anak negeri ini harus menjadi tuan bagi tanahnya sendiri | Tidak diam tatkala syariat dilecehkan | \\u26d4\\ufe0f akun porn auto-blokir \\ud83d\\udd2a\\u26d4\\ufe0f | NO DM \\u203c\\ufe0f\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1339,\"friends_count\":793,\"listed_count\":0,\"created_at\":\"Fri Jun 29 08:58:59 +0000 2018\",\"favourites_count\":1616,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1790,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1150108746317623297\\/rYAO8DTw_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1150108746317623297\\/rYAO8DTw_normal.png\",\"profile_link_color\":\"F58EA8\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":0,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"}', NULL, NULL, 'maulanat prabowo narasi puji juga lebay sih pihak bukan tidak boleh kecewa dukung orang tidak auto manut wae', 'prabowo'),
(335, 'Agnesno', '@agnes_tika', 2147483647, '@Teguh_ren Prabowo wkwkwk', 'negatif', '364', '358', 'Jakarta', 'No', 10, 'Sat Jul 20 08:27:25 +0000 2019', 'Sun Jul 05 00:30:38 +0000 2009', '20190720082928', '{\"created_at\":\"Sat Jul 20 08:27:25 +0000 2019\",\"id\":1152495209927720960,\"id_str\":\"1152495209927720960\",\"text\":\"@Teguh_ren Prabowo wkwkwk\",\"truncated\":false,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Teguh_ren\",\"name\":\"<NAME>\",\"id\":196477333,\"id_str\":\"196477333\",\"indices\":[0,10]}],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\">Twitter for Android<\\/a>\",\"in_reply_to_status_id\":1152494968885268480,\"in_reply_to_status_id_str\":\"1152494968885268480\",\"in_reply_to_user_id\":196477333,\"in_reply_to_user_id_str\":\"196477333\",\"in_reply_to_screen_name\":\"Teguh_ren\",\"user\":{\"id\":53797978,\"id_str\":\"53797978\",\"name\":\"Agnesno\",\"screen_name\":\"agnes_tika\",\"location\":\"Jakarta\",\"description\":\"Food and travelling lover. And especially you! \\u2665\",\"url\":\"http:\\/\\/t.co\\/2aerV2SW4K\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/2aerV2SW4K\",\"expanded_url\":\"http:\\/\\/agnestika.wordpress.com\\/\",\"display_url\":\"agnestika.wordpress.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":364,\"friends_count\":358,\"listed_count\":15,\"created_at\":\"Sun Jul 05 00:30:38 +0000 2009\",\"favourites_count\":6344,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":49813,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFCFF\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme18\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme18\\/bg.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/962190556402130944\\/vog40wDY_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/962190556402130944\\/vog40wDY_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/53797978\\/1371755473\",\"profile_link_color\":\"2478BD\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"393F42\",\"profile_text_color\":\"96C0ED\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":0,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"}', NULL, NULL, 'teguh ren prabowo wkwkwk', 'prabowo'),
(340, 'Nidn', '@cakarkuning', 2147483647, '@dafdhiy \'Lifestyle lu kaya syahrini apa?\'\n\'Lucinta luna lu hanjing\'\nSatisfying anjir dengernya', 'positif', '166', '270', 'Kota Bandung, Jawa Barat', 'No', 0, 'Sat Jul 20 07:59:56 +0000 2019', 'Mon Dec 17 02:53:37 +0000 2018', '20190720083112', '{\"created_at\":\"Sat Jul 20 07:59:56 +0000 2019\",\"id\":1152488296901009410,\"id_str\":\"1152488296901009410\",\"text\":\"@dafdhiy \'Lifestyle lu kaya syahrini apa?\'\\n\'Lucinta luna lu hanjing\'\\nSatisfying anjir dengernya\",\"truncated\":false,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"dafdhiy\",\"name\":\"dafa\",\"id\":2304915008,\"id_str\":\"2304915008\",\"indices\":[0,8]}],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"https:\\/\\/mobile.twitter.com\\\" rel=\\\"nofollow\\\">Twitter Web App<\\/a>\",\"in_reply_to_status_id\":1152482691406630912,\"in_reply_to_status_id_str\":\"1152482691406630912\",\"in_reply_to_user_id\":2304915008,\"in_reply_to_user_id_str\":\"2304915008\",\"in_reply_to_screen_name\":\"dafdhiy\",\"user\":{\"id\":1074497814942572544,\"id_str\":\"1074497814942572544\",\"name\":\"Nidn\",\"screen_name\":\"cakarkuning\",\"location\":\"Kota Bandung, Jawa Barat\",\"description\":\"An intro extro\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":166,\"friends_count\":270,\"listed_count\":0,\"created_at\":\"Mon Dec 17 02:53:37 +0000 2018\",\"favourites_count\":920,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1710,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1144294948230950912\\/tAnekq0p_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1144294948230950912\\/tAnekq0p_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1074497814942572544\\/1559494527\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":0,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"}', NULL, NULL, 'dafdhiy lifestyle lu kaya syahrini apa lucinta luna lu hanjing satisfying anjir dengernya', 'syahrini'),
(346, 'ayeongvmin????', '@ayeongvmin', 2147483647, 'Luna maya, zarajkt48, vanesha mereka ARMY , duhh kok saingan ku cantik cantik, kaya2 :(( w ngrasa jadi remukan rempeyek????', 'positif', '12', '31', 'Klaten, Jawa Tengah', 'No', 0, 'Mon Jul 22 03:55:31 +0000 2019', 'Wed Jan 09 04:29:18 +0000 2019', '20190722061529', '{\"created_at\":\"Mon Jul 22 03:55:31 +0000 2019\",\"id\":1153151561582825472,\"id_str\":\"1153151561582825472\",\"text\":\"Luna maya, zarajkt48, vanesha mereka ARMY , duhh kok saingan ku cantik cantik, kaya2 :(( w ngrasa jadi remukan rempeyek\\ud83d\\ude2d\",\"truncated\":false,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\">Twitter for iPhone<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1082856818307608577,\"id_str\":\"1082856818307608577\",\"name\":\"ayeongvmin\\ud83d\\udc9c\",\"screen_name\":\"ayeongvmin\",\"location\":\"Klaten, Jawa Tengah\",\"description\":\"Hay people follow my instagram @sekarjawii\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":12,\"friends_count\":31,\"listed_count\":0,\"created_at\":\"Wed Jan 09 04:29:18 +0000 2019\",\"favourites_count\":34,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":55,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1146330540317921280\\/Ze-q7YOv_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1146330540317921280\\/Ze-q7YOv_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1082856818307608577\\/1555294063\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":0,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"}', NULL, NULL, 'luna maya zarajkt48 vanesha mereka army duhh kok saing ku cantik cantik kaya2 w ngrasa jadi remuk rempeyek', 'luna maya'),
(339, 'Riswir', '@lovebeefhuman', 2147483647, 'RT @wahyu_dikabul: guys, kasih saran nama panggilan sayang buat pacar dong ?\n\nkan kalo syahrini mumu bubu, nah kalo aku apa ya?', 'positif', '1', '12', '', 'No', 0, 'Sat Jul 20 08:11:18 +0000 2019', 'Fri Jul 12 19:39:31 +0000 2019', '20190720083112', '{\"created_at\":\"Sat Jul 20 08:11:18 +0000 2019\",\"id\":1152491156170629120,\"id_str\":\"1152491156170629120\",\"text\":\"RT @wahyu_dikabul: guys, kasih saran nama panggilan sayang buat pacar dong ?\\n\\nkan kalo syahrini mumu bubu, nah kalo aku apa ya?\",\"truncated\":false,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"wahyu_dikabul\",\"name\":\"ig : kawahyudi_\",\"id\":445479603,\"id_str\":\"445479603\",\"indices\":[3,17]}],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\">Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1149765247869190145,\"id_str\":\"1149765247869190145\",\"name\":\"Riswir\",\"screen_name\":\"lovebeefhuman\",\"location\":\"\",\"description\":\"Gesekan 2001 mengakibatkan diriku terlahir.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1,\"friends_count\":12,\"listed_count\":0,\"created_at\":\"Fri Jul 12 19:39:31 +0000 2019\",\"favourites_count\":81,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":40,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/abs.twimg.com\\/sticky\\/default_profile_images\\/default_profile_normal.png\",\"profile_image_url_https\":\"https:\\/\\/abs.twimg.com\\/sticky\\/default_profile_images\\/default_profile_normal.png\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":true,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Sat Jul 20 03:44:15 +0000 2019\",\"id\":1152423949537406981,\"id_str\":\"1152423949537406981\",\"text\":\"guys, kasih saran nama panggilan sayang buat pacar dong ?\\n\\nkan kalo syahrini mumu bubu, nah kalo aku apa ya?\",\"truncated\":false,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\">Twitter for iPhone<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":445479603,\"id_str\":\"445479603\",\"name\":\"ig : kawahyudi_\",\"screen_name\":\"wahyu_dikabul\",\"location\":\"Kota Bogor, Jawa Barat\",\"description\":\"kalo aku falaw kamu, tandanya aku pengen di follback sama kamu.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":8687,\"friends_count\":1841,\"listed_count\":1,\"created_at\":\"Sat Dec 24 13:08:40 +0000 2011\",\"favourites_count\":1550,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":17238,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"EDECE9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1142076264632614912\\/u0KSclm0_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1142076264632614912\\/u0KSclm0_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/445479603\\/1563549909\",\"profile_link_color\":\"088253\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":2,\"favorite_count\":59,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"},\"is_quote_status\":false,\"retweet_count\":2,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"}', NULL, NULL, 'rt wahyu kabul guys kasih saran nama panggil sayang buat pacar dong kan kalo syahrini mu bubu nah kalo aku apa ya', 'syahrini'),
(336, '†', '@eunsangree', 2147483647, 'RT @lihamgyul: 8\n\nKacamata syahrini', 'positif', '87', '42', '9th. | Strictly N-D', 'No', 1, 'Sat Jul 20 08:25:22 +0000 2019', 'Fri Feb 09 14:38:41 +0000 2018', '20190720083112', '{\"created_at\":\"Sat Jul 20 08:25:22 +0000 2019\",\"id\":1152494696565862400,\"id_str\":\"1152494696565862400\",\"text\":\"RT @lihamgyul: 8\\n\\nKacamata syahrini\",\"truncated\":false,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"lihamgyul\",\"name\":\"HANGYUL\",\"id\":723953464020082688,\"id_str\":\"723953464020082688\",\"indices\":[3,13]}],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\">Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":961972628159213568,\"id_str\":\"961972628159213568\",\"name\":\"\\u2020\",\"screen_name\":\"eunsangree\",\"location\":\"9th. | Strictly N-D\",\"description\":\"#LEE_EUNSANG : A professional volunteerer because bravery means being terrified and still doing it anyway.\",\"url\":\"https:\\/\\/t.co\\/CP76s3zz3B\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/CP76s3zz3B\",\"expanded_url\":\"http:\\/\\/curiouscat.me\\/alchemistery\",\"display_url\":\"curiouscat.me\\/alchemistery\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":87,\"friends_count\":42,\"listed_count\":1,\"created_at\":\"Fri Feb 09 14:38:41 +0000 2018\",\"favourites_count\":211,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2971,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1151508307376578561\\/7a2eR7NU_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1151508307376578561\\/7a2eR7NU_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/961972628159213568\\/1563375948\",\"profile_link_color\":\"000000\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Tue Apr 23 14:36:25 +0000 2019\",\"id\":1120697943143489537,\"id_str\":\"1120697943143489537\",\"text\":\"8\\n\\nKacamata syahrini\",\"truncated\":false,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\">Twitter for Android<\\/a>\",\"in_reply_to_status_id\":1120012214998487040,\"in_reply_to_status_id_str\":\"1120012214998487040\",\"in_reply_to_user_id\":723953464020082688,\"in_reply_to_user_id_str\":\"723953464020082688\",\"in_reply_to_screen_name\":\"lihamgyul\",\"user\":{\"id\":723953464020082688,\"id_str\":\"723953464020082688\",\"name\":\"HANGYUL\",\"screen_name\":\"lihamgyul\",\"location\":\"RP\",\"description\":\"No offense but saving MBK is actually sucks.\",\"url\":\"https:\\/\\/t.co\\/yB9wjFasYi\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/yB9wjFasYi\",\"expanded_url\":\"http:\\/\\/curiouscat.me\\/kafkaffein\",\"display_url\":\"curiouscat.me\\/kafkaffein\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":192,\"friends_count\":179,\"listed_count\":2,\"created_at\":\"Sat Apr 23 19:15:31 +0000 2016\",\"favourites_count\":236,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":6509,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1152487483910717440\\/qTWdmYlu_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1152487483910717440\\/qTWdmYlu_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/723953464020082688\\/1563609403\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":1,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"},\"is_quote_status\":false,\"retweet_count\":1,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"}', NULL, NULL, 'rt lihamgyul 8 kacamata syahrini', 'syahrini'),
(337, 'JUJU', '@Mataharibersih', 2147483647, '@areajulid Biasanya orang kek gini tuh yang ekonomi keuangan pas2an tapi gaya hidupnya kek syahrini', 'positif', '12', '35', '', 'No', 0, 'Sat Jul 20 08:18:19 +0000 2019', 'Tue Feb 12 16:15:10 +0000 2019', '20190720083112', '{\"created_at\":\"Sat Jul 20 08:18:19 +0000 2019\",\"id\":1152492923570671616,\"id_str\":\"1152492923570671616\",\"text\":\"@areajulid Biasanya orang kek gini tuh yang ekonomi keuangan pas2an tapi gaya hidupnya kek syahrini\",\"truncated\":false,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"areajulid\",\"name\":\"<NAME>\",\"id\":928308639315648512,\"id_str\":\"928308639315648512\",\"indices\":[0,10]}],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\">Twitter for Android<\\/a>\",\"in_reply_to_status_id\":1152490928235413504,\"in_reply_to_status_id_str\":\"1152490928235413504\",\"in_reply_to_user_id\":928308639315648512,\"in_reply_to_user_id_str\":\"928308639315648512\",\"in_reply_to_screen_name\":\"areajulid\",\"user\":{\"id\":1095355640254328832,\"id_str\":\"1095355640254328832\",\"name\":\"JUJU\",\"screen_name\":\"Mataharibersih\",\"location\":\"\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":12,\"friends_count\":35,\"listed_count\":0,\"created_at\":\"Tue Feb 12 16:15:10 +0000 2019\",\"favourites_count\":1061,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1016,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1135021151598473218\\/Hw2WNOBW_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1135021151598473218\\/Hw2WNOBW_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1095355640254328832\\/1559445106\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":0,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"}', NULL, NULL, 'areajulid biasa orang kek gin tuh yang ekonomi uang pas2an tapi gaya hidup kek syahrini', 'syahrini'),
(338, 'sundie', '@takuterang', 2147483647, '@petitebts @Dewiwlandri_ \"Lifestyle lu kaya Syahrini apa? Lucinta Luna lu anjing\" mantapppp wkwk', 'positif', '182', '265', 'Bumi ALLAH SWT', 'No', 7, 'Sat Jul 20 08:14:33 +0000 2019', 'Wed Nov 02 09:41:51 +0000 2011', '20190720083112', '{\"created_at\":\"Sat Jul 20 08:14:33 +0000 2019\",\"id\":1152491975989272578,\"id_str\":\"1152491975989272578\",\"text\":\"@petitebts @Dewiwlandri_ \\\"Lifestyle lu kaya Syahrini apa? Lucinta Luna lu anjing\\\" mantapppp wkwk\",\"truncated\":false,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"petitebts\",\"name\":\"diana\",\"id\":876678831997763584,\"id_str\":\"876678831997763584\",\"indices\":[0,10]},{\"screen_name\":\"Dewiwlandri_\",\"name\":\"Deww ..\",\"id\":1117979489772822528,\"id_str\":\"1117979489772822528\",\"indices\":[11,24]}],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\">Twitter for Android<\\/a>\",\"in_reply_to_status_id\":1152296990388080640,\"in_reply_to_status_id_str\":\"1152296990388080640\",\"in_reply_to_user_id\":876678831997763584,\"in_reply_to_user_id_str\":\"876678831997763584\",\"in_reply_to_screen_name\":\"petitebts\",\"user\":{\"id\":403306282,\"id_str\":\"403306282\",\"name\":\"sundie\",\"screen_name\":\"takuterang\",\"location\":\"Bumi ALLAH SWT\",\"description\":\"KAMVRETOSS!\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":182,\"friends_count\":265,\"listed_count\":0,\"created_at\":\"Wed Nov 02 09:41:51 +0000 2011\",\"favourites_count\":38,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":8251,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"EBEBEB\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1152495741832585218\\/PBOaWo2P_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1152495741832585218\\/PBOaWo2P_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/403306282\\/1508426962\",\"profile_link_color\":\"990000\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":0,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"}', NULL, NULL, 'petitebts dewiwlandri lifestyle lu kaya syahrini apa lucinta luna lu anjing mantapppp wkwk', 'syahrini'),
(356, '<NAME>', '@PriaKolorIjo', 2147483647, 'RT @yusuf_dumdum: Putra M<NAME> She<NAME> Bin Zayed Al Nahyan bersama delegasinya memutuskan untuk investasi hingga ratusan…', 'positif', '1556', '1115', 'Jakarta Timur, DKI Jakarta', 'No', 3, 'Thu Jul 25 10:23:37 +0000 2019', 'Sat Jan 30 11:43:48 +0000 2016', '20190725102406', '{\"created_at\":\"Thu Jul 25 10:23:37 +0000 2019\",\"id\":1154336393339887616,\"id_str\":\"1154336393339887616\",\"text\":\"RT @yusuf_dumdum: Put<NAME> Bin Zayed Al Nahyan bersama delegasinya memutuskan untuk investasi hingga ratusan\\u2026\",\"truncated\":false,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"yusuf_dumdum\",\"name\":\"Dumdum\",\"id\":2156465923,\"id_str\":\"2156465923\",\"indices\":[3,16]}],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\">Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":4834772592,\"id_str\":\"4834772592\",\"name\":\"<NAME>\",\"screen_name\":\"PriaKolorIjo\",\"location\":\"Jakarta Timur, DKI Jakarta\",\"description\":\"Ketika Cebong dan Kampret bersatu maka Ontalah yg kelojotan \\ud83d\\ude02\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1556,\"friends_count\":1115,\"listed_count\":0,\"created_at\":\"Sat Jan 30 11:43:48 +0000 2016\",\"favourites_count\":29108,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":123173,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1028289808664154112\\/pEZxW8-t_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1028289808664154112\\/pEZxW8-t_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/4834772592\\/1533998481\",\"profile_link_color\":\"E81C4F\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Thu Jul 25 01:53:35 +0000 2019\",\"id\":1154208037789294592,\"id_str\":\"1154208037789294592\",\"text\":\"<NAME> <NAME> Nahyan bersama delegasinya memutuskan untuk investasi hingga ra\\u2026 https:\\/\\/t.co\\/GLQ4yJPOGH\",\"truncated\":true,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/GLQ4yJPOGH\",\"expanded_url\":\"https:\\/\\/twitter.com\\/i\\/web\\/status\\/1154208037789294592\",\"display_url\":\"twitter.com\\/i\\/web\\/status\\/1\\u2026\",\"indices\":[117,140]}]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\">Twitter for iPhone<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":2156465923,\"id_str\":\"2156465923\",\"name\":\"Dumdum\",\"screen_name\":\"yusuf_dumdum\",\"location\":\"Indonesia\",\"description\":\"Penulis Jalanan. Influencer. Kebenaran akan selalu menemukan jalannya.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":49225,\"friends_count\":302,\"listed_count\":49,\"created_at\":\"Sat Oct 26 09:01:53 +0000 2013\",\"favourites_count\":2813,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20227,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1139451732826529792\\/fi4fWZYx_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1139451732826529792\\/fi4fWZYx_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2156465923\\/1559585376\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":50,\"favorite_count\":265,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"in\"},\"is_quote_status\":false,\"retweet_count\":50,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"}', NULL, NULL, 'rt yusuf dumdum putra mahkota abu dhabi sheikh mohamed bin zayed al nahyan sama delegasi putus untuk investasi hingga ratus', 'jokowi');
INSERT INTO `crawl_data` (`id`, `name`, `screen_name`, `tweet_id`, `text`, `flag`, `followers_count`, `following_count`, `location`, `verified`, `different_year`, `created_post`, `created_account`, `token_search`, `result_crawl_json`, `class_hoax`, `class_hoax_info`, `tokenizing`, `keyword`) VALUES
(357, '<NAME>', '@FaraDalila1', 2147483647, 'RT @Rpico5: @jokowi Mantap! Mulai berdatangan investor penting ????????????????', 'positif', '17', '18', 'Semarang, Jawa Tengah', 'No', 0, 'Thu Jul 25 10:23:36 +0000 2019', 'Fri Jul 19 02:52:20 +0000 2019', '20190725102406', '{\"created_at\":\"Thu Jul 25 10:23:36 +0000 2019\",\"id\":1154336389460135937,\"id_str\":\"1154336389460135937\",\"text\":\"RT @Rpico5: @jokowi Mantap! Mulai berdatangan investor penting \\ud83d\\udc4d\\ud83c\\udffc\\ud83d\\udcaa\\ud83c\\udffc\",\"truncated\":false,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Rpico5\",\"name\":\"Rpico5\",\"id\":57344227,\"id_str\":\"57344227\",\"indices\":[3,10]},{\"screen_name\":\"jokowi\",\"name\":\"<NAME>\",\"id\":366987179,\"id_str\":\"366987179\",\"indices\":[12,19]}],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"https:\\/\\/sites.google.com\\/site\\/tweentwitterclient\\/\\\" rel=\\\"nofollow\\\">Tween<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1152048496872062976,\"id_str\":\"1152048496872062976\",\"name\":\"<NAME>\",\"screen_name\":\"FaraDalila1\",\"location\":\"Semarang, Jawa Tengah\",\"description\":\"Cinta itu dapat diibaratkan seperti burung yang indah, yang mana mengemis untuk ditangkapi, tetapi menolak untuk dilukai.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":17,\"friends_count\":18,\"listed_count\":0,\"created_at\":\"Fri Jul 19 02:52:20 +0000 2019\",\"favourites_count\":21,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":44,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1152048704703979521\\/RRrVkzrn_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1152048704703979521\\/RRrVkzrn_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1152048496872062976\\/1563504804\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Thu Jul 25 10:13:16 +0000 2019\",\"id\":1154333789197234176,\"id_str\":\"1154333789197234176\",\"text\":\"@jokowi Mantap! Mulai berdatangan investor penting \\ud83d\\udc4d\\ud83c\\udffc\\ud83d\\udcaa\\ud83c\\udffc\",\"truncated\":false,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"jokowi\",\"name\":\"<NAME>\",\"id\":366987179,\"id_str\":\"366987179\",\"indices\":[0,7]}],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\">Twitter for iPhone<\\/a>\",\"in_reply_to_status_id\":1154278978439356416,\"in_reply_to_status_id_str\":\"1154278978439356416\",\"in_reply_to_user_id\":366987179,\"in_reply_to_user_id_str\":\"366987179\",\"in_reply_to_screen_name\":\"jokowi\",\"user\":{\"id\":57344227,\"id_str\":\"57344227\",\"name\":\"Rpico5\",\"screen_name\":\"Rpico5\",\"location\":\"Jakarta, Indonesia\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":105,\"friends_count\":170,\"listed_count\":0,\"created_at\":\"Thu Jul 16 14:13:11 +0000 2009\",\"favourites_count\":1367,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1165,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"022330\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme15\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme15\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/936431108324859906\\/oZ5JNyw5_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/936431108324859906\\/oZ5JNyw5_normal.jpg\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"A8C7F7\",\"profile_sidebar_fill_color\":\"C0DFEC\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":1,\"favorite_count\":1,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"},\"is_quote_status\":false,\"retweet_count\":1,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"}', NULL, NULL, 'rt rpico5 jokowi mantap mulai datang investor penting', 'jokowi'),
(345, '<NAME>', '@diparamita', 2147483647, '@askmenfess Masih mendoakan yang terbaik, karna move on menurutku bukan bisa lupa tapi bisa ikhlas\n\nLuna maya makan pepaya\nIya iya iya', 'positif', '385', '77', '', 'No', 7, 'Mon Jul 22 04:06:27 +0000 2019', 'Sat Mar 03 08:26:50 +0000 2012', '20190722061529', '{\"created_at\":\"Mon Jul 22 04:06:27 +0000 2019\",\"id\":1153154313167835141,\"id_str\":\"1153154313167835141\",\"text\":\"@askmenfess Masih mendoakan yang terbaik, karna move on menurutku bukan bisa lupa tapi bisa ikhlas\\n\\nLuna maya makan pepaya\\nIya iya iya\",\"truncated\":false,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"askmenfess\",\"name\":\"Askmf\",\"id\":810423824034299904,\"id_str\":\"810423824034299904\",\"indices\":[0,11]}],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\">Twitter for iPhone<\\/a>\",\"in_reply_to_status_id\":1153151604087853056,\"in_reply_to_status_id_str\":\"1153151604087853056\",\"in_reply_to_user_id\":810423824034299904,\"in_reply_to_user_id_str\":\"810423824034299904\",\"in_reply_to_screen_name\":\"askmenfess\",\"user\":{\"id\":512940538,\"id_str\":\"512940538\",\"name\":\"<NAME>\",\"screen_name\":\"diparamita\",\"location\":\"\",\"description\":\"Ali Imran:14 \\ud83c\\udf38 magetanese \\ud83c\\udf38 happy eater, happy cabimbul \\ud83c\\udf38 delicated foodism of @stylemodehard\",\"url\":\"https:\\/\\/t.co\\/Ii5RVHXnnC\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Ii5RVHXnnC\",\"expanded_url\":\"https:\\/\\/instagram.com\\/hardmodestyles\",\"display_url\":\"instagram.com\\/hardmodestyles\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":385,\"friends_count\":77,\"listed_count\":0,\"created_at\":\"Sat Mar 03 08:26:50 +0000 2012\",\"favourites_count\":121,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":18847,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1152980986621095937\\/xsSHXCxn_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1152980986621095937\\/xsSHXCxn_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/512940538\\/1563591121\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":0,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"}', NULL, NULL, 'askmenfess masih doa yang baik karna move on turut bukan bisa lupa tapi bisa ikhlas luna maya makan pepaya iya iya iya', 'luna maya'),
(343, 'MattSae', '@Mat_Jembloeng', 2147483647, '@HoofdbureauID Seng Versi Cut Tari opo Luna Maya ????', 'positif', '17', '89', 'SURABAYA', 'No', 8, 'Mon Jul 22 04:34:34 +0000 2019', 'Thu Jun 30 13:10:41 +0000 2011', '20190722061529', '{\"created_at\":\"Mon Jul 22 04:34:34 +0000 2019\",\"id\":1153161390032474112,\"id_str\":\"1153161390032474112\",\"text\":\"@HoofdbureauID Seng Versi Cut Tari opo Luna Maya \\ud83d\\ude01\",\"truncated\":false,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"HoofdbureauID\",\"name\":\"Hoofyman\",\"id\":833949986362515456,\"id_str\":\"833949986362515456\",\"indices\":[0,14]}],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\">Twitter for Android<\\/a>\",\"in_reply_to_status_id\":1152951352122720257,\"in_reply_to_status_id_str\":\"1152951352122720257\",\"in_reply_to_user_id\":833949986362515456,\"in_reply_to_user_id_str\":\"833949986362515456\",\"in_reply_to_screen_name\":\"HoofdbureauID\",\"user\":{\"id\":326764614,\"id_str\":\"326764614\",\"name\":\"MattSae\",\"screen_name\":\"Mat_Jembloeng\",\"location\":\"SURABAYA\",\"description\":\"Ojo dumeh \\u263a\\ufe0f nerimo ing pandum\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":17,\"friends_count\":89,\"listed_count\":0,\"created_at\":\"Thu Jun 30 13:10:41 +0000 2011\",\"favourites_count\":14,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":546,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1153161910474268673\\/iwVaHvSG_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1153161910474268673\\/iwVaHvSG_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":0,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"}', NULL, NULL, 'hoofdbureauid seng versi cut tari opo luna maya', 'luna maya'),
(344, 'rifq', '@Riifqimaulana', 2147483647, '@Mohamadindra12 Yg wajib baca tu sprt Luna maya, nikita mirzani gt. Kok malah lu. Haduuuuuu', 'positif', '57', '265', '', 'No', 2, 'Mon Jul 22 04:21:33 +0000 2019', 'Tue May 23 02:34:04 +0000 2017', '20190722061529', '{\"created_at\":\"Mon Jul 22 04:21:33 +0000 2019\",\"id\":1153158112573919232,\"id_str\":\"1153158112573919232\",\"text\":\"@Mohamadindra12 Yg wajib baca tu sprt Luna maya, nikita mirzani gt. Kok malah lu. Haduuuuuu\",\"truncated\":false,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Mohamadindra12\",\"name\":\"<NAME>\",\"id\":1125089978189369347,\"id_str\":\"1125089978189369347\",\"indices\":[0,15]}],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\">Twitter for Android<\\/a>\",\"in_reply_to_status_id\":1153157823657680897,\"in_reply_to_status_id_str\":\"1153157823657680897\",\"in_reply_to_user_id\":1125089978189369347,\"in_reply_to_user_id_str\":\"1125089978189369347\",\"in_reply_to_screen_name\":\"Mohamadindra12\",\"user\":{\"id\":866844649511505920,\"id_str\":\"866844649511505920\",\"name\":\"rifq\",\"screen_name\":\"Riifqimaulana\",\"location\":\"\",\"description\":\"Tukang Sambat\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":57,\"friends_count\":265,\"listed_count\":0,\"created_at\":\"Tue May 23 02:34:04 +0000 2017\",\"favourites_count\":1529,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1877,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1139200868060868608\\/xWqYP78k_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1139200868060868608\\/xWqYP78k_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/866844649511505920\\/1561425841\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":0,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"}', NULL, NULL, 'mohamadindra12 yg wajib baca tu sprt luna maya nikita mirzani gt kok malah lu haduuuuuu', 'luna maya'),
(342, 'AyuNuna????', '@_JungkookNuna', 2147483647, 'LUNA MAYA A FAN OF BTS RM AND JIMIN ! ????', 'positif', '272', '633', '+65 Sunny island ????', 'No', 9, 'Mon Jul 22 04:49:49 +0000 2019', 'Sun Jan 10 07:31:31 +0000 2010', '20190722061529', '{\"created_at\":\"Mon Jul 22 04:49:49 +0000 2019\",\"id\":1153165227451510784,\"id_str\":\"1153165227451510784\",\"text\":\"LUNA MAYA A FAN OF BTS RM AND JIMIN ! \\ud83d\\ude06\",\"truncated\":false,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\">Twitter for iPhone<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":103510559,\"id_str\":\"103510559\",\"name\":\"AyuNuna\\ud83c\\udf52\",\"screen_name\":\"_JungkookNuna\",\"location\":\"+65 Sunny island \\ud83c\\udfd6\",\"description\":\"\\u02dc\\u201d*\\u00b0\\u2022.\\u02dc\\u201d*\\u00b0\\u2022 \\u2070\\u2076\\u2070\\u2074\\u00b9\\u2079 \\u2070\\u2077\\u2070\\u2074\\u00b9\\u2079 \\u2022\\u00b0*\\u201d\\u02dc.\\u2022\\u00b0*\\u201d\\u02dc Ly \\ud83c\\uddf9\\ud83c\\udded\\u2728Hijabis - Nuna to BTS -\\ud83e\\uddd5 \\ud83d\\udc9c\\u2764\\ufe0f\\ud83d\\udc9c\\u2764\\ufe0f \\u2605\\u2312\\u30fd( \\u0361\\u00b0 \\u03b5 \\u0361\\u00b0) - \\ud83c\\uddf8\\ud83c\\uddec fan account @BTS_twt #jk #JUNGKOOK\",\"url\":\"https:\\/\\/t.co\\/X8hdLeGbfF\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/X8hdLeGbfF\",\"expanded_url\":\"http:\\/\\/bts-magicshop0613.tumblr.com\\/\",\"display_url\":\"bts-magicshop0613.tumblr.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":272,\"friends_count\":633,\"listed_count\":5,\"created_at\":\"Sun Jan 10 07:31:31 +0000 2010\",\"favourites_count\":14309,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":22698,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme9\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme9\\/bg.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1147523788885483526\\/IXj_sj4f_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1147523788885483526\\/IXj_sj4f_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/103510559\\/1563392376\",\"profile_link_color\":\"E81C4F\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"F0F0F0\",\"profile_text_color\":\"483030\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":0,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"}', NULL, NULL, 'luna maya a fan of bts rm and jimin', 'luna maya'),
(341, 'bratasena', '@Satria_bagus69', 2147483647, '@DanangGutama Kalo aku mah buat gedein tt luna maya', 'positif', '17', '43', 'Purwokerto, Jawa Tengah', 'No', 0, 'Mon Jul 22 04:53:18 +0000 2019', 'Sun May 05 21:35:17 +0000 2019', '20190722061529', '{\"created_at\":\"Mon Jul 22 04:53:18 +0000 2019\",\"id\":1153166105088675840,\"id_str\":\"1153166105088675840\",\"text\":\"@DanangGutama Kalo aku mah buat gedein tt luna maya\",\"truncated\":false,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"DanangGutama\",\"name\":\".\",\"id\":1959712045,\"id_str\":\"1959712045\",\"indices\":[0,13]}],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\">Twitter for Android<\\/a>\",\"in_reply_to_status_id\":1152470548791754752,\"in_reply_to_status_id_str\":\"1152470548791754752\",\"in_reply_to_user_id\":1959712045,\"in_reply_to_user_id_str\":\"1959712045\",\"in_reply_to_screen_name\":\"DanangGutama\",\"user\":{\"id\":1125152008472649728,\"id_str\":\"1125152008472649728\",\"name\":\"bratasena\",\"screen_name\":\"Satria_bagus69\",\"location\":\"Purwokerto, Jawa Tengah\",\"description\":\"seni dalam atma\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":17,\"friends_count\":43,\"listed_count\":0,\"created_at\":\"Sun May 05 21:35:17 +0000 2019\",\"favourites_count\":607,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":65,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1147838602488905734\\/8G6sN878_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1147838602488905734\\/8G6sN878_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1125152008472649728\\/1557222405\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":0,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"}', NULL, NULL, 'dananggutama kalo aku mah buat gedein tt luna maya', 'luna maya'),
(276, 'PALESTINE', '@Shelby01395596', 2147483647, '@VDarto @Trikus2012 @angkaSEBELAS @detikcom @mohmahfudmd Lah yg ancam fahira, dan fadli zon, fahri Hamzah pun aman aman aza tuh,', 'positif', '325', '134', '', 'No', 1, 'Wed Jul 17 04:54:05 +0000 2019', 'Mon Jul 09 04:18:18 +0000 2018', '20190717050816', '{\"created_at\":\"Wed Jul 17 04:54:05 +0000 2019\",\"id\":1151354362389598209,\"id_str\":\"1151354362389598209\",\"text\":\"@VDarto @Trikus2012 @angkaSEBELAS @detikcom @mohmahfudmd Lah yg ancam fahira, dan fadli zon, fahri Hamzah pun aman aman aza tuh,\",\"truncated\":false,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"VDarto\",\"name\":\"van darto\",\"id\":545213556,\"id_str\":\"545213556\",\"indices\":[0,7]},{\"screen_name\":\"Trikus2012\",\"name\":\"Trikus\",\"id\":64653674,\"id_str\":\"64653674\",\"indices\":[8,19]},{\"screen_name\":\"angkaSEBELAS\",\"name\":\"<NAME>\",\"id\":187076392,\"id_str\":\"187076392\",\"indices\":[20,33]},{\"screen_name\":\"detikcom\",\"name\":\"detikcom\",\"id\":69183155,\"id_str\":\"69183155\",\"indices\":[34,43]},{\"screen_name\":\"mohmahfudmd\",\"name\":\"<NAME>\",\"id\":282006208,\"id_str\":\"282006208\",\"indices\":[44,56]}],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\">Twitter for Android<\\/a>\",\"in_reply_to_status_id\":1151332353186254849,\"in_reply_to_status_id_str\":\"1151332353186254849\",\"in_reply_to_user_id\":545213556,\"in_reply_to_user_id_str\":\"545213556\",\"in_reply_to_screen_name\":\"VDarto\",\"user\":{\"id\":1016174681370583040,\"id_str\":\"1016174681370583040\",\"name\":\"PALESTINE\",\"screen_name\":\"Shelby01395596\",\"location\":\"\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":325,\"friends_count\":134,\"listed_count\":0,\"created_at\":\"Mon Jul 09 04:18:18 +0000 2018\",\"favourites_count\":30984,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2275,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1144046138825170944\\/L3H_CctH_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1144046138825170944\\/L3H_CctH_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1016174681370583040\\/1531110153\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":0,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"}', NULL, NULL, 'vdarto trikus2012 angkasebelas detikcom mohmahfudmd lah yg ancam fahira dan fadli zon fahri hamzah pun aman aman aza tuh', 'fadli zon'),
(277, 'Faisal Aslim', '@UlarNegeri', 2147483647, 'RT @ansiboi: It seems that a lot of people haven\'t yet understood a very basic knowledge of modern civilization.\n\nPolitician gonna do what…', 'positif', '3861', '631', 'Indonesia', 'No', 10, 'Wed Jul 17 04:16:17 +0000 2019', 'Tue Jun 30 15:18:43 +0000 2009', '20190717050816', '{\"created_at\":\"Wed Jul 17 04:16:17 +0000 2019\",\"id\":1151344848009478144,\"id_str\":\"1151344848009478144\",\"text\":\"RT @ansiboi: It seems that a lot of people haven\'t yet understood a very basic knowledge of modern civilization.\\n\\nPolitician gonna do what\\u2026\",\"truncated\":false,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"ansiboi\",\"name\":\"100 years of Solitude\",\"id\":1093911083352346624,\"id_str\":\"1093911083352346624\",\"indices\":[3,11]}],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\">Twitter for iPhone<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":52421617,\"id_str\":\"52421617\",\"name\":\"<NAME>\",\"screen_name\":\"UlarNegeri\",\"location\":\"Indonesia\",\"description\":\"A history teacher, a researcher in radicalism, a psychological counselor, a Conservative. My personal opinions do not reflect any of my affiliated organizations\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3861,\"friends_count\":631,\"listed_count\":22,\"created_at\":\"Tue Jun 30 15:18:43 +0000 2009\",\"favourites_count\":582,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":10085,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"9AE4E8\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1105878276730310656\\/jj0gRKJJ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1105878276730310656\\/jj0gRKJJ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/52421617\\/1559096326\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"BDDCAD\",\"profile_sidebar_fill_color\":\"DDFFCC\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Tue Jul 16 03:43:44 +0000 2019\",\"id\":1150974270278758400,\"id_str\":\"1150974270278758400\",\"text\":\"It seems that a lot of people haven\'t yet understood a very basic knowledge of modern civilization.\\n\\nPolitician gon\\u2026 https:\\/\\/t.co\\/zeVH0zaeLI\",\"truncated\":true,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/zeVH0zaeLI\",\"expanded_url\":\"https:\\/\\/twitter.com\\/i\\/web\\/status\\/1150974270278758400\",\"display_url\":\"twitter.com\\/i\\/web\\/status\\/1\\u2026\",\"indices\":[117,140]}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\">Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1093911083352346624,\"id_str\":\"1093911083352346624\",\"name\":\"1<NAME>\",\"screen_name\":\"ansiboi\",\"location\":\"\",\"description\":\"Kunlun\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":667,\"friends_count\":70,\"listed_count\":2,\"created_at\":\"Fri Feb 08 16:35:00 +0000 2019\",\"favourites_count\":750,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":5388,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1149362012683558913\\/g70dLdQM_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1149362012683558913\\/g70dLdQM_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1093911083352346624\\/1555860755\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":3,\"favorite_count\":10,\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},\"is_quote_status\":false,\"retweet_count\":3,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"}', NULL, NULL, 'rt ansiboi it seems that a lot of people haven t yet understood a very basic knowledge of modern civilization politician gonna do what', 'fadli zon'),
(358, 'Eskopimikanget', '@Eskopimik1', 2147483647, 'RT @MarnoMbois: Pak @jokowi, kami juga menyarankan untuk adanya Menteri Penguapan, guna mengarahkan pelajar+mahasiswa yang ongap-angop wae…', 'netral', '98', '94', 'Surakarta, Jawa Tengah', 'No', 0, 'Thu Jul 25 10:23:26 +0000 2019', 'Fri Jan 11 10:30:58 +0000 2019', '20190725102406', '{\"created_at\":\"Thu Jul 25 10:23:26 +0000 2019\",\"id\":1154336346086842368,\"id_str\":\"1154336346086842368\",\"text\":\"RT @MarnoMbois: Pak @jokowi, kami juga menyarankan untuk adanya Menteri Penguapan, guna mengarahkan pelajar+mahasiswa yang ongap-angop wae\\u2026\",\"truncated\":false,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"MarnoMbois\",\"name\":\"<NAME>\",\"id\":3041601229,\"id_str\":\"3041601229\",\"indices\":[3,14]},{\"screen_name\":\"jokowi\",\"name\":\"<NAME>\",\"id\":366987179,\"id_str\":\"366987179\",\"indices\":[20,27]}],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\">Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1083672609806376961,\"id_str\":\"1083672609806376961\",\"name\":\"Eskopimikanget\",\"screen_name\":\"Eskopimik1\",\"location\":\"Surakarta, Jawa Tengah\",\"description\":\"bakul Es\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":98,\"friends_count\":94,\"listed_count\":0,\"created_at\":\"Fri Jan 11 10:30:58 +0000 2019\",\"favourites_count\":2173,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1246,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1140851210913583109\\/huy-uS4p_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1140851210913583109\\/huy-uS4p_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1083672609806376961\\/1557144541\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Thu Jul 25 09:40:09 +0000 2019\",\"id\":1154325455173849088,\"id_str\":\"1154325455173849088\",\"text\":\"Pak @jokowi, kami juga menyarankan untuk adanya Menteri Penguapan, guna mengarahkan pelajar+mahasiswa yang ongap-an\\u2026 https:\\/\\/t.co\\/asB7EV1kTk\",\"truncated\":true,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"jokowi\",\"name\":\"<NAME>\",\"id\":366987179,\"id_str\":\"366987179\",\"indices\":[4,11]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/asB7EV1kTk\",\"expanded_url\":\"https:\\/\\/twitter.com\\/i\\/web\\/status\\/1154325455173849088\",\"display_url\":\"twitter.com\\/i\\/web\\/status\\/1\\u2026\",\"indices\":[117,140]}]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\">Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":3041601229,\"id_str\":\"3041601229\",\"name\":\"<NAME>\",\"screen_name\":\"MarnoMbois\",\"location\":\"<EMAIL> \",\"description\":\"Piye perasaanmu nek dadi kates? \\/\\/ IG: marnologue_\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":95315,\"friends_count\":0,\"listed_count\":71,\"created_at\":\"Wed Feb 25 16:24:28 +0000 2015\",\"favourites_count\":4,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":11324,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1033618112875130880\\/rwuS9kAI_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1033618112875130880\\/rwuS9kAI_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3041601229\\/1558181205\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":79,\"favorite_count\":131,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"},\"is_quote_status\":false,\"retweet_count\":79,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"}', NULL, NULL, 'rt marnombois pak jokowi kami juga saran untuk ada menteri uap guna arah ajar mahasiswa yang ongap-angop wae', 'jokowi'),
(354, 'Name can be blank', '@raihanredityaa', 2147483647, 'RT @NUgarislucu: Politik itu dinamis. Jangan kaget kalau tiba-tiba:\nAnies dicalonkan NasDem\nPrabowo koalisi sama Jokowi\nFadli Zon jadi Ment…', 'negatif', '1', '100', '', 'No', 0, 'Thu Jul 25 10:23:45 +0000 2019', 'Tue Jul 02 07:33:35 +0000 2019', '20190725102406', '{\"created_at\":\"Thu Jul 25 10:23:45 +0000 2019\",\"id\":1154336428194590722,\"id_str\":\"1154336428194590722\",\"text\":\"RT @NUgarislucu: Politik itu dinamis. Jangan kaget kalau tiba-tiba:\\nAnies dicalonkan NasDem\\nPrabowo koalisi sama Jokowi\\nFadli Zon jadi Ment\\u2026\",\"truncated\":false,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"NUgarislucu\",\"name\":\"<NAME>\",\"id\":3069064298,\"id_str\":\"3069064298\",\"indices\":[3,15]}],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\">Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1145958682737311744,\"id_str\":\"1145958682737311744\",\"name\":\"Name can be blank\",\"screen_name\":\"raihanredityaa\",\"location\":\"\",\"description\":\"stop licking ma butt.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1,\"friends_count\":100,\"listed_count\":0,\"created_at\":\"Tue Jul 02 07:33:35 +0000 2019\",\"favourites_count\":46,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":71,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1149036668319481856\\/VOmt_OtX_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1149036668319481856\\/VOmt_OtX_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1145958682737311744\\/1562803533\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Thu Jul 25 08:34:32 +0000 2019\",\"id\":1154308943667027970,\"id_str\":\"1154308943667027970\",\"text\":\"Politik itu dinamis. Jangan kaget kalau tiba-tiba:\\nAnies dicalonkan NasDem\\nPrabowo koalisi sama Jokowi\\nFadli Zon ja\\u2026 https:\\/\\/t.co\\/zr6Of88HkG\",\"truncated\":true,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/zr6Of88HkG\",\"expanded_url\":\"https:\\/\\/twitter.com\\/i\\/web\\/status\\/1154308943667027970\",\"display_url\":\"twitter.com\\/i\\/web\\/status\\/1\\u2026\",\"indices\":[117,140]}]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\">Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":3069064298,\"id_str\":\"3069064298\",\"name\":\"<NAME>\",\"screen_name\":\"NUgarislucu\",\"location\":\"\",\"description\":\"Sampaikan Kebenaran Walaupun itu Lucu\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":310443,\"friends_count\":211,\"listed_count\":183,\"created_at\":\"Mon Mar 09 04:05:15 +0000 2015\",\"favourites_count\":2309,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":39429,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/732870423499571200\\/ZH9Si4lJ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/732870423499571200\\/ZH9Si4lJ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3069064298\\/1467695403\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":381,\"favorite_count\":1163,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"},\"is_quote_status\":false,\"retweet_count\":381,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"}', NULL, NULL, 'rt nugarislucu politik itu dinamis jangan kaget kalau tiba anies calon nasdem prabowo koalisi sama jokowi fadli zon jadi ment', 'jokowi');
INSERT INTO `crawl_data` (`id`, `name`, `screen_name`, `tweet_id`, `text`, `flag`, `followers_count`, `following_count`, `location`, `verified`, `different_year`, `created_post`, `created_account`, `token_search`, `result_crawl_json`, `class_hoax`, `class_hoax_info`, `tokenizing`, `keyword`) VALUES
(355, 'wianaodhe', '@zuwiana', 2147483647, 'RT @ronavioleta: Bong..Kata kalian jubah dan surban budaya Arab. \nKalo gitu, Arab cinta sama budaya nya dong. \nLah @Jokowi kok pakai Jas ?…', 'positif', '55', '79', 'kulisusu butur', 'No', 2, 'Thu Jul 25 10:23:43 +0000 2019', 'Thu Aug 11 12:13:07 +0000 2016', '20190725102406', '{\"created_at\":\"Thu Jul 25 10:23:43 +0000 2019\",\"id\":1154336419944390656,\"id_str\":\"1154336419944390656\",\"text\":\"RT @ronavioleta: Bong..Kata kalian jubah dan surban budaya Arab. \\nKalo gitu, Arab cinta sama budaya nya dong. \\nLah @Jokowi kok pakai Jas ?\\u2026\",\"truncated\":false,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"ronavioleta\",\"name\":\"Nana\",\"id\":485385284,\"id_str\":\"485385284\",\"indices\":[3,15]},{\"screen_name\":\"jokowi\",\"name\":\"<NAME>\",\"id\":366987179,\"id_str\":\"366987179\",\"indices\":[115,122]}],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\">Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":763709831702155265,\"id_str\":\"763709831702155265\",\"name\":\"wianaodhe\",\"screen_name\":\"zuwiana\",\"location\":\"kulisusu butur\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":55,\"friends_count\":79,\"listed_count\":0,\"created_at\":\"Thu Aug 11 12:13:07 +0000 2016\",\"favourites_count\":1277,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":591,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/963188847776419840\\/6TQya6_u_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/963188847776419840\\/6TQya6_u_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/763709831702155265\\/1538262611\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Thu Jul 25 08:33:44 +0000 2019\",\"id\":1154308741577101313,\"id_str\":\"1154308741577101313\",\"text\":\"Bong..Kata kalian jubah dan surban budaya Arab. \\nKalo gitu, Arab cinta sama budaya nya dong. \\nLah @Jokowi kok pakai\\u2026 https:\\/\\/t.co\\/NViiQoOUoR\",\"truncated\":true,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"jokowi\",\"name\":\"<NAME>\",\"id\":366987179,\"id_str\":\"366987179\",\"indices\":[98,105]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/NViiQoOUoR\",\"expanded_url\":\"https:\\/\\/twitter.com\\/i\\/web\\/status\\/1154308741577101313\",\"display_url\":\"twitter.com\\/i\\/web\\/status\\/1\\u2026\",\"indices\":[117,140]}]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"https:\\/\\/mobile.twitter.com\\\" rel=\\\"nofollow\\\">Twitter Web App<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":485385284,\"id_str\":\"485385284\",\"name\":\"Nana\",\"screen_name\":\"ronavioleta\",\"location\":\"\",\"description\":\"#IndonesiaTanpaJIL #SyiahBukanIslam\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":55428,\"friends_count\":901,\"listed_count\":51,\"created_at\":\"Tue Feb 07 04:28:59 +0000 2012\",\"favourites_count\":937,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":199292,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FF6699\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme11\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme11\\/bg.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1124289262604541953\\/IbkXsWDr_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1124289262604541953\\/IbkXsWDr_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/485385284\\/1465609964\",\"profile_link_color\":\"B40B43\",\"profile_sidebar_border_color\":\"CC3366\",\"profile_sidebar_fill_color\":\"E5507E\",\"profile_text_color\":\"362720\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":true,\"quoted_status_id\":1154002406423687168,\"quoted_status_id_str\":\"1154002406423687168\",\"quoted_status\":{\"created_at\":\"Wed Jul 24 12:16:28 +0000 2019\",\"id\":1154002406423687168,\"id_str\":\"1154002406423687168\",\"text\":\"Sembilan MoU kerja sama Indonesia dan Uni Emirat Arab di bidang ekonomi dan keumatan saya bahas bersama Putra Mahko\\u2026 https:\\/\\/t.co\\/fgqXcXAQeq\",\"truncated\":true,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/fgqXcXAQeq\",\"expanded_url\":\"https:\\/\\/twitter.com\\/i\\/web\\/status\\/1154002406423687168\",\"display_url\":\"twitter.com\\/i\\/web\\/status\\/1\\u2026\",\"indices\":[117,140]}]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\">Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":366987179,\"id_str\":\"366987179\",\"name\":\"<NAME>\",\"screen_name\":\"jokowi\",\"location\":\"Jakarta\",\"description\":\"Akun Twitter resmi Presiden Republik Indonesia Joko Widodo \\ud83c\\uddee\\ud83c\\udde9. \\n#MenujuIndonesiaMaju\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":11789230,\"friends_count\":60,\"listed_count\":3968,\"created_at\":\"Sat Sep 03 05:21:21 +0000 2011\",\"favourites_count\":0,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1898,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"5B5C5A\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme14\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme14\\/bg.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/953822043211886592\\/IUEJdPg9_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/953822043211886592\\/IUEJdPg9_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/366987179\\/1540015919\",\"profile_link_color\":\"009999\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"99CC33\",\"profile_text_color\":\"3E4415\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"regular\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":1035,\"favorite_count\":7362,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"in\"},\"retweet_count\":38,\"favorite_count\":124,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"in\"},\"is_quote_status\":true,\"quoted_status_id\":1154002406423687168,\"quoted_status_id_str\":\"1154002406423687168\",\"retweet_count\":38,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"}', NULL, NULL, 'rt ronavioleta bong kata kalian jubah dan surban budaya arab kalo gitu arab cinta sama budaya nya dong lah jokowi kok pakai jas', 'jokowi'),
(348, '<NAME>', '@kaiakerber', 2147483647, '@meontaeil @X1_YHN Kok lo bawa bawa istrinya raffi ahmad sih?', 'positif', '633', '499', '#BROKIES & St. Psychedlia. ', 'No', 2, 'Mon Jul 22 17:32:23 +0000 2019', 'Tue Jan 03 23:11:21 +0000 2017', '20190722073626', '{\"created_at\":\"Mon Jul 22 17:32:23 +0000 2019\",\"id\":1153357134660169728,\"id_str\":\"1153357134660169728\",\"text\":\"@meontaeil @X1_YHN Kok lo bawa bawa istrinya raffi ahmad sih?\",\"truncated\":false,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"meontaeil\",\"name\":\"TAEIL\",\"id\":2978278748,\"id_str\":\"2978278748\",\"indices\":[0,10]},{\"screen_name\":\"X1_YHN\",\"name\":\"\\uae40\\uc694\\ud55c.\",\"id\":966558173317316609,\"id_str\":\"966558173317316609\",\"indices\":[11,18]}],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\">Twitter for Android<\\/a>\",\"in_reply_to_status_id\":1153356963545137153,\"in_reply_to_status_id_str\":\"1153356963545137153\",\"in_reply_to_user_id\":2978278748,\"in_reply_to_user_id_str\":\"2978278748\",\"in_reply_to_screen_name\":\"meontaeil\",\"user\":{\"id\":816421721955667968,\"id_str\":\"816421721955667968\",\"name\":\"<NAME>\",\"screen_name\":\"kaiakerber\",\"location\":\"#BROKIES & St. Psychedlia. \",\"description\":\"\\u211d\\u2119\\ufe32 Multitasking as a daughter, as a seventeen year old American model under the DNA Models and also, as a bakwan-giver for Matteo only. Antiquettes Alumnus.\",\"url\":\"https:\\/\\/t.co\\/zY39rZuMO8\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/zY39rZuMO8\",\"expanded_url\":\"http:\\/\\/Curiouscat.me\\/jalanraia\",\"display_url\":\"Curiouscat.me\\/jalanraia\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":633,\"friends_count\":499,\"listed_count\":12,\"created_at\":\"Tue Jan 03 23:11:21 +0000 2017\",\"favourites_count\":1528,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":46828,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1152886710352531456\\/0UxQW-2n_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1152886710352531456\\/0UxQW-2n_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/816421721955667968\\/1563479237\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":0,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"}', NULL, NULL, 'meontaeil x1 yhn kok lo bawa bawa istri raffi ahmad sih', 'raffi ahmad'),
(353, 'E.', '@doumandu', 2147483647, 'RT @kaiakerber: @yourjinhyuk Kok lo nyalahin istrinya raffi ahmad sih', 'positif', '489', '472', 'nineteèns is #brokies.', 'No', 0, 'Mon Jul 22 15:19:16 +0000 2019', 'Mon Apr 22 05:23:49 +0000 2019', '20190722073626', '{\"created_at\":\"Mon Jul 22 15:19:16 +0000 2019\",\"id\":1153323632375898112,\"id_str\":\"1153323632375898112\",\"text\":\"RT @kaiakerber: @yourjinhyuk Kok lo nyalahin istrinya raffi ahmad sih\",\"truncated\":false,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"kaiakerber\",\"name\":\"<NAME>\",\"id\":816421721955667968,\"id_str\":\"816421721955667968\",\"indices\":[3,14]},{\"screen_name\":\"yourjinhyuk\",\"name\":\"Jinhyuk \\u2600\\ufe0f\",\"id\":1136272771443412992,\"id_str\":\"1136272771443412992\",\"indices\":[16,28]}],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\">Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1120196486015270912,\"id_str\":\"1120196486015270912\",\"name\":\"E.\",\"screen_name\":\"doumandu\",\"location\":\"ninete\\u00e8ns is #brokies.\",\"description\":\"\\ud835\\udc2e\\ud835\\udc27\\ud835\\udc2b\\ud835\\udc1e\\ud835\\udc1a\\ud835\\udc25. \\u2571 she owns the first place, the stage, the spotlight, and Radeon.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":489,\"friends_count\":472,\"listed_count\":4,\"created_at\":\"Mon Apr 22 05:23:49 +0000 2019\",\"favourites_count\":781,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":17496,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1153295328436580354\\/hXrsR5Hg_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1153295328436580354\\/hXrsR5Hg_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1120196486015270912\\/1563802006\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Mon Jul 22 15:18:25 +0000 2019\",\"id\":1153323419020083200,\"id_str\":\"1153323419020083200\",\"text\":\"@yourjinhyuk Kok lo nyalahin istrinya raffi ahmad sih\",\"truncated\":false,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"yourjinhyuk\",\"name\":\"Jinhyuk \\u2600\\ufe0f\",\"id\":1136272771443412992,\"id_str\":\"1136272771443412992\",\"indices\":[0,12]}],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\">Twitter for Android<\\/a>\",\"in_reply_to_status_id\":1153323260051775488,\"in_reply_to_status_id_str\":\"1153323260051775488\",\"in_reply_to_user_id\":1136272771443412992,\"in_reply_to_user_id_str\":\"1136272771443412992\",\"in_reply_to_screen_name\":\"yourjinhyuk\",\"user\":{\"id\":816421721955667968,\"id_str\":\"816421721955667968\",\"name\":\"<NAME>\",\"screen_name\":\"kaiakerber\",\"location\":\"#BROKIES & St. Psychedlia. \",\"description\":\"\\u211d\\u2119\\ufe32 Multitasking as a daughter, as a seventeen year old American model under the DNA Models and also, as a bakwan-giver for Matteo only. Antiquettes Alumnus.\",\"url\":\"https:\\/\\/t.co\\/zY39rZuMO8\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/zY39rZuMO8\",\"expanded_url\":\"http:\\/\\/Curiouscat.me\\/jalanraia\",\"display_url\":\"Curiouscat.me\\/jalanraia\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":633,\"friends_count\":499,\"listed_count\":12,\"created_at\":\"Tue Jan 03 23:11:21 +0000 2017\",\"favourites_count\":1528,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":46828,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1152886710352531456\\/0UxQW-2n_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1152886710352531456\\/0UxQW-2n_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/816421721955667968\\/1563479237\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":4,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"},\"is_quote_status\":false,\"retweet_count\":4,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"}', NULL, NULL, 'rt kaiakerber yourjinhyuk kok lo nyalahin istri raffi ahmad sih', 'raffi ahmad'),
(352, '<NAME>.', '@ikangminah', 2147483647, 'RT @kaiakerber: @yourjinhyuk Kok lo nyalahin istrinya raffi ahmad sih', 'positif', '2129', '460', 'sinners ????', 'No', 6, 'Mon Jul 22 15:21:57 +0000 2019', 'Mon Jun 17 07:06:30 +0000 2013', '20190722073626', '{\"created_at\":\"Mon Jul 22 15:21:57 +0000 2019\",\"id\":1153324306354491394,\"id_str\":\"1153324306354491394\",\"text\":\"RT @kaiakerber: @yourjinhyuk Kok lo nyalahin istrinya raffi ahmad sih\",\"truncated\":false,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"kaiakerber\",\"name\":\"<NAME>\",\"id\":816421721955667968,\"id_str\":\"816421721955667968\",\"indices\":[3,14]},{\"screen_name\":\"yourjinhyuk\",\"name\":\"Jinhyuk \\u2600\\ufe0f\",\"id\":1136272771443412992,\"id_str\":\"1136272771443412992\",\"indices\":[16,28]}],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\">Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1524164281,\"id_str\":\"1524164281\",\"name\":\"<NAME>.\",\"screen_name\":\"ikangminah\",\"location\":\"sinners \\ud83d\\udc98\",\"description\":\"Roleplayer, 1997\\ub144. \\u2571 Her gorgeousness is surely beyond the beauty of the goddess, #\\u20df\\uac15\\ubbfc\\uc544 is the name. Eternally yours, \\ud835\\udc75\\ud835\\udc82\\ud835\\udc8e \\ud835\\udc80\\ud835\\udc90\\ud835\\udc90\\ud835\\udc8f\\ud835\\udc94\\ud835\\udc96.\",\"url\":\"https:\\/\\/t.co\\/syOa4jxmSy\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/syOa4jxmSy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/minah320\",\"display_url\":\"twitter.com\\/minah320\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2129,\"friends_count\":460,\"listed_count\":15,\"created_at\":\"Mon Jun 17 07:06:30 +0000 2013\",\"favourites_count\":1631,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":78040,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme14\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme14\\/bg.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1153107560817291264\\/XTAlv1Yn_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1153107560817291264\\/XTAlv1Yn_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1524164281\\/1563757240\",\"profile_link_color\":\"F58EA8\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"EFEFEF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Mon Jul 22 15:18:25 +0000 2019\",\"id\":1153323419020083200,\"id_str\":\"1153323419020083200\",\"text\":\"@yourjinhyuk Kok lo nyalahin istrinya raffi ahmad sih\",\"truncated\":false,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"yourjinhyuk\",\"name\":\"Jinhyuk \\u2600\\ufe0f\",\"id\":1136272771443412992,\"id_str\":\"1136272771443412992\",\"indices\":[0,12]}],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\">Twitter for Android<\\/a>\",\"in_reply_to_status_id\":1153323260051775488,\"in_reply_to_status_id_str\":\"1153323260051775488\",\"in_reply_to_user_id\":1136272771443412992,\"in_reply_to_user_id_str\":\"1136272771443412992\",\"in_reply_to_screen_name\":\"yourjinhyuk\",\"user\":{\"id\":816421721955667968,\"id_str\":\"816421721955667968\",\"name\":\"<NAME>\",\"screen_name\":\"kaiakerber\",\"location\":\"#BROKIES & St. Psychedlia. \",\"description\":\"\\u211d\\u2119\\ufe32 Multitasking as a daughter, as a seventeen year old American model under the DNA Models and also, as a bakwan-giver for Matteo only. Antiquettes Alumnus.\",\"url\":\"https:\\/\\/t.co\\/zY39rZuMO8\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/zY39rZuMO8\",\"expanded_url\":\"http:\\/\\/Curiouscat.me\\/jalanraia\",\"display_url\":\"Curiouscat.me\\/jalanraia\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":633,\"friends_count\":499,\"listed_count\":12,\"created_at\":\"Tue Jan 03 23:11:21 +0000 2017\",\"favourites_count\":1528,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":46828,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1152886710352531456\\/0UxQW-2n_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1152886710352531456\\/0UxQW-2n_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/816421721955667968\\/1563479237\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":4,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"},\"is_quote_status\":false,\"retweet_count\":4,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"}', NULL, NULL, 'rt kaiakerber yourjinhyuk kok lo nyalahin istri raffi ahmad sih', 'raffi ahmad'),
(317, '•RH•', '@rizalhasdianto', 2147483647, '@riayayayaa atta halilintar dan ketamadunan nusantara', 'positif', '316', '357', 'jangan dicari di', 'No', 9, 'Wed Jul 17 06:02:22 +0000 2019', 'Mon Mar 29 13:38:46 +0000 2010', '20190717060417', '{\"created_at\":\"Wed Jul 17 06:02:22 +0000 2019\",\"id\":1151371546415341568,\"id_str\":\"1151371546415341568\",\"text\":\"@riayayayaa atta halilintar dan ketamadunan nusantara\",\"truncated\":false,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"riayayayaa\",\"name\":\"<NAME>\",\"id\":271915600,\"id_str\":\"271915600\",\"indices\":[0,11]}],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\">Twitter for iPhone<\\/a>\",\"in_reply_to_status_id\":1151371151525859328,\"in_reply_to_status_id_str\":\"1151371151525859328\",\"in_reply_to_user_id\":271915600,\"in_reply_to_user_id_str\":\"271915600\",\"in_reply_to_screen_name\":\"riayayayaa\",\"user\":{\"id\":127522077,\"id_str\":\"127522077\",\"name\":\"\\u2022RH\\u2022\",\"screen_name\":\"rizalhasdianto\",\"location\":\"jangan dicari di\",\"description\":\"jika aku tidak bisa menemukan mu, mungkin sudah takdir ku untuk kau temukan.\",\"url\":\"https:\\/\\/t.co\\/j7ahufvjfZ\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/j7ahufvjfZ\",\"expanded_url\":\"https:\\/\\/friendster.com\\/rizalhasdianto\",\"display_url\":\"friendster.com\\/rizalhasdianto\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":316,\"friends_count\":357,\"listed_count\":0,\"created_at\":\"Mon Mar 29 13:38:46 +0000 2010\",\"favourites_count\":3,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":8189,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"9AE4E8\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1147027244499402752\\/8WLwyyNr_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1147027244499402752\\/8WLwyyNr_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/127522077\\/1562268663\",\"profile_link_color\":\"000405\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"0E0F0E\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":0,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"}', NULL, NULL, 'riayayayaa atta halilintar dan tamadun nusantara', 'atta halilintar'),
(318, 'Effy.Stonem', '@youreffystonem', 2147483647, '@morningbreakie @MizMadnezz atta halilintar is dat u?', 'positif', '2686', '138', 'your fantasy', 'No', 0, 'Wed Jul 17 05:18:39 +0000 2019', 'Wed Jun 19 14:20:40 +0000 2019', '20190717060417', '{\"created_at\":\"Wed Jul 17 05:18:39 +0000 2019\",\"id\":1151360541622824960,\"id_str\":\"1151360541622824960\",\"text\":\"@morningbreakie @MizMadnezz atta halilintar is dat u?\",\"truncated\":false,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"morningbreakie\",\"name\":\"Billy\",\"id\":1060590774595846151,\"id_str\":\"1060590774595846151\",\"indices\":[0,15]},{\"screen_name\":\"MizMadnezz\",\"name\":\"\\u05e0\\u05e1\\u05d9\\u05db\\u05d4\",\"id\":22199147,\"id_str\":\"22199147\",\"indices\":[16,27]}],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\">Twitter for iPhone<\\/a>\",\"in_reply_to_status_id\":1151359348624580609,\"in_reply_to_status_id_str\":\"1151359348624580609\",\"in_reply_to_user_id\":1060590774595846151,\"in_reply_to_user_id_str\":\"1060590774595846151\",\"in_reply_to_screen_name\":\"morningbreakie\",\"user\":{\"id\":1141350086259036160,\"id_str\":\"1141350086259036160\",\"name\":\"Effy.Stonem\",\"screen_name\":\"youreffystonem\",\"location\":\"your fantasy\",\"description\":\"hi... its me hiding from the spotlight\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2686,\"friends_count\":138,\"listed_count\":1,\"created_at\":\"Wed Jun 19 14:20:40 +0000 2019\",\"favourites_count\":92,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":878,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1147724106701234176\\/b_kRi-qO_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1147724106701234176\\/b_kRi-qO_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1141350086259036160\\/1560958938\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":0,\"favorite_count\":1,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"}', NULL, NULL, 'morningbreakie mizmadnezz atta halilintar is dat u', 'atta halilintar'),
(319, '<NAME>', '@johanhimself', 2147483647, '@retnosionter Uzt. Atta Halilintar.', 'positif', '346', '734', '', 'No', 10, 'Wed Jul 17 05:08:25 +0000 2019', 'Sun Feb 01 07:58:24 +0000 2009', '20190717060417', '{\"created_at\":\"Wed Jul 17 05:08:25 +0000 2019\",\"id\":1151357967209385984,\"id_str\":\"1151357967209385984\",\"text\":\"@retnosionter Uzt. Atta Halilintar.\",\"truncated\":false,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"retnosionter\",\"name\":\"itutsaydiwonter\",\"id\":54176104,\"id_str\":\"54176104\",\"indices\":[0,13]}],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"lv\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\">Twitter for Android<\\/a>\",\"in_reply_to_status_id\":1151350181893246977,\"in_reply_to_status_id_str\":\"1151350181893246977\",\"in_reply_to_user_id\":54176104,\"in_reply_to_user_id_str\":\"54176104\",\"in_reply_to_screen_name\":\"retnosionter\",\"user\":{\"id\":19850713,\"id_str\":\"19850713\",\"name\":\"jo<NAME>\",\"screen_name\":\"johanhimself\",\"location\":\"\",\"description\":\"rants, shitposts, retweets, and whatnots. keminggris.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":346,\"friends_count\":734,\"listed_count\":8,\"created_at\":\"Sun Feb 01 07:58:24 +0000 2009\",\"favourites_count\":958,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":41542,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"040404\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme14\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme14\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1216329319\\/twitter_new_normal.gif\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1216329319\\/twitter_new_normal.gif\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/19850713\\/1354280160\",\"profile_link_color\":\"080D0C\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"EFEFEF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":{\"id\":\"2d440aaf3cf96070\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/2d440aaf3cf96070.json\",\"place_type\":\"city\",\"name\":\"Kesambi\",\"full_name\":\"Kesambi, Indonesia\",\"country_code\":\"ID\",\"country\":\"Indonesia\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[108.526988,-6.762716],[108.568201,-6.762716],[108.568201,-6.725496],[108.526988,-6.725496]]]},\"attributes\":[]},\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":0,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"lang\":\"lv\"}', NULL, NULL, 'retnosionter uzt atta halilintar', 'atta halilintar'),
(370, 'Rompi_kuning', '@neelee_pure', 2147483647, 'RT @amnestyindo: [BREAKING] The House has finished its review of President Jokowi’s amnesty proposal for Nuril, which was submitted to parl…', 'positif', '55', '59', '', 'No', 5, 'Thu Jul 25 10:22:35 +0000 2019', 'Thu Apr 24 07:28:14 +0000 2014', '20190725102406', '{\"created_at\":\"Thu Jul 25 10:22:35 +0000 2019\",\"id\":1154336132068364288,\"id_str\":\"1154336132068364288\",\"text\":\"RT @amnestyindo: [BREAKING] The House has finished its review of President Jokowi\\u2019s amnesty proposal for Nuril, which was submitted to parl\\u2026\",\"truncated\":false,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"amnestyindo\",\"name\":\"<NAME>\",\"id\":842678935817142272,\"id_str\":\"842678935817142272\",\"indices\":[3,15]}],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\">Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":2460934398,\"id_str\":\"2460934398\",\"name\":\"Rompi_kuning\",\"screen_name\":\"neelee_pure\",\"location\":\"\",\"description\":\"out of the kotak _just an ordinary\\u2026\\u2122\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":55,\"friends_count\":59,\"listed_count\":0,\"created_at\":\"Thu Apr 24 07:28:14 +0000 2014\",\"favourites_count\":7462,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":5868,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1082898453657579521\\/gknNnpgt_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1082898453657579521\\/gknNnpgt_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Thu Jul 25 07:06:55 +0000 2019\",\"id\":1154286891363000320,\"id_str\":\"1154286891363000320\",\"text\":\"[BREAKING] The House has finished its review of President Jokowi\\u2019s amnesty proposal for Nuril, which was submitted\\u2026 https:\\/\\/t.co\\/HETSwdqD8b\",\"truncated\":true,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/HETSwdqD8b\",\"expanded_url\":\"https:\\/\\/twitter.com\\/i\\/web\\/status\\/1154286891363000320\",\"display_url\":\"twitter.com\\/i\\/web\\/status\\/1\\u2026\",\"indices\":[116,139]}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"https:\\/\\/mobile.twitter.com\\\" rel=\\\"nofollow\\\">Twitter Web App<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":842678935817142272,\"id_str\":\"842678935817142272\",\"name\":\"<NAME>\",\"screen_name\":\"amnestyindo\",\"location\":\"Jakarta, Indonesia\",\"description\":\"Speaking truth to power, fighting bad guys through a conspiracy of hope. #JoinForces\",\"url\":\"https:\\/\\/t.co\\/y9Azytgw2Z\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/y9Azytgw2Z\",\"expanded_url\":\"http:\\/\\/bit.ly\\/Komitmen9AgendaHAM\",\"display_url\":\"bit.ly\\/Komitmen9Agend\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":12721,\"friends_count\":227,\"listed_count\":25,\"created_at\":\"Fri Mar 17 10:08:09 +0000 2017\",\"favourites_count\":1092,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":4340,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/842680133039210496\\/EcsQkWQi_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/842680133039210496\\/EcsQkWQi_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/842678935817142272\\/1563179927\",\"profile_link_color\":\"FAB81E\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":5,\"favorite_count\":11,\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},\"is_quote_status\":false,\"retweet_count\":5,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"}', NULL, NULL, 'rt amnestyindo breaking the house has finished its review of president jokowi s amnesty proposal for nuril which was submitted to parl', 'jokowi'),
(371, 'E', '@erinahening', 2147483647, 'RT @MarnoMbois: Pak @jokowi, kami juga menyarankan untuk adanya Menteri Penguapan, guna mengarahkan pelajar+mahasiswa yang ongap-angop wae…', 'netral', '713', '271', '', 'No', 6, 'Thu Jul 25 10:22:31 +0000 2019', 'Tue Nov 13 12:58:05 +0000 2012', '20190725102406', '{\"created_at\":\"Thu Jul 25 10:22:31 +0000 2019\",\"id\":1154336117467910144,\"id_str\":\"1154336117467910144\",\"text\":\"RT @MarnoMbois: Pak @jokowi, kami juga menyarankan untuk adanya Menteri Penguapan, guna mengarahkan pelajar+mahasiswa yang ongap-angop wae\\u2026\",\"truncated\":false,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"MarnoMbois\",\"name\":\"<NAME>\",\"id\":3041601229,\"id_str\":\"3041601229\",\"indices\":[3,14]},{\"screen_name\":\"jokowi\",\"name\":\"<NAME>\",\"id\":366987179,\"id_str\":\"366987179\",\"indices\":[20,27]}],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\">Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":945740682,\"id_str\":\"945740682\",\"name\":\"E\",\"screen_name\":\"erinahening\",\"location\":\"\",\"description\":\"Leo\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":713,\"friends_count\":271,\"listed_count\":0,\"created_at\":\"Tue Nov 13 12:58:05 +0000 2012\",\"favourites_count\":3544,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":46760,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FF6E5B\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1136546956870791168\\/AZvGpPLM_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1136546956870791168\\/AZvGpPLM_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/945740682\\/1560810673\",\"profile_link_color\":\"FDA37E\",\"profile_sidebar_border_color\":\"659D90\",\"profile_sidebar_fill_color\":\"9DBC9D\",\"profile_text_color\":\"EEDAA8\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Thu Jul 25 09:40:09 +0000 2019\",\"id\":1154325455173849088,\"id_str\":\"1154325455173849088\",\"text\":\"Pak @jokowi, kami juga menyarankan untuk adanya Menteri Penguapan, guna mengarahkan pelajar+mahasiswa yang ongap-an\\u2026 https:\\/\\/t.co\\/asB7EV1kTk\",\"truncated\":true,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"jokowi\",\"name\":\"<NAME>\",\"id\":366987179,\"id_str\":\"366987179\",\"indices\":[4,11]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/asB7EV1kTk\",\"expanded_url\":\"https:\\/\\/twitter.com\\/i\\/web\\/status\\/1154325455173849088\",\"display_url\":\"twitter.com\\/i\\/web\\/status\\/1\\u2026\",\"indices\":[117,140]}]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\">Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":3041601229,\"id_str\":\"3041601229\",\"name\":\"<NAME>\",\"screen_name\":\"MarnoMbois\",\"location\":\"<EMAIL> \",\"description\":\"Piye perasaanmu nek dadi kates? \\/\\/ IG: marnologue_\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":95315,\"friends_count\":0,\"listed_count\":71,\"created_at\":\"Wed Feb 25 16:24:28 +0000 2015\",\"favourites_count\":4,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":11324,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1033618112875130880\\/rwuS9kAI_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1033618112875130880\\/rwuS9kAI_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3041601229\\/1558181205\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":79,\"favorite_count\":131,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"},\"is_quote_status\":false,\"retweet_count\":79,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"}', NULL, NULL, 'rt marnombois pak jokowi kami juga saran untuk ada menteri uap guna arah ajar mahasiswa yang ongap-angop wae', 'jokowi');
INSERT INTO `crawl_data` (`id`, `name`, `screen_name`, `tweet_id`, `text`, `flag`, `followers_count`, `following_count`, `location`, `verified`, `different_year`, `created_post`, `created_account`, `token_search`, `result_crawl_json`, `class_hoax`, `class_hoax_info`, `tokenizing`, `keyword`) VALUES
(372, '#KamiOposisi', '@AbdulHajad2', 2147483647, 'RT @kangnawan: Belum lagi reda gejolak kolam karena menyaksikan pertemuan Surya Paloh dan <NAME>, kini kolam bergolak makin dahsyat…', 'netral', '127', '347', '', 'No', 0, 'Thu Jul 25 10:22:29 +0000 2019', 'Fri Dec 28 15:57:44 +0000 2018', '20190725102406', '{\"created_at\":\"Thu Jul 25 10:22:29 +0000 2019\",\"id\":1154336109251313664,\"id_str\":\"1154336109251313664\",\"text\":\"RT @kangnawan: Belum lagi reda gejolak kolam karena menyaksikan pertemuan <NAME> dan <NAME>, kini kolam bergolak makin dahsyat\\u2026\",\"truncated\":false,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"kangnawan\",\"name\":\"<NAME>\",\"id\":777141890277777409,\"id_str\":\"777141890277777409\",\"indices\":[3,13]}],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\">Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1078681412838907905,\"id_str\":\"1078681412838907905\",\"name\":\"#KamiOposisi\",\"screen_name\":\"AbdulHajad2\",\"location\":\"\",\"description\":\"bukan akun robot\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":127,\"friends_count\":347,\"listed_count\":0,\"created_at\":\"Fri Dec 28 15:57:44 +0000 2018\",\"favourites_count\":4595,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":10081,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1147097012594102273\\/Zu3bTmIn_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1147097012594102273\\/Zu3bTmIn_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1078681412838907905\\/1553336142\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Wed Jul 24 13:59:53 +0000 2019\",\"id\":1154028431094366209,\"id_str\":\"1154028431094366209\",\"text\":\"Belum lagi reda gejolak kolam karena menyaksikan pertemuan <NAME> dan <NAME>, kini kolam bergolak maki\\u2026 https:\\/\\/t.co\\/5dXDcPrSue\",\"truncated\":true,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/5dXDcPrSue\",\"expanded_url\":\"https:\\/\\/twitter.com\\/i\\/web\\/status\\/1154028431094366209\",\"display_url\":\"twitter.com\\/i\\/web\\/status\\/1\\u2026\",\"indices\":[117,140]}]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\">Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":777141890277777409,\"id_str\":\"777141890277777409\",\"name\":\"<NAME>\",\"screen_name\":\"kangnawan\",\"location\":\"Indonesia\",\"description\":\"| Berusaha memahami \'pikiran\' Allah |\",\"url\":\"https:\\/\\/t.co\\/MCone2lmKJ\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/MCone2lmKJ\",\"expanded_url\":\"http:\\/\\/www.satumadrasah.com\",\"display_url\":\"satumadrasah.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":14915,\"friends_count\":916,\"listed_count\":3,\"created_at\":\"Sat Sep 17 13:47:20 +0000 2016\",\"favourites_count\":24618,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":16703,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1069153713963511809\\/j2v5vgGR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1069153713963511809\\/j2v5vgGR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/777141890277777409\\/1555278092\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":242,\"favorite_count\":648,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"in\"},\"is_quote_status\":false,\"retweet_count\":242,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"}', NULL, NULL, 'rt kangnawan belum lagi reda gejolak kolam karena saksi temu surya paloh dan anies baswedan kini kolam golak makin dahsyat', 'jokowi'),
(373, 'DOMINIXUS~???', '@dominixus', 2147483647, 'RT @kompascom: Presiden Joko Widodo mengutus staf kepresidenan untuk memberikan bantuan kepada Dewi Febriyanti (13), siswi SMP yang berjual…', 'positif', '671', '319', 'B0g0r Indonesia ', 'No', 5, 'Thu Jul 25 10:22:23 +0000 2019', 'Sat Oct 05 01:02:09 +0000 2013', '20190725102406', '{\"created_at\":\"Thu Jul 25 10:22:23 +0000 2019\",\"id\":1154336082579689472,\"id_str\":\"1154336082579689472\",\"text\":\"RT @kompascom: Presiden Joko Widodo mengutus staf kepresidenan untuk memberikan bantuan kepada Dewi Febriyanti (13), siswi SMP yang berjual\\u2026\",\"truncated\":false,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"kompascom\",\"name\":\"Kompas.com\",\"id\":23343960,\"id_str\":\"23343960\",\"indices\":[3,13]}],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"https:\\/\\/mobile.twitter.com\\\" rel=\\\"nofollow\\\">Twitter Web App<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1935982946,\"id_str\":\"1935982946\",\"name\":\"DOMINIXUS~\\u9976\\u4f1f\\u6f84\",\"screen_name\":\"dominixus\",\"location\":\"B0g0r Indonesia \",\"description\":\"\\u5982\\u679c\\u611b\\u60c5\\u9019\\u6a23\\u6182\\u50b7\\n\\u70ba\\u4f55\\u4e0d\\u8b93\\u6211\\u5206\\u4eab\\n\\u65e5\\u591c\\u90fd\\u554f\\u4f60\\u4e5f\\u4e0d\\u56de\\u7b54\\n\\u600e\\u9ebc\\u4f60\\u6703\\u8b8a\\u9019\\u6a23\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":671,\"friends_count\":319,\"listed_count\":2,\"created_at\":\"Sat Oct 05 01:02:09 +0000 2013\",\"favourites_count\":24946,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":23957,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1153615820313862144\\/fvIs9QRc_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1153615820313862144\\/fvIs9QRc_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1935982946\\/1493549806\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Thu Jul 25 09:53:19 +0000 2019\",\"id\":1154328766887260162,\"id_str\":\"1154328766887260162\",\"text\":\"Presiden Joko Widodo mengutus staf kepresidenan untuk memberikan bantuan kepada Dewi Febriyanti (13), siswi SMP yan\\u2026 https:\\/\\/t.co\\/6aQev0JYwg\",\"truncated\":true,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/6aQev0JYwg\",\"expanded_url\":\"https:\\/\\/twitter.com\\/i\\/web\\/status\\/1154328766887260162\",\"display_url\":\"twitter.com\\/i\\/web\\/status\\/1\\u2026\",\"indices\":[117,140]}]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"https:\\/\\/mobile.twitter.com\\\" rel=\\\"nofollow\\\">Twitter Web App<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":23343960,\"id_str\":\"23343960\",\"name\":\"Kompas.com\",\"screen_name\":\"kompascom\",\"location\":\"Indonesia\",\"description\":\"Ketika Perbincangan Dimulai | <EMAIL> | Jernih Melihat Dunia\",\"url\":\"https:\\/\\/t.co\\/69oEiSoI5p\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/69oEiSoI5p\",\"expanded_url\":\"http:\\/\\/www.kompas.com\",\"display_url\":\"kompas.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":7230365,\"friends_count\":25,\"listed_count\":10584,\"created_at\":\"Sun Mar 08 19:32:04 +0000 2009\",\"favourites_count\":105,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1310136,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"1B3567\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/924834031509712896\\/SjhqOzgA_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/924834031509712896\\/SjhqOzgA_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/23343960\\/1562750149\",\"profile_link_color\":\"1B3567\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F4990A\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"regular\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":28,\"favorite_count\":82,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"in\"},\"is_quote_status\":false,\"retweet_count\":28,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"}', NULL, NULL, 'rt kompascom presiden joko widodo utus staf presiden untuk beri bantu kepada dewi febriyanti 13 siswi smp yang jual', 'jokowi'),
(374, '<NAME>', '@dchyadii', 2147483647, 'RT @MarnoMbois: Pak @jokowi, saya menyarankan adanya Menteri Urusan Orang Lain supaya para atlet ghibah di Indonesia ada yang koordinir.\n\n#…', 'netral', '78', '85', 'Yogyakarta, Indonesia', 'No', 8, 'Thu Jul 25 10:22:22 +0000 2019', 'Fri Mar 18 03:03:04 +0000 2011', '20190725102406', '{\"created_at\":\"Thu Jul 25 10:22:22 +0000 2019\",\"id\":1154336080570699777,\"id_str\":\"1154336080570699777\",\"text\":\"RT @MarnoMbois: Pak @jokowi, saya menyarankan adanya Menteri Urusan Orang Lain supaya para atlet ghibah di Indonesia ada yang koordinir.\\n\\n#\\u2026\",\"truncated\":false,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"MarnoMbois\",\"name\":\"<NAME>\",\"id\":3041601229,\"id_str\":\"3041601229\",\"indices\":[3,14]},{\"screen_name\":\"jokowi\",\"name\":\"<NAME>\",\"id\":366987179,\"id_str\":\"366987179\",\"indices\":[20,27]}],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\">Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":268074659,\"id_str\":\"268074659\",\"name\":\"<NAME>\",\"screen_name\":\"dchyadii\",\"location\":\"Yogyakarta, Indonesia\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":78,\"friends_count\":85,\"listed_count\":0,\"created_at\":\"Fri Mar 18 03:03:04 +0000 2011\",\"favourites_count\":85,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":941,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1152197223737745409\\/gNW_GXX0_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1152197223737745409\\/gNW_GXX0_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/268074659\\/1563578704\",\"profile_link_color\":\"25C79C\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Thu Jul 25 09:13:57 +0000 2019\",\"id\":1154318863305080833,\"id_str\":\"1154318863305080833\",\"text\":\"Pak @jokowi, saya menyarankan adanya Menteri Urusan Orang Lain supaya para atlet ghibah di Indonesia ada yang koordinir.\\n\\n#requestmenteri\",\"truncated\":false,\"entities\":{\"hashtags\":[{\"text\":\"requestmenteri\",\"indices\":[122,137]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"jokowi\",\"name\":\"<NAME>\",\"id\":366987179,\"id_str\":\"366987179\",\"indices\":[4,11]}],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\">Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":3041601229,\"id_str\":\"3041601229\",\"name\":\"<NAME>\",\"screen_name\":\"MarnoMbois\",\"location\":\"<EMAIL> \",\"description\":\"Piye perasaanmu nek dadi kates? \\/\\/ IG: marnologue_\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":95315,\"friends_count\":0,\"listed_count\":71,\"created_at\":\"Wed Feb 25 16:24:28 +0000 2015\",\"favourites_count\":4,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":11324,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1033618112875130880\\/rwuS9kAI_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1033618112875130880\\/rwuS9kAI_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3041601229\\/1558181205\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":166,\"favorite_count\":239,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"},\"is_quote_status\":false,\"retweet_count\":166,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"}', NULL, NULL, 'rt marnombois pak jokowi saya saran ada menteri urus orang lain supaya para atlet ghibah di indonesia ada yang koordinir', 'jokowi'),
(375, '<NAME>', '@rinajulianii', 2147483647, 'RT @NUgarislucu: Politik itu dinamis. Jangan kaget kalau tiba-tiba:\nAnies dicalonkan NasDem\nPrabowo koalisi sama Jokowi\nFadli Zon jadi Ment…', 'netral', '313', '134', '', 'No', 7, 'Thu Jul 25 10:22:15 +0000 2019', 'Sun Apr 22 07:19:54 +0000 2012', '20190725102406', '{\"created_at\":\"Thu Jul 25 10:22:15 +0000 2019\",\"id\":1154336050606567430,\"id_str\":\"1154336050606567430\",\"text\":\"RT @NUgarislucu: Politik itu dinamis. Jangan kaget kalau tiba-tiba:\\nAnies dicalonkan NasDem\\nPrabowo koalisi sama Jokowi\\nFadli Zon jadi Ment\\u2026\",\"truncated\":false,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"NUgarislucu\",\"name\":\"<NAME>\",\"id\":3069064298,\"id_str\":\"3069064298\",\"indices\":[3,15]}],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\">Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":560124004,\"id_str\":\"560124004\",\"name\":\"<NAME>\",\"screen_name\":\"rinajulianii\",\"location\":\"\",\"description\":\"not a lot going on\",\"url\":\"https:\\/\\/t.co\\/S1zenvMjn0\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/S1zenvMjn0\",\"expanded_url\":\"http:\\/\\/instagram.com\\/rinajulianii\",\"display_url\":\"instagram.com\\/rinajulianii\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":313,\"friends_count\":134,\"listed_count\":2,\"created_at\":\"Sun Apr 22 07:19:54 +0000 2012\",\"favourites_count\":588,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":16379,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme3\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme3\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1136676680850759680\\/XLhw9dCL_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1136676680850759680\\/XLhw9dCL_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/560124004\\/1546192987\",\"profile_link_color\":\"7FDBB6\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Thu Jul 25 08:34:32 +0000 2019\",\"id\":1154308943667027970,\"id_str\":\"1154308943667027970\",\"text\":\"Politik itu dinamis. Jangan kaget kalau tiba-tiba:\\nAnies dicalonkan NasDem\\nPrabowo koalisi sama Jokowi\\nFadli Zon ja\\u2026 https:\\/\\/t.co\\/zr6Of88HkG\",\"truncated\":true,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/zr6Of88HkG\",\"expanded_url\":\"https:\\/\\/twitter.com\\/i\\/web\\/status\\/1154308943667027970\",\"display_url\":\"twitter.com\\/i\\/web\\/status\\/1\\u2026\",\"indices\":[117,140]}]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\">Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":3069064298,\"id_str\":\"3069064298\",\"name\":\"<NAME>\",\"screen_name\":\"NUgarislucu\",\"location\":\"\",\"description\":\"Sampaikan Kebenaran Walaupun itu Lucu\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":310443,\"friends_count\":211,\"listed_count\":183,\"created_at\":\"Mon Mar 09 04:05:15 +0000 2015\",\"favourites_count\":2309,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":39429,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/732870423499571200\\/ZH9Si4lJ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/732870423499571200\\/ZH9Si4lJ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3069064298\\/1467695403\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":381,\"favorite_count\":1163,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"},\"is_quote_status\":false,\"retweet_count\":381,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"}', NULL, NULL, 'rt nugarislucu politik itu dinamis jangan kaget kalau tiba anies calon nasdem prabowo koalisi sama jokowi fadli zon jadi ment', 'jokowi'),
(376, 'joe', '@joe_sipz', 2147483647, 'RT @gylpyg: Maskapai nomor 2 dunia vs maskapai nomor 12 dunia (versi Skytrax) Maskapai yang mencetak laba vs maskapai yang mencetak rugi.\nL…', 'positif', '133', '1151', 'Indonesia raya... ', 'No', 3, 'Thu Jul 25 10:22:11 +0000 2019', 'Sun Aug 23 11:20:37 +0000 2015', '20190725102406', '{\"created_at\":\"Thu Jul 25 10:22:11 +0000 2019\",\"id\":1154336033749663744,\"id_str\":\"1154336033749663744\",\"text\":\"RT @gylpyg: Maskapai nomor 2 dunia vs maskapai nomor 12 dunia (versi Skytrax) Maskapai yang mencetak laba vs maskapai yang mencetak rugi.\\nL\\u2026\",\"truncated\":false,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"gylpyg\",\"name\":\"<NAME>., M.Rbhn.\",\"id\":222968946,\"id_str\":\"222968946\",\"indices\":[3,10]}],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\">Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":3326311880,\"id_str\":\"3326311880\",\"name\":\"joe\",\"screen_name\":\"joe_sipz\",\"location\":\"Indonesia raya... \",\"description\":\"NKRI harga mati.....\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":133,\"friends_count\":1151,\"listed_count\":0,\"created_at\":\"Sun Aug 23 11:20:37 +0000 2015\",\"favourites_count\":6241,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":5299,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1021022236679929856\\/Lvp1QUvV_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1021022236679929856\\/Lvp1QUvV_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3326311880\\/1538924028\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Thu Jul 25 08:17:25 +0000 2019\",\"id\":1154304635470934017,\"id_str\":\"1154304635470934017\",\"text\":\"Maskapai nomor 2 dunia vs maskapai nomor 12 dunia (versi Skytrax) Maskapai yang mencetak laba vs maskapai yang menc\\u2026 https:\\/\\/t.co\\/zyP0oVVNku\",\"truncated\":true,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/zyP0oVVNku\",\"expanded_url\":\"https:\\/\\/twitter.com\\/i\\/web\\/status\\/1154304635470934017\",\"display_url\":\"twitter.com\\/i\\/web\\/status\\/1\\u2026\",\"indices\":[117,140]}]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\">Twitter for iPhone<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":222968946,\"id_str\":\"222968946\",\"name\":\"<NAME>.\",\"screen_name\":\"gylpyg\",\"location\":\"Papua, Indonesia\",\"description\":\"Hanya orang biasa \\u2022 Unhas \\u2022 ATR\\/BPN RI\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":236,\"friends_count\":231,\"listed_count\":0,\"created_at\":\"Sun Dec 05 00:31:03 +0000 2010\",\"favourites_count\":527,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2196,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFF04D\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme19\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme19\\/bg.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1093448919525146624\\/SFCvWtFF_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1093448919525146624\\/SFCvWtFF_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/222968946\\/1487777453\",\"profile_link_color\":\"0099CC\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F6FFD1\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":49,\"favorite_count\":37,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"in\"},\"is_quote_status\":false,\"retweet_count\":49,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"}', NULL, NULL, 'rt gylpyg maskapai nomor 2 dunia vs maskapai nomor 12 dunia versi skytrax maskapai yang cetak laba vs maskapai yang cetak rugi l', 'jokowi'),
(377, 'Queera_Ayy77', '@Ayy77Queera', 2147483647, '@jokowi Nicr pak', 'positif', '1', '8', '', 'No', 0, 'Thu Jul 25 10:22:02 +0000 2019', 'Wed Jul 24 03:24:11 +0000 2019', '20190725102406', '{\"created_at\":\"Thu Jul 25 10:22:02 +0000 2019\",\"id\":1154335996109942784,\"id_str\":\"1154335996109942784\",\"text\":\"@jokowi Nicr pak\",\"truncated\":false,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"jokowi\",\"name\":\"<NAME>\",\"id\":366987179,\"id_str\":\"366987179\",\"indices\":[0,7]}],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\">Twitter for Android<\\/a>\",\"in_reply_to_status_id\":1153887712081895425,\"in_reply_to_status_id_str\":\"1153887712081895425\",\"in_reply_to_user_id\":366987179,\"in_reply_to_user_id_str\":\"366987179\",\"in_reply_to_screen_name\":\"jokowi\",\"user\":{\"id\":1153868450395066368,\"id_str\":\"1153868450395066368\",\"name\":\"Queera_Ayy77\",\"screen_name\":\"Ayy77Queera\",\"location\":\"\",\"description\":\"Bemyself\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1,\"friends_count\":8,\"listed_count\":0,\"created_at\":\"Wed Jul 24 03:24:11 +0000 2019\",\"favourites_count\":2,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1153868674383536128\\/LNL2SKGV_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1153868674383536128\\/LNL2SKGV_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":0,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"}', NULL, NULL, 'jokowi nicr pak', 'jokowi'),
(378, '<NAME>', '@RahmanZaul', 2147483647, '@Elina_Vay @budimandjatmiko @jokowi Mantap calon menteri', 'positif', '8', '77', 'Kalimantan Selatan, Indonesia', 'No', 5, 'Thu Jul 25 10:21:57 +0000 2019', 'Mon Mar 17 05:11:13 +0000 2014', '20190725102406', '{\"created_at\":\"Thu Jul 25 10:21:57 +0000 2019\",\"id\":1154335975977340929,\"id_str\":\"1154335975977340929\",\"text\":\"@Elina_Vay @budimandjatmiko @jokowi Mantap calon menteri\",\"truncated\":false,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Elina_Vay\",\"name\":\"#GustiOraSare\",\"id\":3253266487,\"id_str\":\"3253266487\",\"indices\":[0,10]},{\"screen_name\":\"budimandjatmiko\",\"name\":\"<NAME> (IG: budimaninovator)\",\"id\":183217247,\"id_str\":\"183217247\",\"indices\":[11,27]},{\"screen_name\":\"jokowi\",\"name\":\"<NAME>\",\"id\":366987179,\"id_str\":\"366987179\",\"indices\":[28,35]}],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\">Twitter for Android<\\/a>\",\"in_reply_to_status_id\":1154334885718323200,\"in_reply_to_status_id_str\":\"1154334885718323200\",\"in_reply_to_user_id\":3253266487,\"in_reply_to_user_id_str\":\"3253266487\",\"in_reply_to_screen_name\":\"Elina_Vay\",\"user\":{\"id\":2393818400,\"id_str\":\"2393818400\",\"name\":\"<NAME>\",\"screen_name\":\"RahmanZaul\",\"location\":\"Kalimantan Selatan, Indonesia\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":8,\"friends_count\":77,\"listed_count\":0,\"created_at\":\"Mon Mar 17 05:11:13 +0000 2014\",\"favourites_count\":1976,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":507,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1147995267653750784\\/Wz8l2w3e_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1147995267653750784\\/Wz8l2w3e_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":{\"id\":\"67ee4e65b49cb758\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/67ee4e65b49cb758.json\",\"place_type\":\"admin\",\"name\":\"South Borneo\",\"full_name\":\"<NAME>, Indonesia\",\"country_code\":\"ID\",\"country\":\"Indonesia\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[114.3458590000000043573891161940991878509521484375,-5.58536500000000035726088754017837345600128173828125],[116.5558999999999940655470709316432476043701171875,-5.58536500000000035726088754017837345600128173828125],[116.5558999999999940655470709316432476043701171875,-1.3150364999999999415791762658045627176761627197265625],[114.3458590000000043573891161940991878509521484375,-1.3150364999999999415791762658045627176761627197265625]]]},\"attributes\":[]},\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":0,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"}', NULL, NULL, 'el<NAME>', 'jokowi'),
(379, '@camabaui', '@primamm1', 2147483647, '@lilnlibra @jokowi Ampunnn????', 'positif', '65', '105', 'Indonesia', 'No', 0, 'Thu Jul 25 10:21:55 +0000 2019', 'Sat Jun 01 00:57:53 +0000 2019', '20190725102406', '{\"created_at\":\"Thu Jul 25 10:21:55 +0000 2019\",\"id\":1154335966519128064,\"id_str\":\"1154335966519128064\",\"text\":\"@lilnlibra @jokowi Ampunnn\\ud83e\\udd2a\",\"truncated\":false,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"lilnlibra\",\"name\":\"\\ud835\\ude7b\\ud835\\ude92\\ud835\\ude8b\\ud835\\ude9b\\ud835\\ude8a \\ud835\\ude90\\ud835\\ude8a\\ud835\\ude97\\ud835\\ude9d\\ud835\\ude8e\\ud835\\ude97\\ud835\\ude90\\u264e\",\"id\":1130635215917862915,\"id_str\":\"1130635215917862915\",\"indices\":[0,10]},{\"screen_name\":\"jokowi\",\"name\":\"<NAME>\",\"id\":366987179,\"id_str\":\"366987179\",\"indices\":[11,18]}],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\">Twitter for Android<\\/a>\",\"in_reply_to_status_id\":1154335427106496512,\"in_reply_to_status_id_str\":\"1154335427106496512\",\"in_reply_to_user_id\":1130635215917862915,\"in_reply_to_user_id_str\":\"1130635215917862915\",\"in_reply_to_screen_name\":\"lilnlibra\",\"user\":{\"id\":1134625077587132416,\"id_str\":\"1134625077587132416\",\"name\":\"@camabaui\",\"screen_name\":\"primamm1\",\"location\":\"Indonesia\",\"description\":\"aku orang nya tertutup, terbuka saat mandi.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":65,\"friends_count\":105,\"listed_count\":0,\"created_at\":\"Sat Jun 01 00:57:53 +0000 2019\",\"favourites_count\":399,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":726,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1139136529601781761\\/LJFahu68_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1139136529601781761\\/LJFahu68_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1134625077587132416\\/1563176951\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":0,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"}', NULL, NULL, 'lilnlibra jokowi ampunnn', 'jokowi'),
(380, 'Pasti diPolbek [ Tukang ReTweet ]', '@MumtazHafidzah', 2147483647, 'RT @IreneViena: Golkar jangan niru PKB banyak tingkah mau menghambat rekonsiliasi Jokowi-Prabowo\n\nJgn komentar yg aneh2 .. elitnya banyak c…', 'positif', '1034', '2243', '', 'No', 0, 'Thu Jul 25 10:21:51 +0000 2019', 'Sun May 26 22:52:34 +0000 2019', '20190725102406', '{\"created_at\":\"Thu Jul 25 10:21:51 +0000 2019\",\"id\":1154335949788024833,\"id_str\":\"1154335949788024833\",\"text\":\"RT @IreneViena: Golkar jangan niru PKB banyak tingkah mau menghambat rekonsiliasi Jokowi-Prabowo\\n\\nJgn komentar yg aneh2 .. elitnya banyak c\\u2026\",\"truncated\":false,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"IreneViena\",\"name\":\"Irene\",\"id\":805629166095769600,\"id_str\":\"805629166095769600\",\"indices\":[3,14]}],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"https:\\/\\/mobile.twitter.com\\\" rel=\\\"nofollow\\\">Twitter Web App<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1132781598993072128,\"id_str\":\"1132781598993072128\",\"name\":\"<NAME> [ Tukang ReTweet ]\",\"screen_name\":\"MumtazHafidzah\",\"location\":\"\",\"description\":\"Berjuang Demi Indonesia Menang - Indonesia Adil Makmur\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1034,\"friends_count\":2243,\"listed_count\":2,\"created_at\":\"Sun May 26 22:52:34 +0000 2019\",\"favourites_count\":7634,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":5058,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1152681077846134784\\/Ed7feR-__normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1152681077846134784\\/Ed7feR-__normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1132781598993072128\\/1562087535\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Thu Jul 25 10:21:09 +0000 2019\",\"id\":1154335771115102208,\"id_str\":\"1154335771115102208\",\"text\":\"Golkar jangan niru PKB banyak tingkah mau menghambat rekonsiliasi Jokowi-Prabowo\\n\\nJgn komentar yg aneh2 .. elitnya\\u2026 https:\\/\\/t.co\\/TRFUw8KQg0\",\"truncated\":true,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/TRFUw8KQg0\",\"expanded_url\":\"https:\\/\\/twitter.com\\/i\\/web\\/status\\/1154335771115102208\",\"display_url\":\"twitter.com\\/i\\/web\\/status\\/1\\u2026\",\"indices\":[116,139]}]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\">Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":805629166095769600,\"id_str\":\"805629166095769600\",\"name\":\"Irene\",\"screen_name\":\"IreneViena\",\"location\":\"Hong Kong\",\"description\":\"Menagih janjimu nan tak kunjung tunai seperti Menunggu Godot di Salihara\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":111348,\"friends_count\":1488,\"listed_count\":80,\"created_at\":\"Mon Dec 05 04:25:35 +0000 2016\",\"favourites_count\":65,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":46774,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/924510371540373504\\/AZVzFqZ8_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/924510371540373504\\/AZVzFqZ8_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/805629166095769600\\/1509255546\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":5,\"favorite_count\":8,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"},\"is_quote_status\":false,\"retweet_count\":5,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"}', NULL, NULL, 'rt ireneviena golkar jangan niru pkb banyak tingkah mau hambat rekonsiliasi jokowi-prabowo jgn komentar yg aneh2 elitnya banyak c', 'jokowi');
INSERT INTO `crawl_data` (`id`, `name`, `screen_name`, `tweet_id`, `text`, `flag`, `followers_count`, `following_count`, `location`, `verified`, `different_year`, `created_post`, `created_account`, `token_search`, `result_crawl_json`, `class_hoax`, `class_hoax_info`, `tokenizing`, `keyword`) VALUES
(381, 'Tyas', '@tyas_caniago', 2147483647, 'RT @IreneViena: Prabowo - Mega itu sejatinya harmonis. Hubungan sangat baik\n\nMereka pernah duet jadi paslon di pilpres 2009\n\nBahkan Prabowo…', 'positif', '1179', '240', 'Sumbar', 'No', 5, 'Thu Jul 25 10:21:42 +0000 2019', 'Mon Sep 16 04:19:20 +0000 2013', '20190725102406', '{\"created_at\":\"Thu Jul 25 10:21:42 +0000 2019\",\"id\":1154335911464841216,\"id_str\":\"1154335911464841216\",\"text\":\"RT @IreneViena: Prabowo - Mega itu sejatinya harmonis. Hubungan sangat baik\\n\\nMereka pernah duet jadi paslon di pilpres 2009\\n\\nBahkan Prabowo\\u2026\",\"truncated\":false,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"IreneViena\",\"name\":\"Irene\",\"id\":805629166095769600,\"id_str\":\"805629166095769600\",\"indices\":[3,14]}],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\">Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1870178490,\"id_str\":\"1870178490\",\"name\":\"Tyas\",\"screen_name\":\"tyas_caniago\",\"location\":\"Sumbar\",\"description\":\"I<NAME>, I<NAME>\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1179,\"friends_count\":240,\"listed_count\":0,\"created_at\":\"Mon Sep 16 04:19:20 +0000 2013\",\"favourites_count\":19,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":20364,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1003960759745826818\\/aUEfRQRu_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1003960759745826818\\/aUEfRQRu_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1870178490\\/1528201439\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Thu Jul 25 03:49:30 +0000 2019\",\"id\":1154237210658508801,\"id_str\":\"1154237210658508801\",\"text\":\"Prabowo - Mega itu sejatinya harmonis. Hubungan sangat baik\\n\\nMereka pernah duet jadi paslon di pilpres 2009\\n\\nBahkan\\u2026 https:\\/\\/t.co\\/dioi8q9bVH\",\"truncated\":true,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/dioi8q9bVH\",\"expanded_url\":\"https:\\/\\/twitter.com\\/i\\/web\\/status\\/1154237210658508801\",\"display_url\":\"twitter.com\\/i\\/web\\/status\\/1\\u2026\",\"indices\":[117,140]}]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\">Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":805629166095769600,\"id_str\":\"805629166095769600\",\"name\":\"Irene\",\"screen_name\":\"IreneViena\",\"location\":\"Hong Kong\",\"description\":\"Menagih janjimu nan tak kunjung tunai seperti Menunggu Godot di Salihara\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":111348,\"friends_count\":1488,\"listed_count\":80,\"created_at\":\"Mon Dec 05 04:25:35 +0000 2016\",\"favourites_count\":65,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":46774,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/924510371540373504\\/AZVzFqZ8_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/924510371540373504\\/AZVzFqZ8_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/805629166095769600\\/1509255546\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":212,\"favorite_count\":546,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"},\"is_quote_status\":false,\"retweet_count\":212,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"}', NULL, NULL, 'rt ireneviena prabowo - mega itu sejati harmonis hubung sangat baik mereka pernah duet jadi paslon di pilpres 2009 bahkan prabowo', 'jokowi'),
(382, 'shania_', '@coddamona', 2147483647, 'RT @mas__piyuuu: HEBOH! Akun Fb Presiden Jokowi Sempat Tulis Indonesia \"NEGARA ISLAM\", Akhirnya Diedit\n\nTakut Didemo Ormas Paling NKRI? ????????…', 'positif', '1116', '953', '', 'No', 5, 'Thu Jul 25 10:21:39 +0000 2019', 'Mon Apr 28 09:41:15 +0000 2014', '20190725102406', '{\"created_at\":\"Thu Jul 25 10:21:39 +0000 2019\",\"id\":1154335897996804096,\"id_str\":\"1154335897996804096\",\"text\":\"RT @mas__piyuuu: HEBOH! Akun Fb Presiden Jokowi Sempat Tulis Indonesia \\\"NEGARA ISLAM\\\", Akhirnya Diedit\\n\\nTakut Didemo Ormas Paling NKRI? \\ud83d\\ude02\\ud83d\\ude05\\u2026\",\"truncated\":false,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"mas__piyuuu\",\"name\":\"<NAME>\",\"id\":2885191782,\"id_str\":\"2885191782\",\"indices\":[3,15]}],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\">Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":2467502989,\"id_str\":\"2467502989\",\"name\":\"shania_\",\"screen_name\":\"coddamona\",\"location\":\"\",\"description\":\"TIDAK MELAYANI DEBAT, COBA CARI DI TOKO SEBELAH...\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1116,\"friends_count\":953,\"listed_count\":5,\"created_at\":\"Mon Apr 28 09:41:15 +0000 2014\",\"favourites_count\":28351,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":47735,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/808871337506635776\\/AWGhfYU-_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/808871337506635776\\/AWGhfYU-_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2467502989\\/1441195241\",\"profile_link_color\":\"F58EA8\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Thu Jul 25 03:38:06 +0000 2019\",\"id\":1154234344346537986,\"id_str\":\"1154234344346537986\",\"text\":\"HEBOH! Akun Fb Presiden Jokowi Sempat Tulis Indonesia \\\"NEGARA ISLAM\\\", Akhirnya Diedit\\n\\nTakut Didemo Ormas Paling NK\\u2026 https:\\/\\/t.co\\/7SaY4fPmtJ\",\"truncated\":true,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/7SaY4fPmtJ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/i\\/web\\/status\\/1154234344346537986\",\"display_url\":\"twitter.com\\/i\\/web\\/status\\/1\\u2026\",\"indices\":[117,140]}]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"https:\\/\\/mobile.twitter.com\\\" rel=\\\"nofollow\\\">Twitter Web App<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":2885191782,\"id_str\":\"2885191782\",\"name\":\"<NAME>\",\"screen_name\":\"mas__piyuuu\",\"location\":\"Indonesia\",\"description\":\"open mind, RT\'s not always endorsement\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":39619,\"friends_count\":332,\"listed_count\":36,\"created_at\":\"Fri Oct 31 14:29:02 +0000 2014\",\"favourites_count\":48,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":5583,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1112391372613382144\\/w-40DuPK_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1112391372613382144\\/w-40DuPK_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2885191782\\/1561456421\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":165,\"favorite_count\":254,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"in\"},\"is_quote_status\":false,\"retweet_count\":165,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"}', NULL, NULL, 'rt mas piyuuu heboh akun fb presiden jokowi sempat tulis indonesia negara islam akhir edit takut demo ormas paling nkri', 'jokowi'),
(383, 'Sulung', '@Sulung110', 2147483647, 'RT @danang08969241: @jokowi Pak jokowi..saya dan istri warga kabupaten tangerang mengurus ktp sudah 1.5th.hari ini ktp suamidicetak. ktp is…', 'positif', '23', '164', '', 'No', 0, 'Thu Jul 25 10:21:38 +0000 2019', 'Fri Apr 26 18:13:01 +0000 2019', '20190725102406', '{\"created_at\":\"Thu Jul 25 10:21:38 +0000 2019\",\"id\":1154335894846836743,\"id_str\":\"1154335894846836743\",\"text\":\"RT @danang08969241: @jokowi Pak jokowi..saya dan istri warga kabupaten tangerang mengurus ktp sudah 1.5th.hari ini ktp suamidicetak. ktp is\\u2026\",\"truncated\":false,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"danang08969241\",\"name\":\"Danang\",\"id\":812505158412185600,\"id_str\":\"812505158412185600\",\"indices\":[3,18]},{\"screen_name\":\"jokowi\",\"name\":\"<NAME>\",\"id\":366987179,\"id_str\":\"366987179\",\"indices\":[20,27]}],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\">Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1121839614409367552,\"id_str\":\"1121839614409367552\",\"name\":\"Sulung\",\"screen_name\":\"Sulung110\",\"location\":\"\",\"description\":\"Menyuarakan Kebenaran\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":23,\"friends_count\":164,\"listed_count\":0,\"created_at\":\"Fri Apr 26 18:13:01 +0000 2019\",\"favourites_count\":2542,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1679,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1121848091907244032\\/dpv6N-fW_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1121848091907244032\\/dpv6N-fW_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Thu Jul 25 07:26:55 +0000 2019\",\"id\":1154291924141875201,\"id_str\":\"1154291924141875201\",\"text\":\"@jokowi Pak jokowi..saya dan istri warga kabupaten tangerang mengurus ktp sudah 1.5th.hari ini ktp suamidicetak. kt\\u2026 https:\\/\\/t.co\\/QXZRil1Slt\",\"truncated\":true,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"jokowi\",\"name\":\"<NAME>\",\"id\":366987179,\"id_str\":\"366987179\",\"indices\":[0,7]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/QXZRil1Slt\",\"expanded_url\":\"https:\\/\\/twitter.com\\/i\\/web\\/status\\/1154291924141875201\",\"display_url\":\"twitter.com\\/i\\/web\\/status\\/1\\u2026\",\"indices\":[117,140]}]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\">Twitter for Android<\\/a>\",\"in_reply_to_status_id\":1154278978439356416,\"in_reply_to_status_id_str\":\"1154278978439356416\",\"in_reply_to_user_id\":366987179,\"in_reply_to_user_id_str\":\"366987179\",\"in_reply_to_screen_name\":\"jokowi\",\"user\":{\"id\":812505158412185600,\"id_str\":\"812505158412185600\",\"name\":\"Danang\",\"screen_name\":\"danang08969241\",\"location\":\"\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":5,\"friends_count\":110,\"listed_count\":0,\"created_at\":\"Sat Dec 24 03:48:20 +0000 2016\",\"favourites_count\":13,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":14,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/abs.twimg.com\\/sticky\\/default_profile_images\\/default_profile_normal.png\",\"profile_image_url_https\":\"https:\\/\\/abs.twimg.com\\/sticky\\/default_profile_images\\/default_profile_normal.png\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":true,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":1,\"favorite_count\":6,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"in\"},\"is_quote_status\":false,\"retweet_count\":1,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"}', NULL, NULL, 'rt danang08969241 jokowi pak jokowi saya dan istri warga kabupaten tangerang urus ktp sudah 1 5th hari ini ktp suamidicetak ktp is', 'jokowi'),
(384, '<NAME>', '@Alexandernmm', 2147483647, 'RT @TirtoID: Jokowi secara resmi telah menerbitkan Peraturan Pemerintah yang mengatur tata cara pencatatan perkawinan bagi penghayat keperc…', 'positif', '449', '425', '', 'No', 6, 'Thu Jul 25 10:21:34 +0000 2019', 'Sun Mar 03 21:52:48 +0000 2013', '20190725102406', '{\"created_at\":\"Thu Jul 25 10:21:34 +0000 2019\",\"id\":1154335877302083584,\"id_str\":\"1154335877302083584\",\"text\":\"RT @TirtoID: Jokowi secara resmi telah menerbitkan Peraturan Pemerintah yang mengatur tata cara pencatatan perkawinan bagi penghayat keperc\\u2026\",\"truncated\":false,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"TirtoID\",\"name\":\"tirto.id\",\"id\":4187275698,\"id_str\":\"4187275698\",\"indices\":[3,11]}],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"https:\\/\\/mobile.twitter.com\\\" rel=\\\"nofollow\\\">Twitter Web App<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1239927277,\"id_str\":\"1239927277\",\"name\":\"<NAME>\",\"screen_name\":\"Alexandernmm\",\"location\":\"\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":449,\"friends_count\":425,\"listed_count\":2,\"created_at\":\"Sun Mar 03 21:52:48 +0000 2013\",\"favourites_count\":91,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":3773,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/971572213303320576\\/TbZ7EApd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/971572213303320576\\/TbZ7EApd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1239927277\\/1520475861\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Thu Jul 25 10:16:31 +0000 2019\",\"id\":1154334608667766784,\"id_str\":\"1154334608667766784\",\"text\":\"Jokowi secara resmi telah menerbitkan Peraturan Pemerintah yang mengatur tata cara pencatatan perkawinan bagi pengh\\u2026 https:\\/\\/t.co\\/hgixqWsNDN\",\"truncated\":true,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/hgixqWsNDN\",\"expanded_url\":\"https:\\/\\/twitter.com\\/i\\/web\\/status\\/1154334608667766784\",\"display_url\":\"twitter.com\\/i\\/web\\/status\\/1\\u2026\",\"indices\":[117,140]}]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"https:\\/\\/about.twitter.com\\/products\\/tweetdeck\\\" rel=\\\"nofollow\\\">TweetDeck<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":4187275698,\"id_str\":\"4187275698\",\"name\":\"tirto.id\",\"screen_name\":\"TirtoID\",\"location\":\"Indonesia\",\"description\":\"Jurnalisme data. Media analisis. Infografik ciamik.\",\"url\":\"https:\\/\\/t.co\\/Ss5eQAlNn3\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Ss5eQAlNn3\",\"expanded_url\":\"https:\\/\\/tirto.id\\/\",\"display_url\":\"tirto.id\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":310656,\"friends_count\":45,\"listed_count\":647,\"created_at\":\"Tue Nov 10 06:15:05 +0000 2015\",\"favourites_count\":992,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":true,\"statuses_count\":53117,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1009463042206150657\\/MVj3R8no_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1009463042206150657\\/MVj3R8no_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/4187275698\\/1529509859\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":21,\"favorite_count\":31,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"in\"},\"is_quote_status\":false,\"retweet_count\":21,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"}', NULL, NULL, 'rt tirtoid jokowi cara resmi telah terbit atur perintah yang atur tata cara catat kawin bagi hayat keperc', 'jokowi'),
(385, '<NAME>', '@PriaKolorIjo', 2147483647, 'RT @permadiaktivis: pak Jokowi pilih Yai Ma\'ruf geram\n\nAnies merapat ke NasDem geram\n\npak Ahok @basuki_btp nya sendiri aja udah selow, ente…', 'positif', '1556', '1115', 'Jakarta Timur, DKI Jakarta', 'No', 3, 'Thu Jul 25 10:21:27 +0000 2019', 'Sat Jan 30 11:43:48 +0000 2016', '20190725102406', '{\"created_at\":\"Thu Jul 25 10:21:27 +0000 2019\",\"id\":1154335850735366144,\"id_str\":\"1154335850735366144\",\"text\":\"RT @permadiaktivis: pak Jokowi pilih Yai Ma\'ruf geram\\n\\nAnies merapat ke NasDem geram\\n\\npak Ahok @basuki_btp nya sendiri aja udah selow, ente\\u2026\",\"truncated\":false,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"permadiaktivis\",\"name\":\"<NAME>\",\"id\":813490681519828997,\"id_str\":\"813490681519828997\",\"indices\":[3,18]},{\"screen_name\":\"basuki_btp\",\"name\":\"<NAME>\",\"id\":115286138,\"id_str\":\"115286138\",\"indices\":[95,106]}],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\">Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":4834772592,\"id_str\":\"4834772592\",\"name\":\"<NAME>\",\"screen_name\":\"PriaKolorIjo\",\"location\":\"Jakarta Timur, DKI Jakarta\",\"description\":\"Ketika Cebong dan Kampret bersatu maka Ontalah yg kelojotan \\ud83d\\ude02\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1556,\"friends_count\":1115,\"listed_count\":0,\"created_at\":\"Sat Jan 30 11:43:48 +0000 2016\",\"favourites_count\":29108,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":123173,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1028289808664154112\\/pEZxW8-t_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1028289808664154112\\/pEZxW8-t_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/4834772592\\/1533998481\",\"profile_link_color\":\"E81C4F\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Thu Jul 25 02:25:11 +0000 2019\",\"id\":1154215992551018496,\"id_str\":\"1154215992551018496\",\"text\":\"pak Jokowi pilih Yai Ma\'ruf geram\\n\\nAnies merapat ke NasDem geram\\n\\npak Ahok @basuki_btp nya sendiri aja udah selow,\\u2026 https:\\/\\/t.co\\/Mgd3w7gmv3\",\"truncated\":true,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"basuki_btp\",\"name\":\"<NAME>\",\"id\":115286138,\"id_str\":\"115286138\",\"indices\":[75,86]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Mgd3w7gmv3\",\"expanded_url\":\"https:\\/\\/twitter.com\\/i\\/web\\/status\\/1154215992551018496\",\"display_url\":\"twitter.com\\/i\\/web\\/status\\/1\\u2026\",\"indices\":[116,139]}]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\">Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":813490681519828997,\"id_str\":\"813490681519828997\",\"name\":\"<NAME>\",\"screen_name\":\"permadiaktivis\",\"location\":\"Bandung, Jawa Barat\",\"description\":\"used to be a social media influencer. now I\'m just a Tweep\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":83393,\"friends_count\":1257,\"listed_count\":76,\"created_at\":\"Mon Dec 26 21:04:27 +0000 2016\",\"favourites_count\":46456,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":10702,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1148040883595407360\\/SKVIIaIn_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1148040883595407360\\/SKVIIaIn_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/813490681519828997\\/1563152172\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":74,\"favorite_count\":572,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"},\"is_quote_status\":false,\"retweet_count\":74,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"}', NULL, NULL, 'rt permadiaktivis pak jokowi pilih yai ma ruf geram anies rapat ke nasdem geram pak ahok basuki btp nya sendiri aja udah selow ente', 'jokowi'),
(386, '@Mr_Ana', '@MrAna18667568', 2147483647, 'RT @kangnawan: Belum lagi reda gejolak kolam karena menyaksikan pertemuan Surya Paloh dan Anies Baswedan, kini kolam bergolak makin dahsyat…', 'positif', '120', '546', '', 'No', 0, 'Thu Jul 25 10:21:24 +0000 2019', 'Fri Mar 22 02:20:29 +0000 2019', '20190725102406', '{\"created_at\":\"Thu Jul 25 10:21:24 +0000 2019\",\"id\":1154335835317129217,\"id_str\":\"1154335835317129217\",\"text\":\"RT @kangnawan: Belum lagi reda gejolak kolam karena menyaksikan pertemuan Surya Paloh dan Anies Baswedan, kini kolam bergolak makin dahsyat\\u2026\",\"truncated\":false,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"kangnawan\",\"name\":\"<NAME>\",\"id\":777141890277777409,\"id_str\":\"777141890277777409\",\"indices\":[3,13]}],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\">Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1108916325823373312,\"id_str\":\"1108916325823373312\",\"name\":\"@Mr_Ana\",\"screen_name\":\"MrAna18667568\",\"location\":\"\",\"description\":\"Indonesia Tanah Air Beta Pusaka Abadi Nan Djayaaaaa....\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":120,\"friends_count\":546,\"listed_count\":0,\"created_at\":\"Fri Mar 22 02:20:29 +0000 2019\",\"favourites_count\":3327,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":627,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1153637779064012801\\/PA6ZD1FF_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1153637779064012801\\/PA6ZD1FF_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1108916325823373312\\/1553272445\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Wed Jul 24 13:59:53 +0000 2019\",\"id\":1154028431094366209,\"id_str\":\"1154028431094366209\",\"text\":\"Belum lagi reda gejolak kolam karena menyaksikan pertemuan <NAME> dan <NAME>, kini kolam bergolak maki\\u2026 https:\\/\\/t.co\\/5dXDcPrSue\",\"truncated\":true,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/5dXDcPrSue\",\"expanded_url\":\"https:\\/\\/twitter.com\\/i\\/web\\/status\\/1154028431094366209\",\"display_url\":\"twitter.com\\/i\\/web\\/status\\/1\\u2026\",\"indices\":[117,140]}]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\">Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":777141890277777409,\"id_str\":\"777141890277777409\",\"name\":\"<NAME>\",\"screen_name\":\"kangnawan\",\"location\":\"Indonesia\",\"description\":\"| Berusaha memahami \'pikiran\' Allah |\",\"url\":\"https:\\/\\/t.co\\/MCone2lmKJ\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/MCone2lmKJ\",\"expanded_url\":\"http:\\/\\/www.satumadrasah.com\",\"display_url\":\"satumadrasah.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":14915,\"friends_count\":916,\"listed_count\":3,\"created_at\":\"Sat Sep 17 13:47:20 +0000 2016\",\"favourites_count\":24618,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":16703,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1069153713963511809\\/j2v5vgGR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1069153713963511809\\/j2v5vgGR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/777141890277777409\\/1555278092\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":242,\"favorite_count\":648,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"in\"},\"is_quote_status\":false,\"retweet_count\":242,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"}', NULL, NULL, 'rt kangnawan belum lagi reda gejolak kolam karena saksi temu surya paloh dan anies baswedan kini kolam golak makin dahsyat', 'jokowi'),
(387, 'Venyusss', '@vetiaisyaa', 2147483647, 'RT @NUgarislucu: Politik itu dinamis. Jangan kaget kalau tiba-tiba:\nAnies dicalonkan NasDem\nPrabowo koalisi sama Jokowi\nFadli Zon jadi Ment…', 'positif', '191', '75', 'Banjarnegara', 'No', 5, 'Thu Jul 25 10:21:21 +0000 2019', 'Sun Dec 01 10:51:27 +0000 2013', '20190725102406', '{\"created_at\":\"Thu Jul 25 10:21:21 +0000 2019\",\"id\":1154335821450764288,\"id_str\":\"1154335821450764288\",\"text\":\"RT @NUgarislucu: Politik itu dinamis. Jangan kaget kalau tiba-tiba:\\nAnies dicalonkan NasDem\\nPrabowo koalisi sama Jokowi\\nFadli Zon jadi Ment\\u2026\",\"truncated\":false,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"NUgarislucu\",\"name\":\"<NAME>\",\"id\":3069064298,\"id_str\":\"3069064298\",\"indices\":[3,15]}],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"https:\\/\\/mobile.twitter.com\\\" rel=\\\"nofollow\\\">Twitter Web App<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":2224704823,\"id_str\":\"2224704823\",\"name\":\"Venyusss\",\"screen_name\":\"vetiaisyaa\",\"location\":\"Banjarnegara\",\"description\":\"Aku sujud panjang, semogaku kamu.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":191,\"friends_count\":75,\"listed_count\":0,\"created_at\":\"Sun Dec 01 10:51:27 +0000 2013\",\"favourites_count\":55,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":3417,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1139029288223531008\\/gVS2HT79_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1139029288223531008\\/gVS2HT79_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2224704823\\/1490798416\",\"profile_link_color\":\"89C9FA\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Thu Jul 25 08:34:32 +0000 2019\",\"id\":1154308943667027970,\"id_str\":\"1154308943667027970\",\"text\":\"Politik itu dinamis. Jangan kaget kalau tiba-tiba:\\nAnies dicalonkan NasDem\\nPrabowo koalisi sama Jokowi\\nFadli Zon ja\\u2026 https:\\/\\/t.co\\/zr6Of88HkG\",\"truncated\":true,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/zr6Of88HkG\",\"expanded_url\":\"https:\\/\\/twitter.com\\/i\\/web\\/status\\/1154308943667027970\",\"display_url\":\"twitter.com\\/i\\/web\\/status\\/1\\u2026\",\"indices\":[117,140]}]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\">Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":3069064298,\"id_str\":\"3069064298\",\"name\":\"<NAME>\",\"screen_name\":\"NUgarislucu\",\"location\":\"\",\"description\":\"Sampaikan Kebenaran Walaupun itu Lucu\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":310443,\"friends_count\":211,\"listed_count\":183,\"created_at\":\"Mon Mar 09 04:05:15 +0000 2015\",\"favourites_count\":2309,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":39429,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/732870423499571200\\/ZH9Si4lJ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/732870423499571200\\/ZH9Si4lJ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3069064298\\/1467695403\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":381,\"favorite_count\":1163,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"},\"is_quote_status\":false,\"retweet_count\":381,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"}', NULL, NULL, 'rt nugarislucu politik itu dinamis jangan kaget kalau tiba anies calon nasdem prabowo koalisi sama jokowi fadli zon jadi ment', 'jokowi'),
(388, 'theendlessmess', '@theendlessmess', 2147483647, 'RT @LenteraMalam8: @jokowi @sahaL_AS ????????????????\n\nGa koar2 anti arab lageee ente..????????????????', 'positif', '260', '2833', '', 'No', 3, 'Thu Jul 25 10:21:17 +0000 2019', 'Wed Dec 23 13:57:49 +0000 2015', '20190725102406', '{\"created_at\":\"Thu Jul 25 10:21:17 +0000 2019\",\"id\":1154335807429152768,\"id_str\":\"1154335807429152768\",\"text\":\"RT @LenteraMalam8: @jokowi @sahaL_AS \\ud83d\\ude00\\ud83d\\ude00\\ud83d\\ude00\\ud83d\\ude00\\n\\nGa koar2 anti arab lageee ente..\\ud83d\\ude00\\ud83d\\ude00\\ud83d\\ude00\\ud83d\\ude00\",\"truncated\":false,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"LenteraMalam8\",\"name\":\"Silent...\\u2764\",\"id\":1135188027628638209,\"id_str\":\"1135188027628638209\",\"indices\":[3,17]},{\"screen_name\":\"jokowi\",\"name\":\"<NAME>\",\"id\":366987179,\"id_str\":\"366987179\",\"indices\":[19,26]},{\"screen_name\":\"sahaL_AS\",\"name\":\"akhmad sahal\",\"id\":1569342572,\"id_str\":\"1569342572\",\"indices\":[27,36]}],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"tl\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\">Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":4637493894,\"id_str\":\"4637493894\",\"name\":\"theendlessmess\",\"screen_name\":\"theendlessmess\",\"location\":\"\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":260,\"friends_count\":2833,\"listed_count\":3,\"created_at\":\"Wed Dec 23 13:57:49 +0000 2015\",\"favourites_count\":9069,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":6187,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/abs.twimg.com\\/sticky\\/default_profile_images\\/default_profile_normal.png\",\"profile_image_url_https\":\"https:\\/\\/abs.twimg.com\\/sticky\\/default_profile_images\\/default_profile_normal.png\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":true,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Thu Jul 25 09:42:58 +0000 2019\",\"id\":1154326165428961280,\"id_str\":\"1154326165428961280\",\"text\":\"@jokowi @sahaL_AS \\ud83d\\ude00\\ud83d\\ude00\\ud83d\\ude00\\ud83d\\ude00\\n\\nGa koar2 anti arab lageee ente..\\ud83d\\ude00\\ud83d\\ude00\\ud83d\\ude00\\ud83d\\ude00\",\"truncated\":false,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"jokowi\",\"name\":\"<NAME>\",\"id\":366987179,\"id_str\":\"366987179\",\"indices\":[0,7]},{\"screen_name\":\"sahaL_AS\",\"name\":\"akhmad sahal\",\"id\":1569342572,\"id_str\":\"1569342572\",\"indices\":[8,17]}],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"tl\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\">Twitter for Android<\\/a>\",\"in_reply_to_status_id\":1154002406423687168,\"in_reply_to_status_id_str\":\"1154002406423687168\",\"in_reply_to_user_id\":366987179,\"in_reply_to_user_id_str\":\"366987179\",\"in_reply_to_screen_name\":\"jokowi\",\"user\":{\"id\":1135188027628638209,\"id_str\":\"1135188027628638209\",\"name\":\"Silent...\\u2764\",\"screen_name\":\"LenteraMalam8\",\"location\":\"Ranah Minang\",\"description\":\"Treat me well...,i will definitely treat u better...\\ud83d\\ude0a | coffe lovers \\u2615 | cat lovers | love the rain...\\ud83c\\udf27\\ud83c\\udf27 | Hijabian..\\ud83d\\ude07 | proud to be Muslim...\\ud83d\\ude07 | #Minang\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2543,\"friends_count\":1333,\"listed_count\":1,\"created_at\":\"Sun Jun 02 14:14:51 +0000 2019\",\"favourites_count\":9665,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":11644,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1144089753685336064\\/jbk0VaCg_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1144089753685336064\\/jbk0VaCg_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1135188027628638209\\/1563459898\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":2,\"favorite_count\":9,\"favorited\":false,\"retweeted\":false,\"lang\":\"tl\"},\"is_quote_status\":false,\"retweet_count\":2,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"lang\":\"tl\"}', NULL, NULL, 'rt lenteramalam8 jokowi sahal as ga koar2 anti arab lageee ente', 'jokowi');
INSERT INTO `crawl_data` (`id`, `name`, `screen_name`, `tweet_id`, `text`, `flag`, `followers_count`, `following_count`, `location`, `verified`, `different_year`, `created_post`, `created_account`, `token_search`, `result_crawl_json`, `class_hoax`, `class_hoax_info`, `tokenizing`, `keyword`) VALUES
(389, '<NAME>,MM,MBA.', '@andrewenas', 2147483647, 'RT @andrewenas: Mengenang Ucapan AM Fatwa (Alm):\nDI SEMUA DPRD ADA \'PERMAINAN\', BARU AHOK YG BERANI MEMBONGKAR!\n\n@basuki_btp @dprddkijakart…', 'positif', '3388', '3194', 'Jakarta', 'No', 9, 'Thu Jul 25 10:21:14 +0000 2019', 'Sun Aug 16 18:59:20 +0000 2009', '20190725102406', '{\"created_at\":\"Thu Jul 25 10:21:14 +0000 2019\",\"id\":1154335794405888000,\"id_str\":\"1154335794405888000\",\"text\":\"RT @andrewenas: Mengenang Ucapan AM Fatwa (Alm):\\nDI SEMUA DPRD ADA \'PERMAINAN\', BARU AHOK YG BERANI MEMBONGKAR!\\n\\n@basuki_btp @dprddkijakart\\u2026\",\"truncated\":false,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"andrewenas\",\"name\":\"<NAME>,MM,MBA.\",\"id\":66169750,\"id_str\":\"66169750\",\"indices\":[3,14]},{\"screen_name\":\"basuki_btp\",\"name\":\"<NAME>\",\"id\":115286138,\"id_str\":\"115286138\",\"indices\":[113,124]}],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\">Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":66169750,\"id_str\":\"66169750\",\"name\":\"<NAME>,MM,MBA.\",\"screen_name\":\"andrewenas\",\"location\":\"Jakarta\",\"description\":\"#PartaiSolidaritasIndonesia | https:\\/\\/t.co\\/ouBhFuQNs7 | @psi_id \\nCaleg DPR-RI Dapil SULAWESI UTARA (No.Urut:2)\\n| Columnist | Exec.Director | Philosophy&Photography | Traveller\",\"url\":null,\"entities\":{\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ouBhFuQNs7\",\"expanded_url\":\"http:\\/\\/psi.id\",\"display_url\":\"psi.id\",\"indices\":[30,53]}]}},\"protected\":false,\"followers_count\":3388,\"friends_count\":3194,\"listed_count\":44,\"created_at\":\"Sun Aug 16 18:59:20 +0000 2009\",\"favourites_count\":10796,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":29031,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"022330\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme15\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme15\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1020504455207374848\\/caqo1iv7_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1020504455207374848\\/caqo1iv7_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/66169750\\/1532822333\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"A8C7F7\",\"profile_sidebar_fill_color\":\"C0DFEC\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Thu Jul 25 07:37:29 +0000 2019\",\"id\":1154294584676978688,\"id_str\":\"1154294584676978688\",\"text\":\"Mengenang Ucapan AM Fatwa (Alm):\\nDI SEMUA DPRD ADA \'PERMAINAN\', BARU AHOK YG BERANI MEMBONGKAR!\\n\\n@basuki_btp\\u2026 https:\\/\\/t.co\\/KaSjLpqzvX\",\"truncated\":true,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"basuki_btp\",\"name\":\"<NAME>\",\"id\":115286138,\"id_str\":\"115286138\",\"indices\":[97,108]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/KaSjLpqzvX\",\"expanded_url\":\"https:\\/\\/twitter.com\\/i\\/web\\/status\\/1154294584676978688\",\"display_url\":\"twitter.com\\/i\\/web\\/status\\/1\\u2026\",\"indices\":[110,133]}]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\">Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":66169750,\"id_str\":\"66169750\",\"name\":\"<NAME>,MM,MBA.\",\"screen_name\":\"andrewenas\",\"location\":\"Jakarta\",\"description\":\"#PartaiSolidaritasIndonesia | https:\\/\\/t.co\\/ouBhFuQNs7 | @psi_id \\nCaleg DPR-RI Dapil SULAWESI UTARA (No.Urut:2)\\n| Columnist | Exec.Director | Philosophy&Photography | Traveller\",\"url\":null,\"entities\":{\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ouBhFuQNs7\",\"expanded_url\":\"http:\\/\\/psi.id\",\"display_url\":\"psi.id\",\"indices\":[30,53]}]}},\"protected\":false,\"followers_count\":3388,\"friends_count\":3194,\"listed_count\":44,\"created_at\":\"Sun Aug 16 18:59:20 +0000 2009\",\"favourites_count\":10796,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":29031,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"022330\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme15\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme15\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1020504455207374848\\/caqo1iv7_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1020504455207374848\\/caqo1iv7_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/66169750\\/1532822333\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"A8C7F7\",\"profile_sidebar_fill_color\":\"C0DFEC\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":{\"id\":\"019ffe0a3471b036\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/019ffe0a3471b036.json\",\"place_type\":\"city\",\"name\":\"<NAME>\",\"full_name\":\"<NAME>, Indonesia\",\"country_code\":\"ID\",\"country\":\"Indonesia\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[106.80135300000000597719918005168437957763671875,-6.22684100000000029240254661999642848968505859375],[106.83292199999999638748704455792903900146484375,-6.22684100000000029240254661999642848968505859375],[106.83292199999999638748704455792903900146484375,-6.1763799999999999812416717759333550930023193359375],[106.80135300000000597719918005168437957763671875,-6.1763799999999999812416717759333550930023193359375]]]},\"attributes\":[]},\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":5,\"favorite_count\":6,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"in\"},\"is_quote_status\":false,\"retweet_count\":5,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"}', NULL, NULL, 'rt andrewenas kenang ucap am fatwa alm di semua dprd ada main baru ahok yg berani bongkar basuki btp dprddkijakart', 'jokowi'),
(390, 'Penjaga Villa & NKRI', '@herditiya1', 2147483647, 'Lulusan UI tolak gaji 8 juta.\n\nJokowi lulusan UGM ngak masalah tuh jadi petugas partai.\n\nYang penting kerja, kerja, kerja!!!', 'positif', '4543', '35', 'Pas di Puncak ', 'No', 5, 'Thu Jul 25 10:21:03 +0000 2019', 'Thu Jun 19 09:52:03 +0000 2014', '20190725102406', '{\"created_at\":\"Thu Jul 25 10:21:03 +0000 2019\",\"id\":1154335747773620225,\"id_str\":\"1154335747773620225\",\"text\":\"Lulusan UI tolak gaji 8 juta.\\n\\nJokowi lulusan UGM ngak masalah tuh jadi petugas partai.\\n\\nYang penting kerja, kerja, kerja!!!\",\"truncated\":false,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\">Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":2576569506,\"id_str\":\"2576569506\",\"name\":\"Pen<NAME> & NKRI\",\"screen_name\":\"herditiya1\",\"location\":\"Pas di Puncak \",\"description\":\"1X24 Jam Tamu Wajib Lapor!\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4543,\"friends_count\":35,\"listed_count\":9,\"created_at\":\"Thu Jun 19 09:52:03 +0000 2014\",\"favourites_count\":433,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":36496,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1150425189542350848\\/NaJgcOK9_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1150425189542350848\\/NaJgcOK9_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2576569506\\/1554816231\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":1,\"favorite_count\":1,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"}', NULL, NULL, 'lulus ui tolak gaji 8 juta jokowi lulus ugm ngak masalah tuh jadi tugas partai yang penting kerja kerja kerja', 'jokowi'),
(391, '<NAME>', '@LinggaaNi', 2147483647, 'RT @NUgarislucu: Politik itu dinamis. Jangan kaget kalau tiba-tiba:\nAnies dicalonkan NasDem\nPrabowo koalisi sama Jokowi\nFadli Zon jadi Ment…', 'positif', '289', '85', 'Kendal, Central Java', 'No', 6, 'Thu Jul 25 10:20:54 +0000 2019', 'Sat Dec 22 02:07:04 +0000 2012', '20190725102406', '{\"created_at\":\"Thu Jul 25 10:20:54 +0000 2019\",\"id\":1154335708594618368,\"id_str\":\"1154335708594618368\",\"text\":\"RT @NUgarislucu: Politik itu dinamis. Jangan kaget kalau tiba-tiba:\\nAnies dicalonkan NasDem\\nPrabowo koalisi sama Jokowi\\nFadli Zon jadi Ment\\u2026\",\"truncated\":false,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"NUgarislucu\",\"name\":\"<NAME>\",\"id\":3069064298,\"id_str\":\"3069064298\",\"indices\":[3,15]}],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\">Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1027568887,\"id_str\":\"1027568887\",\"name\":\"<NAME>\",\"screen_name\":\"LinggaaNi\",\"location\":\"Kendal, Central Java\",\"description\":\"Manusia tanpa skincare.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":289,\"friends_count\":85,\"listed_count\":0,\"created_at\":\"Sat Dec 22 02:07:04 +0000 2012\",\"favourites_count\":318,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":4858,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"642D8B\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme10\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme10\\/bg.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1128798360519864320\\/6UfKlR1F_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1128798360519864320\\/6UfKlR1F_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1027568887\\/1557961275\",\"profile_link_color\":\"981CEB\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"7AC3EE\",\"profile_text_color\":\"3D1957\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"regular\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Thu Jul 25 08:34:32 +0000 2019\",\"id\":1154308943667027970,\"id_str\":\"1154308943667027970\",\"text\":\"Politik itu dinamis. Jangan kaget kalau tiba-tiba:\\nAnies dicalonkan NasDem\\nPrabowo koalisi sama Jokowi\\nFadli Zon ja\\u2026 https:\\/\\/t.co\\/zr6Of88HkG\",\"truncated\":true,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/zr6Of88HkG\",\"expanded_url\":\"https:\\/\\/twitter.com\\/i\\/web\\/status\\/1154308943667027970\",\"display_url\":\"twitter.com\\/i\\/web\\/status\\/1\\u2026\",\"indices\":[117,140]}]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\">Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":3069064298,\"id_str\":\"3069064298\",\"name\":\"<NAME>\",\"screen_name\":\"NUgarislucu\",\"location\":\"\",\"description\":\"Sampaikan Kebenaran Walaupun itu Lucu\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":310443,\"friends_count\":211,\"listed_count\":183,\"created_at\":\"Mon Mar 09 04:05:15 +0000 2015\",\"favourites_count\":2309,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":39429,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/732870423499571200\\/ZH9Si4lJ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/732870423499571200\\/ZH9Si4lJ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3069064298\\/1467695403\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":381,\"favorite_count\":1163,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"},\"is_quote_status\":false,\"retweet_count\":381,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"}', NULL, NULL, 'rt nugarislucu politik itu dinamis jangan kaget kalau tiba anies calon nasdem prabowo koalisi sama jokowi fadli zon jadi ment', 'jokowi'),
(392, 'Sulung', '@Sulung110', 2147483647, 'RT @pakdhe_J: @jokowi Obrolan asik Pakde Jokowi dan Budhe @susipudjiastuti di speed boat... Awas Pakdhe Mabok laut, tegang bgt itu wajah ha…', 'positif', '23', '164', '', 'No', 0, 'Thu Jul 25 10:20:50 +0000 2019', 'Fri Apr 26 18:13:01 +0000 2019', '20190725102406', '{\"created_at\":\"Thu Jul 25 10:20:50 +0000 2019\",\"id\":1154335695260938246,\"id_str\":\"1154335695260938246\",\"text\":\"RT @pakdhe_J: @jokowi Obrolan asik <NAME> dan Budhe @susipudjiastuti di speed boat... Awas Pakdhe Mabok laut, tegang bgt itu wajah ha\\u2026\",\"truncated\":false,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"pakdhe_J\",\"name\":\"<NAME>\",\"id\":1010239935910035456,\"id_str\":\"1010239935910035456\",\"indices\":[3,12]},{\"screen_name\":\"jokowi\",\"name\":\"<NAME>\",\"id\":366987179,\"id_str\":\"366987179\",\"indices\":[14,21]},{\"screen_name\":\"susipudjiastuti\",\"name\":\"<NAME>\",\"id\":2606229566,\"id_str\":\"2606229566\",\"indices\":[58,74]}],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\">Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1121839614409367552,\"id_str\":\"1121839614409367552\",\"name\":\"Sulung\",\"screen_name\":\"Sulung110\",\"location\":\"\",\"description\":\"Menyuarakan Kebenaran\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":23,\"friends_count\":164,\"listed_count\":0,\"created_at\":\"Fri Apr 26 18:13:01 +0000 2019\",\"favourites_count\":2542,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1679,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1121848091907244032\\/dpv6N-fW_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1121848091907244032\\/dpv6N-fW_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Thu Jul 25 06:37:45 +0000 2019\",\"id\":1154279551750459392,\"id_str\":\"1154279551750459392\",\"text\":\"@jokowi Obrolan asik Pakde Jokowi dan Budhe @susipudjiastuti di speed boat... Awas Pakdhe Mabok laut, tegang bgt it\\u2026 https:\\/\\/t.co\\/xjiNMYWd0c\",\"truncated\":true,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"jokowi\",\"name\":\"<NAME>\",\"id\":366987179,\"id_str\":\"366987179\",\"indices\":[0,7]},{\"screen_name\":\"susipudjiastuti\",\"name\":\"<NAME>\",\"id\":2606229566,\"id_str\":\"2606229566\",\"indices\":[44,60]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/xjiNMYWd0c\",\"expanded_url\":\"https:\\/\\/twitter.com\\/i\\/web\\/status\\/1154279551750459392\",\"display_url\":\"twitter.com\\/i\\/web\\/status\\/1\\u2026\",\"indices\":[117,140]}]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\">Twitter for Android<\\/a>\",\"in_reply_to_status_id\":1154278978439356416,\"in_reply_to_status_id_str\":\"1154278978439356416\",\"in_reply_to_user_id\":366987179,\"in_reply_to_user_id_str\":\"366987179\",\"in_reply_to_screen_name\":\"jokowi\",\"user\":{\"id\":1010239935910035456,\"id_str\":\"1010239935910035456\",\"name\":\"<NAME>\",\"screen_name\":\"pakdhe_J\",\"location\":\"\",\"description\":\"Karena merdeka sesungguhnya ialah menyempurnakan, bukan menuntut kesempurnaan.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":914,\"friends_count\":69,\"listed_count\":0,\"created_at\":\"Fri Jun 22 19:15:44 +0000 2018\",\"favourites_count\":4388,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":5268,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1150286500430352389\\/ZRxZUcjZ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1150286500430352389\\/ZRxZUcjZ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1010239935910035456\\/1560800077\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":7,\"favorite_count\":27,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":true,\"lang\":\"in\"},\"is_quote_status\":false,\"retweet_count\":7,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"}', NULL, NULL, 'rt pakdhe j jokowi obrol asik pakde jokowi dan budhe susipudjiastuti di speed boat awas pakdhe mabok laut tegang bgt itu wajah ha', 'jokowi'),
(393, 'Noveriani', '@Noveriani5', 2147483647, '@IrHMFaqih @Gerindra @prabowo @jokowi @fadlizon Sebaiknya tdk usah lah .kasi kesempatam yg muda muda ..yg berpengalaman', 'positif', '144', '45', 'Medan Kota, Indonesia', 'No', 0, 'Thu Jul 25 10:20:48 +0000 2019', 'Wed Sep 05 09:40:35 +0000 2018', '20190725102406', '{\"created_at\":\"Thu Jul 25 10:20:48 +0000 2019\",\"id\":1154335686637449217,\"id_str\":\"1154335686637449217\",\"text\":\"@IrHMFaqih @Gerindra @prabowo @jokowi @fadlizon Sebaiknya tdk usah lah .kasi kesempatam yg muda muda ..yg berpengalaman\",\"truncated\":false,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"IrHMFaqih\",\"name\":\"<NAME>\",\"id\":1052505187414208512,\"id_str\":\"1052505187414208512\",\"indices\":[0,10]},{\"screen_name\":\"Gerindra\",\"name\":\"<NAME>\",\"id\":397673651,\"id_str\":\"397673651\",\"indices\":[11,20]},{\"screen_name\":\"prabowo\",\"name\":\"<NAME>\",\"id\":40580714,\"id_str\":\"40580714\",\"indices\":[21,29]},{\"screen_name\":\"jokowi\",\"name\":\"<NAME>\",\"id\":366987179,\"id_str\":\"366987179\",\"indices\":[30,37]},{\"screen_name\":\"fadlizon\",\"name\":\"<NAME>\",\"id\":79139422,\"id_str\":\"79139422\",\"indices\":[38,47]}],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\">Twitter for Android<\\/a>\",\"in_reply_to_status_id\":1154051725906415616,\"in_reply_to_status_id_str\":\"1154051725906415616\",\"in_reply_to_user_id\":1052505187414208512,\"in_reply_to_user_id_str\":\"1052505187414208512\",\"in_reply_to_screen_name\":\"IrHMFaqih\",\"user\":{\"id\":1037274284274593792,\"id_str\":\"1037274284274593792\",\"name\":\"Noveriani\",\"screen_name\":\"Noveriani5\",\"location\":\"Medan Kota, Indonesia\",\"description\":\"Medan\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":144,\"friends_count\":45,\"listed_count\":0,\"created_at\":\"Wed Sep 05 09:40:35 +0000 2018\",\"favourites_count\":8913,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2272,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1048135253682872320\\/U6c_HYYd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1048135253682872320\\/U6c_HYYd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1037274284274593792\\/1538729891\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":0,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"}', NULL, NULL, 'irhmfaqih gerindra prabowo jokowi fadlizon baik tdk usah lah kasi kesempatam yg muda muda yg alam', 'jokowi'),
(394, 'Alfian', '@Alfian49144687', 2147483647, 'RT @IreneViena: Upaya Prabowo menghapus stigma dan melawan fitnah keji itu hanya EFEKTIF jika beliau jadi pemimpin rezim mendatang bersama…', 'positif', '65', '158', '', 'No', 0, 'Thu Jul 25 10:20:47 +0000 2019', 'Wed Jun 26 17:20:35 +0000 2019', '20190725102406', '{\"created_at\":\"Thu Jul 25 10:20:47 +0000 2019\",\"id\":1154335680589287424,\"id_str\":\"1154335680589287424\",\"text\":\"RT @IreneViena: Upaya Prabowo menghapus stigma dan melawan fitnah keji itu hanya EFEKTIF jika beliau jadi pemimpin rezim mendatang bersama\\u2026\",\"truncated\":false,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"IreneViena\",\"name\":\"Irene\",\"id\":805629166095769600,\"id_str\":\"805629166095769600\",\"indices\":[3,14]}],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\">Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1143932079576473600,\"id_str\":\"1143932079576473600\",\"name\":\"Alfian\",\"screen_name\":\"Alfian49144687\",\"location\":\"\",\"description\":\"jujur jujur dan jujur\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":65,\"friends_count\":158,\"listed_count\":0,\"created_at\":\"Wed Jun 26 17:20:35 +0000 2019\",\"favourites_count\":997,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":733,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1143932400587509760\\/5ztAPCke_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1143932400587509760\\/5ztAPCke_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Thu Jul 25 10:16:43 +0000 2019\",\"id\":1154334656608837633,\"id_str\":\"1154334656608837633\",\"text\":\"Upaya Prabowo menghapus stigma dan melawan fitnah keji itu hanya EFEKTIF jika beliau jadi pemimpin rezim mendatang\\u2026 https:\\/\\/t.co\\/7KhxCnADWu\",\"truncated\":true,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/7KhxCnADWu\",\"expanded_url\":\"https:\\/\\/twitter.com\\/i\\/web\\/status\\/1154334656608837633\",\"display_url\":\"twitter.com\\/i\\/web\\/status\\/1\\u2026\",\"indices\":[116,139]}]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\">Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":805629166095769600,\"id_str\":\"805629166095769600\",\"name\":\"Irene\",\"screen_name\":\"IreneViena\",\"location\":\"Hong Kong\",\"description\":\"Menagih janjimu nan tak kunjung tunai seperti Menunggu Godot di Salihara\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":111348,\"friends_count\":1488,\"listed_count\":80,\"created_at\":\"Mon Dec 05 04:25:35 +0000 2016\",\"favourites_count\":65,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":46774,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/924510371540373504\\/AZVzFqZ8_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/924510371540373504\\/AZVzFqZ8_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/805629166095769600\\/1509255546\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":5,\"favorite_count\":30,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"},\"is_quote_status\":false,\"retweet_count\":5,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"}', NULL, NULL, 'rt ireneviena upaya prabowo hapus stigma dan lawan fitnah keji itu hanya efektif jika beliau jadi pimpin rezim datang sama', 'jokowi'),
(395, '<NAME>', '@arifaminullahpr', 2147483647, 'RT @TirtoID: Jokowi secara resmi telah menerbitkan Peraturan Pemerintah yang mengatur tata cara pencatatan perkawinan bagi penghayat keperc…', 'positif', '546', '38', 'Malang, Jawa Timur', 'No', 7, 'Thu Jul 25 10:20:40 +0000 2019', 'Wed Sep 28 04:46:43 +0000 2011', '20190725102406', '{\"created_at\":\"Thu Jul 25 10:20:40 +0000 2019\",\"id\":1154335651250098176,\"id_str\":\"1154335651250098176\",\"text\":\"RT @TirtoID: Jokowi secara resmi telah menerbitkan Peraturan Pemerintah yang mengatur tata cara pencatatan perkawinan bagi penghayat keperc\\u2026\",\"truncated\":false,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"TirtoID\",\"name\":\"tirto.id\",\"id\":4187275698,\"id_str\":\"4187275698\",\"indices\":[3,11]}],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\">Twitter for iPhone<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":381340505,\"id_str\":\"381340505\",\"name\":\"<NAME>\",\"screen_name\":\"arifaminullahpr\",\"location\":\"Malang, Jawa Timur\",\"description\":\"Feels bad man\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":546,\"friends_count\":38,\"listed_count\":0,\"created_at\":\"Wed Sep 28 04:46:43 +0000 2011\",\"favourites_count\":57,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":13581,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"352726\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1151576748070334464\\/KUX-N_g9_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1151576748070334464\\/KUX-N_g9_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/381340505\\/1551859317\",\"profile_link_color\":\"D02B55\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Thu Jul 25 10:16:31 +0000 2019\",\"id\":1154334608667766784,\"id_str\":\"1154334608667766784\",\"text\":\"Jokowi secara resmi telah menerbitkan Peraturan Pemerintah yang mengatur tata cara pencatatan perkawinan bagi pengh\\u2026 https:\\/\\/t.co\\/hgixqWsNDN\",\"truncated\":true,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/hgixqWsNDN\",\"expanded_url\":\"https:\\/\\/twitter.com\\/i\\/web\\/status\\/1154334608667766784\",\"display_url\":\"twitter.com\\/i\\/web\\/status\\/1\\u2026\",\"indices\":[117,140]}]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"https:\\/\\/about.twitter.com\\/products\\/tweetdeck\\\" rel=\\\"nofollow\\\">TweetDeck<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":4187275698,\"id_str\":\"4187275698\",\"name\":\"tirto.id\",\"screen_name\":\"TirtoID\",\"location\":\"Indonesia\",\"description\":\"Jurnalisme data. Media analisis. Infografik ciamik.\",\"url\":\"https:\\/\\/t.co\\/Ss5eQAlNn3\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Ss5eQAlNn3\",\"expanded_url\":\"https:\\/\\/tirto.id\\/\",\"display_url\":\"tirto.id\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":310656,\"friends_count\":45,\"listed_count\":647,\"created_at\":\"Tue Nov 10 06:15:05 +0000 2015\",\"favourites_count\":992,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":true,\"statuses_count\":53117,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1009463042206150657\\/MVj3R8no_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1009463042206150657\\/MVj3R8no_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/4187275698\\/1529509859\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":21,\"favorite_count\":31,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"in\"},\"is_quote_status\":false,\"retweet_count\":21,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"}', NULL, NULL, 'rt tirtoid jokowi cara resmi telah terbit atur perintah yang atur tata cara catat kawin bagi hayat keperc', 'jokowi'),
(396, '<NAME>', '@HisyamMhp', 2147483647, 'RT @TirtoID: Jokowi secara resmi telah menerbitkan Peraturan Pemerintah yang mengatur tata cara pencatatan perkawinan bagi penghayat keperc…', 'positif', '139', '256', 'Malang', 'No', 6, 'Thu Jul 25 10:20:39 +0000 2019', 'Tue Jun 11 13:02:34 +0000 2013', '20190725102406', '{\"created_at\":\"Thu Jul 25 10:20:39 +0000 2019\",\"id\":1154335646682476544,\"id_str\":\"1154335646682476544\",\"text\":\"RT @TirtoID: Jokowi secara resmi telah menerbitkan Peraturan Pemerintah yang mengatur tata cara pencatatan perkawinan bagi penghayat keperc\\u2026\",\"truncated\":false,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"TirtoID\",\"name\":\"tirto.id\",\"id\":4187275698,\"id_str\":\"4187275698\",\"indices\":[3,11]}],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\">Twitter for iPhone<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1502968248,\"id_str\":\"1502968248\",\"name\":\"<NAME>\",\"screen_name\":\"HisyamMhp\",\"location\":\"Malang\",\"description\":\"Don\'t smoke, Don\'t drink, Don\'t fuck, At least I can fucking think, I can\'t keep up, I\'m out of step with the world |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":139,\"friends_count\":256,\"listed_count\":0,\"created_at\":\"Tue Jun 11 13:02:34 +0000 2013\",\"favourites_count\":445,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1607,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1032222562527326209\\/6eh1pjyT_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1032222562527326209\\/6eh1pjyT_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1502968248\\/1525697216\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Thu Jul 25 10:16:31 +0000 2019\",\"id\":1154334608667766784,\"id_str\":\"1154334608667766784\",\"text\":\"Jokowi secara resmi telah menerbitkan Peraturan Pemerintah yang mengatur tata cara pencatatan perkawinan bagi pengh\\u2026 https:\\/\\/t.co\\/hgixqWsNDN\",\"truncated\":true,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/hgixqWsNDN\",\"expanded_url\":\"https:\\/\\/twitter.com\\/i\\/web\\/status\\/1154334608667766784\",\"display_url\":\"twitter.com\\/i\\/web\\/status\\/1\\u2026\",\"indices\":[117,140]}]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"https:\\/\\/about.twitter.com\\/products\\/tweetdeck\\\" rel=\\\"nofollow\\\">TweetDeck<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":4187275698,\"id_str\":\"4187275698\",\"name\":\"tirto.id\",\"screen_name\":\"TirtoID\",\"location\":\"Indonesia\",\"description\":\"Jurnalisme data. Media analisis. Infografik ciamik.\",\"url\":\"https:\\/\\/t.co\\/Ss5eQAlNn3\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Ss5eQAlNn3\",\"expanded_url\":\"https:\\/\\/tirto.id\\/\",\"display_url\":\"tirto.id\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":310656,\"friends_count\":45,\"listed_count\":647,\"created_at\":\"Tue Nov 10 06:15:05 +0000 2015\",\"favourites_count\":992,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":true,\"statuses_count\":53117,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1009463042206150657\\/MVj3R8no_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1009463042206150657\\/MVj3R8no_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/4187275698\\/1529509859\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":21,\"favorite_count\":31,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"in\"},\"is_quote_status\":false,\"retweet_count\":21,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"}', NULL, NULL, 'rt tirtoid jokowi cara resmi telah terbit atur perintah yang atur tata cara catat kawin bagi hayat keperc', 'jokowi');
INSERT INTO `crawl_data` (`id`, `name`, `screen_name`, `tweet_id`, `text`, `flag`, `followers_count`, `following_count`, `location`, `verified`, `different_year`, `created_post`, `created_account`, `token_search`, `result_crawl_json`, `class_hoax`, `class_hoax_info`, `tokenizing`, `keyword`) VALUES
(397, '<NAME>', '@ichsanesia', 2147483647, 'RT @TirtoID: Jokowi secara resmi telah menerbitkan Peraturan Pemerintah yang mengatur tata cara pencatatan perkawinan bagi penghayat keperc…', 'positif', '880', '229', 'Indonesia', 'No', 6, 'Thu Jul 25 10:20:38 +0000 2019', 'Sat Mar 23 06:47:33 +0000 2013', '20190725102406', '{\"created_at\":\"Thu Jul 25 10:20:38 +0000 2019\",\"id\":1154335643633192961,\"id_str\":\"1154335643633192961\",\"text\":\"RT @TirtoID: Jokowi secara resmi telah menerbitkan Peraturan Pemerintah yang mengatur tata cara pencatatan perkawinan bagi penghayat keperc\\u2026\",\"truncated\":false,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"TirtoID\",\"name\":\"tirto.id\",\"id\":4187275698,\"id_str\":\"4187275698\",\"indices\":[3,11]}],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\">Twitter for iPhone<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1290651806,\"id_str\":\"1290651806\",\"name\":\"<NAME>\",\"screen_name\":\"ichsanesia\",\"location\":\"Indonesia\",\"description\":\"Twitter University \\ud83c\\udf93\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":880,\"friends_count\":229,\"listed_count\":4,\"created_at\":\"Sat Mar 23 06:47:33 +0000 2013\",\"favourites_count\":503,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":27428,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme18\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme18\\/bg.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1135669278320091136\\/b-EP_twv_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1135669278320091136\\/b-EP_twv_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1290651806\\/1563460616\",\"profile_link_color\":\"161716\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"regular\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Thu Jul 25 10:16:31 +0000 2019\",\"id\":1154334608667766784,\"id_str\":\"1154334608667766784\",\"text\":\"Jokowi secara resmi telah menerbitkan Peraturan Pemerintah yang mengatur tata cara pencatatan perkawinan bagi pengh\\u2026 https:\\/\\/t.co\\/hgixqWsNDN\",\"truncated\":true,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/hgixqWsNDN\",\"expanded_url\":\"https:\\/\\/twitter.com\\/i\\/web\\/status\\/1154334608667766784\",\"display_url\":\"twitter.com\\/i\\/web\\/status\\/1\\u2026\",\"indices\":[117,140]}]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"https:\\/\\/about.twitter.com\\/products\\/tweetdeck\\\" rel=\\\"nofollow\\\">TweetDeck<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":4187275698,\"id_str\":\"4187275698\",\"name\":\"tirto.id\",\"screen_name\":\"TirtoID\",\"location\":\"Indonesia\",\"description\":\"Jurnalisme data. Media analisis. Infografik ciamik.\",\"url\":\"https:\\/\\/t.co\\/Ss5eQAlNn3\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Ss5eQAlNn3\",\"expanded_url\":\"https:\\/\\/tirto.id\\/\",\"display_url\":\"tirto.id\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":310656,\"friends_count\":45,\"listed_count\":647,\"created_at\":\"Tue Nov 10 06:15:05 +0000 2015\",\"favourites_count\":992,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":true,\"statuses_count\":53117,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1009463042206150657\\/MVj3R8no_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1009463042206150657\\/MVj3R8no_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/4187275698\\/1529509859\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":21,\"favorite_count\":31,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"in\"},\"is_quote_status\":false,\"retweet_count\":21,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"}', NULL, NULL, 'rt tirtoid jokowi cara resmi telah terbit atur perintah yang atur tata cara catat kawin bagi hayat keperc', 'jokowi'),
(398, 'gmx.', '@gemaktrie', 2147483647, 'RT @MarnoMbois: Pak @jokowi, saya menyarankan adanya Menteri Urusan Orang Lain supaya para atlet ghibah di Indonesia ada yang koordinir.\n\n#…', 'positif', '148', '181', 'Gunung Kidul, Yogyakarta', 'No', 2, 'Thu Jul 25 10:20:37 +0000 2019', 'Sat Nov 12 09:14:17 +0000 2016', '20190725102406', '{\"created_at\":\"Thu Jul 25 10:20:37 +0000 2019\",\"id\":1154335639271198721,\"id_str\":\"1154335639271198721\",\"text\":\"RT @MarnoMbois: Pak @jokowi, saya menyarankan adanya Menteri Urusan Orang Lain supaya para atlet ghibah di Indonesia ada yang koordinir.\\n\\n#\\u2026\",\"truncated\":false,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"MarnoMbois\",\"name\":\"<NAME>\",\"id\":3041601229,\"id_str\":\"3041601229\",\"indices\":[3,14]},{\"screen_name\":\"jokowi\",\"name\":\"<NAME>\",\"id\":366987179,\"id_str\":\"366987179\",\"indices\":[20,27]}],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\">Twitter for iPhone<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":797366899038294016,\"id_str\":\"797366899038294016\",\"name\":\"gmx.\",\"screen_name\":\"gemaktrie\",\"location\":\"Gunung Kidul, Yogyakarta\",\"description\":\"stay cool :) UK|7.0\",\"url\":\"https:\\/\\/t.co\\/9zDdQ6holm\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/9zDdQ6holm\",\"expanded_url\":\"http:\\/\\/Instagram.com\\/gemaktrie\",\"display_url\":\"Instagram.com\\/gemaktrie\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":148,\"friends_count\":181,\"listed_count\":0,\"created_at\":\"Sat Nov 12 09:14:17 +0000 2016\",\"favourites_count\":964,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":27061,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1152891935272529921\\/UnaSyAaZ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1152891935272529921\\/UnaSyAaZ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/797366899038294016\\/1548475434\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Thu Jul 25 09:13:57 +0000 2019\",\"id\":1154318863305080833,\"id_str\":\"1154318863305080833\",\"text\":\"Pak @jokowi, saya menyarankan adanya Menteri Urusan Orang Lain supaya para atlet ghibah di Indonesia ada yang koordinir.\\n\\n#requestmenteri\",\"truncated\":false,\"entities\":{\"hashtags\":[{\"text\":\"requestmenteri\",\"indices\":[122,137]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"jokowi\",\"name\":\"<NAME>\",\"id\":366987179,\"id_str\":\"366987179\",\"indices\":[4,11]}],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\">Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":3041601229,\"id_str\":\"3041601229\",\"name\":\"<NAME>\",\"screen_name\":\"MarnoMbois\",\"location\":\"<EMAIL> \",\"description\":\"Piye perasaanmu nek dadi kates? \\/\\/ IG: marnologue_\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":95315,\"friends_count\":0,\"listed_count\":71,\"created_at\":\"Wed Feb 25 16:24:28 +0000 2015\",\"favourites_count\":4,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":11324,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1033618112875130880\\/rwuS9kAI_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1033618112875130880\\/rwuS9kAI_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3041601229\\/1558181205\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":166,\"favorite_count\":239,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"},\"is_quote_status\":false,\"retweet_count\":166,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"}', NULL, NULL, 'rt marnombois pak jokowi saya saran ada menteri urus orang lain supaya para atlet ghibah di indonesia ada yang koordinir', 'jokowi'),
(399, '<NAME>', '@igaluhh', 2147483647, 'RT @MarnoMbois: Pak @jokowi, kami juga menyarankan untuk adanya Menteri Penguapan, guna mengarahkan pelajar+mahasiswa yang ongap-angop wae…', 'positif', '320', '241', '', 'No', 5, 'Thu Jul 25 10:20:35 +0000 2019', 'Mon Oct 14 15:41:56 +0000 2013', '20190725102406', '{\"created_at\":\"Thu Jul 25 10:20:35 +0000 2019\",\"id\":1154335628672163840,\"id_str\":\"1154335628672163840\",\"text\":\"RT @MarnoMbois: Pak @jokowi, kami juga menyarankan untuk adanya Menteri Penguapan, guna mengarahkan pelajar+mahasiswa yang ongap-angop wae\\u2026\",\"truncated\":false,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"MarnoMbois\",\"name\":\"<NAME>\",\"id\":3041601229,\"id_str\":\"3041601229\",\"indices\":[3,14]},{\"screen_name\":\"jokowi\",\"name\":\"<NAME>\",\"id\":366987179,\"id_str\":\"366987179\",\"indices\":[20,27]}],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\">Twitter for iPhone<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1960879422,\"id_str\":\"1960879422\",\"name\":\"<NAME>\",\"screen_name\":\"igaluhh\",\"location\":\"\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":320,\"friends_count\":241,\"listed_count\":0,\"created_at\":\"Mon Oct 14 15:41:56 +0000 2013\",\"favourites_count\":2106,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":5055,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"204354\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1145162577564991488\\/pWLuHEII_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1145162577564991488\\/pWLuHEII_normal.jpg\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Thu Jul 25 09:40:09 +0000 2019\",\"id\":1154325455173849088,\"id_str\":\"1154325455173849088\",\"text\":\"Pak @jokowi, kami juga menyarankan untuk adanya Menteri Penguapan, guna mengarahkan pelajar+mahasiswa yang ongap-an\\u2026 https:\\/\\/t.co\\/asB7EV1kTk\",\"truncated\":true,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"jokowi\",\"name\":\"<NAME>\",\"id\":366987179,\"id_str\":\"366987179\",\"indices\":[4,11]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/asB7EV1kTk\",\"expanded_url\":\"https:\\/\\/twitter.com\\/i\\/web\\/status\\/1154325455173849088\",\"display_url\":\"twitter.com\\/i\\/web\\/status\\/1\\u2026\",\"indices\":[117,140]}]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\">Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":3041601229,\"id_str\":\"3041601229\",\"name\":\"<NAME>\",\"screen_name\":\"MarnoMbois\",\"location\":\"<EMAIL> \",\"description\":\"Piye perasaanmu nek dadi kates? \\/\\/ IG: marnologue_\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":95315,\"friends_count\":0,\"listed_count\":71,\"created_at\":\"Wed Feb 25 16:24:28 +0000 2015\",\"favourites_count\":4,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":11324,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1033618112875130880\\/rwuS9kAI_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1033618112875130880\\/rwuS9kAI_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3041601229\\/1558181205\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":79,\"favorite_count\":131,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"},\"is_quote_status\":false,\"retweet_count\":79,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"}', NULL, NULL, 'rt marnombois pak jokowi kami juga saran untuk ada menteri uap guna arah ajar mahasiswa yang ongap-angop wae', 'jokowi'),
(400, '<NAME>.', '@yiayne', 2147483647, 'RT @TirtoID: Jokowi secara resmi telah menerbitkan Peraturan Pemerintah yang mengatur tata cara pencatatan perkawinan bagi penghayat keperc…', 'positif', '265', '517', '', 'No', 1, 'Thu Jul 25 10:20:19 +0000 2019', 'Wed Jan 03 16:36:32 +0000 2018', '20190725102406', '{\"created_at\":\"Thu Jul 25 10:20:19 +0000 2019\",\"id\":1154335562620235776,\"id_str\":\"1154335562620235776\",\"text\":\"RT @TirtoID: Jokowi secara resmi telah menerbitkan Peraturan Pemerintah yang mengatur tata cara pencatatan perkawinan bagi penghayat keperc\\u2026\",\"truncated\":false,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"TirtoID\",\"name\":\"tirto.id\",\"id\":4187275698,\"id_str\":\"4187275698\",\"indices\":[3,11]}],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\">Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":948593931758878720,\"id_str\":\"948593931758878720\",\"name\":\"<NAME>.\",\"screen_name\":\"yiayne\",\"location\":\"\",\"description\":\"Terbawa gelombang.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":265,\"friends_count\":517,\"listed_count\":2,\"created_at\":\"Wed Jan 03 16:36:32 +0000 2018\",\"favourites_count\":1219,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":19522,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1152842117829365760\\/-AIlshKN_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1152842117829365760\\/-AIlshKN_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/948593931758878720\\/1563923224\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Thu Jul 25 10:16:31 +0000 2019\",\"id\":1154334608667766784,\"id_str\":\"1154334608667766784\",\"text\":\"Jokowi secara resmi telah menerbitkan Peraturan Pemerintah yang mengatur tata cara pencatatan perkawinan bagi pengh\\u2026 https:\\/\\/t.co\\/hgixqWsNDN\",\"truncated\":true,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/hgixqWsNDN\",\"expanded_url\":\"https:\\/\\/twitter.com\\/i\\/web\\/status\\/1154334608667766784\",\"display_url\":\"twitter.com\\/i\\/web\\/status\\/1\\u2026\",\"indices\":[117,140]}]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"https:\\/\\/about.twitter.com\\/products\\/tweetdeck\\\" rel=\\\"nofollow\\\">TweetDeck<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":4187275698,\"id_str\":\"4187275698\",\"name\":\"tirto.id\",\"screen_name\":\"TirtoID\",\"location\":\"Indonesia\",\"description\":\"Jurnalisme data. Media analisis. Infografik ciamik.\",\"url\":\"https:\\/\\/t.co\\/Ss5eQAlNn3\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Ss5eQAlNn3\",\"expanded_url\":\"https:\\/\\/tirto.id\\/\",\"display_url\":\"tirto.id\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":310656,\"friends_count\":45,\"listed_count\":647,\"created_at\":\"Tue Nov 10 06:15:05 +0000 2015\",\"favourites_count\":992,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":true,\"statuses_count\":53117,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1009463042206150657\\/MVj3R8no_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1009463042206150657\\/MVj3R8no_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/4187275698\\/1529509859\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":21,\"favorite_count\":31,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"in\"},\"is_quote_status\":false,\"retweet_count\":21,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"}', NULL, NULL, 'rt tirtoid jokowi cara resmi telah terbit atur perintah yang atur tata cara catat kawin bagi hayat keperc', 'jokowi'),
(401, '<NAME>', '@Deandradc', 2147483647, 'RT @MarnoMbois: Pak @jokowi, kami juga menyarankan untuk adanya Menteri Penguapan, guna mengarahkan pelajar+mahasiswa yang ongap-angop wae…', 'positif', '584', '451', '', 'No', 8, 'Thu Jul 25 10:20:17 +0000 2019', 'Wed Sep 08 07:20:42 +0000 2010', '20190725102406', '{\"created_at\":\"Thu Jul 25 10:20:17 +0000 2019\",\"id\":1154335553044639745,\"id_str\":\"1154335553044639745\",\"text\":\"RT @MarnoMbois: Pak @jokowi, kami juga menyarankan untuk adanya Menteri Penguapan, guna mengarahkan pelajar+mahasiswa yang ongap-angop wae\\u2026\",\"truncated\":false,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"MarnoMbois\",\"name\":\"<NAME>\",\"id\":3041601229,\"id_str\":\"3041601229\",\"indices\":[3,14]},{\"screen_name\":\"jokowi\",\"name\":\"<NAME>\",\"id\":366987179,\"id_str\":\"366987179\",\"indices\":[20,27]}],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\">Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":188238767,\"id_str\":\"188238767\",\"name\":\"<NAME>\",\"screen_name\":\"Deandradc\",\"location\":\"\",\"description\":\"HIHI \\ud83d\\ude2c\\ud83d\\ude2c\",\"url\":\"https:\\/\\/t.co\\/deU91WiDBp\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/deU91WiDBp\",\"expanded_url\":\"https:\\/\\/ask.fm\\/Deandradc\",\"display_url\":\"ask.fm\\/Deandradc\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":584,\"friends_count\":451,\"listed_count\":0,\"created_at\":\"Wed Sep 08 07:20:42 +0000 2010\",\"favourites_count\":29,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":24661,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"E887ED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme9\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme9\\/bg.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1137680466834743296\\/515CwFEM_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1137680466834743296\\/515CwFEM_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/188238767\\/1473446588\",\"profile_link_color\":\"E81C4F\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"E3E2DE\",\"profile_text_color\":\"634047\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Thu Jul 25 09:40:09 +0000 2019\",\"id\":1154325455173849088,\"id_str\":\"1154325455173849088\",\"text\":\"Pak @jokowi, kami juga menyarankan untuk adanya Menteri Penguapan, guna mengarahkan pelajar+mahasiswa yang ongap-an\\u2026 https:\\/\\/t.co\\/asB7EV1kTk\",\"truncated\":true,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"jokowi\",\"name\":\"<NAME>\",\"id\":366987179,\"id_str\":\"366987179\",\"indices\":[4,11]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/asB7EV1kTk\",\"expanded_url\":\"https:\\/\\/twitter.com\\/i\\/web\\/status\\/1154325455173849088\",\"display_url\":\"twitter.com\\/i\\/web\\/status\\/1\\u2026\",\"indices\":[117,140]}]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\">Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":3041601229,\"id_str\":\"3041601229\",\"name\":\"<NAME>\",\"screen_name\":\"MarnoMbois\",\"location\":\"<EMAIL> \",\"description\":\"Piye perasaanmu nek dadi kates? \\/\\/ IG: marnologue_\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":95315,\"friends_count\":0,\"listed_count\":71,\"created_at\":\"Wed Feb 25 16:24:28 +0000 2015\",\"favourites_count\":4,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":11324,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1033618112875130880\\/rwuS9kAI_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1033618112875130880\\/rwuS9kAI_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3041601229\\/1558181205\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":79,\"favorite_count\":131,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"},\"is_quote_status\":false,\"retweet_count\":79,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"}', NULL, NULL, 'rt marnombois pak jokowi kami juga saran untuk ada menteri uap guna arah ajar mahasiswa yang ongap-angop wae', 'jokowi'),
(402, 'Ryana', '@Ryanaaaa_Fialll', 2147483647, 'RT @KamulyanSantri: \"Ahlan wa sahlan fi Indunesia...\" \n\nIndah sekali... \n\nPada dasarnya Pak @jokowi tak pernah anti Arab. Kecuali, Arab yg…', 'positif', '453', '302', '', 'No', 0, 'Thu Jul 25 10:20:15 +0000 2019', 'Mon May 27 12:09:14 +0000 2019', '20190725102406', '{\"created_at\":\"Thu Jul 25 10:20:15 +0000 2019\",\"id\":1154335547873222656,\"id_str\":\"1154335547873222656\",\"text\":\"RT @KamulyanSantri: \\\"Ahlan wa sahlan fi Indunesia...\\\" \\n\\nIndah sekali... \\n\\nPada dasarnya Pak @jokowi tak pernah anti Arab. Kecuali, Arab yg\\u2026\",\"truncated\":false,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"KamulyanSantri\",\"name\":\"Santri_Kamulyan\",\"id\":1146309668332920832,\"id_str\":\"1146309668332920832\",\"indices\":[3,18]},{\"screen_name\":\"jokowi\",\"name\":\"<NAME>\",\"id\":366987179,\"id_str\":\"366987179\",\"indices\":[92,99]}],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\">Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1132982090364932097,\"id_str\":\"1132982090364932097\",\"name\":\"Ryana\",\"screen_name\":\"Ryanaaaa_Fialll\",\"location\":\"\",\"description\":\"Indonesia Tercinta\\ud83c\\uddee\\ud83c\\udde9\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":453,\"friends_count\":302,\"listed_count\":0,\"created_at\":\"Mon May 27 12:09:14 +0000 2019\",\"favourites_count\":43078,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":9044,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1153824913553182720\\/104H68uv_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1153824913553182720\\/104H68uv_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1132982090364932097\\/1563885451\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Thu Jul 25 07:10:25 +0000 2019\",\"id\":1154287773894840320,\"id_str\":\"1154287773894840320\",\"text\":\"\\\"Ahlan wa sahlan fi Indunesia...\\\" \\n\\nIndah sekali... \\n\\nPada dasarnya Pak @jokowi tak pernah anti Arab. Kecuali, Arab\\u2026 https:\\/\\/t.co\\/xmgJlJNuKs\",\"truncated\":true,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"jokowi\",\"name\":\"<NAME>\",\"id\":366987179,\"id_str\":\"366987179\",\"indices\":[72,79]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/xmgJlJNuKs\",\"expanded_url\":\"https:\\/\\/twitter.com\\/i\\/web\\/status\\/1154287773894840320\",\"display_url\":\"twitter.com\\/i\\/web\\/status\\/1\\u2026\",\"indices\":[117,140]}]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"https:\\/\\/mobile.twitter.com\\\" rel=\\\"nofollow\\\">Twitter Web App<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1146309668332920832,\"id_str\":\"1146309668332920832\",\"name\":\"Santri_Kamulyan\",\"screen_name\":\"KamulyanSantri\",\"location\":\"\",\"description\":\"NKRI Harga Mati\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":277,\"friends_count\":333,\"listed_count\":0,\"created_at\":\"Wed Jul 03 06:48:17 +0000 2019\",\"favourites_count\":139,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":155,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1146313796463427584\\/xIRrbtZb_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1146313796463427584\\/xIRrbtZb_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1146309668332920832\\/1562323843\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":61,\"favorite_count\":121,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"in\"},\"is_quote_status\":false,\"retweet_count\":61,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"}', NULL, NULL, 'rt kamulyansantri ahlan wa sahlan fi indunesia indah sekali pada dasar pak jokowi tak pernah anti arab kecuali arab yg', 'jokowi'),
(403, 'Melayu Sejahtera', '@MelayuSejahtera', 2147483647, '@udagelo @geloraco aku maunya jokowi lagi..', 'positif', '1916', '590', 'Tanah Pilih Pesako Betuah', 'No', 5, 'Thu Jul 25 10:20:10 +0000 2019', 'Wed Feb 05 15:30:59 +0000 2014', '20190725102406', '{\"created_at\":\"Thu Jul 25 10:20:10 +0000 2019\",\"id\":1154335527132209153,\"id_str\":\"1154335527132209153\",\"text\":\"@udagelo @geloraco aku maunya jokowi lagi..\",\"truncated\":false,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"udagelo\",\"name\":\"<NAME>\",\"id\":1150050581039341568,\"id_str\":\"1150050581039341568\",\"indices\":[0,8]},{\"screen_name\":\"geloraco\",\"name\":\"<NAME>\",\"id\":3319260420,\"id_str\":\"3319260420\",\"indices\":[9,18]}],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"https:\\/\\/mobile.twitter.com\\\" rel=\\\"nofollow\\\">Twitter Web App<\\/a>\",\"in_reply_to_status_id\":1154333799674601473,\"in_reply_to_status_id_str\":\"1154333799674601473\",\"in_reply_to_user_id\":1150050581039341568,\"in_reply_to_user_id_str\":\"1150050581039341568\",\"in_reply_to_screen_name\":\"udagelo\",\"user\":{\"id\":2328961722,\"id_str\":\"2328961722\",\"name\":\"<NAME>\",\"screen_name\":\"MelayuSejahtera\",\"location\":\"Tanah Pilih Pesako Betuah\",\"description\":\"Esa Hilang Dua Terbilang, Takkan Melayu hilang dibumi\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1916,\"friends_count\":590,\"listed_count\":6,\"created_at\":\"Wed Feb 05 15:30:59 +0000 2014\",\"favourites_count\":23723,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":58602,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1151395057301221378\\/3AxrKhvm_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1151395057301221378\\/3AxrKhvm_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2328961722\\/1563032039\",\"profile_link_color\":\"19CF86\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":0,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"}', NULL, NULL, 'udagelo geloraco aku mau jokowi lagi', 'jokowi'),
(404, '???g?????', '@harimurtiiiii', 2147483647, '@MarnoMbois @jokowi PLTA = Pembangkit Listrik Tenaga Angop', 'positif', '75', '69', 'Sanhok, Paradise Resort', 'No', 0, 'Thu Jul 25 10:20:06 +0000 2019', 'Thu Feb 14 07:28:46 +0000 2019', '20190725102406', '{\"created_at\":\"Thu Jul 25 10:20:06 +0000 2019\",\"id\":1154335507217702914,\"id_str\":\"1154335507217702914\",\"text\":\"@MarnoMbois @jokowi PLTA = Pembangkit Listrik Tenaga Angop\",\"truncated\":false,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"MarnoMbois\",\"name\":\"<NAME>\",\"id\":3041601229,\"id_str\":\"3041601229\",\"indices\":[0,11]},{\"screen_name\":\"jokowi\",\"name\":\"<NAME>\",\"id\":366987179,\"id_str\":\"366987179\",\"indices\":[12,19]}],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"https:\\/\\/mobile.twitter.com\\\" rel=\\\"nofollow\\\">Twitter Web App<\\/a>\",\"in_reply_to_status_id\":1154325455173849088,\"in_reply_to_status_id_str\":\"1154325455173849088\",\"in_reply_to_user_id\":3041601229,\"in_reply_to_user_id_str\":\"3041601229\",\"in_reply_to_screen_name\":\"MarnoMbois\",\"user\":{\"id\":1095947943738105857,\"id_str\":\"1095947943738105857\",\"name\":\"\\u043c\\u03b1\\u044fg\\u03b1\\u044f\\u03b9\\u0442\\u03b1\",\"screen_name\":\"harimurtiiiii\",\"location\":\"Sanhok, Paradise Resort\",\"description\":\"Sans.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":75,\"friends_count\":69,\"listed_count\":0,\"created_at\":\"Thu Feb 14 07:28:46 +0000 2019\",\"favourites_count\":466,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":52,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1095949825814671362\\/9xlgxk1H_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1095949825814671362\\/9xlgxk1H_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1095947943738105857\\/1563952605\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":0,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"}', NULL, NULL, 'marnombois jokowi plta bangkit listrik tenaga angop', 'jokowi'),
(405, '<NAME>', '@AntoSulaiman4', 2147483647, 'RT @getanus: @jokowi Mantap pak..!God Bless', 'positif', '35', '96', 'Indonesia', 'No', 0, 'Thu Jul 25 10:19:52 +0000 2019', 'Sat Apr 13 17:33:40 +0000 2019', '20190725102406', '{\"created_at\":\"Thu Jul 25 10:19:52 +0000 2019\",\"id\":1154335448547749888,\"id_str\":\"1154335448547749888\",\"text\":\"RT @getanus: @jokowi Mantap pak..!God Bless\",\"truncated\":false,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"getanus\",\"name\":\"Hotland Getanus\",\"id\":894115456155385856,\"id_str\":\"894115456155385856\",\"indices\":[3,11]},{\"screen_name\":\"jokowi\",\"name\":\"<NAME>odo\",\"id\":366987179,\"id_str\":\"366987179\",\"indices\":[13,20]}],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"ht\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"https:\\/\\/chrome.google.com\\/extensions\\/detail\\/encaiiljifbdbjlphpgpiimidegddhic\\\" rel=\\\"nofollow\\\">Silver Bird<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1117118670038155264,\"id_str\":\"1117118670038155264\",\"name\":\"<NAME>\",\"screen_name\":\"AntoSulaiman4\",\"location\":\"Indonesia\",\"description\":\"Kindness is a language which the deaf can hear and the blind can see\",\"url\":\"https:\\/\\/t.co\\/44DaydhN4I\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/44DaydhN4I\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AntoSulaiman4\",\"display_url\":\"twitter.com\\/AntoSulaiman4\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":35,\"friends_count\":96,\"listed_count\":0,\"created_at\":\"Sat Apr 13 17:33:40 +0000 2019\",\"favourites_count\":122,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1088,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1117119267550273536\\/RQd-BhC9_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1117119267550273536\\/RQd-BhC9_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1117118670038155264\\/1555176957\",\"profile_link_color\":\"FAB81E\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Thu Jul 25 03:09:32 +0000 2019\",\"id\":1154227154156048384,\"id_str\":\"1154227154156048384\",\"text\":\"@jokowi Mantap pak..!God Bless\",\"truncated\":false,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"jokowi\",\"name\":\"<NAME>\",\"id\":366987179,\"id_str\":\"366987179\",\"indices\":[0,7]}],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"ht\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\">Twitter for Android<\\/a>\",\"in_reply_to_status_id\":1151379261128769537,\"in_reply_to_status_id_str\":\"1151379261128769537\",\"in_reply_to_user_id\":366987179,\"in_reply_to_user_id_str\":\"366987179\",\"in_reply_to_screen_name\":\"jokowi\",\"user\":{\"id\":894115456155385856,\"id_str\":\"894115456155385856\",\"name\":\"<NAME>\",\"screen_name\":\"getanus\",\"location\":\"Balikpapan\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4,\"friends_count\":32,\"listed_count\":0,\"created_at\":\"Sun Aug 06 08:38:31 +0000 2017\",\"favourites_count\":76,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":75,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1136150214970994689\\/BSiU8B2__normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1136150214970994689\\/BSiU8B2__normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/894115456155385856\\/1559715054\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":2,\"favorite_count\":2,\"favorited\":false,\"retweeted\":false,\"lang\":\"ht\"},\"is_quote_status\":false,\"retweet_count\":2,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"lang\":\"ht\"}', NULL, NULL, 'rt getanus jokowi mantap pak god bless', 'jokowi');
INSERT INTO `crawl_data` (`id`, `name`, `screen_name`, `tweet_id`, `text`, `flag`, `followers_count`, `following_count`, `location`, `verified`, `different_year`, `created_post`, `created_account`, `token_search`, `result_crawl_json`, `class_hoax`, `class_hoax_info`, `tokenizing`, `keyword`) VALUES
(406, '<NAME>', '@MArsyadAlfatih2', 2147483647, 'RT @IreneViena: Upaya Prabowo menghapus stigma dan melawan fitnah keji itu hanya EFEKTIF jika beliau jadi pemimpin rezim mendatang bersama…', 'positif', '20', '112', '', 'No', 0, 'Thu Jul 25 10:19:52 +0000 2019', 'Mon May 13 04:25:01 +0000 2019', '20190725102406', '{\"created_at\":\"Thu Jul 25 10:19:52 +0000 2019\",\"id\":1154335448262537216,\"id_str\":\"1154335448262537216\",\"text\":\"RT @IreneViena: Upaya Prabowo menghapus stigma dan melawan fitnah keji itu hanya EFEKTIF jika beliau jadi pemimpin rezim mendatang bersama\\u2026\",\"truncated\":false,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"IreneViena\",\"name\":\"Irene\",\"id\":805629166095769600,\"id_str\":\"805629166095769600\",\"indices\":[3,14]}],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\">Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1127791833310883840,\"id_str\":\"1127791833310883840\",\"name\":\"<NAME>\",\"screen_name\":\"MArsyadAlfatih2\",\"location\":\"\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":20,\"friends_count\":112,\"listed_count\":0,\"created_at\":\"Mon May 13 04:25:01 +0000 2019\",\"favourites_count\":1205,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":697,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/abs.twimg.com\\/sticky\\/default_profile_images\\/default_profile_normal.png\",\"profile_image_url_https\":\"https:\\/\\/abs.twimg.com\\/sticky\\/default_profile_images\\/default_profile_normal.png\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":true,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Thu Jul 25 10:16:43 +0000 2019\",\"id\":1154334656608837633,\"id_str\":\"1154334656608837633\",\"text\":\"Upaya Prabowo menghapus stigma dan melawan fitnah keji itu hanya EFEKTIF jika beliau jadi pemimpin rezim mendatang\\u2026 https:\\/\\/t.co\\/7KhxCnADWu\",\"truncated\":true,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/7KhxCnADWu\",\"expanded_url\":\"https:\\/\\/twitter.com\\/i\\/web\\/status\\/1154334656608837633\",\"display_url\":\"twitter.com\\/i\\/web\\/status\\/1\\u2026\",\"indices\":[116,139]}]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\">Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":805629166095769600,\"id_str\":\"805629166095769600\",\"name\":\"Irene\",\"screen_name\":\"IreneViena\",\"location\":\"Hong Kong\",\"description\":\"Menagih janjimu nan tak kunjung tunai seperti Menunggu Godot di Salihara\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":111348,\"friends_count\":1488,\"listed_count\":80,\"created_at\":\"Mon Dec 05 04:25:35 +0000 2016\",\"favourites_count\":65,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":46774,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/924510371540373504\\/AZVzFqZ8_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/924510371540373504\\/AZVzFqZ8_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/805629166095769600\\/1509255546\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":5,\"favorite_count\":30,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"},\"is_quote_status\":false,\"retweet_count\":5,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"}', NULL, NULL, 'rt ireneviena upaya prabowo hapus stigma dan lawan fitnah keji itu hanya efektif jika beliau jadi pimpin rezim datang sama', 'jokowi'),
(407, '???????????????????? ?????????????????????????????', '@lilnlibra', 2147483647, '@primamm1 Pak @jokowi anaknya dibikin becandaan nih', 'positif', '804', '775', '', 'No', 0, 'Thu Jul 25 10:19:46 +0000 2019', 'Tue May 21 00:43:36 +0000 2019', '20190725102406', '{\"created_at\":\"Thu Jul 25 10:19:46 +0000 2019\",\"id\":1154335427106496512,\"id_str\":\"1154335427106496512\",\"text\":\"@primamm1 Pak @jokowi anaknya dibikin becandaan nih\",\"truncated\":false,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"primamm1\",\"name\":\"@camabaui\",\"id\":1134625077587132416,\"id_str\":\"1134625077587132416\",\"indices\":[0,9]},{\"screen_name\":\"jokowi\",\"name\":\"<NAME>\",\"id\":366987179,\"id_str\":\"366987179\",\"indices\":[14,21]}],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\">Twitter for Android<\\/a>\",\"in_reply_to_status_id\":1154332058904195073,\"in_reply_to_status_id_str\":\"1154332058904195073\",\"in_reply_to_user_id\":1134625077587132416,\"in_reply_to_user_id_str\":\"1134625077587132416\",\"in_reply_to_screen_name\":\"primamm1\",\"user\":{\"id\":1130635215917862915,\"id_str\":\"1130635215917862915\",\"name\":\"\\ud835\\ude7b\\ud835\\ude92\\ud835\\ude8b\\ud835\\ude9b\\ud835\\ude8a \\ud835\\ude90\\ud835\\ude8a\\ud835\\ude97\\ud835\\ude9d\\ud835\\ude8e\\ud835\\ude97\\ud835\\ude90\\u264e\",\"screen_name\":\"lilnlibra\",\"location\":\"\",\"description\":\"Percuma ganteng kalo bukan Libra\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":804,\"friends_count\":775,\"listed_count\":0,\"created_at\":\"Tue May 21 00:43:36 +0000 2019\",\"favourites_count\":9659,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2608,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1144758247875702785\\/OXRGtgMJ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1144758247875702785\\/OXRGtgMJ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1130635215917862915\\/1564014003\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":0,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"}', NULL, NULL, 'primamm1 pak jokowi anak bikin becandaan nih', 'jokowi'),
(408, 'Destara', '@Destara71793774', 2147483647, 'RT @AkbirF: Periode baru,lembaran pun baru harusnya.Para elit/tokoh/negarawan mending diskusi tentang kasus ini lebih berfaedah kan. @jokow…', 'positif', '4', '14', '', 'No', 0, 'Thu Jul 25 10:19:44 +0000 2019', 'Sat Jun 08 17:31:01 +0000 2019', '20190725102406', '{\"created_at\":\"Thu Jul 25 10:19:44 +0000 2019\",\"id\":1154335415328837632,\"id_str\":\"1154335415328837632\",\"text\":\"RT @AkbirF: Periode baru,lembaran pun baru harusnya.Para elit\\/tokoh\\/negarawan mending diskusi tentang kasus ini lebih berfaedah kan. @jokow\\u2026\",\"truncated\":false,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"AkbirF\",\"name\":\"bhyenz\",\"id\":1041998556,\"id_str\":\"1041998556\",\"indices\":[3,10]}],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\">Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1137411721251790848,\"id_str\":\"1137411721251790848\",\"name\":\"Destara\",\"screen_name\":\"Destara71793774\",\"location\":\"\",\"description\":\"Juragan empang\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4,\"friends_count\":14,\"listed_count\":0,\"created_at\":\"Sat Jun 08 17:31:01 +0000 2019\",\"favourites_count\":0,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":306,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1137412351483793409\\/unYVmAK8_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1137412351483793409\\/unYVmAK8_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Wed Jul 24 12:17:19 +0000 2019\",\"id\":1154002617753751552,\"id_str\":\"1154002617753751552\",\"text\":\"Periode baru,lembaran pun baru harusnya.Para elit\\/tokoh\\/negarawan mending diskusi tentang kasus ini lebih berfaedah\\u2026 https:\\/\\/t.co\\/xQAT4RxmsV\",\"truncated\":true,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/xQAT4RxmsV\",\"expanded_url\":\"https:\\/\\/twitter.com\\/i\\/web\\/status\\/1154002617753751552\",\"display_url\":\"twitter.com\\/i\\/web\\/status\\/1\\u2026\",\"indices\":[117,140]}]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\">Twitter for iPhone<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1041998556,\"id_str\":\"1041998556\",\"name\":\"bhyenz\",\"screen_name\":\"AkbirF\",\"location\":\"Munich\",\"description\":\"Where there is unity, there is always victory #Proudtobeunion\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":191,\"friends_count\":204,\"listed_count\":0,\"created_at\":\"Fri Dec 28 11:49:34 +0000 2012\",\"favourites_count\":592,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1889,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"615E4C\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1145916839928614913\\/LvhworLh_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1145916839928614913\\/LvhworLh_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1041998556\\/1554133692\",\"profile_link_color\":\"1F0F05\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":9,\"favorite_count\":11,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"in\"},\"is_quote_status\":false,\"retweet_count\":9,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"}', NULL, NULL, 'rt akbirf periode baru lembar pun baru harus para elit tokoh negarawan mending diskusi tentang kasus ini lebih faedah kan jokow', 'jokowi'),
(409, 'budiKECIL', '@kuyupmenggigil', 2147483647, '@ruhutsitompul Benar.. Angin surga itu..krn nanti parpol2 Jokowi akan amandemen UUD biar Jokowi bisa berkuasa lagi dan lagi... ????', 'positif', '348', '973', '', 'No', 2, 'Thu Jul 25 10:19:36 +0000 2019', 'Sat Dec 24 11:30:26 +0000 2016', '20190725102406', '{\"created_at\":\"Thu Jul 25 10:19:36 +0000 2019\",\"id\":1154335383229882368,\"id_str\":\"1154335383229882368\",\"text\":\"@ruhutsitompul Benar.. Angin surga itu..krn nanti parpol2 Jokowi akan amandemen UUD biar Jokowi bisa berkuasa lagi dan lagi... \\ud83d\\ude01\",\"truncated\":false,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"ruhutsitompul\",\"name\":\"<NAME>\",\"id\":219244515,\"id_str\":\"219244515\",\"indices\":[0,14]}],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\">Twitter for Android<\\/a>\",\"in_reply_to_status_id\":1154186149436411905,\"in_reply_to_status_id_str\":\"1154186149436411905\",\"in_reply_to_user_id\":219244515,\"in_reply_to_user_id_str\":\"219244515\",\"in_reply_to_screen_name\":\"ruhutsitompul\",\"user\":{\"id\":812621450796417024,\"id_str\":\"812621450796417024\",\"name\":\"budiKECIL\",\"screen_name\":\"kuyupmenggigil\",\"location\":\"\",\"description\":\"...Sore Tugu Pancoran...\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":348,\"friends_count\":973,\"listed_count\":1,\"created_at\":\"Sat Dec 24 11:30:26 +0000 2016\",\"favourites_count\":6611,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":38090,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/812646594210213888\\/dmfBKu1g_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/812646594210213888\\/dmfBKu1g_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/812621450796417024\\/1482585089\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":0,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"}', NULL, NULL, 'ruhutsitompul benar angin surga itu krn nanti parpol2 jokowi akan amandemen uud biar jokowi bisa kuasa lagi dan lagi', 'jokowi'),
(410, 'Darmo', '@Djoko_Darmo1', 2147483647, 'RT @Rasan2Politik: Ketua Umum #PDIPerjuangan Megawati mengkonfirmasi:\n\n1.Pendidikan politik ttg ketatanegaraan Indonesia: tdk ada koalisi &…', 'positif', '39', '72', '', 'No', 1, 'Thu Jul 25 10:19:30 +0000 2019', 'Thu Mar 08 04:31:43 +0000 2018', '20190725102406', '{\"created_at\":\"Thu Jul 25 10:19:30 +0000 2019\",\"id\":1154335357208371201,\"id_str\":\"1154335357208371201\",\"text\":\"RT @Rasan2Politik: Ketua Umum #PDIPerjuangan Megawati mengkonfirmasi:\\n\\n1.Pendidikan politik ttg ketatanegaraan Indonesia: tdk ada koalisi &\\u2026\",\"truncated\":false,\"entities\":{\"hashtags\":[{\"text\":\"PDIPerjuangan\",\"indices\":[30,44]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Rasan2Politik\",\"name\":\"Rasan2 Politik\",\"id\":186698446,\"id_str\":\"186698446\",\"indices\":[3,17]}],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"https:\\/\\/mobile.twitter.com\\\" rel=\\\"nofollow\\\">Twitter Web App<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":971604350618419200,\"id_str\":\"971604350618419200\",\"name\":\"Darmo\",\"screen_name\":\"Djoko_Darmo1\",\"location\":\"\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":39,\"friends_count\":72,\"listed_count\":0,\"created_at\":\"Thu Mar 08 04:31:43 +0000 2018\",\"favourites_count\":104,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1340,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1148145243927134208\\/EM4k87bN_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1148145243927134208\\/EM4k87bN_normal.png\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Thu Jul 25 08:52:36 +0000 2019\",\"id\":1154313487788593152,\"id_str\":\"1154313487788593152\",\"text\":\"Ketua Umum #PDIPerjuangan Megawati mengkonfirmasi:\\n\\n1.Pendidikan politik ttg ketatanegaraan Indonesia: tdk ada koal\\u2026 https:\\/\\/t.co\\/Hs6TLpHlmG\",\"truncated\":true,\"entities\":{\"hashtags\":[{\"text\":\"PDIPerjuangan\",\"indices\":[11,25]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Hs6TLpHlmG\",\"expanded_url\":\"https:\\/\\/twitter.com\\/i\\/web\\/status\\/1154313487788593152\",\"display_url\":\"twitter.com\\/i\\/web\\/status\\/1\\u2026\",\"indices\":[117,140]}]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"https:\\/\\/mobile.twitter.com\\\" rel=\\\"nofollow\\\">Twitter Web App<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":186698446,\"id_str\":\"186698446\",\"name\":\"Rasan2 Politik\",\"screen_name\":\"Rasan2Politik\",\"location\":\"DKI Jakarta, Indonesia\",\"description\":\"Obrolan Warung Kopi\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":199,\"friends_count\":123,\"listed_count\":0,\"created_at\":\"Sat Sep 04 04:04:36 +0000 2010\",\"favourites_count\":1125,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1375,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1150170428981174278\\/MWCjjrAQ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1150170428981174278\\/MWCjjrAQ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/186698446\\/1562991942\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":65,\"favorite_count\":65,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"in\"},\"is_quote_status\":false,\"retweet_count\":65,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"}', NULL, NULL, 'rt rasan2politik ketua umum pdiperjuangan megawati konfirmasi 1 didik politik ttg ketatanegaraan indonesia tdk ada koalisi amp', 'jokowi'),
(411, '<NAME>', '@AntoSulaiman4', 2147483647, 'RT @BangsaPlokotho: @jokowi Bagaimana DATA yg dilaporkan kpd Bapak gak ada yang BERKESESUAIAN....', 'positif', '35', '96', 'Indonesia', 'No', 0, 'Thu Jul 25 10:19:29 +0000 2019', 'Sat Apr 13 17:33:40 +0000 2019', '20190725102406', '{\"created_at\":\"Thu Jul 25 10:19:29 +0000 2019\",\"id\":1154335354641473537,\"id_str\":\"1154335354641473537\",\"text\":\"RT @BangsaPlokotho: @jokowi Bagaimana DATA yg dilaporkan kpd Bapak gak ada yang BERKESESUAIAN....\",\"truncated\":false,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"BangsaPlokotho\",\"name\":\"<NAME>\",\"id\":226048932,\"id_str\":\"226048932\",\"indices\":[3,18]},{\"screen_name\":\"jokowi\",\"name\":\"<NAME>\",\"id\":366987179,\"id_str\":\"366987179\",\"indices\":[20,27]}],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"https:\\/\\/chrome.google.com\\/extensions\\/detail\\/encaiiljifbdbjlphpgpiimidegddhic\\\" rel=\\\"nofollow\\\">Silver Bird<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1117118670038155264,\"id_str\":\"1117118670038155264\",\"name\":\"<NAME>\",\"screen_name\":\"AntoSulaiman4\",\"location\":\"Indonesia\",\"description\":\"Kindness is a language which the deaf can hear and the blind can see\",\"url\":\"https:\\/\\/t.co\\/44DaydhN4I\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/44DaydhN4I\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AntoSulaiman4\",\"display_url\":\"twitter.com\\/AntoSulaiman4\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":35,\"friends_count\":96,\"listed_count\":0,\"created_at\":\"Sat Apr 13 17:33:40 +0000 2019\",\"favourites_count\":122,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1088,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1117119267550273536\\/RQd-BhC9_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1117119267550273536\\/RQd-BhC9_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1117118670038155264\\/1555176957\",\"profile_link_color\":\"FAB81E\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Thu Jul 25 01:31:36 +0000 2019\",\"id\":1154202508199202816,\"id_str\":\"1154202508199202816\",\"text\":\"@jokowi Bagaimana DATA yg dilaporkan kpd Bapak gak ada yang BERKESESUAIAN....\",\"truncated\":false,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"jokowi\",\"name\":\"<NAME>\",\"id\":366987179,\"id_str\":\"366987179\",\"indices\":[0,7]}],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\">Twitter for iPhone<\\/a>\",\"in_reply_to_status_id\":1153833436869619712,\"in_reply_to_status_id_str\":\"1153833436869619712\",\"in_reply_to_user_id\":366987179,\"in_reply_to_user_id_str\":\"366987179\",\"in_reply_to_screen_name\":\"jokowi\",\"user\":{\"id\":226048932,\"id_str\":\"226048932\",\"name\":\"<NAME>\",\"screen_name\":\"BangsaPlokotho\",\"location\":\"Neraka, Indonesia\",\"description\":\"Menjadi AKU, bukan Pengakuan dan Menjadi BENAR, bukan Pembenaran\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":154,\"friends_count\":394,\"listed_count\":0,\"created_at\":\"Mon Dec 13 05:10:12 +0000 2010\",\"favourites_count\":12574,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":11030,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1135452863906213889\\/aWKNP_iS_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1135452863906213889\\/aWKNP_iS_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/226048932\\/1522312765\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":2,\"favorite_count\":3,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"},\"is_quote_status\":false,\"retweet_count\":2,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"}', NULL, NULL, 'rt bangsaplokotho jokowi bagaimana data yg lapor kpd bapak gak ada yang suai', 'jokowi'),
(412, '<NAME>', '@AyoBelaNKRI', 2147483647, 'RT @Dwiyana_DKM: Dulu, semua orang dia label “dungu”, karena gak dukung Pak @prabowo. \n\nSekarang berbalik, dia sendiri enggak dukung Pak Pr…', 'positif', '190', '267', '', 'No', 4, 'Mon Oct 14 06:28:11 +0000 2019', 'Fri Nov 07 03:18:46 +0000 2014', '20191014062910', '{\"created_at\":\"Mon Oct 14 06:28:11 +0000 2019\",\"id\":1183630563262906368,\"id_str\":\"1183630563262906368\",\"text\":\"RT @Dwiyana_DKM: Dulu, semua orang dia label \\u201cdungu\\u201d, karena gak dukung Pak @prabowo. \\n\\nSekarang berbalik, dia sendiri enggak dukung Pak Pr\\u2026\",\"truncated\":false,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Dwiyana_DKM\",\"name\":\"EasyPeasy \\ud83c\\udf88\",\"id\":223360867,\"id_str\":\"223360867\",\"indices\":[3,15]},{\"screen_name\":\"prabowo\",\"name\":\"<NAME>\",\"id\":40580714,\"id_str\":\"40580714\",\"indices\":[76,84]}],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"https:\\/\\/mobile.twitter.com\\\" rel=\\\"nofollow\\\">Twitter Web App<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":2865061895,\"id_str\":\"2865061895\",\"name\":\"<NAME>\",\"screen_name\":\"AyoBelaNKRI\",\"location\":\"\",\"description\":\"Bersatu kita lawan pengacau NKRI \\nTolak khilafah! Tolak ormas bajingan!\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":190,\"friends_count\":267,\"listed_count\":0,\"created_at\":\"Fri Nov 07 03:18:46 +0000 2014\",\"favourites_count\":8654,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":24189,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme19\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme19\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/827737474252185600\\/c35kPvwy_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/827737474252185600\\/c35kPvwy_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2865061895\\/1486182885\",\"profile_link_color\":\"19CF86\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Mon Oct 14 00:25:41 +0000 2019\",\"id\":1183539336848916480,\"id_str\":\"1183539336848916480\",\"text\":\"Dulu, semua orang dia label \\u201cdungu\\u201d, karena gak dukung Pak @prabowo. \\n\\nSekarang berbalik, dia sendiri enggak dukung\\u2026 https:\\/\\/t.co\\/ZjXoArArHs\",\"truncated\":true,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"prabowo\",\"name\":\"<NAME>\",\"id\":40580714,\"id_str\":\"40580714\",\"indices\":[59,67]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ZjXoArArHs\",\"expanded_url\":\"https:\\/\\/twitter.com\\/i\\/web\\/status\\/1183539336848916480\",\"display_url\":\"twitter.com\\/i\\/web\\/status\\/1\\u2026\",\"indices\":[117,140]}]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\">Twitter for iPhone<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":223360867,\"id_str\":\"223360867\",\"name\":\"EasyPeasy \\ud83c\\udf88\",\"screen_name\":\"Dwiyana_DKM\",\"location\":\"\",\"description\":\"I don\\u2019t need anger management. People just need to stop pissing me off || dog lovers\",\"url\":\"https:\\/\\/t.co\\/x1bbdCPcVH\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/x1bbdCPcVH\",\"expanded_url\":\"https:\\/\\/www.twitter.com\\/DwiyanaDKM\",\"display_url\":\"twitter.com\\/DwiyanaDKM\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":16371,\"friends_count\":963,\"listed_count\":10,\"created_at\":\"Mon Dec 06 04:51:10 +0000 2010\",\"favourites_count\":105530,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":81103,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1183046630477459457\\/b3Cdp0iR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1183046630477459457\\/b3Cdp0iR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/223360867\\/1568657732\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":183,\"favorite_count\":366,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"in\"},\"is_quote_status\":false,\"retweet_count\":183,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"}', NULL, NULL, 'rt dwiyana dkm dulu semua orang dia label dungu karena gak dukung pak prabowo sekarang balik dia sendiri enggak dukung pak pr', 'rocky gerung'),
(413, '<NAME>', '@intanraymi', 2147483647, 'RT @liem_id: “Skrg, Prabowo sdh bergabung dg Jkw sblm pelantikan. Makanya, saya majukan deklarasi saya beroposisi, mjd mulai hari ini,“ RG…', 'positif', '81', '568', 'Indonesia', 'No', 8, 'Mon Oct 14 06:28:04 +0000 2019', 'Sat Jan 08 13:33:49 +0000 2011', '20191014062910', '{\"created_at\":\"Mon Oct 14 06:28:04 +0000 2019\",\"id\":1183630530962608128,\"id_str\":\"1183630530962608128\",\"text\":\"RT @liem_id: \\u201cSkrg, Prabowo sdh bergabung dg Jkw sblm pelantikan. Makanya, saya majukan deklarasi saya beroposisi, mjd mulai hari ini,\\u201c RG\\u2026\",\"truncated\":false,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"liem_id\",\"name\":\"Mbah_Liem\",\"id\":308824504,\"id_str\":\"308824504\",\"indices\":[3,11]}],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\">Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":235546439,\"id_str\":\"235546439\",\"name\":\"intan delilah\",\"screen_name\":\"intanraymi\",\"location\":\"Indonesia\",\"description\":\"Proud mommy of Al \\u2661 Bara | always be my \\u2665 the one & only|\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":81,\"friends_count\":568,\"listed_count\":0,\"created_at\":\"Sat Jan 08 13:33:49 +0000 2011\",\"favourites_count\":4858,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1006,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/485035050971316224\\/1FeqBPWa_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/485035050971316224\\/1FeqBPWa_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/235546439\\/1422185129\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Sun Oct 13 04:12:24 +0000 2019\",\"id\":1183234002460692481,\"id_str\":\"1183234002460692481\",\"text\":\"\\u201cSkrg, Prabowo sdh bergabung dg Jkw sblm pelantikan. Makanya, saya majukan deklarasi saya beroposisi, mjd mulai har\\u2026 https:\\/\\/t.co\\/HJJvRSal1r\",\"truncated\":true,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/HJJvRSal1r\",\"expanded_url\":\"https:\\/\\/twitter.com\\/i\\/web\\/status\\/1183234002460692481\",\"display_url\":\"twitter.com\\/i\\/web\\/status\\/1\\u2026\",\"indices\":[117,140]}]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\">Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":308824504,\"id_str\":\"308824504\",\"name\":\"Mbah_Liem\",\"screen_name\":\"liem_id\",\"location\":\"Negeri Yg Lg Berduka\",\"description\":\"Berjuang untuk Indonesia yang lebih baik|Yg ingin difollback sila follow & mention|\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":21056,\"friends_count\":11973,\"listed_count\":6,\"created_at\":\"Wed Jun 01 02:09:12 +0000 2011\",\"favourites_count\":53734,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":95355,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1133406963931394048\\/gtji2vZ__normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1133406963931394048\\/gtji2vZ__normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/308824504\\/1570882972\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":1116,\"favorite_count\":4048,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"in\"},\"is_quote_status\":false,\"retweet_count\":1116,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"}', NULL, NULL, 'rt liem id skrg prabowo sdh gabung dg jkw sblm lantik makanya saya maju deklarasi saya oposisi mjd mulai hari ini rg', 'rocky gerung'),
(414, 'Ham Ham????????', '@3hamdih', 2147483647, 'RT @Dennysiregar7: Menurut gua ya, @rockygerung itu politisi cerdik..\n\nKetika @prabowo menobatkannya menjadi salah satu calon Menteri, dia…', 'positif', '1029', '46', 'DKI Jakarta, Indonesia', 'No', 3, 'Mon Oct 14 06:27:47 +0000 2019', 'Wed Oct 12 06:06:06 +0000 2016', '20191014062910', '{\"created_at\":\"Mon Oct 14 06:27:47 +0000 2019\",\"id\":1183630462876434432,\"id_str\":\"1183630462876434432\",\"text\":\"RT @Dennysiregar7: Menurut gua ya, @rockygerung itu politisi cerdik..\\n\\nKetika @prabowo menobatkannya menjadi salah satu calon Menteri, dia\\u2026\",\"truncated\":false,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Dennysiregar7\",\"name\":\"<NAME>\",\"id\":4780649298,\"id_str\":\"4780649298\",\"indices\":[3,17]},{\"screen_name\":\"rockygerung\",\"name\":\"<NAME>\",\"id\":190924467,\"id_str\":\"190924467\",\"indices\":[35,47]},{\"screen_name\":\"prabowo\",\"name\":\"<NAME>\",\"id\":40580714,\"id_str\":\"40580714\",\"indices\":[78,86]}],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\">Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":786085513581256708,\"id_str\":\"786085513581256708\",\"name\":\"<NAME>\\ud83c\\uddee\\ud83c\\udde9\",\"screen_name\":\"3hamdih\",\"location\":\"DKI Jakarta, Indonesia\",\"description\":\"Kami rakyat Jelata.!!!Cinta dan bangga,kami bangsa Indonesia , Pancasila , Merah Putih , NKRI ! Menuju Indonesia Maju ! Aamiin\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1029,\"friends_count\":46,\"listed_count\":0,\"created_at\":\"Wed Oct 12 06:06:06 +0000 2016\",\"favourites_count\":111893,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":16111,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1124588377552998400\\/RRaZZUpF_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1124588377552998400\\/RRaZZUpF_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/786085513581256708\\/1563335145\",\"profile_link_color\":\"1B95E0\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Sun Oct 13 14:07:04 +0000 2019\",\"id\":1183383655596453888,\"id_str\":\"1183383655596453888\",\"text\":\"Menurut gua ya, @rockygerung itu politisi cerdik..\\n\\nKetika @prabowo menobatkannya menjadi salah satu calon Menteri,\\u2026 https:\\/\\/t.co\\/xWAyx4yrHG\",\"truncated\":true,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"rockygerung\",\"name\":\"<NAME>\",\"id\":190924467,\"id_str\":\"190924467\",\"indices\":[16,28]},{\"screen_name\":\"prabowo\",\"name\":\"<NAME>\",\"id\":40580714,\"id_str\":\"40580714\",\"indices\":[59,67]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/xWAyx4yrHG\",\"expanded_url\":\"https:\\/\\/twitter.com\\/i\\/web\\/status\\/1183383655596453888\",\"display_url\":\"twitter.com\\/i\\/web\\/status\\/1\\u2026\",\"indices\":[117,140]}]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\">Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":4780649298,\"id_str\":\"4780649298\",\"name\":\"<NAME>\",\"screen_name\":\"Dennysiregar7\",\"location\":\"Indonesia\",\"description\":\"Penulis\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":624630,\"friends_count\":86,\"listed_count\":143,\"created_at\":\"Tue Jan 19 01:17:04 +0000 2016\",\"favourites_count\":22413,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":4966,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1173540511937789952\\/OP1lG0RR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1173540511937789952\\/OP1lG0RR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/4780649298\\/1568917140\",\"profile_link_color\":\"1B95E0\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":433,\"favorite_count\":1878,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"in\"},\"is_quote_status\":false,\"retweet_count\":433,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"}', NULL, NULL, 'rt dennysiregar7 turut gua ya rockygerung itu politis cerdik ketika prabowo nobat jadi salah satu calon menteri dia', 'rocky gerung');
INSERT INTO `crawl_data` (`id`, `name`, `screen_name`, `tweet_id`, `text`, `flag`, `followers_count`, `following_count`, `location`, `verified`, `different_year`, `created_post`, `created_account`, `token_search`, `result_crawl_json`, `class_hoax`, `class_hoax_info`, `tokenizing`, `keyword`) VALUES
(415, '<NAME>', '@4Y4NKZ', 2147483647, 'RT @4Y4NKZ: Rocky Gerung akan “road show” berkeliling Tanah Air untuk mengajak kampret beroposisi pada Ketua Umum Gerindra @prabowo\n\nAlasan…', 'positif', '33836', '8664', 'GMT+08:00', 'No', 10, 'Mon Oct 14 06:27:47 +0000 2019', 'Sun May 31 09:34:31 +0000 2009', '20191014062910', '{\"created_at\":\"Mon Oct 14 06:27:47 +0000 2019\",\"id\":1183630461060272128,\"id_str\":\"1183630461060272128\",\"text\":\"RT @4Y4NKZ: Rocky Gerung akan \\u201croad show\\u201d berkeliling Tanah Air untuk mengajak kampret beroposisi pada Ketua Umum Gerindra @prabowo\\n\\nAlasan\\u2026\",\"truncated\":false,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"4Y4NKZ\",\"name\":\"<NAME>\",\"id\":43667155,\"id_str\":\"43667155\",\"indices\":[3,10]},{\"screen_name\":\"prabowo\",\"name\":\"<NAME>\",\"id\":40580714,\"id_str\":\"40580714\",\"indices\":[123,131]}],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\">Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":43667155,\"id_str\":\"43667155\",\"name\":\"<NAME>\",\"screen_name\":\"4Y4NKZ\",\"location\":\"GMT+08:00\",\"description\":\"Perempuan Biasa yang Menerima pengerjaan Civil ,Interior ,Ekterior.\\<EMAIL>\",\"url\":\"https:\\/\\/t.co\\/cpM4xgsOkX\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/cpM4xgsOkX\",\"expanded_url\":\"https:\\/\\/www.wireshark.org\",\"display_url\":\"wireshark.org\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33836,\"friends_count\":8664,\"listed_count\":110,\"created_at\":\"Sun May 31 09:34:31 +0000 2009\",\"favourites_count\":192646,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":138041,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme5\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme5\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1183581538463576064\\/sAwEtaE9_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1183581538463576064\\/sAwEtaE9_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/43667155\\/1570955006\",\"profile_link_color\":\"042A5E\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Mon Oct 14 01:55:18 +0000 2019\",\"id\":1183561888019312640,\"id_str\":\"1183561888019312640\",\"text\":\"Rocky Gerung akan \\u201croad show\\u201d berkeliling Tanah Air untuk mengajak kampret beroposisi pada Ketua Umum Gerindra\\u2026 https:\\/\\/t.co\\/7BCJSfuh68\",\"truncated\":true,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/7BCJSfuh68\",\"expanded_url\":\"https:\\/\\/twitter.com\\/i\\/web\\/status\\/1183561888019312640\",\"display_url\":\"twitter.com\\/i\\/web\\/status\\/1\\u2026\",\"indices\":[112,135]}]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\">Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":43667155,\"id_str\":\"43667155\",\"name\":\"<NAME>\",\"screen_name\":\"4Y4NKZ\",\"location\":\"GMT+08:00\",\"description\":\"Perempuan Biasa yang Menerima pengerjaan Civil ,Interior ,Ekterior.\\<EMAIL>\",\"url\":\"https:\\/\\/t.co\\/cpM4xgsOkX\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/cpM4xgsOkX\",\"expanded_url\":\"https:\\/\\/www.wireshark.org\",\"display_url\":\"wireshark.org\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33836,\"friends_count\":8664,\"listed_count\":110,\"created_at\":\"Sun May 31 09:34:31 +0000 2009\",\"favourites_count\":192646,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":138041,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme5\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme5\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1183581538463576064\\/sAwEtaE9_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1183581538463576064\\/sAwEtaE9_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/43667155\\/1570955006\",\"profile_link_color\":\"042A5E\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":29,\"favorite_count\":85,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"in\"},\"is_quote_status\":false,\"retweet_count\":29,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"}', NULL, NULL, 'rt 4y4nkz rocky gerung akan road show keliling tanah air untuk ajak kampret oposisi pada ketua umum gerindra prabowo alas', 'rocky gerung'),
(416, '<NAME>', '@dura_gusty', 2147483647, 'RT @Dwiyana_DKM: Dulu, semua orang dia label “dungu”, karena gak dukung Pak @prabowo. \n\nSekarang berbalik, dia sendiri enggak dukung Pak Pr…', 'positif', '10', '244', '', 'No', 1, 'Mon Oct 14 06:27:44 +0000 2019', 'Sun Feb 18 13:56:39 +0000 2018', '20191014062910', '{\"created_at\":\"Mon Oct 14 06:27:44 +0000 2019\",\"id\":1183630449672802304,\"id_str\":\"1183630449672802304\",\"text\":\"RT @Dwiyana_DKM: Dulu, semua orang dia label \\u201cdungu\\u201d, karena gak dukung Pak @prabowo. \\n\\nSekarang berbalik, dia sendiri enggak dukung Pak Pr\\u2026\",\"truncated\":false,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Dwiyana_DKM\",\"name\":\"EasyPeasy \\ud83c\\udf88\",\"id\":223360867,\"id_str\":\"223360867\",\"indices\":[3,15]},{\"screen_name\":\"prabowo\",\"name\":\"<NAME>\",\"id\":40580714,\"id_str\":\"40580714\",\"indices\":[76,84]}],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\">Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":965223538889170947,\"id_str\":\"965223538889170947\",\"name\":\"<NAME>\",\"screen_name\":\"dura_gusty\",\"location\":\"\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":244,\"listed_count\":0,\"created_at\":\"Sun Feb 18 13:56:39 +0000 2018\",\"favourites_count\":2046,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":515,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1039854061258825729\\/GSryONPN_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1039854061258825729\\/GSryONPN_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/965223538889170947\\/1518962522\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Mon Oct 14 00:25:41 +0000 2019\",\"id\":1183539336848916480,\"id_str\":\"1183539336848916480\",\"text\":\"Dulu, semua orang dia label \\u201cdungu\\u201d, karena gak dukung Pak @prabowo. \\n\\nSekarang berbalik, dia sendiri enggak dukung\\u2026 https:\\/\\/t.co\\/ZjXoArArHs\",\"truncated\":true,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"prabowo\",\"name\":\"<NAME>\",\"id\":40580714,\"id_str\":\"40580714\",\"indices\":[59,67]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ZjXoArArHs\",\"expanded_url\":\"https:\\/\\/twitter.com\\/i\\/web\\/status\\/1183539336848916480\",\"display_url\":\"twitter.com\\/i\\/web\\/status\\/1\\u2026\",\"indices\":[117,140]}]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\">Twitter for iPhone<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":223360867,\"id_str\":\"223360867\",\"name\":\"EasyPeasy \\ud83c\\udf88\",\"screen_name\":\"Dwiyana_DKM\",\"location\":\"\",\"description\":\"I don\\u2019t need anger management. People just need to stop pissing me off || dog lovers\",\"url\":\"https:\\/\\/t.co\\/x1bbdCPcVH\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/x1bbdCPcVH\",\"expanded_url\":\"https:\\/\\/www.twitter.com\\/DwiyanaDKM\",\"display_url\":\"twitter.com\\/DwiyanaDKM\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":16371,\"friends_count\":963,\"listed_count\":10,\"created_at\":\"Mon Dec 06 04:51:10 +0000 2010\",\"favourites_count\":105530,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":81103,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1183046630477459457\\/b3Cdp0iR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1183046630477459457\\/b3Cdp0iR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/223360867\\/1568657732\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":183,\"favorite_count\":366,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"in\"},\"is_quote_status\":false,\"retweet_count\":183,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"}', NULL, NULL, 'rt dwiyana dkm dulu semua orang dia label dungu karena gak dukung pak prabowo sekarang balik dia sendiri enggak dukung pak pr', 'rocky gerung'),
(417, 'Komar ????????????', '@UjKomar', 2147483647, 'RT @Dwiyana_DKM: Dulu, semua orang dia label “dungu”, karena gak dukung Pak @prabowo. \n\nSekarang berbalik, dia sendiri enggak dukung Pak Pr…', 'positif', '871', '811', '', 'No', 5, 'Mon Oct 14 06:26:43 +0000 2019', 'Tue Sep 02 11:32:12 +0000 2014', '20191014062910', '{\"created_at\":\"Mon Oct 14 06:26:43 +0000 2019\",\"id\":1183630194092859392,\"id_str\":\"1183630194092859392\",\"text\":\"RT @Dwiyana_DKM: Dulu, semua orang dia label \\u201cdungu\\u201d, karena gak dukung Pak @prabowo. \\n\\nSekarang berbalik, dia sendiri enggak dukung Pak Pr\\u2026\",\"truncated\":false,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Dwiyana_DKM\",\"name\":\"EasyPeasy \\ud83c\\udf88\",\"id\":223360867,\"id_str\":\"223360867\",\"indices\":[3,15]},{\"screen_name\":\"prabowo\",\"name\":\"<NAME>\",\"id\":40580714,\"id_str\":\"40580714\",\"indices\":[76,84]}],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\">Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":2785772216,\"id_str\":\"2785772216\",\"name\":\"Komar \\ud83c\\uddee\\ud83c\\udde9\\ud83d\\udcaa\",\"screen_name\":\"UjKomar\",\"location\":\"\",\"description\":\"Selalu berusaha berAgama dengan benar agar akal ini tetap sehat.. Nalar yang sehat mengikuti kebaikan \\ud83d\\ude4f\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":871,\"friends_count\":811,\"listed_count\":2,\"created_at\":\"Tue Sep 02 11:32:12 +0000 2014\",\"favourites_count\":91798,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":82993,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1180511587154612224\\/NBOpdXBa_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1180511587154612224\\/NBOpdXBa_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2785772216\\/1560521609\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Mon Oct 14 00:25:41 +0000 2019\",\"id\":1183539336848916480,\"id_str\":\"1183539336848916480\",\"text\":\"Dulu, semua orang dia label \\u201cdungu\\u201d, karena gak dukung Pak @prabowo. \\n\\nSekarang berbalik, dia sendiri enggak dukung\\u2026 https:\\/\\/t.co\\/ZjXoArArHs\",\"truncated\":true,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"prabowo\",\"name\":\"<NAME>\",\"id\":40580714,\"id_str\":\"40580714\",\"indices\":[59,67]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ZjXoArArHs\",\"expanded_url\":\"https:\\/\\/twitter.com\\/i\\/web\\/status\\/1183539336848916480\",\"display_url\":\"twitter.com\\/i\\/web\\/status\\/1\\u2026\",\"indices\":[117,140]}]},\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"source\":\"<a href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\">Twitter for iPhone<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":223360867,\"id_str\":\"223360867\",\"name\":\"EasyPeasy \\ud83c\\udf88\",\"screen_name\":\"Dwiyana_DKM\",\"location\":\"\",\"description\":\"I don\\u2019t need anger management. People just need to stop pissing me off || dog lovers\",\"url\":\"https:\\/\\/t.co\\/x1bbdCPcVH\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/x1bbdCPcVH\",\"expanded_url\":\"https:\\/\\/www.twitter.com\\/DwiyanaDKM\",\"display_url\":\"twitter.com\\/DwiyanaDKM\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":16371,\"friends_count\":963,\"listed_count\":10,\"created_at\":\"Mon Dec 06 04:51:10 +0000 2010\",\"favourites_count\":105530,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":81103,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1183046630477459457\\/b3Cdp0iR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1183046630477459457\\/b3Cdp0iR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/223360867\\/1568657732\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\"},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":183,\"favorite_count\":366,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"in\"},\"is_quote_status\":false,\"retweet_count\":183,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"}', NULL, NULL, 'rt dwiyana dkm dulu semua orang dia label dungu karena gak dukung pak prabowo sekarang balik dia sendiri enggak dukung pak pr', 'rocky gerung');
-- --------------------------------------------------------
--
-- Table structure for table `data_training`
--
CREATE TABLE `data_training` (
`id_data_training` bigint(11) NOT NULL,
`text` text,
`flag` varchar(10) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
--
-- Dumping data for table `data_training`
--
INSERT INTO `data_training` (`id_data_training`, `text`, `flag`) VALUES
(76, 'RT @KuntoAjiW: Lho ini malah pak Prabowo dibilang nyebong. Gimana sih, orang diajak damai, memang suka sekali keributan ya. :))', 'positif'),
(77, '@Dahnilanzar @prabowo Kecewa', 'negatif'),
(78, 'RT @uhondol: .\n\ngaes poling dulu khusus pendukung 02\n\n\n\nsebagian pendukung @Prabowo kecewa karena pertemuannya dengan jokowi, demi alasan #03P…', 'negatif'),
(79, 'yang cowok .. yang #kecewa dengan pertemuan pak Prabowo dan Jokowi .. \n\n\n\nya udah lah .. dengerin ini aja… https://t.co/P0UejhV1Um', 'netral'),
(80, 'RT @DukeCondet: Buzzer2 @jokowi pade bingung ngeliat banyak netizen yg kemaren dukung 02, sekarang malah berbalik nyerang @prabowo.\n\n\n\nMereka…', 'negatif'),
(81, '@Gerindra @prabowo Kalian mengubur diri kalian sendiri...\n\nAhh sudahlah...', 'negatif'),
(82, '@BrataWijaya27 @prabowo Sakit sekali rasanya melihat pertemuan itu. Tega nya kau pak @prabowo \n\nRatusan nyawa melaya… https://t.co/CuZah0VhHv', 'negatif'),
(83, '@Gerindra @prabowo Im proud of you Pak @prabowo . Selamat ya pak @jokowi dan pak @prabowo .', 'positif'),
(84, 'RT @BiLLRaY_: Prabowo bercanda ke Jokowi: Selamat bekerja, selamat tambah rambut putih.\n\n\n\n#03PersatuanIndonesia https://t.co/IZNnt3k8Es', 'positif'),
(85, 'RT @idmci: Apa kabar kalian yang sudah mati2an berjihad di jalan @prabowo? https://t.co/D5kUghWEiF', 'negatif'),
(86, '@Gerindra @prabowo Thx min, gw unfol kalian berdua <U+0001F64F>', 'negatif'),
(87, '@Dahnilanzar @prabowo Dan \"LIJDEN\" tersebut adalah energi.....\n\nKami tetap setia dan percaya, tolong jangan disia-si… https://t.co/3Dsa8nLIJ7', 'positif'),
(88, '@Gerindra @prabowo asli,kecewa dgn PS...\n\nHarusnya PS paham dgn perjuangan rakyat....ternyata....gak beda dgn yg lain<U+0001F635>', 'negatif'),
(89, '@Gerindra @prabowo 2024 ga bakal lg pilih Gerindra apalagi pak Prabowo', 'negatif'),
(90, '@Gerindra @prabowo Kalo begitu ngapain kemarin maju jd capres, min! Kalo sudah tahu resiko yg dihadapi. Payah!', 'negatif'),
(91, 'RT @Adityafidz: @ElokPutput @CenayangFilm @IndiHome Prabowo sama Jokowi aja udah rekonsiliasi. Ini kalian kapan bisa akur @IndiHome @Netfl…', 'positif'),
(92, 'RT @kompascom: SUDAH CUKUP...\n\nIstilah cebong dan kampret tamat! https://t.co/mgVkBCxEEE https://t.co/AOJxzGGp5V', 'positif'),
(93, '@zee_4869 @mas__piyuuu @prabowo perjanjian Hudaibiyah seakan2 Rasulullah didikte oleh kafir Quraisy.. ada sahabat Nabi yang kecewa ? BANYAK.', 'negatif'),
(94, 'RT @na_dirs: Semua niat baik dan kebersamaan membangun NKRI harus diapresiasi. Kebersamaan dalam keragamaan. \n\n\n\nAda waktunya berbeda, ada wa…', 'positif'),
(95, 'RT @bintangku206: poling pamungkas!!!!!!!!!!!!!!!! setelah \"berkhianat\" apakah anda masih setia dan tetap bersama @prabowo @gerindra ?????…', 'negatif'),
(96, '@ardatiazwar @Dahnilanzar @prabowo Apalagi berharap pada manusia yang kalah wkwkwk', 'negatif'),
(97, 'RT @Aisyah_Padi: @AbiidDzoe @prabowo @sandiuno Pagiiii bang... sdh ngopi blm ? \n\n\n\n#UtangMeluluYangBayarSiapa\n\n#UtangMeluluYangBayarSiapa\n\n\n\nJgn…', 'negatif'),
(98, '@Gerindra @prabowo Good bye gerindra! Good bye prabowo! It\'s time to move on and move up.', 'negatif'),
(99, 'RT @asumsico: Sekitar pukul 10.00 pagi, Prabowo dan Jokowi menyantap makan siang bersama di sebuah restoran di FX Sudirman, Jakarta. Mereka…', 'positif'),
(100, 'RT @MSApunya: Gerakan Berjamaah #BoikotPrabowo\n\n\n\nyang setuju dgn Gerakan ini sila Retweet<U+0001F501>, lalu tulis tagar di kolom komentar #BoikotPrabow…', 'negatif'),
(101, 'RT @negativisme: Alhamdulilah, inilah sejatinya bangsa Indonesia. Selamat Pak Jokowi, Terimakasih Pak Prabowo, Bersatu demi bangsa Indon…', 'positif'),
(102, 'https://t.co/fJiAFULPyu', NULL),
(103, '@Gerindra @prabowo Menolak segala bentuk kecurangan, tp pada akhirnya menyelamatinya!', 'positif'),
(104, 'Kompak Pakai Baju Putih, Prabowo dan Jokowi Bertemu di Stasiun MRT https://t.co/4VVhTz0nn8 https://t.co/wPe0YQm9v1', 'positif'),
(105, '@DR_HLuck15 @prabowo Amen to that bro!\n\nThere\'s no place for haters. We are one. We are INDONESIA\n\nGod bless Indonesia!!', 'positif'),
(106, '\"aku bahagia kalo bahagiamu karena aku\"\n\nbisik pak prabowo\n\n\n\nPak jokowi: <U+0001F602> https://t.co/7qaNkdRWhA', 'positif'),
(107, 'RT @kurawa: Terbukti kalo selama ini prabowo cuma dengar pembisik nya yang bilang Indonesia akan bubar ..\n\nKalo sudah merasakan dan terjun l…', 'negatif'),
(108, '@ILCtv1 @jokowi @prabowo Ini juga aneh TV One da jd TV Mainstream termsk ILC apa karna ARB utangnya jatuh tempo bul… https://t.co/Jh5hsJl1JP', 'negatif'),
(109, '@mas__piyuuu @prabowo @jokowi Mulai hari ini tidak ada lagi Cebong vs Kampret. Yang ada adalah: \n\nRAKYAT vs BONGPRET… https://t.co/EWo7JkUICC', 'positif'),
(110, 'RT @Meyymeydii: I\'m not crying. You\'re crying. This picture means a lot. <U+0001F62D><U+2764><U+2764> Thank you Pak Prabowo & Pak Jokowi for making us smile and cry…', 'positif'),
(111, '@kondangtitis @Gerindra @prabowo Ini kan yg nampak permukaannya...coba liat beberapa buln k depan ada yg brbh p gak', 'positif'),
(112, 'Ke Laut aja pendukung kedua kubu yg suka kasar, mereka berdua baik2 saja kan. Dua orang terbaik di masanya. Politis… https://t.co/lH1eWNuE7h', 'positif'),
(113, '@Gerindra @prabowo Sego sak pincuk, lawuhe iwak jaran......', 'netral'),
(114, 'RT @negativisme: Alhamdulilah, inilah sejatinya bangsa Indonesia. Selamat Pak Jokowi, Terimakasih Pak Prabowo, Bersatu demi bangsa Indon…', 'positif'),
(115, '@tubirfess dan di momen ini terbongkar kalo motif mereka dukung prabowo cuma karena benci jokowi. kalo pendukung pr… https://t.co/fTlTA6cfjd', 'positif'),
(116, 'Cc\n\n@prabowo \n\n@Gerindra \n\n@fadlizon https://t.co/WUumWGyQEo', 'netral'),
(117, 'RT @ChandniCNA: #Jokowi: no more 01, 02, no more name calling. What is there now is Garuda Pancasila. #Prabowo: Everyone is red and white.', 'positif'),
(118, '@ekowboy2 @prabowo Bner bner dah ini pendukung 02 nya emg pada gamau damai adem adem gitu sejenak, mau nya ribut mu… https://t.co/Vh3XlY5ny6', 'negatif'),
(119, 'RT @KompasTV: Prabowo: Terima Kasih Pak Jokowi Saya Naik MRT, Luar Biasa\n\n\n\n#BreakingNews #03PersatuanIndonesia\n\nLive streaming: https://t.co/…', 'positif'),
(120, 'Prabowo Saat Naik MRT: Seperti di Luar Negeri https://t.co/lnTQuW9tR5', 'negatif'),
(121, 'RT @ekowboy2: Buat yang berniat unfollow masal akun @prabowo silahkan retweet!!\n\n\n\nKita tenggelamkan siapapun yang berkomplot dg kecurangan,…', 'negatif'),
(122, '@adilmakmur02 @prabowo Megawati lebih berprinsip dari @prabowo...that fact!!!!', 'positif'),
(123, 'ohhhhh ternyata rekonsiliasi Jokowi-Prabowo gagal karena kendala denda HRS di Arab Saudi. #RizieqTertahanDendaDiArabSaudi #JokowiMaruf', 'negatif'),
(124, '@IbnuQosim13 @AAbdullsh @Anton_Thabrani @prabowo @andre_rosiade @fadlizon @rockygerung @Teh_TJEMPLUNG @Kolak_VI… https://t.co/ntnSgHaiH2', 'negatif'),
(125, 'RT @KatolikG: Kenapa Rekonsiliasi politik dicemooh, dihina dan dicaci maki?\n\n\n\nKrn mereka terlanjur menanamkan perang dalam pikirannya. Menan…', 'positif'),
(126, 'RT @arifz_tempo: Perihal pertemuan jokowi dan prabowo hari ini, ketahui background dan konteksnya dalam liputan Tempo dua dan tiga pekan la…', 'negatif'),
(127, 'RT @cumakawan: Setelah Rekonsiliasi/Pertemuan Jokowi & Prabowo Polling yuk !\n\n\n\nRT : Habib Rizieq Shihab.\n\nLIKE : Prabowo & Jokowi\n\n\n\nSiapa Dar…', 'netral'),
(128, 'RT @tvOneNews: Jokowi dan Prabowo sempat melakukan makan siang bersama di kawasan Senayan.\n\nDapatkan berita lain di tvONe connect #tvOneNew…', 'positif'),
(129, '@iskandar__fauzi @prabowo wkwkwk kasihan yang masih jadi kampret!\n\npadahal sebagian dari kampret sudah berubah jadi… https://t.co/617g74X4ql', 'negatif'),
(130, '@RichiRisma @Gerindra @prabowo Ahhhh wayah kiwari erenh erengaannn enakna mah bari Ucang Anggeeee <U+0001F60B><U+0001F606><U+0001F606><U+0001F606><U+0001F606><U+0001F606><U+0001F606>', 'netral'),
(131, 'Kawan-kawan relawan semua harus bersatu juga. Jokowi dan Prabowo udah ketemu. \n\n\n\n#BersatuUntukIndonesiaMaju https://t.co/TQXqTBfqZj', 'positif'),
(132, 'RT @KuntoAjiW: Lho ini malah pak Prabowo dibilang nyebong. Gimana sih, orang diajak damai, memang suka sekali keributan ya. :))', 'negatif'),
(133, 'RT @_garuda501: Semakin banyak orang yang kecewa, semakin bagus sebab itu tandanya bahwa @prabowo di dukung oleh orang2 yang tulus.\n\n\n\nTapi,…', 'positif'),
(134, 'RT @MangajatsCkp: Melihat & mendengar apa yg disampaikan Pak @prabowo, saya pribadi berpositif qolbu trhdp beliau. Ma\'af bkn berarti saya…', 'netral'),
(135, '@ebongBOY @brongto @HHeztia @prabowo @jokowi @kanyaaputrii @KembangGoyang8 @ALMARONI3 @snjayajonggrang @SalmaBrecht… https://t.co/6gAFG5it9M', 'netral'),
(136, '@marsiagian @ardi_riau @prabowo https://t.co/ibS2bRr3FK', 'netral'),
(137, 'RT @kompascom: KATA PRABOWO:\n\nKalau kadang-kadang bersaing, mengkritik, itu tuntutan politik, tuntutan demokrasi. Tetapi setelah bertarung k…', 'netral'),
(138, 'RT @cumakawan: @Dahnilanzar @prabowo https://t.co/2BgiXAzt5c', 'netral'),
(139, 'RT @kompascom: SUDAH CUKUP...\n\nIstilah cebong dan kampret tamat! https://t.co/mgVkBCxEEE https://t.co/AOJxzGGp5V', 'positif'),
(140, '@detikcom Kebetulan sejak april hingga juli ini baru dapet sperpart asli rante speda @Jokowi yg sering putus....\n\nDa… https://t.co/7KjaiMjoUF', 'positif'),
(141, 'RT @detikcom: \"Beliau tahu kalau saya belum pernah naik MRT, terima kasih Pak (Jokowi), saya naik MRT, luar biasa,\" jelas Prabowo. #Pertemu…', 'positif'),
(142, '@Gerindra @prabowo Apa yg diperbuat hari ini akan kalian rasakan nanti... tunggu 2024', 'negatif'),
(143, 'RT @KhofifahIP: Kalau Pak Presiden @jokowi dan Pak prabowo saja bisa bercanda dan tertawa bersama, kenapa para pendukung dan rakyat harus…', 'negatif'),
(144, 'RT @_garuda501: Pada akhirnya hanya mereka-mereka yang kecewa itulah teman sejati perjuangan @prabowo ... Kalau yang kecewa itu pergi. Maka…', 'negatif'),
(145, 'RT @Alvaroe__L: Ketua Umum Partai Gerindra Prabowo Subianto mengakui hingga kini belum menyampaikan ucapan selamat kepada Joko Widodo sebag…', 'positif'),
(146, '@Gerindra @prabowo Maaf kan sy min,semua ini demi mak sy yg merasa di khianati oleh beliau <U+0001F629>,titip ke pak @prabowo… https://t.co/cePKXKAw2i', 'negatif'),
(147, 'RT @DukeCondet: Buzzer2 @jokowi pade bingung ngeliat banyak netizen yg kemaren dukung 02, sekarang malah berbalik nyerang @prabowo.\n\n\n\nMereka…', 'negatif'),
(148, 'RT @glrhn: Lucu.\n\n1. Habib Rizieq itu pergi atas keinginan sendiri.\n\n2. Ulama tidak dikriminalisasi, sebagian dari mereka memang melakukan ti…', 'positif'),
(149, 'RT @mbah_mijan: Pertemuan Pak Prabowo dan Pak Jokowi bukan saja membuat Indonesia bangga, tapi membuat rakyat juga semakin cinta. \n\n\n\nCinta m…', 'negatif'),
(150, '@praburosso @LisaAmartatara3 @prabowo Dng cara dan untuk golomgan mu sendiri ya Bos?', 'positif'),
(151, 'RT @setkabgoid: Presiden @jokowi bertemu dengan @prabowo di Stasiun MRT Lebak Bulus, Sabtu (13/7). https://t.co/XgCuDPJ469', 'negatif'),
(152, 'RT @TsamaraDKI: Hari ini adalah hari bahagia untuk Indonesia. Pak Jokowi bertemu Pak Prabowo. Kontestasi usai. Kita kembali menjadi Indones…', 'positif'),
(153, 'RT @ekowboy2: Buat yang berniat unfollow masal akun @prabowo silahkan retweet!!\n\n\n\nKita tenggelamkan siapapun yang berkomplot dg kecurangan,…', 'positif'),
(154, '@stefani_grunge @florielicious_ @prabowo Teu tega nerjemahkeunna , mangga wios we ah ...<U+0001F605><U+0001F601>', 'netral'),
(155, '@helmifelis @prabowo Saya berhusnudhon aja, mungkin pak @prabowo memang sdg memperjuangkan rakyat cilik,ini bagian… https://t.co/s2wF5VQBsA', 'netral'),
(156, '@yusuf_dumdum @jokowi @prabowo Yg radikal bingung gk ada bahan buat goreng lagi', 'negatif'),
(157, 'RT @MARSUDI__: Kalian memang hebat\n\nKalian memang top\n\nKalian negarawan sejati\n\nSalam hormat\n\nPak @jokowi & pak @prabowo \n\nKami bangga melihatm…', 'negatif'),
(158, 'RT @bintangku206: poling pamungkas!!!!!!!!!!!!!!!! setelah \"berkhianat\" apakah anda masih setia dan tetap bersama @prabowo @gerindra ?????…', 'negatif'),
(159, '@TanYoana @prabowo @sandiuno @fadlizon @Dahnilanzar @Gerindra maafkan saya jendral krn saya tdk ikhlas dan ridho ji… https://t.co/CYn2EJcd9G', 'negatif'),
(160, '@Dahnilanzar @prabowo @Gerindra goodbye <U+0001F622><U+0001F910>', 'negatif'),
(161, '@Dahnilanzar @prabowo Akhirnya.. <U+0001F62D>', 'netral'),
(162, 'RT @PDI_Perjuangan: \"Ada yang bertanya kenapa Pak Prabowo belum ucapkan selamat atas ditetapkan Pak Jokowi sebagai Presiden RI 2019-2014. S…', 'negatif'),
(163, 'RT @na_dirs: Semua niat baik dan kebersamaan membangun NKRI harus diapresiasi. Kebersamaan dalam keragamaan. \n\n\n\nAda waktunya berbeda, ada wa…', 'negatif'),
(164, 'Indonesia\'s Widodo, Prabowo Share Train Ride After Bitter Feud https://t.co/j7X1e0Pzto', 'positif'),
(165, 'RT @ferdiriva: Prabowo: Sudahlah, jangan ada lagi cebong kampret. Semuanya merah putih. \n\n\n\nTerharu banget gue. \n\n\n\nPak, <U+2764>', 'positif'),
(166, 'RT @sudjiwotedjo: Pertemuan Pak Jokowi - Pak Prabowo adalah di jalan. Tak saling bertamu. Ini mengandung kode tersendiri, khas teater tradi…', 'netral'),
(167, 'RT @Tovna1: @MichelAdamNew Pak Prabowo itu org yg lapang hatinya Miss...\n\n#UtangMeluluYangBayarSiapa \n\n#UtangMeluluYangBayarSiapa', 'positif'),
(168, 'RT @PartaiSocmed: Para buzzer sedang bikin opini seolah pertemuan Jokowi-Prabowo atas inisiatif Budi Karya. Padahal ngurus tiket pesawat sa…', 'netral'),
(169, 'RT @negativisme: Alhamdulilah, inilah sejatinya bangsa Indonesia. Selamat Pak Jokowi, Terimakasih Pak Prabowo, Bersatu demi bangsa Indon…', 'positif'),
(170, '@Dahnilanzar @prabowo Hasil terawang sy terkait pertemuan Prabowo-BG di Bali dgn agenda Rekonsiliasi terjadi. Saya… https://t.co/ENQuK1ItME', 'netral'),
(171, 'RT @arifz_tempo: Perihal pertemuan jokowi dan prabowo hari ini, ketahui background dan konteksnya dalam liputan Tempo dua dan tiga pekan la…', 'netral'),
(172, 'Saya bangga dilahirkan sbg bangsa Indonesia..\n\nPresiden kita Bpk @jokowi & Bpk @prabowo mempunyai kekuatan\" yang dap… https://t.co/1x56Lx7SQ1', 'positif'),
(173, 'RT @zarryhendrik: Dulu saya pernah tulis, jika cinta itu satu, tiga perempatnya percakapan.\n\n\n\nSenang sekali melihat Pak @prabowo dan Pak @jo…', 'positif'),
(174, '@AndiWinarno18 @iskandar__fauzi @khalsa86_mdn @prabowo @Gerindra Haha...ya udh minggat sono<U+0001F923><U+0001F923><U+0001F923><U+0001F923>', 'negatif'),
(175, '@IsmanTengku @prabowo Haha emak2 dungu berjamaah <U+0001F61D><U+0001F61D>', 'negatif'),
(176, 'RT @MafiaWasit: Banyak yang tanya, makan siang Pak Prabowo dan Pak Jokowi ini kira-kira siapa yang bayari?\n\n\n\nKalau anak Futsal pasti tahu, y…', 'netral'),
(177, '@kumparan Prabowo tau makannya dibayarin pesennya sate kambing yg mahalan', 'netral'),
(178, 'Penampakan Sneakers Jokowi Naik MRT Bareng Prabowo, Produksi Anak Bangsa via @okezonenews https://t.co/bkk45xLhSE', 'netral'),
(179, 'RT @bintangku206: poling pamungkas!!!!!!!!!!!!!!!! setelah \"berkhianat\" apakah anda masih setia dan tetap bersama @prabowo @gerindra ?????…', 'negatif'),
(180, 'RT @conan_idn: <NAME> juga pernah bertemu Komandan musuh, untuk berunding. Bukan untuk Takluk. @prabowo @sandiuno\n\n*****\n\nPrab…', 'netral'),
(181, '@RomitsuT @prabowo Kapan tupone pak.. Klo meratapi kesedihan', 'negatif'),
(182, 'RT @kurawa: FYI : \n\npak Menhub yang atur pertemuan Jokowi dan Prabowo hari ini..<U+0001F600>\n\n\n\nSudah beberapa hari ini diajak jalan2 sama presiden utk u…', 'netral'),
(183, '@adilmakmur02 @prabowo Goodbye.. <U+0001F642>', 'netral'),
(184, '@AyuTamara091 @prabowo Hahaha...bodo amat..', 'netral'),
(185, 'RT @ekowboy2: Buat yang berniat unfollow masal akun @prabowo silahkan retweet!!\n\n\n\nKita tenggelamkan siapapun yang berkomplot dg kecurangan,…', 'netral'),
(186, '@Gerindra @prabowo Kecurangan dan kebenaran 2 hal yg berbeda hak dan batil itu wajib di tegakan.\n\nTidak mungkin mene… https://t.co/2cSz71PuqI', 'netral'),
(187, 'RT @cumakawan: Setelah Rekonsiliasi/Pertemuan Jokowi & Prabowo Polling yuk !\n\n\n\nRT : Habib Rizieq Shihab.\n\nLIKE : Prabowo & Jokowi\n\n\n\nSiapa Dar…', 'netral'),
(188, '@MSApunya @prabowo Ayam sayur campur col<U+0001F601><U+0001F601>', 'netral'),
(189, '@Gerindra @prabowo Gw dikontol-kontoli pendukung jkw dan gk prnh membalas adlh krn gw pikir apa gunanya kasar dan k… https://t.co/RNygyu3U2Q', 'negatif'),
(190, 'skrg pada muji2 pak Prabowo, jejak digitalnya dah pada merembes keknya', 'negatif'),
(191, '@ekowboy2 @prabowo Terbukti prabowo orang baik yg dimanfaatin pendukung2 yg siap menusuk dari belakang', 'positif'),
(192, '@_doncorleone78_ @PakdeTunto Pantesan kalah Mulu, lhawong @prabowo jenderal kardus plin-plan', 'negatif'),
(193, 'Prabowo dan jokowi aja udah salaman,trus kapan kamu salaman sama ayah ku wkwk', 'positif'),
(194, 'Biarlah pertemuan Pak Jokowi dan Pak Prabowo dapat memberikan dampak positif bagi Indonesia kedepannya.\n\nKarena seka… https://t.co/lb1JvuSQWm', 'positif'),
(195, 'RT @negativisme: Alhamdulilah, inilah sejatinya bangsa Indonesia. Selamat Pak Jokowi, Terimakasih Pak Prabowo, Bersatu demi bangsa Indon…', 'positif'),
(196, 'RT @NajwaShihab: Karena tak ada menang kalah yang seharga persatuan bangsa. #catatannajwa \n\n\n\nReposted from @matanajwa - Joko Widodo dan Pra…', 'positif'),
(197, '@ardi_riau @prabowo https://t.co/ZeWPGG4XDk', 'netral'),
(198, 'RT @TirtoID: <U+0001F496>STOP PRESS<U+0001F496>\n\n\n\nSetelah wacana pertemuan yang tak kunjung pasti, bahkan hingga 3 bulan usai Pemilu berlalu, hari ini Jokowi dan…', 'netral'),
(199, 'RT @DukeCondet: Buzzer2 @jokowi pade bingung ngeliat banyak netizen yg kemaren dukung 02, sekarang malah berbalik nyerang @prabowo.\n\n\n\nMereka…', 'positif'),
(200, '@ardi_riau @prabowo Gue kira lu manusia, gak taunya kampret...\n\n#SALAHKIRA', 'negatif'),
(201, 'RT @_s3l3p3tk4r3t2_: @Ghaida82223538 @ArieSyakira @prabowo <U+0001F600> jangan berprasangka buruk sob... Cuma nutup mata hati... \n\n\n\nKecewa boleh... Tap…', 'positif'),
(202, 'RT @TsamaraDKI: Hari ini adalah hari bahagia untuk Indonesia. Pak Jokowi bertemu Pak Prabowo. Kontestasi usai. Kita kembali menjadi Indones…', 'positif'),
(203, '@Khojan___08 @AndiWinarno18 @iskandar__fauzi @khalsa86_mdn @prabowo @Gerindra klo gerindra usung anies di pilkada 2… https://t.co/Btc9vpgobL', 'netral'),
(204, '@Gerindra @prabowo Menolak kok mau ktemu sm pelaku kecurangan', 'negatif'),
(205, 'Terimakasih bapak Prabowo yg telah memberikan teladan bagi masyarakat Indonesia . Yg terpenting… https://t.co/DK4LUFkRVZ', 'positif'),
(206, 'RT @_garuda501: Otoritas Kuno Kingking tidak masalah dengan apa yg dilakukan oleh @prabowo selama para Ulama tidak mempersoalkannya.\n\n\n\nYang…', 'negatif'),
(207, '@ardi_riau @Airin_NZ @prabowo Jangan lupa dimakan Obatnya Mas Ardi, kalau sudah mumet dibawa tidur aja jangan terla… https://t.co/lF24GXlyXm', 'negatif'),
(208, 'RT @republikaonline: Pertemuan Jokowi-Prabowo adalah gaya baru dalam berdiplomasi yang lebih merakyat. https://t.co/SmAUAEzUlu', 'netral'),
(209, '@setkabgoid @jokowi @prabowo jgn lp sila ke 5. keadilan sosial bagi seluruh rakyat indonesia, bukan hanya untuk kep… https://t.co/i8Nl4tf1R1', 'positif'),
(210, 'RT @RestyChayah: Yg masih pake ava @prabowo ato yg pake embel2 pilihan di pilpres segeralah ganti. Merekalah udah sekolam \n\n\n\nKita rakyat bu…', 'negatif'),
(211, '@Dahnilanzar @prabowo Salah taktik bro,, harusnya ucapan <U+0001F457> prabowo itu harus di poles dulu katakan ucapan selamat t… https://t.co/e5BWcSG4IK', 'negatif'),
(212, 'RT @MafiaWasit: Banyak yang tanya, makan siang Pak Prabowo dan Pak Jokowi ini kira-kira siapa yang bayari?\n\n\n\nKalau anak Futsal pasti tahu, y…', 'positif'),
(213, 'Ucapkan Selamat Kepada @jokowi, @prabowo: Kami Siap Membantu Untuk Kepentingan Rakyat\n\nhttps://t.co/kBesdc9nXs https://t.co/25ghYZkMVu', 'positif'),
(214, 'RT @kompascom: KATA PRABOWO:\n\nKalau kadang-kadang bersaing, mengkritik, itu tuntutan politik, tuntutan demokrasi. Tetapi setelah bertarung k…', 'negatif'),
(215, 'RT @STcom: Jokowi and Prabowo meet for first time since presidential election - at MRT station https://t.co/olOmzfHwpH https://t.co/Ti77QQF…', 'positif'),
(216, '@pianRitonga @cumarachel @prabowo @jokowi @Gerindra Penilaianku berdasar pada kekecewaanmu itu pasca pertandingan.… https://t.co/0Cg26gsCsq', 'negatif'),
(217, 'RT @MafiaWasit: Banyak yang tanya, makan siang Pak Prabowo dan Pak Jokowi ini kira-kira siapa yang bayari?\n\n\n\nKalau anak Futsal pasti tahu, y…', 'positif'),
(218, 'RT @wisnukunt: pak @jokowi & pak @prabowo naik MRT menuju FX. adem liatnya. https://t.co/FIZG3dsTi8', 'positif'),
(219, 'RT @negativisme: Alhamdulilah, inilah sejatinya bangsa Indonesia. Selamat <NAME>, Terimakasih Pak Prabowo, Bersatu demi bangsa Indon…', 'positif'),
(220, 'RT @setkabgoid: Presiden @jokowi bertemu dengan @prabowo di Stasiun MRT Lebak Bulus, Sabtu (13/7). https://t.co/XgCuDPJ469', 'positif'),
(221, 'Detik2 yang bikin kecewa 55% rakyat Indonesia. Ucapan selamat dari Prabowo ke Jokowi yang dimenangkan oleh MK https://t.co/5TGUYq1tan', 'negatif'),
(222, '@Gerindra @prabowo sudah kalah, ditinggal pendukung di ketawain cebong .......', 'negatif'),
(223, 'RT @Nurussolichah3: @BiLLRaY_ Wahhh senangnyaaa <U+0001F483><U+0001F483><U+0001F483>, ini spontan ketemuannya ya? \n\nSehat2 ya pak jokowi+ pak prabowo...<U+0001F64F><U+0001F607>', 'positif'),
(224, '@ReflyHZ Bang, aku rasa inti masalah bkn @prabowo tapi rasa keadilan yg terkoyak, klu prabowo sdh ketemu paling2 yg… https://t.co/itj4azpI8L', 'positif'),
(225, '@Gerindra @prabowo Sontoloyo leda lede podo mukidi.. sue2 sek koyo ngene yo wegah ora betah', 'netral'),
(226, 'RT @cumakawan: Setelah Rekonsiliasi/Pertemuan Jokowi & Prabowo Polling yuk !\n\n\n\nRT : Habib Rizieq Shihab.\n\nLIKE : Prabowo & Jokowi\n\n\n\nSiapa Dar…', 'netral'),
(227, 'RT @Dahnilanzar: Sobat. Saya percaya dg komitmen Pak @prabowo menjaga tujuan kebangsaan yg lebih besar. Menyelamatkan yg pantas dan harus d…', 'positif'),
(228, 'Antara pendukung @prabowo dan pembenci @jokowi....\n\n\n\nmana yg paling banyak?', 'netral'),
(229, 'RT @business: Indonesian President <NAME> took a train ride with his rival Prabowo Subianto as they met for the first time since a div…', 'positif'),
(230, '@edimaha233 @Gerindra Sama, gue udah unfoll @Gerindra dan @prabowo. Skrg gue follow @Garbi_Idn.\n\n\n\nCc: bang @Fahrihamzah', 'negatif'),
(231, '@Gerindra @prabowo #kapokpilihgerindra', 'negatif'),
(232, 'RT @ekowboy2: Buat yang berniat unfollow masal akun @prabowo silahkan retweet!!\n\n\n\nKita tenggelamkan siapapun yang berkomplot dg kecurangan,…', 'negatif'),
(233, 'RT @kurawa: Kenapa prabowo dan jokowi ketemunya di MRT?\n\n\n\nKalo di Istana, prabowonya bakal dibully kampret fundamentalis sbg pemimpin Cair I…', 'positif'),
(234, '@Dahnilanzar @prabowo MAMPOSSSSS WKWKWKWK', 'negatif'),
(235, '@Gerindra @prabowo Ada bangga...\n\nAda kecewa...\n\nTergantung dilihat dari sisi mana ?\n\n\n\nTerserah...curahkan perasaanmu sodara2...', 'netral'),
(236, '@dani_pangabean @Gerindra @prabowo Done..... https://t.co/TuV2NXeJwx', 'netral'),
(237, '@atjehsultanate @prabowo @jokowi Tanyo ta peugot nanggroe dro.\n\nHan ek tajak pike le keu indon.\n\nSaket ate2 teuh <U+0001F644>', 'netral'),
(238, '@RomitsuT @prabowo Ini anak teater kincling niih...<U+0001F47E>\n\n\n\nhttps://t.co/79xj3F46Ww', 'netral'),
(239, '@Abetday02_day @prabowo Aamiin <U+0001F625>', 'netral'),
(240, 'RT @RestyChayah: Yg masih pake ava @prabowo ato yg pake embel2 pilihan di pilpres segeralah ganti. Merekalah udah sekolam \n\n\n\nKita rakyat bu…', 'netral'),
(241, '@vinosa @vasco_ruseimy @prabowo #PrabowoCebongMutahir', 'netral'),
(242, 'RT @cumakawan: Setelah Rekonsiliasi/Pertemuan Jokowi & Prabowo Polling yuk !\n\n\n\nRT : Habib Rizieq Shihab.\n\nLIKE : Prabowo & Jokowi\n\n\n\nSiapa Dar…', 'netral'),
(243, '@cumarachel @prabowo @jokowi @Gerindra Udah ngehek teh...bye pokoknya lah...', 'netral'),
(244, 'RT @yusuf_dumdum: Pak @jokowi gobrol santai di MRT sama @prabowo \n\n\n\nBuat para pendukung udahan ya, gak usah pada ribut. Saatnya semua bersat…', 'positif'),
(245, '@TofaGarisLurus saatnya prabowo jadi ayam sayur.haha kelaut aja lu barang prabowo kecewa w.', 'negatif'),
(246, '@eae18 @bebek_bukan @prabowo Dari dulu dibilangin kagak percaya...pekok.', 'negatif'),
(247, '@Gerindra @prabowo Bulshit and nonsens, you know?', 'positif'),
(248, 'RT @MataNajwa: Joko Widodo & Prabowo Subianto akhirnya bertemu. Sepertinya sudah janjian nih di stasiun MRT Lebak Bulus pagi ini. \n\n\n\nKompak…', 'positif'),
(249, '@JajangRidwan19 Begitulah seharusnya jiwa para pemimpin. Salut buat Prabowo.\n\n\n\nMenurut gue, Prabowo adalah pemimpin… https://t.co/icwA1XEpDd', 'positif'),
(250, 'RT @musniumar: Sy prihatin dan tdk habis pikir Natalius Pigai digagalkan dalam seleksi administrasi Capim KPK. Saya duga alasan politis Pi…', 'netrla'),
(251, 'Dear mr @prabowo ..\n\nRekonsiliasi boleh demi persatuan tp jangan sampe meninggalkan posisi oposisi..', 'positif'),
(252, 'RT @Gerindra: Satu hal yang kami ingin tekankan, bahwa tidak ada pembicaraan mengenai deal-deal politik apapun. Karena bagaimana pun Pak @p…', 'negatif'),
(253, 'Terimakasih pak prabowo telah menunjukan kepada kami sikap ketidak munafikan yang apa adanya<U+0001F60A> https://t.co/gG1aL1AJ72', 'negatif'),
(254, 'RT @Ltigrr: @taa_gus Saya hanya bingung dgn org yg masih membenci pertemuan antara jokowi dan prabowo. Mereka itu sebenernya warga negara I…', 'negatif'),
(255, '#KamiRakyatKamiOposisi \n\n\n\nSilakan prabowo beserta smua partai yg ada dibumi Indonesia bergabung dgn Pemerintahan Jok… https://t.co/1p7DnA5NKb', 'negatif'),
(256, '@ardi_riau @prabowo Bodo amat EGP', 'negatif'),
(257, 'RT @mediaindonesia: \"Selamat bekerja, selamat menambah rambut putih, Pak,\" kata Prabowo Subianto https://t.co/7HzR2EU6sl', 'positif'),
(258, 'Terima kasih Pak @prabowo atas 3 ucapan penting Bapak:\n\n1. Selamat atas penetapan sebagai Presiden terpilih\n\n2. Selam… https://t.co/8LHTCno3AA', 'positif'),
(259, 'RT @ekowboy2: Buat yang berniat unfollow masal akun @prabowo silahkan retweet!!\n\n\n\nKita tenggelamkan siapapun yang berkomplot dg kecurangan,…', 'negatif'),
(260, '#Prabowo kecewa', 'negatif'),
(261, '@mas__piyuuu @prabowo @jokowi enak tenan rasa darah pemuda2 itu\n\nwangi tenan bau gas airmata itu', 'negatif'),
(262, 'RT @bintangku206: poling pamungkas!!!!!!!!!!!!!!!! setelah \"berkhianat\" apakah anda masih setia dan tetap bersama @prabowo @gerindra ?????…', 'negatif'),
(263, '@eae18 @prabowo Bukan petarung tapi pecundang ...ucapkan met tinggal prabowo @ Gerindra ...tanpa mereka masih ada semangat dan optimis', 'negatif'),
(264, 'RT @ardi_riau: Mulai detik ini,sy tdk akan mencuit apapun tentang @prabowo lagi.Buat sy kelian hanya memanfaatkan rakyat utk kepentingan ke…', 'negatif'),
(265, 'RT @dhiensky: Tapi sekarang ternyata kelompok bathil itu dimenangkan dengan curang, maka kita berlepas diri dari mereka.\n\nBegitu pula dg ken…', 'negatif'),
(266, 'RT @ikramarki: Find someone who looks at you the way pak Prabowo looks at pak Jokowi. <U+0001F496> https://t.co/goegoOXXYq', 'positif'),
(267, 'RT @Dahnilanzar: Sobat. Saya percaya dg komitmen Pak @prabowo menjaga tujuan kebangsaan yg lebih besar. Menyelamatkan yg pantas dan harus d…', 'positif'),
(268, '@WagimanDeep @FerdinandHaean2 @jokowi @prabowo Lanjutken dengen salto 7x ketum latsykar pejuhangan. Tjangkemkan', 'negatif'),
(269, 'RT @Chandranegara: @LisaAmartatara3 @prabowo @sandiuno Penghianat pendukung dan ijtima ulama<U+0001F621>', 'negatif'),
(270, '@Gerindra @prabowo sama aja rupanya.....', 'negatif'),
(271, 'RT @kurawa: Ada satu hal yang menarik dari Prabowo hari ini dia tidak menggunakan Peci Kebesarannya saat bertemu jokowi.\n\n\n\nMemberi pesan kep…', 'netral'),
(272, '@uhondol @prabowo Pilih saya 2024', 'netral'),
(273, 'RT @social_junkee: Yang menang hari ini adalah\n\nJokowi Prabowo\n\nRakyat Indonesia\n\ndan\n\n...\n\n...\n\n...\n\nZeromatic Belleza https://t.co/9xUfEK6CBb', 'positif'),
(274, 'Politik Semakin Dewasa, Jokowi Prabowo Berpelukan https://t.co/y58hkFAg8P https://t.co/udWyIhpxa3', 'positif'),
(275, 'RT @tvOneNews: Jokowi dan Prabowo sempat melakukan makan siang bersama di kawasan Senayan.\n\nDapatkan berita lain di tvONe connect #tvOneNew…', 'positif'),
(276, 'RT @bintangku206: poling pamungkas!!!!!!!!!!!!!!!! setelah \"berkhianat\" apakah anda masih setia dan tetap bersama @prabowo @gerindra ?????…', 'positif'),
(277, 'RT @mpazzhole: jokowi, prabowo, bertemu, mrt, lebak bulus, sate, senayan, fx sudirman, baju putih, perasaan baru, kesedihan, kesulitan, ayo…', 'negatif'),
(278, 'RT @irwan_fecho: AHY memang visioner.. jikapun Prabowo bertemu Jokowi hari ini maka itu sudah sejak lama dianjurkan oleh AHY.. tolong janga…', 'positif'),
(279, 'Rizal Mallarangeng: Demokratisasi Matang ditunjukkan Jokowi dan Prabowo https://t.co/RwyfsgmSqa', 'negatif'),
(280, '@BertemanM @prabowo juga sih yg ngompor2in rakyat dgn pernyataan Pemilu curang sehingga pendukung turun kejalan.. S… https://t.co/YMcmCqkD9r', 'negatif'),
(281, 'RT @detikcom: \"Pak Jokowi, Pak Prabowo, we love you!\" teriak warga. Banyak penumpang di stasiun MRT ini yang mengelu-elukan nama keduanya.…', 'positif'),
(282, 'RT @IsmanTengku: Benarkah?\n\n\n\nPublik ......... atas pertemuan @prabowo dan @jokowi\n\n\n\nRT -> mempertanyakan\n\nLIKE -> senang https://t.co/bQhJZQ5p…', 'netral'),
(283, '@Gerindra @prabowo Basiiii basiiiii basiiiii_\n\nDulu Ahy kau sebut penghianat _ Oleh gerombolan @Gerindra skrg kau ngelesssss', 'negatif'),
(284, 'Tanggal 7 juli 2019, capres Jokowi tunda pengumuman dirinya terpilih untuk lanjut 2 periode. Karena Prabowo menolak… https://t.co/EIRucs1Qq5', 'netral'),
(285, 'RT @ardi_riau: Sebagai relawan murni yang tidak ada hubungannya dengan partai dan BPN, tugas kami sudah selesai untuk memperjuangkan kamu @…', 'negatif'),
(286, '@Dahnilanzar @prabowo Mau nanya buat pendukung prabowo : dengan begini stigma penculik ilang ga ?\n\n\n\nBuat pendukung j… https://t.co/GtaDnF6cf7', 'negatif'),
(287, 'RT @dhiensky: Dari awal kita gak berjuang demi Prabowo kog, tapi demi nasib Bangsa, demi masa depan Islam & umat Muslim negri ini, demi keb…', 'negatif'),
(288, 'RT @permadiaktivis: jadi jelas ya. Indonesia tidak perlu mulangin orang gak penting dari Arab sebagai syarat rekonsiliasi. rekonsiliasi is…', 'netral'),
(289, 'RT @RestyChayah: Taiklah kelen ! \n\n<U+0001F449> @prabowo @jokowi <U+0001F448> https://t.co/H7gy9tKHjf', 'netral'),
(290, '@ILCtv1 @jokowi @prabowo Kami pendukung kejujuran bukan pendukung prabowo, prabowo cuma alat bagi kami utk mencipta… https://t.co/TiSk8PmXO6', 'negatif'),
(291, 'Istana Pastikan Jokowi dan Prabowo Tak Bahas Habib Rizieq https://t.co/LY4fvNTXE5', 'netral'),
(292, '@FahryBakrie @CakKhum @aniesbaswedan @prabowo Namanya pertemuan itu tanpa disengaja, emang jokowi setiap jalan apal… https://t.co/7lZUFVOWHe', 'negatif'),
(293, 'RT @negativisme: Alhamdulilah, inilah sejatinya bangsa Indonesia. Selamat Pak Jokowi, Terimakasih Pak Prabowo, Bersatu demi bangsa Indon…', 'positif'),
(294, 'RT @cumakawan: Setelah Rekonsiliasi/Pertemuan Jokowi & Prabowo Polling yuk !\n\n\n\nRT : Habib Rizieq Shihab.\n\nLIKE : Prabowo & Jokowi\n\n\n\nSiapa Dar…', 'negatif'),
(295, '@steviechow2 @Gerindra @prabowo @jokowi Najis', 'negatif'),
(296, '@ekowboy2 @prabowo Udah gue unfollow smua akun prabowo dan gerindra serta smua anteknya....baik FB,IG maupun TWITTER...', 'negatif'),
(297, '@Gerindra @prabowo Fretlin,Gam dan OPM itu beda dgn jokowi,ngawur aja alasan mu min.\n\nJokowi itu menang krn curang,i… https://t.co/abJ5EIqOuc', 'negatif'),
(298, '@Gerindra @prabowo Ternyata kita salah pilih jendral @prabowo !!!! Dia hanya mementingkan diri sendiri dan kader2ny… https://t.co/qg3hmcrX0P', 'negatif'),
(299, '@Dahnilanzar @prabowo Sory brooo awal pilpres 2014 udah dengan isu Prabowo arau Jokowi sama saja, yanf oenting tida… https://t.co/I8pJiBR53g', 'negatif'),
(300, 'RT @selvydante: Pak @prabowo pak @sandiuno lihatlah mahluk2 peliharaan yang masih dibiarkan muntah sembarangan seperti ini <U+0001F447>\n\n\n\nLalu kita mau…', 'negatif'),
(301, 'RT @RisKhaAmalia_: I\'m not crying. You\'re crying. This picture means a lot. Thank you Pak Prabowo Pak Jokowi for making us smile and…', 'positif'),
(302, 'RT @arifz_tempo: Perihal pertemuan jokowi dan prabowo hari ini, ketahui background dan konteksnya dalam liputan Tempo dua dan tiga pekan la…', 'positif'),
(303, 'RT @detikcom: Presiden @jokowi dan Ketua Umum Partai Gerindra @prabowo bertemu di Stasiun MRT Lebak Bulus, Jakarta Selatan. Prabowo pun men…', 'positif'),
(304, 'RT @antaranews: Gerindra: pertemuan Jokowi-Prabowo merupakan pertemuan kebangsaan https://t.co/7SCYimzBE9', 'positif'),
(305, 'RT @STcom: Jokowi and Prabowo meet for first time since presidential election - at MRT station https://t.co/olOmzfHwpH https://t.co/Ti77QQF…', 'positif'),
(306, '@DoesDeep @cumakawan @ainiLutfiani4 @prabowo @jokowi https://t.co/qM4FzwQhdr', 'netral'),
(307, '@cumarachel @prabowo @jokowi @Gerindra Bodo amat', 'negatif'),
(308, '@OrlandoSL01 @prabowo @jokowi Yg tidak mau berSatu berarti akan kita tau Gerombolan mana yaaa<U+0001F602><U+0001F602><U+0001F602>', 'negatif'),
(309, '@jokowi Sukses buat pk presiden dengan apa yang pk presiden bangun.', 'positif'),
(310, 'RT @MSApunya: Gerakan Berjamaah #BoikotPrabowo\n\n\n\nyang setuju dgn Gerakan ini sila Retweet<U+0001F501>, lalu tulis tagar di kolom komentar #BoikotPrabow…', 'negatif'),
(311, 'RT @hariankompas: Keduanya menyampaikan bahwa kompetisi sudah usai, sehingga tak lagi ada 01 dan 02, tetapi semua kembali bersatu.\n\n\n\n#Polhuk…', 'positif'),
(312, '@devymanalu2 @prabowo @jokowi Oh jd blum lihat berita hari ini dong? Begitu bangun langsung mewek', 'netral'),
(313, 'RT @tempodotco: <NAME> beranggapan pertemuan Jokowi dan Prabowo di MRT menunjukkan sesuatu yang bergerak. https://t.co/NklqxBPb9n', 'positif'),
(314, 'RT @cumakawan: Setelah Rekonsiliasi/Pertemuan Jokowi & Prabowo Polling yuk !\n\n\n\nRT : Habib Rizieq Shihab.\n\nLIKE : Prabowo & Jokowi\n\n\n\nSiapa Dar…', 'netral'),
(315, 'RT @OmDennis: Bagi kami warga biasa,\n\nStasiun MRT & restoran adalah tempat janjian bertemu dan menyelaraskan hati.\n\nBaik bagi para kolega, sa…', 'positif'),
(316, '@AgentArya @Sarah_Pndj @jokowi @prabowo Wah.. si presiden senangnya <U+0001F917><U+0001F917>', 'positif'),
(317, 'RT @IsmanTengku: Benarkah?\n\n\n\nPublik ......... atas pertemuan @prabowo dan @jokowi\n\n\n\nRT -> mempertanyakan\n\nLIKE -> senang https://t.co/bQhJZQ5p…', 'netral'),
(318, 'RT @Nicbraveheart: Terganjal Aturan, Ahok Dipastikan Tak Bisa Jadi Calon Menteri Jokowi dan Calon Presiden 2024 https://t.co/sDYTWd1IJz NO…', 'netral'),
(319, 'RT @cumakawan: Setelah Rekonsiliasi/Pertemuan Jokowi & Prabowo Polling yuk !\n\n\n\nRT : Habib Rizieq Shihab.\n\nLIKE : Prabowo & Jokowi\n\n\n\nSiapa Dar…', 'netral'),
(320, 'RT @cumakawan: Setelah Rekonsiliasi/Pertemuan Jokowi & Prabowo Polling yuk !\n\n\n\nRT : Habib Rizieq Shihab.\n\nLIKE : Prabowo & Jokowi\n\n\n\n<NAME>…', 'netral'),
(321, 'RT @zarryhendrik: Dulu saya pernah tulis, jika cinta itu satu, tiga perempatnya percakapan.\n\n\n\nSenang sekali melihat Pak @prabowo dan Pak @jo…', 'positif'),
(322, 'RT @BrataWijaya27: Budayakan Retwit biar isi kolam kelojotan\n\n\n\nJangan sungkan untuk tertawa, ini hiburan geratiss\n\n https://t.co/mxT9DM9tnI', 'netral'),
(323, 'RT @TirtoID: <U+0001F496>STOP PRESS<U+0001F496>\n\n\n\nSetelah wacana pertemuan yang tak kunjung pasti, bahkan hingga 3 bulan usai Pemilu berlalu, hari ini Jokowi dan…', 'netral'),
(324, 'RT @kurawa: Jokowi - Prabowo = <U+0001F495>\n\n\n\nAhok - Anies = ?\n\n\n\nProtokol : wan anies sibuk ke luar negeri mulu boss.. jadwalnya penuh sampai tahun depa…', 'netral'),
(325, 'RT @detikcom: \"Beliau tahu kalau saya belum pernah naik MRT, terima kasih Pak (Jokowi), saya naik MRT, luar biasa,\" jelas Prabowo. #Pertemu…', 'positif'),
(326, 'RT @butoable: Kenapa pertemuan Pak @jokowi dan Pak @prabowo di stasiun? Kenapa tidak di istana? Btw, kalau ketemu di stasiun kan seperti or…', 'negatif'),
(327, '@cumarachel @prabowo @jokowi @Gerindra @prabowo and JKW, BERSAHABAT? Tolong jangan buat narasi yg PROVOKATIF. <U+0001F3AF><U+0001F3AF><U+0001F3AF><U+0001F3AF><U+0001F3AF>… https://t.co/AkiXc2dOjz', 'negatif'),
(328, 'Pak.Jokowi dan Pak.Prabowo menunjukan bahwa kita selalu bersatu walaupun dalam perbedaan...jalankan \"PANCASILA\"\n\nIn… https://t.co/g0pUe25w4L', 'positif'),
(329, 'RT @AndiArief__: Partai Demokrat --sebagai partai yang pertama menyerukan pertemuan Pak Jokowi dan Pak Prabowo-- menyambut baik pertemuan k…', 'negatif'),
(330, 'RT @PRFMnews: “Tidak ada lagi yg namanya 01, yg namanya 02, yg namanya cebong, yang namanya kampret. Yg ada adalah Garuda, Garuda Pancasila…', 'positif'),
(331, '@mas__piyuuu @prabowo @jokowi Saya masih setia bersamamu pak @prabowo \n\n\n\nTetapi saya akan melihat kedepannya bagaimana.', 'positif'),
(332, '@FerdinandHaean2 @jokowi @prabowo SELAMAT untuk Indonesia, SELAMAT dari calon legilatif ga bermutu sehingga tidak a… https://t.co/G2QpilytYA', 'positif'),
(333, 'RT @negativisme: Alhamdulilah, inilah sejatinya bangsa Indonesia. Selamat <NAME>, Terimakasih <NAME>, Bersatu demi bangsa Indon…', 'positif'),
(334, 'RT @MataNajwa: Joko Widodo & Prabowo Subianto akhirnya bertemu. Sepertinya sudah janjian nih di stasiun MRT Lebak Bulus pagi ini. \n\n\n\nKompak…', 'positif'),
(335, 'Tapi saya hanya berharap tweet ini dapat tersampaikan dan saya ingin berbicara sebagai rakyat kecil yang ingin meng… https://t.co/67UjJr8nVg', 'positif'),
(336, 'RT @nuicemedia: And so they meet. Jokowi said he chose to meet Prabowo at Lebak Bulus MRT station because: \"I know Pak Prabowo hasn\'t tried…', 'positif'),
(337, '@Babe_ngetop1 @khuumaidi @maman1965 @jokowi @prabowo Nah itu dia, tanda khusus ny ga da, pas mereka ngebacot br ket… https://t.co/LkzOSQayqe', 'netral'),
(338, 'RT @MataNajwa: Joko Widodo & Prabowo Subianto akhirnya bertemu. Sepertinya sudah janjian nih di stasiun MRT Lebak Bulus pagi ini. \n\n\n\nKompak…', 'positif'),
(339, 'RT @IsmanTengku: Benarkah?\n\n\n\nPublik ......... atas pertemuan @prabowo dan @jokowi\n\n\n\nRT -> mempertanyakan\n\nLIKE -> senang https://t.co/bQhJZQ5p…', 'netral'),
(340, 'RT @pinkcandyfloss_: @askmenfess Gua kadang suka mikir, pak jokowi ga stres apa ya punya rakyat banyak yang gobloknya ga ketulungan? Yang s…', 'negatif'),
(341, 'RT @sudjiwotedjo: Presiden #Jancukers mengucapkan selamat atas pertemuan Pak Jokowi dan Pak Prabowo... mari mulai mengawali segala yang bai…', 'positif'),
(342, 'RT @KompasTV: [LIVE] #BREAKINGNEWS - Pertama Kali, Jokowi Bertemu Prabowo Usai Pilpres 2019 https://t.co/3VqMT7b3In', 'positif'),
(343, 'RT @giewahyudi: Selamat untuk Pak Jokowi dan Pak Prabowo.. <U+0001F1EE><U+0001F1E9><U+0001F1EE><U+0001F1E9><U+0001F1EE><U+0001F1E9> https://t.co/UtVbWf2wVZ', 'positif'),
(344, 'RT @kurawa: Kenapa prabowo dan jokowi ketemunya di MRT?\n\n\n\nKalo di Istana, prabowonya bakal dibully kampret fundamentalis sbg pemimpin Cair I…', 'negatif'),
(345, 'RT @hincapandjaitan: Pilihan lokasi Stasiun memang sarat makna. Pak Jokowi & Pak Prabowo bak penumpang, yang setiap hari Pulang & Pergi dar…', 'netral'),
(346, 'RT @maman1965: Menatapnya dari Samosir.\n\nTerimakasih Pak @jokowi dan Pak @prabowo https://t.co/pa8SQolMYv', 'positif'),
(347, 'Adem rasanya prabowo dan jokowi duduk bersama.<U+0001F605> Hmmm pertemuan keduanya sama sama menghilangkan istilah cebong dan… https://t.co/6mDThXuZUN', 'positif'),
(348, '@ILCtv1 @jokowi @prabowo Tapi untuk kritis dan bersikap adil itu harus.. saya harap oposisi tetap ada...', 'negatif'),
(349, 'RT @MurtadhaOne: Presiden Jokowi bertemu prabowo di stasiun MRT lebak bulus https://t.co/6dx7aezlSy', 'negatif'),
(350, '@cumarachel @prabowo @jokowi @Gerindra Berjuang buat rakyat? Preeet.... Berjuang buat uang, jabatan, dan kekuasaan… https://t.co/pZ4YYFHhAT', 'positif'),
(351, 'Topp https://t.co/eOhOxMdxx7', 'netral'),
(352, '@Jhonkosmik @LisaAmartatara3 @prabowo @jokowi @Gerindra @berkaryainfo Mari kita dukung @PKSejahtera ,semoga mengusu… https://t.co/1ozNA7aqa5', 'netral'),
(353, 'RT @BiLLRaY_: Alhamdulillah akhirnya..! Jokowi dan Prabowo bertemu di Stasiun MRT \n\n\n\n#03PersatuanIndonesia #KitaSATUIndonesia https://t.co/…', 'positif'),
(354, 'RT @e100ss: [A THREAD] #Flashnews : Saat bertemu di Stasiun MRT Lebak Bulus, Sabtu (13/7), Jokowi dan Prabowo sempat memberikan pidato. Ked…', 'positif'),
(355, 'RT @5whyred: Find the one who looks at you the way chelsea, raisa, and mr. prabowo look at mr. Jokowi https://t.co/Ify74zQj2p', 'positif'),
(356, 'Kamu hrs bijak, di kala pak Jokowi dan Pak Prabowo berdamai malah kamu teriak kampret. Kamu manusia atau bukan sih? https://t.co/lh7xBqybFS', 'positif'),
(357, 'RT @Gerindra: Selamat siang B<NAME>di. Pak @prabowo diundang untuk mencoba MRT oleh jokowi. Sebagai warga negara yang baik Pak @prabowo ket…', 'positif'),
(358, 'Mereka berdua itu sgt siap bertemu, mgkn malah sering kontak2an... Mereka saling support kok, sehati.. Apa sih pemb… https://t.co/GfhE072ole', 'positif'),
(359, 'Histerisnya Penumpang MRT Sambut Jokowi-Prabowo https://t.co/uZ0WpQQeBA', 'positif'),
(360, 'RT @RomitsuT: Setelah semua sudah di dapat dan di raih... dusta dan bohong dengan kesederhanaan dan ndeso nya sekarang baru di buka....yg s…', 'positif'),
(361, 'Baca-baca tweet, banyak sekali pendukung 02 yang tidak menyukai persatuan dan kerukunan padahal pemimpinnya sudah l… https://t.co/HFgtaQ6Zqk', 'positif'),
(362, 'RT @Beritasatu: Jokowi dan Prabowo Naik MRT Bersama https://t.co/Eruyw8kwim https://t.co/4WscHHqgdb', 'positif'),
(363, 'RT @sudjiwotedjo: Presiden #Jancukers mengucapkan selamat atas pertemuan Pak Jokowi dan Pak Prabowo... mari mulai mengawali segala yang bai…', 'positif'),
(364, '@ismidewiputri @jokowi @prabowo Yoyoi, betul banget', 'netral'),
(365, '@Mas_igi @66ambar Pulau Bali indah permai\n\nTempat orang banyak berdagang\n\nMelihat Jokowi dan Prabowo berdamai \n\nPara k… https://t.co/Ib5H77b40j', 'negatif'),
(366, 'Pak @jokowi @prabowo gini kan elok #03PersatuanIndonesia', 'positif'),
(367, 'RT @negativisme: Alhamdulilah, inilah sejatinya bangsa Indonesia. Selamat Pak Jokowi, Terimakasih Pak Prabowo, Bersatu demi bangsa Indon…', 'positif'),
(368, 'RT @MafiaWasit: Banyak yang tanya, makan siang Pak Prabowo dan Pak Jokowi ini kira-kira siapa yang bayari?\n\n\n\nKalau anak Futsal pasti tahu, y…', 'netral'),
(369, 'RT @giewahyudi: Momen saat Pak Jokowi ngomong, \"Tidak ada lagi yang namanya cebong. Tidak ada lagi yang namanya kampret.\"\n\n\n\nDan Pak Prabowo…', 'positif'),
(370, 'RT @MafiaWasit: Banyak yang tanya, makan siang Pak Prabowo dan Pak Jokowi ini kira-kira siapa yang bayari?\n\n\n\nKalau anak Futsal pasti tahu, y…', 'netral'),
(371, 'RT @jiemiardian: Udahan yuk berantem politiknya. Pak Prabowo dan Pak Joko Widodo juga sudah bersalaman hangat, bicara dengan ramah.\n\n\n\nKita j…', 'positif'),
(372, 'RT @zarryhendrik: Dulu saya pernah tulis, jika cinta itu satu, tiga perempatnya percakapan.\n\n\n\nSenang sekali melihat Pak @prabowo dan Pak @jo…', 'negatif'),
(373, 'RT @cumakawan: Setelah Rekonsiliasi/Pertemuan Jokowi & Prabowo Polling yuk !\n\n\n\nRT : Habib Rizieq Shihab.\n\nLIKE : Prabowo & Jokowi\n\n\n\nSiapa Dar…', 'netral'),
(374, 'RT @negativisme: Alhamdulilah, inilah sejatinya bangsa Indonesia. Selamat <NAME>, Terimakasih Pak Prabowo, Bersatu demi bangsa Indon…', 'positif'),
(375, '@yunartowijaya Sejatinya mereka tdk mendukung @prabowo. Sejatinya mereka pembenci @jokowi yg selama memerintah memb… https://t.co/2pjLhUruAm', 'positif'),
(376, 'RT @Anitaharaa_: Hadirilah acara #VISIINDONESIA hari minggu tanggal 14 juli 2019. Kita bersama-sama menyaksikan pidato pertama bapak @jokow…', 'negatif'),
(377, 'RT @MafiaWasit: Banyak yang tanya, makan siang Pak Prabowo dan Pak Jokowi ini kira-kira siapa yang bayari?\n\n\n\nKalau anak Futsal pasti tahu, y…', 'positif'),
(378, 'RT @detikcom: Presiden @jokowi dan Ketua Umum Partai Gerindra @prabowo bertemu di Stasiun MRT Lebak Bulus, Jakarta Selatan. Prabowo pun men…', 'netral'),
(379, 'RT @detikcom: Presiden @jokowi dan Ketua Umum Partai Gerindra @prabowo bertemu di Stasiun MRT Lebak Bulus, Jakarta Selatan. Prabowo pun men…', 'netral'),
(380, 'RT @MafiaWasit: Banyak yang tanya, makan siang Pak Prabowo dan Pak Jokowi ini kira-kira siapa yang bayari?\n\n\n\nKalau anak Futsal pasti tahu, y…', 'netral'),
(381, 'RT @kompascom: Reaksi pertemuan Jokowi dan Prabowo pun beragam. Ada yang menanggapinya secara optimis, ada pula yang pesimis. https://t.co/…', 'netral'),
(382, '@permadiaktivis @Alexandre_trg21 @jokowi Haha..sampai keluar air mata ya?', 'netral'),
(383, 'RT @KompasTV: .@jokowi dan @prabowo Makan Siang Bersama\n\n\n\n#BreakingNews #03PersatuanIndonesia\n\nLive streaming: https://t.co/u4IO2KxZKR https:…', 'positif'),
(384, 'RT @ReflyHZ: Dengan temu Jokowi-Prabowo, smoga tidak hanya cebongers dan kampreters yang bubar, media juga mdh2an tdk lg nyebong atau ngamp…', 'positif'),
(385, 'RT @MafiaWasit: Banyak yang tanya, makan siang Pak Prabowo dan Pak Jokowi ini kira-kira siapa yang bayari?\n\n\n\nKalau anak Futsal pasti tahu, y…', 'netral'),
(386, 'RT @pinkcandyfloss_: @askmenfess Gua kadang suka mikir, pak jokowi ga stres apa ya punya rakyat banyak yang gobloknya ga ketulungan? Yang s…', 'positif'),
(387, 'RT @MSApunya: Gerakan Berjamaah #BoikotPrabowo\n\n\n\nyang setuju dgn Gerakan ini sila Retweet<U+0001F501>, lalu tulis tagar di kolom komentar #BoikotPrabow…', 'negatif'),
(388, 'RT @tvOneNews: Jokowi: Pertemuan sudah direncanakan sejak lama.\n\nDalam konferensi pers bersama Prabowo, Jokowi menyatakan pentingnya merajut…', 'positif'),
(389, 'RT @cumakawan: Setelah Rekonsiliasi/Pertemuan Jokowi & Prabowo Polling yuk !\n\n\n\nRT : Habib Rizieq Shihab.\n\nLIKE : Prabowo & Jokowi\n\n\n\nSiapa Dar…', 'netral'),
(390, 'RT @cumakawan: Setelah Rekonsiliasi/Pertemuan Jokowi & Prabowo Polling yuk !\n\n\n\nRT : Habib Rizieq Shihab.\n\nLIKE : Prabowo & Jokowi\n\n\n\nSiapa Dar…', 'netral'),
(391, 'RT @bngpl_: Kalo prabowo rekonsiliasi sama jokowi dan gabung koalisi, otomatis jatah menteri utk pekabeh makin sedikit. Kalo jatah utk peka…', 'negatif'),
(392, 'RT @KompasTV: Jokowi dan Prabowo Ngobrol Empat Mata di MRT\n\n\n\nLive streaming: https://t.co/rUTSoYphmA\n\n#BREAKINGNEWS\n\n#03PersatuanIndonesia htt…', 'positif'),
(393, 'RT @CNNIndonesia: \"Saya ucapkan selamat bekerja.\"\n\nSelain mengucapkan selamat kepada @jokowi, @prabowo juga menambahkan jika setelah kontest…', 'positif'),
(394, 'RT @republikaonline: Erick mengatakan semua yang ada di TKN bekerja keras hingga Jokowi terpilih. https://t.co/M97XkyTZTD', 'positif'),
(395, 'RT @MafiaWasit: Banyak yang tanya, makan siang Pak Prabowo dan Pak Jokowi ini kira-kira siapa yang bayari?\n\n\n\nKalau anak Futsal pasti tahu, y…', 'netral'),
(396, '@IreneViena Menggugat ke MA,Prabowo beri selamat pada Jokowi saat bersamaan.\n\nWaras ora..?', 'negatif'),
(397, 'RT @permadiaktivis: mau tau biang kerok tukang adu domba yang bikin negeri ini gaduh selama 5 tahun sejak 2014 ?\n\n\n\nlihat saja yang kejang2 k…', 'negatif'),
(398, 'RT @Baroindra: Foto yang bisa bikin mood makin baik\n\n\n\nHey kamu kapan natap aku kayak Pak Prabowo menatap Pak Jokowi? Kemudian tertawa bersam…', 'positif'),
(399, 'RT @zarryhendrik: Dulu saya pernah tulis, jika cinta itu satu, tiga perempatnya percakapan.\n\n\n\nSenang sekali melihat Pak @prabowo dan Pak @jo…', 'negatif'),
(400, 'RT @nuicemedia: And so they meet. Jokowi said he chose to meet Prabowo at Lebak Bulus MRT station because: \"I know Pak Prabowo hasn\'t tried…', 'positif'),
(401, 'RT @detikfinance: Presiden Jokowi dan Prabowo Subianto bertemu di MRT Jakarta. Di sini, Prabowo mengatakan belum pernah naik MRT dan dia me…', 'positif'),
(402, 'RT @KontanNews: Bertemu lagi usai pilpres, akhirnya Prabowo ucapkan selamat ke Jokowi di stasiun MRT https://t.co/aLYeheg3Lo #Pemilu2019', 'positif'),
(403, 'RT @ilhamkhoiri: Alhamdulillah, Jokowi dan Prabowo pun bertemu di MRT Lebak Bulus. Ini kemenangan Indonesia, bukan lagi 01 atau 02. \n\nMoga p…', 'positif'),
(404, '@detikcom Swer merinding, seneng bgt lihat pak Jokowi & pak Prabowo bs kembali bersatu demi kepentingan bangsa & negara Indonesia...<U+0001F44D><U+0001F44D><U+0001F44D><U+0001F618><U+0001F618><U+0001F618>', 'positif'),
(405, '@cumarachel @prabowo @jokowi @Gerindra Prabowo dan gerindra bisa apa selama 5 tahun kebelakang?? \n\nSama aja kayak de… https://t.co/cN3mNJZI49', 'negatif'),
(406, 'RT @giewahyudi: Jokowi dan Prabowo Sepakat: Tak Ada Lagi Cebong dan Kampret https://t.co/sEDOyWCBYY', 'positif'),
(407, 'RT @ReflyHZ: Dengan temu Jokowi-Prabowo, smoga tidak hanya cebongers dan kampreters yang bubar, media juga mdh2an tdk lg nyebong atau ngamp…', 'positif'),
(408, 'RT @ElshintaBandung: \"Tidak ada cebong-cebong. Tidak ada kampret-kampret. Semuanya Merah Putih,\" kata Ketua Umum Gerindra, Prabowo Subianto…', 'positif'),
(409, 'RT @negativisme: Alhamdulilah, inilah sejatinya bangsa Indonesia. Selamat Pak Jokowi, Terimakasih Pak Prabowo, Bersatu demi bangsa Indon…', 'positif'),
(410, 'Warga terlihat sgt terganggu & ketakutan. Bagaimana tdk takut & kuatir bila kita membuka pintu toko, tiba2 ada ratu… https://t.co/kxk7Z9MgYY', 'negatif'),
(411, 'Bertemu Jokowi, Prabowo Disambut Hangat Oleh Pejabat Negara https://t.co/nN5zaafMIN', 'positif'),
(412, '@zarryhendrik @prabowo @jokowi Serasa liat Presiden dan Wakil Presiden lagi bahas masa depan negara. Hehehe', 'positif'),
(413, 'RT @MafiaWasit: Banyak yang tanya, makan siang Pak Prabowo dan Pak Jokowi ini kira-kira siapa yang bayari?\n\n\n\nKalau anak Futsal pasti tahu, y…', 'netral'),
(414, '@BinSukamdo @_s3l3p3tk4r3t2_ Pertemuan dengan jokowi sama saja setuju dengan kemenangan yg menyakiti rakyat dengan cara yg curang.', 'negatif'),
(415, '@WR_4AG226 @APLpangeran1 @jokowi @prabowo @Buruh0nline @84262Joesoef @OrlandoSL01 @WahabisLokal @Bimasuc21907783… https://t.co/rkibs5Wh6v', 'netral'),
(416, 'RT @arunanta: Jokowi: Saya tahu Pak Prabowo belum nyoba Pajama.\n\nPrabowo: Kita ke Fx sama-sama.\n\nJokowi: Show 1 ya.\n\nPrabowo: Freya lucu ya?\n\nJ…', 'positif'),
(417, 'Ahelah! Tolol aja kalau kita berfikir bahwa ini cuma soal Jokowi vs Prabowo atau Ahok vs Anies. Ini soal polarisasi… https://t.co/5TnaMz3o0t', 'positif');
INSERT INTO `data_training` (`id_data_training`, `text`, `flag`) VALUES
(418, 'Akhirnya Bertemu Pertama Kalinya, Jokowi Tertunduk saat Prabowo Sebut akan Mengkritik Kinerjanya… https://t.co/ffq9FcYTvc', 'negatif'),
(419, 'RT @kurawa: FYI : \n\npak Menhub yang atur pertemuan Jokowi dan Prabowo hari ini..<U+0001F600>\n\n\n\nSudah beberapa hari ini diajak jalan2 sama presiden utk u…', 'positif'),
(420, 'RT @MurtadhaOne: Jokowi: \"Tidak ada lagi cebong, tidak ada lagi kampret...\"\n\n\n\nMe: \"Tapi curut khilafah masih banyak pak\" <U+0001F609> https://t.co/wssy…', 'positif'),
(421, 'RT @KompasTV: Prabowo Ucapkan Selamat Kepada Jokowi\n\n\n\n#BreakingNews\n\n#03PersatuanIndonesia\n\nLive streaming: https://t.co/rUTSoYphmA https://t.…', 'positif'),
(422, 'RT @KompasTV: Jokowi: Tidak ada lagi yang namanya Cebong, tidak ada lagi yang namanya Kampret. Yang ada adalah Garuda Pancasila.\n\n\n\n#Breaking…', 'negatif'),
(423, '@Moch_herianto Emak emak meraung raung guling guling dong liat pak Jokowi dan pak Prabowo mesra di mrt', 'positif'),
(424, 'RT @pinkcandyfloss_: @askmenfess Gua kadang suka mikir, pak jokowi ga stres apa ya punya rakyat banyak yang gobloknya ga ketulungan? Yang s…', 'negatif'),
(425, '@APLpangeran00 @prabowo @jokowi Sekarang Semua Bersatu Untuk Indonesia Maju', 'positif'),
(426, 'RT @arifz_tempo: Perihal pertemuan jokowi dan prabowo hari ini, ketahui background dan konteksnya dalam liputan Tempo dua dan tiga pekan la…', 'positif'),
(427, 'RT @detikcom: Presiden @jokowi dan Ketua Umum Partai Gerindra @prabowo bertemu di Stasiun MRT Lebak Bulus, Jakarta Selatan. Prabowo pun men…', 'positif'),
(428, '@KompasTV @jokowi @prabowo Tebak tebakan,\n\nSiapa yang bayarin?\n\n@dimasshafidh @dhimasrt \n\n<U+0001F602><U+0001F602><U+0001F602>', 'positif'),
(429, '@pln_123 no pengaduan saya D19X7HM, diterima oleh Mirna, silahkan dicermati, kalau ada P2TL thn 2017 dan baru 2019… https://t.co/uVJxzctavi', 'netral'),
(430, 'A: Dasar cebong lu! \n\nB: Ape lu kampret! \n\nC: Heh, apa kalian tidak liat berita, Jokowi & Prabowo gandengan \n\n... \n\n\n\nA+… https://t.co/VU4O45APzS', 'netral'),
(431, 'RT @Sarah_Pndj: Terima kasih, Pak @jokowi. \n\nTerima kasih, Pak @prabowo. \n\n\n\n<U+0001F1F2><U+0001F1E8><U+0001F1F2><U+0001F1E8><U+0001F1F2><U+0001F1E8> https://t.co/1ux9IuUV7A', 'negatif'),
(432, 'RT @ismidewiputri: Kalau pak @jokowi dan pak @prabowo saja bisa berpelukan dan saling menyadari pentingnya persatuan, kenapa masih ada yg m…', 'negatif'),
(433, 'Gak ngucapin selamat di hari KPU ngumumin jokowi yang menang. Ternyata pak prabowo mau ngucapinnya secara langsung… https://t.co/7kb18kXPHH', 'positif'),
(434, 'RT @kirekswasta: MRT itu dibawah dirjen hubdar kementerian perhubungan.\n\n\n\nFix jokowi dan prabowo adalah bajer budikarya. \n\n\n\nTum @PartaiSocmed…', 'negatif'),
(435, 'RT @MrDik91: Kesempatan para pembenci jokowi ni utk framing negatif atas pembebasan guru JIS. <U+0001F4A9>\n\n\n\nKalian baca ini faktanya. Thanks for om @k…', 'positif'),
(436, 'RT @RisKhaAmalia_: I\'m not crying. You\'re crying. This picture means a lot. <U+0001F62D><U+2764><U+2764> Thank you <NAME> & Pak Jokowi for making us smile and…', 'positif'),
(437, '@ILCtv1 @jokowi @prabowo @karniilyas Jadi merasa di khianati.....', 'negatif'),
(438, 'RT @KompasTV: Prabowo Ucapkan Selamat Kepada Jokowi\n\n\n\n#BreakingNews\n\n#03PersatuanIndonesia\n\nLive streaming: https://t.co/rUTSoYphmA https://t.…', 'positif'),
(439, 'RT @Sarah_Pndj: Terima kasih, Pak @jokowi. \n\nTerima kasih, Pak @prabowo. \n\n\n\n<U+0001F1F2><U+0001F1E8><U+0001F1F2><U+0001F1E8><U+0001F1F2><U+0001F1E8> https://t.co/1ux9IuUV7A', 'positif'),
(440, 'RT @detikcom: \"Beliau tahu kalau saya belum pernah naik MRT, terima kasih Pak (Jokowi), saya naik MRT, luar biasa,\" jelas Prabowo. #Pertemu…', 'positif'),
(441, 'RT @ReflyHZ: Dengan temu Jokowi-Prabowo, smoga tidak hanya cebongers dan kampreters yang bubar, media juga mdh2an tdk lg nyebong atau ngamp…', 'negatif'),
(442, 'RT @cumakawan: Setelah Rekonsiliasi/Pertemuan Jokowi & Prabowo Polling yuk !\n\n\n\nRT : Habib Rizieq Shihab.\n\nLIKE : Prabowo & Jokowi\n\n\n\nSiapa Dar…', 'netral'),
(443, 'RT @_Hrst: Jokowi & Prabowo nanti selesai ketemuan pisah di stasiun. Kayak LDR banget.', 'netral'),
(444, 'RT @MataNajwa: Joko Widodo & Prabowo Subianto akhirnya bertemu. Sepertinya sudah janjian nih di stasiun MRT Lebak Bulus pagi ini. \n\n\n\nKompak…', 'netral'),
(445, 'RT @MafiaWasit: Banyak yang tanya, makan siang Pak Prabowo dan Pak Jokowi ini kira-kira siapa yang bayari?\n\n\n\nKalau anak Futsal pasti tahu, y…', 'netral'),
(446, 'PKS bisa mengambil keuntungan besar nih setelah prabowo dan jokowi rekonsiliasi. Asalkan tetap konsisten.', 'positif'),
(447, 'RT @KompasTV: Canda Prabowo ke Jokowi: Selamat Bekerja, Selamat Tambah Rambut Putih\n\n\n\nSelengkapnya ikuti live streaming #BreakingNews Kompas…', 'positif'),
(448, 'Miris https://t.co/jHTaFz0idJ', 'netral'),
(449, '@MARSUDI__ @jokowi @prabowo Enak aja bilang prabowo negarawan sejati.\n\nKalah pilpres ngambek gitu.', 'negatif'),
(450, '@unilubis @sudjiwotedjo Elok tenan. Bar salaman ngopi bareng pakde owi @jokowi karo om Wowo @prabowo', 'negatif'),
(451, 'RT @zarryhendrik: Dulu saya pernah tulis, jika cinta itu satu, tiga perempatnya percakapan.\n\n\n\nSenang sekali melihat Pak @prabowo dan Pak @jo…', 'positif'),
(452, 'RT @merdekadotcom: Jokowi dan Prabowo Bertemu, Everybody Happy? https://t.co/CQUiUaeuhH', 'positif'),
(453, 'Reaksi pertemuan Jokowi dan Prabowo pun beragam. Ada yang menanggapinya secara optimis, ada pula yang pesimis. https://t.co/QpPf2LrgLC', 'netral'),
(454, 'Pertemuan Monumental Jokowi-Prabowo untuk Tepis Isu Liar https://t.co/Yo65Svi3k9', 'netral'),
(455, 'Prabowo + Jokowi satu gerbong, kode keras nih Gerindra gabung koalisi Jokowi', 'netral'),
(456, 'RT @mbah_mijan: Pertemuan Pak Prabowo dan Pak Jokowi bukan saja membuat Indonesia bangga, tapi membuat rakyat juga semakin cinta. \n\n\n\nCinta m…', 'positif'),
(457, '@cumarachel @prabowo @jokowi @Gerindra Anak SD jg akan ngomong gt mbak.. basiiiii', 'negatif'),
(458, '@MSApunya @prabowo @jokowi Byak yg kcwa liat prabowo ktmu sama jkw, buat apa y jujr gk org y, oposisi krtis apa\'n k… https://t.co/1rh4UsPlGq', 'negatif'),
(459, 'RT @cumakawan: Setelah Rekonsiliasi/Pertemuan Jokowi & Prabowo Polling yuk !\n\n\n\nRT : Habib Rizieq Shihab.\n\nLIKE : Prabowo & Jokowi\n\n\n\nSiapa Dar…', 'netral'),
(460, 'RT @putri_sigit: #jokowi2periode #01indonesiamaju #WinterIsComing : RT projopusat: \" VISI INDONESIA <U+0001F1EE><U+0001F1E9> \"\n\nBersama Presiden jokowi khmarufami…', 'netral'),
(461, 'RT @jokowi: Lima tahun ke depan ini, pemerintah fokus menuntaskan apa yang sudah kita mulai: menyelesaikan pekerjaan infrastruktur dan pemb…', 'netral'),
(462, 'RT @fadjroeL: https://t.co/NYOqabdezv\n\n\n\n\"saya maunya ucapkan selamat secara terbuka,\" kata Prabowo ~ FR @jokowi #03PersatuanIndonesia #03MRT…', 'positif'),
(463, 'RT @5whyred: Find the one who looks at you the way chelsea, raisa, and mr. prabowo look at mr. Jokowi https://t.co/Ify74zQj2p', 'negatif'),
(464, '@wisnukunt @jokowi @prabowo Loh, itu jadwal tgl 6 <U+0001F602>', 'netral'),
(465, 'RT @KompasTV: Canda Prabowo ke Jokowi: Selamat Bekerja, Selamat Tambah Rambut Putih\n\n\n\nSelengkapnya ikuti live streaming #BreakingNews Kompas…', 'positif'),
(466, 'Jokowi ketemu di stasiun MRT buat nunjukkin kalo mereka bakal satu gerbong ya? #EH', 'netral'),
(467, 'Jokowi-Prabowo yang ketemuan malah aku yang baper. 03 Persatuan Indonesia <U+270A><U+0001F1F2><U+0001F1E8>', 'positif'),
(468, 'RT @Baroindra: Foto yang bisa bikin mood makin baik\n\n\n\nHey kamu kapan natap aku kayak Pak Prabowo menatap Pak Jokowi? Kemudian tertawa bersam…', 'netral'),
(469, 'Prabowo: Jok tau gak kita naek MRT ga berdua\n\n\n\nJokowi: Iyaa, kamu jangan kayak gitu malu tau Wo diliatin orang banya… https://t.co/ra40oWfPNq', 'positif'),
(470, 'Hanya yang Cinta Pada Tanah Air yang Mau Menjaga #03PersatuanIndonesia Kalau Mau Jadi #KamiRakyatOposisi Ya Silahka… https://t.co/kSvVv75wpi', 'netral'),
(471, 'RT @jokowi: Kebaya dan kain di pameran Karya Kreatif Indonesia 2019 ini bukan produksi industri besar, tapi buatan UMKM binaan Bank Indones…', 'positif'),
(472, 'RT @plazapangan: Gaesss...\n\nKeduanya adalah Pemimpin Indonesia\n\n.\n\nAnda Lebih Bangga Mana, untuk urusan Luar Negeri ; dari Dua Pemimpin ini ??…', 'positif'),
(473, 'RT @Romadonesia: Pak Jokowi: Tidak ada lagi 01 dan 02.\n\n\n\nPak Prabowo: Tidak ada lagi cebong dan kampret.\n\n\n\nTidak ada yg paling berjasa dlm pe…', 'positif'),
(474, 'RT @kangdede78: @jokowi : Tidak ada lagi cebong, tidak ada lagi kampret yg ada GARUDA PANCASILA\n\n\n\n@prabowo : Tidak lagi cebong & Kampret, KI…', 'positif'),
(475, 'RT @VIVAcoid: [VIDEO] VIDEO: Pertemuan Jokowi-Prabowo di Stasiun MRT \'Bikin Baper\' https://t.co/D1VeEgLwuk', 'positif'),
(476, 'RT @detikcom: Presiden Jokowi dan Ketum Partai Gerindra Prabowo Subianto naik MRT bareng dari Stasiun Lebak Bulus, Jakarta Selatan. Mereka…', 'positif'),
(477, 'RT @KompasTV: .@jokowi dan @prabowo Makan Siang Bersama\n\n\n\n#BreakingNews #03PersatuanIndonesia\n\nLive streaming: https://t.co/u4IO2KxZKR https:…', 'positif'),
(478, 'RT @NU_bersatu: Jokowi: Tidak ada lagi yang namanya Cebong, tidak ada lagi yang namanya Kampret. Yang ada adalah Garuda Pancasila.\n\n\n\n#Breaki…', 'negatif'),
(479, 'RT @antaranews: Jokowi-Prabowo makan sate bersama di Senayan https://t.co/TgT9Y390Nv', 'positif'),
(480, 'RT @MafiaWasit: Banyak yang tanya, makan siang Pak Prabowo dan Pak Jokowi ini kira-kira siapa yang bayari?\n\n\n\nKalau anak Futsal pasti tahu, y…', 'netral'),
(481, '@ILCtv1 @jokowi @prabowo @karniilyas Selamat tinggal @prabowo', 'negatif'),
(482, 'RT @eae18: Jika @prabowo melakukan rekonsiliasi dengan Jokowi, dia itu bodoh, sebodoh-bodohnya orang bodoh. Kelasnya Jahil Murokkab. \n\n\n\nJika…', 'positif'),
(483, 'RT @tribunnews: Prabowo Sebut Ingin Bantu Pemerintah jika Dibutuhkan, Jokowi: Saya Harus Rundingkan https://t.co/ZiQ2QxgM1Y via @tribunnews', 'positif'),
(484, 'RT @MafiaWasit: Banyak yang tanya, makan siang Pak Prabowo dan Pak Jokowi ini kira-kira siapa yang bayari?\n\n\n\nKalau anak Futsal pasti tahu, y…', 'netral'),
(485, '@rockygerung Kalo Jokowi dan Prabowo udah bertemu dan ngobrol santai sambil minum kopi bareng,.. Pertanyaannya adlh… https://t.co/CRqsuxDR2F', 'positif'),
(486, 'RT @CNNIndonesia: Prabowo Siap Bantu Jokowi 5 Tahun Ke Depan https://t.co/EJlc8c9WPb', 'positif'),
(487, 'RT @GeraNgidolKak: Bagi kami fans biasa,\n\nFx sudirman adalah tempat melepas rindu dan menyelaraskan hati.\n\nBaik bagi para wota, sahabat, k3lu…', 'netral'),
(488, 'RT @detikTravel: #MostPopular Mengenal Pulau Rinca, Tempat Jokowi Melihat Komodo https://t.co/InJ5EQ0ros', 'netral'),
(489, '@Sarah_Pndj @WR_4AG226 @jokowi @prabowo Suasana lagi enyak gini, teteup aja ada troll yg komennya bikin eneg. Emang otomatis ternista, kau!', 'netral'),
(490, '@Dwiyana_DKM @jokowi Smg kubu ono gak sakit dispenser ngeliatx<U+0001F483><U+0001F483><U+0001F483>', 'netral'),
(491, 'RT @MSApunya: Gerakan Berjamaah #BoikotPrabowo\n\n\n\nyang setuju dgn Gerakan ini sila Retweet<U+0001F501>, lalu tulis tagar di kolom komentar #BoikotPrabow…', 'netral'),
(492, 'RT @NU_bersatu: Asyiap!!!\n\nPrabowo Ucapkan Selamat Kepada Jokowi\n\n\n\n#BreakingNews\n\n#03PersatuanIndonesia\n\n@KompasTV https://t.co/KgmrCtYDIb', 'positif'),
(493, 'Pak @jokowi kr pak @prabowo ketemu wae gegerne se Indonesia.. la kapan aku lan awakmu ketemu trus gegerne sekampung? (Baca:nikahan)', 'netral'),
(494, 'RT @wargalama: @mas__piyuuu @prabowo @jokowi Maju bersama @garbi cuma bang @Fahrihamzah yang masih konsisten dari A-Z sampai hari ini...', 'netral'),
(495, 'RT @TirtoID: <U+0001F496>STOP PRESS<U+0001F496>\n\n\n\nSetelah wacana pertemuan yang tak kunjung pasti, bahkan hingga 3 bulan usai Pemilu berlalu, hari ini Jokowi dan…', 'netral'),
(496, 'RT @_Hrst: Jokowi & Prabowo nanti selesai ketemuan pisah di stasiun. Kayak LDR banget.', 'netral'),
(497, 'RT @ElshintaBandung: \"Tidak ada lagi namanya 01, tidak ada lagi namanya 02. Yang ada <NAME>,\" kata Presiden RI, Joko Widodo saat…', 'positif'),
(498, 'RT @KompasTV: Prabowo Ucapkan Selamat Kepada Jokowi\n\n\n\n#BreakingNews\n\n#03PersatuanIndonesia\n\nLive streaming: https://t.co/rUTSoYphmA https://t.…', 'positif'),
(499, '@Gerindra @prabowo Jangan khianati Ketulusan dan Jiwa besar @prabowo sebagai partai pendukung harusnya kalian Loyal… https://t.co/JFIqH9lxVp', 'positif'),
(500, 'RT @detikcom: \"Beliau tahu bahwa saya belum pernah naik MRT, terima kasih, Pak, saya naik MRT, luas biasa, kita bangga Indonesia akhirnya m…', 'netral'),
(501, 'RT @cumakawan: Setelah Rekonsiliasi/Pertemuan Jokowi & Prabowo Polling yuk !\n\n\n\nRT : Habib Rizieq Shihab.\n\nLIKE : Prabowo & Jokowi\n\n\n\nSiapa Dar…', 'netral'),
(502, 'RT @negativisme: Alhamdulilah, inilah sejatinya bangsa Indonesia. Selamat Pak Jokowi, Terimakasih Pak Prabowo, Bersatu demi bangsa Indon…', 'positif'),
(503, 'RT @fxmario: Kita mau ke fx kan? Pak Jokowi oshinya siapa ya? https://t.co/Ym1Z6HvUmR', NULL),
(504, '@gustatap Mbok jal ngedit foto karo lucinta luna, menowo di repost yoan', 'netral'),
(505, 'im sorry mba lucinta luna tp gw pengen bgt ngasih lau obat batuk berdahak', 'positif'),
(506, 'RT @semuajeniskeju: @mohammedsabeq @_rthrbe @polkawars Setelah melihat kelakuan polkadot ternyata LUCINTA LUNA GA TERLALU BURUK.', 'positif'),
(507, '@jizoot ya kali doyang lucinta luna :(', 'netral'),
(508, 'RT @semuajeniskeju: @mohammedsabeq @_rthrbe @polkawars Setelah melihat kelakuan polkadot ternyata LUCINTA LUNA GA TERLALU BURUK.', 'positif'),
(509, 'RT @semuajeniskeju: @mohammedsabeq @_rthrbe @polkawars Setelah melihat kelakuan polkadot ternyata LUCINTA LUNA GA TERLALU BURUK.', 'positif'),
(510, '@twicemansays anak lucinta luna udah dua?', 'netral'),
(511, '@TikaUlfianinda Lambe turah\n\nInsertlive\n\nLucinta luna', 'netral'),
(512, 'RT @semuajeniskeju: @mohammedsabeq @_rthrbe @polkawars Setelah melihat kelakuan polkadot ternyata LUCINTA LUNA GA TERLALU BURUK.', 'positif'),
(513, 'RT @spesdelune: lucinta luna tuh sumpah kalo anteng gue ngefans deh asli cakep banget cuy sayang aja kalo tereak kek gerobak kue putu', 'negatif'),
(514, 'RT @semuajeniskeju: @mohammedsabeq @_rthrbe @polkawars Setelah melihat kelakuan polkadot ternyata LUCINTA LUNA GA TERLALU BURUK.', 'positif'),
(515, 'ak pengen temenan sama lucinta luna huhu lucu bgt', 'positif'),
(516, 'met siang lucinta luna', 'positif'),
(517, '@CHUNGHA96IA Aku kira lucinta luna loh tadi :(', 'netral'),
(518, '@indomymenfess knp pas baca ayeaye yg kebayang suara lucinta luna lagi nyanyi ddu du ddu du <U+0001F62D><U+0001F62D><U+0001F62D><U+0001F62D>', 'netral'),
(519, '@rouzjeu Lucinta luna', 'netral'),
(520, 'itu kok Lucinta luna udah punya anak aja sih?', 'netral'),
(521, 'RT @itscaramuel: orang lain panggil kucing : mpus sini mpus... \n\n\n\nlucinta luna : https://t.co/2dJPN7ZeXg', 'netral'),
(522, 'RT @semuajeniskeju: @mohammedsabeq @_rthrbe @polkawars Setelah melihat kelakuan polkadot ternyata LUCINTA LUNA GA TERLALU BURUK.', 'positif'),
(523, '@deandra_pindita gue mah ga selevel ama lucinta luna hoho', 'negatif'),
(524, '@XIYEON00TG lebih seksi bibir lucinta luna lol', 'positif'),
(525, 'RT @semuajeniskeju: @mohammedsabeq @_rthrbe @polkawars Setelah melihat kelakuan polkadot ternyata LUCINTA LUNA GA TERLALU BURUK.', 'positif'),
(526, 'RT @RADTHERANDOM: if <NAME> was living and breathing back in 1963 and she screamed milliseconds before the JFK shooter pulled the tri…', 'netral'),
(527, '@asuhanmalam Lucinta luna mau g ?', 'netral'),
(528, '@jessicapsh cedih eaa . even lucinta luna get more love drpd gw.. aku merasakaan sesuatu di perutku, zheyenk wkwkwk', 'positif'),
(529, '@DMenfess jd lucinta luna aje terkenal', 'positif'),
(530, 'RT @ulupah: A Dog’s Journey (2019)\n\n\n\n Dubbed by <NAME>\n\n https://t.co/kt66YeKgg8', 'netral'),
(531, 'apaan si asw tl isinya lucinta luna\n\nnah gini dong tl mah isinya persatuan Indonesia perdamaian kerakyatan\n\ntapi what… https://t.co/ZogLvgJvEP', 'negatif'),
(532, '@apizhBuntil Gpp om pis, lucinta luna aja bisa!!', 'positif'),
(533, 'RT @SulitFokus: lucinta luna suaranya keren. https://t.co/opYWwQfiUC', 'positif'),
(534, '@kopitehkopi Cc: Lucinta Luna', 'netral'),
(535, 'RT @semuajeniskeju: @mohammedsabeq @_rthrbe @polkawars Setelah melihat kelakuan polkadot ternyata LUCINTA LUNA GA TERLALU BURUK.', 'positif'),
(536, 'Apa yg lebih bikin hatiq nangis drpd Lucinta Luna?\n\n\n\nLucinta dia.\n\n<U+0001F60A>', 'netral'),
(537, '@cantihk Lucinta luna?', 'netral'),
(538, '@balapanji @polkawars Manusia yang paling pede setelah lucinta Luna tapi kalau lucinta Luna dia kan cantik', 'positif'),
(539, 'RT @gepenkxx: @Cangkemaaann2 \"enak banget pemirsa sm susunya lucinta luna, asli gak basi\"\n\n\n\no-okay https://t.co/bqXrE78Zlh', 'positif'),
(540, 'RT @semuajeniskeju: @mohammedsabeq @_rthrbe @polkawars Setelah melihat kelakuan polkadot ternyata LUCINTA LUNA GA TERLALU BURUK.', 'positif'),
(541, '@polkawars @_rthrbe @HokBen Ah lu susah banget minta maaf, gue kira lucinta luna jahat. Ternyata lu dewany ih', 'negatif'),
(542, '@Cangkemaaann2 Puting digigit emang sakit kak, putingku tak plintir2 aja sakit kak. Semangat menyusui kak lucinta luna <U+0001F476><U+0001F3FB>', 'positif'),
(543, '@JeromePolin Coba tanya ke lucinta luna', 'netral'),
(544, '@JeromePolin Tanya Lucinta Luna coba', 'netral'),
(545, '@uttazt_ Biar bisa ngalahin lucinta luna bang :(', 'netral'),
(546, '@inkamwrni <NAME>u Lucinta Luna', 'negatif'),
(547, '@Cangkemaaann2 Bayangin ibulu lucinta luna', 'negatif'),
(548, 'for a sec, i think lucinta luna is kinda fun to watch<U+0001F633><U+0001F644>', 'positif'),
(549, 'APAAN LUCINTA LUNA MANOBAN WKWKWKWKWKWKWWKKWWK GAK TERIMA TEMEN SEKAMPUNG GUE DI SAMA SAMAIN AMA BADUT IT <U+0001F62D>', 'negatif'),
(550, 'RT @RottingOldWreck: Find a guy who would react to every stupid things you do like <NAME> did to Lucinta Luna https://t.co/hKS1uLcgNW', 'positif'),
(551, 'RT @semuajeniskeju: @mohammedsabeq @_rthrbe @polkawars Setelah melihat kelakuan polkadot ternyata LUCINTA LUNA GA TERLALU BURUK.', 'positif'),
(552, '@dellaasyp gada cerita yg lbh serem slain lu mimpi cipokan am lucinta luna', 'negatif'),
(553, '@cavtains @Basecotan Lucinta luna? .g', 'netral'),
(554, 'RT @semuajeniskeju: @mohammedsabeq @_rthrbe @polkawars Setelah melihat kelakuan polkadot ternyata LUCINTA LUNA GA TERLALU BURUK.', 'positif'),
(555, 'RT @semuajeniskeju: @mohammedsabeq @_rthrbe @polkawars Setelah melihat kelakuan polkadot ternyata LUCINTA LUNA GA TERLALU BURUK.', 'positif'),
(556, 'Suka banget sama lucinta luna.', 'positif'),
(557, '@baesauce I\'m wondering kalau Lucinta Luna yg liat video ini jiwa keibuan apa kebapakan yg keluar yah?', 'negatif'),
(558, 'RT @Homeminyoon: Kalau anda ga nonton\n\n1. \"Alasan kita selesai\"\n\n2. Pernikahan reino syahrini\n\n3. Video deddy x lucinta luna\n\n4. Trailer dilan…', 'netral'),
(559, 'RT @semuajeniskeju: @mohammedsabeq @_rthrbe @polkawars Setelah melihat kelakuan polkadot ternyata LUCINTA LUNA GA TERLALU BURUK.', 'positif'),
(560, 'RT @semuajeniskeju: @mohammedsabeq @_rthrbe @polkawars Setelah melihat kelakuan polkadot ternyata LUCINTA LUNA GA TERLALU BURUK.', 'positif'),
(561, '@RPAutoBase Gemes kek lucinta luna ye nder', 'netral'),
(562, 'ini lucinta luna bisa nyusui anak begimana ceritanya ahahahahaha humor', 'negatif'),
(563, 'RT @semuajeniskeju: @mohammedsabeq @_rthrbe @polkawars Setelah melihat kelakuan polkadot ternyata LUCINTA LUNA GA TERLALU BURUK.', 'positif'),
(564, 'RT @semuajeniskeju: @mohammedsabeq @_rthrbe @polkawars Setelah melihat kelakuan polkadot ternyata LUCINTA LUNA GA TERLALU BURUK.', 'positif'),
(565, 'RT @semuajeniskeju: @mohammedsabeq @_rthrbe @polkawars Setelah melihat kelakuan polkadot ternyata LUCINTA LUNA GA TERLALU BURUK.', 'positif'),
(566, '@_rthrbe & @polkawars saya mencium bau-bau vlog deddy corbizier dan lucinta luna terulang di twitter.\n\nSkenario disusun oleh @HokBen', 'netral'),
(567, 'RT @semuajeniskeju: @mohammedsabeq @_rthrbe @polkawars Setelah melihat kelakuan polkadot ternyata LUCINTA LUNA GA TERLALU BURUK.', 'positif'),
(568, '@softqiss lucinta luna sav', 'positif'),
(569, 'Seru cuy jadi lucinta luna https://t.co/AJZUNJwpQ2', 'positif'),
(570, 'RT @_hhoneydew: Eh ini lucinta luna abis makan kodok apa gimana sih? https://t.co/EbW1cPgV3t', 'negatif'),
(571, 'RT @semuajeniskeju: @mohammedsabeq @_rthrbe @polkawars Setelah melihat kelakuan polkadot ternyata LUCINTA LUNA GA TERLALU BURUK.', 'positif'),
(572, '@triadinda Lucinta luna perawatane juga pasti ga nguati', 'positif'),
(573, '@yoojintaluna Please teriakin saya biar sadar, kamu Lucinta Luna kan?', 'negatif'),
(574, 'RT @semuajeniskeju: @mohammedsabeq @_rthrbe @polkawars Setelah melihat kelakuan polkadot ternyata LUCINTA LUNA GA TERLALU BURUK.', 'positif'),
(575, '@askmenfess @seashil97 Lucinta luna bisa masuk sini nih', 'netral'),
(576, 'Jessica mila ama lucinta luna persis duduk dikursi depan pesawat, milih yg mana ya', 'netral'),
(577, '@Nutrisi_Bangsa 70% makhluk dibumi terdiri dari jomblo akut berlebihan karena disebabkan oleh rasa nyaman yg berleb… https://t.co/MLaWXbTKrw', 'negatif'),
(578, 'RT @semuajeniskeju: @mohammedsabeq @_rthrbe @polkawars Setelah melihat kelakuan polkadot ternyata LUCINTA LUNA GA TERLALU BURUK.', 'positif'),
(579, '@haekbiceps lagi hiatus kan lg cosplay jd lucinta luna dulu', 'netral'),
(580, 'Liat tingkah polah Lucinta Luna ini lumayan banget buat hiburan <U+0001F605>\n\n\n\nTerima kasih sudah buat tertawa pagi ini. Sungguh menggemaskan haha', 'positif'),
(581, 'ASTAGA LUCINTA LUNA SAAT MENYUSUI BAYI JADI SOROTAN, TERIAK-TERIAK KESAKITAN!!! https://t.co/ZcLQSIV8k9 https://t.co/S8RCzPohOo', 'negatif'),
(582, '@altheeaz Gak kayak lucinta luna kan teriak teriak', 'negatif'),
(583, 'Ketiduran dengan earphone still on pas ngeliat video nya Lucinta Luna di youtube issa... thing....,,,..', 'negatif'),
(584, '@mayla_ayu @SiegerAnwalt Itu kaki apa tangan si lucinta luna??', 'negatif'),
(585, 'pagi2 pusing liat lucinta luna netein bayi gatau bayinya siapa https://t.co/8jUckZHZij', 'negatif'),
(586, 'RT @semuajeniskeju: @mohammedsabeq @_rthrbe @polkawars Setelah melihat kelakuan polkadot ternyata LUCINTA LUNA GA TERLALU BURUK.', 'positif'),
(587, 'Ini temanya \"kapan asi keluar\"\n\n\n\nGegara apa coba debat ginian? Video lucinta luna yg lagi nyusui anjwang<U+0001F62D><U+0001F62D> https://t.co/3WyrIZfmbt', 'negatif'),
(588, '@AnandyaDwiP Angen angene lucinta luna ki mubal ngarahku .', 'netral'),
(589, 'RT @semuajeniskeju: @mohammedsabeq @_rthrbe @polkawars Setelah melihat kelakuan polkadot ternyata LUCINTA LUNA GA TERLALU BURUK.', 'positif'),
(590, 'RT @Homeminyoon: Kalau anda ga nonton\n\n1. \"Alasan kita selesai\"\n\n2. Pernikahan reino syahrini\n\n3. Video deddy x lucinta luna\n\n4. Trailer dilan…', 'netral'),
(591, '@khanssaakk Bukaaaannn, itu Fatahnya maksudnya <NAME>', 'netral'),
(592, '@askmenfess knp sih gw lgsg kebayang lucinta luna di mobil boy<U+0001F62D> iw', 'negatif'),
(593, 'Lucinta luna apa lucinta lucas? Hiya hiya hiya', 'negatif'),
(594, 'Pagi2 liat video lucinta luna lagi nyusuin bayi.......... geus teu habis thinking kieu', 'netral'),
(595, '@mohammedsabeq @_rthrbe @polkawars Setelah melihat kelakuan polkadot ternyata LUCINTA LUNA GA TERLALU BURUK.', 'positif'),
(596, 'RT @RADTHERANDOM: if <NAME> was living and breathing back in 1963 and she screamed milliseconds before the JFK shooter pulled the tri…', 'netral'),
(597, 'Lucinta luna tuh sumpah kalo anteng gua ngefans deh asli cakep banget cuy sayang aja kalo tereak kek gerobak kue putu', 'negatif'),
(598, '@Iqbaliskndr @tubirfess Kalo dia masi cuek bebek di kasus y kmungkinan engagement turun. Ditinggal orang. Ato yg pa… https://t.co/uSTjE8m66h', 'netral'),
(599, '@catsedih kok aku mendengar suara ala ala lucinta luna hmm', 'netral'),
(600, 'Lucinta Luna dan <NAME> Diadu Jadi Artis Paling \'Halu\', Siapa yang Menang? https://t.co/gXIbIfV7h3 https://t.co/uorqSObKN8', 'negatif'),
(601, 'RT @cookymine_: @estehhanget @askmenfess Mirip suara tereaknya lucinta luna brengsek wkwkwwkwkwkww', 'negatif'),
(602, '@WalberRevelino Malas pangkal lucinta luna', 'negatif'),
(603, 'Lucinta luna dong :( dia kencing jongkok apa berdiri ya https://t.co/gzyQK9p8Yf', 'negatif'),
(604, '@RR_besarrr Lucinta luna juga cowo bang, tpi bisa pake jilbab', 'negatif'),
(605, '@adedwioktavia23 @FiersaBesari <NAME>eyeng', 'positif'),
(606, 'ini lucinta luna kenapa sih....', 'netral'),
(607, '@rljsoo Coba lucinta luna aja pez cocok', 'positif'),
(608, '@Dahnilanzar colab dengan lucinta luna auto nambah subs', 'positif'),
(609, 'Jika jadi Menteri , maka jabatan yg kuinginkan ialah:\n\n\n\n-Menteri Komunikasi & Informatika\n\n\n\nProgja:\n\n*Memblokir akun2… https://t.co/kzn5rdcGlD', 'netral'),
(610, 'Menteri kependudukan\n\n\n\nProgram: menugaskan detektif konan untuk menguak misteri apakah lucinta luna itu seorang wani… https://t.co/Yn5s9G9X0x', 'negatif'),
(611, 'Bisik bisik tetangga lucinta luna lumayan nih hiburan pagi, terus ichsan akbar mulutnyA YAALLAH https://t.co/Arf3s8uI5u', 'positif'),
(612, 'BRIDEZILLA Trailer (2019) JESSICA MILA, LUCINTA LUNA Film Komedi | Trail... https://t.co/KdWc8kBDOf via @YouTube', 'positif'),
(613, 'Jadi ini yg katanya mirip lucinta Luna.. https://t.co/8BhahBvNCb', 'positif'),
(614, 'RT @RADTHERANDOM: if Lucinta Luna was living and breathing back in 1963 and she screamed milliseconds before the JFK shooter pulled the tri…', 'netral'),
(615, 'U want a girl with big boobs, long hair, pretty butt, perfect skin and perfect body?\n\n\n\nMan, u better get lucinta luna.', 'positif'),
(616, '@gumedongu Kamu ngga luci tapi lucinta luna <U+0001F602>\n\n\n\nKamu ga nyiapin buat aa?', 'netral'),
(617, 'Ini lucinta luna bikin receh garis keras giniiii kenapaa :)', 'positif'),
(618, '@askmenfess Lucinta luna mahasiswa undangan', 'positif'),
(619, '@haiseulgi @baebunny29 Atuh dm lu limit terus. Mangkanya jan liat lucinta luna terus', 'negatif'),
(620, 'RT @krysztalI: @mageulmi @kiemseula @cyantiq @kmjisooy @vocyez @roqzeanne @caeyeocn @jnnieq @suouzy @rqsei @urjulietx @jenyrubjaner @curyst…', 'netral'),
(621, '@mageulmi @kiemseula @cyantiq @kmjisooy @vocyez @roqzeanne @caeyeocn @jnnieq @suouzy @rqsei @urjulietx… https://t.co/eYTEE3lDsY', 'netral'),
(622, '@gesgestay Abang mirip Lucinta Luna sukanya minum kiranti :)', 'negatif'),
(623, '@YaoiClime kek lucinta luna lu teriak2 mulu ep kemaren wkwkwk', 'netral'),
(624, '\'Perang Dada Tumpah\', Millendaru Saingi Lucinta Luna Diledek Gede Sebelah Efek Oplas Nyicil https://t.co/54eH6VbZcU https://t.co/0wOkBl4V9L', 'negatif'),
(625, 'Enak banget jadi lucinta luna, cari rezeki cuma modal teriak teriak doang', 'negatif'),
(626, '@yogawardana__ Gimana aja mau . Yang penting jangan kayak mas lucinta luna aja!', 'negatif'),
(627, '@ENASUGAM93 Gua saranin lagunya lucinta luna bang<U+0001F603>', 'positif'),
(628, 'kenapa sih di pagi hari yang cerah dan indah ini aku harus menonton video lucinta luna menyusui', 'negatif'),
(629, 'suka bingung itu lucinta luna maksudnya teriak2 kek binatang tiap diajak ngomong orang itu maksudnya apa.', 'negatif'),
(630, '@hywnjin Lucinta luna', 'netral'),
(631, 'I dont need anything as long as you stay beside me, eaaa<U+0001F929><U+0001F919>\n\n\n\nMau dong cinta dari liaaa, cinta kuya atau lucinta luna… https://t.co/fNmVsmUZkQ', 'netral'),
(632, '@GunawanNanda Itulah penting mimi lucinta luna :\')', 'positif'),
(633, '@RPWTLS Jadi gimana ni lucinta luna apa lucinta gua', 'netral'),
(634, 'Belajar bahasa Inggris di Chanel ini.. Lucinta Luna, Jessica Iskandar - Seleb English https://t.co/UOL7UpIqDo via @YouTube', 'netral'),
(635, '@itsjeonginnn Dari lucinta luna', 'netral'),
(636, '@hati2dimedsos Nak. Lucinta luna aja ga minta dibalikin tititnya', 'negatif'),
(637, 'itu anak siapa yg disusuin lucinta luna tolong emaknya kemana <U+0001F62D><U+0001F62D>', 'negatif'),
(638, '@cantihk lucinta luna?!', 'netral'),
(639, 'Lucinta luna udah lahiran? Cepet amat perasaan', 'negatif'),
(640, '@Cangkemaaann2 Lucinta luna kalo teriak ngeri banget kedengerannya <U+0001F611>', 'negatif'),
(641, '@FreakIife Sabar gue sabar :) penyuka lucinta luna', 'positif'),
(642, '@PolJokesID Ini sama lucinta luna sama\" halu deh', 'negatif'),
(643, '@tiffanyisma Lucinta luna', 'netral'),
(644, '@fairyliin kirain kak farto fans lucinta luna garis keras<U+0001F606>', 'positif'),
(645, '@GoodDinosaur3 Mungkin lucinta luna', 'netral'),
(646, 'Lucinta luna minum pil kabe\n\nI lop yu beibeee', 'positif'),
(647, 'Yohan tereak nya kek lucinta luna anjrit https://t.co/bYwNzSDUqY', 'negatif'),
(648, 'RT @kyulkyvng: @kimjihoy Secantek lucinta luna? .y', 'positif'),
(649, '@_rthrbe @afrkml @26mill_ @NKR_Internet @HokBen Seleb kok bencong ? \n\nLebih mulia lucinta luna daripada orang begitu… https://t.co/wQsnxwYe6W', 'negatif'),
(650, 'Sumpahh nonton video ria ricis tuh pas dia ngundang lucinta luna doang <U+0001F602> lucu bgt soalnya wkwkwk', 'positif'),
(651, 'bisa bisanya gua nonton lucinta luna<U+0001F62D><U+0001F62D>', 'positif'),
(652, '@kwonnby avanya sekilas mirip lucinta luna.', 'positif'),
(653, 'Sedikit penasaran, kok tahan ya abas sama lucinta luna, kupingnya ga berdarah dengar lucinta tereak kaya gagak njir', 'negatif'),
(654, '@aylafyouu Wah gamau jadi lucinta luna part 2 ah:(', 'negatif'),
(655, '@TeguhPratama15 Harusnye tebalek woyyy, cewe yg suke ngode<U+0001F923> dasar lucinta luna lu<U+0001F624>', 'negatif'),
(656, '@Cangkemaaann2 \"enak banget pemirsa sm susunya lucinta luna, asli gak basi\"\n\n\n\no-okay https://t.co/bqXrE78Zlh', 'positif'),
(657, '@saviralfn Alhamdulillaaaah. tp lucinta luna gradak2 banyak cowonya hahahaha', 'positif'),
(658, 'Saya jadi laki-laki dari kecil jakun gak pernah kelihatan gara-gara gemuk. Malu sama Lucinta Luna.', 'positif'),
(659, '@HandayaniRin Lucinta luna cantik', 'positif'),
(660, '@askmenfess lucinta luna dpt beasiswa dong wkwwk', 'positif'),
(661, '@wlnh_r00 Ya bisa diharapkan lah dari stan Lucinta Luna', 'positif'),
(662, '@SelmaPiramitha @acisyahaqilah @rhesmanassa @amindacrawles @Strompetzmr15 lucinta luna selera semua umat', 'positif'),
(663, '@askmenfess Lucinta luna dapet beasiswa nih', 'positif'),
(664, 'Apansi anjing semalem mimpi gangbang lucinta luna pagi pagi langsung istigfar', 'negatif'),
(665, '@askmenfess Lucinta Luna bakalan dapet undangan beasiswa nya langsung dong? Azigg', 'positif'),
(666, '@askmenfess MAN IT\'S \"LUCINTA LUNA\" LOL', 'positif'),
(667, 'Aku potong poninya sendiri tadi pagi pake gunting kertas makanya ga rapi. Pas udah kepotong baru sadar kalo dari ja… https://t.co/mwn45aD0nk', 'netral'),
(668, '@faizsadad_ Lucinta luna is', 'netral'),
(669, 'Bertindak karena takut tuhan, dengan bertindak karena takut dinilai orang lain tak dekat tuhan itu bedanya setipis celana dalem lucinta luna', 'negatif'),
(670, 'musti banget apa ya gw liat lucinta luna netein bayi', 'negatif'),
(671, '@dipskilalapoo Minum kiranti dong kaya kaka lucinta luna', 'positif'),
(672, 'Hobi update quote dOnt mAkE sToOpiD peOplE Famozz tp tiap ada update dr lucinta luna diapun ikut update \"nGakAkK AnjJj \" iku piye toh', 'negatif'),
(673, 'Respon kalian sama lucinta luna — ini cewe kerad juga https://t.co/9R3eilb0we', 'netral'),
(674, '@askmenfess liatin lucinta luna AHAHHAHA', 'positif'),
(675, '@upiindrawan iyalah masa lucinta luna wkwkwkwk', 'netral'),
(676, 'Itu pacar lucinta luna te perempuan kan? Jirrrr', 'negatif'),
(677, '@askfess Yang kaya lucinta luna harus wajib kudu kepsikiater', 'negatif'),
(678, 'Sedih amat baca komenan yt di mv raisa kembali, yg paling aneh itu pas dibilang liriknya susah lah, lagunya kemegah… https://t.co/WERL7iqycm', 'negatif'),
(679, 'Man idk about you tapi ak suka dengan humornya Lucinta Luna wkwkwkwk', 'positif'),
(680, '@chajunxho_ lucinta luna?', 'netral'),
(681, '@siyeonikka @laiguanlain <NAME> sekarang pemuja no.1 nya <NAME>.', 'positif'),
(682, '@lalalarina_m Konten lucinta luna', 'positif'),
(683, '@deaaril <NAME>', 'netral'),
(684, 'Lucinta luna aja udah dapet pasangan, kalian kapan ?', 'positif'),
(685, 'lucinta luna kan begitu yak kalo ngomong napa bisa jadi penyanyi seh heran<U+0001F602><U+0001F602><U+0001F602>', 'negatif'),
(686, 'lucinta luna is freak asf\n\nhttps://t.co/9zu274zAyG', 'negatif'),
(687, 'Piye carane golek pacar sing ayu ?\n\nGolek pacar ojo sing ayu tok.\n\nLonte kae yo ayu , Lucinta luna yo ayu , banci tha… https://t.co/MDx8fVY4qD', 'negatif'),
(688, '@RoyKiyosi45 Lucinta luna gak ada?\n\n\n\nKan cocok buat mentri pemberdayaan perempuan', 'positif'),
(689, '@YaoiSociety Lucinta luna', 'netral'),
(690, '@SiegerAnwalt <U+0001F446><U+0001F446><U+0001F446>\n\nFanboynya Lucinta Luna.', 'positif'),
(691, '@ammaqueenn Lucinta Luna - A Whole New World', 'netral'),
(692, 'Dohyun teriak teriak mulu kek lucinta luna.', 'negatif'),
(693, 'RT @ricigga: @yaelahcan Semalam bobo dmn - lucinta luna', 'netral'),
(694, '@yaelahcan Semalam bobo dmn - lucinta luna', 'netral'),
(695, '@aintkeano auto keinget lucinta luna, suaranya kek kambink pas teriak :(', 'negatif'),
(696, 'Lucinta luna asik lagi orangnya, kenapa sih pada hate:(', 'positif'),
(697, 'RT @spesdelune: lucinta luna tuh sumpah kalo anteng gue ngefans deh asli cakep banget cuy sayang aja kalo tereak kek gerobak kue putu', 'positif'),
(698, '@mintjuy @gwulaliz kaya lucinta luna mau?', 'netral'),
(699, '@kjaeone Aku enggak nyangka ternyata oppa lucinta luna <U+0001F602>', 'positif'),
(700, 'Kenapasih lucinta luna hobi tereak tereak apa tidak sebaiknya jadi pemimpin upacara aja', 'negatif'),
(701, '@askmenfess \"baby, lu suka sama lucinta luna aja gua fine. Napa gua suka oppa, lu yang ke trigger dah?\" \n\n\n\nDNA kpop… https://t.co/p2mLogn12a', 'positif'),
(702, '@anisarahiim Ada kok, lucinta luna', 'netral'),
(703, '@troyeesivaann Ingin ku ambil toa dan meneriaki nya dengan teriakan angsa lucinta luna agar ia erasa risih', 'negatif'),
(704, '@JAEHYUNJLs mau teriak lucinta luna. https://t.co/Z8TrMS2Q9S', 'netral'),
(705, '@hsnh_okps @bknsiapasiapa_ Halu lo macam Lucinta luna', 'negatif'),
(706, '@pringlessori Pen jd lucinta luna', 'positif'),
(707, 'pernah waktu itu w lempar tisu ngasal gitukan, terus tisunya kelempar ke kaki w sendiri, dan w kaget bgt dong langs… https://t.co/jOYrgT5hi1', 'netral'),
(708, '@pemakankentang Gamau pi, entar dihujat netizen kek lucinta luna', 'negatif'),
(709, 'saatnya nonton Lucinta Luna nyanyi A Whole New World', 'netral'),
(710, '@ainthangyul lucinta luna woy wkwkwkwkwk', 'netral'),
(711, 'dohyon maapin ak kok teriakan km tadi mirip lucinta luna', 'netral'),
(712, 'Kok mirip lucinta luna, ya. https://t.co/U272b7FgTa', 'netral'),
(713, '@Citalifia @alisnyacita Nama lengkapnya lucinta luna ya?', 'netral'),
(714, '@irfanhernadi13 dpt salam dr lucinta luna', 'netral'),
(715, '@mbaimel lucinta luna beda', 'netral'),
(716, '@dsuzyy @tynkeur WOY TALE MAJU LU SINI BINI GUA LU KATA LUCINTA LUNA', 'negatif'),
(717, 'RT @komangtrisanthy: Lucinta luna https://t.co/NdZIvhgexz', 'netral'),
(718, 'Lucinta luna makan tomat\n\nBodo amattt https://t.co/XTPU8xfwV6', 'netral'),
(719, '@RPAutoBase lucinta luna', 'netral'),
(720, 'Bpkku ke kmr trs ngmng ikilo lucu trs buka YouTube lucinta luna yg salomenya ilang', 'netral'),
(721, '@macchiatoslave Cari youtuber/channel yg lg collab sama lucinta luna', 'netral'),
(722, '@maulana_santosa Kamu si selingkuh sama lucinta Luna!!!!', 'negatif'),
(723, '@aintkeano luh pikir w lucinta luna?', 'negatif'),
(724, 'RT @RADTHERANDOM: if Lucinta Luna was living and breathing back in 1963 and she screamed milliseconds before the JFK shooter pulled the tri…', 'netral'),
(725, '@ultlalixsa @idolfess @pengaduanfess @knightleysh Lucinta Luna nganu / video biasa doang?', 'netral'),
(726, 'RT @sluggishstudent: Vanitas La Lucinta Luna de Gra Danica', 'netral'),
(727, '@agustdaegut @idolfess @pengaduanfess @knightleysh video tidak senonoh alias lucinta luna', 'negatif'),
(728, '@Hardi23146421 @BiLLRaY_ @Sa_Ramadhan1 @jokowi Spa om.... lucinta luna ya...<U+0001F603><U+0001F603>', 'netral'),
(729, 'Udah sejam aja ditanah abang Dan selalu berbarengan dengan yang sejenis \"lucinta Luna\" <U+0001F629>', 'negatif'),
(730, '@elfathaawy yah ketauan deh aqu ngayal punya pacar lucinta luna huhu', 'positif'),
(731, '@beomieyy_ biasa aja, gw lucinta luna istri abash', 'netral'),
(732, 'RT @sluggishstudent: Vanitas La Lucinta Luna de Gra Danica', 'netral'),
(733, 'RT @sluggishstudent: Vanitas La Lucinta Luna de Gra Danica', 'netral'),
(734, 'RT @sluggishstudent: Vanitas La Lucinta Luna de Gra Danica', 'netral'),
(735, 'Vanitas La Lucinta Luna de Gra Danica', 'netral'),
(736, '@beomieyy_ bukan gw lucinta luna, yah menurut lu?', 'netral'),
(737, '@Masakobubuk1 A whole new world -lucinta luna ver.', 'netral'),
(738, 'Kek lucinta luna begitu kok gabisa galau yak abis cerai ama suaminya. \n\nHeraaann! Pengen kek dia, atinya kuat kek laki <U+0001F636>', 'positif'),
(739, '@qnafess Yg kayak lucinta luna aja dah', 'netral'),
(740, '@jungjenouwu @idolfess lucinta luna sm b*k*p', 'netral'),
(741, 'Lawak kali lucinta luna menyusui<U+0001F622><U+0001F622><U+0001F622>', 'negatif'),
(742, 'Dohyon kenapa kayak lucinta luna sih sikit-sikit teriak melengking wkwkwm', 'negatif'),
(743, '@rmjooxn Yaampun sumpah sedih aku kalah dari lucinta luna <U+2639><U+FE0F>', 'positif'),
(744, '@yosizullian Yang di dalem perut lucinta luna', 'netral'),
(745, '@NAYEON95TG Gua sukanya yg klesi ala ala lucinta luna', 'positif'),
(746, '@ranubf_ Oh lucinta luna?', 'netral'),
(747, '@daffadzakyy Lucinta luna', 'netral'),
(748, 'Mimpi dipeluk lucinta luna itu pertanda apa ya gaes?', 'netral'),
(749, 'walopun geleuh sm lucinta luna tp gw akuin karir dia di dunia entertainment boleh boljug lho~~~ terlepas halu sm demen gimmick nya y', 'positif'),
(750, '@ngopiyukah Suka lucinta luna?<U+0001F612>', 'netral'),
(751, '@idolfess Sumpah nih orang @hunjosmimih lo tuh ya nyampah mulu di base manapun. Siapa sih lo ada apa sih lo ngeshar… https://t.co/8AF2DgXNBu', 'netral'),
(752, '@ngopiyukah Suara ku kek lucinta luna mending jngn', 'negatif'),
(753, '@nanajaemzzz @jenoeys KAMU YANG BILANG SENDIRI YA NA ANGGEP AJA INI AKUN KEDUA LUCINTA LUNA<U+0001F637>', 'netral'),
(754, 'Spill n drunk bersama Lucinta Luna lovers. https://t.co/X4RBgt8A8l', 'netral'),
(755, 'what do u think about \"Lucinta Luna\"?', 'netral'),
(756, '@songyuwki tadi kan nuna lagi jadi LUcinta LUna', 'netral'),
(757, '@fat_fitri Miripnya kamutu kaya lucinta luna.. Memang pens sejati', 'positif'),
(758, '@jenoeys @bubutiwai HUJAT AJA HUJAT\n\nANGGAP INI AKUN KEDUA LUCINTA LUNA-_-', 'positif'),
(759, '@micheleaiyada Lucinta luna dongs<U+0001F629>', 'positif'),
(760, 'ni lucinta luna kenapa si yg tadinya emosi liat dia jadi ngga bs komentar jadi q hanya bs senyum simpul aja', 'positif'),
(761, 'RT @SuwerM: @sghiu21 Mencintaimu ?\n\nMaaf , aku nunggu anaknya lucinta luna!', 'positif'),
(762, '@JACKSONILLs @KEISUKEILLs @YONGGUKILLs @LUCASILLs @WOOJOONGILLs @EOJINILLs @SENILLs @CHITTAPHONILLs @JAEWONILLs… https://t.co/W98E2zTAMS', 'netral'),
(763, '@sghiu21 Mencintaimu ?\n\nMaaf , aku nunggu anaknya lucinta luna!', 'positif'),
(764, '@Basecampalter Lucinta Luna bang mau?', 'positif'),
(765, 'Gw bingung. Bangun pagi jam 7:00 kekantor, pulang jam 5 kadang juga lembur, gitu aja terus,, sampe lucinta luna punya anak kembar!!!! <U+0001F644><U+0001F644><U+0001F644>', 'negatif'),
(766, '@fazriandikaaa Kalo yang nempel dadanya lucinta luna gimana tuh?', 'negatif'),
(767, '@Cangkemaaann2 Jingan ndod harusnya itutu bayi dajal eang nyusu sama lucinta luna gblk bat ea fufufu', 'negatif'),
(768, '!rp jadi gimana neh? @jiqchoo \n\nLucinta luna apa lucinta gue? https://t.co/uO6YcENlLv', 'netral'),
(769, '@caaeheyoung @RPAutoBase Fansnya Lucinta Luna ya? ~(<U+203E><U+25BF><U+203E>~) (~<U+203E><U+25BF><U+203E>)~', 'positif'),
(770, 'tiap denger lagu ariana grande 7 rings malah keinget vidionya lucinta luna<U+0001F62D>', 'netral'),
(771, 'lucinta luna kalo jerit-jerit suaranya mirip suara soang lg ngewe.', 'negatif'),
(772, '@PATRlCKxSTAR Salah. Lucinta Luna penyanyi paporit w.', 'positif'),
(773, '22.\n\n\n\nLanjut yah. \n\n\n\nPlayer ini suka nabung di celengan babi. Gak sukanya kalo dengerin Lucinta Luna teriak.\n\n\n\nAAAAAAARK.', 'negatif'),
(774, '@RPEBASE lucinta luna atau lucinta saya? \n\n\n\nmaaf :((', 'netral'),
(775, '@efaalwani Jelmaan lucinta luna nih', 'negatif'),
(776, 'halunya lucinta luna tuh menghibur bgt deh<U+0001F602><U+0001F602> bikin ngakak mulu', 'positif'),
(777, '@lainjiwaa Dripada isinya lucinta luna semua', 'negatif'),
(778, 'Alasan temen2 mentioned aku di ig\n\n- video receh.\n\n- foto barang2 lucu.\n\n-VIDEO LUCINTA LUNA LAGI NYUSUIN BAYI. https://t.co/ToVFjVl95D', 'netral'),
(779, 'Cc kak lucinta luna https://t.co/b5CasXju4o', 'netral'),
(780, '@dhil_taetae lucinta luna', 'netral'),
(781, '@jjnsomii BKN. mksd gue lucinta luna akwowkwow', 'netral'),
(782, 'Yaaaaaa 11-12 sama lucinta luna https://t.co/tZWg2HeAvb', 'positif'),
(783, '@WELLCOTxFAMS Rep, cantik juga ya lucinta luna, wajarkan aku suka lucinta luna, aku kan normal suka cowo #jeney', 'positif'),
(784, 'Manjalita - lucinta luna (?) https://t.co/7X9gY2pEBM', 'netral'),
(785, '@vlickr Bapak nya abis nonton lucinta luna ini pasti gua yakin', 'netral'),
(786, '@setangarislucu cc: Lucinta Luna', 'netral'),
(787, 'buka story nya lucinta lgsg disambut dia ngomong,\n\n\n\n\"sekarang lucinta luna manoban mau perawatan-\" BGST<U+0001F62D><U+0001F62D><U+0001F62D><U+0001F62D><U+0001F62D><U+0001F62D>', 'negatif'),
(788, 'Ini kenapa ada Lucinta Luna..', 'netral'),
(789, 'RT @chaewingum: Gue nungguin Lucinta Luna selfie sama simpanse https://t.co/CdVknmeMRa', 'netral'),
(790, 'Gue nungguin Lucinta Luna selfie sama simpanse https://t.co/CdVknmeMRa', 'netral'),
(791, 'Atas aku pernah nyobain pentil lucinta luna', 'negatif'),
(792, '@ksgeul @urfavgyu @joyvjy @ynrosee @jujielqi Lu mah lucinta luna. Gk heran gua.g', 'netral'),
(793, '@adindaysphn @cursedkidd Kayak jakunnya lucinta luna...', 'netral'),
(794, 'Coba bayangkan klo mama km itu lucinta luna', 'netral'),
(795, '@askfess Dibilang mirip awkarin, lucinta luna, wulan guritno. Gatau emang mukanya pasaran kali <U+0001F611>', 'netral'),
(796, 'Sekali2 gitu beritanya lucinta Luna ngaku klo dia mas fatah..', 'positif'),
(797, 'Now playing: *lucinta luna treak 10 jam* yg macet2an auto gegar otak :( https://t.co/SlqoMpBG2F', 'negatif'),
(798, '@pemakanbiawak @akunalzio @SANAJLs AAAAAAAAAAAAAAAAAAAAAAKKKKKKKKKKKKKKK GUA TERIAK2 KAYAK LUCINTA LUNA NIH!!!!', 'negatif'),
(799, '@rulacoster @akunalzio @sehembusharap LU EMANG LUCINTA LUNA', 'netral'),
(800, '@SANAJLs @akunalzio @sehembusharap HAAAAAAAAAAAAAAAAAAAA DIEM ATAU GUA TERIAK2 KAYAK LUCINTA LUNA', 'negatif'),
(801, 'RT @ariryantama: manusia terbuat dari tanah,\n\nlucinta luna doang yang terbuat dari ubin bengkel', 'negatif'),
(802, '#MentionKe temen lo yg kalo teriak 11 12 sama lucinta luna', 'netral'),
(803, '#MentionKe temen lo yg diem2 naksir lucinta luna', 'netral'),
(804, 'RT @detikhot: Usai ditahan, ini penampakan baru Galih, <NAME>, dan Pablo mengenakan rompi tahanan: #GalihGinanjar #ReyUtami #PabloBenua…', 'netral'),
(805, 'RT @radenrauf: MPUS!!! https://t.co/5iT2jP2Tx3', 'negatif'),
(806, '@ldontwannabeme @_rlthingy Cantik dong maaaak', 'netral'),
(807, '@radenrauf Rey utami lho bang :(', 'negatif'),
(808, 'RT @radenrauf: MPUS!!! https://t.co/5iT2jP2Tx3', 'negatif'),
(809, '@Bolabundar26 Seralo dah.. nih udh gw celupin saos tomat kok gapedes', 'netral'),
(810, '@rey_utami Eeh buseettt.. Leluhur ini maah hahahaa', 'netral'),
(811, '@Bolabundar26 Nih kaki lu cipok dulu baru gw maafin', 'netral'),
(812, 'RT @radenrauf: MPUS!!! https://t.co/5iT2jP2Tx3', 'negatif'),
(813, 'Jenguk Galih Ginanjar di Penjara, Tangis Barbie Kumalasari Pecah, Blak-blakan Salahkan Rey Utami! https://t.co/KQA9ZsnUQ0', 'negatif'),
(814, 'Jenguk Galih Ginanjar di Penjara, Tangis Barbie Kumalasari Pecah, Blak-blakan Salahkan Rey Utami! https://t.co/HqOcDOlbX4', 'negatif'),
(815, 'Jenguk Galih Ginanjar di Penjara, Tangis Barbie Kumalasari Pecah, Blak-blakan Salahkan Rey Utami!: Jenguk Galih Gin… https://t.co/ebZdqWdIBe', 'negatif'),
(816, '@rey_utami Eeh maaf kka, sungkem', 'netral'),
(817, '<NAME> dan Rey Utami yang keluar bersamaan dengan Galih usai pemeriksaan tampak mengenakan baju tahanan https://t.co/5VSmQd74GF', 'negatif'),
(818, '@Bolabundar26 Nyuruh2 lu.. ogah', 'netral'),
(819, '@ldontwannabeme OTW eh shareloc', 'netral'),
(820, '@rey_utami Yah siapa yg bilang, huftt yah nyanyi2 ke atau ngelawak gitu hahahhaa', 'netral'),
(821, '@rey_utami YAUDA CEPETTT', 'netral'),
(822, '@ldontwannabeme Sini gw masakin nder', 'netral'),
(823, '@Bolabundar26 Emang gw wanita penghibur?', 'netral'),
(824, '@rey_utami Jangan ketawa kka, hibur ke hahaha', 'negatif'),
(825, '@Bolabundar26 Oh wkwk <U+0001F602>', 'netral'),
(826, 'Ikan asin digoreng/di bakar + daun ubi direbus + sambal lado balacan + nasi putih anget + teh putih anget. Waooo en… https://t.co/kRlwrbuIE7', 'netral'),
(827, '@rey_utami Bukaan ishh, kali ketiga ditikung mantan', 'netral'),
(828, '@Bolabundar26 Oh yg judulnya kali ciliwung?', 'netral'),
(829, '@rey_utami Hahahaha udah tadi ngegalau lagu raisa :(((', 'netral'),
(830, '@Bolabundar26 Yaudah dangdutan dlm kmr mandi', 'netral'),
(831, '@rey_utami Siang siang gini yasalam, panaaaaas', 'netral'),
(832, 'Suami Rey Utami Diduga Sering Palsukan Identitas, Inikah Nama Asli Pablo Benua? https://t.co/oJ2fF9bmv1 https://t.co/OVxuPZoGzF', 'negatif'),
(833, '@Bolabundar26 Dangdutan!', 'netral'),
(834, '@kenalankamu Dih gue juga itumah', 'netral'),
(835, 'RT @NitaArdyanti: Liat berita rey utami, pablo sama galih keluar pake baju tahanan. Semua terlihat normal sampek jadi ketawa pas wartawanny…', 'negatif'),
(836, '@rey_utami laper kakak', 'netral'),
(837, 'Galih Ginanjar Ditahan, Barbie Kumalasari Tuding Rey Utami dan Suaminya Sebagai Biang Keladi https://t.co/kSUKdXDXbP https://t.co/uBI7mAPpSI', 'negatif'),
(838, 'Suami Rey Utami Pernah Tersangkut Dugaan Investasi Bodong https://t.co/3UsCA1P3LI https://t.co/kD2Kmzu5MX', 'negatif'),
(839, 'Rey Utami dan <NAME>, Farhat Abbas Ajukan Penangguhan Penahanan https://t.co/0RmtFn4Wko via @tribunnews', 'positif'),
(840, 'RT @radenrauf: MPUS!!! https://t.co/5iT2jP2Tx3', 'negatif'),
(841, '@vanhousteny Jan ngiler tapi yakk', 'netral'),
(842, '@rey_utami Sepi gabut bete hahahaha', 'netral'),
(843, 'Rey Utami dan <NAME> Hilangkan Barang Bukti Saat Digeledah Polisi https://t.co/pAqygAXfvo', 'negatif'),
(844, '@Bolabundar26 Suruh rebahan matanya ..', 'netral'),
(845, 'RT @radenrauf: MPUS!!! https://t.co/5iT2jP2Tx3', 'negatif'),
(846, 'RT @PojokSatuBogor: Rey Utami Pengin Minta Maaf Soal Kasus ‘Ikan Asin’ https://t.co/mJdzdSN2Lj', 'positif'),
(847, 'Rey Utami Pengin Minta Maaf Soal Kasus ‘Ikan Asin’ https://t.co/mJdzdSN2Lj', 'positif'),
(848, 'Rey Utami Titip Anak Saat Ditahan Polisi https://t.co/JmJgDCM6Qb', 'positif'),
(849, 'RT @detikcom: #Infografis Ucapan \'bau ikan asin\' berujung jeruji tahanan untuk Galih Ginanjar, Rey Utami dan <NAME>. Begini alur kasus…', 'negatif'),
(850, '@lazewiie Tidak ada yg susah, kamu udah berusaha semoga lekas dimudahkan. Sama2 zheyeng', 'netral'),
(851, 'RT @radenrauf: MPUS!!! https://t.co/5iT2jP2Tx3', 'netral'),
(852, 'RT @radenrauf: MPUS!!! https://t.co/5iT2jP2Tx3', 'netral'),
(853, 'RT @dennyed: Gue baru tau kalau Kumalasari ini yang dulu main jadi pembantunya Lala-Bombom di Bidadari...<U+0001F631>\n\n\n\nLebih cantik dulu pas badannya…', 'positif'),
(854, '@rey_utami sedang berusaha tapi susah haha :\" makasih yaa btw', 'netral'),
(855, 'RT @NitaArdyanti: Liat berita rey utami, pablo sama galih keluar pake baju tahanan. Semua terlihat normal sampek jadi ketawa pas wartawanny…', 'negatif'),
(856, 'Pihak Galih Ginanjar dan Rey Utami Saling Menyalahkan, Hotman Paris Tertawa, Sindir Farhat Abbas?:… https://t.co/s4s32QOfiB', 'negatif'),
(857, '@lazewiie Makan yg bnyak, istirahat yg ckup. Jngan terlalu d forsir.. buar gk cpet jenuh', 'netral'),
(858, '<NAME> mengatakan bahwa suaminya, Galih Ginanjar tidak berniat jahat saat membicarakan ikan asin di chan… https://t.co/5rLCC7lXkU', 'netral'),
(859, '@rey_utami iya siap qaqaa', 'netral'),
(860, 'RT @dayatpiliang: selamat tidur pablo benua dan rey utami.', 'positif'),
(861, 'RT @galongkucing: di balik viralnya #IkanAsin .. ternyata ada kasus kriminal si Pablo .. \n\n\n\nsaran gw buat cewek .. jangan terlalu matrek lah…', 'negatif'),
(862, 'MPUS! https://t.co/gYqTH8bCtN', 'negatif'),
(863, 'RT @radar_malang: Kasus Ikan Asin, Rey Utami Menyesal dan Ingin Minta Maaf https://t.co/RCvL6Tzl8f https://t.co/mH9TPyoNhH', 'positif'),
(864, 'Gali<NAME>jar, Rey Utami dan Pablo Resmi Jadi Tersangka Kasus \'Ikan Asin\' https://t.co/68vWYOwysW https://t.co/6D8nhpa8KY', 'negatif'),
(865, 'Istri Sah Pablo Benua Ungkap Kesaksian Sebelum Suami Rey Utami Jadi Tersangka,Ternyata Belum Dicerai… https://t.co/g9jXbSKhtJ', 'negatif'),
(866, 'Tak Cuma Konten Pornografi dan Asusila, Rey Utami dan Pablo Benua Ketahuan Gelapkan Puluhan STNK\n\n\n\nhttps://t.co/yV8bfXQ5Bc', 'negatif'),
(867, 'Rey Utami dan Pablo Benua Ajukan Penangguhan Penahanan https://t.co/U9R4nua7oM https://t.co/ZGOJzWCyBz', 'negatif'),
(868, '@youresostupidb Setengah babi dong <U+0001F914>\n\n\n\nTapi ya se jujur2nya bicara, tetep harus mempertimbangkan gmn perasaan kamu s… https://t.co/ISrnOCNszs', 'negatif'),
(869, 'RT @radar_malang: Kasus Ikan Asin, Rey Utami Menyesal dan Ingin Minta Maaf https://t.co/RCvL6Tzl8f https://t.co/mH9TPyoNhH', 'positif'),
(870, 'Kasus Ikan Asin, Rey Utami Menyesal dan Ingin Minta Maaf https://t.co/RCvL6Tzl8f https://t.co/mH9TPyoNhH', 'positif'),
(871, 'RT @radenrauf: MPUS!!! https://t.co/5iT2jP2Tx3', 'negatif'),
(872, '@youresostupidb Klo mo curhat di DM ketok aja nder', 'netral'),
(873, '@youresostupidb Ya babi bener sih itu..', 'netral'),
(874, '@youresostupidb Sini sini crita', 'netral'),
(875, '@youresostupidb Utututututu tayaaang', 'netral'),
(876, '@vanhousteny Uhukk', 'netral'),
(877, 'Salahkan Rey Utami dan <NAME>, Kumalasari Nangis Lihat Kondisi Galih di Penjara - https://t.co/F4VF9oitlf https://t.co/GFluZx9RMb', 'negatif'),
(878, '@lazewiie Owalah.. semangat dong', 'netral'),
(879, 'Istri Sah Pablo Benua Ungkap Kesaksian Sebelum Suami Rey Utami Jadi Tersangka,Ternyata Belum Dicerai https://t.co/dlN1CoeN44', 'netral'),
(880, 'Presenter Arie Untung curhat ditipu suami artis bersamaan dengan penahanan pasangan <NAME>a dan Rey Utami.… https://t.co/MPNOTVN6Y2', 'netral'),
(881, 'RT @radenrauf: MPUS!!! https://t.co/5iT2jP2Tx3', 'negatif');
INSERT INTO `data_training` (`id_data_training`, `text`, `flag`) VALUES
(882, 'RT @radenrauf: MPUS!!! https://t.co/5iT2jP2Tx3', 'negatif'),
(883, 'RT @radenrauf: MPUS!!! https://t.co/5iT2jP2Tx3', 'negatif'),
(884, 'Adzab menghina mantan istri dan membuat konten sampah. https://t.co/3wZURKewZ9', 'negatif'),
(885, 'kucing w lahiran anaknya 3 pas banget nih kasih nama galih pablo rey utami <U+0001F47B>', 'negatif'),
(886, 'RT @radenrauf: MPUS!!! https://t.co/5iT2jP2Tx3', 'negatif'),
(887, 'RT @radenrauf: MPUS!!! https://t.co/5iT2jP2Tx3', 'negatif'),
(888, 'RT @radenrauf: MPUS!!! https://t.co/5iT2jP2Tx3', 'negatif'),
(889, '4 Artis Korban \'Mulut Sampah\' Pablo Benua dan Rey Utami https://t.co/4j5VarTShY', 'negatif'),
(890, 'Apa makna dari \"ikan asin\" https://t.co/4hppBPiKcP', 'netral'),
(891, 'rey utami pablo benua ni sapa si ajg!', 'negatif'),
(892, 'RT @radenrauf: MPUS!!! https://t.co/5iT2jP2Tx3', 'negatif'),
(893, 'RT @jpnncom: Rey Utami berniat meminta maaf kepada Fairuz A Rafiq, orang yang dihina Galih Ginanjar dalam vlog Rey Utami dan Pablo Benua. #…', 'positif'),
(894, 'RT @astrienova_: <U+0001F603><U+0001F603><U+0001F603>Pablo Benua yg pernah bikin video menghina pak @prabowo ,Tuhan itu adil,kalian jgn pongah klo msh blum tersandung <U+0001F60A><U+0001F60A> #C…', 'netral'),
(895, 'Jenguk Galih Ginanjar di Penjara, Tangis Barbie Kumalasari Pecah, Blak-blakan Salahkan Rey Utami! https://t.co/dm5vuurVdr lewat @sripoku', 'negatif'),
(896, 'Kasus Ikan Asin, Rey Utami Menyesal dan Ingin Minta Maaf https://t.co/nB1y46RmRk', 'positif'),
(897, '@null Ditahan di Kasus \'Ikan Asin\', Rey Utami-Pablo Ajukan Penangguhan Penahanan Rey U https://t.co/L5cAOplAGR', 'negatif'),
(898, 'RT @radenrauf: MPUS!!! https://t.co/5iT2jP2Tx3', 'negatif'),
(899, 'Rey Utami berniat meminta maaf kepada Fairuz A Rafiq, orang yang dihina Galih Ginanjar dalam vlog Rey Utami dan Pab… https://t.co/S05XjaCvQq', 'negatif'),
(900, 'RT @galongkucing: di balik viralnya #IkanAsin .. ternyata ada kasus kriminal si Pablo .. \n\n\n\nsaran gw buat cewek .. jangan terlalu matrek lah…', 'negatif'),
(901, '@djun_bang @sirajapadoha @Dahnilanzar @DivHumas_Polri @Dr_Moeldoko @KSPgoid @saidaqil @GPAnsor_Satu @na_dirs… https://t.co/OAJcJydcBr', 'netral'),
(902, '@rey_utami gapapa sih pusing kuliah wkwk', 'netral'),
(903, 'RT @dayatpiliang: selamat tidur pablo benua dan rey utami.', 'positif'),
(904, 'Raffi Ahmad Ungkap Permasalahan Rumah Tangganya, Pisah Rumah hingga Bertengkar selama Sebulan https://t.co/ehv948YRh2 lewat @Tribun_Manado', 'negatif'),
(905, 'Get well soon ya aa #RaffiAhmad https://t.co/fPnZU9v2SX', 'positif'),
(906, 'Raffi Ahmad Lontarkan Kata-Kata Mantan Istri, Tangis Nagita Slavina Pecah Tak Terbendung, Ada Apa?\n\n\n\nhttps://t.co/Hy3dFMF9c6', 'negatif'),
(907, 'Ini Alasan Raffi Ahmad dan Nagita Slavina Membuatkan Rafathar Video \'Perjanjian\' \n\nhttps://t.co/7yjBK7MweQ', 'netral'),
(908, '@zaeffrei <NAME>, inget umur gak boleh berzina lagi.', 'negatif'),
(909, 'TAK SANGKA MEREKA PERNAH BERTENGKAR HEBAT HINGGA PISAH RANJANG SELAMA SEBULAN https://t.co/lDDVCj4rls https://t.co/pqSqsjXhIY', 'negatif'),
(910, 'Ni sabar kalo misalkan bikin tajir, mungkin gua setara lah sekarang sama raffi ahmad', 'positif'),
(911, 'Tag: Raffi Ahmad - BARU KETAHUAN, <NAME> Pernah Tinggalkan Nagita Slavina Selama Sebulan, Ini Masalahnya -… https://t.co/P2gepVSfOU', 'negatif'),
(912, 'Bertengkar Hebat dengan Nagita Slavina,Raffi Ahmad Bongkar Masalah 4 Tahun Lalu, 1 Bulan Pisah Rumah https://t.co/D7w4xte2wL lewat @sripoku', 'negatif'),
(913, 'ternyata ada yang lebih pusing hasil rekamannya dari punya raffi ahmad, iya punya lee donghae', 'netral'),
(914, 'Astagfirullah kaget abis mimpi jadi selingkuhannya a raffi ahmad :\'', 'positif'),
(915, 'BERITA TERPOPULER: Alasan Istri Hotman Paris Tak Pernah Marah Lihat Kelakuan Suaminya Hingga Pengakuan Raffi Ahmad… https://t.co/ounACM9Osh', 'netral'),
(916, 'PENGAKUAN Raffi Ahmad Pernah Tinggalkan Nagita Sebulan Gara-gara Ini https://t.co/je6c69typ5 via @wartakotalive', 'netral'),
(917, 'Tangisan Nagita saat Dengar Sang Suami Ingin Nikah Lagi, Ini Penyesalan Terbesar Raffi Ahmad https://t.co/KZO2kNa9oB', 'negatif'),
(918, 'Disebut Penyakitnya Sama Seperti Olga Syahputra, Ini Jawab Raffi Ahmad https://t.co/Rms1G41tl5', 'negatif'),
(919, 'Apa perlu dia dihipnotis kaya raffi ahmad supaya tau gitu isi hatinya', 'netral'),
(920, 'Astaga kirain jok mobil raffi ahmad sobek sampe keliatan busanya https://t.co/J2lGIoi4c3', 'netral'),
(921, 'Kata siapa ini negara milik @jokowi ? Negara ini milik bapaknya rafathar. Pagi2 ada dia di tv, siang ada dia juga d… https://t.co/P8ijVeUc8Y', 'netral'),
(922, '[Ekslusif Produk RAFFI AHMAD with Barcelona Champions ] Harga CUMA 90Rb || For Order 087888383636 || Pin 330D11E6 https://t.co/456pNJJQjV', 'netral'),
(923, 'Yg punya elemen udara, avatar\n\nAnak raffi ahmad, rafatar\n\nKue isi selai nanas, nastar\n\nYg suka ngmng ashiaaap, atta ha… https://t.co/WvLyAsvI5q', 'positif'),
(924, 'Namun dia tak mau membeberkan secara detail mengenai permasalahan yang menyebabkan sampai pisah rumah dengan Nagita… https://t.co/Jjqifei9fd', 'netral'),
(925, 'kok menurutku pemainnya film parasite mirip merry-nya raffi ahmad ya<U+0001F914>', 'netral'),
(926, 'Gila seungyeon pengen dapet award artis serba bisa ya kek raffi ahmad', 'positif'),
(927, '<NAME> ke Dokter https://t.co/iCkUUAcFzy', 'negatif'),
(928, 'Sobat dekatnya <NAME>\n\n\n\n@Rigensih \n\n\n\n#jamborestandup \n\n#JamboreStandUp2019 https://t.co/DIQIGbsPXR', 'positif'),
(929, 'streaming lah ainggg penasaran tv isinya raffi ahmad terus', 'netral'),
(930, '<NAME> ke Dokter https://t.co/RHunT28sml', 'negatif'),
(931, 'gila ya gue mengawali hari nonton tv ada raffi ahmad, gue ke rumah sakit nonton tv raffi ahmad, malem malem setel t… https://t.co/PfaxOJkViU', 'positif'),
(932, 'mutuals kalo kenalan sama ak \n\n\n\n: hah buahh ??? \n\n: jadi pengen makan buah\n\n: adiknya raffi ahmad ??? \n\n: rumah spongebob ??? \n\n: rujakk ???', 'positif'),
(933, 'album R<NAME> bertajuk “Kamulah Takdirku” yang terdiri dari 12 lagu. Nagita mengisi 6 lagu.\n\n\n\nSejak itu, Nagita… https://t.co/lhebMS9izX', 'netral'),
(934, 'memancing teguran dari Komisi Penyiaran Indonesia (KPI). Mereka digadang-gadang telah menghabiskan biaya kurang leb… https://t.co/NMHRVdaumh', 'negatif'),
(935, '<NAME>. Kabar pertunangan pun ramai di media. Puncaknya, mereka menikah pada 17 Oktober 2014 dan resepsi digel… https://t.co/ntIi9EF7Vd', 'positif'),
(936, 'RT @radar_malang: Blak-blakan, <NAME> dan Nagita Slavina Pernah Pisah Ranjang Sebulan https://t.co/v3z7TJ4UFg https://t.co/ZAOWqEfeX2', 'negatif'),
(937, 'RT @radar_malang: Blak-blakan, <NAME> dan Nagita Slavina Pernah Pisah Ranjang Sebulan https://t.co/v3z7TJ4UFg https://t.co/ZAOWqEfeX2', 'negatif'),
(938, 'Blak-blakan, <NAME> dan Nagita Slavina Pernah Pisah Ranjang Sebulan https://t.co/v3z7TJ4UFg https://t.co/ZAOWqEfeX2', 'negatif'),
(939, 'Nonton abnon jakarta, MC cowoknya <NAME>, dengerin dia ngomong rasanya pengen nyuguhin air terus. Kasian :(', 'negatif'),
(940, 'Dinpar gokil uga ya ini biaya buat final tahun ini. Live di kompastv, mc nya raffi ahmad. Venue jcc pula. Terakhir… https://t.co/SyUzjQd3kh', 'positif'),
(941, 'Bukan kamu, tapi sebelahnyaa, yg mirip ama asisten raffi ahmad', 'positif'),
(942, 'RAFFI AHMAD Akui Egois, Pernah Tinggalkan Nagita Slavina dan Pisah Rumah Sebulan! Ini Penyebabnya… https://t.co/mVAkucXP67', 'negatif'),
(943, 'RAFFI AHMAD Akui Egois, Pernah Tinggalkan Nagita Slavina dan Pisah Rumah Sebulan! Ini Penyebabnya… https://t.co/np743h5ePC', 'negatif'),
(944, 'Raffi Ahmad yg kerja, aku yg khawatir sama suaranya <U+0001F60C>', 'negatif'),
(945, 'RT @ninjaawarior: @askmenfess nder terus waktu itu acara rafi nagita gede gedean yg di tayangin di tv itu apa? sunatan merry?????? trs menu…', 'negatif'),
(946, 'RT @akuratco: Seharusnya dalam menangani pengguna narkotika, aparat mengedepankan pendekatan pelayanan kesehatan ketimbang pidana. #FokusPr…', 'negatif'),
(947, '-> Blak-blakan, Raffi Ahmad dan Nagita Slavina Pernah Pisah Ranjang Sebulan https://t.co/bva3Mg9BLF', 'negatif'),
(948, '@imanlagi Yang kayak punya raffi ahmad bang harganya 5M https://t.co/cc5JBjmjwg', 'positif'),
(949, '<NAME> Dengar Cerita Raffi Ahmad Soal Gading, Beda Reaksinya saat Disinggung Gisel https://t.co/STVcLLHUyH lewat @Tribun_Jakarta', 'netral'),
(950, 'Buka-bukaan! <NAME>hmad dan Nagita Slavina Pernah Sebulan Pisah Rumah https://t.co/ZpmEctr5wx', 'negatif'),
(951, 'BONGKAR RAHASIA, RAFFI AHMAD PERNAH TINGGALKAN DAN PISAH RUMAH DENGAN NAGITA SLAVINA, INI PENYEBABNYA\n\n\n\n#RaffiAhmad… https://t.co/QFd8ycddm7', 'negatif'),
(952, '@EldianaMarthaR <NAME> kan rumahnya di Tangerang jauh amat mainnya, biasanya tuh <NAME>hmad jogging pake… https://t.co/LkZRlYVegM', 'positif'),
(953, 'Yuk, Nonton PAW Patrol Bareng <NAME>hmad dan Rafathar! https://t.co/Mlu94RTpIn https://t.co/xhRGQwovuh', 'positif'),
(954, 'Presenter sekaligus aktor <NAME> mengaku pernah pisah rumah dengan istrinya, Nagita Slavina.… https://t.co/UHoYWOD9UA', 'negatif'),
(955, 'Blak-blakan, <NAME>hmad dan Nagita Slavina Pernah Pisah Ranjang Sebulan https://t.co/wgv90t5TOs', 'negatif'),
(956, 'Alasan Nagita Slavina Selalu Simpan Rapat-rapat Keburukan Raffi Ahmad https://t.co/msEnTzrzOR lewat @TRIBUNnewsBogor', 'negatif'),
(957, 'Ditanya soal alasannya yang selalu berusaha menjaga martabat Raffi Ahmad, Nagita Slavina alias Gigi memberikan jawa… https://t.co/9rHPkr83qt', 'netral'),
(958, 'Alasan Nagita Slavina Selalu Simpan Rapat-rapat Keburukan Raffi Ahmad https://t.co/7gxLH4Rkhh', 'netral'),
(959, 'Raffi Ahmad Ternyata Pernah Pisah Rumah dengan Nagita Slavina, Selama Ini Loh! https://t.co/caWiREYUZH', 'negatif'),
(960, 'Cekidots yaaq youtube channel nyaa Ade Bakti...edisi ultah ditemenin ama Raffi Ahmad dan Nagita Slavina. Seruuu....… https://t.co/Cvu5V2Ji8l', 'positif'),
(961, '@IAMBALE2 hotman paris, raffi ahmad, gabakalan ngetweet kaya gini', 'positif'),
(962, '@null <NAME>iksa Benjolan Lehernya ke Dokter \n\n https://t.co/KOZsPJUhSG', 'negatif'),
(963, 'RT @kompascom: Air mata Nagita Slavina alias Gigi tak terbendung, ia menangis di hadapan suaminya, Raffi Ahmad. Apa yang terjadi? https://t…', 'negatif'),
(964, 'Air mata Nagita Slavina alias Gigi tak terbendung, ia menangis di hadapan suaminya, Raffi Ahmad. Apa yang terjadi? https://t.co/KIaRo5ju9h', 'negatif'),
(965, 'Raffi Ahmad Sebut soal Mantan Istri, Air Mata Nagita Slavina Tumpah https://t.co/9OQsYxTX1B', 'negatif'),
(966, 'YA NAMANYA RUMAH TANGGA MAH SEPERTI BIDUK MENGARUNGI LAUTAN, NAIK TURUN... https://t.co/EqC4VrJzY2', 'negatif'),
(967, 'Raffi Ahmad Buka-bukaan Masalah Rumah Tangga, Ternyata Pernah Pisah Rumah dengan Nagita Slavina… https://t.co/KApbWVWaVA', 'negatif'),
(968, 'Ada Benjolan di Leher, Raffi Ahmad Tak Ada Waktu untuk Berobat https://t.co/qQnplQA1Zq', 'negatif'),
(969, 'Raffi Ahmad Ingin Berobat ke Luar Negeri, Tapi...\n\nhttps://t.co/noWLsjsPbv', 'negatif'),
(970, '@null Hindari Gadget, Raffi Ahmad Akan Ajak Anak Lihat Teater Musikal \n\n https://t.co/ILSSgxDvdf', 'positif'),
(971, 'RT @wow_keren: Raffi Ahmad dan Nagita Slavina Ternyata Pernah Pisah Rumah Sebulan, Kenapa? https://t.co/mFZCgswvFm https://t.co/qDBZGh9bWJ', 'negatif'),
(972, 'Tak Pernah Diungkap, Raffi Ahmad dan Nagita Slavina Akui Pernah Sebulan Pisah Rumah https://t.co/peZWMnPYmv', 'negatif'),
(973, '4 Tahun Disimpan Rapat, Raffi Ahmad Akhirnya Ungkap Pernah Bertengkar Hebat dengan Nagita Slavina hingga Sebulan Pi… https://t.co/VVi660C8fW', 'negatif'),
(974, 'Ada <NAME>, <NAME> Mulai Khawatir https://t.co/Otop22K2rP', 'negatif'),
(975, 'Presenter <NAME> kembali mengungkapkan hal mengejutkan. Apa yang ia katakan? #Entertainment https://t.co/BchUZQr5we', 'netral'),
(976, 'Gigi pernah mencemburui salah satu mantan Raffi Ahmad. Hal itu diungkapkan ibunda Nagita Slavina, Mama Rieta. https://t.co/jP4xOqbwek', 'negatif'),
(977, 'Buka-bukaan! Raffi Ahmad dan Nagita Slavina Pernah Sebulan Pisah Rumah https://t.co/Zl2ILtw4C9', 'negatif'),
(978, '[Ekslusif Produk RAFFI AHMAD with Barcelona Champions ] Harga CUMA 90Rb || For Order 087888383636 || Pin 330D11E6 https://t.co/vC2iraUZEX', 'positif'),
(979, 'Raffi Ahmad dan Nagita Slavina Ternyata Pernah Pisah Rumah Sebulan, Kenapa? https://t.co/mFZCgswvFm https://t.co/qDBZGh9bWJ', 'negatif'),
(980, 'RT @detikcom: Ada satu pengakuan mengejutkan datang dari Raffi Ahmad. Pengakuan apa itu? https://t.co/eneUpcQarW', 'negatif'),
(981, '@OFCGANGSTER RAFFI AHMAD - kel 5', 'positif'),
(982, '@ererereeeeee kerja dapetnya gaji UMR <U+0001F614><U+0001F923> pengennya sekaya raffi ahmad :(', 'positif'),
(983, '@dianaserein Iya gue kan mau kayak Raffi Ahmad, bisa semua.', 'positif'),
(984, 'RT @monstreza: film indo yang acha-irwansyah trus irwansyah mati reinkarnasi jadi raffi ahmad itu judulnya apa ya', 'positif'),
(985, 'BERTENGKAR HEBAT, RAFFI-NAGITA PERNAH PISAH RUMAH SEBULAN\n\n\n\nPengakuan mengejutkan keluar dari mulut Raffi Ahmad peri… https://t.co/byUzGEzYsv', 'negatif'),
(986, '@minekyuw @dongyundong sejak kapan adeknya raffi ahmad jadi member twice', 'positif'),
(987, 'film indo yang acha-irwansyah trus irwansyah mati reinkarnasi jadi raffi ahmad itu judulnya apa ya', 'positif'),
(988, 'Nonton pengakuanya raffi ahmad ke gigi barusannn.. bikin terharu woy wkakwkak ternyata bener ya, pemikiran ataupun… https://t.co/CwaqZcXp5Y', 'negatif'),
(989, '@minekyuw @minftseo adeknya raffi ahmad?', 'netral'),
(990, 'Amy Qanita sempat kaget mendengar ucapan Raffi Ahmad. #Showbiz', 'netral'),
(991, 'Tangis Nagita Slavina Pecah Dengar Alasan Raffi Ahmad Pertahankan Pernikahan: Ini Beneran Gak Sih? https://t.co/gphVFTormj', 'negatif'),
(992, 'RT @detikcom: Ada satu pengakuan mengejutkan datang dari Raffi Ahmad. Pengakuan apa itu? https://t.co/eneUpcQarW', 'netral'),
(993, 'Benjolan Laring Raffi Ahmad Bisa Parah Jika Asam Lambung Naik, Kok Bisa? https://t.co/AxehpjD1S7 https://t.co/8Wzgwayd59', 'negatif'),
(994, 'RT @detikcom: Ada satu pengakuan mengejutkan datang dari Raffi Ahmad. Pengakuan apa itu? https://t.co/eneUpcQarW', 'negatif'),
(995, 'Ada satu pengakuan mengejutkan datang dari Raffi Ahmad. Pengakuan apa itu? https://t.co/eneUpcQarW', 'negatif'),
(996, 'lemah aku kalo liat raffi ahmad nangis', 'positif'),
(997, 'menonton video curhatan raffi ahmad soal kerjaan dan ada benjolan di lehernya.. orang yang keliatan bahagia, punya… https://t.co/JXMKzCzeEH', 'negatif'),
(998, '@gitaprmita auto berasa se-agensi sama raffi ahmad ga seee<U+0001F60D>', 'positif'),
(999, 'baru tau anaknya raffi ahmad si rafathar sekolah di cikal jg wakakak. duh tp ku udah pindah neyh biar samaan kayak gempita <U+0001F60C><U+0001F923>', 'positif'),
(1000, '<NAME> Masalah Penyakit Benjolan di Leher https://t.co/KDBQPluU6O', 'negatif'),
(1001, '@LittleWolvie I concur... but tbh (and pls dont hate me) I\'ve only been staying with LINE because some of the stick… https://t.co/9gkj3MM2vt', 'netral'),
(1002, 'RT @wow_keren: <NAME> Akui Ingin Berubah Demi Nagita Slavina, Ayu Ting Ting Justru Pamer \'Pacar\' Baru https://t.co/af0EF6CVRX https://…', 'positif'),
(1003, 'Perjuangan <NAME> untuk menyeimbangkan kerja dan keluarga https://t.co/vVmty2IoQF', 'positif'),
(1004, '<NAME> Akui Ingin Berubah Demi Nagita Slavina, Ayu Ting Ting Justru Pamer \'Pacar\' Baru https://t.co/af0EF6CVRX https://t.co/0i15gL3ccz', 'positif'),
(1005, 'RT @detikcom: Ada celetukan dari <NAME> yang bikin ketawa saat <NAME>, <NAME> dan <NAME> berkumpul. https://t.co/g9Ef…', 'positif'),
(1006, 'Pah plis lah !\n\n\n\n<NAME>, bukan <NAME> !\n\nChef Juna, bukan Chef Yuna !', 'positif'),
(1007, 'Kerap Dikaitkan dengan Penyakit <NAME>, <NAME>: Jadi Takut & Kepikiran \n\nhttps://t.co/9J3TPVuo7E', 'negatif'),
(1008, 'Profil <NAME>, Suami <NAME>, Mulai Perusahaan Ayah Bangkrut hingga Deretan Penghargaan… https://t.co/D8tq35LusU', 'positif'),
(1009, 'RT @detikcom: Ada celetukan dari <NAME> yang bikin ketawa saat <NAME>, <NAME> dan <NAME> berkumpul. https://t.co/g9Ef…', 'netral'),
(1010, 'RT @detikcom: Ada celetukan dari <NAME> yang bikin ketawa saat <NAME>, <NAME> dan <NAME> berkumpul. https://t.co/g9Ef…', 'netral'),
(1011, 'RT @detikcom: Ada celetukan dari <NAME> yang bikin ketawa saat <NAME>, <NAME> dan <NAME> berkumpul. https://t.co/g9Ef…', 'netral'),
(1012, 'Dengar Alasan <NAME>, <NAME> https://t.co/c0u909i6lN https://t.co/btBEy8af50', 'negatif'),
(1013, 'RT @detikcom: Ada celetukan dari <NAME> yang bikin ketawa saat <NAME>, <NAME> dan <NAME> berkumpul. https://t.co/g9Ef…', 'netral'),
(1014, 'RT @detikcom: Ada celetukan dari <NAME> yang bikin ketawa saat <NAME>, <NAME> dan <NAME> berkumpul. https://t.co/g9Ef…', 'netral'),
(1015, 'RT @detikcom: Ada celetukan dari <NAME> yang bikin ketawa saat <NAME>, <NAME> dan <NAME> berkumpul. https://t.co/g9Ef…', 'netral'),
(1016, 'RT @latifahwuri: abs nntn raffi ahmad di acara okay bos, dgn secara tdk lgsg doi mengaku dirinya tdk baik & nagita menerima kekurangan dia.…', 'positif'),
(1017, 'RT @detikcom: Ada celetukan dari <NAME> yang bikin ketawa saat <NAME>, <NAME> dan <NAME> berkumpul. https://t.co/g9Ef…', 'netral'),
(1018, 'RT @VIVAlife_: Demi Bisa Main Bareng Anak, <NAME> Pakai Helikopter https://t.co/lxNoHCEwXW', 'positif'),
(1019, 'RT @co_valent: @askmenfess Raffi Ahmad family', 'positif'),
(1020, 'RT @detikcom: Ada celetukan dari <NAME> yang bikin ketawa saat <NAME>, <NAME> dan <NAME> berkumpul. https://t.co/g9Ef…', 'netral'),
(1021, 'RT @detikcom: Ada celetukan dari <NAME> yang bikin ketawa saat <NAME>, <NAME> dan <NAME> berkumpul. https://t.co/g9Ef…', 'netral'),
(1022, 'Miris. <NAME> ada benjolan dileher. Dibilang kurang amal. Yaampun. Kalau udah amal banyak. Tetep ada penyakit.… https://t.co/1Vxyhh7592', 'negatif'),
(1023, 'Demi Bisa Main Bareng Anak, Raffi Ahmad Kerja Pakai Helikopter https://t.co/ewK4GuNIde https://t.co/nkTnfz0hoH', 'positif'),
(1024, 'RT @radar_malang: Raffi Ahmad Sudah Dua Tahun Merasakan Sakit https://t.co/9rmsxkAmTQ https://t.co/vZUCAS3TlZ', 'negatif'),
(1025, 'RT @radar_malang: Raffi Ahmad Sudah Dua Tahun Merasakan Sakit https://t.co/9rmsxkAmTQ https://t.co/vZUCAS3TlZ', 'negatif'),
(1026, '<NAME> Sudah Dua Tahun Merasakan Sakit https://t.co/9rmsxkAmTQ https://t.co/vZUCAS3TlZ', 'negatif'),
(1027, 'RT @detikcom: Ada celetukan dari <NAME> yang bikin ketawa saat <NAME>, <NAME> dan <NAME> berkumpul. https://t.co/g9Ef…', 'netral'),
(1028, 'Ada celetukan dari <NAME> yang bikin ketawa saat <NAME>, <NAME> dan <NAME> berkumpul. https://t.co/g9EfxGyQpk', 'netral'),
(1029, 'Demi Bisa Main Bareng Anak, Raffi Ahmad Kerja Pakai Helikopter https://t.co/opZtPah3J6', 'positif'),
(1030, '@askfess punyaku bisa. tuh masih acaranya raffi ahmad', 'positif'),
(1031, 'Beberkan Tentang Pernyakit yang Dideritanya, <NAME>: Ini Tuh Sebenarnya Udah Bertahun-tahun… https://t.co/7g7n97mkXy', 'negatif'),
(1032, 'Beberkan Tentang Pernyakit yang Dideritanya, Raffi Ahmad: Ini Tuh Sebenarnya Udah Bertahun-tahun https://t.co/cDWVtEe3uN via @Tribun_Jakarta', 'negatif'),
(1033, 'RT @VIVAlife_: Demi Bisa Main Bareng Anak, Raffi Ahmad Kerja Pakai Helikopter https://t.co/lxNoHCEwXW', 'positif'),
(1034, 'Demi Bisa Main Bareng Anak, Raffi Ahmad Kerja Pakai Helikopter https://t.co/lxNoHCEwXW', 'positif'),
(1035, '@null Demi Bisa Main Bareng Anak, Raffi Ahmad Kerja Pakai Helikopter &quot;Sebenarnya https://t.co/5Ttbdp2zHq', 'positif'),
(1036, '@null Demi Bisa Main Bareng Anak, Raffi Ahmad Kerja Pakai Helikopter &quot;Sebenarnya https://t.co/ec38Avf2wo', 'positif'),
(1037, '@null Demi Bisa Main Bareng Anak, Raffi Ahmad Kerja Pakai Helikopter &quot;Sebenarnya https://t.co/KE7OL5uwdg', 'positif'),
(1038, '@null Demi Bisa Main Bareng Anak, Raffi Ahmad Kerja Pakai Helikopter &quot;Sebenarnya https://t.co/DixRDHAPpV', 'positif'),
(1039, '@null Demi Bisa Main Bareng Anak, Raffi Ahmad Kerja Pakai Helikopter &quot;Sebenarnya https://t.co/syr12Az58c', 'positif'),
(1040, '@null Demi Bisa Main Bareng Anak, Raffi Ahmad Kerja Pakai Helikopter &quot;Sebenarnya https://t.co/hrVkhiXkF7', 'positif'),
(1041, '@null Demi Bisa Main Bareng Anak, Raffi Ahmad Kerja Pakai Helikopter &quot;Sebenarnya https://t.co/xpPHjTtmKJ', 'positif'),
(1042, 'VIDEO: Raffi Ahmad Alami Gangguan Pita Suara Selama 2 Tahun https://t.co/Hb97NebAkp https://t.co/ElDs2ToX6N', 'negatif'),
(1043, 'Nagita Menangis Saat Suami Ingin Nikah Lagi, Raffi Ahmad Curhat Sedih Ungkap Penyesalan Terbesarnya https://t.co/VwBOlFHfgT', 'negatif'),
(1044, 'Nagita Slavina Ditanya Tentang Poligami, Raffi Ahmad Bongkar Jawaban Jujur Sang Istri https://t.co/a9plYd5hd7 https://t.co/B7JaN5pzIP', 'negatif'),
(1045, 'Penyakitnya disebut-sebut mirip Olga Syahputra, Raffi Ahmad stress bukan main, Simak video selengkapnya di… https://t.co/fDI2YOZcF0', 'negatif'),
(1046, 'RT @ninjaawarior: @askmenfess nder terus waktu itu acara rafi nagita gede gedean yg di tayangin di tv itu apa? sunatan merry?????? trs menu…', 'negatif'),
(1047, 'Semoga cepat sembuh! https://t.co/BlxErgd23L via @mstaronline', 'positif'),
(1048, '<NAME>, Beruntung Punya Istri Seperti Nagita Slavina, Bisa Bungkus Semua Kejelekannya… https://t.co/pCjtBdpKiQ', 'positif'),
(1049, 'https://t.co/uf21SyFOcs <-download julia perez dengan raffi ahmad #ngentot #porn #xxx', 'negatif'),
(1050, '@scctttxh Way before raffi ahmad got rafathar\n\n\n\nHe was taking care of baby alanis in doo be doo lol https://t.co/lnXSPlH6LJ', 'positif'),
(1051, 'RT @ninjaawarior: @askmenfess nder terus waktu itu acara rafi nagita gede gedean yg di tayangin di tv itu apa? sunatan merry?????? trs menu…', 'negatif'),
(1052, 'Emang bener kalo kita sikat gigi <NAME> ngamuk?', 'netral'),
(1053, '[Ekslusif Produk RAFFI AHMAD with Barcelona Champions ] Harga CUMA 90Rb || For Order 087888383636 || Pin 330D11E6 https://t.co/456pNJJQjV', 'netral'),
(1054, 'w malam malam pusing nontonin ini. pusing mikirin raffi ahmad sama nagita slavina pasti banyak bengad duitnyaa<U+0001F62D><U+0001F62D><U+0001F62D> https://t.co/bKW2YnH6HA', 'positif'),
(1055, '<NAME> ke Dokter THT, Lari ke Toilet, Ini Penyakit yang Diderita Teman Ayu Ting Ting Ini… https://t.co/6qSWMwwLM5', 'negatif'),
(1056, 'Uang rakyat itu dimakan RT @agmasWA @albert_jester @MuthiaA94 Owh apa di balen. Itu Adek nya Raffi Ahmad tante itu.… https://t.co/pXntOs459X', 'negatif'),
(1057, '@albert_jester @MuthiaA94 Owh apa di balen. Itu Adek nya Raffi Ahmad tante itu. Harta nya gak habes2. Duet negara a… https://t.co/KB2VmAMvVN', 'negatif'),
(1058, 'SISI LAIN Raffi Ahmad dan Nagita Slavina Setelah Nikah, Ayah Rafathar Enggan HP Dicek Istri, Ada Apa?… https://t.co/TRFixkUbiE', 'negatif'),
(1059, 'RT @ninjaawarior: @askmenfess nder terus waktu itu acara rafi nagita gede gedean yg di tayangin di tv itu apa? sunatan merry?????? trs menu…', 'negatif'),
(1060, '@tamskick R<NAME>', 'positif'),
(1061, 'Untung ga raffi ahmad https://t.co/u2axPve8rO', 'positif'),
(1062, 'mama aku jam 10 malem gini masih nontonin video video raffi ahmad nagita slavina yg sedih sedih bagaimana ini', 'positif'),
(1063, '@nasikochengg adik raffi ahmad', 'positif'),
(1064, 'RT @ninjaawarior: @askmenfess nder terus waktu itu acara rafi nagita gede gedean yg di tayangin di tv itu apa? sunatan merry?????? trs menu…', 'netral'),
(1065, 'RT @ninjaawarior: @askmenfess nder terus waktu itu acara rafi nagita gede gedean yg di tayangin di tv itu apa? sunatan merry?????? trs menu…', 'netral'),
(1066, 'RT @ninjaawarior: @askmenfess nder terus waktu itu acara rafi nagita gede gedean yg di tayangin di tv itu apa? sunatan merry?????? trs menu…', 'netral'),
(1067, 'Soal Benjolan di <NAME> Ahmad Hingga Membuatnya Serak, Ini Penjelasan Dokter https://t.co/19eUaCBAZi lewat @TRIBUNnewsBogor', 'negatif'),
(1068, 'Netizen Buronan Tim Raffi Ahmad Ternyata Fans Berat Ayu Ting Ting, Nagita Slavina Didoakan Mandul… https://t.co/RLWH4NmEcq', 'negatif'),
(1069, 'RT @akuratco: Seharusnya dalam menangani pengguna narkotika, aparat mengedepankan pendekatan pelayanan kesehatan ketimbang pidana. #FokusPr…', 'positif'),
(1070, '@askmenfess Raffi Ahmad family', 'positif'),
(1071, 'RT @ninjaawarior: @askmenfess nder terus waktu itu acara rafi nagita gede gedean yg di tayangin di tv itu apa? sunatan merry?????? trs menu…', 'netral'),
(1072, 'RT @ninjaawarior: @askmenfess nder terus waktu itu acara rafi nagita gede gedean yg di tayangin di tv itu apa? sunatan merry?????? trs menu…', 'netral'),
(1073, '@afriyanaja90 @IndosiarID Hahaha yup beb dibandingkan ama sohibny <NAME> mending gilang lah kmana2 wkwk <U+0001F602><U+0001F923><U+0001F618><U+0001F609><U+0001F60E>', 'negatif'),
(1074, 'RT @ninjaawarior: @askmenfess nder terus waktu itu acara rafi nagita gede gedean yg di tayangin di tv itu apa? sunatan merry?????? trs menu…', 'netral'),
(1075, 'RT @ninjaawarior: @askmenfess nder terus waktu itu acara rafi nagita gede gedean yg di tayangin di tv itu apa? sunatan merry?????? trs menu…', 'netral'),
(1076, 'RT @ninjaawarior: @askmenfess nder terus waktu itu acara rafi nagita gede gedean yg di tayangin di tv itu apa? sunatan merry?????? trs menu…', 'netral'),
(1077, '@askmenfess raffi ahmad siapa ya', 'netral'),
(1078, 'RT @ninjaawarior: @askmenfess nder terus waktu itu acara rafi nagita gede gedean yg di tayangin di tv itu apa? sunatan merry?????? trs menu…', 'netral'),
(1079, 'RT @ninjaawarior: @askmenfess nder terus waktu itu acara rafi nagita gede gedean yg di tayangin di tv itu apa? sunatan merry?????? trs menu…', 'netral'),
(1080, 'RT @ninjaawarior: @askmenfess nder terus waktu itu acara rafi nagita gede gedean yg di tayangin di tv itu apa? sunatan merry?????? trs menu…', 'netral'),
(1081, 'RT @ninjaawarior: @askmenfess nder terus waktu itu acara rafi nagita gede gedean yg di tayangin di tv itu apa? sunatan merry?????? trs menu…', 'netral'),
(1082, 'RT @ninjaawarior: @askmenfess nder terus waktu itu acara rafi nagita gede gedean yg di tayangin di tv itu apa? sunatan merry?????? trs menu…', 'netral'),
(1083, '@menursoekarno #KAPOLRI Undang undang penggunaan uang milik negara baik kertas atau koin, tangkap artis raffi ahmad… https://t.co/Gh2NShwi8i', 'negatif'),
(1084, 'RT @ninjaawarior: @askmenfess nder terus waktu itu acara rafi nagita gede gedean yg di tayangin di tv itu apa? sunatan merry?????? trs menu…', 'netral'),
(1085, 'RT @ninjaawarior: @askmenfess nder terus waktu itu acara rafi nagita gede gedean yg di tayangin di tv itu apa? sunatan merry?????? trs menu…', 'netral'),
(1086, 'Mumpung malam jumat ingin sekalee rasanya kesurupan raffi ahmad beserta kekayaanya', 'positif'),
(1087, 'RT @ninjaawarior: @askmenfess nder terus waktu itu acara rafi nagita gede gedean yg di tayangin di tv itu apa? sunatan merry?????? trs menu…', 'netral'),
(1088, '\"Benjolan di pita suara. Karena memang over used. Tapi belum dicek lebih detail lagi,\" kata Raffi Ahmad. #vertanews… https://t.co/fBH7hfwacn', 'negatif'),
(1089, 'RT @ninjaawarior: @askmenfess nder terus waktu itu acara rafi nagita gede gedean yg di tayangin di tv itu apa? sunatan merry?????? trs menu…', 'netral'),
(1090, '@SK_GGYoona90 Hai adiknya Raffi Ahmad', 'netral'),
(1091, '@qnafess semir sepatu kiwi, yg kayak di youtube nya raffi ahmad wkwk', 'positif'),
(1092, 'Nanas adike raffi ahmad https://t.co/cMii7XaxDF', 'positif'),
(1093, 'RT @ninjaawarior: @askmenfess nder terus waktu itu acara rafi nagita gede gedean yg di tayangin di tv itu apa? sunatan merry?????? trs menu…', 'netral'),
(1094, 'RT @ninjaawarior: @askmenfess nder terus waktu itu acara rafi nagita gede gedean yg di tayangin di tv itu apa? sunatan merry?????? trs menu…', 'netral'),
(1095, 'RT @ninjaawarior: @askmenfess nder terus waktu itu acara rafi nagita gede gedean yg di tayangin di tv itu apa? sunatan merry?????? trs menu…', 'netral'),
(1096, 'Bukan Nagita Slavina, Bangun Tidur Raffi Ahmad Lebih Pilih Liat Ini, Kenapa Ya https://t.co/ysRc82RjDJ https://t.co/zq4YYKhS0S', 'positif'),
(1097, '@barasyg Pengwn jd pembantu nya raffi ahmad', 'netral'),
(1098, 'RT @ninjaawarior: @askmenfess nder terus waktu itu acara rafi nagita gede gedean yg di tayangin di tv itu apa? sunatan merry?????? trs menu…', 'netral'),
(1099, '<NAME> tengah merasakan sakit di bagian pita suaranya namun ia mengaku belum periksa ke dokter spesial karena… https://t.co/wJUQ01yASQ', 'negatif'),
(1100, 'RT @ninjaawarior: @askmenfess nder terus waktu itu acara rafi nagita gede gedean yg di tayangin di tv itu apa? sunatan merry?????? trs menu…', 'netral'),
(1101, 'RT @ninjaawarior: @askmenfess nder terus waktu itu acara rafi nagita gede gedean yg di tayangin di tv itu apa? sunatan merry?????? trs menu…', 'netral'),
(1102, 'Loh raffi ahmad sm nagita udah nikah? Kapan?', 'netral'),
(1103, 'RT @ninjaawarior: @askmenfess nder terus waktu itu acara rafi nagita gede gedean yg di tayangin di tv itu apa? sunatan merry?????? trs menu…', 'netral'),
(1104, 'RT @ninjaawarior: @askmenfess nder terus waktu itu acara rafi nagita gede gedean yg di tayangin di tv itu apa? sunatan merry?????? trs menu…', 'netral'),
(1105, 'RT @ninjaawarior: @askmenfess nder terus waktu itu acara rafi nagita gede gedean yg di tayangin di tv itu apa? sunatan merry?????? trs menu…', 'netral'),
(1106, 'RT @ninjaawarior: @askmenfess nder terus waktu itu acara rafi nagita gede gedean yg di tayangin di tv itu apa? sunatan merry?????? trs menu…', 'netral'),
(1107, 'RT @ninjaawarior: @askmenfess nder terus waktu itu acara rafi nagita gede gedean yg di tayangin di tv itu apa? sunatan merry?????? trs menu…', 'netral'),
(1108, '@willysyaido @nanaz_14 <NAME> kirain adeknya <NAME> <U+0001F923>', 'netral'),
(1109, 'RT @ninjaawarior: @askmenfess nder terus waktu itu acara rafi nagita gede gedean yg di tayangin di tv itu apa? sunatan merry?????? trs menu…', 'netral'),
(1110, 'Dua Tahun Pita Suara Rusak, Raffi Ahmad akan Berobat ke Luar Negeri https://t.co/cd0zWSKS4G', 'netral'),
(1111, '@askmenfess R<NAME>hmad', 'netral'),
(1112, '@roucmefo @askmenfess Lah serius, di ritz carlton kan. Aku masih ada undangannya dari kayu gitu, kartu pass masukny… https://t.co/eleAteJqyO', 'netral'),
(1113, 'RT @ninjaawarior: @askmenfess nder terus waktu itu acara rafi nagita gede gedean yg di tayangin di tv itu apa? sunatan merry?????? trs menu…', 'netral'),
(1114, 'RT @ninjaawarior: @askmenfess nder terus waktu itu acara rafi nagita gede gedean yg di tayangin di tv itu apa? sunatan merry?????? trs menu…', 'netral'),
(1115, 'https://t.co/tyoUo8W6ka via @popmama_com', 'netral'),
(1116, 'RT @ninjaawarior: @askmenfess nder terus waktu itu acara rafi nagita gede gedean yg di tayangin di tv itu apa? sunatan merry?????? trs menu…', 'netral'),
(1117, 'RT @ninjaawarior: @askmenfess nder terus waktu itu acara rafi nagita gede gedean yg di tayangin di tv itu apa? sunatan merry?????? trs menu…', 'netral'),
(1118, 'RT @ninjaawarior: @askmenfess nder terus waktu itu acara rafi nagita gede gedean yg di tayangin di tv itu apa? sunatan merry?????? trs menu…', 'netral'),
(1119, 'RT @ninjaawarior: @askmenfess nder terus waktu itu acara rafi nagita gede gedean yg di tayangin di tv itu apa? sunatan merry?????? trs menu…', 'netral'),
(1120, 'RT @ninjaawarior: @askmenfess nder terus waktu itu acara rafi nagita gede gedean yg di tayangin di tv itu apa? sunatan merry?????? trs menu…', 'netral'),
(1121, 'RT @ninjaawarior: @askmenfess nder terus waktu itu acara rafi nagita gede gedean yg di tayangin di tv itu apa? sunatan merry?????? trs menu…', 'netral'),
(1122, 'Ditemani Nagita Slavina, Raffi Ahmad Tegang saat Periksa Benjolan ke Dokter: Tambah Kepikiran Nih https://t.co/2a2StjpeKO', 'positif'),
(1123, 'RT @ninjaawarior: @askmenfess nder terus waktu itu acara rafi nagita gede gedean yg di tayangin di tv itu apa? sunatan merry?????? trs menu…', 'netral'),
(1124, '*iseng nanya2 ke ibuk*\n\n\n\nBu, owner net siapa?\n\nSule\n\nBu, owner trans7 siapa?\n\nRaffi ahmad\n\nBu, trans tv siapa?\n\nDeni cagu… https://t.co/9hPVEDT1my', 'positif'),
(1125, 'RT @ninjaawarior: @askmenfess nder terus waktu itu acara rafi nagita gede gedean yg di tayangin di tv itu apa? sunatan merry?????? trs menu…', 'netral'),
(1126, 'RT @ninjaawarior: @askmenfess nder terus waktu itu acara rafi nagita gede gedean yg di tayangin di tv itu apa? sunatan merry?????? trs menu…', 'netral'),
(1127, 'RT @ninjaawarior: @askmenfess nder terus waktu itu acara rafi nagita gede gedean yg di tayangin di tv itu apa? sunatan merry?????? trs menu…', 'netral'),
(1128, 'RT @ninjaawarior: @askmenfess nder terus waktu itu acara rafi nagita gede gedean yg di tayangin di tv itu apa? sunatan merry?????? trs menu…', 'netral'),
(1129, 'RT @ninjaawarior: @askmenfess nder terus waktu itu acara rafi nagita gede gedean yg di tayangin di tv itu apa? sunatan merry?????? trs menu…', 'netral'),
(1130, 'RT @ninjaawarior: @askmenfess nder terus waktu itu acara rafi nagita gede gedean yg di tayangin di tv itu apa? sunatan merry?????? trs menu…', 'netral'),
(1131, 'RT @ninjaawarior: @askmenfess nder terus waktu itu acara rafi nagita gede gedean yg di tayangin di tv itu apa? sunatan merry?????? trs menu…', 'netral'),
(1132, '@BARATSQ raffi ahmad x nagita slavina?', 'positif'),
(1133, 'RT @ninjaawarior: @askmenfess nder terus waktu itu acara rafi nagita gede gedean yg di tayangin di tv itu apa? sunatan merry?????? trs menu…', 'netral'),
(1134, 'RT @ninjaawarior: @askmenfess nder terus waktu itu acara rafi nagita gede gedean yg di tayangin di tv itu apa? sunatan merry?????? trs menu…', 'netral'),
(1135, 'RT @ninjaawarior: @askmenfess nder terus waktu itu acara rafi nagita gede gedean yg di tayangin di tv itu apa? sunatan merry?????? trs menu…', 'netral'),
(1136, 'Meski menganggu, benjolan pada piyta suara Raffi Ahmad belum juga diperiksa. . \n\n#vertanews #vertatv #vertaupdate… https://t.co/dO8R7LpSEl', 'negatif'),
(1137, 'RT @ninjaawarior: @askmenfess nder terus waktu itu acara rafi nagita gede gedean yg di tayangin di tv itu apa? sunatan merry?????? trs menu…', 'netral'),
(1138, 'RT @ninjaawarior: @askmenfess nder terus waktu itu acara rafi nagita gede gedean yg di tayangin di tv itu apa? sunatan merry?????? trs menu…', 'netral'),
(1139, 'Idap Laringitis, Ini 4 Pantangan yang Wajib Dihindari Raffi Ahmad https://t.co/QYFP4bvK4J', 'positif'),
(1140, 'RT @ninjaawarior: @askmenfess nder terus waktu itu acara rafi nagita gede gedean yg di tayangin di tv itu apa? sunatan merry?????? trs menu…', 'netral'),
(1141, 'RT @ninjaawarior: @askmenfess nder terus waktu itu acara rafi nagita gede gedean yg di tayangin di tv itu apa? sunatan merry?????? trs menu…', 'netral'),
(1142, 'RT @ninjaawarior: @askmenfess nder terus waktu itu acara rafi nagita gede gedean yg di tayangin di tv itu apa? sunatan merry?????? trs menu…', 'netral'),
(1143, 'RT @ninjaawarior: @askmenfess nder terus waktu itu acara rafi nagita gede gedean yg di tayangin di tv itu apa? sunatan merry?????? trs menu…', 'netral'),
(1144, 'Soal Benjolan di Leher Raffi Ahmad dan Membuatnya Selalu Serak, Terungkap Penjelasan Dokter https://t.co/SFgc6MM0ux lewat @Tribun_Manado', 'negatif'),
(1145, 'RT @ninjaawarior: @askmenfess nder terus waktu itu acara rafi nagita gede gedean yg di tayangin di tv itu apa? sunatan merry?????? trs menu…', 'netral'),
(1146, 'Netizen buronan tim Raffi Ahmad ternyata fans berat Ayu Ting Ting, Nagita Slavina didoakan mandul hingga viral di media sosial. Siapa?', 'negatif'),
(1147, 'RT @ninjaawarior: @askmenfess nder terus waktu itu acara rafi nagita gede gedean yg di tayangin di tv itu apa? sunatan merry?????? trs menu…', 'netral'),
(1148, 'Netizen Buronan Tim Raffi Ahmad Ternyata Fans Berat Ayu Ting Ting, Nagita Slavina Didoakan Mandul… https://t.co/t1enY40QW8', 'negatif'),
(1149, 'RT @ninjaawarior: @askmenfess nder terus waktu itu acara rafi nagita gede gedean yg di tayangin di tv itu apa? sunatan merry?????? trs menu…', 'netral'),
(1150, 'RT @ninjaawarior: @askmenfess nder terus waktu itu acara rafi nagita gede gedean yg di tayangin di tv itu apa? sunatan merry?????? trs menu…', 'netral'),
(1151, 'RT @ninjaawarior: @askmenfess nder terus waktu itu acara rafi nagita gede gedean yg di tayangin di tv itu apa? sunatan merry?????? trs menu…', 'netral'),
(1152, 'RT @ninjaawarior: @askmenfess nder terus waktu itu acara rafi nagita gede gedean yg di tayangin di tv itu apa? sunatan merry?????? trs menu…', 'netral'),
(1153, 'RT @ninjaawarior: @askmenfess nder terus waktu itu acara rafi nagita gede gedean yg di tayangin di tv itu apa? sunatan merry?????? trs menu…', 'netral'),
(1154, 'RT @ninjaawarior: @askmenfess nder terus waktu itu acara rafi nagita gede gedean yg di tayangin di tv itu apa? sunatan merry?????? trs menu…', 'netral'),
(1155, 'RT @ninjaawarior: @askmenfess nder terus waktu itu acara rafi nagita gede gedean yg di tayangin di tv itu apa? sunatan merry?????? trs menu…', 'netral'),
(1156, '@kylieen_ @b_ayusekar @Ananatasyah3 Enggak tahu, tanya sama <NAME> coba :v', 'netral'),
(1157, 'RT @ninjaawarior: @askmenfess nder terus waktu itu acara rafi nagita gede gedean yg di tayangin di tv itu apa? sunatan merry?????? trs menu…', 'netral'),
(1158, 'RT @ninjaawarior: @askmenfess nder terus waktu itu acara rafi nagita gede gedean yg di tayangin di tv itu apa? sunatan merry?????? trs menu…', 'netral'),
(1159, 'RT @ninjaawarior: @askmenfess nder terus waktu itu acara rafi nagita gede gedean yg di tayangin di tv itu apa? sunatan merry?????? trs menu…', 'netral'),
(1160, '@nasikochengg ada raffi ahmad kakamu yang masi inget ko nas', 'positif'),
(1161, 'Ini Cara Raffi Ahmad dan Nagita Mengasuh Anak https://t.co/6RWhvwDJyt', 'positif'),
(1162, 'RT @ninjaawarior: @askmenfess nder terus waktu itu acara rafi nagita gede gedean yg di tayangin di tv itu apa? sunatan merry?????? trs menu…', 'netral'),
(1163, '[Ekslusif Produk RAFFI AHMAD with Barcelona Champions ] Harga CUMA 90Rb || For Order 087888383636 || Pin 330D11E6 https://t.co/vC2iraUZEX', 'positif'),
(1164, 'RT @ninjaawarior: @askmenfess nder terus waktu itu acara rafi nagita gede gedean yg di tayangin di tv itu apa? sunatan merry?????? trs menu…', 'netral'),
(1165, 'RT @ninjaawarior: @askmenfess nder terus waktu itu acara rafi nagita gede gedean yg di tayangin di tv itu apa? sunatan merry?????? trs menu…', 'netral'),
(1166, 'RT @ninjaawarior: @askmenfess nder terus waktu itu acara rafi nagita gede gedean yg di tayangin di tv itu apa? sunatan merry?????? trs menu…', 'netral'),
(1167, 'RT @ninjaawarior: @askmenfess nder terus waktu itu acara rafi nagita gede gedean yg di tayangin di tv itu apa? sunatan merry?????? trs menu…', 'netral'),
(1168, 'RT @ninjaawarior: @askmenfess nder terus waktu itu acara rafi nagita gede gedean yg di tayangin di tv itu apa? sunatan merry?????? trs menu…', 'netral'),
(1169, 'RT @ninjaawarior: @askmenfess nder terus waktu itu acara rafi nagita gede gedean yg di tayangin di tv itu apa? sunatan merry?????? trs menu…', 'netral'),
(1170, 'RT @ninjaawarior: @askmenfess nder terus waktu itu acara rafi nagita gede gedean yg di tayangin di tv itu apa? sunatan merry?????? trs menu…', 'netral'),
(1171, 'RT @ninjaawarior: @askmenfess nder terus waktu itu acara rafi nagita gede gedean yg di tayangin di tv itu apa? sunatan merry?????? trs menu…', 'netral'),
(1172, 'RT @ninjaawarior: @askmenfess nder terus waktu itu acara rafi nagita gede gedean yg di tayangin di tv itu apa? sunatan merry?????? trs menu…', 'netral'),
(1173, 'RT @ninjaawarior: @askmenfess nder terus waktu itu acara rafi nagita gede gedean yg di tayangin di tv itu apa? sunatan merry?????? trs menu…', 'netral'),
(1174, 'RT @ninjaawarior: @askmenfess nder terus waktu itu acara rafi nagita gede gedean yg di tayangin di tv itu apa? sunatan merry?????? trs menu…', 'netral'),
(1175, 'RT @ninjaawarior: @askmenfess nder terus waktu itu acara rafi nagita gede gedean yg di tayangin di tv itu apa? sunatan merry?????? trs menu…', 'netral'),
(1176, 'RT @ninjaawarior: @askmenfess nder terus waktu itu acara rafi nagita gede gedean yg di tayangin di tv itu apa? sunatan merry?????? trs menu…', 'netral'),
(1177, 'RT @ninjaawarior: @askmenfess nder terus waktu itu acara rafi nagita gede gedean yg di tayangin di tv itu apa? sunatan merry?????? trs menu…', 'netral'),
(1178, 'RT @ninjaawarior: @askmenfess nder terus waktu itu acara rafi nagita gede gedean yg di tayangin di tv itu apa? sunatan merry?????? trs menu…', 'netral'),
(1179, 'RT @ninjaawarior: @askmenfess nder terus waktu itu acara rafi nagita gede gedean yg di tayangin di tv itu apa? sunatan merry?????? trs menu…', 'netral'),
(1180, 'RT @ninjaawarior: @askmenfess nder terus waktu itu acara rafi nagita gede gedean yg di tayangin di tv itu apa? sunatan merry?????? trs menu…', 'netral'),
(1181, 'Dimasukkan Alat Medis Lewat Hidung, Begini Kondisi di Dalam Tenggorokan Raffi Ahmad yang Bengkak https://t.co/G9eiAZpVWn', 'negatif'),
(1182, 'RT @ninjaawarior: @askmenfess nder terus waktu itu acara rafi nagita gede gedean yg di tayangin di tv itu apa? sunatan merry?????? trs menu…', 'netral'),
(1183, 'RT @ninjaawarior: @askmenfess nder terus waktu itu acara rafi nagita gede gedean yg di tayangin di tv itu apa? sunatan merry?????? trs menu…', 'netral'),
(1184, 'RT @ninjaawarior: @askmenfess nder terus waktu itu acara rafi nagita gede gedean yg di tayangin di tv itu apa? sunatan merry?????? trs menu…', 'netral'),
(1185, 'RT @ninjaawarior: @askmenfess nder terus waktu itu acara rafi nagita gede gedean yg di tayangin di tv itu apa? sunatan merry?????? trs menu…', 'netral'),
(1186, 'RT @ninjaawarior: @askmenfess nder terus waktu itu acara rafi nagita gede gedean yg di tayangin di tv itu apa? sunatan merry?????? trs menu…', 'netral'),
(1187, 'RT @ninjaawarior: @askmenfess nder terus waktu itu acara rafi nagita gede gedean yg di tayangin di tv itu apa? sunatan merry?????? trs menu…', 'netral'),
(1188, 'Salmafina, mantan hijabers diisukan pindah agama\n\n\n\nTak tahan sakit, Raffi Ahmad akan jalani operasi pada benjolan di… https://t.co/8rRQ1MAn7r', 'negatif'),
(1189, 'RT @ninjaawarior: @askmenfess nder terus waktu itu acara rafi nagita gede gedean yg di tayangin di tv itu apa? sunatan merry?????? trs menu…', 'netral'),
(1190, 'RT @ninjaawarior: @askmenfess nder terus waktu itu acara rafi nagita gede gedean yg di tayangin di tv itu apa? sunatan merry?????? trs menu…', 'netral'),
(1191, 'RT @ninjaawarior: @askmenfess nder terus waktu itu acara rafi nagita gede gedean yg di tayangin di tv itu apa? sunatan merry?????? trs menu…', 'netral'),
(1192, 'RT @ninjaawarior: @askmenfess nder terus waktu itu acara rafi nagita gede gedean yg di tayangin di tv itu apa? sunatan merry?????? trs menu…', 'netral'),
(1193, 'RT @ninjaawarior: @askmenfess nder terus waktu itu acara rafi nagita gede gedean yg di tayangin di tv itu apa? sunatan merry?????? trs menu…', 'netral'),
(1194, 'RT @ninjaawarior: @askmenfess nder terus waktu itu acara rafi nagita gede gedean yg di tayangin di tv itu apa? sunatan merry?????? trs menu…', 'netral'),
(1195, 'Habis baca berita Rafathar naik kelas ,raffi ahmad hadiahkan mobil mewah ke dia .\n\nIngin rasanya cita2 menjadi rafathar :(', 'positif'),
(1196, 'RT @ninjaawarior: @askmenfess nder terus waktu itu acara rafi nagita gede gedean yg di tayangin di tv itu apa? sunatan merry?????? trs menu…', 'netral'),
(1197, 'Mirip Bapaknya, Rafathar Pilih Temui Cewek daripada Temani <NAME> ke Dokter! https://t.co/XOSeR7MS24', 'positif'),
(1198, 'RT @ninjaawarior: @askmenfess nder terus waktu itu acara rafi nagita gede gedean yg di tayangin di tv itu apa? sunatan merry?????? trs menu…', 'netral'),
(1199, '<NAME>, Rafathar: 1 Cowok, 1 Cewek https://t.co/L1pwzYWKeC', 'positif'),
(1200, 'Sembari nunggu kereta nonton vlog raffi ahmad dulu ah', 'positif'),
(1201, 'RT @ninjaawarior: @askmenfess nder terus waktu itu acara rafi nagita gede gedean yg di tayangin di tv itu apa? sunatan merry?????? trs menu…', 'netral'),
(1202, 'RT @ninjaawarior: @askmenfess nder terus waktu itu acara rafi nagita gede gedean yg di tayangin di tv itu apa? sunatan merry?????? trs menu…', 'netral'),
(1203, '@jasmoone aa raffi ahmad kok ngga php ya', 'netral'),
(1204, '<NAME> Mengaku Tak Kenal saat Ditelepon, Luna Maya Kesal: Gua Tabok Juga Lu! - Tribunnews https://t.co/iWRbAJBEAV', 'positif'),
(1205, '@roesytas_ GUE ULANGI SEKALI LAGI KALO NAMJOON ITU JODOH LUNA MAYA https://t.co/JBLIRVaR2Z', 'positif'),
(1206, 'Naik Sepeda, Luna Maya Pakai Sepatu Seharga Puluhan Juta Rupiah.', 'positif'),
(1207, 'Radio Dalam Pasar Slipi\n\nRawa Buaya Pasar Cipaku\n\nTadi malam aku bermimpi\n\nLuna Maya jadi jodohku', 'positif'),
(1208, 'Luna Maya Senyum Manis Saat Reino Suami Syahrini Ultah, Dulu Curhat Dicampakkan di Pesan Romantis?', 'negatif'),
(1209, '<U+30B8><U+30E3><U+30D1><U+30EA><U+30D1><U+30FC><U+30AF>LUNA<U+9CE5><U+1420>( <U+141B> )<U+141F> https://t.co/1EYGAzFIQk', 'netral'),
(1210, '@_doncorleone78_ lawan nya syahrini ato luna maya om don??', 'netral'),
(1211, '@enamourkm hiii, mba luna maya?', 'positif'),
(1212, '@_rthrbe @zakarianwar Ini namanya luna maya yang prospek yang closing syahrini (ibarat sales)<U+0001F605><U+270C><U+0001F3FB>', 'positif'),
(1213, 'Calon suami <U+0001F495> btw ini dpt kiriman tmn aq, Untung tmn aq dah da suami. Kebayang klo blm , tar nasib q ky luna maya l… https://t.co/ddHvCrOvIN', 'negatif'),
(1214, 'RT @Taopik_19_2nd: Help guys, dia lagi ngomongin filmnya Suzzanna versi luna maya yang kemaren https://t.co/RifzaJRGIy', 'positif'),
(1215, 'Help guys, dia lagi ngomongin filmnya Suzzanna versi luna maya yang kemaren https://t.co/RifzaJRGIy', 'positif'),
(1216, '@7xJAEHYUN Aq luna maya', 'netral'),
(1217, '@LuiVuittonn You’re a great father lui. I’m glad we’re friends again and Maya is too cute!!', 'netral'),
(1218, '@non_tary luna maya makan pepaya\n\nya ya ya ya ya ya', 'netral'),
(1219, 'cinta nia cast : nia ramadhani,marcell darwin,luna maya,laudya cynthia bella,chelsea olivia,kirana larasati,andrew andhika', 'positif'),
(1220, 'Cewek ini mau jadi penerusnya Luna Maya #SuaraCyellia https://t.co/K8OPxo8IMt', 'positif'),
(1221, 'Menurut Dide dia bisa jadi penerus Luna Maya CyelliaaS #SuaraCyellia https://t.co/cC62w6HPW6', 'positif'),
(1222, '@Shuyisu_ ¡Esos dos! Después de la boda y luna de miel de Aki y Maya siguen esos así que prepárate.)???', 'netral'),
(1223, 'RT @LaComadree: Abro el hilo más tóxico que el de <NAME>; la traición de <NAME> a Karla Luna. https://t.co/DOwPp1Ne5T', 'netral'),
(1224, 'RT @LADdigital: <U+0001F4F0> #LocalesInformaciónGeneral Calendario Maya - Año Luna 13: Sol 13 - Energía del Viernes 12/07/2019 - Trecena de la Estrell…', 'netral'),
(1225, 'RT @LADdigital: <U+0001F4F0> #LocalesInformaciónGeneral Calendario Maya - Año Luna 13: Sol 13 - Energía del Viernes 12/07/2019 - Trecena de la Estrell…', 'netral'),
(1226, '<U+0001F4F0> #LocalesInformaciónGeneral Calendario Maya - Año Luna 13: Sol 13 - Energía del Viernes 12/07/2019 - Trecena de la… https://t.co/izBcXvz4YI', 'netral'),
(1227, 'Luna - <NAME> https://t.co/EcWQHUtMMd vía @wordpress<EMAIL>', 'netral'),
(1228, '<U+0001F31D>Nos vamos de fin de semana!! Pero recordar mañana abrimos en horario de 10:30 a 14:00. #marcelproust #DalaiLama… https://t.co/OYFayFTP8w', 'netral'),
(1229, '@DMenfess Luna maya, ariel tatum', 'negatif'),
(1230, '@DMenfess Luna maya, cut tari', 'negatif'),
(1231, 'RT @lui89814920: <U+203C><U+FE0F>Y los puercos como Claudio x, Diego luna, que se auto nombran ambientalistas, y se oponen al tren maya, y al aeropuerto…', 'netral'),
(1232, 'Pulangkan saja aku pada luna maya atau pevita. Uwo uwoo.', 'positif'),
(1233, 'RT @lui89814920: <U+203C><U+FE0F>Y los puercos como Claudio x, Diego luna, que se auto nombran ambientalistas, y se oponen al tren maya, y al aeropuerto…', 'netral'),
(1234, 'Comel jer make up luna @maya_karin time ni <U+0001F606> https://t.co/bY8RQ6wx3Y', 'netral'),
(1235, '<U+203C><U+FE0F>Y los puercos como Claudio x, Diego luna, que se auto nombran ambientalistas, y se oponen al tren maya, y al aero… https://t.co/KB0GDjWg0z', 'netral'),
(1236, 'Cerita Awal Petualangan penerus Luna Maya nih #SuaraCyellia https://t.co/6LbCGeicfO', 'positif'),
(1237, 'RT @Rangga_Moela: with luna maya,rina nose,dhenny chandra and gracia indria the panelis of “Shadow Singer Indonesia” \n\nsegera hanya di @Off…', 'positif'),
(1238, '@navareaval @tubirfess Guru gue bgt nih, pelajaran olahraga di kelas. Mau muter video volly malah video luna maya s… https://t.co/r8YVrSRvMI', 'negatif'),
(1239, '@YoGojekYo Alfamart & Indomart\n\nOppo & Vivo\n\nSpongebob & Skuidwed\n\nSyahrini & Luna Maya', 'negatif'),
(1240, 'RT @NicoFlamelOff: Plus mignonne que Luna Lovegood ça n\'existe pas ! <U+0001F60D> https://t.co/58ccOmXmaU', 'netral'),
(1241, 'sinetron cinta nia cast : nia ramadhani,marcell darwin,luna maya,laudya cynthia bella,chelsea olivia,kirana larasati,andrew andhika', 'positif'),
(1242, 'RT @ReMeldy47: @etaerealkookie ka lun teh siapa ka Heya? luna maya?', 'positif'),
(1243, 'film love cast : luna maya,irwansyah,acha septriasa,laudya cynthia bella,wulan guritno', 'positif'),
(1244, 'RT @Kumaha_Maneh: Adele galau, nyieun lagu kemudian Hits...\n\n\n\nLuna Maya galau, apdet status kemudian Viral...\n\n\n\nSia galau, apdet status kemud…', 'positif'),
(1245, 'So bring an issue about the other news, Real haha\n\n\n\n: haha, I, Luna Maya and about that if I haven\'t matter to wait, but somehow they write', 'positif'),
(1246, '@enajeff Sis bkn luna maya ke zaman dlu2?hahahaha', 'netral'),
(1247, 'Menurut Dide dia bisa jadi penerus Luna Maya CyelliaaS #SuaraCyellia https://t.co/HCpR0CZE4M', 'positif'),
(1248, '@makLambeTurah mampusss si anjing ini emang lemesss mukutnya ngelebihin banci.... dulu jg ngehina hina si luna maya dia', 'positif');
INSERT INTO `data_training` (`id_data_training`, `text`, `flag`) VALUES
(1249, 'RT @MURA_SEA: <U+30E1><U+30ED><U+30B9><U+306F><U+6FC0><U+6012><U+3057><U+305F><U+3002><U+5FC5><U+305A><U+3001><U+304B><U+306E><U+90AA><U+667A><U+66B4><U+8650><U+306E><U+738B><U+3092><U+9664><U+304B><U+306A><U+3051><U+308C><U+3070><U+306A><U+3089><U+306C><U+3068><U+6C7A><U+610F><U+3057><U+305F><U+3002><U+30E1><U+30ED><U+30B9><U+306B><U+306F><U+653F><U+6CBB><U+304C><U+308F><U+304B><U+3089><U+306C><U+3002><U+30E1><U+30ED><U+30B9><U+306F><U+3001><U+6751><U+306E><U+7267><U+4EBA><U+3067><U+3042><U+308B><U+3002><U+7B1B><U+3092><U+5439><U+304D><U+3001><U+7F8A><U+3068><U+904A><U+3093><U+3067><U+66AE><U+3057><U+3066><U+6765><U+305F><U+3002><U+3051><U+308C><U+3069><U+3082>SUGIZO<U+3092><U+7D39><U+4ECB><U+3059><U+308B><U+3068><U+304D><U+306B><U+6240><U+5C5E><U+30D0><U+30F3><U+30C9><U+3068><U+3057><U+3066>LUNA SEA<U+3088><U+308A><U+3082><U+5148><U+306B>X JAPAN<U+3092>…', 'netral'),
(1250, 'Casa de Campo Zen: Calendario Maya: Año de la LUNA y el AUTOLIDERAZGO... https://t.co/U6dR2gASYj', 'netral'),
(1251, 'Beda Gaya Ucapan Syahrini dan Luna Maya di Ulang Tahun Reino Barack', 'positif'),
(1252, '@mAyA_GG_ |<U+FF6E><U+FF9F><U+0434><U+FF9F>)1<U+4F4D><U+306B><U+7570><U+8AD6><U+306F><U+3042><U+308A><U+307E><U+305B><U+3093><U+304C>……10<U+4F4D><U+306B><U+79C1><U+304C><U+30E9><U+30F3><U+30AF><U+30A4><U+30F3><U+3057><U+3066><U+308B><U+306E><U+304C><U+751A><U+3060><U+907A><U+61BE><U+3067><U+3054><U+3056><U+3044><U+307E><U+3059><U+3002><U+65AD><U+56FA><U+6297><U+8B70><U+3059><U+308B>(<U+FF89><U+FF7C> \'<U+03C9>\')<U+FF89><U+FF7C> <U+FF8A><U+FF9E><U+FF9D><U+FF8A><U+FF9E><U+FF9D>', 'netral'),
(1253, 'RT @wow_keren: Lipstik Luna Maya Lebih Murah dari Peyek Cetar, Syahrini Ajak Bos Kosmetik Bikin Produk Saingan? https://t.co/ElxWgUch2Q htt…', 'negatif'),
(1254, 'Lipstik Luna Maya Lebih Murah dari Peyek Cetar, Syahrini Ajak Bos Kosmetik Bikin Produk Saingan?… https://t.co/DiOWjs69W7', 'positif'),
(1255, '@tomhollandtwins @qnafess Luna maya makan paya\n\nHiya hiya hiya', 'netral'),
(1256, 'RT @doyantidur_: @jek___ Akhir percakapan,\n\n\n\n<U+0001F467>: kalo di neraka ada luna maya gimana?\n\n<U+0001F466>: .....', 'negatif'),
(1257, 'Cara Main bagi yang belum paham :\n\n\n\nMisal, yang ikut bermain adalah\n\n- Luna\n\n- Maya\n\n- Rini\n\n- Reno\n\n\n\nAkan saya bagi siap… https://t.co/2egRTcrk4C', 'netral'),
(1258, 'Menurut Dide dia bisa jadi penerus Luna Maya CyelliaaS #SuaraCyellia https://t.co/fVi69gWbcH', 'netral'),
(1259, 'Coba peruntungan bawain lagu Suara, kayak nya dia pengen ngalahin Luna Maya https://t.co/FGLlHWp2em', 'positif'),
(1260, '@OFCGANGSTER RIZKY FEBIAN, YOONA SNSD, LUNA MAYA -KEL1', 'positif'),
(1261, '@OFCGANGSTER RIZKY NAZAR DIMAS ANGGARA IQBAL JEFRI NICHOL LUNA MAYA RAFI AHMAD NAGITA SLAVINA', 'positif'),
(1262, 'Unggah Foto Saat Berada di Tokyo Jepang Netizen Malah Tagih Undangan Pernikahan Luna Maya #Aytinglicious… https://t.co/UMnJwX4263', 'positif'),
(1263, 'Luna maya pacar ku, syahrini istri sah ku\n\n\n\n#RECEHKANTWITTER', 'negatif'),
(1264, 'Syahrini Sibuk Pamer Pose Cantik, Luna Maya Pilih Fokus Kembangkan Karier Hingga ke Mancanegara.', 'positif'),
(1265, '@fifachazali Luna jangan dicari didunia Maya, entar jadi Luna ...', 'netral'),
(1266, 'luna maya diseño', 'netral'),
(1267, '@askmenfess Mndg sama luna maya spy luna maya tdk menghancurkan rumah tanggaku dgn ar em', 'positif'),
(1268, 'Nek sing nyuci luna maya mungkin tombok', 'netral'),
(1269, '@coupssdarl sengcol udah kaya reino barak belum yg bisa naklukin hati luna maya?', 'positif'),
(1270, '@w0nurideul Mending sengcol sama Luna maya', 'netral'),
(1271, 'cinta nia cast : nia ramadhani,marcell darwin,luna maya,laudya cynthia bella,chelsea olivia,kirana larasati,andrew andhika', 'positif'),
(1272, 'Radio Dalam Pasar Slipi\n\nRawa Buaya Pasar Cipaku\n\nTadi malam aku bermimpi\n\nLuna Maya jadi jodohku', 'positif'),
(1273, '@Mayonaisee1 Hahaha bukan aku loh num si githa luna maya cabang kaltim', 'positif'),
(1274, 'Unggah Foto Saat Berada di Tokyo Jepang Netizen Malah Tagih Undangan Pernikahan Luna Maya https://t.co/AVOTh3GMTl', 'positif'),
(1275, 'RT @yunashnin: kembarannya luna maya https://t.co/SKrhSyIQrD', 'positif'),
(1276, 'kembarannya luna maya https://t.co/SKrhSyIQrD', 'positif'),
(1277, '@VIDIOMESUM luna maya', 'negatif'),
(1278, 'RT @jorgesuarezv: No entiende @lopezobrador_ la diferencia entre gastar e invertir. El Tren Maya es un gasto, el NAIM una inversión. Echars…', 'netral'),
(1279, '@veschwab Luna, Maya, and Gokuu believe in you! https://t.co/nkQIwLimO9', 'netral'),
(1280, '<U+0001F4F0> #LocalesInformaciónGeneral Calendario Maya - Año Luna 13: Tormenta 12 - Energía del Jueves 11/07/2019 - Trecena d… https://t.co/6H6XQACG9Z', 'netral'),
(1281, 'luna maya makan pepaya\n\n\n\niya iya iya https://t.co/0JXJaqSzHy', 'netral'),
(1282, 'luna maya makan buah mangga', 'netral'),
(1283, 'Persaingan Syahrini dan Luna Maya Berlanjut di Bisnis Kosmetik? Incess Didukung Ayah Reino Barack… https://t.co/n3S3gXS1WM', 'negatif'),
(1284, 'RT @sehuna_: Luna maya follow akun instagram member exo\n\nPadahal dia bilang bucin RM bts\n\nDapat virus exo dri mana mbak? \n\n#EXO #EXOL https://…', 'negatif'),
(1285, 'sinetron cinta nia cast : nia ramadhani,marcell darwin,luna maya,laudya cynthia bella,chelsea olivia,kirana larasati,andrew andhika', 'positif'),
(1286, 'film love cast : luna maya,irwansyah,acha septriasa,laudya cynthia bella,wulan guritno', 'positif'),
(1287, '@lionixpark @wayvconfess bkn luna maya wkwkw udh udh<U+0001F602><U+0001F602>', 'negatif'),
(1288, '@watermelicn @wayvconfess Enggak? Emg kenapa dengan luna maya?', 'netral'),
(1289, '@watermelicn @wayvconfess Hah apa? Luna maya?', 'netral'),
(1290, '@mantaneraisa Luna maya suka paya\n\nIyaiyaiyaiya', 'netral'),
(1291, 'luna maya, is a rm stan, an intellectual <U+0001F44F><U+0001F44F><U+0001F44F>', 'positif'),
(1292, '@inibunciseokjin Luna Maya ngomel kalau Namjoon knp²,harusnya jngn diksh tau bts terbangnya kapan', 'negatif'),
(1293, 'Hoy ya de vuelta a casa.\n\nAyer día espectacular Chichen Itza, baño en cenote y visita con subida a Coba.\n\nGran Luna d… https://t.co/DVq8A0Jiou', 'netral'),
(1294, 'RT @thesasandika: Dear mb luna maya, \n\nMon maap nih mb, tau kok mbak army, tapi maap bgt mbk, aku g kuat liat mbk klo udah ngomongin bts.…', 'negatif'),
(1295, 'Ka @CittraPLG2 Si cantik luna \n\nWA 082282274447 #bisyarpadang\n\n#bisyarpekanbaru #bispakpadang\n\n#bopadang\n\nsi Luna maya… https://t.co/0eqZ7PCkZU', 'negatif'),
(1296, 'Ka @CittraPLG2 Si cantik luna \n\nWA 082282274447 #bisyarpadang\n\n#bisyarpekanbaru #bispakpadang\n\n#bopadang\n\nsi Luna maya… https://t.co/N59xvfaLi5', 'negatif'),
(1297, 'Ka @CittraPLG2 Si cantik luna \n\nWA 082282274447 #bisyarpadang\n\n#bisyarpekanbaru #bispakpadang\n\n#bopadang\n\nsi Luna maya… https://t.co/RnkSSq5qbx', 'negatif'),
(1298, 'Ka @CittraPLG2 Si cantik luna \n\nWA 082282274447 #bisyarpadang\n\n#bisyarpekanbaru #bispakpadang\n\n#bopadang\n\nsi Luna maya… https://t.co/wqfMsLzewW', 'negatif'),
(1299, 'Ka @CittraPLG2 Si cantik luna \n\nWA 082282274447 \n\nsi Luna maya KW asli mirip banget lgi expo pekan baru cuss di DP re… https://t.co/Pt9YBqjUxg', 'positif'),
(1300, '@nctjaehyoen @fearyth Jadi luna maya coba', 'positif'),
(1301, '@maoloodee @WagimanDeep Lah iya emang luna maya', 'positif'),
(1302, 'Dear mb luna maya, \n\nMon maap nih mb, tau kok mbak army, tapi maap bgt mbk, aku g kuat liat mbk klo udah ngomongi… https://t.co/SqaPhT5AOf', 'negatif'),
(1303, 'ini yang jadi inspirasi filmnya luna maya bukan sih https://t.co/LdsnMVECIe', 'positif'),
(1304, '@agathaalyn mba luna maya aka bulan say hi', 'positif'),
(1305, '@telonoils Aku ariel vs luna maya', 'negatif'),
(1306, 'Luna maya nyaris di usir pas nnton konser ??', 'negatif'),
(1307, '@WagimanDeep Mangnye ntu sape? Luna maya kok kumel seh? <U+0001F607><U+0001F607><U+0001F607><U+0001F607>', 'negatif'),
(1308, '@idolfess eh mba luna maya dong tag disini', 'netral'),
(1309, 'Coba peruntungan bawain lagu Suara, kayak nya dia pengen ngalahin Luna Maya https://t.co/XThPdR6MJ0', 'positif'),
(1310, 'RT @DigiAfricanLang: 5/5 Utambulisho | Introduction\n\nJina lako nani? What\'s your name?\n\nA: Jina langu ni Maya | My name is Maya\n\nUnatokea wapi…', 'netral'),
(1311, '@naurarzk Luna Maya? apa Luna nouraaa', 'netral'),
(1312, '@RPAutoBase sendernya secantik apa emang?? secantik luna maya? zara? pevita?? yeuu cantik gak harus fisik yaa percu… https://t.co/4Wmrn9Bnb1', 'positif'),
(1313, 'RT @Kankyo_Jpn: <U+3010>#SUGIZO<U+8056><U+8A95><U+534A><U+4E16><U+7D00><U+796D> <U+306B><U+3066><U+611F><U+8B1D><U+72B6><U+3092><U+8D08><U+5448><U+3057><U+307E><U+3057><U+305F><U+3011>\n\n7<U+6708>7<U+65E5><U+306B><U+958B><U+50AC><U+3055><U+308C><U+305F><U+300C>SUGIZO <U+8056><U+8A95><U+534A><U+4E16><U+7D00><U+796D> HALF CENTURY ANNIVERSARY FES.<U+300D><U+306B><U+3066><U+3001><U+6C34><U+7D20><U+3092><U+8EAB><U+8FD1><U+306B><U+611F><U+3058><U+3089><U+308C><U+308B><U+793E><U+4F1A><U+306B><U+5411><U+3051><U+3066><U+8CA2><U+732E><U+3057><U+305F><U+3068><U+3057><U+3066><U+3001>SUGIZO<U+6C0F>(LUN…', 'netral'),
(1314, 'Luna maya makan pepaya .\n\nhiya hiya hiya https://t.co/HrrVSWXQeS', 'netral'),
(1315, '@WagimanDeep Ntu luna maya bieb.', 'netral'),
(1316, 'Luna maya', 'netral'),
(1317, 'VoluntarioSinFronteras -Proyectos de Apoyo Humano- MEDELLIN Colombia: Calendario Maya: Año de la LUNA y el AUTOLIDE… https://t.co/mLGtzrSAKM', 'netral'),
(1318, 'Casa de Campo Zen: Calendario Maya: Año de la LUNA y el AUTOLIDERAZGO... https://t.co/JyuSvO4oC1', 'netral'),
(1319, '@myheartismine_ Iyya, Luna Maya.', 'netral'),
(1320, 'Majalaya ka cicaheum eheum luna maya ;((', 'netral'),
(1321, 'Menurut Dide dia bisa jadi penerus Luna Maya CyelliaaS #SuaraCyellia https://t.co/NxmRRbBPxe', 'positif'),
(1322, 'cinta nia cast : nia ramadhani,<NAME>,luna maya,laudya cynthia bella,chelsea olivia,kirana larasati,andrew andhika', 'positif'),
(1323, '@jek___ Akhir percakapan,\n\n\n\n<U+0001F467>: kalo di neraka ada luna maya gimana?\n\n<U+0001F466>: .....', 'negatif'),
(1324, 'Luna Maya Diisukan Dekat dengan Pria Jepang, Faisal Nasimuddin \'Tereliminasi\'? https://t.co/fvp3SQyEf2 https://t.co/s7kxu7YFph', 'positif'),
(1325, 'pengen ngomong luna maya jadi lucinta maya<U+0001F62D>', 'negatif'),
(1326, 'RT @anacampoy: Flipando de saber que la muchacha de la heladería de Stranger Things es la hija de Uma Thurman e Ethan Hawke y se llama Maya…', 'netral'),
(1327, '@BangsatOpini @fiyaann Membuat heboh dunia luna maya', 'negatif'),
(1328, 'Ayu Ting Ting Hengkang dari Pesbukers, Begini Nasib Raffi Ahmad, Luna Maya dan Ruben Onsu di ANTV… https://t.co/beEC6lDBRZ', 'positif'),
(1329, '@pter_tingle Luna maya ih maksudnya. aku ngelawak.', 'netral'),
(1330, '@devirairianti Tak gambari raine luna maya yo segirrr', 'netral'),
(1331, 'RT @Kankyo_Jpn: <U+3010>#SUGIZO<U+8056><U+8A95><U+534A><U+4E16><U+7D00><U+796D> <U+306B><U+3066><U+611F><U+8B1D><U+72B6><U+3092><U+8D08><U+5448><U+3057><U+307E><U+3057><U+305F><U+3011>\n\n7<U+6708>7<U+65E5><U+306B><U+958B><U+50AC><U+3055><U+308C><U+305F><U+300C>SUGIZO <U+8056><U+8A95><U+534A><U+4E16><U+7D00><U+796D> HALF CENTURY ANNIVERSARY FES.<U+300D><U+306B><U+3066><U+3001><U+6C34><U+7D20><U+3092><U+8EAB><U+8FD1><U+306B><U+611F><U+3058><U+3089><U+308C><U+308B><U+793E><U+4F1A><U+306B><U+5411><U+3051><U+3066><U+8CA2><U+732E><U+3057><U+305F><U+3068><U+3057><U+3066><U+3001>SUGIZO<U+6C0F>(LUN…', 'netral'),
(1332, 'RT @sinfulshira: Meet Luna https://t.co/4Tl98xT6EW', 'netral'),
(1333, 'RT @mia_astral: MIÉRCOLES: no hay aspectos, pero seguimos sintiendo la oposición entre el Sol y Saturno - hacernos responsables de nutrir y…', 'netral'),
(1334, 'Radio Dalam Pasar Slipi\n\nRawa Buaya Pasar Cipaku\n\nTadi malam aku bermimpi\n\nLuna Maya jadi jodohku', 'netral'),
(1335, 'Yah Luna Maya terkhianati lagi nggak nih? #LunaMaya #FaisalNasimuddin https://t.co/svT5mtaoOz', 'negatif'),
(1336, 'Jasper\n\nLexa\n\nLincoln\n\nMonty\n\nHarper\n\nWells\n\nJaha\n\nMaya\n\nLuna\n\nRoan\n\nIllian\n\nFinn\n\nMORREM\n\ne mais 1000 personagens\n\n#the 100', 'netral'),
(1337, 'sinetron cinta nia cast : nia ramadhani,marcell darwin,luna maya,laudya cynthia bella,chelsea olivia,kirana larasati,andrew andhika', 'positif'),
(1338, 'film love cast : luna maya,irwansyah,acha septriasa,laudya cynthia bella,wulan guritno', 'positif'),
(1339, '@rvmayahide <U+3164>\n\n\n\n Lucinta Luna Maya.\n\n<U+3164>', 'negatif'),
(1340, '@salendipity Bole, tp kamu langkahin mba luna maya dulu ya?', 'negatif'),
(1341, 'luna maya', 'netral'),
(1342, 'luna maya (@LunaMaya26) menge-Tweet: One on One with @augiefantinus <U+0001F319><U+0001F478><U+0001F607><U+0001F389> wearing @lunahabit <U+0001F456><U+0001F49C> #lunamaya #lmday2day… https://t.co/pzG7DVIiD9', 'netral'),
(1343, 'Noah, Luna Maya apakabar? https://t.co/gOEDcEYjH1', 'positif'),
(1344, '@idolfess luna maya - indomy', 'netral'),
(1345, '@prianggaraafi Luna maya makan pepaya, yayaya', 'netral'),
(1346, '@NiamAdi_AT Ya semacam, \n\ndiajak kondangan kaya luna maya, \n\nDi dapur kaya marinka \n\nDi ranjang mia khalifa', 'negatif'),
(1347, '@husenstones Babeyy kepala bana. Hahaha k esok samvung lh babeii. I nk jump swim dgn Luna Maya', 'netral'),
(1348, '@askmenfess Luna Maya', 'netral'),
(1349, 'RT @adapakdul: Luna maya ditinggal nikah mantannya heboh bener, gua yg udh 3 kali aja selow bg.', 'negatif'),
(1350, '#JujurGuePernah tidurin luna maya tapi yang ngetop malah ariel', 'negatif'),
(1351, '@idolfess <NAME> army cabang U.S\n\nMba luna maya army cabang indonesia\n\nansel kim taehyung entu', 'positif'),
(1352, '@komrdn Biar kata mirip buaya bagiku kau luna maya o ou i love you beibe', 'positif'),
(1353, '@kemal_indra @Candraasmara85 @Cinta_Iam @Imnida03 @JajangRidwan19 @_54TR14_ @AlvinoLulu @AmbarwatiRexy… https://t.co/eiAqoNUfCu', 'netral'),
(1354, '@AER893 Wkwkwk smp mommy ngiri sm luna maya kann', 'positif'),
(1355, '@AER893 sampe iri sm luna maya yg dpt pc yoongi<U+0001F602>', 'positif'),
(1356, '@muhammadsaharaa I think like luna maya & ariel', 'positif'),
(1357, '@who1504 yg luna maya ga mulai mulai njir segera segera mulu', 'positif'),
(1358, '@who1504 Yg luna maya apa yg suzanna azlii?', 'netral'),
(1359, 'cinta nia cast : nia ramadhani,marcell darwin,luna maya,laudya cynthia bella,chelsea olivia,kirana larasati,andrew andhika', 'positif'),
(1360, '5 Potret Kece Luna Maya Saat Liburan di Jepang https://t.co/rBktEPx1WW', 'positif'),
(1361, '@Ricknays Luna maya makan pepaya\n\nIya iya iya', 'netral'),
(1362, '@dHaryanita @pu3armadhanihrp luna maya makan pepaya, iya iya iya', 'netral'),
(1363, 'Menurut Dide dia bisa jadi penerus Luna Maya CyelliaaS #SuaraCyellia https://t.co/HCpR0CZE4M', 'positif'),
(1364, '@xianimoe siapanya luna maya?', 'netral'),
(1365, 'The person (almost dog nurse) that help me taking care of Maya and Luna when I need it, forgot to bring Luna upstai… https://t.co/upIu6t9il9', 'netral'),
(1366, 'Cerita Luna Maya Sedih Dengar Pertanyaan Ibunya Tentang Pernikahan hingga Akhirnya Beri Jawaban - Tribunnews https://t.co/chw5OF2c6v', 'negatif'),
(1367, 'VoluntarioSinFronteras -Proyectos de Apoyo Humano- MEDELLIN Colombia: Calendario Maya: Año de la LUNA y el AUTOLIDE… https://t.co/I2LcUM8Tjb', 'netral'),
(1368, 'Casa de Campo Zen: Calendario Maya: Año de la LUNA y el AUTOLIDERAZGO... https://t.co/oL2ykasOAP', 'netral'),
(1369, '@dejamaisvuz @smartfrencare Jangan to :(\n\nNtar aku nyanyi loh, terguncang dunia maya luna ini :(', 'netral'),
(1370, 'Luna Maya Girang Nyanyi Fals Ditemani Cowok Jepang Tampan, Faisal Masih Gigih Pamer Kode Mesra?… https://t.co/oVB5qdCu4b', 'positif'),
(1371, 'RT @MURA_SEA: LUNA SEA<U+306E>CD<U+304C><U+5BB6><U+306B><U+3042><U+308B><U+3068><U+3001><U+3061><U+3087><U+3063><U+3068><U+5ACC><U+306A><U+3053><U+3068><U+304C><U+3042><U+3063><U+3066><U+3082><U+300C><U+5BB6><U+306B><U+5E30><U+308C><U+3070><U+3001><U+60B2><U+3057><U+307F><U+306E><U+65E5><U+3005><U+3088><U+5B64><U+72EC><U+3088><U+3042><U+3042><U+30B5><U+30E8><U+30CA><U+30E9><U+300D><U+3063><U+3066><U+306A><U+308B><U+3057><U+4ED5><U+4E8B><U+3067><U+3080><U+304B><U+3064><U+304F><U+4EBA><U+306B><U+4F1A><U+3063><U+3066><U+3082><U+300C><U+8CB4><U+65B9><U+306F><U+8AB0><U+4F55><U+3092><U+3057><U+305F><U+3044><U+306E><U+304B><U+751F><U+304D><U+3066><U+3044><U+308B><U+306E><U+304B><U+300D><U+3063><U+3066><U+306A><U+308C><U+308B><U+3002><U+6B7B>·<U+751F>·<U+73FE><U+5B9F>(<U+30DF><U+30E9><U+30A4>·<U+30AB><U+30B3>·<U+30A4><U+30DE>)<U+3092><U+6C42><U+3081><U+3089><U+308C><U+308B><U+73FE><U+4EE3><U+793E>…', 'netral'),
(1372, '@kkimsseola BEDA KAK!!! ITU LUNA MAYA <U+0001F62D><U+0001F62D><U+0001F62D><U+0001F62D>', 'netral'),
(1373, '@indomymenfess Luna maya', 'netral'),
(1374, '@etaerealkookie Kenapa ya aku pgn bgt liat interaksi namjoon sama kak Luna maya wkwk', 'positif'),
(1375, 'Rating Pesbukers ANTV Pasca Ayu Ting Ting Hengkang, Begini Nasib Acara Raffi Ahmad dan Luna Maya Itu… https://t.co/6Dqk8yIUAN', 'positif'),
(1376, 'RT @wow_keren: Luna Maya Karaoke Bareng Cowok Misterius Ditutup Stiker, Kepincut Orang Jepang Pengganti Reino? https://t.co/UQZWvAoSwy http…', 'positif'),
(1377, 'Luna Maya Karaoke Bareng Cowok Misterius Ditutup Stiker, Kepincut Orang Jepang Pengganti Reino?… https://t.co/4knpGz4CDg', 'positif'),
(1378, '@newbielokal @CELLxSION luna maya', 'netral'),
(1379, 'Menurut Dide dia bisa jadi penerus Luna Maya CyelliaaS #SuaraCyellia https://t.co/fVi69gWbcH', 'netral'),
(1380, 'Saling dukung di segala situasi, ini baru namanya sahabat https://t.co/b9MjC7IWSv', 'netral'),
(1381, '@kfrysta luna maya?', 'netral'),
(1382, 'mom: you know what cie, si luna maya ke Osaka lho buat nonton konser bts, terus mama bingung, itu dia ngomong2 \"RM… https://t.co/sQATmIZfjP', 'positif'),
(1383, '@etaerealkookie ka lun teh siapa ka Heya? luna maya?', 'netral'),
(1384, 'RT @hebohdotcom_: <NAME> \'Aladdin\' kini sedang tayang di seluruh bioskop di Indonesia. Via Vallen dan Luna Maya ikut menonton namun sa…', 'positif'),
(1385, 'Kelakuan Luna Maya yang Membuatnya Hampir Diusir Saat Nonton Konser BTS, Beda dengan Indonesia https://t.co/DBfhPXP4Ga lewat @tribunlampung_', 'negatif'),
(1386, 'Lagian lu dari syahrini nyasar ke rose, jauh amat. Yang sama2 lokal kek, luna maya gitu kan enak', 'positif'),
(1387, '@pardedereza Ini mah sama kayak yg dibilang Luna Maya kalo gak salah', 'netral'),
(1388, '@aprilaedp gak simetris aja mirip maudy, apalagilah simetris luna maya minder', 'positif'),
(1389, '@Jihante Luna maya', 'netral'),
(1390, 'Lagi, Pacitan Terima Mahasiswa KKN Tematik dari UNS Surakarta dan Unej Jember\n\n\n\nGusti Ayu Mela Tetangga artis papan… https://t.co/ybYrkjo2Gl', 'netral'),
(1391, '•maya\n\n•kontes\n\n•karamel\n\n•luna/r\n\n•kurabiye\n\n•jessie', 'netral'),
(1392, '@dork10k Mirip mb luna maya ya :)', 'positif'),
(1393, '@akangjahe yon! wkwkw luna nya lagi sama maya/?', 'netral'),
(1394, 'BUAT YG BLM TAU, INI ADEK AK GAIS TUKANG BACOD. BTW, DIA BUNGKUS INDOMIENYA LUNA MAYA, TALI TENGTOPNYA PUTRI MARINO<U+0001F60A> https://t.co/0huF7kGgQ1', 'netral'),
(1395, 'Kelakuan Luna Maya yang Membuatnya Hampir Diusir Saat Nonton Konser BTS, Beda dengan Indonesia #artists… https://t.co/qFSJMVhTMZ', 'negatif'),
(1396, '@SofiaGuillemin Se llevó una vieja de Colombia (?) De pinche luna de miel por toda la riviera maya a todos los luga… https://t.co/Rds5E1lNHd', 'netral'),
(1397, 'Kembali Bikin Ulah Gara-gara Unggah Video Ini, Luna Maya Hampir Diusir Dari Negeri Orang! https://t.co/A2Oq5PDQPk https://t.co/Txx3iZXqoL', 'negatif'),
(1398, 'Binatang Buas Sering Datangi Rumah Orang Tua Luna Maya di Bali, Ini Curhatan Teman Raffi Ahmad… https://t.co/jBlZUCy0ax', 'negatif'),
(1399, 'Luna Maya Nyaris Diusir Saat Hadiri Sebuah Konser di Jepang https://t.co/cP4DQlhaHq https://t.co/v93xDjkRAx', 'negatif'),
(1400, 'RT @jiminsugarbaby: Ketika Luna Maya nton BTS speakyourself tour di jepang dan dia gatau kalo lagu2nya kebanyakannya di nyanyiin pake baha…', 'negatif'),
(1401, '@AreliPaz @JLozanoA Dos bocas, Tren Maya, Santa Lucia, que sigue ¿? Poner un Mexicano en la luna ¿? Irresponsable y NECIO ¡!', 'netral'),
(1402, 'Gayanya berkelas meski hanya di \'emperan\' https://t.co/4uVkG6emMN', 'positif'),
(1403, 'sinetron cinta nia cast : nia ramadhani,marcell darwin,luna maya,laudya cynthia bella,chelsea olivia,kirana larasati,andrew andhika', 'positif'),
(1404, 'film love cast : luna maya,irwansyah,acha septriasa,laudya cynthia bella,wulan guritno', 'positif'),
(1405, 'Luna maya dikenalkan oleh keluarga besar sang pacar di Malaysia, Simak video selengkapnya di… https://t.co/9GQ3vjaZKd', 'positif'),
(1406, 'Bukan Faisal Nasimuddin, Luna Maya Kepergok Masak untuk Aktor Tampan Ini\n\n\n\nhttps://t.co/Jcu6gEnvne', 'positif'),
(1407, 'Radio Dalam Pasar Slipi\n\nRawa Buaya Pasar Cipaku\n\nTadi malam aku bermimpi\n\nLuna Maya jadi jodohku', 'netral'),
(1408, 'Cerita Awal Petualangan penerus Luna Maya nih #SuaraCyellia https://t.co/E1gqmJD6q9', 'positif'),
(1409, '@RegaRachel Iya ini baru bangun reg, tp badan berasa kayak luna maya, huft', 'positif'),
(1410, 'RT @OmarIva71061938: @BobGalindo5 @HectorArellan0T @j_jjcazares @DraXimenaEspin1 @cri_criminal30 @MariaSa04115488 @marian752009 @elpolitico…', 'netral'),
(1411, 'RT @OmarIva71061938: @BobGalindo5 @HectorArellan0T @j_jjcazares @DraXimenaEspin1 @cri_criminal30 @MariaSa04115488 @marian752009 @elpolitico…', 'netral'),
(1412, 'RT @OmarIva71061938: @BobGalindo5 @HectorArellan0T @j_jjcazares @DraXimenaEspin1 @cri_criminal30 @MariaSa04115488 @marian752009 @elpolitico…', 'netral'),
(1413, 'RT @LADdigital: <U+0001F4F0> #LocalesInformaciónGeneral Calendario Maya - Año Luna 13: Tierra 10 - Energía de Martes 09/07/2019 - Trecena de la Estrel…', 'netral'),
(1414, 'RT @LADdigital: <U+0001F4F0> #LocalesInformaciónGeneral Calendario Maya - Año Luna 13: Tierra 10 - Energía de Martes 09/07/2019 - Trecena de la Estrel…', 'netral'),
(1415, '<U+0001F4F0> #LocalesInformaciónGeneral Calendario Maya - Año Luna 13: Tierra 10 - Energía de Martes 09/07/2019 - Trecena de l… https://t.co/ay3yzducyt', 'netral'),
(1416, 'RT @LuisitoComunica: Si un maya se desmaya, ¿sigue siendo maya? XD XD', 'netral'),
(1417, 'DARI LUNA MAYA GUE BELAJAR : https://t.co/XdqP2bYwAl', 'positif'),
(1418, 'Me acabo de enterar de que chipilín en lengua maya significa \"hojas de luna\" y no podía ser más perfecto. <U+0001F929>', 'netral'),
(1419, 'Maya Luna is bringing authentic #Mexican cuisine to #BayBites #FoodTruck Fest this year! \"The love we feel for… https://t.co/bJ0llNl8S4', 'netral'),
(1420, '@WONYOUNGians Kalo dari jauh kayak Luna Maya, dari deket nah Lucinta Luna anying.', 'positif'),
(1421, '@RebecaSiti cantik banget..Luna Maya lewat', 'positif'),
(1422, 'cinta nia cast : nia ramadhani,<NAME>,luna maya,laudya cynthia bella,chelsea olivia,kirana larasati,andrew andhika', 'positif'),
(1423, 'Coret :\n\n\n\nSean\n\nLuna Maya\n\nDean\n\nSalsabila Adriani\n\nRaisa\n\n<NAME>', 'positif'),
(1424, '@pardedereza dibajak luna maya nih', 'positif'),
(1425, 'Mungkinkah Kembali ke Pelukan Luna Maya? <NAME>ah: Sudah Habis Waktunya - Tribunnews https://t.co/AnUTsGU8gr', 'negatif'),
(1426, 'Vou falar o nome dos meus gatos porque eu quero;\n\nSofia\n\nLuna\n\nGaia\n\nJade\n\nMaya\n\nDiana\n\nSalém\n\nDaoMing\n\nYumi\n\nSimon\n\nAninha\n\nMi… https://t.co/VUfqUCJUtV', 'netral'),
(1427, 'RT @Neomexicanismos: Curiosa figurilla de Ixchel, diosa maya de la luna, amor y fecundidad, con un consorte \n\n\n\n<U+261E> https://t.co/F51TCgKeXh htt…', 'netral'),
(1428, 'Ayu Ting Ting Hengkang dari Pesbukers, Eko Patrio dan Luna Maya Kena Getahnya! \n\n#AyuTingTing #Pesbukers… https://t.co/vT4mWZGr0f', 'negatif'),
(1429, '@HuffPost Isla\n\nOlivia\n\nAurora\n\nAda\n\nCharlotte\n\nAmara\n\nMaeve\n\nCora\n\nAmelia\n\nPosie\n\nLuna\n\nOphelia\n\nAva\n\nRose\n\nEleanor\n\nGenevieve\n\nAl… https://t.co/021YEafSRm', 'netral'),
(1430, '@_rlthingy biar kata mirip buaya, bagi ku kau luna maya wo ow', 'positif'),
(1431, '@WeGotLoves @irennerie @dowoonio Luna Maya makan pepaya\n\nMakannya bareng Sintia\n\nGapapa gak dilirik juga ya\n\nYang penting semoga langeng ea', 'netral'),
(1432, 'Wow, Lipstik Luna Maya Ludes Terjual dalam Sehari https://t.co/zmA4T4pLYS #lifestyle', 'positif'),
(1433, 'Coba peruntungan bawain lagu Suara, kayak nya dia pengen ngalahin Luna Maya https://t.co/FGLlHW7rmO', 'negatif'),
(1434, 'Menurut Dide dia bisa jadi penerus Luna Maya CyelliaaS #SuaraCyellia https://t.co/cC62w6ZrkG', 'positif'),
(1435, '@kobisasihya Luna maya bisa ganteng jg yah:(', 'positif'),
(1436, '@askmenfess Luna maya sama ahmad dani', 'negatif'),
(1437, '<NAME>, PANT<NAME> MAYA JUGA NAKSIR, JANGAN BIKIN AKU OLENG JOON <U+0001F62D><U+0001F62D><U+0001F62D> \n\n#MGMAVOTE #BTS… https://t.co/6t3YUTB3mY', 'positif'),
(1438, 'Luna Maya Akui Tak Pernah Merugikan Orang Lain, Netter Malah Singgung Nama Reino Barack https://t.co/zFm1gbMDi0 https://t.co/EO6mYSjV9d', 'positif'),
(1439, 'RT @eyiih: Sukak liat Luna Maya skrg!! She so focused on herself!! Enak ya patah hati keliling duniaa\n\n\n\nPengen lah suatu saat kalo patah ha…', 'positif'),
(1440, '@maya_nemurihime <U+30D3><U+30B8><U+30E5><U+30A2><U+30EB><U+3057><U+304B><U+77E5><U+3089><U+3093><U+3051><U+3069><U+306D><U+3001><U+53EF><U+611B><U+3044><U+308F>…', 'netral'),
(1441, '@OfficialRCTI Rcti.. Doraemon, olga syahputra, Rafi ahmad, Luna maya, masterchef', 'positif'),
(1442, '@demiluene BUKAN! AKU BUKAN LUNA MAYA YANG HOT_LUNA_ARIEL.3gp <U+0001F61E>', 'negatif'),
(1443, 'Sukak liat Luna Maya skrg!! She so focused on herself!! Enak ya patah hati keliling duniaa\n\n\n\nPengen lah suatu saat… https://t.co/uIgtyfeSFH', 'positif'),
(1444, 'Ini boss gue lg deket sama luna maya nii? Dibelikn bt21 pula di japan HAHAHAHAH', 'positif'),
(1445, 'When boss ganteng aku kasih bt21 stuff ke luna maya, tata aku can’t relateeee https://t.co/51uknftCbj', 'positif'),
(1446, 'Wow, Lipstik Luna Maya Ludes Terjual dalam Sehari https://t.co/3wFRjumCeX https://t.co/LTqHAtuJZC', 'positif'),
(1447, '<NAME>engaku Tak Kenal saat Ditelepon, Luna Maya Kesal: Gua Tabok Juga Lu! - Tribunnews https://t.co/cct2XNe7cB', 'negatif'),
(1448, '@leeachaeyoung Aduh. Ini pasti minta dipuji balik? Ava kamu cantik kayak Luna Maya.', 'positif'),
(1449, '@aristinnn @bibilacoklat @RezRama @Wariman_ Yaa kalau aku tau tak video in mbak...pasti versi ariel dan luna maya kalah seru <U+0001F602><U+0001F602>', 'negatif'),
(1450, '@rmseokgi Seandainya aku luna maya<U+0001F614>', 'positif'),
(1451, '@seliseptiyanii Posting aja say, mana tau dia kek mbak luna maya. Baru jd army udh ngikut konser kemana2 <U+0001F605>', 'positif'),
(1452, 'Kecil tapi Glamor, Harga Tas Luna Maya Saat OOTD di Jepang Capai Puluhan Juta Rupiah\n\n\n\nhttps://t.co/u9ePRKC2yq', 'positif'),
(1453, 'RT @Neomexicanismos: Sak U’ Ixik, en Maya \'Señora Luna Blanca\' <U+0001F315>\n\n\n\n<U+21E2> https://t.co/F51TCgKeXh <U+21E0> https://t.co/getme4UtGU', 'netral'),
(1454, '@travas_tokyo @CIVARIZE__maya @civarize_koki <U+30EA><U+30DC><U+30F3><U+53EF><U+611B><U+3044>', 'netral'),
(1455, 'Bukan Faisal Nasimuddin, Luna Maya Kepergok Masak untuk Aktor Tampan Ini https://t.co/Jcu6gEnvne', 'positif'),
(1456, 'VoluntarioSinFronteras -Proyectos de Apoyo Humano- MEDELLIN Colombia: Calendario Maya: Año de la LUNA y el AUTOLIDE… https://t.co/C0C5wLAEyR', 'netral'),
(1457, 'Casa de Campo Zen: Calend<NAME>: Año de la LUNA y el AUTOLIDERAZGO... https://t.co/3cETI0yKIM', 'netral'),
(1458, '@ainunada LUNA MAYA', 'netral'),
(1459, '@mluthfid_ Luna maya ke stasion\n\nCongratulations', 'netral'),
(1460, 'Ini punya nya luna maya ceunah. Punya gue juga kale si daddy <U+0001F61C><U+0001F60D><U+0001F60D> https://t.co/DUVZNcBPM9', 'netral'),
(1461, '@peinakatsuki__ Luna maya atau maya estianti nih??', 'positif'),
(1462, 'RT @Neomexicanismos: Curiosa figurilla de Ixchel, diosa maya de la luna, amor y fecundidad, con un consorte \n\n\n\n<U+261E> https://t.co/F51TCgKeXh htt…', 'netral'),
(1463, 'Kembar 3 sm susana dan luna maya https://t.co/64pvuh1sCo', 'positif'),
(1464, 'Cerita Awal Petualangan penerus Luna Maya nih #SuaraCyellia https://t.co/6LbCGeicfO', 'positif'),
(1465, '@Rendsaputra_ Gue cinta luna (maya)\n\n\n\nOfcourse', 'positif'),
(1466, 'Cerita Awal Petualangan penerus Luna Maya nih #SuaraCyellia https://t.co/UkTQYXdYOa', 'positif'),
(1467, '@canqyol @heroxwn @eunnszeo @LaLpsa @rocseanme @jqelek Luna maya', 'netral'),
(1468, 'Luna Maya merambah dunia bisnis dengan meluncurkan produk lipstick \'Nama Beauty\'. https://t.co/nuzaX1g8NY', 'positif'),
(1469, 'Coba peruntungan bawain lagu Suara, kayak nya dia pengen ngalahin Luna Maya https://t.co/XThPdR6MJ0', 'positif'),
(1470, 'Banjir Pujian ke Luna Maya Tak Rekam Saat Beribadah, Beda Syahrini Istri Reino Barack Pamer Ini', 'positif'),
(1471, 'Eko Patrio Ikut Kena Getahnya Seusai Ayu Ting Ting Hengkang dari Pesbukers, Luna Maya Juga Terbawa #Aytinglicious… https://t.co/1pkNnS9v7G', 'negatif'),
(1472, 'Menurut Dide dia bisa jadi penerus Luna Maya CyelliaaS #SuaraCyellia https://t.co/HCpR0CZE4M', 'positif'),
(1473, 'sinetron cinta nia cast : nia ramadhani,marcell darwin,luna maya,laudya cynthia bella,chelsea olivia,kirana larasati,andrew andhika', 'positif'),
(1474, 'sukses dengan video nya ariel,luna maya dan cut tari akan segera merilis versi game online', 'negatif'),
(1475, '@taknakcilijeruk Lepas dia tuka outfit muka dia cam iras luna maya khennnn<U+0001F60D>', 'positif'),
(1476, 'film love cast : luna maya,irwansyah,acha septriasa,laudya cynthia bella,wulan guritno', 'positif'),
(1477, 'RT @OmarIva71061938: @BobGalindo5 @HectorArellan0T @j_jjcazares @DraXimenaEspin1 @cri_criminal30 @MariaSa04115488 @marian752009 @elpolitico…', 'netral'),
(1478, 'RT @OmarIva71061938: @BobGalindo5 @HectorArellan0T @j_jjcazares @DraXimenaEspin1 @cri_criminal30 @MariaSa04115488 @marian752009 @elpolitico…', 'netral'),
(1479, 'RT @OmarIva71061938: @BobGalindo5 @HectorArellan0T @j_jjcazares @DraXimenaEspin1 @cri_criminal30 @MariaSa04115488 @marian752009 @elpolitico…', 'netral'),
(1480, 'cie jaebeom jacksok di follow luna maya https://t.co/ywIqom99tP', 'netral'),
(1481, 'RT @denanadnan: Tadi cosplay jadi luna maya sambil dengerin Hindia https://t.co/6K7cS9mBID', 'netral'),
(1482, 'Bak Bidadari Turun ke Bumi, 5 Gaya Seksi Luna Maya saat Jalani Pemotretan https://t.co/yVPdVdkd7H', 'positif'),
(1483, 'RT @Neomexicanismos: Curiosa figurilla de Ixchel, diosa maya de la luna, amor y fecundidad, con un consorte \n\n\n\n<U+261E> https://t.co/F51TCgKeXh htt…', 'netral'),
(1484, 'RT @OmarIva71061938: @BobGalindo5 @HectorArellan0T @j_jjcazares @DraXimenaEspin1 @cri_criminal30 @MariaSa04115488 @marian752009 @elpolitico…', 'netral'),
(1485, 'Kok gue liat perrie mirip luna maya ya', 'positif'),
(1486, 'RT @Neomexicanismos: Curiosa figurilla de Ixchel, diosa maya de la luna, amor y fecundidad, con un consorte \n\n\n\n<U+261E> https://t.co/F51TCgKeXh htt…', 'netral'),
(1487, 'Curiosa figurilla de Ixchel, diosa maya de la luna, amor y fecundidad, con un consorte \n\n\n\n<U+261E> https://t.co/F51TCgKeXh https://t.co/kvme2dH6cU', 'netral'),
(1488, '@Basecotan Luna maya <U+0001F62D>', 'netral'),
(1489, '@vicohlmy_ Luna maya makan pepaya\n\nhiya hiya hiya hiya', 'netral'),
(1490, 'Ternyata Bukan Faisal Nasimuddin & Ariel NOAH, Tapi Pria Ini yang Didoakan Berjodoh dengan Luna Maya… https://t.co/a8MPNncuEJ', 'positif'),
(1491, 'Luna maya dikenalkan oleh keluarga besar sang pacar di Malaysia, Simak video selengkapnya di… https://t.co/7O2bs2kh9x', 'positif'),
(1492, 'Cerita Awal Petualangan penerus Luna Maya nih #SuaraCyellia https://t.co/myLQ1fNh4m', 'positif'),
(1493, 'Jadi ARMY, Luna Maya Bagikan Pengalaman Nonton Konser BTS di Jepang : Semua Tu Ganteng Banget… https://t.co/4cVY4r6y45', 'positif'),
(1494, 'RT @OmarIva71061938: @BobGalindo5 @HectorArellan0T @j_jjcazares @DraXimenaEspin1 @cri_criminal30 @MariaSa04115488 @marian752009 @elpolitico…', 'netral'),
(1495, 'Kisah Luna Maya Hampir Diusir saat Nonton Konser BTS di Jepang, Ini yang Dilanggar Mantan Reino https://t.co/PJfC8dqfJP via @wartakotalive', 'negatif'),
(1496, '@18autobase Sd, pas yg videonya ariel sm luna maya itu wkwkwk', 'negatif'),
(1497, 'RT @carlosberlinm: ¡Qué lindo es Peto! Uno de los municipios llenos de historia, fue en su tiempo una comunidad chiclera. #SábiasQue en len…', 'netral'),
(1498, '@Rara_Nordin Kok mbak polisi cantik bangat kayak luna maya gitu', 'positif'),
(1499, 'Radio Dalam Pasar Slipi\n\nRawa Buaya Pasar Cipaku\n\nTadi malam aku bermimpi\n\nLuna Maya jadi jodohku', 'positif'),
(1500, '@Lalalalixe_m Luna maya?', 'netral'),
(1501, 'cinta nia cast : nia ramadhani,<NAME>,luna maya,laudya cynthia bella,chelsea olivia,kirana larasati,<NAME>', 'netral'),
(1502, '@berthamariaD Bertita linda. \n\n\n\nEsta pasando algo con un desalojo de unas familias cerca de luna maya el hogar de lo… https://t.co/5PJLL4iBAt', 'netral'),
(1503, 'Galih ginanjar, Fairuz, Lucinta luna, Boy william, Om Dedy itu sebenernya satu sirkel gengs. \n\n\n\nBikin rame supaya be… https://t.co/uT4cLFjOQB', 'netral'),
(1504, '\'Magicomic Show\' Deddy Corbuzier Siap Tayang Perdana, Format Unik Acara Bikin Netter Antusias… https://t.co/ujCBLj6iXK', 'netral'),
(1505, 'RT @faizaufi: rekap transfer sementara 11/7/19\n\n\n\nin:\n\ndeddy corbuzier\n\nlindswell kwok\n\nroger danuarta\n\ndewi sandra\n\n\n\nout:\n\nlukman sardi\n\nbripda pup…', 'netral'),
(1506, 'bikin nih memenya mcd ada fotonya muhammad corbuzier deddy, ide', 'positif'),
(1507, 'RT @renatriww: @Aghniapunjabi iyaaa. lagi students exchange sm deddy corbuzier', 'positif'),
(1508, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1509, '@matchaisyahz Masih panjang punya om deddy dulu dong hehe @corbuzier', 'positif'),
(1510, 'RT @faizaufi: rekap transfer sementara\n\n\n\nin:\n\ndeddy corbuzier\n\nlindswell kwok\n\nroger danuarta\n\ndewi sandra\n\n\n\nout:\n\nlukman sardi\n\nbripda puput\n\nasmir…', 'netral'),
(1511, '[BOT] TIDAK SEMUA COWOK SEPERTI <NAME>. J<NAME> SAYA BISA BACA PIKIRAN KAMU DISAAT KAMU MANYUN TANPA SUARA.!!', 'negatif'),
(1512, 'RT @faizaufi: rekap transfer sementara 11/7/19\n\n\n\nin:\n\ndeddy corbuzier\n\nlindswell kwok\n\nroger danuarta\n\ndewi sandra\n\n\n\nout:\n\nlukman sardi\n\nbripda pup…', 'netral'),
(1513, 'RT @faizaufi: rekap transfer sementara 11/7/19\n\n\n\nin:\n\ndeddy corbuzier\n\nlindswell kwok\n\nroger danuarta\n\ndewi sandra\n\n\n\nout:\n\nlukman sardi\n\nbripda pup…', 'netral'),
(1514, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\n<NAME> = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1515, 'RT @faizaufi: rekap transfer sementara 11/7/19\n\n\n\nin:\n\ndeddy corbuzier\n\nlindswell kwok\n\nroger danuarta\n\ndewi sandra\n\n\n\nout:\n\nlukman sardi\n\nbripda pup…', 'netral'),
(1516, 'RT @arwidodo: Nasihat yang bagus dari Deddy Corbuzier https://t.co/PlSS4oU0M0', 'positif'),
(1517, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1518, 'RT @Buya_Albahjah: Buya Yahya : Hidayah Deddy Corbuzier Adalah Pilihan, Kasih dan Cinta Allah\n\n\n\nFull Video :\n\nhttps://t.co/R2s7pTuaIn https:/…', 'positif'),
(1519, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1520, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1521, 'RT @devanDR: Kirain kemarin Deddy Corbuzier itu free transfer, ternyata barter sama Salmafina Sunan\n\n\n\nRekap transfer umat\n\n\n\nIn:\n\nDeddy Corbuzi…', 'netral'),
(1522, 'Bursa Transfer musim panas 2018-2019 terkini:\n\nIn:\n\nLindswell kwok\n\nRoger Danuarta\n\nDeddy Corbuzier\n\n\n\nOut:\n\nOvi duo serigala \n\nSalmafina Sunan', 'netral'),
(1523, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1524, 'Deddy corbuzier vz Salmafina|comentar Pro & kontra https://t.co/PZSnRF0Mu8 lewat @YouTube', 'netral'),
(1525, '@svbgyo coba buka youtube nya master deddy corbuzier anda akan menjadi master sobat', 'positif'),
(1526, 'RT @e_lisaputri: @areajulid skip deh, kata om deddy corbuzier itu habbit doesn\'t change. kdg alasan nerima cowo yg kea gt tu klise bat, kt…', 'positif'),
(1527, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1528, '@chittapoan Ded emangnya saya Deddy Corbuzier. Kalo kamu jadi Haechan nanti si Milana naksir.', 'positif'),
(1529, 'RT @faizaufi: rekap transfer sementara\n\n\n\nin:\n\ndeddy corbuzier\n\nlindswell kwok\n\nroger danuarta\n\ndewi sandra\n\n\n\nout:\n\nlukman sardi\n\nbripda puput\n\nasmir…', 'netral'),
(1530, 'RT @faizaufi: rekap transfer sementara 11/7/19\n\n\n\nin:\n\ndeddy corbuzier\n\nlindswell kwok\n\nroger danuarta\n\ndewi sandra\n\n\n\nout:\n\nlukman sardi\n\nbripda pup…', 'netral'),
(1531, 'RT @faizaufi: rekap transfer sementara\n\n\n\nin:\n\ndeddy corbuzier\n\nlindswell kwok\n\nroger danuarta\n\ndewi sandra\n\n\n\nout:\n\nlukman sardi\n\nbripda puput\n\nasmir…', 'netral'),
(1532, '<NAME> masuk Islam = :)\n\n<NAME> dikabarkan murtad = :/\n\n<NAME> berhijab = :))))))\n\nR<NAME> le… https://t.co/goTaJnt7Tv', 'positif'),
(1533, 'RT @faizaufi: rekap transfer sementara 11/7/19\n\n\n\nin:\n\ndeddy corbuzier\n\nlindswell kwok\n\nroger danuarta\n\ndewi sandra\n\n\n\nout:\n\nlukman sardi\n\nbripda pup…', 'netral'),
(1534, 'RT @faizaufi: rekap transfer sementara 11/7/19\n\n\n\nin:\n\ndeddy corbuzier\n\nlindswell kwok\n\nroger danuarta\n\ndewi sandra\n\n\n\nout:\n\nlukman sardi\n\nbripda pup…', 'netral'),
(1535, 'In conclusion regarding deddy corbuzier & salmafina: https://t.co/Vws1IywYbm', 'netral'),
(1536, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1537, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1538, '\"Wait\" you say...\n\n\"doesn\'t this look like OCD???!!\"\n\n\n\nwell YES... surprise surprise!! deddy corbuzier literally cuma… https://t.co/epygMO6Z2r', 'positif'),
(1539, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1540, 'RT @faizaufi: rekap transfer sementara 11/7/19\n\n\n\nin:\n\ndeddy corbuzier\n\nlindswell kwok\n\nroger danuarta\n\ndewi sandra\n\n\n\nout:\n\nlukman sardi\n\nbripda pup…', 'netral'),
(1541, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1542, 'RT @faizaufi: rekap transfer sementara 11/7/19\n\n\n\nin:\n\ndeddy corbuzier\n\nlindswell kwok\n\nroger danuarta\n\ndewi sandra\n\n\n\nout:\n\nlukman sardi\n\nbripda pup…', 'netral'),
(1543, 'RT @faizaufi: rekap transfer sementara 11/7/19\n\n\n\nin:\n\ndeddy corbuzier\n\nlindswell kwok\n\nroger danuarta\n\ndewi sandra\n\n\n\nout:\n\nlukman sardi\n\nbripda pup…', 'netral'),
(1544, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1545, 'RT @faizaufi: rekap transfer sementara 11/7/19\n\n\n\nin:\n\ndeddy corbuzier\n\nlindswell kwok\n\nroger danuarta\n\ndewi sandra\n\n\n\nout:\n\nlukman sardi\n\nbripda pup…', 'netral'),
(1546, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1547, 'Seribu satu nama bisa disematkan ke sosok bocah unyu ini ya heheuww wkwk.\n\n\n\n1. Krilin\n\n2. Kakek kura-kura\n\n3. Majin bo… https://t.co/JxpbntW9S4', 'netral'),
(1548, 'RT @faizaufi: rekap transfer sementara 11/7/19\n\n\n\nin:\n\ndeddy corbuzier\n\nlindswell kwok\n\nroger danuarta\n\ndewi sandra\n\n\n\nout:\n\nlukman sardi\n\nbripda pup…', 'netral'),
(1549, '@knulaaa @askmenfess DDC = Dedenya Deddy Corbuzier..<U+0001F648>', 'netral'),
(1550, 'RT @faizaufi: rekap transfer sementara 11/7/19\n\n\n\nin:\n\ndeddy corbuzier\n\nlindswell kwok\n\nroger danuarta\n\ndewi sandra\n\n\n\nout:\n\nlukman sardi\n\nbripda pup…', 'netral'),
(1551, '*saat deddy corbuzier mualaf*\n\n\n\nAlhamdulillah, neraka berkurang 1 kursi, aga longgar~~~ https://t.co/SG9YxnhfNF', 'negatif'),
(1552, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1553, '[BOT] TIDAK SEMUA COWOK SEPERTI DEDDY CORBUZIER. JADI JANGAN HARAP SAYA BISA BACA PIKIRAN KAMU DISAAT KAMU MANYUN TANPA SUARA.!!', 'negatif'),
(1554, 'RT @Nadsmara: @NabillaRsy @abiealkariem Gak juga kok, ada juga tuh yang hujat Deddy Corbuzier karena mualaf. Semua pasti ada pro dan kontra…', 'positif'),
(1555, 'RT @faizaufi: rekap transfer sementara\n\n\n\nin:\n\ndeddy corbuzier\n\nlindswell kwok\n\nroger danuarta\n\ndewi sandra\n\n\n\nout:\n\nlukman sardi\n\nbripda puput\n\nasmir…', 'netral'),
(1556, 'Netter Sering \'Tagih\' Pernikahan dengan Deddy Corbuzier, Jawaban Sabrina Chairunnisa Auto Dipuji… https://t.co/6I2HZvo6st', 'netral'),
(1557, 'Beli Laptop ROG \"Be Unstoppable\" berhadiah mobil BMW i8, Jaket Under Armour, dan Senyum Ramah Penuh Kehangatan dar… https://t.co/iTFwERBqEN', 'netral'),
(1558, 'RT @faizaufi: rekap transfer sementara 11/7/19\n\n\n\nin:\n\ndeddy corbuzier\n\nlindswell kwok\n\nroger danuarta\n\ndewi sandra\n\n\n\nout:\n\nlukman sardi\n\nbripda pup…', 'netral'),
(1559, 'Deddy corbuzier trending masuk islam bakal diundang hitam putih ga ya?', 'netral'),
(1560, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1561, 'https://t.co/AcFaAUrdfH', 'netral'),
(1562, 'RT @faizaufi: rekap transfer sementara 11/7/19\n\n\n\nin:\n\ndeddy corbuzier\n\nlindswell kwok\n\nroger danuarta\n\ndewi sandra\n\n\n\nout:\n\nlukman sardi\n\nbripda pup…', 'netral'),
(1563, 'RT @explishyt: Dan gue sadar, untuk dapat sesuatu pasti ada yg harus gue korbankan. Ada beberapa teman yg menolak, dan jd julid ngira gue i…', 'positif'),
(1564, 'RT @faizaufi: rekap transfer sementara 11/7/19\n\n\n\nin:\n\ndeddy corbuzier\n\nlindswell kwok\n\nroger danuarta\n\ndewi sandra\n\n\n\nout:\n\nlukman sardi\n\nbripda pup…', 'netral'),
(1565, 'Iya ya pa kabar Al Fatih Yusuf <NAME> udah belum tuh??? Kankakee colek @HitamPutihT7', 'netral'),
(1566, 'RT @faizaufi: rekap transfer sementara 11/7/19\n\n\n\nin:\n\ndeddy corbuzier\n\nlindswell kwok\n\nroger danuarta\n\ndewi sandra\n\n\n\nout:\n\nlukman sardi\n\nbripda pup…', 'netral'),
(1567, '@OFCGANGSTER <NAME> KEL 3', 'netral'),
(1568, 'RT @frhnhshf: bursa transfer umat:\n\ndeddy corbuzier in\n\nsalmafina out', 'netral'),
(1569, 'Bursa transfer muslim:\n\n\n\nIn: deddy corbuzier\n\n\n\nOut: salmafina sunan', 'netral'),
(1570, 'RT @faizaufi: rekap transfer sementara 11/7/19\n\n\n\nin:\n\ndeddy corbuzier\n\nlindswell kwok\n\nroger danuarta\n\ndewi sandra\n\n\n\nout:\n\nlukman sardi\n\nbripda pup…', 'netral'),
(1571, 'Mau deddy corbuzier, salmafina, lindswell kwok, bripda puput atau siapa aja... Ketika seseorang sdh nemuin jalan ke… https://t.co/YxGZTKhw8e', 'positif'),
(1572, 'bursa transfer umat:\n\ndeddy corbuzier in\n\nsalmafina out', 'netral'),
(1573, 'RT @yaudehsi: Bursa transfer sampai dengan 2019\n\n\n\nIn:\n\nDeddy corbuzier\n\nLindswell kwok\n\nVirgoun\n\nRoger danuarta\n\nChristian sugiono\n\nDewi sandra\n\n\n\nO…', 'netral'),
(1574, 'RT @faizaufi: rekap transfer sementara 11/7/19\n\n\n\nin:\n\ndeddy corbuzier\n\nlindswell kwok\n\nroger danuarta\n\ndewi sandra\n\n\n\nout:\n\nlukman sardi\n\nbripda pup…', 'netral'),
(1575, 'RT @fhuqboi: Di group chat Kristen:\n\n\n\n<NAME> left the chat, \n\n\n\n<NAME> entered the chat.', 'netral'),
(1576, 'RT @faizaufi: rekap transfer sementara 11/7/19\n\n\n\nin:\n\ndeddy corbuzier\n\nlindswell kwok\n\nroger danuarta\n\ndewi sandra\n\n\n\nout:\n\nlukman sardi\n\nbripda pup…', 'netral'),
(1577, 'RT @faizaufi: rekap transfer sementara\n\n\n\nin:\n\ndeddy corbuzier\n\nlindswell kwok\n\nroger danuarta\n\ndewi sandra\n\n\n\nout:\n\nlukman sardi\n\nbripda puput\n\nasmir…', 'netral'),
(1578, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\n<NAME> = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1579, 'RT @wow_keren: <NAME> Tuai Pujian Usai Sopan Balas Nyinyiran Rey Utami-<NAME> https://t.co/99pkihtEqL https://t.c…', 'positif'),
(1580, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1581, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1582, 'RT @faizaufi: rekap transfer sementara 11/7/19\n\n\n\nin:\n\ndeddy corbuzier\n\nlindswell kwok\n\nroger danuarta\n\ndewi sandra\n\n\n\nout:\n\nlukman sardi\n\nbripda pup…', 'netral'),
(1583, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1584, '@permadiaktivis Deddy Corbuzier pindah agama, kejang2\n\n\n\nSalmafina pindah agama, dia kejang2 juga\n\n\n\nItu orang atau belut <U+0001F914>', 'netral'),
(1585, 'RT @faizaufi: rekap transfer sementara\n\n\n\nin:\n\ndeddy corbuzier\n\nlindswell kwok\n\nroger danuarta\n\ndewi sandra\n\n\n\nout:\n\nlukman sardi\n\nbripda puput\n\nasmir…', 'netral'),
(1586, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1587, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1588, 'Saksikan Keseruan Magicomic Show Bersama Deddy Corbuzier di Indosiar https://t.co/nb4aogtJRo https://t.co/BDPCjFGmHp', 'netral'),
(1589, 'RT @ndn_real: Wew\n\n https://t.co/astlROEJ64', 'netral'),
(1590, 'RT @WandiLau3: Kita poling deh, bertepatan tanggal 21 Juni (hari ini/Jum\'at).\n\n\n\nKalian suka berita yang mana?\n\n\n\n1. Like ( Ulang tahun Jokowi)…', 'netral'),
(1591, 'salmafinan = out\n\ndeddy corbuzier = in\n\n\n\n1-1', 'netral'),
(1592, 'RT @IvanaWirsa: Apa persamaan Deddy Corbuzier dari katolik jadi muslim? selain botak pergi ke rumah ibadah tetep aja pake kaos polos.', 'netral'),
(1593, 'RT @IvanaWirsa: Apa persamaan <NAME> dari katolik jadi muslim? selain botak pergi ke rumah ibadah tetep aja pake kaos polos.', 'netral'),
(1594, 'RT @IvanaWirsa: Apa persamaan <NAME> dari katolik jadi muslim? selain botak pergi ke rumah ibadah tetep aja pake kaos polos.', 'netral'),
(1595, 'Apa persamaan <NAME> dari katolik jadi muslim? selain botak pergi ke rumah ibadah tetep aja pake kaos polos.', 'negatif'),
(1596, 'RT @faizaufi: rekap transfer sementara 11/7/19\n\n\n\nin:\n\ndeddy corbuzier\n\nlindswell kwok\n\nroger danuarta\n\ndewi sandra\n\n\n\nout:\n\nlukman sardi\n\nbripda pup…', 'netral'),
(1597, 'Pesan buat mas deddy @corbuzier kalo jumaatan pake sendal jelek aja biar ga ilang.', 'positif'),
(1598, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\n<NAME> = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1599, '@101fess nonton lucinta luna sama deddy corbuzier berantem', 'positif'),
(1600, '<NAME> \n\n VS\n\n<NAME>\n\n\n\nIslam (1) X Kristen (1)', 'netral'),
(1601, 'Kalo deddy corbuzier yg pindah agama ... Dipuji2, prestasinya inilah itulah.. Dia bginilah...\n\n\n\nGiliran Salmafina yg… https://t.co/Uoqu5av2HQ', 'positif'),
(1602, 'RT @faizaufi: rekap transfer sementara 11/7/19\n\n\n\nin:\n\ndeddy corbuzier\n\nlindswell kwok\n\nroger danuarta\n\ndewi sandra\n\n\n\nout:\n\nlukman sardi\n\nbripda pup…', 'netral'),
(1603, 'RT @faizaufi: rekap transfer sementara 11/7/19\n\n\n\nin:\n\ndeddy corbuzier\n\nlindswell kwok\n\nroger danuarta\n\ndewi sandra\n\n\n\nout:\n\nlukman sardi\n\nbripda pup…', 'netral'),
(1604, 'Transfer musim panas, <NAME> ditukar dengan Salmafina Sunan.', 'netral'),
(1605, 'RT @faizaufi: rekap transfer sementara 11/7/19\n\n\n\nin:\n\ndeddy corbuzier\n\nlindswell kwok\n\nroger danuarta\n\ndewi sandra\n\n\n\nout:\n\nlukman sardi\n\nbripda pup…', 'netral'),
(1606, '[BOT] TIDAK SEMUA COWOK SEPERTI DEDDY CORBUZIER. JADI JANGAN HARAP SAYA BISA BACA PIKIRAN KAMU DISAAT KAMU MANYUN TANPA SUARA.!!', 'negatif'),
(1607, 'RT @WidasSatyo: <NAME> yg dulu kalian anggap bangsat dan arogan, auto kalian puji2 krna beliau skrg muslim.\n\n\n\nTapi kalo ada yg kelu…', 'negatif'),
(1608, 'RT @devanDR: Kirain kemarin Deddy Corbuzier itu free transfer, ternyata barter sama Salmafina Sunan\n\n\n\nRekap transfer umat\n\n\n\nIn:\n\nDeddy Corbuzi…', 'netral'),
(1609, 'RT @kompasiana: Deddy Corbuzier dan Gesekan Islam Fundamental https://t.co/JmglER3ZXg', 'netral'),
(1610, '@malinseo rl gue deddy corbuzier', 'netral'),
(1611, 'RT @explishyt: Dan gue sadar, untuk dapat sesuatu pasti ada yg harus gue korbankan. Ada beberapa teman yg menolak, dan jd julid ngira gue i…', 'positif'),
(1612, 'RT @WidasSatyo: Deddy Corbuzier yg dulu kalian anggap bangsat dan arogan, auto kalian puji2 krna beliau skrg muslim.\n\n\n\nTapi kalo ada yg kelu…', 'negatif'),
(1613, 'RT @faizaufi: rekap transfer sementara 11/7/19\n\n\n\nin:\n\ndeddy corbuzier\n\nlindswell kwok\n\nroger danuarta\n\ndewi sandra\n\n\n\nout:\n\nlukman sardi\n\nbripda pup…', 'netral'),
(1614, 'RT @WidasSatyo: Deddy Corbuzier yg dulu kalian anggap bangsat dan arogan, auto kalian puji2 krna beliau skrg muslim.\n\n\n\nTapi kalo ada yg kelu…', 'negatif');
INSERT INTO `data_training` (`id_data_training`, `text`, `flag`) VALUES
(1615, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\n<NAME> = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1616, 'RT @faizaufi: rekap transfer sementara\n\n\n\nin:\n\ndeddy corbuzier\n\nlindswell kwok\n\nroger danuarta\n\ndewi sandra\n\n\n\nout:\n\nlukman sardi\n\nbripda puput\n\nasmir…', 'netral'),
(1617, 'RT @faizaufi: rekap transfer sementara 11/7/19\n\n\n\nin:\n\ndeddy corbuzier\n\nlindswell kwok\n\nroger danuarta\n\ndewi sandra\n\n\n\nout:\n\nlukman sardi\n\nbripda pup…', 'netral'),
(1618, 'RT @WidasSatyo: <NAME> yg dulu kalian anggap bangsat dan arogan, auto kalian puji2 krna beliau skrg muslim.\n\n\n\nTapi kalo ada yg kelu…', 'negatif'),
(1619, 'Menunggu deddy corbuzier bikin lagu diss2an karena sudah masuk peryutupan endonesya', 'positif'),
(1620, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\n<NAME> = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1621, 'RT @Nadsmara: @NabillaRsy @abiealkariem Gak juga kok, ada juga tuh yang hujat <NAME> karena mualaf. Semua pasti ada pro dan kontra…', 'positif'),
(1622, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1623, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1624, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1625, 'RT @kompasiana: Ded<NAME>zier dan Gesekan Islam Fundamental https://t.co/JmglER3ZXg', 'netral'),
(1626, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1627, 'RT @kompasiana: <NAME> dan Gesekan Islam Fundamental https://t.co/JmglER3ZXg', 'netral'),
(1628, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1629, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1630, 'Deddy Corbuzier dan Gesekan Islam Fundamental https://t.co/JmglER3ZXg', 'netral'),
(1631, 'RT @WidasSatyo: <NAME>zier yg dulu kalian anggap bangsat dan arogan, auto kalian puji2 krna beliau skrg muslim.\n\n\n\nTapi kalo ada yg kelu…', 'negatif'),
(1632, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1633, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1634, 'RT @Bazzam_: @yoogs7 Bursa transfer masih terbuka, Recent update : \n\nIn : <NAME>, <NAME>, Yoga Adi (?/Rumor)\n\nOut : Salma…', 'netral'),
(1635, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1636, '@yoogs7 Bursa transfer masih terbuka, Recent update : \n\nIn : <NAME>, <NAME>, <NAME> (?/Rumor)\n\nOut : <NAME>', 'netral'),
(1637, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\n<NAME> = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1638, 'RT @devanDR: <NAME> <NAME> itu free transfer, ternyata barter sama <NAME>\n\n\n\nRekap transfer umat\n\n\n\nIn:\n\n<NAME>…', 'netral'),
(1639, 'RT @faizaufi: rekap transfer sementara 11/7/19\n\n\n\nin:\n\ndeddy corbuzier\n\nlindswell kwok\n\nroger danuarta\n\ndewi sandra\n\n\n\nout:\n\nlukman sardi\n\nbripda pup…', 'netral'),
(1640, 'RT @faizaufi: rekap transfer sementara 11/7/19\n\n\n\nin:\n\ndeddy corbuzier\n\nlindswell kwok\n\nroger danuarta\n\ndewi sandra\n\n\n\nout:\n\nlukman sardi\n\nbripda pup…', 'netral'),
(1641, 'RT @faizaufi: rekap transfer sementara 11/7/19\n\n\n\nin:\n\ndeddy corbuzier\n\nlindswell kwok\n\nroger danuarta\n\ndewi sandra\n\n\n\nout:\n\nlukman sardi\n\nbripda pup…', 'netral'),
(1642, 'RT @devanDR: Kirain kemarin <NAME> itu free transfer, ternyata barter sama Salmafina Sunan\n\n\n\nRekap transfer umat\n\n\n\nIn:\n\nDeddy Corbuzi…', 'netral'),
(1643, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1644, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1645, '@agus82cahyono @detikcom Kalau Bang <NAME> ortunya gagal dong ? <U+0001F610>', 'netral'),
(1646, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1647, '@linshanity salahin deddy corbuzier anjir gua cuma ngepost doang', 'negatif'),
(1648, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1649, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1650, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1651, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1652, 'RT @faizaufi: rekap transfer sementara 11/7/19\n\n\n\nin:\n\ndeddy corbuzier\n\nlindswell kwok\n\nroger danuarta\n\ndewi sandra\n\n\n\nout:\n\nlukman sardi\n\nbripda pup…', 'netral'),
(1653, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1654, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1655, 'RT @faizaufi: rekap transfer sementara 11/7/19\n\n\n\nin:\n\ndeddy corbuzier\n\nlindswell kwok\n\nroger danuarta\n\ndewi sandra\n\n\n\nout:\n\nlukman sardi\n\nbripda pup…', 'netral'),
(1656, 'RT @faizaufi: rekap transfer sementara 11/7/19\n\n\n\nin:\n\ndeddy corbuzier\n\nlindswell kwok\n\nroger danuarta\n\ndewi sandra\n\n\n\nout:\n\nlukman sardi\n\nbripda pup…', 'netral'),
(1657, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1658, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1659, 'RT @WidasSatyo: D<NAME> yg dulu kalian anggap bangsat dan arogan, auto kalian puji2 krna beliau skrg muslim.\n\n\n\nTapi kalo ada yg kelu…', 'negatif'),
(1660, 'RT @faizaufi: rekap transfer sementara 11/7/19\n\n\n\nin:\n\ndeddy corbuzier\n\nlindswell kwok\n\nroger danuarta\n\ndewi sandra\n\n\n\nout:\n\nlukman sardi\n\nbripda pup…', 'netral'),
(1661, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1662, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1663, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1664, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1665, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1666, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1667, 'RT @faizaufi: rekap transfer sementara 11/7/19\n\n\n\nin:\n\ndeddy corbuzier\n\nlindswell kwok\n\nroger danuarta\n\ndewi sandra\n\n\n\nout:\n\nlukman sardi\n\nbripda pup…', 'netral'),
(1668, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1669, 'Kabar terbaru:\n\nDed<NAME>zier telah ditrade dengan Salmafina Sunan dan unprotected first round pick2023', 'netral'),
(1670, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1671, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1672, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1673, 'RT @faizaufi: rekap transfer sementara 11/7/19\n\n\n\nin:\n\ndeddy corbuzier\n\nlindswell kwok\n\nroger danuarta\n\ndewi sandra\n\n\n\nout:\n\nlukman sardi\n\nbripda pup…', 'netral'),
(1674, 'RT @faizaufi: rekap transfer sementara 11/7/19\n\n\n\nin:\n\ndeddy corbuzier\n\nlindswell kwok\n\nroger danuarta\n\ndewi sandra\n\n\n\nout:\n\nlukman sardi\n\nbripda pup…', 'netral'),
(1675, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1676, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1677, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1678, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1679, 'RT @faizaufi: rekap transfer sementara\n\n\n\nin:\n\ndeddy corbuzier\n\nlindswell kwok\n\nroger danuarta\n\ndewi sandra\n\n\n\nout:\n\nlukman sardi\n\nbripda puput\n\nasmir…', 'netral'),
(1680, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1681, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1682, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1683, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1684, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1685, 'RT @faizaufi: rekap transfer sementara 11/7/19\n\n\n\nin:\n\ndeddy corbuzier\n\nlindswell kwok\n\nroger danuarta\n\ndewi sandra\n\n\n\nout:\n\nlukman sardi\n\nbripda pup…', 'netral'),
(1686, 'RT @faizaufi: rekap transfer sementara 11/7/19\n\n\n\nin:\n\ndeddy corbuzier\n\nlindswell kwok\n\nroger danuarta\n\ndewi sandra\n\n\n\nout:\n\nlukman sardi\n\nbripda pup…', 'netral'),
(1687, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1688, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1689, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1690, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1691, 'RT @Nadsmara: @NabillaRsy @abiealkariem Gak juga kok, ada juga tuh yang hujat Deddy Corbuzier karena mualaf. Semua pasti ada pro dan kontra…', 'positif'),
(1692, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1693, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1694, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1695, 'I think by watching <NAME> youtube doesn\'t make you literally \"Smart People\"', 'positif'),
(1696, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1697, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1698, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1699, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1700, 'RT @faizaufi: rekap transfer sementara 11/7/19\n\n\n\nin:\n\ndeddy corbuzier\n\nlindswell kwok\n\nroger danuarta\n\ndewi sandra\n\n\n\nout:\n\nlukman sardi\n\nbripda pup…', 'netral'),
(1701, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1702, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1703, '[INFO] Haruka ex JKT48 akan menjadi host di program terbaru Indosiar bersama Master Deddy Corbuzier di Magic Comic… https://t.co/fLqOmbuiLW', 'positif'),
(1704, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1705, 'RT @WidasSatyo: Deddy Corbuzier yg dulu kalian anggap bangsat dan arogan, auto kalian puji2 krna beliau skrg muslim.\n\n\n\nTapi kalo ada yg kelu…', 'negatif'),
(1706, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1707, 'dowoon ur face is like a baby but ur body is like deddy corbuzier', 'positif'),
(1708, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1709, 'RT @ArthurYerikho: @rasjawa Summer Transfer Windows:\n\nDeddy Corbuzier - Out\n\nSalmafina Sunan - In', 'netral'),
(1710, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1711, 'BREAKING NEWS: An agreement has been reached by Islam to trade Salma to Nonis and get Deddy Corbuzier in return, pe… https://t.co/615k92sPTd', 'netral'),
(1712, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1713, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1714, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1715, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1716, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1717, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1718, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1719, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1720, 'RT @faizaufi: rekap transfer sementara 11/7/19\n\n\n\nin:\n\ndeddy corbuzier\n\nlindswell kwok\n\nroger danuarta\n\ndewi sandra\n\n\n\nout:\n\nlukman sardi\n\nbripda pup…', 'netral'),
(1721, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1722, 'RT @faizaufi: rekap transfer sementara 11/7/19\n\n\n\nin:\n\ndeddy corbuzier\n\nlindswell kwok\n\nroger danuarta\n\ndewi sandra\n\n\n\nout:\n\nlukman sardi\n\nbripda pup…', 'netral'),
(1723, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1724, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1725, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1726, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1727, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1728, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1729, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1730, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1731, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1732, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1733, 'RT @faizaufi: rekap transfer sementara 11/7/19\n\n\n\nin:\n\ndeddy corbuzier\n\nlindswell kwok\n\nroger danuarta\n\ndewi sandra\n\n\n\nout:\n\nlukman sardi\n\nbripda pup…', 'netral'),
(1734, '@NUgarislucu Gus, ada yang berpindah lagi. Kapan serah terima ke @KatolikG atau @ProtestanGL (mention dua-duanya ka… https://t.co/Hwww8lm0qX', 'netral'),
(1735, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1736, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1737, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1738, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1739, 'RT @faizaufi: rekap transfer sementara 11/7/19\n\n\n\nin:\n\ndeddy corbuzier\n\nlindswell kwok\n\nroger danuarta\n\ndewi sandra\n\n\n\nout:\n\nlukman sardi\n\nbripda pup…', 'netral'),
(1740, 'RT @faizaufi: rekap transfer sementara 11/7/19\n\n\n\nin:\n\ndeddy corbuzier\n\nlindswell kwok\n\nroger danuarta\n\ndewi sandra\n\n\n\nout:\n\nlukman sardi\n\nbripda pup…', 'netral'),
(1741, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1742, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1743, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1744, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1745, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1746, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1747, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1748, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1749, 'RT @faizaufi: rekap transfer sementara 11/7/19\n\n\n\nin:\n\ndeddy corbuzier\n\nlindswell kwok\n\nroger danuarta\n\ndewi sandra\n\n\n\nout:\n\nlukman sardi\n\nbripda pup…', 'netral'),
(1750, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1751, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1752, 'skor sementara:\n\ndeddy corbuzier <in\n\nsalmafina sunan >out', 'netral'),
(1753, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1754, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1755, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1756, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1757, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1758, 'RT @faizaufi: rekap transfer sementara 11/7/19\n\n\n\nin:\n\ndeddy corbuzier\n\nlindswell kwok\n\nroger danuarta\n\ndewi sandra\n\n\n\nout:\n\nlukman sardi\n\nbripda pup…', 'netral'),
(1759, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1760, 'Deddy corbuzier dr kristen ke Islam\n\nSalmafina dr Islam ke Kristen\n\nAdil kan? \n\n@NUgarislucu @KatolikG', 'netral'),
(1761, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1762, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1763, 'RT @faizaufi: rekap transfer sementara 11/7/19\n\n\n\nin:\n\ndeddy corbuzier\n\nlindswell kwok\n\nroger danuarta\n\ndewi sandra\n\n\n\nout:\n\nlukman sardi\n\nbripda pup…', 'netral'),
(1764, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1765, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1766, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1767, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1768, 'RT @devanDR: Kirain kemarin <NAME> itu free transfer, ternyata barter sama Salmafina Sunan\n\n\n\nRekap transfer umat\n\n\n\nIn:\n\n<NAME>…', 'netral'),
(1769, '<NAME> mualaf pada senang. Giliran Salmafina masuk Kristen malah dihujat. Bener bener ye lu semua. Hak ora… https://t.co/2TtPYLaH65', 'positif'),
(1770, 'RT @faizaufi: rekap transfer sementara 11/7/19\n\n\n\nin:\n\ndeddy corbuzier\n\nlindswell kwok\n\nroger danuarta\n\ndewi sandra\n\n\n\nout:\n\nlukman sardi\n\nbripda pup…', 'netral'),
(1771, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1772, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1773, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1774, '@dupandut @ivandn Fans emyu udah gede nontonnya deddy corbuzier', 'positif'),
(1775, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1776, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1777, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1778, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1779, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1780, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1781, 'RT @faizaufi: rekap transfer sementara 11/7/19\n\n\n\nin:\n\ndeddy corbuzier\n\nlindswell kwok\n\nroger danuarta\n\ndewi sandra\n\n\n\nout:\n\nlukman sardi\n\nbripda pup…', 'netral'),
(1782, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1783, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1784, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1785, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1786, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1787, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1788, '@mommy_elzar diet deddy Corbuzier waktu liat instagram', 'negatif'),
(1789, 'RT @faizaufi: rekap transfer sementara 11/7/19\n\n\n\nin:\n\ndeddy corbuzier\n\nlindswell kwok\n\nroger danuarta\n\ndewi sandra\n\n\n\nout:\n\nlukman sardi\n\nbripda pup…', 'netral'),
(1790, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1791, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1792, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1793, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1794, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1795, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1796, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1797, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1798, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1799, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1800, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1801, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1802, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1803, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1804, 'RT @polkawars: #PolkaSocca transfer musim panas.\n\nDeddy Corbuzier = in. \n\nStatus: free transfer.\n\nSalmafina Sunan = out. \n\nStatus: loan. https:…', 'netral'),
(1805, 'RT @elisa_jkt: Daripada berkata kasar, yuk kita demo yuk Pak @Jokowi. Hari Kamis ini jam 4 sore depan Istana Negara, gimana?', 'negatif'),
(1806, 'RT @hincapandjaitan: Konflik Agraria di Indonesia:Periode Pertama SBY2005: 5 kasus2006: 45 kasus2007: 31 kasus2008: 24 kasus2009: 89…', 'positif');
-- --------------------------------------------------------
--
-- Table structure for table `kata`
--
CREATE TABLE `kata` (
`kata` varchar(255) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
--
-- Dumping data for table `kata`
--
INSERT INTO `kata` (`kata`) VALUES
('wkwkwk'),
('syahrini'),
('oppo'),
('sekali'),
('ga'),
('reno'),
('oppo'),
('ada'),
('sekarang'),
('ya'),
('aneh2'),
('oppo'),
('wkwkwk'),
('syahrini'),
('oppo'),
('sekali'),
('ga'),
('reno'),
('oppo'),
('ada'),
('sekarang'),
('ya'),
('aneh2'),
('oppo'),
('dearmyyoongii'),
('rt'),
('gembel'),
('syahrini'),
('haha'),
('vi'),
('syahrini'),
('suami'),
('malah'),
('kira'),
('gue'),
('pockyjww'),
('eviioktaa'),
('wkwkwk'),
('syahrini'),
('oppo'),
('sekali'),
('ga'),
('reno'),
('oppo'),
('ada'),
('sekarang'),
('ya'),
('aneh2'),
('oppo'),
('wkwkwk'),
('syahrini'),
('oppo'),
('sekali'),
('ga'),
('reno'),
('oppo'),
('ada'),
('sekarang'),
('ya'),
('aneh2'),
('oppo'),
('dearmyyoongii'),
('rt'),
('gembel'),
('syahrini'),
('haha'),
('vi'),
('syahrini'),
('suami'),
('malah'),
('kira'),
('gue'),
('pockyjww'),
('eviioktaa'),
('haha'),
('vi'),
('syahrini'),
('suami'),
('malah'),
('kira'),
('gue'),
('pockyjww'),
('eviioktaa'),
('haha'),
('vi'),
('syahrini'),
('suami'),
('malah'),
('kira'),
('gue'),
('pockyjww'),
('eviioktaa'),
('haha'),
('vi'),
('syahrini'),
('suami'),
('malah'),
('kira'),
('gue'),
('pockyjww'),
('eviioktaa'),
('wkwkwk'),
('syahrini'),
('oppo'),
('sekali'),
('ga'),
('reno'),
('oppo'),
('ada'),
('sekarang'),
('ya'),
('aneh2'),
('oppo'),
('wkwkwk'),
('syahrini'),
('oppo'),
('sekali'),
('ga'),
('reno'),
('oppo'),
('ada'),
('sekarang'),
('ya'),
('aneh2'),
('oppo'),
('dearmyyoongii'),
('rt'),
('gembel'),
('syahrini'),
('haha'),
('vi'),
('syahrini'),
('suami'),
('malah'),
('kira'),
('gue'),
('pockyjww'),
('eviioktaa'),
('haha'),
('vi'),
('syahrini'),
('suami'),
('malah'),
('kira'),
('gue'),
('pockyjww'),
('eviioktaa'),
('haha'),
('vi'),
('syahrini'),
('suami'),
('malah'),
('kira'),
('gue'),
('pockyjww'),
('eviioktaa'),
('haha'),
('vi'),
('syahrini'),
('suami'),
('malah'),
('kira'),
('gue'),
('pockyjww'),
('eviioktaa'),
('haha'),
('vi'),
('syahrini'),
('suami'),
('malah'),
('kira'),
('gue'),
('pockyjww'),
('eviioktaa'),
('wkwkwk'),
('syahrini'),
('oppo'),
('sekali'),
('ga'),
('reno'),
('oppo'),
('ada'),
('sekarang'),
('ya'),
('aneh2'),
('oppo'),
('wkwkwk'),
('syahrini'),
('oppo'),
('sekali'),
('ga'),
('reno'),
('oppo'),
('ada'),
('sekarang'),
('ya'),
('aneh2'),
('oppo'),
('dearmyyoongii'),
('rt'),
('gembel'),
('syahrini'),
('haha'),
('vi'),
('syahrini'),
('suami'),
('malah'),
('kira'),
('gue'),
('pockyjww'),
('eviioktaa'),
('wkwkwk'),
('syahrini'),
('oppo'),
('sekali'),
('ga'),
('reno'),
('oppo'),
('ada'),
('sekarang'),
('ya'),
('aneh2'),
('oppo'),
('wkwkwk'),
('syahrini'),
('oppo'),
('sekali'),
('ga'),
('reno'),
('oppo'),
('ada'),
('sekarang'),
('ya'),
('aneh2'),
('oppo'),
('dearmyyoongii'),
('rt'),
('gembel'),
('syahrini'),
('haha'),
('vi'),
('syahrini'),
('suami'),
('malah'),
('kira'),
('gue'),
('pockyjww'),
('eviioktaa'),
('wkwkwk'),
('syahrini'),
('oppo'),
('sekali'),
('ga'),
('reno'),
('oppo'),
('ada'),
('sekarang'),
('ya'),
('aneh2'),
('oppo'),
('wkwkwk'),
('syahrini'),
('oppo'),
('sekali'),
('ga'),
('reno'),
('oppo'),
('ada'),
('sekarang'),
('ya'),
('aneh2'),
('oppo'),
('dearmyyoongii'),
('rt'),
('gembel'),
('syahrini'),
('haha'),
('vi'),
('syahrini'),
('suami'),
('malah'),
('kira'),
('gue'),
('pockyjww'),
('eviioktaa'),
('wkwkwk'),
('syahrini'),
('oppo'),
('sekali'),
('ga'),
('reno'),
('oppo'),
('ada'),
('sekarang'),
('ya'),
('aneh2'),
('oppo'),
('wkwkwk'),
('syahrini'),
('oppo'),
('sekali'),
('ga'),
('reno'),
('oppo'),
('ada'),
('sekarang'),
('ya'),
('aneh2'),
('oppo'),
('dearmyyoongii'),
('rt'),
('gembel'),
('syahrini'),
('haha'),
('vi'),
('syahrini'),
('suami'),
('malah'),
('kira'),
('gue'),
('pockyjww'),
('eviioktaa'),
('wkwkwk'),
('syahrini'),
('oppo'),
('sekali'),
('ga'),
('reno'),
('oppo'),
('ada'),
('sekarang'),
('ya'),
('aneh2'),
('oppo'),
('wkwkwk'),
('syahrini'),
('oppo'),
('sekali'),
('ga'),
('reno'),
('oppo'),
('ada'),
('sekarang'),
('ya'),
('aneh2'),
('oppo'),
('dearmyyoongii'),
('rt'),
('gembel'),
('syahrini'),
('haha'),
('vi'),
('syahrini'),
('suami'),
('malah'),
('kira'),
('gue'),
('pockyjww'),
('eviioktaa'),
('kau'),
('bae'),
('syahrini'),
('dengeri'),
('la'),
('gadesss'),
('nak'),
('oooii'),
('pagiii'),
('masiiiiih'),
('naomiidea'),
('boxnbkmf8s'),
('co'),
('t'),
('https'),
('syahrini'),
('kaya'),
('cantik'),
('supaya'),
('uwang'),
('banyak'),
('ken'),
('yaallah'),
('henyiel'),
('rt'),
('pzplbnrt8m'),
('co'),
('t'),
('https'),
('vibeee'),
('syahrini'),
('ty1qkt2rva'),
('co'),
('t'),
('https'),
('ya'),
('syahrini'),
('suami'),
('sama'),
('collab'),
('wkwkwk'),
('syahrini'),
('oppo'),
('sekali'),
('ga'),
('reno'),
('oppo'),
('ada'),
('sekarang'),
('ya'),
('aneh2'),
('oppo'),
('wkwkwk'),
('syahrini'),
('oppo'),
('sekali'),
('ga'),
('reno'),
('oppo'),
('ada'),
('sekarang'),
('ya'),
('aneh2'),
('oppo'),
('dearmyyoongii'),
('rt'),
('gembel'),
('syahrini'),
('boxnbkmf8s'),
('co'),
('t'),
('https'),
('syahrini'),
('kaya'),
('cantik'),
('supaya'),
('uwang'),
('banyak'),
('ken'),
('yaallah'),
('henyiel'),
('rt'),
('boxnbkmf8s'),
('co'),
('t'),
('https'),
('syahrini'),
('kaya'),
('cantik'),
('supaya'),
('uwang'),
('banyak'),
('ken'),
('yaallah'),
('henyiel'),
('rt'),
('indomie'),
('bumbu'),
('kek'),
('deh'),
('addicted'),
('muluu'),
('ngiang'),
('ngiang'),
('syahrini'),
('tante'),
('restu'),
('lagu'),
('reff'),
('ini'),
('allahurabbi'),
('kau'),
('bae'),
('syahrini'),
('dengeri'),
('la'),
('gadesss'),
('nak'),
('oooii'),
('pagiii'),
('masiiiiih'),
('naomiidea'),
('boxnbkmf8s'),
('co'),
('t'),
('https'),
('syahrini'),
('kaya'),
('cantik'),
('supaya'),
('uwang'),
('banyak'),
('ken'),
('yaallah'),
('henyiel'),
('rt'),
('pzplbnrt8m'),
('co'),
('t'),
('https'),
('vibeee'),
('syahrini'),
('ty1qkt2rva'),
('co'),
('t'),
('https'),
('ya'),
('syahrini'),
('suami'),
('sama'),
('collab'),
('wkwkwk'),
('syahrini'),
('oppo'),
('sekali'),
('ga'),
('reno'),
('oppo'),
('ada'),
('sekarang'),
('ya'),
('aneh2'),
('oppo'),
('wkwkwk'),
('syahrini'),
('oppo'),
('sekali'),
('ga'),
('reno'),
('oppo'),
('ada'),
('sekarang'),
('ya'),
('aneh2'),
('oppo'),
('dearmyyoongii'),
('rt'),
('gembel'),
('syahrini'),
('boxnbkmf8s'),
('co'),
('t'),
('https'),
('syahrini'),
('kaya'),
('cantik'),
('supaya'),
('uwang'),
('banyak'),
('ken'),
('yaallah'),
('henyiel'),
('rt'),
('indomie'),
('bumbu'),
('kek'),
('deh'),
('addicted'),
('muluu'),
('ngiang'),
('ngiang'),
('syahrini'),
('tante'),
('restu'),
('lagu'),
('reff'),
('ini'),
('allahurabbi'),
('kau'),
('bae'),
('syahrini'),
('dengeri'),
('la'),
('gadesss'),
('nak'),
('oooii'),
('pagiii'),
('masiiiiih'),
('naomiidea'),
('boxnbkmf8s'),
('co'),
('t'),
('https'),
('syahrini'),
('kaya'),
('cantik'),
('supaya'),
('uwang'),
('banyak'),
('ken'),
('yaallah'),
('henyiel'),
('rt'),
('pzplbnrt8m'),
('co'),
('t'),
('https'),
('vibeee'),
('syahrini'),
('ty1qkt2rva'),
('co'),
('t'),
('https'),
('ya'),
('syahrini'),
('suami'),
('sama'),
('collab'),
('wkwkwk'),
('syahrini'),
('oppo'),
('sekali'),
('ga'),
('reno'),
('oppo'),
('ada'),
('sekarang'),
('ya'),
('aneh2'),
('oppo'),
('wkwkwk'),
('syahrini'),
('oppo'),
('sekali'),
('ga'),
('reno'),
('oppo'),
('ada'),
('sekarang'),
('ya'),
('aneh2'),
('oppo'),
('dearmyyoongii'),
('rt'),
('gembel'),
('syahrini'),
('boxnbkmf8s'),
('co'),
('t'),
('https'),
('syahrini'),
('kaya'),
('cantik'),
('supaya'),
('uwang'),
('banyak'),
('ken'),
('yaallah'),
('henyiel'),
('rt'),
('indomie'),
('bumbu'),
('kek'),
('deh'),
('addicted'),
('muluu'),
('ngiang'),
('ngiang'),
('syahrini'),
('tante'),
('restu'),
('lagu'),
('reff'),
('ini'),
('allahurabbi'),
('kau'),
('bae'),
('syahrini'),
('dengeri'),
('la'),
('gadesss'),
('nak'),
('oooii'),
('pagiii'),
('masiiiiih'),
('naomiidea'),
('boxnbkmf8s'),
('co'),
('t'),
('https'),
('syahrini'),
('kaya'),
('cantik'),
('supaya'),
('uwang'),
('banyak'),
('ken'),
('yaallah'),
('henyiel'),
('rt'),
('pzplbnrt8m'),
('co'),
('t'),
('https'),
('vibeee'),
('syahrini'),
('ty1qkt2rva'),
('co'),
('t'),
('https'),
('ya'),
('syahrini'),
('suami'),
('sama'),
('collab'),
('wkwkwk'),
('syahrini'),
('oppo'),
('sekali'),
('ga'),
('reno'),
('oppo'),
('ada'),
('sekarang'),
('ya'),
('aneh2'),
('oppo'),
('wkwkwk'),
('syahrini'),
('oppo'),
('sekali'),
('ga'),
('reno'),
('oppo'),
('ada'),
('sekarang'),
('ya'),
('aneh2'),
('oppo'),
('dearmyyoongii'),
('rt'),
('gembel'),
('syahrini'),
('boxnbkmf8s'),
('co'),
('t'),
('https'),
('syahrini'),
('kaya'),
('cantik'),
('supaya'),
('uwang'),
('banyak'),
('ken'),
('yaallah'),
('henyiel'),
('rt'),
('indomie'),
('bumbu'),
('kek'),
('deh'),
('addicted'),
('muluu'),
('ngiang'),
('ngiang'),
('syahrini'),
('tante'),
('restu'),
('lagu'),
('reff'),
('ini'),
('allahurabbi'),
('kau'),
('bae'),
('syahrini'),
('dengeri'),
('la'),
('gadesss'),
('nak'),
('oooii'),
('pagiii'),
('masiiiiih'),
('naomiidea'),
('boxnbkmf8s'),
('co'),
('t'),
('https'),
('syahrini'),
('kaya'),
('cantik'),
('supaya'),
('uwang'),
('banyak'),
('ken'),
('yaallah'),
('henyiel'),
('rt'),
('pzplbnrt8m'),
('co'),
('t'),
('https'),
('vibeee'),
('syahrini'),
('ty1qkt2rva'),
('co'),
('t'),
('https'),
('ya'),
('syahrini'),
('suami'),
('sama'),
('collab'),
('wkwkwk'),
('syahrini'),
('oppo'),
('sekali'),
('ga'),
('reno'),
('oppo'),
('ada'),
('sekarang'),
('ya'),
('aneh2'),
('oppo'),
('wkwkwk'),
('syahrini'),
('oppo'),
('sekali'),
('ga'),
('reno'),
('oppo'),
('ada'),
('sekarang'),
('ya'),
('aneh2'),
('oppo'),
('dearmyyoongii'),
('rt'),
('gembel'),
('syahrini'),
('boxnbkmf8s'),
('co'),
('t'),
('https'),
('syahrini'),
('kaya'),
('cantik'),
('supaya'),
('uwang'),
('banyak'),
('ken'),
('yaallah'),
('henyiel'),
('rt'),
('indomie'),
('bumbu'),
('kek'),
('deh'),
('addicted'),
('muluu'),
('ngiang'),
('ngiang'),
('syahrini'),
('tante'),
('restu'),
('lagu'),
('reff'),
('ini'),
('allahurabbi'),
('kau'),
('bae'),
('syahrini'),
('dengeri'),
('la'),
('gadesss'),
('nak'),
('oooii'),
('pagiii'),
('masiiiiih'),
('naomiidea'),
('boxnbkmf8s'),
('co'),
('t'),
('https'),
('syahrini'),
('kaya'),
('cantik'),
('supaya'),
('uwang'),
('banyak'),
('ken'),
('yaallah'),
('henyiel'),
('rt'),
('pzplbnrt8m'),
('co'),
('t'),
('https'),
('vibeee'),
('syahrini'),
('ty1qkt2rva'),
('co'),
('t'),
('https'),
('ya'),
('syahrini'),
('suami'),
('sama'),
('collab'),
('wkwkwk'),
('syahrini'),
('oppo'),
('sekali'),
('ga'),
('reno'),
('oppo'),
('ada'),
('sekarang'),
('ya'),
('aneh2'),
('oppo'),
('wkwkwk'),
('syahrini'),
('oppo'),
('sekali'),
('ga'),
('reno'),
('oppo'),
('ada'),
('sekarang'),
('ya'),
('aneh2'),
('oppo'),
('dearmyyoongii'),
('rt'),
('gembel'),
('syahrini'),
('boxnbkmf8s'),
('co'),
('t'),
('https'),
('syahrini'),
('kaya'),
('cantik'),
('supaya'),
('uwang'),
('banyak'),
('ken'),
('yaallah'),
('henyiel'),
('rt'),
('indomie'),
('bumbu'),
('kek'),
('deh'),
('addicted'),
('muluu'),
('ngiang'),
('ngiang'),
('syahrini'),
('tante'),
('restu'),
('lagu'),
('reff'),
('ini'),
('allahurabbi'),
('kau'),
('bae'),
('syahrini'),
('dengeri'),
('la'),
('gadesss'),
('nak'),
('oooii'),
('pagiii'),
('masiiiiih'),
('naomiidea'),
('boxnbkmf8s'),
('co'),
('t'),
('https'),
('syahrini'),
('kaya'),
('cantik'),
('supaya'),
('uwang'),
('banyak'),
('ken'),
('yaallah'),
('henyiel'),
('rt'),
('pzplbnrt8m'),
('co'),
('t'),
('https'),
('vibeee'),
('syahrini'),
('ty1qkt2rva'),
('co'),
('t'),
('https'),
('ya'),
('syahrini'),
('suami'),
('sama'),
('collab'),
('wkwkwk'),
('syahrini'),
('oppo'),
('sekali'),
('ga'),
('reno'),
('oppo'),
('ada'),
('sekarang'),
('ya'),
('aneh2'),
('oppo'),
('wkwkwk'),
('syahrini'),
('oppo'),
('sekali'),
('ga'),
('reno'),
('oppo'),
('ada'),
('sekarang'),
('ya'),
('aneh2'),
('oppo'),
('dearmyyoongii'),
('rt'),
('gembel'),
('syahrini'),
('boxnbkmf8s'),
('co'),
('t'),
('https'),
('syahrini'),
('kaya'),
('cantik'),
('supaya'),
('uwang'),
('banyak'),
('ken'),
('yaallah'),
('henyiel'),
('rt'),
('boxnbkmf8s'),
('co'),
('t'),
('https'),
('syahrini'),
('kaya'),
('cantik'),
('supaya'),
('uwang'),
('banyak'),
('ken'),
('yaallah'),
('henyiel'),
('rt'),
('boxnbkmf8s'),
('co'),
('t'),
('https'),
('syahrini'),
('kaya'),
('cantik'),
('supaya'),
('uwang'),
('banyak'),
('ken'),
('yaallah'),
('henyiel'),
('rt'),
('boxnbkmf8s'),
('co'),
('t'),
('https'),
('syahrini'),
('kaya'),
('cantik'),
('supaya'),
('uwang'),
('banyak'),
('ken'),
('yaallah'),
('henyiel'),
('rt'),
('syahrini'),
('daffodeils'),
('syahrini'),
('syahrini'),
('aja'),
('sekarang'),
('halah'),
('yuong'),
('ggam'),
('ah'),
('kali'),
('syahrini'),
('brisilejodie96'),
('boxnbkmf8s'),
('co'),
('t'),
('https'),
('syahrini'),
('kaya'),
('cantik'),
('supaya'),
('uwang'),
('banyak'),
('ken'),
('yaallah'),
('henyiel'),
('rt'),
('pepp'),
('optimuswar'),
('kopipolitik1'),
('hyugatotoro'),
('awangsancaka'),
('arse00571581'),
('eropajokowi'),
('rianantony4'),
('arimanik'),
('arjunafreddy'),
('l0v3d0lph1n'),
('rt'),
('syahrini'),
('kek'),
('bang'),
('dong'),
('cantik'),
('mundur'),
('maju'),
('babecabiita'),
('jir'),
('cantik'),
('syahrini'),
('sumpah'),
('tp'),
('myouiberisik'),
('syahrini'),
('dari'),
('scarf'),
('pakai'),
('umi'),
('foto'),
('itu'),
('alhamdulillah'),
('tirtoid'),
('yenisefri'),
('a'),
('far'),
('rdanastri'),
('ujmqhepztj'),
('co'),
('t'),
('https'),
('mau'),
('sahaya'),
('hamba'),
('para'),
('kata'),
('nabi'),
('sifat2'),
('milik'),
('yang'),
('pancasilais'),
('paling'),
('pimpin'),
('jokowi'),
('jokowi'),
('anonymousid'),
('abbas'),
('farhat'),
('duren'),
('sepatu'),
('inget'),
('auto'),
('astaga'),
('cixasikfess'),
('abbas'),
('farhat'),
('reinkarnasi'),
('notaslimboy'),
('najwa'),
('mata'),
('di'),
('wawancara'),
('pasca'),
('abbas'),
('farhat'),
('emosi'),
('nyinyir'),
('doyan'),
('abbas'),
('farhat'),
('jadi'),
('mu'),
('cita2'),
('capai'),
('moga'),
('bagsbigsbugs'),
('0tu2avagfi'),
('co'),
('t'),
('https'),
('t'),
('yang'),
('hasil'),
('abbas'),
('farhat'),
('dengan'),
('meni'),
('daniati'),
('nia'),
('eksperimen'),
('coba'),
('hadap'),
('tabah'),
('daniati'),
('nia'),
('hipotesis'),
('abbas'),
('farhat'),
('jalur'),
('lewat'),
('surga'),
('masuk'),
('jokowi'),
('pilih'),
('yg'),
('hassan'),
('haikal'),
('chamadhojin'),
('awangsancaka'),
('wiguna'),
('arya'),
('vs'),
('abbas'),
('farhat'),
('lebihkecemana'),
('lah'),
('cukup'),
('udah'),
('abbas'),
('farhat'),
('level'),
('begini'),
('klo'),
('yusril'),
('bayar'),
('ngapain'),
('jokowi'),
('tim'),
('ini'),
('y1xqk5ic5t'),
('co'),
('t'),
('https'),
('pak'),
('kalah'),
('atau'),
('jokowi'),
('pak'),
('menang'),
('dengan'),
('korelasi'),
('lihat'),
('harus'),
('data'),
('buah'),
('dalam'),
('manipulasi'),
('ada'),
('jika'),
('bantah'),
('tempat'),
('itu'),
('sidang'),
('ruang'),
('sidang'),
('ruang'),
('dalam'),
('ke'),
('suci'),
('ayat'),
('bawa'),
('ya'),
('ngapain'),
('prabowo'),
('hukum'),
('tim'),
('dan'),
('jokowi'),
('hukum'),
('tim'),
('ini'),
('vincentrcrd'),
('rt'),
('fh9ehv9t6y'),
('co'),
('t'),
('https'),
('saya'),
('rumah'),
('di'),
('fiktif'),
('dpt'),
('ada'),
('prabowo'),
('bpn'),
('saksi'),
('bantah'),
('tempat'),
('itu'),
('sidang'),
('ruang'),
('sidang'),
('ruang'),
('dalam'),
('ke'),
('suci'),
('ayat'),
('bawa'),
('ya'),
('ngapain'),
('prabowo'),
('hukum'),
('tim'),
('dan'),
('jokowi'),
('hukum'),
('tim'),
('ini'),
('vincentrcrd'),
('rt'),
('borabora'),
('ke'),
('holidey'),
('syahrini'),
('inces'),
('ikut'),
('mau'),
('rasa'),
('sadar'),
('baru'),
('w'),
('sih'),
('syahrini'),
('mah'),
('nyata'),
('hidup'),
('kalo'),
('dasar'),
('pada'),
('tuh'),
('vp'),
('boxnbkmf8s'),
('co'),
('t'),
('https'),
('syahrini'),
('kaya'),
('cantik'),
('supaya'),
('uwang'),
('banyak'),
('ken'),
('yaallah'),
('henyiel'),
('rt'),
('syahrini'),
('daffodeils'),
('syahrini'),
('syahrini'),
('aja'),
('sekarang'),
('halah'),
('yuong'),
('ggam'),
('ah'),
('kali'),
('syahrini'),
('brisilejodie96'),
('boxnbkmf8s'),
('co'),
('t'),
('https'),
('syahrini'),
('kaya'),
('cantik'),
('supaya'),
('uwang'),
('banyak'),
('ken'),
('yaallah'),
('henyiel'),
('rt'),
('pepp'),
('optimuswar'),
('kopipolitik1'),
('hyugatotoro'),
('awangsancaka'),
('arse00571581'),
('eropajokowi'),
('rianantony4'),
('arimanik'),
('arjunafreddy'),
('l0v3d0lph1n'),
('rt'),
('rartcxzg2h'),
('co'),
('t'),
('https'),
('terang'),
('eta'),
('ettdaah'),
('baretputiih'),
('rt'),
('bqqebwgjfq'),
('co'),
('t'),
('https'),
('sandiuno'),
('prabowo'),
('sosmedbw'),
('dahnilanzar'),
('p'),
('juang'),
('ujung'),
('harap'),
('jadi'),
('beliau'),
('sosmedbw'),
('mas'),
('sy'),
('senior'),
('dan'),
('sahabat'),
('terhdp'),
('bangga'),
('dan'),
('haru'),
('penuh'),
('tatap'),
('saya'),
('dahnilanzar'),
('rt'),
('meridhoi'),
('allah'),
('moga'),
('bapak'),
('prabowo'),
('dahnilanzar'),
('sjlnzesgrw'),
('co'),
('t'),
('https'),
('sandiuno'),
('prabowo'),
('ini'),
('bagaimana'),
('kangdede78'),
('andreopa'),
('chotimah'),
('ch'),
('aulia12'),
('fa'),
('aprilialin'),
('nikensabila'),
('besar'),
('politik'),
('konspirasi'),
('ada'),
('duga'),
('konstitusi'),
('mahkamah'),
('di'),
('2019'),
('pilpres'),
('gugat'),
('sidang'),
('dahsyat'),
('benar'),
('dahsyat'),
('lutfimuhamad008'),
('rt'),
('p'),
('juang'),
('ujung'),
('harap'),
('jadi'),
('beliau'),
('sosmedbw'),
('mas'),
('sy'),
('senior'),
('dan'),
('sahabat'),
('terhdp'),
('bangga'),
('dan'),
('haru'),
('penuh'),
('tatap'),
('saya'),
('dahnilanzar'),
('rt'),
('boyolal'),
('di'),
('berat'),
('medan'),
('telusur'),
('jam'),
('3'),
('jalan'),
('yg'),
('juwangi'),
('bu'),
('sprt'),
('perempuan'),
('ada'),
('ragu'),
('lihat'),
('mrk'),
('kpu'),
('hukum'),
('kuasa'),
('bagi'),
('dahnilanzar'),
('rt'),
('amminnnn'),
('presiden'),
('jadi'),
('jokowi'),
('ganti'),
('akan'),
('insyaallah'),
('juga'),
('prabowo'),
('vivacoid'),
('nwysqmkny0'),
('co'),
('t'),
('https'),
('gu'),
('tolak'),
('putus'),
('daripada'),
('pilpres'),
('kait'),
('gugat'),
('semua'),
('cabut'),
('langsung'),
('pagi'),
('esok'),
('prabowo'),
('pak'),
('jadi'),
('saya'),
('kalau'),
('antar'),
('di'),
('dua'),
('mk'),
('di'),
('2019'),
('pilpres'),
('phpu'),
('sidang'),
('pada'),
('prabowo-sandi'),
('hukum'),
('kuasa'),
('hadir'),
('yang'),
('ahli'),
('dua'),
('dan'),
('saksi'),
('orang'),
('15'),
('ada'),
('kompasiana'),
('rt'),
('9zidwa3l5c'),
('co'),
('t'),
('https'),
('sendiri'),
('diri'),
('malu'),
('bikin'),
('tambah'),
('jangan'),
('prabowo'),
('pak'),
('lah'),
('cukup'),
('sudah'),
('ernestprakasa'),
('rt'),
('ernsaxfyfv'),
('co'),
('t'),
('https'),
('tps'),
('tingkat'),
('di'),
('ada'),
('fiktif'),
('dpt'),
('aku'),
('prabowo'),
('bpn'),
('saksi'),
('bw'),
('pak'),
('selalu'),
('sehat'),
('sandiuno'),
('prabowo'),
('sosmedbw'),
('dahnilanzar'),
('asumsi'),
('banjir'),
('sandiuno'),
('prabowo'),
('lutfimuhamad008'),
('dan'),
('ganda'),
('pilih'),
('juta'),
('2'),
('dari'),
('lebih'),
('dapat'),
('ada'),
('ungkap'),
('2019'),
('06'),
('19'),
('ini'),
('hari'),
('mk'),
('sidang'),
('di'),
('prabowo'),
('-'),
('sandiuno'),
('bpn'),
('saksi'),
('alwi'),
('falwi'),
('rt'),
('te'),
('se-makassar'),
('camat'),
('15'),
('dan'),
('limpo'),
('yasin'),
('syahrul'),
('sulsel'),
('gub'),
('eks'),
('mk'),
('di'),
('01'),
('paslon'),
('mendiskualfikasi'),
('bisa'),
('ini'),
('video'),
('peoplenpowergm1'),
('rt'),
('p'),
('juang'),
('ujung'),
('harap'),
('jadi'),
('beliau'),
('sosmedbw'),
('mas'),
('sy'),
('senior'),
('dan'),
('sahabat'),
('terhdp'),
('bangga'),
('dan'),
('haru'),
('penuh'),
('tatap'),
('saya'),
('dahnilanzar'),
('rt'),
('p'),
('juang'),
('ujung'),
('harap'),
('jadi'),
('beliau'),
('sosmedbw'),
('mas'),
('sy'),
('senior'),
('dan'),
('sahabat'),
('terhdp'),
('bangga'),
('dan'),
('haru'),
('penuh'),
('tatap'),
('saya'),
('dahnilanzar'),
('rt'),
('xip07jdsna'),
('co'),
('t'),
('https'),
('prabowo-sandi'),
('fakta'),
('saksi'),
('dari'),
('mundur'),
('nyata'),
('azhar'),
('haris'),
('tulis'),
('terang'),
('lalu'),
('kumpar'),
('rt'),
('boyolal'),
('di'),
('berat'),
('medan'),
('telusur'),
('jam'),
('3'),
('jalan'),
('yg'),
('juwangi'),
('bu'),
('sprt'),
('perempuan'),
('ada'),
('ragu'),
('lihat'),
('mrk'),
('kpu'),
('hukum'),
('kuasa'),
('bagi'),
('dahnilanzar'),
('rt'),
('mc08lqfrnq'),
('co'),
('t'),
('https'),
('pihak'),
('terang'),
('ancam'),
('pernah'),
('prabowo'),
('saksi'),
('aku'),
('anggap'),
('tkn'),
('p'),
('juang'),
('ujung'),
('harap'),
('jadi'),
('beliau'),
('sosmedbw'),
('mas'),
('sy'),
('senior'),
('dan'),
('sahabat'),
('terhdp'),
('bangga'),
('dan'),
('haru'),
('penuh'),
('tatap'),
('saya'),
('dahnilanzar'),
('rt'),
('q4hmelphvy'),
('co'),
('t'),
('https'),
('coblos'),
('yang'),
('mana'),
('capres'),
('tahu'),
('tak'),
('prabowo'),
('saksi'),
('suara'),
('surat'),
('coblos'),
('kpps'),
('lihat'),
('7nvtdr374a'),
('co'),
('t'),
('https'),
('bisa'),
('yang'),
('sandi'),
('prabowo'),
('hanya'),
('ini'),
('dunia'),
('di'),
('apakah'),
('mengapa'),
('sandiuno'),
('prabowo'),
('mkomeliya'),
('bram75'),
('cak'),
('sarahaisyah46'),
('prabowo-sand'),
('gugat'),
('seluruh'),
('tolak'),
('mk'),
('minta'),
('ruf'),
('jokowi-ma'),
('panik'),
('usah'),
('gak'),
('harus'),
('curang'),
('tidak'),
('rasa'),
('anda'),
('kalo'),
('riau40'),
('rusydi'),
('rt'),
('j'),
('5'),
('17'),
('invalid'),
('dpt'),
('tentang'),
('sandiuno'),
('prabowo'),
('bpn'),
('saksi'),
('palsu'),
('terang'),
('bongkar'),
('nurbaningsih'),
('enny'),
('prof'),
('mk'),
('hakim'),
('mantap'),
('sailasalsabil'),
('rt'),
('p'),
('juang'),
('ujung'),
('harap'),
('jadi'),
('beliau'),
('sosmedbw'),
('mas'),
('sy'),
('senior'),
('dan'),
('sahabat'),
('terhdp'),
('bangga'),
('dan'),
('haru'),
('penuh'),
('tatap'),
('saya'),
('dahnilanzar'),
('rt'),
('boyolal'),
('di'),
('berat'),
('medan'),
('telusur'),
('jam'),
('3'),
('jalan'),
('yg'),
('juwangi'),
('bu'),
('sprt'),
('perempuan'),
('ada'),
('ragu'),
('lihat'),
('mrk'),
('kpu'),
('hukum'),
('kuasa'),
('bagi'),
('dahnilanzar'),
('rt'),
('wkjzkybe6e'),
('co'),
('t'),
('https'),
('9fjp2tv2js'),
('co'),
('t'),
('https'),
('diri'),
('bela'),
('mendagri'),
('dpt'),
('soal'),
('prabowo'),
('kubu'),
('p'),
('juang'),
('ujung'),
('harap'),
('jadi'),
('beliau'),
('sosmedbw'),
('mas'),
('sy'),
('senior'),
('dan'),
('sahabat'),
('terhdp'),
('bangga'),
('dan'),
('haru'),
('penuh'),
('tatap'),
('saya'),
('dahnilanzar'),
('rt'),
('te'),
('se-makassar'),
('camat'),
('15'),
('dan'),
('limpo'),
('yasin'),
('syahrul'),
('sulsel'),
('gub'),
('eks'),
('mk'),
('di'),
('01'),
('paslon'),
('mendiskualfikasi'),
('bisa'),
('ini'),
('video'),
('peoplenpowergm1'),
('rt'),
('saksi'),
('jadi'),
('bisa'),
('dia'),
('kalo'),
('justru'),
('kucing'),
('tai'),
('hehehe'),
('integritas'),
('soal'),
('ini'),
('tidak'),
('oh'),
('carry'),
('amp'),
('cash'),
('komisaris'),
('selamat'),
('helmifelis'),
('rt'),
('mktolakpengkhianatdemokrasi'),
('sandiuno'),
('prabowo'),
('penasehatcebong'),
('puza'),
('tm'),
('kait'),
('antara'),
('di'),
('sah'),
('yg'),
('tambah'),
('bukti'),
('menang'),
('02'),
('optimis'),
('makin'),
('papar'),
('bukti'),
('banyak'),
('makin'),
('mk'),
('hakim'),
('top'),
('aburasyid13'),
('rt'),
('boyolal'),
('di'),
('berat'),
('medan'),
('telusur'),
('jam'),
('3'),
('jalan'),
('yg'),
('juwangi'),
('bu'),
('sprt'),
('perempuan'),
('ada'),
('ragu'),
('lihat'),
('mrk'),
('kpu'),
('hukum'),
('kuasa'),
('bagi'),
('dahnilanzar'),
('rt'),
('wkjzkybe6e'),
('co'),
('t'),
('https'),
('9fjp2tv2js'),
('co'),
('t'),
('https'),
('diri'),
('bela'),
('mendagri'),
('dpt'),
('soal'),
('prabowo'),
('kubu'),
('malang'),
('radar'),
('rt'),
('hancur'),
('n'),
('hina'),
('curang'),
('dholim'),
('yg'),
('smg'),
('bang'),
('allah'),
('lindung'),
('dlm'),
('menang'),
('sll'),
('benar'),
('smg'),
('sandiuno'),
('prabowo'),
('sosmedbw'),
('dahnilanzar'),
('pro'),
('hormat'),
('tetap'),
('masy'),
('dan'),
('dukung'),
('semua'),
('ajak'),
('tetap'),
('dan'),
('beliau'),
('kerja'),
('ruang'),
('dari'),
('mk'),
('sidang'),
('pantau'),
('prabowo'),
('pak'),
('dahnilanzar'),
('rt'),
('lvtqydyr0z'),
('co'),
('t'),
('https'),
('ka'),
('apa'),
('98'),
('tahun'),
('di'),
('prabowo'),
('karena'),
('alas'),
('klw'),
('bukan'),
('takut'),
('saksi'),
('jadi'),
('mau'),
('gak'),
('kenapa'),
('azhar'),
('haris'),
('mas'),
('helmifelis'),
('boh'),
('jika'),
('tahun'),
('7'),
('penjara'),
('bisa'),
('prabowo'),
('saksi'),
('ingat'),
('mk'),
('hakim'),
('mkri'),
('humas'),
('krangkeng'),
('masuk'),
('pantas'),
('sudah'),
('cs'),
('agus'),
('saksi'),
('syarman59'),
('rt'),
('faktasidangmk'),
('gemes'),
('bikin'),
('daritadi'),
('soal'),
('prabowo'),
('saksi'),
('para'),
('satu2'),
('tu'),
('gebukin'),
('gua'),
('trus'),
('mk'),
('hakim'),
('jdi'),
('ken');
-- --------------------------------------------------------
--
-- Table structure for table `kata_dasar`
--
CREATE TABLE `kata_dasar` (
`id` int(100) NOT NULL,
`kata_dasar` varchar(100) NOT NULL,
`flag` varchar(255) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `kata_dasar`
--
INSERT INTO `kata_dasar` (`id`, `kata_dasar`, `flag`) VALUES
(1, 'abadi', 'positif'),
(2, 'abai', 'negatif'),
(3, 'abal-abal', 'negatif'),
(4, 'absen', 'negatif'),
(5, 'agama', 'positif'),
(6, 'akui', 'negatif'),
(7, 'akurat', 'positif'),
(8, 'alhamdulillah', 'positif'),
(9, 'aman', 'positif'),
(10, 'amanah', 'positif'),
(11, 'ampun', 'negatif'),
(12, 'ancam', 'negatif'),
(13, 'andal', 'positif'),
(14, 'aneh', 'negatif'),
(15, 'anggota', 'positif'),
(16, 'antisipasi', 'positif'),
(17, 'apik', 'positif'),
(18, 'apresiasi', 'positif'),
(19, 'artis', 'positif'),
(20, 'asik', 'positif'),
(21, 'asik_banget', 'positif'),
(22, 'asli', 'positif'),
(23, 'asli', 'positif'),
(24, 'ayo', 'positif'),
(25, 'bacot', 'negatif'),
(26, 'badai', 'positif'),
(27, 'bagus', 'positif'),
(28, 'bagus', 'positif'),
(29, 'bahagia', 'positif'),
(30, 'bahaya', 'negatif'),
(31, 'baik', 'positif'),
(32, 'baik', 'positif'),
(33, 'bakar', 'negatif'),
(34, 'balik', 'positif'),
(35, 'balik_mood', 'positif'),
(36, 'bangga', 'positif'),
(37, 'bantu', 'positif'),
(38, 'banyak', 'positif'),
(39, 'banyak_sekali', 'positif'),
(40, 'baret', 'negatif'),
(41, 'baru', 'positif'),
(42, 'baru', 'positif'),
(43, 'basi', 'negatif'),
(44, 'bawa', 'positif'),
(45, 'beda', 'negatif'),
(46, 'bekas', 'negatif'),
(47, 'bekas_dia', 'negatif'),
(48, 'belum', 'negatif'),
(49, 'benci', 'negatif'),
(50, 'bener', 'positif'),
(51, 'bening', 'positif'),
(52, 'bentak', 'negatif'),
(53, 'berani', 'positif'),
(54, 'berani_mati', 'negatif'),
(55, 'bercak', 'negatif'),
(56, 'beres', 'positif'),
(57, 'bersama ', 'positif'),
(58, 'berwibawa', 'positif'),
(59, 'besan', 'positif'),
(60, 'bidadari', 'positif'),
(61, 'bijak', 'positif'),
(62, 'bintang', 'posiitif'),
(63, 'bintik', 'negatif'),
(64, 'bisa', 'positif'),
(65, 'bisa ', 'positif'),
(66, 'bocor', 'negatif'),
(67, 'bohong', 'negatif'),
(68, 'bohong', 'negatif'),
(69, 'bonaok', 'negatif'),
(70, 'boncel', 'negatif'),
(71, 'bongkar', 'negatif'),
(72, 'boros', 'negatif'),
(73, 'bosan', 'negatif'),
(74, 'buang', 'negatif'),
(75, 'buang-buang', 'negatif'),
(76, 'buaya', 'negatif'),
(77, 'bukan', 'negatif'),
(78, 'bukan_palsu', 'positif'),
(79, 'bukti', 'positif'),
(80, 'bukti_palsu', 'negatif'),
(81, 'bunuh', 'negatif'),
(82, 'buram', 'negatif'),
(83, 'buruk', 'negatif'),
(84, 'busuk', 'negatif'),
(85, 'butuh_privasi', 'positif'),
(86, 'cacat', 'negatif'),
(87, 'cakep', 'positif'),
(88, 'canggih', 'positif'),
(89, 'cantik', 'positif'),
(90, 'cantik ', 'positif'),
(91, 'cepat', 'positif'),
(92, 'ceroboh', 'negatif'),
(93, 'cetak', 'positif'),
(94, 'cinta', 'positif'),
(95, 'cocok', 'positif'),
(96, 'copot', 'negatif'),
(97, 'culik', 'negatif'),
(98, 'curang', 'negatif'),
(99, 'curang', 'negatif'),
(100, 'darat', 'positif'),
(101, 'darurat ', 'negatif'),
(102, 'darurat_banget', 'negatif'),
(103, 'duet_maut', 'positif'),
(104, 'duet', 'positif'),
(105, 'dukung', 'positif'),
(106, 'efektif', 'positif'),
(107, 'ekonomis', 'positif'),
(108, 'elegan', 'positif'),
(109, 'elit', 'positif'),
(110, 'emosi', 'negatif'),
(111, 'enak ', 'positif'),
(112, 'enek', 'negatif'),
(113, 'fakta', 'positif'),
(114, 'fans', 'positif'),
(115, 'fantastis', 'positif'),
(116, 'favorit', 'positif'),
(117, 'gagal', 'negatif'),
(118, 'gahar', 'positif'),
(119, 'gampang', 'positif'),
(120, 'ganggu', 'negatif'),
(121, 'ganteng', 'positif'),
(122, 'ganteng', 'positif'),
(123, 'ganti', 'negatif'),
(124, 'ganti_pasangan', 'negatif'),
(125, 'garis', 'negatif'),
(126, 'gaya', 'negatif'),
(127, 'ga_banget', 'negatif'),
(128, 'gelap', 'negatif'),
(129, 'gemar', 'positif'),
(130, 'gemar_koar ', 'negatif'),
(131, 'gembel', 'negatif'),
(132, 'giat', 'positif'),
(133, 'goyang', 'negatif'),
(134, 'grebek ', 'negatif'),
(135, 'grebek', 'negatif'),
(136, 'habis', 'negatif'),
(137, 'hadir', 'positif'),
(138, 'hambur', 'negatif'),
(139, 'hancur', 'negatif'),
(140, 'hang', 'negatif'),
(141, 'hangat', 'positif'),
(142, 'hangat', 'positif'),
(143, 'harapan', 'positif'),
(144, 'harga_mati', 'negatif'),
(145, 'harga_timbal', 'negatif'),
(146, 'harus_mati', 'negatif'),
(147, 'hebat', 'positif'),
(148, 'heboh', 'positif'),
(149, 'hidup', 'positif'),
(150, 'hukum', 'negatif'),
(151, 'indah ', 'positif'),
(152, 'inspirasi', 'positif'),
(153, 'intip', 'negatif'),
(154, 'istimewa', 'positif'),
(155, 'istrirahat', 'positif'),
(156, 'isu', 'negatif'),
(157, 'izin', 'positif'),
(158, 'jadul', 'negatif'),
(159, 'jagoan', 'positif'),
(160, 'jamin', 'positif'),
(161, 'jangan', 'negatif'),
(162, 'janggal', 'negatif'),
(163, 'jangkau', 'positif'),
(164, 'jatuh', 'negatif'),
(165, 'jatuh_cinta', 'positif'),
(166, 'jauh', 'negatif'),
(167, 'jaya', 'positif'),
(168, 'jelas', 'positif'),
(169, 'jelek', 'negatif'),
(170, 'jernih', 'positif'),
(171, 'jodoh', 'positif'),
(172, 'juara', 'positif'),
(173, 'jujur', 'positif'),
(174, 'kabut', 'negatif'),
(175, 'kacau', 'negatif'),
(176, 'kacung', 'negatif'),
(177, 'kacung', 'negatif'),
(178, 'kaget', 'negatif'),
(179, 'kagum', 'positif'),
(180, 'kagum_sekali', 'positif'),
(181, 'kagum_banget', 'positif'),
(182, 'kampret', 'negatif'),
(183, 'kampret', 'negatif'),
(184, 'kampung', 'negatif'),
(185, 'kandas', 'negatif'),
(186, 'kanker', 'negatif'),
(187, 'kapok', 'negatif'),
(188, 'kapok_banget', 'negatif'),
(189, 'kawal_pilpres', 'positif'),
(190, 'kaya', 'positif'),
(191, 'kaya', 'positif'),
(192, 'kebijakan', 'positif'),
(193, 'kece', 'positif'),
(194, 'kecewa', 'negatif'),
(195, 'kecuali', 'negatif'),
(196, 'kelas', 'positif'),
(197, 'keluh', 'negatif'),
(198, 'kenal', 'positif'),
(199, 'keras', 'negatif'),
(200, 'keren', 'positif'),
(201, 'kerja', 'positif'),
(202, 'kesal', 'negatif'),
(203, 'kesel', 'negatif'),
(204, 'khilaf', 'negatif'),
(205, 'kilat', 'positif'),
(206, 'komedi', 'positif'),
(207, 'komplain', 'negatif'),
(208, 'konser', 'positif'),
(209, 'kontraktif', 'negatif'),
(210, 'konyol', 'negatif'),
(211, 'kotor', 'negatif'),
(212, 'kuasa_hukum', 'positif'),
(213, 'kuat', 'positif'),
(214, 'kubu_cebong', 'negatif'),
(215, 'kubu_kampret', 'negatif'),
(216, 'kurang', 'negatif'),
(217, 'lagu', 'positif'),
(218, 'laku', 'positif'),
(219, 'lama', 'negatif'),
(220, 'lama', 'negatif'),
(221, 'lamban', 'negatif'),
(222, 'lambat', 'negatif'),
(223, 'lancar', 'positif'),
(224, 'langgan', 'positif'),
(225, 'lanjut', 'positif'),
(226, 'lapor', 'negatif'),
(227, 'lari', 'negatif'),
(228, 'laris', 'positif'),
(229, 'lebih', 'positif'),
(230, 'lebih_banyak', 'positif'),
(231, 'lebih_lucu', 'positif'),
(232, 'lebih_perhatian', 'positif'),
(233, 'lecet', 'negatif'),
(234, 'lelet', 'negatif'),
(235, 'lemah', 'negatif'),
(236, 'lengkap', 'positif'),
(237, 'lenyap', 'negatif'),
(238, 'lepas', 'negatif'),
(239, 'licin', 'negatif'),
(240, 'negatif', 'negatif'),
(241, 'lolos', 'positif'),
(242, 'lolos', 'positif'),
(243, 'longgar', 'negatif'),
(244, '<NAME>', 'positif'),
(245, 'lucu', 'positif'),
(246, 'lulus', 'positif'),
(247, 'lumayan', 'positif'),
(248, 'luncur', 'positif'),
(249, 'macet', 'negatif'),
(250, 'Maha', 'positif'),
(251, 'mahal', 'negatif'),
(252, 'maju', 'positif'),
(253, 'makan', 'positif'),
(254, 'malam', 'positif'),
(255, 'malu ', 'negatif'),
(256, 'mancung', 'positif'),
(257, 'mandiri', 'positif'),
(258, 'manfaat', 'positif'),
(259, 'manja', 'negatif'),
(260, 'mantan', 'negatif'),
(261, 'mantap', 'positif'),
(262, 'Mantap', 'positif'),
(263, 'mantap_sekali', 'positif'),
(264, 'manusiawi', 'positif'),
(265, 'marah', 'negatif'),
(266, 'mati', 'negatif'),
(267, 'memilih', 'positif'),
(268, 'menang', 'positif'),
(269, 'menang_telak', 'positif'),
(270, 'mendunia', 'positif'),
(271, 'menikah', 'positif'),
(272, 'menikah', 'positif'),
(273, 'mentok', 'negatif'),
(274, 'marah_sekali', 'negatif'),
(275, 'mewah', 'positif'),
(276, 'mewah_sekali', 'negatif'),
(277, 'mewah', 'positif'),
(278, 'miliar', 'positif'),
(279, 'milyar', 'positif'),
(280, 'mimpi_buruk', 'negatif'),
(281, 'minimalis', 'positif'),
(282, 'minimalism', 'positif'),
(283, 'minta_tolong', 'positif'),
(284, 'miring', 'positif'),
(285, 'miskin', 'negatif'),
(286, 'mohon', 'negatif'),
(287, 'momen ', 'positif'),
(288, 'mood', 'negatif'),
(289, 'muak', 'negatif'),
(290, 'muda', 'positif'),
(291, 'mulus_sekali', 'positif'),
(292, 'mulus', 'positif'),
(293, 'mulus_banget', 'positif'),
(294, 'mundur ', 'negatif'),
(295, 'murah', 'positif'),
(296, 'musnah', 'negatif'),
(297, 'naik_mood', 'positif'),
(298, 'nangis', 'negatif'),
(299, 'negatif', 'negatif'),
(300, 'netral', 'positif'),
(301, 'ngobrol', 'positif'),
(302, 'nikmat', 'positif'),
(303, 'nista', 'negatif'),
(304, 'nonton', 'positif'),
(305, 'nyaman', 'positif'),
(306, 'nyata', 'positif'),
(307, 'nyinyir', 'negatif'),
(308, 'oke', 'positif'),
(309, 'pacar', 'positif'),
(310, 'pakai', 'positif'),
(311, 'paling', 'positif'),
(312, 'palsu', 'negatif'),
(313, 'panas', 'negatif'),
(314, 'panik', 'negatif'),
(315, 'parah', 'negatif'),
(316, 'pas', 'positif'),
(317, 'patah', 'negatif'),
(318, 'patah', 'negatif'),
(319, 'payah', 'negatif'),
(320, 'pecah', 'negatif'),
(321, 'pecundang', 'negatif'),
(322, 'pemandangan_indah', 'positif'),
(323, 'penculik ', 'negatif'),
(324, 'pengecut', 'negatif'),
(325, 'pengen', 'positif'),
(326, 'penuh_haru', 'positif'),
(327, 'penyok', 'negatif'),
(328, 'percaya', 'positif'),
(329, 'perempuan', 'positif'),
(330, 'peresiden', 'positif'),
(331, 'perhatian', 'positif'),
(332, 'pikir', 'negatif'),
(333, 'positif', 'positif'),
(334, 'positif', 'positif'),
(335, 'premium', 'positif'),
(336, 'private', 'positif'),
(337, 'profesional', 'positif'),
(338, 'program', 'positif'),
(339, 'protes', 'negatif'),
(340, 'puas', 'positif'),
(341, 'pucat', 'negatif'),
(342, 'puji', 'positif'),
(343, 'punya', 'positif'),
(344, 'ragu', 'negatif'),
(345, 'rajin', 'positif'),
(346, 'ramah', 'positif'),
(347, 'rapat', 'negatif'),
(348, 'rapi', 'positif'),
(349, 'rasa', 'positif'),
(350, 'rekan', 'positif'),
(351, 'rekomendasi', 'positif'),
(352, 'relawan', 'positif'),
(353, 'rendah', 'negatif'),
(354, 'renggang', 'negatif'),
(355, 'rentan', 'negatif'),
(356, 'replika', 'negatif'),
(357, 'repot', 'negatif'),
(358, 'resah', 'negatif'),
(359, 'resepsi', 'positif'),
(360, 'respon', 'positif'),
(361, 'responsif', 'positif'),
(362, 'retak', 'negatif'),
(363, 'retur', 'negatif'),
(364, 'rilis', 'positif'),
(365, 'rindu', 'positif'),
(366, 'ringan', 'positif'),
(367, 'rugi', 'negatif'),
(368, 'rumah', 'positif'),
(369, 'rupiah', 'positif'),
(370, 'rusak', 'negatif'),
(371, 'sabar', 'positif'),
(372, 'sadar ', 'positif'),
(373, 'sahabat', 'positif'),
(374, 'sakit_jiwa', 'negatif'),
(375, 'saksi', 'positif'),
(376, 'salah', 'negatif'),
(377, 'sampai', 'positif'),
(378, 'santun', 'positif'),
(379, 'sayang', 'positif'),
(380, 'sayang', 'positif'),
(381, 'sayang', 'positif'),
(382, 'sayang_sekali', 'positif'),
(383, 'sayang_banget', 'positif'),
(384, 'sadar_kamera', 'positif'),
(385, 'seksi ', 'negatif'),
(386, 'selamat', 'positif'),
(387, 'semakin_jelas', 'positif'),
(388, 'sembah', 'negatif'),
(389, 'sember', 'negatif'),
(390, 'sementara', 'negatif'),
(391, 'sempurna', 'positif'),
(392, 'senang', 'positif'),
(393, 'sendiri', 'negatif'),
(394, 'senioritas', 'negatif'),
(395, 'sentosa', 'positif'),
(396, 'servis', 'negatif'),
(397, 'sesuai', 'positif'),
(398, 'setan', 'negatif'),
(399, 'setia', 'positif'),
(400, 'setiap_malam ', 'positif'),
(401, 'sia-sia', 'negatif'),
(402, 'sia-sia', 'negatif'),
(403, 'sial', 'negatif'),
(404, 'sial_sekali', 'negatif'),
(405, 'sifat_kepemimpinan', 'positif'),
(406, 'sifat_baik', 'positif'),
(407, 'simpatisan', 'positif'),
(408, 'simpel', 'positif'),
(409, 'sindir', 'negatif'),
(410, 'singgung', 'negatif'),
(411, 'menyinggung', 'negatif'),
(412, 'sip', 'positif'),
(413, 'sobek', 'negatif'),
(414, 'sombong', 'negatif'),
(415, 'sombong', 'negatif'),
(416, 'sopan', 'positif'),
(417, 'stabil', 'positif'),
(418, 'suami_orang', 'negatif'),
(419, 'suara_merdu', 'positif'),
(420, 'suka', 'positif'),
(421, 'sukses', 'positif'),
(422, 'sulit ', 'negatif'),
(423, 'super', 'positif'),
(424, 'susah', 'negatif'),
(425, 'takut', 'negatif'),
(426, 'tak_kuasa', 'positif'),
(427, 'tak_perlu', 'positif'),
(428, 'tak_puasa', 'negatif'),
(429, 'tampil_cantik', 'positif'),
(430, 'tanggap', 'positif'),
(431, 'tanggung', 'negatif'),
(432, 'tanggung jawab', 'positif'),
(433, 'tanpa_fikir', 'positif'),
(434, 'tanpa_mikir', 'positif'),
(435, 'tanya', 'positif'),
(436, 'tegas_sekali', 'positif'),
(437, 'tegas', 'positif'),
(438, 'telak', 'positif'),
(439, 'televisi', 'positif'),
(440, 'terang', 'positif'),
(441, 'terima', 'positif'),
(442, 'terkuak', 'negatif'),
(443, 'terlibat', 'negatif'),
(444, 'teroris', 'negatif'),
(445, 'tidak_bisa', 'negatif'),
(446, 'tidak_guna', 'negatif'),
(447, 'tidak_mampu', 'negatif'),
(448, 'tidak_manusiawi', 'negatif'),
(449, 'tidak_penting', 'negatif'),
(450, 'tidak_perlu', 'negatif'),
(451, 'tidak_salah', 'positif'),
(452, 'tidak_terlihat', 'negatif'),
(453, 'tim', 'positif'),
(454, 'timbal_balik', 'positif'),
(455, 'tindak_nyata', 'positif'),
(456, 'tingkat', 'positif'),
(457, 'tipis', 'negatif'),
(458, 'tipu', 'negatif'),
(459, 'tolak', 'negatif'),
(460, 'tolol ', 'negatif'),
(461, 'top', 'positif'),
(462, 'trending ', 'positif'),
(463, 'tuding ', 'negatif'),
(464, 'tukar', 'negatif'),
(465, 'tumbal', 'negatif'),
(466, 'turun', 'positif'),
(467, 'ungkap', 'netral'),
(468, 'tutup_usia', 'negatif'),
(469, 'utuh', 'positif'),
(470, 'bukti_video', 'positif'),
(471, 'waduh', 'negatif'),
(472, 'wahid', 'positif'),
(473, 'wakil_rakyat', 'positif'),
(474, 'wow', 'positif'),
(475, 'adopsi_anak', 'positif'),
(476, 'adopsi', 'positif'),
(477, 'dominasi', 'positif'),
(478, 'seneng', 'positif'),
(479, 'minimal', 'negatif'),
(480, 'adik', 'positif'),
(481, 'lebih_suka', 'positif'),
(482, 'mirip', 'positif'),
(483, 'asisten', 'positif'),
(484, 'kampret', 'negatif'),
(485, 'rebut', 'negatif'),
(486, 'teman', 'positif'),
(487, 'nikung', 'negatif'),
(488, 'tikung', 'negatif'),
(489, 'dukung', 'positif'),
(490, 'semoga', 'positif'),
(491, 'tabah', 'positif'),
(492, 'hadap', 'positif'),
(493, 'coba', 'positif'),
(494, 'hidup', 'positif'),
(495, 'dera', 'negatif'),
(496, 'naik', 'positif'),
(497, 'pangkat', 'positif'),
(498, 'nikah', 'positif'),
(499, 'nikah_siri', 'negatif'),
(500, 'ngenes', 'negatif'),
(501, 'cerita', 'positif'),
(502, 'gaya', 'positif'),
(503, 'main', 'positif'),
(504, 'prancis', 'positif'),
(505, 'ski', 'positif'),
(506, 'ski_air', 'positif'),
(507, 'pengen', 'positif'),
(508, 'golput', 'negatif'),
(509, 'kasih', 'positif'),
(510, 'alasan', 'negatif'),
(511, 'nebar', 'negatif'),
(512, 'takut', 'negatif'),
(513, 'bohong', 'negatif'),
(514, 'sisi', 'negatif'),
(515, 'opini', 'positif'),
(516, 'opini_bohong', 'negatif'),
(517, 'pasar', 'positif'),
(518, 'bukti_palsu', 'negatif'),
(519, 'menggiring_opini', 'negatif'),
(520, 'pasar_malam', 'positif'),
(521, 'special', 'positif'),
(522, 'ini_testing', 'positif'),
(523, 'bucin', 'negatif'),
(524, 'bisa_hamil', 'negatif'),
(525, 'penerus', 'positif'),
(526, 'ngebayangin', 'positif'),
(527, 'suara_lucinta', 'negatif'),
(528, 'cocol', 'negatif'),
(529, 'suka_banget', 'positif'),
(530, 'wudhu', 'positif'),
(531, 'solat', 'positif'),
(532, 'mualaf', 'positif'),
(533, 'islam', 'positif'),
(534, 'muslim', 'positif'),
(535, 'dipuji', 'positif'),
(536, 'diuji', 'positif'),
(537, 'masuk_islam', 'positif'),
(538, 'masa_kalah', 'negatif'),
(539, 'seseneng', 'negatif'),
(540, 'diskualifikasi', 'negatif'),
(541, 'pandai', 'positif'),
(542, 'tak_pandai', 'negatif'),
(543, 'tidak_pandai', 'negatif'),
(544, 'kesaksian', 'positif'),
(545, 'membuktikan', 'positif'),
(546, 'tidak_membuktikan', 'negatif'),
(547, 'argumen', 'positif'),
(548, 'konsisten', 'positif'),
(549, 'terlilit', 'negatif'),
(550, 'utang', 'negatif'),
(551, 'prinsip', 'positif'),
(552, 'perjuangan', 'positif'),
(553, 'menemani', 'positif'),
(554, 'bangkit', 'positif'),
(555, 'beruntung', 'positif'),
(556, 'tangis', 'negatif'),
(557, 'haru', 'positif'),
(558, 'unsubscribe', 'negatif'),
(559, 'subscribe', 'positif'),
(560, 'youtuber', 'positif'),
(561, 'bgst', 'negatif'),
(562, 'bangsat', 'negatif'),
(563, 'semakin_dibenci', 'negatif'),
(564, 'semakin_dicintai', 'positif'),
(565, 'ngakuin', 'positif'),
(566, 'hancur_hatiku', 'negatif'),
(567, 'preman', 'negatif'),
(568, 'kurusan', 'negatif'),
(569, 'humble', 'positif'),
(570, 'support', 'positif'),
(571, 'surat_cinta', 'positif'),
(572, 'ampun', 'negatif'),
(573, 'minta_ampun', 'positif'),
(574, 'bintang', 'positif'),
(575, 'hidup', 'positif'),
(576, 'hidup_makmur', 'positif'),
(577, 'berkah', 'positif'),
(578, 'keberpihakan', 'negatif'),
(579, 'janji', 'positif'),
(580, 'janji_manis', 'negatif'),
(581, 'pantas', 'positif'),
(582, 'terbaik', 'positif'),
(583, 'kecurangan', 'negatif'),
(584, 'salah_input', 'negatif'),
(585, 'hoax', 'negatif'),
(586, 'percaya_hoax', 'negatif'),
(587, 'hujat', 'negatif'),
(588, 'geli', 'negatif'),
(589, 'salim', 'negatif'),
(590, 'puji', 'positif'),
(591, 'hutang', 'negatif'),
(592, 'penista', 'negatif'),
(593, 'orang_baik', 'positif'),
(594, 'orang_jahat', 'negatif'),
(595, 'keponakan', 'positif'),
(596, 'ribut', 'negatif'),
(597, 'fanatik', 'positif'),
(598, 'bahas', 'netral'),
(599, 'tidak', 'negatif'),
(600, 'ucap', 'netral'),
(601, 'sampai', 'netral'),
(602, 'terpilih ', 'positif'),
(603, 'pilih', 'positif'),
(604, 'kepentingan', 'netral'),
(605, 'penting', 'netral'),
(606, 'rakyat', 'netral'),
(607, 'pernah', 'netral'),
(608, '\n\n\n\nsenang', 'positif'),
(609, 'cakap', 'netral'),
(610, 'best', 'positif'),
(611, 'sejati', 'positif'),
(612, ' benci', 'negatif'),
(613, 'sedih', 'negatif'),
(614, 'tolak', 'positif'),
(615, ' jendral', 'positif'),
(616, 'tunggu', 'netral'),
(617, 'gabung', 'netral'),
(618, 'perjuangan', 'positif'),
(619, 'juang', 'positif'),
(620, 'temu', 'netral'),
(621, 'guyub', 'positif'),
(622, 'masyarakat', 'netral'),
(623, 'terpukul', 'negatif'),
(624, 'pukul', 'negatif'),
(625, 'tinggal', 'negatif'),
(626, 'kebersamaan', 'positif'),
(627, ' membangun', 'positif'),
(628, 'bangun', 'positif'),
(629, 'menghargai', 'positif'),
(630, 'harga', 'positif'),
(631, 'hargai', 'positif'),
(632, 'punya', 'positif'),
(633, 'sikap', 'netral'),
(634, 'tidak', 'negatif'),
(635, 'memanfaatkan', 'negatif'),
(636, 'manfaatkan', 'negatif'),
(637, 'hikmah', 'positif'),
(638, 'himbau', 'netral'),
(639, 'saran', 'netral'),
(640, 'komunis', 'negatif'),
(641, 'penipu', 'negatif'),
(642, 'tipu', 'negatif'),
(643, 'terimakasih', 'positif'),
(644, 'tersenyum', 'positif'),
(645, 'senyum', 'positif'),
(646, 'ucapan', 'netral'),
(647, 'koalisi', 'netral'),
(648, 'jawab', 'netral'),
(649, 'unfollow ', 'negatif'),
(650, 'sakit', 'negatif'),
(651, 'pedoman', 'positif'),
(652, 'setuju', 'positif'),
(653, 'oposisi', 'netral'),
(654, 'makan', 'netral'),
(655, 'bersih', 'positif'),
(656, 'sampah', 'negatif'),
(657, 'positif', 'positif'),
(658, 'negatif', 'negatif'),
(659, ' rezim', 'netral'),
(660, 'tenggelamkan', 'negatif'),
(661, 'tenggelam', 'negatif'),
(662, 'komplot', 'negatif'),
(663, 'komplotan', 'negatif'),
(664, 'tulus', 'positif'),
(665, 'khianat', 'negatif'),
(666, 'berkhianat', 'negatif'),
(667, 'menghianati', 'negatif'),
(668, 'menghianat', 'negatif'),
(669, 'salut', 'positif'),
(670, 'kontestasi', 'negatif'),
(671, 'usai', 'positif');
-- --------------------------------------------------------
--
-- Table structure for table `tb_admin`
--
CREATE TABLE `tb_admin` (
`kode_admin` int(11) NOT NULL,
`tanggal` date DEFAULT NULL,
`nama_admin` varchar(30) DEFAULT NULL,
`username` varchar(25) DEFAULT NULL,
`password` varchar(25) DEFAULT NULL,
`telepon` varchar(20) DEFAULT NULL,
`email` varchar(100) DEFAULT NULL,
`authKey` varchar(50) NOT NULL,
`accessToken` varchar(50) NOT NULL,
`status` enum('Aktif','Tidak Aktif') DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
--
-- Dumping data for table `tb_admin`
--
INSERT INTO `tb_admin` (`kode_admin`, `tanggal`, `nama_admin`, `username`, `password`, `telepon`, `email`, `authKey`, `accessToken`, `status`) VALUES
(1, '2019-08-18', 'admin', 'admin', 'admin', '08123456789', '<EMAIL>', '', '', 'Aktif'),
(2, NULL, 'cucus', 'c', 'c', '081314198283', '<EMAIL>', '', '', 'Aktif'),
(5, '2019-10-29', 'Company', 'company', '123', '0856234324', '<EMAIL>', 'auth12', 'token1', 'Aktif'),
(7, '2019-12-22', '<NAME>', 'burhan', 'burhan', '081256990432', '<EMAIL>', '', '', 'Aktif');
--
-- Indexes for dumped tables
--
--
-- Indexes for table `crawl_data`
--
ALTER TABLE `crawl_data`
ADD PRIMARY KEY (`id`) USING BTREE;
--
-- Indexes for table `data_training`
--
ALTER TABLE `data_training`
ADD PRIMARY KEY (`id_data_training`);
--
-- Indexes for table `kata_dasar`
--
ALTER TABLE `kata_dasar`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `tb_admin`
--
ALTER TABLE `tb_admin`
ADD PRIMARY KEY (`kode_admin`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `crawl_data`
--
ALTER TABLE `crawl_data`
MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=418;
--
-- AUTO_INCREMENT for table `data_training`
--
ALTER TABLE `data_training`
MODIFY `id_data_training` bigint(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=1807;
--
-- AUTO_INCREMENT for table `kata_dasar`
--
ALTER TABLE `kata_dasar`
MODIFY `id` int(100) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=672;
--
-- AUTO_INCREMENT for table `tb_admin`
--
ALTER TABLE `tb_admin`
MODIFY `kode_admin` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=12;
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 */;
|
--
-- PORTALS
--
BEGIN;
DECLARE foo1 CURSOR FOR SELECT * FROM tenk1;
DECLARE foo2 CURSOR FOR SELECT * FROM tenk2;
DECLARE foo3 CURSOR FOR SELECT * FROM tenk1;
DECLARE foo4 CURSOR FOR SELECT * FROM tenk2;
DECLARE foo5 CURSOR FOR SELECT * FROM tenk1;
DECLARE foo6 CURSOR FOR SELECT * FROM tenk2;
DECLARE foo7 CURSOR FOR SELECT * FROM tenk1;
DECLARE foo8 CURSOR FOR SELECT * FROM tenk2;
DECLARE foo9 CURSOR FOR SELECT * FROM tenk1;
DECLARE foo10 CURSOR FOR SELECT * FROM tenk2;
DECLARE foo11 CURSOR FOR SELECT * FROM tenk1;
DECLARE foo12 CURSOR FOR SELECT * FROM tenk2;
DECLARE foo13 CURSOR FOR SELECT * FROM tenk1;
DECLARE foo14 CURSOR FOR SELECT * FROM tenk2;
DECLARE foo15 CURSOR FOR SELECT * FROM tenk1;
DECLARE foo16 CURSOR FOR SELECT * FROM tenk2;
DECLARE foo17 CURSOR FOR SELECT * FROM tenk1;
DECLARE foo18 CURSOR FOR SELECT * FROM tenk2;
DECLARE foo19 CURSOR FOR SELECT * FROM tenk1;
DECLARE foo20 CURSOR FOR SELECT * FROM tenk2;
DECLARE foo21 CURSOR FOR SELECT * FROM tenk1;
DECLARE foo22 CURSOR FOR SELECT * FROM tenk2;
DECLARE foo23 CURSOR FOR SELECT * FROM tenk1;
FETCH 1 in foo1;
FETCH 2 in foo2;
FETCH 3 in foo3;
FETCH 4 in foo4;
FETCH 5 in foo5;
FETCH 6 in foo6;
FETCH 7 in foo7;
FETCH 8 in foo8;
FETCH 9 in foo9;
FETCH 10 in foo10;
FETCH 11 in foo11;
FETCH 12 in foo12;
FETCH 13 in foo13;
FETCH 14 in foo14;
FETCH 15 in foo15;
FETCH 16 in foo16;
FETCH 17 in foo17;
FETCH 18 in foo18;
FETCH 19 in foo19;
FETCH 20 in foo20;
FETCH 21 in foo21;
FETCH 22 in foo22;
FETCH 23 in foo23;
FETCH backward 1 in foo23;
FETCH backward 2 in foo22;
FETCH backward 3 in foo21;
FETCH backward 4 in foo20;
FETCH backward 5 in foo19;
FETCH backward 6 in foo18;
FETCH backward 7 in foo17;
FETCH backward 8 in foo16;
FETCH backward 9 in foo15;
FETCH backward 10 in foo14;
FETCH backward 11 in foo13;
FETCH backward 12 in foo12;
FETCH backward 13 in foo11;
FETCH backward 14 in foo10;
FETCH backward 15 in foo9;
FETCH backward 16 in foo8;
FETCH backward 17 in foo7;
FETCH backward 18 in foo6;
FETCH backward 19 in foo5;
FETCH backward 20 in foo4;
FETCH backward 21 in foo3;
FETCH backward 22 in foo2;
FETCH backward 23 in foo1;
CLOSE foo1;
CLOSE foo2;
CLOSE foo3;
CLOSE foo4;
CLOSE foo5;
CLOSE foo6;
CLOSE foo7;
CLOSE foo8;
CLOSE foo9;
CLOSE foo10;
CLOSE foo11;
CLOSE foo12;
end;
|
USE [TrainTasker]
GO
/****** Object: Table [dbo].[UserRecord] Script Date: 05/19/2021 23:44:56 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
SET ANSI_PADDING ON
GO
CREATE TABLE [dbo].[UserRecord](
[ID] [int] IDENTITY(1,1) NOT NULL,
[userID] [varchar](128) NULL,
[screenName] [varchar](128) NULL,
[email] [varchar](128) NULL,
[password] [varchar](128) NULL,
[balance] [varchar](1) NULL,
[isRequester] [varchar](5) NULL,
[guid] [varchar](36) NULL,
PRIMARY KEY CLUSTERED
(
[ID] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]
GO
SET ANSI_PADDING OFF
GO
|
<filename>application/heyrehber.sql
/*
SQLyog Community v13.1.1 (64 bit)
MySQL - 10.1.30-MariaDB : Database - heyrehber
*********************************************************************
*/
/*!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*/`heyrehber` /*!40100 DEFAULT CHARACTER SET utf8 */;
USE `heyrehber`;
/*Table structure for table `agencies` */
DROP TABLE IF EXISTS `agencies`;
CREATE TABLE `agencies` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(64) NOT NULL,
`number` varchar(64) NOT NULL,
`company_name` varchar(64) DEFAULT NULL,
`company_address` varchar(128) DEFAULT NULL,
`company_phone` varchar(64) DEFAULT NULL,
`contact_person` varchar(64) DEFAULT NULL,
`email` varchar(64) NOT NULL,
`contact_person_mobile` varchar(64) DEFAULT NULL,
`certificate` varchar(128) DEFAULT NULL,
`password` varchar(64) NOT NULL,
`created_date` datetime NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=17 DEFAULT CHARSET=utf8;
/*Data for the table `agencies` */
insert into `agencies`(`id`,`name`,`number`,`company_name`,`company_address`,`company_phone`,`contact_person`,`email`,`contact_person_mobile`,`certificate`,`password`,`created_date`) values
(2,'qqqttt','123123','qqqttt','qqqttt','123123','qqqttt','<EMAIL>','123123','uploads/agency/Wendy1.png','e85823b4e7db1064f4301e1c74978199','2018-11-12 18:46:31'),
(3,'www','123123','www','www','123123','www','<EMAIL>','123123','uploads/agency/Wendy.jpg','4eae35f1b35977a00ebd8086c259d4c9','2018-11-08 16:09:05'),
(9,'rrr','123123','rrr','rrrrrrrr','123123','rrr','<EMAIL>','1231231231','uploads/agency/download (1).jpg','44f437ced647ec3f40fa0841041871cd','2018-11-09 12:31:12'),
(15,'etete','12352','etete','etetetetet','235231','etet','<EMAIL>','3252','uploads/agency/download.jpg','4de1b7a4dc53e4a84c25ffb7cdb580ee','2018-11-12 19:13:24'),
(16,'new agency','124123','New Agency','company address','3242342','contact person','<EMAIL>','2534234234r','uploads/agency/images (4).jpg','3bfb04fca479ac4a8d4ddd4b02868fd0','2018-11-22 05:46:10');
/*Table structure for table `agency_reviews` */
DROP TABLE IF EXISTS `agency_reviews`;
CREATE TABLE `agency_reviews` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`agency` varchar(64) NOT NULL,
`guide` varchar(64) NOT NULL,
`review` varbinary(512) DEFAULT NULL,
`rating` float DEFAULT NULL,
`status` varchar(64) DEFAULT NULL,
`submission_date` datetime NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8;
/*Data for the table `agency_reviews` */
insert into `agency_reviews`(`id`,`agency`,`guide`,`review`,`rating`,`status`,`submission_date`) values
(1,'rrr','fff','rrrrrrrrrrrrrrrrrrxxxxxxxxxxxxxxxxxfffffff',2,'','2018-11-16 08:54:38'),
(3,'etete','fff','eteteteteteteteggggggggggggggggg',5,'active','2018-11-16 08:54:30'),
(4,'qqqttt','fff','zzzzzzzzzzzzzzzzzzwwwqqqqqqqqqttttttt',3,'active','2018-11-16 08:54:08'),
(5,'etete','zzz','etetetetetetetzzzzzzzzzzzzzzzzzzzzz',4,'active','2018-11-16 08:53:50');
/*Table structure for table `announcements` */
DROP TABLE IF EXISTS `announcements`;
CREATE TABLE `announcements` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`category` varchar(64) NOT NULL,
`subject` varchar(64) NOT NULL,
`description` text,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;
/*Data for the table `announcements` */
insert into `announcements`(`id`,`category`,`subject`,`description`) values
(1,'[\"subject1\",\"subject6\",\"subject3\"]','subject2','<h1 style=\"text-align: center;\"><em><span style=\"text-decoration: underline;\"><span style=\"text-decoration: line-through;\">This is subject2</span></span></em></h1>'),
(2,'[\"subject4\",\"subject5\"]','subject1','<p style=\"text-align: right;\"><span style=\"text-decoration: underline;\"><em>This is description of subject1</em></span></p>');
/*Table structure for table `calendar` */
DROP TABLE IF EXISTS `calendar`;
CREATE TABLE `calendar` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`title` varchar(64) NOT NULL,
`requester` varchar(64) NOT NULL,
`tour_type` varchar(64) DEFAULT NULL,
`days` varchar(64) DEFAULT NULL,
`start_date` date DEFAULT NULL,
`finish_date` date DEFAULT NULL,
`event_date` date DEFAULT NULL,
`start_time` time DEFAULT NULL,
`finish_time` time DEFAULT NULL,
`location` varchar(64) DEFAULT NULL,
`description` varchar(512) DEFAULT NULL,
`activity_color` varchar(64) DEFAULT NULL,
`created_date` datetime DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=30 DEFAULT CHARSET=utf8;
/*Data for the table `calendar` */
insert into `calendar`(`id`,`title`,`requester`,`tour_type`,`days`,`start_date`,`finish_date`,`event_date`,`start_time`,`finish_time`,`location`,`description`,`activity_color`,`created_date`) values
(13,'event6','afaf','Night Tour','Several Days','2018-11-07','2018-11-14','2018-11-08','15:33:00','21:08:00','location6','description of event6','#27AE60','2018-11-24 00:00:00'),
(14,'event6','afaf','Night Tour','Several Days','2018-11-07','2018-11-14','2018-11-09','15:33:00','21:08:00','location6','description of event6','#27AE60','2018-11-24 00:00:00'),
(15,'event6','afaf','Night Tour','Several Days','2018-11-07','2018-11-14','2018-11-10','15:33:00','21:08:00','location6','description of event6','#27AE60','2018-11-24 00:00:00'),
(16,'event6','afaf','Night Tour','Several Days','2018-11-07','2018-11-14','2018-11-11','15:33:00','21:08:00','location6','description of event6','#27AE60','2018-11-24 00:00:00'),
(17,'event6','afaf','Night Tour','Several Days','2018-11-07','2018-11-14','2018-11-12','15:33:00','21:08:00','location6','description of event6','#27AE60','2018-11-24 00:00:00'),
(19,'event6','afaf','Night Tour','Several Days','2018-11-07','2018-11-14','2018-11-14','15:33:00','21:08:00','location6','description of event6','#27AE60','2018-11-24 00:00:00'),
(20,'event1','abcd','Regional Tour','One Day','2018-11-12','2018-11-12','2018-11-12','11:11:00','14:22:00','location1','description of event1','#3498DB','2018-11-24 00:00:00'),
(21,'event2','heyrehber','Regional Tour','One Day','2018-11-24','2018-11-24','2018-11-24','11:11:00','18:06:00','location2','description of event2','#3498DB','2018-11-24 00:00:00'),
(22,'event3','bbb','Night Tour','Several Days','2018-11-10','2018-12-12','2018-11-10','18:03:00','20:02:00','location3','description of event3','#F1C40F','2018-11-24 00:00:00'),
(23,'event3','bbb','Night Tour','Several Days','2018-11-10','2018-12-12','2018-11-11','18:03:00','20:02:00','location3','description of event3','#F1C40F','2018-11-24 00:00:00'),
(24,'event3','bbb','Night Tour','Several Days','2018-11-10','2018-12-12','2018-11-12','18:03:00','20:02:00','location3','description of event3','#F1C40F','2018-11-24 00:00:00'),
(25,'my event1','abcd','Daily Tour','Several Days','2018-11-07','2018-11-09','2018-11-07','09:22:00','17:33:00','my location1','description of my event1','#F39C12','2018-11-24 00:00:00'),
(27,'my event','abcd','Daily Tour','Several Days','2018-11-07','2018-11-09','2018-11-09','10:22:00','15:33:00','my location','description of my event','#C0392B','2018-11-24 00:00:00'),
(28,'my event2','abcd','Daily Tour','One Day','2018-11-25','2018-11-25','2018-11-25','00:00:00','12:00:00','my location2','description of event2','#27AE60','2018-11-24 00:00:00'),
(29,'event4','abcd','Regional Tour','One Day','2018-11-26','2018-11-26','2018-11-26','08:00:00','17:00:00','location5','this is edited description of event4','#C0392B','2018-11-25 05:20:50');
/*Table structure for table `cities` */
DROP TABLE IF EXISTS `cities`;
CREATE TABLE `cities` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`city` varchar(64) NOT NULL,
`city_code` varchar(64) DEFAULT NULL,
`country` varchar(64) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=44 DEFAULT CHARSET=utf8;
/*Data for the table `cities` */
insert into `cities`(`id`,`city`,`city_code`,`country`) values
(18,'Beijing','BJ','China'),
(19,'asdfasdf','a','q'),
(20,'sdrs','b','e'),
(21,'d','c','q'),
(22,'sdfs','v','w'),
(23,'sdtwet','b','r'),
(24,'sdsq','h','w'),
(25,'sdsdgsg','s','e'),
(26,'s','d','w'),
(27,'sedtweyw','a','w'),
(28,'sdyfh','v','r'),
(29,'sdfty','d','e'),
(30,'fhhery','a','e'),
(31,'tyityu','v','r'),
(32,'yuiyuir','a','d'),
(33,'ruyartua','g','s'),
(35,'astwet','a','i'),
(36,'wettywe','b','j'),
(37,'dfhrtru','c','k'),
(38,'weruyfw','d','l'),
(39,'wertwrrtjtj','e','m'),
(40,'weryuyjhfv','f','b'),
(41,'dfhrtur','g','o'),
(42,'uyiouyiry','t','p'),
(43,'yuiohty','u','q');
/*Table structure for table `countries` */
DROP TABLE IF EXISTS `countries`;
CREATE TABLE `countries` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`country` varchar(64) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=35 DEFAULT CHARSET=utf8;
/*Data for the table `countries` */
insert into `countries`(`id`,`country`) values
(1,'Russia'),
(2,'Singapore'),
(15,'Spain'),
(16,'Brazil'),
(17,'Ecuador'),
(18,'Angola'),
(19,'Bulgaria'),
(20,'Argentina'),
(21,'Belgium'),
(22,'Chile'),
(24,'Iran, Islamic Republic Of'),
(25,'United Arab Emirates'),
(26,'Japan'),
(27,'Viet Nam'),
(28,'Russian Federation'),
(29,'Thailand'),
(30,'Bangladesh'),
(31,'United State'),
(32,'New Zealand'),
(33,'Venezuela'),
(34,'Senegal');
/*Table structure for table `departments` */
DROP TABLE IF EXISTS `departments`;
CREATE TABLE `departments` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`department` varchar(64) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8;
/*Data for the table `departments` */
insert into `departments`(`id`,`department`) values
(1,'department1'),
(2,'department2'),
(3,'department3'),
(4,'department4'),
(5,'department6');
/*Table structure for table `editors` */
DROP TABLE IF EXISTS `editors`;
CREATE TABLE `editors` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(64) NOT NULL,
`sirname` varchar(64) NOT NULL,
`supervisor` varchar(64) DEFAULT NULL,
`department` varchar(512) DEFAULT NULL,
`number` varchar(64) DEFAULT NULL,
`email` varchar(64) DEFAULT NULL,
`certificate` varchar(64) DEFAULT NULL,
`password` varchar(64) NOT NULL,
`created_date` datetime NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;
/*Data for the table `editors` */
insert into `editors`(`id`,`name`,`sirname`,`supervisor`,`department`,`number`,`email`,`certificate`,`password`,`created_date`) values
(1,'editor','user1','super visor3','[\"department2\"]','262342342','<EMAIL>','uploads/editor/images (11).jpg','c9330587565205a5b8345f60c620ecc6','2018-11-17 10:49:25'),
(2,'editor','user2','super visor4','[\"department2\",\"department4\"]','235','<EMAIL>','uploads/editor/little Peterpan.jpg','d<PASSWORD>8cd98<PASSWORD>00998ecf8427e','2018-11-17 10:58:04');
/*Table structure for table `guide_requests` */
DROP TABLE IF EXISTS `guide_requests`;
CREATE TABLE `guide_requests` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`title` varchar(64) NOT NULL,
`requester` varchar(64) NOT NULL,
`range` varchar(64) NOT NULL,
`regions` varchar(512) DEFAULT NULL,
`route` varchar(64) DEFAULT NULL,
`tour_type` varchar(64) DEFAULT NULL,
`guest_nationality` varchar(64) DEFAULT NULL,
`requested_language` varchar(64) DEFAULT NULL,
`guide_number` int(11) DEFAULT NULL,
`guest_number` int(11) DEFAULT NULL,
`start_date` date DEFAULT NULL,
`finish_date` date DEFAULT NULL,
`start_location` varchar(64) DEFAULT NULL,
`finish_location` varchar(64) DEFAULT NULL,
`description` varchar(512) DEFAULT NULL,
`created_date` datetime NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8;
/*Data for the table `guide_requests` */
insert into `guide_requests`(`id`,`title`,`requester`,`range`,`regions`,`route`,`tour_type`,`guest_nationality`,`requested_language`,`guide_number`,`guest_number`,`start_date`,`finish_date`,`start_location`,`finish_location`,`description`,`created_date`) values
(4,'guide request','heyrehber','Domestic','[\"Aegean\",\"Black Sea\"]','route1-route2-route3','Transfer','Russian','Russian',4,7,'0111-11-11','2222-02-22','start location','finish location','this is description','2018-11-21 05:41:37'),
(5,'guide request1','etet','Overseas','','route1-route2-route3','Night Tour','Chinese','Chinese',4,7,'1111-11-11','2222-02-22','start location','finish location','this is description1','2018-11-22 05:38:37'),
(6,'guide request2','etet','Domestic','[\"Aegean\",\"Black Sea\"]','route1-route2-route3-route4-route5','Transfer','Japanese','Japanese',4,12,'1111-11-11','2222-02-22','start location1','finish location1',' this is description1','2018-11-22 10:09:37'),
(7,'new request3','www','Domestic','[\"Eastern Anatolia\",\"Aegean\",\"South-Eastern Anatolia\",\"Marmara\"]','route9-route11','Regional Tour','US','English',11,4,'0111-11-11','3331-02-17','start location4','finish location5','this is description3','2018-11-22 09:14:45'),
(8,'request1','xxx','Domestic','[\"Aegean\",\"Black Sea\"]','route9-route11','Daily Tour','Japanese','Japanese',4,6,'2018-03-04','2018-03-09','start location1','finish location5','this is description6','2018-11-22 01:20:10'),
(9,'request2','xxx','Overseas','','route9-route11-route3','Night Tour','US','English',5,2,'2012-03-31','2012-04-02','start location1','finish location1',' this is description7','2018-11-22 01:23:45'),
(10,'request3','xxx','Domestic','[\"Mediterrianean\",\"Aegean\",\"South-Eastern Anatolia\",\"Black Sea\",\"Marmara\"]','route1-route3-route3','Daily Tour','Russian','Russian',2,7,'0011-11-11','2222-02-22','start location4','finish location5','This is description8','2018-11-22 01:25:08'),
(11,'abcd request','abcd','Domestic','[\"Aegean\",\"Black Sea\",\"Marmara\"]','route9-route11-route3','Night Tour','Japanese','Japanese',4,22,'2018-11-06','2018-11-09','start location4','finish location5',' abcd description','2018-11-26 01:00:19');
/*Table structure for table `guide_reviews` */
DROP TABLE IF EXISTS `guide_reviews`;
CREATE TABLE `guide_reviews` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`guide` varchar(64) NOT NULL,
`agency` varchar(64) NOT NULL,
`review` varchar(256) NOT NULL,
`rating` float NOT NULL,
`status` varchar(64) DEFAULT NULL,
`submission_date` datetime DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8;
/*Data for the table `guide_reviews` */
insert into `guide_reviews`(`id`,`guide`,`agency`,`review`,`rating`,`status`,`submission_date`) values
(1,'aaa','rrr','asdfasdfasdf',4,'active','2018-11-16 08:46:55'),
(2,'fff','qqqttt','asdfasdfasdfasdfasdfasdfasdfasdfasdfasdfasdfa',5,'active','2018-11-15 09:52:25'),
(3,'ggg','rrr','bbbbbbbbbbbbbbb',5,'active','2018-11-15 06:25:15'),
(4,'aaa','etete','eettttttttttttttttttttttttttttttttttteeeeeeeeee',1,'','2018-11-16 08:47:03'),
(6,'aaa','qqqttt','gggggggggggggttttttttttttttttttaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa',2,'active','2018-11-16 08:46:46'),
(7,'fff','etete','asdfasdfasdfasdfasdf',4,'active','2018-11-18 05:22:04'),
(8,'bbb','rrr','bbbbbbbbbbrrrrrrrrrrrrrrrrrr',1,'active','2018-11-18 05:22:41'),
(9,'aaa','www','aaaaaaaaaaaawwwwwwwwwwaaaaaaaaaa',4,'','2018-11-16 08:41:31');
/*Table structure for table `guides` */
DROP TABLE IF EXISTS `guides`;
CREATE TABLE `guides` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(64) NOT NULL,
`sirname` varchar(64) DEFAULT NULL,
`certificate_number` varchar(64) DEFAULT NULL,
`region` varchar(128) DEFAULT NULL,
`languages` varchar(128) DEFAULT NULL,
`address` varchar(128) DEFAULT NULL,
`phone_number` varchar(64) DEFAULT NULL,
`email` varchar(64) NOT NULL,
`password` varchar(64) NOT NULL,
`photo` varchar(128) DEFAULT NULL,
`certificate_front_picture` varchar(128) DEFAULT NULL,
`certificate_back_picture` varchar(128) DEFAULT NULL,
`created_date` datetime NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=34 DEFAULT CHARSET=utf8;
/*Data for the table `guides` */
insert into `guides`(`id`,`name`,`sirname`,`certificate_number`,`region`,`languages`,`address`,`phone_number`,`email`,`password`,`photo`,`certificate_front_picture`,`certificate_back_picture`,`created_date`) values
(12,'aaa','aaa','123123','aaa','[\"English\",\"Turkish\",\"Chinese\"]','asdfasdfasdfasdf','123123','<EMAIL>','d<PASSWORD>','uploads/guide/photo/images (3).png','uploads/guide/certificate_front/download (3).jpg','uploads/guide/certificate_back/download (3).jpg','2018-11-15 17:59:12'),
(13,'bbb','bbb','222','bbb','[\"English\",\"Turkish\"]','bbb','123123','<EMAIL>','0<PASSWORD>','uploads/guide/photo/download (1).jpg','uploads/guide/certificate_front/download (2).jpg','uploads/guide/certificate_back/download (2).jpg','2018-11-08 14:20:22'),
(15,'fff','fff','123123123','fffffff','[\"English\",\"Japanese\",\"Turkish\"]','fffffffff','123123123','<EMAIL>','343d9040a671c45832ee5381860e2996','uploads/guide/photo/download.jpg','uploads/guide/certificate_front/download (3).png','uploads/guide/certificate_back/download (3).png','2018-11-09 11:34:18'),
(16,'ggg','ggg','','','[\"English\",\"Turkish\"]','','','<EMAIL>','ba248c985ace94863880921d8900c53f','uploads/guide/photo/download.jpg','uploads/guide/certificate_front/download (1).jpg','uploads/guide/certificate_back/download (1).jpg','2018-11-09 14:26:12'),
(17,'hhh','hhh','','','[\"Turkish\",\"Japanese\"]','','','<EMAIL>','<PASSWORD>','uploads/guide/photo/download.jpg','uploads/guide/certificate_front/download (2).jpg','uploads/guide/certificate_back/download (2).jpg','2018-11-09 14:34:11'),
(18,'zzz','zzz','','','[\"Turkish\",\"Japanese\"]','','','<EMAIL>','f3abb86bd34cf4d52698f14c0da1dc60','uploads/guide/photo/download (1).jpg','uploads/guide/certificate_front/download (4).png','uploads/guide/certificate_back/download (4).png','2018-11-09 14:43:26'),
(19,'xxx','xxx','','','[\"English\",\"Turkish\"]','','','<EMAIL>','f561aaf6ef0bf14d4208bb46a4ccb3ad','uploads/guide/photo/download (3).png','uploads/guide/certificate_front/download (4).png','uploads/guide/certificate_back/download (4).png','2018-11-09 14:49:27'),
(32,'abcd','abcd','123123','abcd','[\"English\",\"Turkish\",\"Chinese\"]','abcd','123123','<EMAIL>','d41d8cd98f00b204e9800998ecf8427e','uploads/guide/photo/download (2).jpg','uploads/guide/certificate_front/download (2).jpg','uploads/guide/certificate_back/download (2).jpg','2018-11-12 16:35:40'),
(33,'afaf','afaf','1231241','asdfafasf','[\"Turkish\",\"Japanese\"]','afasdfasdf','123123','<EMAIL>','35abef9cacf725f2eb638651f4c90b2e','uploads/guide/photo/download.jpg','uploads/guide/certificate_front/download (3).jpg','uploads/guide/certificate_back/download (3).png','2018-11-12 17:05:07');
/*Table structure for table `languages` */
DROP TABLE IF EXISTS `languages`;
CREATE TABLE `languages` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`language` varchar(64) NOT NULL,
`language_code` varchar(64) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8;
/*Data for the table `languages` */
insert into `languages`(`id`,`language`,`language_code`) values
(1,'English','en'),
(2,'Turkish','tr'),
(4,'Japanese','jp'),
(5,'Chinese','ch'),
(8,'French','fr'),
(9,'Spanish','sp');
/*Table structure for table `museums` */
DROP TABLE IF EXISTS `museums`;
CREATE TABLE `museums` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(64) NOT NULL,
`description` varchar(512) DEFAULT NULL,
`summer_start_time` time DEFAULT NULL,
`summer_end_time` time DEFAULT NULL,
`winter_start_time` time DEFAULT NULL,
`winter_end_time` time DEFAULT NULL,
`summer_open_days` varchar(128) DEFAULT NULL,
`winter_open_days` varchar(128) DEFAULT NULL,
`entrance_price` float DEFAULT NULL,
`address` varchar(64) DEFAULT NULL,
`city` varchar(64) DEFAULT NULL,
`country` varchar(64) DEFAULT NULL,
`web` varchar(64) DEFAULT NULL,
`email` varchar(64) NOT NULL,
`number` varchar(64) DEFAULT NULL,
`contact_person` varchar(64) DEFAULT NULL,
`contact_number` varchar(64) DEFAULT NULL,
`status` varchar(64) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8;
/*Data for the table `museums` */
insert into `museums`(`id`,`name`,`description`,`summer_start_time`,`summer_end_time`,`winter_start_time`,`winter_end_time`,`summer_open_days`,`winter_open_days`,`entrance_price`,`address`,`city`,`country`,`web`,`email`,`number`,`contact_person`,`contact_number`,`status`) values
(3,'ms1','this is first museum','11:11:00','14:22:00','15:33:00','16:44:00','[\"Monday\",\"Wednesday\",\"Friday\"]','[\"Tuesday\",\"Friday\",\"Saturday\",\"Sunday\"]',235.2,'address','sdtwet','Ecuador','web','<EMAIL>','213523','person','23523','deactive'),
(4,'ms3','this is third museum','11:11:00','14:22:00','15:33:00','16:44:00','[\"Monday\",\"Thursday\",\"Friday\",\"Sunday\"]','[\"Monday\",\"Wednesday\",\"Friday\",\"Saturday\"]',35.23,'address','sdrs','Russia','web','<EMAIL>','235','person2','35234234','active');
/*Table structure for table `regions` */
DROP TABLE IF EXISTS `regions`;
CREATE TABLE `regions` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`region` varchar(64) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8;
/*Data for the table `regions` */
insert into `regions`(`id`,`region`) values
(1,'Mediterrianean'),
(2,'Eastern Anatolia'),
(3,'Aegean'),
(4,'South-Eastern Anatolia'),
(5,'Central Anatolia'),
(6,'Black Sea'),
(7,'Marmara');
/*Table structure for table `restaurant_categories` */
DROP TABLE IF EXISTS `restaurant_categories`;
CREATE TABLE `restaurant_categories` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`category` varchar(64) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=utf8;
/*Data for the table `restaurant_categories` */
insert into `restaurant_categories`(`id`,`category`) values
(1,'Noodle'),
(2,'Meat'),
(3,'Fish'),
(4,'Hamburger'),
(5,'Salad'),
(6,'Sandwich'),
(7,'Tea'),
(8,'Coffee'),
(9,'Italian foods'),
(10,'Cafe'),
(11,'Vegetables'),
(12,'Hotdog');
/*Table structure for table `restaurants` */
DROP TABLE IF EXISTS `restaurants`;
CREATE TABLE `restaurants` (
`id` int(64) NOT NULL AUTO_INCREMENT,
`name` varchar(64) DEFAULT NULL,
`category` varchar(64) DEFAULT NULL,
`description` varchar(512) DEFAULT NULL,
`rating` float DEFAULT NULL,
`legal_name` varchar(64) DEFAULT NULL,
`address` varchar(64) DEFAULT NULL,
`city` varchar(64) DEFAULT NULL,
`country` varchar(64) DEFAULT NULL,
`number` varchar(64) DEFAULT NULL,
`web` varchar(64) DEFAULT NULL,
`email` varchar(64) NOT NULL,
`contact_person` varchar(64) DEFAULT NULL,
`contact_number` varchar(64) DEFAULT NULL,
`contact_email` varchar(64) DEFAULT NULL,
`logo` varchar(64) DEFAULT NULL,
`status` varchar(64) NOT NULL,
`provider_email` varchar(64) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8;
/*Data for the table `restaurants` */
insert into `restaurants`(`id`,`name`,`category`,`description`,`rating`,`legal_name`,`address`,`city`,`country`,`number`,`web`,`email`,`contact_person`,`contact_number`,`contact_email`,`logo`,`status`,`provider_email`) values
(1,'res1','[\"Noodle\",\"Hamburger\",\"Salad\"]','asdfasdfasdfasdfasdf',4,'res1','asdfasdf','sdfs','Spain','3523522','sadfasdf','<EMAIL>','asdfasdfasd','235236523','<EMAIL>','uploads/restaurant/images (5).png','active','<EMAIL>'),
(2,'ressuggestion2','[\"Fish\",\"Sandwich\",\"Tea\"]','asdfasdfasdfasdfasdf',4,'etw23sdfasdf','address','sdfs','Bulgaria','23235234','asdfasdfasdfasdf','<EMAIL>','asdf','23352','<EMAIL>','uploads/restaurant/5bb9d4a8a3278ava-600x600.jpg','active','<EMAIL>'),
(3,'ressuggestion1','[\"Meat\"]','asdfasdfasdfasdf',5,'werwer','agasdrq','ruyartua','United Arab Emirates','234234','asdfasdt','<EMAIL>','asdtasdf','2352341','<EMAIL>','uploads/restaurant/Leon-recortado.jpg','active','<EMAIL>'),
(4,'ressuggestion3','[\"Fish\"]','asdfasdfasdfasdfasdfasdf',5,'asdfasdfasdf','qwerqwea','sdtwet','Russian Federation','235324','werasdfasd','<EMAIL>','asdfasdf','235234','<EMAIL>','uploads/restaurant/lion-drawing-wallpaper-60.jpg','active','<EMAIL>');
/*Table structure for table `shop_categories` */
DROP TABLE IF EXISTS `shop_categories`;
CREATE TABLE `shop_categories` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`category` varchar(64) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=14 DEFAULT CHARSET=utf8;
/*Data for the table `shop_categories` */
insert into `shop_categories`(`id`,`category`) values
(1,'Leather'),
(3,'Bags'),
(4,'Carpets'),
(5,'Furnitures'),
(6,'Handcraft'),
(7,'Clothes'),
(8,'Sports'),
(9,'Fruits'),
(10,'Vegetables'),
(11,'Toys'),
(12,'Drinks'),
(13,'Dish');
/*Table structure for table `shops` */
DROP TABLE IF EXISTS `shops`;
CREATE TABLE `shops` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(64) NOT NULL,
`category` varchar(64) DEFAULT NULL,
`description` varchar(512) DEFAULT NULL,
`rating` float DEFAULT NULL,
`legal_name` varchar(64) DEFAULT NULL,
`address` varchar(64) DEFAULT NULL,
`city` varchar(64) DEFAULT NULL,
`country` varchar(64) DEFAULT NULL,
`number` varchar(64) DEFAULT NULL,
`web` varchar(64) DEFAULT NULL,
`email` varchar(64) NOT NULL,
`contact_person` varchar(64) DEFAULT NULL,
`contact_number` varchar(64) DEFAULT NULL,
`contact_email` varchar(64) DEFAULT NULL,
`logo` varchar(64) DEFAULT NULL,
`status` varchar(64) NOT NULL,
`provider_email` varchar(64) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=17 DEFAULT CHARSET=utf8;
/*Data for the table `shops` */
insert into `shops`(`id`,`name`,`category`,`description`,`rating`,`legal_name`,`address`,`city`,`country`,`number`,`web`,`email`,`contact_person`,`contact_number`,`contact_email`,`logo`,`status`,`provider_email`) values
(9,'dddddd','[\"Clothes\"]','ddddddddddddd',3,'ddddddd','ddddddd','d','Brazil','2342342','ddddddddddd','<EMAIL>','ddddd','1235235','<EMAIL>','uploads/shop/download (3).png','active','<EMAIL>'),
(10,'aaaaaaaa','[\"Leather\"]','aaaaaaaaaaaaaaaaa',4,'aaaaa','aaaaaaaaaa','sdfs','Brazil','1111111','aaaaaa','<EMAIL>','aaaaaa','11111111','<EMAIL>','uploads/shop/download (3).jpg','deactive','<EMAIL>'),
(11,'sssssssssss','[\"Bags\",\"Clothes\",\"Sports\",\"Drinks\"]','ssssssssssss',5,'ssssssss','ssssssssbbbbbbb','sdtwet','Spain','444444','sssss','<EMAIL>','bbssssssssbbbbbbbbbb','11111111','<EMAIL>','uploads/shop/download (2).png','active','<EMAIL>'),
(12,'shop1','[\"Carpets\",\"Handcraft\"]','asdfasdfasdfasdf',3,'shop1','shop1 address','sdrs','Angola','235','shop1 web','<EMAIL>','person1','2362342','<EMAIL>','uploads/shop/download (3).png','deactive','<EMAIL>'),
(14,'shopsugg1','[\"Bags\",\"Furnitures\",\"Clothes\"]','asdfasdfasdfasdfasdfasdf',2,'asdf','address','sdtwet','Angola','123123','asdfasdf','<EMAIL>','asdfasdf','235234','<EMAIL>','uploads/shop/Legendary Peterpan.jpg','deactive','<EMAIL>'),
(15,'shopsugg3','','asdfqwefasdasdf',4,'asdfasdf','sdfasdfasdf','yuiohty','Chile','qwerqdfasd','asdfasdf','<EMAIL>','asdfasdf','23423','<EMAIL>','uploads/shop/Dmitri Maxim.jpg','active','<EMAIL>'),
(16,'shopsugg4','[\"Drinks\",\"Dish\"]','asdfasdfasdfasdfasdf',2,'asdfasdfas','asdfasdfasdf','sdfs','Angola','235234','asdfadsf','<EMAIL>','asdfasdf','232341531','<EMAIL>','uploads/shop/large_4764ad52b10d0bfa3f62e8ff933f9658.jpg','deactive','<EMAIL>');
/*Table structure for table `subject_categories` */
DROP TABLE IF EXISTS `subject_categories`;
CREATE TABLE `subject_categories` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`category` varchar(64) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8;
/*Data for the table `subject_categories` */
insert into `subject_categories`(`id`,`category`) values
(1,'subject1'),
(2,'subject6'),
(3,'subject3'),
(4,'subject4'),
(5,'subject5');
/*Table structure for table `supervisors` */
DROP TABLE IF EXISTS `supervisors`;
CREATE TABLE `supervisors` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(64) NOT NULL,
`sirname` varchar(64) NOT NULL,
`department` varchar(512) DEFAULT NULL,
`number` varchar(64) DEFAULT NULL,
`certificate` varchar(64) DEFAULT NULL,
`email` varchar(64) NOT NULL,
`password` varchar(64) NOT NULL,
`created_date` datetime NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8;
/*Data for the table `supervisors` */
insert into `supervisors`(`id`,`name`,`sirname`,`department`,`number`,`certificate`,`email`,`password`,`created_date`) values
(3,'super','visor3','[\"department3\",\"department6\"]','235235','uploads/supervisor/images (3).jpg','<EMAIL>','<PASSWORD>','2018-11-17 06:30:46'),
(4,'super','visor4','[\"department6\"]','35231','uploads/supervisor/images (5).jpg','<EMAIL>','d41d8cd98f00b204e9800998ecf8427e','2018-11-17 06:58:25'),
(5,'super','visor5','[\"department1\"]','62341','uploads/supervisor/images (13).jpg','<EMAIL>','<PASSWORD>','2018-11-17 06:59:10'),
(6,'super','visor2','','62342','uploads/supervisor/images (12).jpg','<EMAIL>','94efeff594eba1241014e55bd8c5c283','2018-11-17 07:01:24');
/*Table structure for table `system_settings` */
DROP TABLE IF EXISTS `system_settings`;
CREATE TABLE `system_settings` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`site_tagline` varchar(64) DEFAULT NULL,
`site_phone_number` varchar(64) DEFAULT NULL,
`site_help_email` varchar(64) DEFAULT NULL,
`allow_multi_language` varchar(64) DEFAULT NULL,
`default_admin_language` varchar(64) DEFAULT NULL,
`default_agency_language` varchar(64) DEFAULT NULL,
`default_guide_language` varchar(64) DEFAULT NULL,
`default_frontend_language` varchar(64) DEFAULT NULL,
`reset_token_lifetime` int(11) DEFAULT NULL,
`max_login_restrict_time` int(11) DEFAULT NULL,
`max_login_attempts` int(11) DEFAULT NULL,
`email_active_language` varchar(64) DEFAULT NULL,
`admin_email` varchar(64) DEFAULT NULL,
`admin_per_page` int(11) DEFAULT NULL,
`site_email` varchar(64) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
/*Data for the table `system_settings` */
insert into `system_settings`(`id`,`site_tagline`,`site_phone_number`,`site_help_email`,`allow_multi_language`,`default_admin_language`,`default_agency_language`,`default_guide_language`,`default_frontend_language`,`reset_token_lifetime`,`max_login_restrict_time`,`max_login_attempts`,`email_active_language`,`admin_email`,`admin_per_page`,`site_email`) values
(1,'aaaaaaaaaa','1231231','<EMAIL>@<EMAIL>','yes','English','Turkish','Turkish','Turkish',30,3636363,100,'English','<EMAIL>',10,'<EMAIL>');
/*Table structure for table `tour_types` */
DROP TABLE IF EXISTS `tour_types`;
CREATE TABLE `tour_types` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`tour_type` varchar(64) NOT NULL,
`days` varchar(64) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8;
/*Data for the table `tour_types` */
insert into `tour_types`(`id`,`tour_type`,`days`) values
(1,'Regional Tour','One Day'),
(2,'Daily Tour','Several Days'),
(3,'Transfer','One Day'),
(4,'Night Tour','Several Days');
/*Table structure for table `users` */
DROP TABLE IF EXISTS `users`;
CREATE TABLE `users` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(64) NOT NULL,
`email` varchar(64) NOT NULL,
`password` varchar(64) NOT NULL,
`role` int(11) NOT NULL,
`created_date` datetime NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=81 DEFAULT CHARSET=latin1;
/*Data for the table `users` */
insert into `users`(`id`,`name`,`email`,`password`,`role`,`created_date`) values
(1,'heyrehber','<EMAIL>','<PASSWORD>',0,'2018-11-07 02:40:00'),
(22,'aaa','<EMAIL>','<PASSWORD>',4,'2018-11-15 17:59:12'),
(23,'bbb','<EMAIL>','08f8e0260c64418510cefb2b06eee5cd',4,'2018-11-08 14:20:22'),
(25,'qqqttt','<EMAIL>','e85823b4e7db1064f4301e1c74978199',3,'2018-11-12 18:46:31'),
(26,'ddd','<EMAIL>','<PASSWORD>',4,'2018-11-08 15:49:38'),
(27,'www','<EMAIL>','4eae35f1b<PASSWORD>ebd<PASSWORD>',3,'2018-11-08 16:09:05'),
(38,'fff','<EMAIL>','343d9040a671c45832ee5381860e2996',4,'2018-11-09 11:34:18'),
(44,'rrr','<EMAIL>','<PASSWORD>0<PASSWORD>',3,'2018-11-09 12:31:12'),
(45,'ggg','<EMAIL>','ba248c985ace94863880921d8900c53f',4,'2018-11-09 14:26:12'),
(46,'hhh','<EMAIL>','a3aca2964e72000eea4c56cb341002a4',4,'2018-11-09 14:34:11'),
(47,'zz','<EMAIL>','f3abb86bd34cf4d52698f14c0da1dc60',4,'2018-11-09 14:43:26'),
(48,'xxx','<EMAIL>','f561aaf6ef0bf14d4208bb46a4ccb3ad',4,'2018-11-09 14:49:27'),
(49,'vvv','<EMAIL>','<PASSWORD>6<PASSWORD>',4,'2018-11-09 14:52:29'),
(61,'abcd','<EMAIL>','e2fc714c4727ee9395f324cd2e7f331f',4,'2018-11-12 16:35:40'),
(62,'afaf','<EMAIL>','<PASSWORD>',4,'2018-11-12 17:05:07'),
(70,'etet','<EMAIL>','<PASSWORD>',3,'2018-11-12 19:13:24'),
(74,'','<EMAIL>','85<PASSWORD>',1,'2018-11-17 06:30:46'),
(75,'','<EMAIL>','<PASSWORD>',1,'2018-11-17 06:58:25'),
(76,'','<EMAIL>','f2d47c40507a9161af34a94afd6a3e5b',1,'2018-11-17 06:59:10'),
(77,'','<EMAIL>','94efeff<PASSWORD>eba<PASSWORD>',1,'2018-11-17 07:01:24'),
(78,'','<EMAIL>','<PASSWORD>',1,'2018-11-17 10:49:25'),
(79,'','<EMAIL>','<PASSWORD>',2,'2018-11-17 10:58:04'),
(80,'new agency','<EMAIL>','3bfb04fca479ac4a8d4ddd4b02868fd0',3,'2018-11-22 05:46:10');
/*!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 */;
|
REM ModeTest.sql
REM Chapter 9, Oracle9i PL/SQL Programming by <NAME>
REM This procedure illustrates different parameter modes and
REM assignments to the parameters.
CREATE OR REPLACE PROCEDURE ModeTest (
p_InParameter IN NUMBER,
p_OutParameter OUT NUMBER,
p_InOutParameter IN OUT NUMBER) IS
v_LocalVariable NUMBER := 0;
BEGIN
DBMS_OUTPUT.PUT_LINE('Inside ModeTest:');
IF (p_InParameter IS NULL) THEN
DBMS_OUTPUT.PUT('p_InParameter is NULL');
ELSE
DBMS_OUTPUT.PUT('p_InParameter = ' || p_InParameter);
END IF;
IF (p_OutParameter IS NULL) THEN
DBMS_OUTPUT.PUT(' p_OutParameter is NULL');
ELSE
DBMS_OUTPUT.PUT(' p_OutParameter = ' || p_OutParameter);
END IF;
IF (p_InOutParameter IS NULL) THEN
DBMS_OUTPUT.PUT_LINE(' p_InOutParameter is NULL');
ELSE
DBMS_OUTPUT.PUT_LINE(' p_InOutParameter = ' ||
p_InOutParameter);
END IF;
/* Assign p_InParameter to v_LocalVariable. This is legal,
since we are reading from an IN parameter and not writing
to it. */
v_LocalVariable := p_InParameter; -- Legal
/* Assign 7 to p_InParameter. This is ILLEGAL, since we
are writing to an IN parameter. */
-- p_InParameter := 7; -- Illegal
/* Assign 7 to p_OutParameter. This is legal, since we
are writing to an OUT parameter. */
p_OutParameter := 7; -- Legal
/* Assign p_OutParameter to v_LocalVariable. In Oracle7 version
7.3.4, and Oracle8 version 8.0.4 or higher (including 8i),
this is legal. Prior to 7.3.4, it is illegal to read from an
OUT parameter. */
v_LocalVariable := p_OutParameter; -- Possibly illegal
/* Assign p_InOutParameter to v_LocalVariable. This is legal,
since we are reading from an IN OUT parameter. */
v_LocalVariable := p_InOutParameter; -- Legal
/* Assign 8 to p_InOutParameter. This is legal, since we
are writing to an IN OUT parameter. */
p_InOutParameter := 8; -- Legal
DBMS_OUTPUT.PUT_LINE('At end of ModeTest:');
IF (p_InParameter IS NULL) THEN
DBMS_OUTPUT.PUT('p_InParameter is NULL');
ELSE
DBMS_OUTPUT.PUT('p_InParameter = ' || p_InParameter);
END IF;
IF (p_OutParameter IS NULL) THEN
DBMS_OUTPUT.PUT(' p_OutParameter is NULL');
ELSE
DBMS_OUTPUT.PUT(' p_OutParameter = ' || p_OutParameter);
END IF;
IF (p_InOutParameter IS NULL) THEN
DBMS_OUTPUT.PUT_LINE(' p_InOutParameter is NULL');
ELSE
DBMS_OUTPUT.PUT_LINE(' p_InOutParameter = ' ||
p_InOutParameter);
END IF;
END ModeTest;
/
|
<reponame>uk-gov-mirror/SkillsFundingAgency.das-employer-incentives<filename>src/SFA.DAS.EmployerIncentives.Database/Scripts/Update.AccountsSignedAgreementVersion.sql
UPDATE
dbo.Accounts
SET
SignedAgreementVersion = 4
FROM
dbo.Accounts
WHERE
HasSignedIncentivesTerms = 1
AND
SignedAgreementVersion IS NULL
|
-- MySQL dump 10.15 Distrib 10.0.36-MariaDB, for debian-linux-gnu (x86_64)
--
-- Host: localhost Database: wioc
-- ------------------------------------------------------
-- Server version 10.0.36-MariaDB-0ubuntu0.16.04.1
/*!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 */;
/*!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 `voiture`
--
DROP TABLE IF EXISTS `voiture`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `voiture` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`lat` float(10,6) DEFAULT NULL,
`lng` float(10,6) DEFAULT NULL,
`street` varchar(80) DEFAULT NULL,
`city` varchar(40) DEFAULT NULL,
`who` varchar(15) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `voiture`
--
LOCK TABLES `voiture` WRITE;
/*!40000 ALTER TABLE `voiture` DISABLE KEYS */;
/*!40000 ALTER TABLE `voiture` 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-09-24 22:20:10
|
<reponame>kunzhijia/mysqyl-maste-slave-model
-- MySQL dump 10.13 Distrib 5.7.13, for Linux (x86_64)
--
-- Host: localhost Database: test
-- ------------------------------------------------------
-- Server version 5.7.13
CREATE DATABASE IF NOT EXISTS appbricks DEFAULT CHARSET utf8 COLLATE utf8_general_ci;
use appbricks;
--
-- Table structure for table `asset`
--
DROP TABLE IF EXISTS `asset`;
CREATE TABLE `asset` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`asset_name` varchar(255) NOT NULL,
`create_time` datetime DEFAULT NULL,
`custom_meta` text,
`custom_meta_sql` varchar(255) DEFAULT NULL,
`custom_path` varchar(255) DEFAULT NULL,
`description` varchar(255) DEFAULT NULL,
`info` text,
`meta` varchar(255) DEFAULT NULL,
`methods` varchar(255) DEFAULT NULL,
`name` varchar(255) NOT NULL,
`state` varchar(255) DEFAULT NULL,
`table_name` varchar(255) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Table structure for table `department`
--
DROP TABLE IF EXISTS `department`;
CREATE TABLE `department` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) NOT NULL,
`parent_id` int(11) DEFAULT NULL,
`remark` varchar(255) DEFAULT NULL,
`sort_no` int(11) DEFAULT NULL,
`structure` varchar(255) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Table structure for table `menu_resource`
--
DROP TABLE IF EXISTS `menu_resource`;
CREATE TABLE `menu_resource` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`create_person_id` int(11) NOT NULL,
`create_time` datetime DEFAULT NULL,
`methods` varchar(255) NOT NULL,
`name` varchar(255) NOT NULL,
`parent_id` int(11) DEFAULT NULL,
`remark` varchar(255) DEFAULT NULL,
`sort_no` int(11) NOT NULL,
`structure` varchar(255) NOT NULL,
`update_person_id` int(11) NOT NULL,
`update_time` datetime DEFAULT NULL,
`url` varchar(255) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Table structure for table `role`
--
DROP TABLE IF EXISTS `role`;
CREATE TABLE `role` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`create_person_id` int(11) DEFAULT NULL,
`create_person_name` varchar(255) DEFAULT NULL,
`create_time` datetime DEFAULT NULL,
`name` varchar(255) NOT NULL,
`remark` varchar(255) DEFAULT NULL,
`update_person_id` int(11) DEFAULT NULL,
`update_person_name` varchar(255) DEFAULT NULL,
`update_time` datetime DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8;
--
-- Dumping data for table `role`
--
LOCK TABLES `role` WRITE;
/*!40000 ALTER TABLE `role` DISABLE KEYS */;
INSERT INTO `role` VALUES (1,1,NULL,'2016-05-31 14:35:49','系统管理员',NULL,1,NULL,'2016-05-31 14:35:20'),(2,1,NULL,'2016-05-31 14:34:04','管理层',NULL,1,NULL,'2016-05-31 14:34:18'),(3,1,NULL,'2016-05-31 14:34:42','普通用户',NULL,1,NULL,'2016-05-31 14:34:50'),(4,1,NULL,'2016-05-30 10:51:53','CEO',NULL,1,NULL,'2016-05-30 10:51:41');
/*!40000 ALTER TABLE `role` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `role_resource`
--
DROP TABLE IF EXISTS `role_resource`;
CREATE TABLE `role_resource` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`create_person_name` varchar(255) DEFAULT NULL,
`create_time` datetime DEFAULT NULL,
`methods` varchar(255) DEFAULT NULL,
`resource_id` int(11) NOT NULL,
`role_id` int(11) NOT NULL,
`update_person_name` varchar(255) DEFAULT NULL,
`update_time` datetime DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Table structure for table `user`
--
DROP TABLE IF EXISTS `user`;
CREATE TABLE `user` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`create_date` datetime DEFAULT NULL,
`create_person` varchar(255) DEFAULT NULL,
`department_id` int(11) NOT NULL,
`department_name` varchar(255) DEFAULT NULL,
`email` varchar(255) DEFAULT NULL,
`fullname` varchar(255) DEFAULT NULL,
`gender` varchar(255) DEFAULT NULL,
`is_admin` bit(1) DEFAULT NULL,
`is_lock` bit(1) DEFAULT NULL,
`password` varchar(255) NOT NULL,
`tel` varchar(255) DEFAULT NULL,
`update_date` datetime DEFAULT NULL,
`update_person` varchar(255) DEFAULT NULL,
`username` varchar(255) NOT NULL,
`token` varchar(255) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8;
--
-- Dumping data for table `user`
--
LOCK TABLES `user` WRITE;
/*!40000 ALTER TABLE `user` DISABLE KEYS */;
INSERT INTO `user` VALUES (1,'2016-05-23 17:54:46',NULL,1,'技术部',NULL,'系统管理员','male','\0','\0','63a9f0ea7bb98050796b649e85481845',NULL,'2016-05-23 17:55:13',NULL,'admin',NULL),(2,'2016-05-23 18:15:36',NULL,1,'技术部',NULL,'张三','female','\0','\0','63a9f0ea7bb98050796b649e85481845',NULL,'2016-05-23 18:15:36',NULL,'jingli',NULL),(3,'2016-05-23 18:16:35',NULL,2,'财务部',NULL,'李四','male','\0','\0','63a9f0ea7bb98050796b649e85481845',NULL,'2016-05-23 18:37:56',NULL,'yuangong',NULL),(4,'2016-05-31 14:39:40',NULL,3,'人事部',NULL,'王五','male','\0','\0','63a9f0ea7bb98050796b649e85481845',NULL,'2016-05-31 14:39:50',NULL,'ceo',NULL),(5,'2016-05-31 14:51:27',NULL,3,'人事部',NULL,'赵六','male','\0','\0','63a9f0ea7bb98050796b649e85481845',NULL,'2016-05-31 14:52:35',NULL,'yonghu',NULL);
/*!40000 ALTER TABLE `user` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `user_role`
--
DROP TABLE IF EXISTS `user_role`;
CREATE TABLE `user_role` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`create_person_name` varchar(255) DEFAULT NULL,
`create_time` datetime DEFAULT NULL,
`role_id` int(11) NOT NULL,
`update_person_name` varchar(255) DEFAULT NULL,
`update_time` datetime DEFAULT NULL,
`user_id` int(11) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8;
--
-- Dumping data for table `user_role`
--
LOCK TABLES `user_role` WRITE;
/*!40000 ALTER TABLE `user_role` DISABLE KEYS */;
INSERT INTO `user_role` VALUES (1,NULL,NULL,2,NULL,NULL,2),(2,NULL,NULL,4,NULL,NULL,4),(3,NULL,NULL,3,NULL,NULL,3),(4,NULL,NULL,3,NULL,NULL,5);
/*!40000 ALTER TABLE `user_role` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Dumping routines for database 'test'
--
-- Dump completed on 2016-06-15 15:47:48
|
<reponame>xyla-io/almacen<filename>preparing/sql/create_procedure_update_url_numbers.sql<gh_stars>1-10
--
-- procedure
--
create or replace procedure {SCHEMA}update_url_numbers (table_name character varying, url_column character varying, number_column character varying, should_force bool)
as $$
declare
q character varying;
begin
q := 'update {SCHEMA}' || table_name || ' ' ||
'set ' || number_column || ' = url_numbers.number ' ||
'from {SCHEMA}url_numbers ' ||
'where ';
if not should_force then
q := q || table_name || '.' || number_column || ' = 0 and ';
end if;
q := q || table_name || '.' || url_column || ' = url_numbers.url;';
execute q;
end;
$$ language plpgsql; |
SELECT
*
FROM
Singers A
HASH JOIN
Singers B
ON A.SingerID = B.SingerID
APPLY JOIN
Singer C
ON B.SingerID = C.SingerID
LOOP JOIN
Singer D
ON C.SingerID = D.SingerID
|
USE [ANTERO]
GO
/****** Object: StoredProcedure [dw].[p_lataa_d_amos_spl_opiskelijavuodet_hylkaamisperuste] Script Date: 2.8.2019 11:49:22 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
IF NOT EXISTS (SELECT * FROM sys.objects WHERE object_id = OBJECT_ID(N'[dw].[p_lataa_d_amos_spl_opiskelijavuodet_hylkaamisperuste]') AND type in (N'P', N'PC'))
BEGIN
EXEC dbo.sp_executesql @statement = N'CREATE PROCEDURE [dw].[p_lataa_d_amos_spl_opiskelijavuodet_hylkaamisperuste] AS'
END
GO
ALTER PROCEDURE [dw].[p_lataa_d_amos_spl_opiskelijavuodet_hylkaamisperuste] AS
TRUNCATE TABLE dw.d_amos_spl_opiskelijavuodet_hylkaamisperuste
SET IDENTITY_INSERT dw.d_amos_spl_opiskelijavuodet_hylkaamisperuste ON
INSERT dw.d_amos_spl_opiskelijavuodet_hylkaamisperuste (
id
,koodi
,selite_fi
,selite_sv
,selite_en
,jarjestys
,source
)
VALUES
(-1,-1,'Tieto puuttuu','Information saknas','Missing data',99,'manuaalinen'),
(1,1,'4 viikkoa ylittävä yhtäjaksoinen loma','SV*','EN*',1,'manuaalinen'),
(2,2,'Samanaikainen opiskeluoikeus, ammatillinen','SV*','EN*',2,'manuaalinen'),
(3,3,'Samanaikainen opiskeluoikeus, lukio','SV*','EN*',3,'manuaalinen'),
(4,4,'Sisältyy toiseen opiskeluoikeuteen','SV*','EN*',4,'manuaalinen'),
(9,9,'Hyväksytään','SV*','EN*',9,'manuaalinen')
|
CREATE OR REPLACE PACKAGE BODY plex IS
--------------------------------------------------------------------------------------------------------------------------------
-- CONSTANTS, TYPES, GLOBALS
--------------------------------------------------------------------------------------------------------------------------------
c_tab CONSTANT VARCHAR2(1) := chr(9);
c_cr CONSTANT VARCHAR2(1) := chr(13);
c_lf CONSTANT VARCHAR2(1) := chr(10);
c_crlf CONSTANT VARCHAR2(2) := chr(13) || chr(10);
c_space_crlf CONSTANT VARCHAR2(3) := ' ' || chr(13) || chr(10);
c_at CONSTANT VARCHAR2(1) := '@';
c_hash CONSTANT VARCHAR2(1) := '#';
c_slash CONSTANT VARCHAR2(1) := '/';
c_vc2_max_size CONSTANT PLS_INTEGER := 32767;
c_zip_local_file_header CONSTANT RAW(4) := hextoraw('504B0304');
c_zip_end_of_central_directory CONSTANT RAW(4) := hextoraw('504B0506');
-- numeric type identfiers
c_number CONSTANT PLS_INTEGER := 2; -- FLOAT
c_binary_float CONSTANT PLS_INTEGER := 100;
c_binary_double CONSTANT PLS_INTEGER := 101;
-- string type identfiers
c_char CONSTANT PLS_INTEGER := 96; -- NCHAR
c_varchar2 CONSTANT PLS_INTEGER := 1; -- NVARCHAR2
c_long CONSTANT PLS_INTEGER := 8;
c_clob CONSTANT PLS_INTEGER := 112; -- NCLOB
c_xmltype CONSTANT PLS_INTEGER := 109; -- ANYDATA, ANYDATASET, ANYTYPE, Object type, VARRAY, Nested table
c_rowid CONSTANT PLS_INTEGER := 69;
c_urowid CONSTANT PLS_INTEGER := 208;
-- binary type identfiers
c_raw CONSTANT PLS_INTEGER := 23;
c_long_raw CONSTANT PLS_INTEGER := 24;
c_blob CONSTANT PLS_INTEGER := 113;
c_bfile CONSTANT PLS_INTEGER := 114;
-- date type identfiers
c_date CONSTANT PLS_INTEGER := 12;
c_timestamp CONSTANT PLS_INTEGER := 180;
c_timestamp_tz CONSTANT PLS_INTEGER := 181;
c_timestamp_ltz CONSTANT PLS_INTEGER := 231;
-- interval type identfiers
c_interval_year_to_month CONSTANT PLS_INTEGER := 182;
c_interval_day_to_second CONSTANT PLS_INTEGER := 183;
-- cursor type identfiers
c_ref CONSTANT PLS_INTEGER := 111;
c_ref_cursor CONSTANT PLS_INTEGER := 102; -- same identfiers for strong and weak ref cursor
TYPE tab_errlog IS TABLE OF rec_error_log INDEX BY BINARY_INTEGER;
TYPE rec_runlog_step IS RECORD (
action app_info_text,
start_time TIMESTAMP(6),
stop_time TIMESTAMP(6),
elapsed NUMBER,
execution NUMBER);
TYPE tab_runlog_step IS TABLE OF rec_runlog_step INDEX BY BINARY_INTEGER;
TYPE rec_runlog IS RECORD (
module app_info_text,
start_time TIMESTAMP(6),
stop_time TIMESTAMP(6),
run_time NUMBER,
measured_time NUMBER,
unmeasured_time NUMBER,
data tab_runlog_step);
TYPE rec_queries IS RECORD (--
query VARCHAR2(32767 CHAR),
file_name VARCHAR2(256 CHAR),
max_rows NUMBER DEFAULT 100000);
TYPE tab_queries IS TABLE OF rec_queries INDEX BY BINARY_INTEGER;
TYPE tab_file_list_lookup IS TABLE OF PLS_INTEGER INDEX BY VARCHAR2(256);
TYPE rec_files IS RECORD (
ords_modules_ tab_vc1k,
sequences_ tab_vc1k,
tables_ tab_vc1k,
data_ tab_vc1k,
ref_constraints_ tab_vc1k,
indices_ tab_vc1k,
views_ tab_vc1k,
mviews_ tab_vc1k,
types_ tab_vc1k,
type_bodies_ tab_vc1k,
triggers_ tab_vc1k,
functions_ tab_vc1k,
procedures_ tab_vc1k,
packages_ tab_vc1k,
package_bodies_ tab_vc1k,
grants_ tab_vc1k,
other_objects_ tab_vc1k);
TYPE rec_path IS RECORD (
to_backend file_path,
to_frontend file_path,
to_web_services file_path,
to_data file_path,
to_docs file_path,
to_tests file_path,
to_scripts file_path,
to_script_logs file_path,
scripts_work_dir file_path,
from_scripts_to_project_root file_path);
TYPE rec_nls IS RECORD (
numeric_characters varchar2(100),
date_format varchar2(100),
timestamp_format varchar2(100),
timestamp_tz_format varchar2(100));
g_clob CLOB;
g_cache VARCHAR2(32767char);
g_errlog tab_errlog;
g_runlog rec_runlog;
g_queries tab_queries;
--------------------------------------------------------------------------------------------------------------------------------
-- UTILITIES (forward declarations, only compiled when not public)
--------------------------------------------------------------------------------------------------------------------------------
$if not $$utils_public $then
FUNCTION util_bool_to_string (p_bool IN BOOLEAN) RETURN VARCHAR2;
FUNCTION util_string_to_bool (
p_bool_string IN VARCHAR2,
p_default IN BOOLEAN)
RETURN BOOLEAN;
FUNCTION util_split (
p_string IN VARCHAR2,
p_delimiter IN VARCHAR2 DEFAULT ',')
RETURN tab_vc32k;
FUNCTION util_join (
p_array IN tab_vc32k,
p_delimiter IN VARCHAR2 DEFAULT ',')
RETURN VARCHAR2;
FUNCTION util_clob_to_blob (p_clob CLOB) RETURN BLOB;
/*
ZIP UTILS
- The following four zip utilities are copied from this article:
- Blog: https://technology.amis.nl/2010/03/13/utl_compress-gzip-and-zlib/
- Source: https://technology.amis.nl/wp-content/uploads/2010/06/as_zip10.txt
- Copyright (c) 2010, 2011 by <NAME> (MIT license)
- Thank you for sharing this Anton :-)
*/
FUNCTION util_zip_blob_to_num (
p_blob IN BLOB,
p_len IN INTEGER,
p_pos IN INTEGER)
RETURN NUMBER;
FUNCTION util_zip_little_endian (
p_big IN NUMBER,
p_bytes IN PLS_INTEGER := 4)
RETURN RAW;
PROCEDURE util_zip_add_file (
p_zipped_blob IN OUT BLOB,
p_name IN VARCHAR2,
p_content IN BLOB);
PROCEDURE util_zip_finish (p_zipped_blob IN OUT BLOB);
FUNCTION util_multi_replace (
p_source_string VARCHAR2,
p_01_find VARCHAR2 DEFAULT NULL, p_01_replace VARCHAR2 DEFAULT NULL,
p_02_find VARCHAR2 DEFAULT NULL, p_02_replace VARCHAR2 DEFAULT NULL,
p_03_find VARCHAR2 DEFAULT NULL, p_03_replace VARCHAR2 DEFAULT NULL,
p_04_find VARCHAR2 DEFAULT NULL, p_04_replace VARCHAR2 DEFAULT NULL,
p_05_find VARCHAR2 DEFAULT NULL, p_05_replace VARCHAR2 DEFAULT NULL,
p_06_find VARCHAR2 DEFAULT NULL, p_06_replace VARCHAR2 DEFAULT NULL,
p_07_find VARCHAR2 DEFAULT NULL, p_07_replace VARCHAR2 DEFAULT NULL,
p_08_find VARCHAR2 DEFAULT NULL, p_08_replace VARCHAR2 DEFAULT NULL,
p_09_find VARCHAR2 DEFAULT NULL, p_09_replace VARCHAR2 DEFAULT NULL,
p_10_find VARCHAR2 DEFAULT NULL, p_10_replace VARCHAR2 DEFAULT NULL,
p_11_find VARCHAR2 DEFAULT NULL, p_11_replace VARCHAR2 DEFAULT NULL,
p_12_find VARCHAR2 DEFAULT NULL, p_12_replace VARCHAR2 DEFAULT NULL)
RETURN VARCHAR2;
FUNCTION util_set_build_status_run_only (p_app_export_sql IN CLOB) RETURN CLOB;
FUNCTION util_calc_data_timestamp (p_as_of_minutes_ago IN NUMBER) RETURN TIMESTAMP;
PROCEDURE util_setup_dbms_metadata (
p_pretty IN BOOLEAN DEFAULT true,
p_constraints IN BOOLEAN DEFAULT true,
p_ref_constraints IN BOOLEAN DEFAULT false,
p_partitioning IN BOOLEAN DEFAULT true,
p_tablespace IN BOOLEAN DEFAULT false,
p_storage IN BOOLEAN DEFAULT false,
p_segment_attributes IN BOOLEAN DEFAULT false,
p_sqlterminator IN BOOLEAN DEFAULT true,
p_constraints_as_alter IN BOOLEAN DEFAULT false,
p_emit_schema IN BOOLEAN DEFAULT false);
FUNCTION util_to_xlsx_datetime (
p_date IN DATE)
RETURN NUMBER;
--------------------------------------------------------------------------------------------------------------------------------
-- The following tools are working on the global private package variables g_clob, g_clob_varchar_cache, g_runlog and g_queries
--------------------------------------------------------------------------------------------------------------------------------
PROCEDURE util_clob_append (p_content IN VARCHAR2);
PROCEDURE util_clob_append (p_content IN CLOB);
PROCEDURE util_clob_replace (
p_search VARCHAR2,
p_replace VARCHAR2);
PROCEDURE util_clob_flush_cache;
PROCEDURE util_clob_add_to_export_files (
p_export_files IN OUT NOCOPY tab_export_files,
p_name IN VARCHAR2);
PROCEDURE util_clob_query_to_csv (
p_query IN VARCHAR2,
p_max_rows IN NUMBER DEFAULT 1000,
p_delimiter IN VARCHAR2 DEFAULT ',',
p_quote_mark IN VARCHAR2 DEFAULT '"',
p_header_prefix IN VARCHAR2 DEFAULT NULL);
PROCEDURE util_clob_table_to_insert (
p_table_name IN VARCHAR2,
p_data_scn IN NUMBER,
p_max_rows IN NUMBER DEFAULT 1000,
p_insert_all_size IN NUMBER DEFAULT 10);
PROCEDURE util_clob_create_runtime_log (p_export_files IN OUT NOCOPY tab_export_files);
PROCEDURE util_clob_create_error_log (p_export_files IN OUT NOCOPY tab_export_files);
PROCEDURE util_ensure_unique_file_names (
p_export_files IN OUT NOCOPY tab_export_files,
p_path_to_scripts IN VARCHAR2 DEFAULT NULL);
PROCEDURE util_log_init (p_module IN VARCHAR2);
PROCEDURE util_log_start (p_action IN VARCHAR2);
PROCEDURE util_log_error (p_name VARCHAR2);
PROCEDURE util_log_stop;
FUNCTION util_log_get_runtime (
p_start IN TIMESTAMP,
p_stop IN TIMESTAMP)
RETURN NUMBER;
PROCEDURE util_log_calc_runtimes;
$end
--------------------------------------------------------------------------------------------------------------------------------
-- UTILITIES MAIN CODE
--------------------------------------------------------------------------------------------------------------------------------
FUNCTION util_bool_to_string (p_bool IN BOOLEAN) RETURN VARCHAR2 IS
BEGIN
RETURN CASE WHEN p_bool THEN 'TRUE' ELSE 'FALSE' END;
END util_bool_to_string;
--------------------------------------------------------------------------------------------------------------------------------
FUNCTION util_string_to_bool (
p_bool_string IN VARCHAR2,
p_default IN BOOLEAN)
RETURN BOOLEAN IS
v_bool_string VARCHAR2(1 CHAR);
v_return BOOLEAN;
BEGIN
v_bool_string := upper(substr(p_bool_string, 1, 1));
v_return :=
CASE
WHEN v_bool_string IN ('1', 'Y', 'T') THEN
true
WHEN v_bool_string IN ('0', 'N', 'F') THEN
false
ELSE p_default
END;
RETURN v_return;
END util_string_to_bool;
--------------------------------------------------------------------------------------------------------------------------------
FUNCTION util_split (
p_string IN VARCHAR2,
p_delimiter IN VARCHAR2 DEFAULT ',')
RETURN tab_vc32k IS
v_return tab_vc32k := tab_vc32k();
v_offset PLS_INTEGER := 1;
v_index PLS_INTEGER := instr(p_string, p_delimiter, v_offset);
v_delimiter_length PLS_INTEGER := length(p_delimiter);
v_string_length CONSTANT PLS_INTEGER := length(p_string);
v_count PLS_INTEGER := 1;
PROCEDURE add_value (p_value VARCHAR2) IS
BEGIN
v_return.extend;
v_return(v_count) := p_value;
v_count := v_count + 1;
END add_value;
BEGIN
WHILE v_index > 0 LOOP
add_value(trim(substr(p_string, v_offset, v_index - v_offset)));
v_offset := v_index + v_delimiter_length;
v_index := instr(p_string, p_delimiter, v_offset);
END LOOP;
IF v_string_length - v_offset + 1 > 0 THEN
add_value(trim(substr(p_string, v_offset, v_string_length - v_offset + 1)));
END IF;
RETURN v_return;
END util_split;
--------------------------------------------------------------------------------------------------------------------------------
FUNCTION util_join (
p_array IN tab_vc32k,
p_delimiter IN VARCHAR2 DEFAULT ',')
RETURN VARCHAR2 IS
v_return VARCHAR2(32767);
BEGIN
IF p_array IS NOT NULL AND p_array.count > 0 THEN
v_return := p_array(1);
FOR i IN 2 ..p_array.count LOOP
v_return := v_return || p_delimiter || p_array(i);
END LOOP;
END IF;
RETURN v_return;
EXCEPTION
WHEN value_error THEN
RETURN v_return;
END util_join;
--------------------------------------------------------------------------------------------------------------------------------
FUNCTION util_clob_to_blob (p_clob CLOB) RETURN BLOB IS
v_blob BLOB;
v_lang_context INTEGER := dbms_lob.default_lang_ctx;
v_warning INTEGER := dbms_lob.warn_inconvertible_char;
v_dest_offset INTEGER := 1;
v_src_offset INTEGER := 1;
BEGIN
IF p_clob IS NOT NULL THEN
dbms_lob.createtemporary(v_blob, true);
dbms_lob.converttoblob(
dest_lob => v_blob,
src_clob => p_clob,
amount => dbms_lob.lobmaxsize,
dest_offset => v_dest_offset,
src_offset => v_src_offset,
blob_csid => nls_charset_id('AL32UTF8'),
lang_context => v_lang_context,
warning => v_warning);
END IF;
RETURN v_blob;
END util_clob_to_blob;
--------------------------------------------------------------------------------------------------------------------------------
-- copyright by <NAME> (MIT license, see https://technology.amis.nl/2010/03/13/utl_compress-gzip-and-zlib/)
FUNCTION util_zip_blob_to_num (
p_blob IN BLOB,
p_len IN INTEGER,
p_pos IN INTEGER)
RETURN NUMBER IS
rv NUMBER;
BEGIN
rv := utl_raw.cast_to_binary_integer(
dbms_lob.substr(p_blob, p_len, p_pos),
utl_raw.little_endian);
IF rv < 0 THEN
rv := rv + 4294967296;
END IF;
RETURN rv;
END util_zip_blob_to_num;
--------------------------------------------------------------------------------------------------------------------------------
-- copyright by <NAME> (MIT license, see https://technology.amis.nl/2010/03/13/utl_compress-gzip-and-zlib/)
FUNCTION util_zip_little_endian (
p_big IN NUMBER,
p_bytes IN PLS_INTEGER := 4)
RETURN RAW IS
t_big NUMBER := p_big;
BEGIN
IF t_big > 2147483647 THEN
t_big := t_big - 4294967296;
END IF;
RETURN utl_raw.substr(utl_raw.cast_from_binary_integer(t_big, utl_raw.little_endian), 1, p_bytes);
END util_zip_little_endian;
--------------------------------------------------------------------------------------------------------------------------------
-- copyright by <NAME> (MIT license, see https://technology.amis.nl/2010/03/13/utl_compress-gzip-and-zlib/)
PROCEDURE util_zip_add_file (
p_zipped_blob IN OUT BLOB,
p_name IN VARCHAR2,
p_content IN BLOB)
IS
t_now DATE;
t_blob BLOB;
t_len INTEGER;
t_clen INTEGER;
t_crc32 RAW(4) := hextoraw('00000000');
t_compressed BOOLEAN := false;
t_name RAW(32767);
BEGIN
t_now := SYSDATE;
t_len := nvl(dbms_lob.getlength(p_content), 0);
IF t_len > 0 THEN
t_blob := utl_compress.lz_compress(p_content);
t_clen := dbms_lob.getlength(t_blob) - 18;
t_compressed := t_clen < t_len;
t_crc32 := dbms_lob.substr(t_blob, 4, t_clen + 11);
END IF;
IF NOT t_compressed THEN
t_clen := t_len;
t_blob := p_content;
END IF;
t_name := utl_i18n.string_to_raw(p_name, 'AL32UTF8');
dbms_lob.append(
p_zipped_blob,
utl_raw.concat(
c_zip_local_file_header, -- local file header signature
hextoraw('1400'), -- version 2.0
CASE WHEN t_name = utl_i18n.string_to_raw(p_name, 'US8PC437')
THEN hextoraw('0000') -- no General purpose bits
ELSE hextoraw('0008') -- set Language encoding flag (EFS)
END,
CASE WHEN t_compressed
THEN hextoraw('0800') -- deflate
ELSE hextoraw('0000') -- stored
END,
util_zip_little_endian(
to_number(TO_CHAR(t_now, 'ss')) / 2
+ to_number(TO_CHAR(t_now, 'mi')) * 32
+ to_number(TO_CHAR(t_now, 'hh24')) * 2048,
2), -- file last modification time
util_zip_little_endian(
to_number(TO_CHAR(t_now, 'dd'))
+ to_number(TO_CHAR(t_now, 'mm')) * 32
+ (to_number(TO_CHAR(t_now, 'yyyy')) - 1980) * 512,
2), -- file last modification date
t_crc32, -- CRC-32
util_zip_little_endian(t_clen), -- compressed size
util_zip_little_endian(t_len), -- uncompressed size
util_zip_little_endian(utl_raw.length(t_name), 2), -- file name length
hextoraw('0000'), -- extra field length
t_name)); -- file name
IF t_compressed THEN
dbms_lob.copy(p_zipped_blob, t_blob, t_clen, dbms_lob.getlength(p_zipped_blob) + 1, 11); -- compressed content
ELSIF t_clen > 0 THEN
dbms_lob.copy(p_zipped_blob, t_blob, t_clen, dbms_lob.getlength(p_zipped_blob) + 1, 1); -- content
END IF;
IF dbms_lob.istemporary(t_blob) = 1 THEN
dbms_lob.freetemporary(t_blob);
END IF;
END util_zip_add_file;
--------------------------------------------------------------------------------------------------------------------------------
-- copyright by <NAME> (MIT license, see https://technology.amis.nl/2010/03/13/utl_compress-gzip-and-zlib/)
PROCEDURE util_zip_finish (p_zipped_blob IN OUT BLOB) IS
t_cnt PLS_INTEGER := 0;
t_offs INTEGER;
t_offs_dir_header INTEGER;
t_offs_end_header INTEGER;
t_comment RAW(32767) := utl_raw.cast_to_raw('Implementation by <NAME>');
BEGIN
t_offs_dir_header := dbms_lob.getlength(p_zipped_blob);
t_offs := 1;
WHILE dbms_lob.substr(p_zipped_blob, utl_raw.length(c_zip_local_file_header), t_offs) = c_zip_local_file_header
LOOP
t_cnt := t_cnt + 1;
dbms_lob.append(
p_zipped_blob,
utl_raw.concat(
hextoraw('504B0102'), -- central directory file header signature
hextoraw('1400'), -- version 2.0
dbms_lob.substr(p_zipped_blob, 26, t_offs + 4),
hextoraw('0000'), -- file comment length
hextoraw('0000'), -- disk number where file starts
hextoraw('0000'), -- internal file attributes: 0000 = binary file, 0100 = (ascii)text file
CASE
WHEN dbms_lob.substr(
p_zipped_blob,
1,
t_offs + 30 + util_zip_blob_to_num(p_zipped_blob, 2, t_offs + 26) - 1)
IN (hextoraw('2F')/*slash*/, hextoraw('5C')/*backslash*/)
THEN hextoraw('10000000') -- a directory/folder
ELSE hextoraw('2000B681') -- a file
END, -- external file attributes
util_zip_little_endian(t_offs - 1), -- relative offset of local file header
dbms_lob.substr(
p_zipped_blob,
util_zip_blob_to_num(p_zipped_blob, 2, t_offs + 26),
t_offs + 30))); -- File name
t_offs := t_offs + 30
+ util_zip_blob_to_num(p_zipped_blob, 4, t_offs + 18) -- compressed size
+ util_zip_blob_to_num(p_zipped_blob, 2, t_offs + 26) -- file name length
+ util_zip_blob_to_num(p_zipped_blob, 2, t_offs + 28); -- extra field length
END LOOP;
t_offs_end_header := dbms_lob.getlength(p_zipped_blob);
dbms_lob.append(
p_zipped_blob,
utl_raw.concat(
c_zip_end_of_central_directory, -- end of central directory signature
hextoraw('0000'), -- number of this disk
hextoraw('0000'), -- disk where central directory starts
util_zip_little_endian(t_cnt, 2), -- number of central directory records on this disk
util_zip_little_endian(t_cnt, 2), -- total number of central directory records
util_zip_little_endian(t_offs_end_header - t_offs_dir_header), -- size of central directory
util_zip_little_endian(t_offs_dir_header), -- offset of start of central directory, relative to start of archive
util_zip_little_endian(nvl(utl_raw.length(t_comment), 0), 2), -- ZIP file comment length
t_comment));
END util_zip_finish;
--------------------------------------------------------------------------------------------------------------------------------
FUNCTION util_multi_replace (
p_source_string VARCHAR2,
p_01_find VARCHAR2 DEFAULT NULL, p_01_replace VARCHAR2 DEFAULT NULL,
p_02_find VARCHAR2 DEFAULT NULL, p_02_replace VARCHAR2 DEFAULT NULL,
p_03_find VARCHAR2 DEFAULT NULL, p_03_replace VARCHAR2 DEFAULT NULL,
p_04_find VARCHAR2 DEFAULT NULL, p_04_replace VARCHAR2 DEFAULT NULL,
p_05_find VARCHAR2 DEFAULT NULL, p_05_replace VARCHAR2 DEFAULT NULL,
p_06_find VARCHAR2 DEFAULT NULL, p_06_replace VARCHAR2 DEFAULT NULL,
p_07_find VARCHAR2 DEFAULT NULL, p_07_replace VARCHAR2 DEFAULT NULL,
p_08_find VARCHAR2 DEFAULT NULL, p_08_replace VARCHAR2 DEFAULT NULL,
p_09_find VARCHAR2 DEFAULT NULL, p_09_replace VARCHAR2 DEFAULT NULL,
p_10_find VARCHAR2 DEFAULT NULL, p_10_replace VARCHAR2 DEFAULT NULL,
p_11_find VARCHAR2 DEFAULT NULL, p_11_replace VARCHAR2 DEFAULT NULL,
p_12_find VARCHAR2 DEFAULT NULL, p_12_replace VARCHAR2 DEFAULT NULL)
RETURN VARCHAR2 IS
v_return VARCHAR2(32767);
BEGIN
v_return := p_source_string;
IF p_01_find IS NOT NULL THEN v_return := replace(v_return, p_01_find, p_01_replace); END IF;
IF p_02_find IS NOT NULL THEN v_return := replace(v_return, p_02_find, p_02_replace); END IF;
IF p_03_find IS NOT NULL THEN v_return := replace(v_return, p_03_find, p_03_replace); END IF;
IF p_04_find IS NOT NULL THEN v_return := replace(v_return, p_04_find, p_04_replace); END IF;
IF p_05_find IS NOT NULL THEN v_return := replace(v_return, p_05_find, p_05_replace); END IF;
IF p_06_find IS NOT NULL THEN v_return := replace(v_return, p_06_find, p_06_replace); END IF;
IF p_07_find IS NOT NULL THEN v_return := replace(v_return, p_07_find, p_07_replace); END IF;
IF p_08_find IS NOT NULL THEN v_return := replace(v_return, p_08_find, p_08_replace); END IF;
IF p_09_find IS NOT NULL THEN v_return := replace(v_return, p_09_find, p_09_replace); END IF;
IF p_10_find IS NOT NULL THEN v_return := replace(v_return, p_10_find, p_10_replace); END IF;
IF p_11_find IS NOT NULL THEN v_return := replace(v_return, p_11_find, p_11_replace); END IF;
IF p_12_find IS NOT NULL THEN v_return := replace(v_return, p_12_find, p_12_replace); END IF;
RETURN v_return;
END util_multi_replace;
--------------------------------------------------------------------------------------------------------------------------------
FUNCTION util_set_build_status_run_only (p_app_export_sql CLOB) RETURN CLOB IS
v_position PLS_INTEGER;
BEGIN
v_position := instr(p_app_export_sql, ',p_exact_substitutions_only');
RETURN substr(p_app_export_sql, 1, v_position - 1)
|| ',p_build_status=>''RUN_ONLY'''
|| c_lf
|| substr(p_app_export_sql, v_position);
END util_set_build_status_run_only;
--------------------------------------------------------------------------------------------------------------------------------
FUNCTION util_calc_data_timestamp (p_as_of_minutes_ago IN NUMBER) RETURN TIMESTAMP IS
v_return TIMESTAMP;
BEGIN
EXECUTE IMMEDIATE
replace(
q'[SELECT systimestamp - INTERVAL '{{MINUTES}}' MINUTE FROM dual]',
'{{MINUTES}}',
TO_CHAR(p_as_of_minutes_ago))
INTO v_return;
RETURN v_return;
END util_calc_data_timestamp;
--------------------------------------------------------------------------------------------------------------------------------
PROCEDURE util_setup_dbms_metadata (
p_pretty IN BOOLEAN DEFAULT true,
p_constraints IN BOOLEAN DEFAULT true,
p_ref_constraints IN BOOLEAN DEFAULT false,
p_partitioning IN BOOLEAN DEFAULT true,
p_tablespace IN BOOLEAN DEFAULT false,
p_storage IN BOOLEAN DEFAULT false,
p_segment_attributes IN BOOLEAN DEFAULT false,
p_sqlterminator IN BOOLEAN DEFAULT true,
p_constraints_as_alter IN BOOLEAN DEFAULT false,
p_emit_schema IN BOOLEAN DEFAULT false)
IS
BEGIN
dbms_metadata.set_transform_param(dbms_metadata.session_transform, 'PRETTY', p_pretty);
dbms_metadata.set_transform_param(dbms_metadata.session_transform, 'CONSTRAINTS', p_constraints);
dbms_metadata.set_transform_param(dbms_metadata.session_transform, 'REF_CONSTRAINTS', p_ref_constraints);
dbms_metadata.set_transform_param(dbms_metadata.session_transform, 'PARTITIONING', p_partitioning);
dbms_metadata.set_transform_param(dbms_metadata.session_transform, 'TABLESPACE', p_tablespace);
dbms_metadata.set_transform_param(dbms_metadata.session_transform, 'STORAGE', p_storage);
dbms_metadata.set_transform_param(dbms_metadata.session_transform, 'SEGMENT_ATTRIBUTES', p_segment_attributes);
dbms_metadata.set_transform_param(dbms_metadata.session_transform, 'SQLTERMINATOR', p_sqlterminator);
dbms_metadata.set_transform_param(dbms_metadata.session_transform, 'CONSTRAINTS_AS_ALTER', p_constraints_as_alter);
dbms_metadata.set_transform_param(dbms_metadata.session_transform, 'EMIT_SCHEMA', p_emit_schema);
END util_setup_dbms_metadata;
--------------------------------------------------------------------------------------------------------------------------------
PROCEDURE util_ensure_unique_file_names (
p_export_files IN OUT NOCOPY tab_export_files,
p_path_to_scripts IN VARCHAR2 DEFAULT NULL)
IS
v_file_list_lookup tab_file_list_lookup;
v_apex_install_file_id PLS_INTEGER;
v_file_name VARCHAR2(256);
v_extension VARCHAR2(256);
v_base_name VARCHAR2(256);
v_count PLS_INTEGER;
BEGIN
util_log_start('ensure unique file names in collection');
$if $$apex_installed $then
-- find apex install file
FOR i IN 1..p_export_files.count LOOP
IF p_export_files(i).name = p_path_to_scripts || '/install_frontend_generated_by_apex.sql' THEN
v_apex_install_file_id := i;
END IF;
END LOOP;
$end
FOR i IN 1..p_export_files.count LOOP
v_file_name := p_export_files(i).name;
v_count := 1;
IF instr(v_file_name, '.') > 0 THEN
v_base_name := substr(v_file_name, 1, instr(v_file_name, '.', -1) - 1);
v_extension := substr(v_file_name, instr(v_file_name, '.', -1));
ELSE
v_base_name := v_file_name;
v_extension := NULL;
END IF;
WHILE v_file_list_lookup.EXISTS(v_file_name) LOOP
v_count := v_count + 1;
v_file_name := v_base_name || '_' || v_count || v_extension;
END LOOP;
v_file_list_lookup(v_file_name) := i;
-- correct data if needed
IF p_export_files(i).name != v_file_name THEN
-- correct the prompt statement
p_export_files(i).contents := replace(
p_export_files(i).contents,
v_base_name,
v_base_name || '_' || v_count);
-- correct the apex install file
IF v_apex_install_file_id IS NOT NULL THEN
p_export_files(v_apex_install_file_id).contents :=
regexp_replace(
p_export_files(v_apex_install_file_id).contents,
p_export_files(i).name || '$',
v_file_name,
1, 2, 'm');
END IF;
-- correct the file name itself
p_export_files(i).name := v_file_name;
END IF;
END LOOP;
util_log_stop;
END util_ensure_unique_file_names;
--------------------------------------------------------------------------------------------------------------------------------
-- https://community.oracle.com/message/1638237
FUNCTION util_to_xlsx_datetime (
p_date IN DATE)
RETURN NUMBER IS
BEGIN
return p_date - date '1900-01-01' + 2;
END;
--------------------------------------------------------------------------------------------------------------------------------
PROCEDURE util_log_init (p_module IN VARCHAR2) IS
BEGIN
g_runlog.module := substr(p_module, 1, c_app_info_length);
g_runlog.start_time := systimestamp;
g_runlog.stop_time := NULL;
g_runlog.run_time := 0;
g_runlog.measured_time := 0;
g_runlog.unmeasured_time := 0;
g_runlog.data.DELETE;
g_errlog.DELETE;
END util_log_init;
--------------------------------------------------------------------------------------------------------------------------------
PROCEDURE util_log_start (p_action IN VARCHAR2) IS
v_index PLS_INTEGER;
BEGIN
dbms_application_info.set_module(
module_name => g_runlog.module,
action_name => p_action);
v_index := g_runlog.data.count + 1;
g_runlog.data(v_index).action := substr(p_action, 1, plex.c_app_info_length);
g_runlog.data(v_index).start_time := systimestamp;
END util_log_start;
--------------------------------------------------------------------------------------------------------------------------------
PROCEDURE util_log_error (p_name VARCHAR2) IS
v_index PLS_INTEGER;
PROCEDURE add_error_to_action IS
v_index PLS_INTEGER;
BEGIN
v_index := g_runlog.data.count;
g_runlog.data(v_index).action := substr('ERROR: ' || g_runlog.data(v_index).action, 1, plex.c_app_info_length);
END add_error_to_action;
BEGIN
v_index := g_errlog.count + 1;
g_errlog(v_index).time_stamp := systimestamp;
g_errlog(v_index).file_name := substr(p_name, 1, 255);
g_errlog(v_index).error_text := substr(sqlerrm, 1, 200);
g_errlog(v_index).call_stack := substr(dbms_utility.format_error_backtrace, 1, 500);
add_error_to_action;
util_log_stop;
g_clob := null;
END util_log_error;
--------------------------------------------------------------------------------------------------------------------------------
PROCEDURE util_log_stop IS
v_index PLS_INTEGER;
BEGIN
v_index := g_runlog.data.count;
dbms_application_info.set_module(
module_name => NULL,
action_name => NULL);
g_runlog.data(v_index).stop_time := systimestamp;
g_runlog.data(v_index).elapsed := util_log_get_runtime(g_runlog.start_time, g_runlog.data(v_index).stop_time);
g_runlog.data(v_index).execution := util_log_get_runtime(g_runlog.data(v_index).start_time, g_runlog.data(v_index).stop_time);
g_runlog.measured_time := g_runlog.measured_time + g_runlog.data(v_index).execution;
END util_log_stop;
--------------------------------------------------------------------------------------------------------------------------------
FUNCTION util_log_get_runtime (
p_start IN TIMESTAMP,
p_stop IN TIMESTAMP)
RETURN NUMBER IS
BEGIN
RETURN SYSDATE + ((p_stop - p_start) * 86400) - SYSDATE;
--sysdate + (interval_difference * 86400) - sysdate
--https://stackoverflow.com/questions/10092032/extracting-the-total-number-of-seconds-from-an-interval-data-type
END util_log_get_runtime;
--------------------------------------------------------------------------------------------------------------------------------
PROCEDURE util_log_calc_runtimes IS
BEGIN
g_runlog.stop_time := systimestamp;
g_runlog.run_time := util_log_get_runtime(g_runlog.start_time, g_runlog.stop_time);
g_runlog.unmeasured_time := g_runlog.run_time - g_runlog.measured_time;
END util_log_calc_runtimes;
--------------------------------------------------------------------------------------------------------------------------------
PROCEDURE util_clob_append (p_content IN VARCHAR2) IS
BEGIN
g_cache := g_cache || p_content;
EXCEPTION
WHEN value_error THEN
IF g_clob IS NULL THEN
g_clob := g_cache;
ELSE
dbms_lob.writeappend(g_clob, length(g_cache), g_cache);
END IF;
g_cache := p_content;
END util_clob_append;
--------------------------------------------------------------------------------------------------------------------------------
PROCEDURE util_clob_append (p_content IN CLOB) IS
BEGIN
IF p_content IS NOT NULL THEN
util_clob_flush_cache;
IF g_clob IS NULL THEN
g_clob := p_content;
ELSE
dbms_lob.writeappend(g_clob, length(p_content), p_content);
END IF;
END IF;
END util_clob_append;
--------------------------------------------------------------------------------------------------------------------------------
PROCEDURE util_clob_flush_cache IS
BEGIN
IF g_cache IS NOT NULL THEN
IF g_clob IS NULL THEN
g_clob := g_cache;
ELSE
dbms_lob.writeappend(g_clob, length(g_cache), g_cache);
END IF;
g_cache := NULL;
END IF;
END util_clob_flush_cache;
--------------------------------------------------------------------------------------------------------------------------------
PROCEDURE util_clob_replace (
p_search VARCHAR2,
p_replace VARCHAR2)
IS
BEGIN
util_clob_flush_cache;
IF g_clob IS NOT NULL THEN
g_clob := replace(g_clob, p_search, p_replace);
END IF;
END util_clob_replace;
--------------------------------------------------------------------------------------------------------------------------------
PROCEDURE util_clob_add_to_export_files (
p_export_files IN OUT NOCOPY tab_export_files,
p_name IN VARCHAR2)
IS
v_index PLS_INTEGER;
BEGIN
util_clob_flush_cache;
v_index := p_export_files.count + 1;
p_export_files.extend;
p_export_files(v_index).name := p_name;
p_export_files(v_index).contents := g_clob;
g_clob := null;
END util_clob_add_to_export_files;
--------------------------------------------------------------------------------------------------------------------------------
PROCEDURE util_clob_query_to_csv (
p_query IN VARCHAR2,
p_max_rows IN NUMBER DEFAULT 1000,
p_delimiter IN VARCHAR2 DEFAULT ',',
p_quote_mark IN VARCHAR2 DEFAULT '"',
p_header_prefix IN VARCHAR2 DEFAULT NULL)
IS
-- inspired by Tim Hall: https://oracle-base.com/dba/script?category=miscellaneous&file=csv.sql
v_cursor PLS_INTEGER;
v_ignore_me PLS_INTEGER;
v_data_count PLS_INTEGER := 0;
v_col_count PLS_INTEGER;
v_desc_tab dbms_sql.desc_tab3;
v_buffer_varchar2 VARCHAR2(32767 CHAR);
v_buffer_clob CLOB;
v_buffer_xmltype XMLTYPE;
v_buffer_long LONG;
v_buffer_long_length PLS_INTEGER;
PROCEDURE escape_varchar2_buffer_for_csv IS
BEGIN
IF v_buffer_varchar2 IS NOT NULL THEN
-- normalize line feeds for Excel
v_buffer_varchar2 := replace(
replace(v_buffer_varchar2, c_crlf, c_lf),
c_cr,
c_lf);
-- if we have the delimiter character or line feeds in the string then we
-- have to wrap the text in quotes marks and escape the quote marks
-- inside the text by double them
IF instr(v_buffer_varchar2, p_delimiter) > 0 OR instr(v_buffer_varchar2, c_lf) > 0 THEN
v_buffer_varchar2 := p_quote_mark
|| replace(v_buffer_varchar2, p_quote_mark, p_quote_mark || p_quote_mark)
|| p_quote_mark;
END IF;
END IF;
EXCEPTION
WHEN value_error THEN
v_buffer_varchar2 := 'Value skipped - escaped text larger then ' || c_vc2_max_size || ' characters';
END escape_varchar2_buffer_for_csv;
BEGIN
IF p_query IS NOT NULL THEN
v_cursor := dbms_sql.open_cursor;
dbms_sql.parse(
v_cursor,
regexp_replace(p_query, ';\s*$', NULL),
dbms_sql.native);
-- https://support.esri.com/en/technical-article/000010110
-- http://bluefrog-oracle.blogspot.com/2011/11/describing-ref-cursor-using-dbmssql-api.html
dbms_sql.describe_columns3(v_cursor, v_col_count, v_desc_tab);
FOR i IN 1..v_col_count LOOP
IF v_desc_tab(i).col_type = c_clob THEN
dbms_sql.define_column(v_cursor, i, v_buffer_clob);
ELSIF v_desc_tab(i).col_type = c_xmltype THEN
dbms_sql.define_column(v_cursor, i, v_buffer_xmltype);
ELSIF v_desc_tab(i).col_type = c_long THEN
dbms_sql.define_column_long(v_cursor, i);
ELSIF v_desc_tab(i).col_type IN (c_raw, c_long_raw, c_blob, c_bfile) THEN
NULL; --> we ignore binary data types
ELSE
dbms_sql.define_column(v_cursor, i, v_buffer_varchar2, c_vc2_max_size);
END IF;
END LOOP;
v_ignore_me := dbms_sql.execute(v_cursor);
-- create header
util_clob_append(p_header_prefix);
FOR i IN 1..v_col_count LOOP
IF i > 1 THEN
util_clob_append(p_delimiter);
END IF;
v_buffer_varchar2 := v_desc_tab(i).col_name;
escape_varchar2_buffer_for_csv;
util_clob_append(v_buffer_varchar2);
END LOOP;
util_clob_append(c_crlf);
-- create data
LOOP
EXIT WHEN dbms_sql.fetch_rows(v_cursor) = 0 OR v_data_count = p_max_rows;
FOR i IN 1..v_col_count LOOP
IF i > 1 THEN
util_clob_append(p_delimiter);
END IF;
IF v_desc_tab(i).col_type = c_clob THEN
dbms_sql.column_value(v_cursor, i, v_buffer_clob);
IF length(v_buffer_clob) <= c_vc2_max_size THEN
v_buffer_varchar2 := substr(v_buffer_clob, 1, c_vc2_max_size);
escape_varchar2_buffer_for_csv;
util_clob_append(v_buffer_varchar2);
ELSE
v_buffer_varchar2 := 'CLOB value skipped - larger then ' || c_vc2_max_size || ' characters';
util_clob_append(v_buffer_varchar2);
END IF;
ELSIF v_desc_tab(i).col_type = c_xmltype THEN
dbms_sql.column_value(v_cursor, i, v_buffer_xmltype);
IF v_buffer_xmltype IS NOT NULL THEN
v_buffer_clob := v_buffer_xmltype.getclobval();
IF length(v_buffer_clob) <= c_vc2_max_size THEN
v_buffer_varchar2 := substr(v_buffer_clob, 1, c_vc2_max_size);
escape_varchar2_buffer_for_csv;
util_clob_append(v_buffer_varchar2);
ELSE
v_buffer_varchar2 := 'XML value skipped - larger then ' || c_vc2_max_size || ' characters';
util_clob_append(v_buffer_varchar2);
END IF;
END IF;
ELSIF v_desc_tab(i).col_type = c_long THEN
dbms_sql.column_value_long(v_cursor, i, c_vc2_max_size, 0, v_buffer_varchar2, v_buffer_long_length);
IF v_buffer_long_length <= c_vc2_max_size THEN
escape_varchar2_buffer_for_csv;
util_clob_append(v_buffer_varchar2);
ELSE
util_clob_append('LONG value skipped - larger then ' || c_vc2_max_size || ' characters');
END IF;
ELSIF v_desc_tab(i).col_type IN (c_raw, c_long_raw, c_blob, c_bfile) THEN
util_clob_append('Binary data type skipped - not supported for CSV');
ELSE
dbms_sql.column_value(v_cursor, i, v_buffer_varchar2);
escape_varchar2_buffer_for_csv;
util_clob_append(v_buffer_varchar2);
END IF;
END LOOP;
util_clob_append(c_crlf);
v_data_count := v_data_count + 1;
END LOOP;
dbms_sql.close_cursor(v_cursor);
END IF;
END util_clob_query_to_csv;
--------------------------------------------------------------------------------------------------------------------------------
PROCEDURE util_clob_table_to_insert (
p_table_name IN VARCHAR2,
p_data_scn IN NUMBER,
p_max_rows IN NUMBER DEFAULT 1000,
p_insert_all_size IN NUMBER DEFAULT 10)
IS
v_nls rec_nls;
v_query VARCHAR2(32767);
v_cursor PLS_INTEGER;
v_ignore_me PLS_INTEGER;
v_data_count PLS_INTEGER := 0;
v_col_count PLS_INTEGER;
v_desc_tab dbms_sql.desc_tab3;
v_table_insert_prefix VARCHAR2(4000);
c_sqlplus_max_line_length CONSTANT PLS_INTEGER := 2400;
v_line_cache VARCHAR2(2498 CHAR);
v_line_size PLS_INTEGER := 0;
v_buffer_varchar2 VARCHAR2(32767 CHAR);
v_buffer_clob CLOB;
v_buffer_xmltype XMLTYPE;
-- v_buffer_long LONG;
v_buffer_long_length PLS_INTEGER;
----------------------------------------------------------------
PROCEDURE get_session_nls_params IS
BEGIN
-- Save current values.
for i in (SELECT parameter, value FROM nls_session_parameters) loop
case i.parameter
when 'NLS_NUMERIC_CHARACTERS' then v_nls.numeric_characters := i.value;
when 'NLS_DATE_FORMAT' then v_nls.date_format := i.value;
when 'NLS_TIMESTAMP_FORMAT' then v_nls.timestamp_format := i.value;
when 'NLS_TIMESTAMP_TZ_FORMAT' then v_nls.timestamp_tz_format := i.value;
else
null;
end case;
end loop;
END get_session_nls_params;
----------------------------------------------------------------
FUNCTION quote_string (p_string VARCHAR2) RETURN VARCHAR2 IS
v_string varchar2(5000 char);
BEGIN
case
when instr(p_string, '''') = 0 then v_string := '''' || p_string || '''';
when instr(p_string, '^''') = 0 then v_string := 'q''^' || p_string || '^''';
when instr(p_string, '`''') = 0 then v_string := 'q''`' || p_string || '`''';
when instr(p_string, '#''') = 0 then v_string := 'q''#' || p_string || '#''';
when instr(p_string, '|''') = 0 then v_string := 'q''|' || p_string || '|''';
when instr(p_string, '!''') = 0 then v_string := 'q''!' || p_string || '!''';
when instr(p_string, '}''') = 0 then v_string := 'q''{' || p_string || '}''';
when instr(p_string, ']''') = 0 then v_string := 'q''[' || p_string || ']''';
when instr(p_string, '>''') = 0 then v_string := 'q''<' || p_string || '>''';
when instr(p_string, ')''') = 0 then v_string := 'q''(' || p_string || ')''';
else
v_string := '''' || replace(p_string, '''', '''''') || '''';
end case;
-- SQL*Plus specific:
-- SQL Failed With ORA-1756 In Sqlplus But Works In SQL Developer
-- (Doc ID 2377701.1, https://support.oracle.com/epmos/faces/DocumentDisplay?id=2377701.1)
if regexp_instr(v_string,';$',1,1,0,'m') = 0 then
return v_string;
else
return ('regexp_replace(' || regexp_replace(v_string, ';$',';!',1,0,'m') || ','';!$'','';'',1,0,''m'')');
end if;
END quote_string;
----------------------------------------------------------------
PROCEDURE line_append (p_content IN VARCHAR2) IS
BEGIN
v_line_cache := v_line_cache || p_content;
EXCEPTION
WHEN value_error THEN
util_clob_append(v_line_cache || c_crlf );
v_line_cache := p_content;
END line_append;
----------------------------------------------------------------
PROCEDURE line_flush_cache IS
BEGIN
util_clob_append(v_line_cache || c_crlf);
v_line_cache := null;
END line_flush_cache;
----------------------------------------------------------------
PROCEDURE process_varchar2_buffer(p_type varchar2) IS
v_length PLS_INTEGER;
v_offset PLS_INTEGER;
BEGIN
v_length := nvl(length(v_buffer_varchar2), 0);
IF v_length = 0 THEN
line_append('NULL');
ELSE
CASE p_type
WHEN 'NUMBER' THEN
line_append(v_buffer_varchar2);
WHEN 'STRING' THEN
if v_length <= c_sqlplus_max_line_length then
line_append(quote_string(v_buffer_varchar2));
else
v_offset := 1;
while v_offset <= v_length loop
line_append(case when v_offset != 1 then '|| ' end || quote_string(substr(v_buffer_varchar2, v_offset, c_sqlplus_max_line_length)));
v_offset := v_offset + c_sqlplus_max_line_length;
end loop;
end if;
WHEN 'RAW' THEN
if v_length <= c_sqlplus_max_line_length then
line_append('utl_raw.cast_to_raw(' || quote_string(v_buffer_varchar2) || ')');
else
v_offset := 1;
line_append ('utl_raw.cast_to_raw(');
while v_offset <= v_length loop
line_append( case when v_offset != 1 then '|| ' end || quote_string(substr(v_buffer_varchar2, v_offset, c_sqlplus_max_line_length)) );
v_offset := v_offset + c_sqlplus_max_line_length;
end loop;
line_append (')');
end if;
END CASE;
v_buffer_varchar2 := null;
END IF;
END process_varchar2_buffer;
----------------------------------------------------------------
PROCEDURE process_clob_buffer IS
v_length pls_integer;
v_offset pls_integer;
BEGIN
v_length := nvl(length(v_buffer_clob), 0);
if v_length = 0 then
line_append('NULL');
else
if v_length <= c_sqlplus_max_line_length then
line_append(quote_string(substr(v_buffer_clob, 1, c_sqlplus_max_line_length)));
else
v_offset := 1;
while v_offset <= v_length loop
line_append(case when v_offset != 1 then '|| ' end || 'to_clob(' || quote_string(substr(v_buffer_clob, v_offset, c_sqlplus_max_line_length)) || ')' );
v_offset := v_offset + c_sqlplus_max_line_length;
end loop;
end if;
v_buffer_clob := null;
end if;
END process_clob_buffer;
----------------------------------------------------------------
FUNCTION get_order_by_clause RETURN VARCHAR2 IS
v_return varchar2(4000);
begin
-- try to use pk column list ...
for i in (
select
( select
listagg(ucc.column_name, ', ') within group(order by position)
from
user_cons_columns ucc
where
ucc.constraint_name = uc.constraint_name
) as order_by_list
from
user_constraints uc
where
table_name = p_table_name
and constraint_type = 'P'
) loop
v_return := i.order_by_list;
end loop;
-- ... or fetch first three table columns as order by list
if v_return is null then
for i in (
with t as (
select
column_name,
column_id
from
user_tab_cols
where
table_name = p_table_name
and data_type in ('NUMBER','VARCHAR2','DATE')
order by
column_id
fetch first 3 rows only
)
select
listagg(column_name, ', ') within group (order by column_id) as order_by_list
from t
) loop
v_return := i.order_by_list;
end loop;
end if;
return case when v_return is not null then ' order by ' || v_return else null end;
end get_order_by_clause;
----------------------------------------------------------------
PROCEDURE parse_query_and_describe_cols IS
BEGIN
FOR i IN (
select 'select ' || listagg(column_name, ', ') within group (order by column_id) || ' from ' || table_name as query
from user_tab_cols
where table_name = p_table_name
and user_generated = 'YES'
and virtual_column = 'NO'
group by table_name
) LOOP
v_query := i.query;
END LOOP;
IF v_query IS NOT NULL THEN
v_cursor := dbms_sql.open_cursor;
dbms_sql.parse(
v_cursor,
v_query || ' as of scn ' || p_data_scn || get_order_by_clause,
dbms_sql.native);
-- https://support.esri.com/en/technical-article/000010110
-- http://bluefrog-oracle.blogspot.com/2011/11/describing-ref-cursor-using-dbmssql-api.html
dbms_sql.describe_columns3(v_cursor, v_col_count, v_desc_tab);
FOR i IN 1..v_col_count LOOP
IF v_desc_tab(i).col_type = c_clob THEN
dbms_sql.define_column(v_cursor, i, v_buffer_clob);
ELSIF v_desc_tab(i).col_type = c_long THEN
dbms_sql.define_column_long(v_cursor, i);
ELSE
dbms_sql.define_column(v_cursor, i, v_buffer_varchar2, c_vc2_max_size);
END IF;
v_table_insert_prefix := v_table_insert_prefix || v_desc_tab(i).col_name || ',';
END LOOP;
v_table_insert_prefix :=
case when p_insert_all_size > 0
then 'into '
else 'insert into '
end || p_table_name || '(' || rtrim(v_table_insert_prefix, ',' ) || ') values (';
v_ignore_me := dbms_sql.execute(v_cursor);
END IF;
END parse_query_and_describe_cols;
----------------------------------------------------------------
-- SQL*Plus specific:
-- SQL Failed With ORA-1756 In Sqlplus But Works In SQL Developer
-- (Doc ID 2377701.1, https://support.oracle.com/epmos/faces/DocumentDisplay?id=2377701.1)
PROCEDURE create_header IS
BEGIN
util_clob_append('-- Script generated by PLEX version ' || c_plex_version || ' - more infos here: ' || c_plex_url || c_crlf);
util_clob_append('-- Performance Hacks by Connor McDonald: https://connor-mcdonald.com/2019/05/17/hacking-together-faster-inserts/' || c_crlf);
util_clob_append('-- For strange line end replacements a big thank to SQL*Plus: https://support.oracle.com/epmos/faces/DocumentDisplay?id=2377701.1 (SQL Failed With ORA-1756 In Sqlplus But Works In SQL Developer)' || c_crlf);
util_clob_append('prompt - insert xxx rows into ' || p_table_name || ' (exported ' || to_char(systimestamp,'YYYY-MM-DD hh24:mi:ssxff TZR') || ')' || c_crlf);
util_clob_append('set define off feedback off sqlblanklines on' || c_crlf);
util_clob_append('alter session set cursor_sharing = force;' || c_crlf);
util_clob_append('alter session set nls_numeric_characters = ''' || v_nls.numeric_characters || ''';' || c_crlf);
util_clob_append('alter session set nls_date_format = ''' || v_nls.date_format || ''';' || c_crlf);
util_clob_append('alter session set nls_timestamp_format = ''' || v_nls.timestamp_format || ''';' || c_crlf);
util_clob_append('alter session set nls_timestamp_tz_format = ''' || v_nls.timestamp_tz_format || ''';' || c_crlf);
util_clob_append('begin' || c_crlf);
END create_header;
----------------------------------------------------------------
PROCEDURE create_data IS
BEGIN
LOOP
EXIT WHEN dbms_sql.fetch_rows(v_cursor) = 0 OR v_data_count = p_max_rows;
v_data_count := v_data_count + 1;
if v_data_count = 1 then
create_header;
end if;
if p_insert_all_size > 0 and mod(v_data_count, p_insert_all_size) = 1 then
util_clob_append('insert all' || c_crlf);
end if;
line_append(v_table_insert_prefix);
--> process row
FOR i IN 1..v_col_count LOOP
IF v_desc_tab(i).col_type = c_clob THEN
dbms_sql.column_value(v_cursor, i, v_buffer_clob);
process_clob_buffer;
ELSIF v_desc_tab(i).col_type = c_long THEN
dbms_sql.column_value_long(v_cursor, i, c_vc2_max_size, 0, v_buffer_varchar2, v_buffer_long_length);
if v_buffer_long_length > c_vc2_max_size then
v_buffer_varchar2 := null;
end if;
process_varchar2_buffer('STRING');
ELSIF v_desc_tab(i).col_type = c_xmltype THEN
dbms_sql.column_value(v_cursor, i, v_buffer_varchar2);
v_buffer_varchar2 := regexp_replace(v_buffer_varchar2, '\s*$', null);
process_varchar2_buffer('STRING');
ELSE
dbms_sql.column_value(v_cursor, i, v_buffer_varchar2);
IF v_desc_tab(i).col_type IN (c_number, c_binary_float, c_binary_double) THEN
process_varchar2_buffer('NUMBER');
ELSIF v_desc_tab(i).col_type IN (c_raw, c_long_raw, c_blob, c_bfile) THEN
process_varchar2_buffer('RAW');
ELSE
process_varchar2_buffer('STRING');
END IF;
END IF;
if i != v_col_count then
line_append(',');
else
line_append(')' || case when p_insert_all_size < 1 then ';' end);
line_flush_cache;
end if;
END LOOP;
--< end process row
if p_insert_all_size > 0 and mod(v_data_count, p_insert_all_size) = 0 then
util_clob_append('select * from dual;' || c_crlf);
end if;
END LOOP;
dbms_sql.close_cursor(v_cursor);
END create_data;
----------------------------------------------------------------
PROCEDURE create_footer IS
BEGIN
if v_data_count = 0 then
util_clob_append('Prompt Nothing to insert - there was no data in the source table ' || p_table_name || c_crlf);
else
if p_insert_all_size > 0 and mod(v_data_count, p_insert_all_size) != 0 then
util_clob_append('select * from dual;' || c_crlf);
end if;
util_clob_append('end;' || c_crlf);
util_clob_append('/' || c_crlf);
util_clob_append('commit;' || c_crlf);
util_clob_append('alter session set cursor_sharing = exact;' || c_crlf);
util_clob_append('set define on' || c_crlf);
end if;
util_clob_append('' || c_crlf);
END create_footer;
----------------------------------------------------------------
PROCEDURE replace_num_rows_placeholder IS
BEGIN
util_clob_replace('prompt - insert xxx rows', 'prompt - insert '
|| lpad(to_char(v_data_count), length(to_char(p_max_rows)), ' ') ||' rows');
END replace_num_rows_placeholder;
----------------------------------------------------------------
BEGIN
IF p_table_name IS NOT NULL THEN
--dbms_lob.createtemporary(v_buffer_clob, true);
get_session_nls_params;
parse_query_and_describe_cols;
create_data;
create_footer;
replace_num_rows_placeholder;
--dbms_lob.freetemporary(v_buffer_clob);
END IF;
END util_clob_table_to_insert;
--------------------------------------------------------------------------------------------------------------------------------
PROCEDURE util_clob_create_error_log (p_export_files IN OUT NOCOPY tab_export_files) IS
BEGIN
IF g_errlog.count > 0 THEN
util_log_start(g_errlog.count || ' error' || CASE WHEN g_errlog.count != 1 THEN 's' END || ' occurred: create error log');
util_clob_append(
replace('# {{MAIN_FUNCTION}} - Error Log', '{{MAIN_FUNCTION}}', upper(g_runlog.module))
|| c_crlf || c_crlf || c_crlf);
FOR i IN 1..g_errlog.count LOOP
util_clob_append('## ' || g_errlog(i).file_name || c_crlf || c_crlf);
util_clob_append(to_char(g_errlog(i).time_stamp, 'yyyy-mm-dd hh24:mi:ss.ffffff') || ': ' || g_errlog(i).error_text || c_crlf || c_crlf);
util_clob_append('```sql' || c_crlf || g_errlog(i).call_stack || '```' || c_crlf || c_crlf || c_crlf);
END LOOP;
util_clob_add_to_export_files(
p_export_files => p_export_files,
p_name => 'plex_error_log.md');
util_log_stop;
END IF;
END util_clob_create_error_log;
--------------------------------------------------------------------------------------------------------------------------------
PROCEDURE util_clob_create_runtime_log (p_export_files IN OUT NOCOPY tab_export_files) IS
BEGIN
util_log_calc_runtimes;
util_clob_append(util_multi_replace('# {{MAIN_FUNCTION}} - Runtime Log
- Export started at {{START_TIME}} and took {{RUN_TIME}} seconds to finish with {{ERRORS}}
- Unmeasured execution time because of system waits, missing log calls or log overhead was {{UNMEASURED_TIME}} seconds
- The used PLEX version was {{PLEX_VERSION}}
- More infos here: [PLEX on GitHub]({{PLEX_URL}})
' ,
'{{MAIN_FUNCTION}}', upper(g_runlog.module),
'{{START_TIME}}', TO_CHAR(g_runlog.start_time, 'yyyy-mm-dd hh24:mi:ss'),
'{{RUN_TIME}}', trim(TO_CHAR(g_runlog.run_time, '999G990D000')),
'{{UNMEASURED_TIME}}', trim(TO_CHAR(g_runlog.unmeasured_time, '999G990D000')),
'{{PLEX_VERSION}}', c_plex_version,
'{{PLEX_URL}}', c_plex_url,
'{{ERRORS}}', g_errlog.count || ' error' || CASE WHEN g_errlog.count != 1 THEN 's' END));
util_clob_append('
| Step | Elapsed | Execution | Action |
|------:|----------:|------------:|:-----------------------------------------------------------------|
' );
FOR i IN 1..g_runlog.data.count LOOP
util_clob_append(util_multi_replace(
'| {{STEP}} | {{ELAPSED}} | {{EXECUTION}} | {{ACTION}} |' || c_lf,
'{{STEP}}', lpad(TO_CHAR(i), 5),
'{{ELAPSED}}', lpad(trim(TO_CHAR(g_runlog.data(i).elapsed, '99990D000')), 9),
'{{EXECUTION}}', lpad(trim(TO_CHAR(g_runlog.data(i).execution, '9990D000000')), 11),
'{{ACTION}}', rpad(g_runlog.data(i).action, 64)));
END LOOP;
util_clob_add_to_export_files(
p_export_files => p_export_files,
p_name => 'plex_runtime_log.md');
END util_clob_create_runtime_log;
------------------------------------------------------------------------------------------------------------------------------
-- MAIN CODE
------------------------------------------------------------------------------------------------------------------------------
FUNCTION backapp (
$if $$apex_installed $then
p_app_id IN NUMBER DEFAULT NULL,
p_app_date IN BOOLEAN DEFAULT true,
p_app_public_reports IN BOOLEAN DEFAULT true,
p_app_private_reports IN BOOLEAN DEFAULT false,
p_app_notifications IN BOOLEAN DEFAULT false,
p_app_translations IN BOOLEAN DEFAULT true,
p_app_pkg_app_mapping IN BOOLEAN DEFAULT false,
p_app_original_ids IN BOOLEAN DEFAULT false,
p_app_subscriptions IN BOOLEAN DEFAULT true,
p_app_comments IN BOOLEAN DEFAULT true,
p_app_supporting_objects IN VARCHAR2 DEFAULT NULL,
p_app_include_single_file IN BOOLEAN DEFAULT false,
p_app_build_status_run_only IN BOOLEAN DEFAULT false,
$end
$if $$ords_installed $then
p_include_ords_modules IN BOOLEAN DEFAULT false,
$end
p_include_object_ddl IN BOOLEAN DEFAULT false,
p_object_type_like IN VARCHAR2 DEFAULT NULL,
p_object_type_not_like IN VARCHAR2 DEFAULT NULL,
p_object_name_like IN VARCHAR2 DEFAULT NULL,
p_object_name_not_like IN VARCHAR2 DEFAULT NULL,
p_object_view_remove_col_list IN BOOLEAN DEFAULT true,
p_include_data IN BOOLEAN DEFAULT false,
p_data_as_of_minutes_ago IN NUMBER DEFAULT 0,
p_data_max_rows IN NUMBER DEFAULT 1000,
p_data_table_name_like IN VARCHAR2 DEFAULT NULL,
p_data_table_name_not_like IN VARCHAR2 DEFAULT NULL,
p_data_format IN VARCHAR2 DEFAULT 'csv',
p_include_templates IN BOOLEAN DEFAULT true,
p_include_runtime_log IN BOOLEAN DEFAULT true,
p_include_error_log IN BOOLEAN DEFAULT true,
p_base_path_backend IN VARCHAR2 DEFAULT 'app_backend',
p_base_path_frontend IN VARCHAR2 DEFAULT 'app_frontend',
p_base_path_web_services IN VARCHAR2 DEFAULT 'app_web_services',
p_base_path_data IN VARCHAR2 DEFAULT 'app_data',
p_base_path_docs IN VARCHAR2 DEFAULT 'docs',
p_base_path_tests IN VARCHAR2 DEFAULT 'tests',
p_base_path_scripts IN VARCHAR2 DEFAULT 'scripts',
p_base_path_script_logs IN VARCHAR2 DEFAULT 'scripts/logs',
p_scripts_working_directory IN VARCHAR2 DEFAULT 'scripts')
RETURN tab_export_files IS
v_apex_version NUMBER;
v_data_timestamp TIMESTAMP;
v_data_scn NUMBER;
v_file_path VARCHAR2(255);
v_current_user user_objects.object_name%TYPE;
v_app_workspace user_objects.object_name%TYPE;
v_app_owner user_objects.object_name%TYPE;
v_app_alias user_objects.object_name%TYPE;
v_files rec_files;
v_path rec_path;
v_contents CLOB;
v_export_files tab_export_files;
v_file_list_lookup tab_file_list_lookup;
TYPE obj_cur_typ IS REF CURSOR;
v_cur obj_cur_typ;
v_query VARCHAR2(32767);
----------------------------------------------------------------
FUNCTION util_get_script_line (p_file_path VARCHAR2) RETURN VARCHAR2 IS
BEGIN
RETURN 'prompt --' || p_file_path || c_lf
|| '@' || v_path.from_scripts_to_project_root || p_file_path || c_lf;
END util_get_script_line;
----------------------------------------------------------------
FUNCTION util_normalize_base_path (p_base_path VARCHAR2) RETURN VARCHAR2 IS
BEGIN
RETURN ltrim(rtrim(replace(p_base_path, '\', '/'),'/'),'/');
END util_normalize_base_path;
----------------------------------------------------------------
PROCEDURE init IS
BEGIN
util_log_init(
p_module => 'plex.backapp'
$if $$apex_installed $then
|| CASE WHEN p_app_id IS NOT NULL THEN '(' || TO_CHAR(p_app_id) || ')' END
$end);
util_log_start('init');
v_export_files := NEW tab_export_files();
v_current_user := sys_context('USERENV', 'CURRENT_USER');
v_path.to_backend := util_normalize_base_path(p_base_path_backend);
v_path.to_frontend := util_normalize_base_path(p_base_path_frontend);
v_path.to_web_services := util_normalize_base_path(p_base_path_web_services);
v_path.to_data := util_normalize_base_path(p_base_path_data);
v_path.to_docs := util_normalize_base_path(p_base_path_docs);
v_path.to_tests := util_normalize_base_path(p_base_path_tests);
v_path.to_scripts := util_normalize_base_path(p_base_path_scripts);
v_path.to_script_logs := util_normalize_base_path(p_base_path_script_logs);
v_path.scripts_work_dir := util_normalize_base_path(p_scripts_working_directory);
for i in 1..regexp_count(
nvl(v_path.scripts_work_dir || case when v_path.scripts_work_dir is not null then '/' end, 'dummy'),
'/')
loop
v_path.from_scripts_to_project_root := v_path.from_scripts_to_project_root || '../';
end loop;
util_log_stop;
END init;
----------------------------------------------------------------
$if $$apex_installed $then
PROCEDURE check_owner IS
CURSOR cur_owner IS
SELECT workspace,
owner,
alias
FROM apex_applications t
WHERE t.application_id = p_app_id;
BEGIN
util_log_start('check_owner');
IF p_app_id IS NOT NULL THEN
OPEN cur_owner;
FETCH cur_owner INTO
v_app_workspace,
v_app_owner,
v_app_alias;
CLOSE cur_owner;
END IF;
IF p_app_id IS NOT NULL AND v_app_owner IS NULL THEN
raise_application_error(
-20101,
'Could not find owner for application - are you sure you provided the right app_id?');
ELSIF p_app_id IS NOT NULL AND v_app_owner != v_current_user THEN
raise_application_error(
-20102,
'You are not the owner of the app - please login as the owner.');
END IF;
util_log_stop;
END check_owner;
$end
----------------------------------------------------------------
$if $$apex_installed $then
PROCEDURE process_apex_app IS
v_apex_files apex_t_export_files;
v_clob CLOB;
BEGIN
-- save as individual files
util_log_start(v_path.to_frontend || '/APEX_EXPORT:individual_files');
v_apex_files := apex_export.get_application(
p_application_id => p_app_id,
p_split => true,
p_with_date => p_app_date,
p_with_ir_public_reports => p_app_public_reports,
p_with_ir_private_reports => p_app_private_reports,
p_with_ir_notifications => p_app_notifications,
p_with_translations => p_app_translations,
p_with_pkg_app_mapping => p_app_pkg_app_mapping,
p_with_original_ids => p_app_original_ids,
p_with_no_subscriptions => CASE WHEN p_app_subscriptions THEN false ELSE true END,
p_with_comments => p_app_comments,
p_with_supporting_objects => p_app_supporting_objects);
FOR i IN 1..v_apex_files.count LOOP
v_export_files.extend;
-- relocate files to own project structure
v_export_files(i).name := replace(
v_apex_files(i).name,
'f' || p_app_id || '/application/',
v_path.to_frontend || '/');
-- correct prompts for relocation
v_export_files(i).contents := replace(
v_apex_files(i).contents,
'prompt --application/',
'prompt --' || v_path.to_frontend || '/');
-- special handling for install file
IF v_export_files(i).name = 'f' || p_app_id || '/install.sql' THEN
v_export_files(i).name := v_path.to_scripts || '/install_frontend_generated_by_apex.sql';
-- We need the clob as temporary container.
-- When we use v_export_files(i).contents := 'someText' || replace(replace(v_export_files(i).contents, ...) ...),
-- then Oracle 19.6 will raise "ORA-03113: end-of-file on communication channel".
-- This was running without issues in Oracle 12.2.
v_clob := '-- DO NOT TOUCH THIS FILE - IT WILL BE OVERWRITTEN ON NEXT PLEX BACKAPP CALL'
|| c_lf || c_lf
|| replace(replace(v_export_files(i).contents,
'@application/', '@' || v_path.from_scripts_to_project_root || v_path.to_frontend || '/'),
'prompt --install', 'prompt --install_frontend_generated_by_apex');
v_export_files(i).contents := v_clob;
END IF;
-- handle build status RUN_ONLY
IF v_export_files(i).name = v_path.to_frontend || '/create_application.sql' AND p_app_build_status_run_only THEN
v_export_files(i).contents := util_set_build_status_run_only(v_export_files(i).contents);
END IF;
v_apex_files.DELETE(i);
END LOOP;
util_log_stop;
--
IF p_app_include_single_file THEN
-- save as single file
v_apex_files.DELETE;
util_log_start(v_path.to_frontend || '/APEX_EXPORT:single_file');
v_apex_files := apex_export.get_application(
p_application_id => p_app_id,
p_split => false,
p_with_date => p_app_date,
p_with_ir_public_reports => p_app_public_reports,
p_with_ir_private_reports => p_app_private_reports,
p_with_ir_notifications => p_app_notifications,
p_with_translations => p_app_translations,
p_with_pkg_app_mapping => p_app_pkg_app_mapping,
p_with_original_ids => p_app_original_ids,
p_with_no_subscriptions => CASE WHEN p_app_subscriptions THEN false ELSE true END,
p_with_comments => p_app_comments,
p_with_supporting_objects => p_app_supporting_objects);
IF p_app_build_status_run_only THEN
v_apex_files(1).contents := util_set_build_status_run_only(v_apex_files(1).contents);
END IF;
util_clob_append(v_apex_files(1).contents);
util_clob_add_to_export_files(
p_export_files => v_export_files,
p_name => v_path.to_frontend || '/' || v_apex_files(1).name);
v_apex_files.DELETE;
util_log_stop;
END IF;
END process_apex_app;
$end
----------------------------------------------------------------
PROCEDURE replace_query_like_expressions (
p_like_list VARCHAR2,
p_not_like_list VARCHAR2,
p_placeholder_prefix VARCHAR2,
p_column_name VARCHAR2)
IS
v_expression_table tab_vc32k;
BEGIN
-- process filter "like"
v_expression_table := util_split(p_like_list, ',');
FOR i IN 1..v_expression_table.count LOOP
v_expression_table(i) := p_column_name
|| ' like '''
|| trim(v_expression_table(i))
|| ''' escape ''\''';
END LOOP;
v_query := replace(
v_query,
'#' || p_placeholder_prefix || '_LIKE_EXPRESSIONS#',
nvl(util_join(v_expression_table, ' or '), '1 = 1'));
-- process filter "not like"
v_expression_table := util_split(p_not_like_list, ',');
FOR i IN 1..v_expression_table.count LOOP
v_expression_table(i) := p_column_name
|| ' not like '''
|| trim(v_expression_table (i))
|| ''' escape ''\''';
END LOOP;
v_query := replace(
v_query,
'#' || p_placeholder_prefix || '_NOT_LIKE_EXPRESSIONS#',
nvl(util_join(v_expression_table, ' and '), '1 = 1'));
$if $$debug_on $then
dbms_output.put_line(v_query);
$end
END replace_query_like_expressions;
----------------------------------------------------------------
PROCEDURE process_user_ddl IS
--------------------------------
PROCEDURE process_user IS
BEGIN
v_file_path := v_path.to_backend || '/_user/' || v_current_user || '.sql';
util_log_start(v_file_path);
util_setup_dbms_metadata(p_sqlterminator => false);
util_clob_append(util_multi_replace(q'^BEGIN
FOR i IN (SELECT '{{CURRENT_USER}}' AS username FROM dual
MINUS
SELECT username FROM dba_users) LOOP
EXECUTE IMMEDIATE q'[
--------------------------------------------------------------------------------
{{DDL}}
--------------------------------------------------------------------------------
]'
END LOOP;
END;
{{/}}
^' ,
'{{CURRENT_USER}}', v_current_user,
'{{DDL}}', ltrim(dbms_metadata.get_ddl('USER', v_current_user), c_space_crlf),
'{{/}}', c_slash));
util_clob_add_to_export_files(
p_export_files => v_export_files,
p_name => v_file_path);
util_setup_dbms_metadata;
util_log_stop;
EXCEPTION
WHEN OTHERS THEN
util_setup_dbms_metadata;
util_log_error(v_file_path);
END process_user;
--------------------------------
PROCEDURE process_roles IS
BEGIN
v_file_path := v_path.to_backend || '/_user/' || v_current_user || '_roles.sql';
util_log_start(v_file_path);
FOR i IN (SELECT DISTINCT username FROM user_role_privs) LOOP
util_clob_append(regexp_replace(
--source string
dbms_metadata.get_granted_ddl('ROLE_GRANT', v_current_user),
--replace all leading whitespace
'^\s*', NULL, 1, 0, 'm'));
END LOOP;
util_clob_add_to_export_files(
p_export_files => v_export_files,
p_name => v_file_path);
util_log_stop;
EXCEPTION
WHEN OTHERS THEN
util_log_error(v_file_path);
END process_roles;
--------------------------------
PROCEDURE process_system_privileges IS
BEGIN
v_file_path := v_path.to_backend || '/_user/' || v_current_user || '_system_privileges.sql';
util_log_start(v_file_path);
FOR i IN (SELECT DISTINCT username FROM user_sys_privs) LOOP
util_clob_append(regexp_replace(
--source string
dbms_metadata.get_granted_ddl('SYSTEM_GRANT', v_current_user),
--replace all leading whitespace
'^\s*', NULL, 1, 0, 'm'));
END LOOP;
util_clob_add_to_export_files(
p_export_files => v_export_files,
p_name => v_file_path);
util_log_stop;
EXCEPTION
WHEN OTHERS THEN
util_log_error(v_file_path);
END process_system_privileges;
--------------------------------
PROCEDURE process_object_privileges IS
BEGIN
v_file_path := v_path.to_backend || '/_user/' || v_current_user || '_object_privileges.sql';
util_log_start(v_file_path);
FOR i IN (SELECT DISTINCT grantee FROM user_tab_privs WHERE grantee = v_current_user) LOOP
util_clob_append(regexp_replace(
--source string
dbms_metadata.get_granted_ddl('OBJECT_GRANT', v_current_user),
--replace all leading whitespace
'^\s*', NULL, 1, 0, 'm'));
END LOOP;
util_clob_add_to_export_files(
p_export_files => v_export_files,
p_name => v_file_path);
util_log_stop;
EXCEPTION
WHEN OTHERS THEN
util_log_error(v_file_path);
END process_object_privileges;
--------------------------------
BEGIN
process_user;
process_roles;
process_system_privileges;
process_object_privileges;
END process_user_ddl;
----------------------------------------------------------------
PROCEDURE process_object_ddl IS
TYPE obj_rec_typ IS RECORD (
object_type VARCHAR2(128),
object_name VARCHAR2(256),
file_path VARCHAR2(512));
v_rec obj_rec_typ;
no_comments_found EXCEPTION;
PRAGMA EXCEPTION_INIT(no_comments_found, -31608);
BEGIN
util_log_start(v_path.to_backend || '/open_objects_cursor');
v_query := q'^
--https://stackoverflow.com/questions/10886450/how-to-generate-entire-ddl-of-an-oracle-schema-scriptable
--https://stackoverflow.com/questions/3235300/oracles-dbms-metadata-get-ddl-for-object-type-job
WITH t AS (
SELECT CASE object_type
--http://psoug.org/reference/dbms_metadata.html
WHEN 'UNIFIED AUDIT POLICY' THEN 'AUDIT_OBJ'
WHEN 'CONSUMER GROUP' THEN 'RMGR_CONSUMER_GROUP'
WHEN 'DATABASE LINK' THEN 'DB_LINK'
WHEN 'EVALUATION CONTEXT' THEN 'PROCOBJ'
WHEN 'JAVA CLASS' THEN 'JAVA_CLASS'
WHEN 'JAVA RESOURCE' THEN 'JAVA_RESOURCE'
WHEN 'JAVA SOURCE' THEN 'JAVA_SOURCE'
WHEN 'JAVA TYPE' THEN 'JAVA_TYPE'
WHEN 'JOB' THEN 'PROCOBJ'
WHEN 'JOB CLASS' THEN 'PROCOBJ'
WHEN 'MATERIALIZED VIEW' THEN 'MATERIALIZED_VIEW'
WHEN 'PACKAGE BODY' THEN 'PACKAGE_BODY'
WHEN 'PACKAGE' THEN 'PACKAGE_SPEC'
WHEN 'PROGRAM' THEN 'PROCOBJ'
WHEN 'QUEUE' THEN 'AQ_QUEUE'
WHEN 'RESOURCE PLAN' THEN 'RMGR_PLAN'
WHEN 'RULE SET' THEN 'PROCOBJ'
WHEN 'RULE' THEN 'PROCOBJ'
WHEN 'SCHEDULE' THEN 'PROCOBJ'
WHEN 'SCHEDULER GROUP' THEN 'PROCOBJ'
WHEN 'TYPE BODY' THEN 'TYPE_BODY'
WHEN 'TYPE' THEN 'TYPE_SPEC'
ELSE object_type
END AS object_type,^'
$if $$java_installed
$then || q'^
CASE
WHEN object_type like 'JAVA%' AND substr(object_name, 1, 1) = '/' THEN
dbms_java.longname(object_name)
ELSE
object_name
END AS object_name^'
$else || q'^
object_name^'
$end || q'^
FROM ^'
$if NOT $$debug_on
$then || 'user_objects'
$else || '(SELECT MIN(object_name) AS object_name, object_type FROM user_objects GROUP BY object_type)'
$end || q'^
WHERE 1 = 1
--- Ignore invalid object types:
AND object_type NOT IN ('UNDEFINED','DESTINATION','EDITION','JAVA DATA','WINDOW')
--- These objects are included within other object types:
AND object_type NOT IN ('INDEX PARTITION','INDEX SUBPARTITION','LOB','LOB PARTITION','TABLE PARTITION','TABLE SUBPARTITION')
--- Ignore system-generated types for collection processing:
AND NOT (object_type = 'TYPE' AND object_name LIKE 'SYS_PLSQL_%')
--- Ignore system-generated sequences for identity columns:
AND NOT (object_type = 'SEQUENCE' AND object_name LIKE 'ISEQ$$_%')
--- Ignore LOB indices, their DDL is part of the table:
AND object_name NOT IN (SELECT index_name FROM user_lobs)
--- Ignore nested tables, their DDL is part of their parent table:
AND object_name NOT IN (SELECT table_name FROM user_nested_tables)
--- Ignore materialized view tables, their DDL is part of the materialized view
AND (object_type != 'TABLE' or object_type = 'TABLE' and not exists (select 1 from user_mviews where mview_name = object_name ))
--- Ignore indices for materialized view tables
AND NOT (object_type = 'INDEX' AND object_name LIKE 'SYS_C_SNAP$_%')
--- Set user specific like filters:
AND (#TYPE_LIKE_EXPRESSIONS#)
AND (#TYPE_NOT_LIKE_EXPRESSIONS#)
AND (#NAME_LIKE_EXPRESSIONS#)
AND (#NAME_NOT_LIKE_EXPRESSIONS#)
ORDER BY
object_type,
object_name
)
SELECT object_type,
object_name,
'{{BASE_PATH_APP_BACKEND}}/'
|| replace(lower(
CASE
WHEN object_type LIKE '%S' THEN object_type || 'ES'
WHEN object_type LIKE '%EX' THEN regexp_replace(object_type, 'EX$', 'ICES', 1, 0, 'i')
WHEN object_type LIKE '%Y' THEN regexp_replace(object_type, 'Y$', 'IES', 1, 0, 'i')
ELSE object_type || 'S'
END), ' ', '_')
|| '/' || object_name
|| CASE object_type
WHEN 'FUNCTION' THEN '.fnc'
WHEN 'PACKAGE BODY' THEN '.pkb'
WHEN 'PACKAGE' THEN '.pks'
WHEN 'PROCEDURE' THEN '.prc'
WHEN 'TRIGGER' THEN '.trg'
WHEN 'TYPE BODY' THEN '.tpb'
WHEN 'TYPE' THEN '.tps'
ELSE '.sql'
END AS file_path
FROM t
^' ;
v_query := replace(
v_query,
'{{BASE_PATH_APP_BACKEND}}',
v_path.to_backend);
replace_query_like_expressions(
p_like_list => p_object_type_like,
p_not_like_list => p_object_type_not_like,
p_placeholder_prefix => 'TYPE',
p_column_name => 'object_type');
replace_query_like_expressions(
p_like_list => p_object_name_like,
p_not_like_list => p_object_name_not_like,
p_placeholder_prefix => 'NAME',
p_column_name => 'object_name');
util_setup_dbms_metadata;
OPEN v_cur FOR v_query;
util_log_stop;
LOOP
FETCH v_cur INTO v_rec;
EXIT WHEN v_cur%notfound;
BEGIN
util_log_start(v_rec.file_path);
CASE v_rec.object_type
WHEN 'SEQUENCE' THEN
v_files.sequences_(v_files.sequences_.count + 1) := v_rec.file_path;
WHEN 'TABLE' THEN
v_files.tables_(v_files.tables_.count + 1) := v_rec.file_path;
WHEN 'INDEX' THEN
v_files.indices_(v_files.indices_.count + 1) := v_rec.file_path;
WHEN 'VIEW' THEN
v_files.views_(v_files.views_.count + 1) := v_rec.file_path;
WHEN 'MATERIALIZED_VIEW' THEN
v_files.mviews_(v_files.mviews_.count + 1) := v_rec.file_path;
WHEN 'TYPE_SPEC' THEN
v_files.types_(v_files.types_.count + 1) := v_rec.file_path;
WHEN 'TYPE_BODY' THEN
v_files.type_bodies_(v_files.type_bodies_.count + 1) := v_rec.file_path;
WHEN 'TRIGGER' THEN
v_files.triggers_(v_files.triggers_.count + 1) := v_rec.file_path;
WHEN 'FUNCTION' THEN
v_files.functions_(v_files.functions_.count + 1) := v_rec.file_path;
WHEN 'PROCEDURE' THEN
v_files.procedures_(v_files.procedures_.count + 1) := v_rec.file_path;
WHEN 'PACKAGE_SPEC' THEN
v_files.packages_(v_files.packages_.count + 1) := v_rec.file_path;
WHEN 'PACKAGE_BODY' THEN
v_files.package_bodies_(v_files.package_bodies_.count + 1) := v_rec.file_path;
ELSE
v_files.other_objects_(v_files.other_objects_.count + 1) := v_rec.file_path;
END CASE;
CASE
WHEN v_rec.object_type = 'VIEW' AND p_object_view_remove_col_list THEN
util_clob_append(regexp_replace(
-- source string
ltrim(dbms_metadata.get_ddl(v_rec.object_type, v_rec.object_name), c_space_crlf),
-- regex replace: remove additional column list from the compiler
'\(.*\) ', NULL, 1, 1));
WHEN v_rec.object_type IN ('TABLE', 'MATERIALIZED_VIEW', 'INDEX', 'SEQUENCE') THEN
util_setup_dbms_metadata(p_sqlterminator => false);
util_clob_append(replace(q'^BEGIN
FOR i IN (SELECT '{{OBJECT_NAME}}' AS object_name FROM dual
MINUS
SELECT object_name FROM user_objects) LOOP
EXECUTE IMMEDIATE q'[
--------------------------------------------------------------------------------
^' ,
'{{OBJECT_NAME}}',
v_rec.object_name)
|| ltrim(dbms_metadata.get_ddl(v_rec.object_type, v_rec.object_name), c_space_crlf)
|| replace(q'^
--------------------------------------------------------------------------------
]';
END LOOP;
END;
{{/}}
^' ,
'{{/}}',
c_slash));
util_setup_dbms_metadata;
ELSE
util_clob_append(ltrim(dbms_metadata.get_ddl(v_rec.object_type, v_rec.object_name), c_space_crlf));
END CASE;
IF v_rec.object_type IN ('TABLE', 'VIEW', 'MATERIALIZED_VIEW') THEN
BEGIN
util_clob_append(c_lf || c_lf || regexp_replace(
--source string
dbms_metadata.get_dependent_ddl('COMMENT', v_rec.object_name),
--replace all leading whitespace
'^\s*', NULL, 1, 0, 'm'));
EXCEPTION
WHEN no_comments_found THEN NULL;
END;
END IF;
util_clob_add_to_export_files(
p_export_files => v_export_files,
p_name => v_rec.file_path);
util_log_stop;
EXCEPTION
WHEN OTHERS THEN
util_setup_dbms_metadata;
util_log_error(v_rec.file_path);
END;
END LOOP;
CLOSE v_cur;
END process_object_ddl;
----------------------------------------------------------------
PROCEDURE process_object_grants IS
TYPE obj_rec_typ IS RECORD (
grantor VARCHAR2(128),
privilege VARCHAR2(128),
object_name VARCHAR2(256),
file_path VARCHAR2(512));
v_rec obj_rec_typ;
BEGIN
util_log_start(v_path.to_backend || '/grants:open_cursor');
v_query := q'^
SELECT DISTINCT
p.grantor,
p.privilege,
p.table_name as object_name,
'{{BASE_PATH_APP_BACKEND}}/grants/' || p.privilege || '_on_' || p.table_name || '.sql' AS file_path
FROM user_tab_privs p
JOIN user_objects o ON p.table_name = o.object_name
WHERE table_name not like 'SYS_PLSQL%'
AND (#NAME_LIKE_EXPRESSIONS#)
AND (#NAME_NOT_LIKE_EXPRESSIONS#)
ORDER BY
privilege,
object_name
^' ;
v_query := replace(
v_query,
'{{BASE_PATH_APP_BACKEND}}',
v_path.to_backend);
replace_query_like_expressions(
p_like_list => p_object_name_like,
p_not_like_list => p_object_name_not_like,
p_placeholder_prefix => 'NAME',
p_column_name => 'o.object_name');
OPEN v_cur FOR v_query;
util_log_stop;
LOOP
FETCH v_cur INTO v_rec;
EXIT WHEN v_cur%notfound;
BEGIN
util_log_start(v_rec.file_path);
util_clob_append(ltrim(dbms_metadata.get_dependent_ddl('OBJECT_GRANT', v_rec.object_name, v_rec.grantor), c_space_crlf));
v_files.grants_(v_files.grants_.count + 1) := v_rec.file_path;
util_clob_add_to_export_files(
p_export_files => v_export_files,
p_name => v_rec.file_path);
util_log_stop;
EXCEPTION
WHEN OTHERS THEN
util_log_error(v_rec.file_path);
END;
END LOOP;
CLOSE v_cur;
END process_object_grants;
----------------------------------------------------------------
PROCEDURE process_ref_constraints IS
TYPE obj_rec_typ IS RECORD (
table_name VARCHAR2(256),
constraint_name VARCHAR2(256),
file_path VARCHAR2(512));
v_rec obj_rec_typ;
BEGIN
util_log_start(v_path.to_backend || '/ref_constraints:open_cursor');
v_query := q'^
SELECT table_name,
constraint_name,
'{{BASE_PATH_APP_BACKEND}}/ref_constraints/' || constraint_name || '.sql' AS file_path
FROM user_constraints
WHERE constraint_type = 'R'
AND (#NAME_LIKE_EXPRESSIONS#)
AND (#NAME_NOT_LIKE_EXPRESSIONS#)
ORDER BY
table_name,
constraint_name
^' ;
v_query := replace(
v_query,
'{{BASE_PATH_APP_BACKEND}}',
v_path.to_backend);
replace_query_like_expressions(
p_like_list => p_object_name_like,
p_not_like_list => p_object_name_not_like,
p_placeholder_prefix => 'NAME',
p_column_name => 'table_name');
OPEN v_cur FOR v_query;
util_log_stop;
LOOP
FETCH v_cur INTO v_rec;
EXIT WHEN v_cur%notfound;
BEGIN
util_log_start(v_rec.file_path);
util_setup_dbms_metadata(p_sqlterminator => false);
util_clob_append(replace(q'^
BEGIN
FOR i IN (SELECT '{{CONSTRAINT_NAME}}' AS constraint_name FROM dual
MINUS
SELECT constraint_name FROM user_constraints) LOOP
EXECUTE IMMEDIATE q'[
--------------------------------------------------------------------------------
^' ,
'{{CONSTRAINT_NAME}}',
v_rec.constraint_name)
|| ltrim(dbms_metadata.get_ddl('REF_CONSTRAINT', v_rec.constraint_name), c_space_crlf)
|| replace(q'^
--------------------------------------------------------------------------------
]';
END LOOP;
END;
{{/}}
^' ,
'{{/}}',
c_slash));
util_setup_dbms_metadata;
v_files.ref_constraints_(v_files.ref_constraints_.count + 1) := v_rec.file_path;
util_clob_add_to_export_files(
p_export_files => v_export_files,
p_name => v_rec.file_path);
util_log_stop;
EXCEPTION
WHEN OTHERS THEN
util_setup_dbms_metadata;
util_log_error(v_rec.file_path);
END;
END LOOP;
CLOSE v_cur;
END process_ref_constraints;
----------------------------------------------------------------
PROCEDURE create_backend_install_file IS
BEGIN
v_file_path := v_path.to_scripts || '/install_backend_generated_by_plex.sql';
util_log_start(v_file_path);
util_clob_append('/* A T T E N T I O N
DO NOT TOUCH THIS FILE or set the PLEX.BackApp parameter p_include_object_ddl
to false - otherwise your changes would be overwritten on next PLEX.BackApp
call. It is recommended to export your object DDL only ones on initial
repository creation and then start to use the "files first approach".
*/
set define off verify off feedback off
whenever sqlerror exit sql.sqlcode rollback
prompt --install_backend_generated_by_plex
' );
FOR i IN 1..v_files.sequences_.count LOOP
util_clob_append(util_get_script_line(v_files.sequences_(i)));
END LOOP;
FOR i IN 1..v_files.tables_.count LOOP
util_clob_append(util_get_script_line(v_files.tables_(i)));
END LOOP;
FOR i IN 1..v_files.ref_constraints_.count LOOP
util_clob_append(util_get_script_line(v_files.ref_constraints_(i)));
END LOOP;
FOR i IN 1..v_files.types_.count LOOP
util_clob_append(util_get_script_line(v_files.types_(i)));
END LOOP;
FOR i IN 1..v_files.packages_.count LOOP
util_clob_append(util_get_script_line(v_files.packages_(i)));
END LOOP;
FOR i IN 1..v_files.views_.count LOOP
util_clob_append(util_get_script_line(v_files.views_(i)));
END LOOP;
FOR i IN 1..v_files.mviews_.count LOOP
util_clob_append(util_get_script_line(v_files.mviews_(i)));
END LOOP;
FOR i IN 1..v_files.indices_.count LOOP
util_clob_append(util_get_script_line(v_files.indices_(i)));
END LOOP;
FOR i IN 1..v_files.type_bodies_.count LOOP
util_clob_append(util_get_script_line(v_files.type_bodies_(i)));
END LOOP;
FOR i IN 1..v_files.functions_.count LOOP
util_clob_append(util_get_script_line(v_files.functions_(i)));
END LOOP;
FOR i IN 1..v_files.procedures_.count LOOP
util_clob_append(util_get_script_line(v_files.procedures_(i)));
END LOOP;
FOR i IN 1..v_files.package_bodies_.count LOOP
util_clob_append(util_get_script_line(v_files.package_bodies_(i)));
END LOOP;
FOR i IN 1..v_files.triggers_.count LOOP
util_clob_append(util_get_script_line(v_files.triggers_(i)));
END LOOP;
FOR i IN 1..v_files.grants_.count LOOP
util_clob_append(util_get_script_line(v_files.grants_(i)));
END LOOP;
FOR i IN 1..v_files.other_objects_.count LOOP
util_clob_append(util_get_script_line(v_files.other_objects_(i)));
END LOOP;
util_clob_add_to_export_files(
p_export_files => v_export_files,
p_name => v_file_path);
util_log_stop;
END create_backend_install_file;
----------------------------------------------------------------
$if $$ords_installed $then
PROCEDURE process_ords_modules IS
v_module_name user_ords_modules.name%type;
--------------------------------
PROCEDURE export_ords_modules IS
BEGIN
util_log_start(v_path.to_web_services || '/open_modules_cursor');
OPEN v_cur FOR 'select name from user_ords_modules';
util_log_stop;
--
LOOP
FETCH v_cur INTO v_module_name;
EXIT WHEN v_cur%notfound;
BEGIN
v_file_path := v_path.to_web_services || '/' || v_module_name || '.sql';
util_log_start(v_file_path);
util_clob_append(ords_export.export_module(p_module_name => v_module_name) || chr(10) || '/');
util_clob_add_to_export_files(
p_export_files => v_export_files,
p_name => v_file_path);
v_files.ords_modules_(v_files.ords_modules_.count + 1) := v_file_path;
util_log_stop;
EXCEPTION
WHEN OTHERS THEN
util_log_error(v_file_path);
END;
END LOOP;
CLOSE v_cur;
END export_ords_modules;
--------------------------------
PROCEDURE create_ords_install_file IS
BEGIN
v_file_path := v_path.to_scripts || '/install_web_services_generated_by_ords.sql';
util_log_start(v_file_path);
util_clob_append('/* A T T E N T I O N
DO NOT TOUCH THIS FILE or set the PLEX.BackApp parameter p_include_ords_modules
to false - otherwise your changes would be overwritten on next PLEX.BackApp
call.
*/
set define off verify off feedback off
whenever sqlerror exit sql.sqlcode rollback
prompt --install_web_services_generated_by_ords
' );
FOR i IN 1..v_files.ords_modules_.count LOOP
util_clob_append(util_get_script_line(v_files.ords_modules_(i)));
END LOOP;
util_clob_add_to_export_files(
p_export_files => v_export_files,
p_name => v_file_path);
util_log_stop;
END create_ords_install_file;
--------------------------------
BEGIN
export_ords_modules;
IF v_files.ords_modules_.count > 0 THEN
create_ords_install_file;
END IF;
END process_ords_modules;
$end
----------------------------------------------------------------
PROCEDURE process_data IS
TYPE obj_rec_typ IS RECORD (
table_name VARCHAR2(256),
pk_columns VARCHAR2(4000));
v_rec obj_rec_typ;
BEGIN
util_log_start(v_path.to_data || '/open_tables_cursor');
v_query := q'^
SELECT table_name,
(SELECT LISTAGG(column_name, ', ') WITHIN GROUP(ORDER BY position)
FROM user_cons_columns
WHERE constraint_name = (SELECT constraint_name
FROM user_constraints c
WHERE constraint_type = 'P'
AND c.table_name = t.table_name)
) AS pk_columns
FROM user_tables t
WHERE table_name IN (SELECT table_name FROM user_tables
MINUS
SELECT table_name FROM user_external_tables)
AND (#NAME_LIKE_EXPRESSIONS#)
AND (#NAME_NOT_LIKE_EXPRESSIONS#)
ORDER BY
table_name
^' ;
replace_query_like_expressions(
p_like_list => p_data_table_name_like,
p_not_like_list => p_data_table_name_not_like,
p_placeholder_prefix => 'NAME',
p_column_name => 'table_name');
OPEN v_cur FOR v_query;
util_log_stop;
--
util_log_start(v_path.to_data || '/get_scn');
v_data_timestamp := util_calc_data_timestamp(nvl(p_data_as_of_minutes_ago, 0));
v_data_scn := timestamp_to_scn(v_data_timestamp);
util_log_stop;
LOOP
FETCH v_cur INTO v_rec;
EXIT WHEN v_cur%notfound;
-- csv file
IF upper(p_data_format) LIKE '%CSV%' THEN
BEGIN
v_file_path := v_path.to_data || '/' || v_rec.table_name || '.csv';
util_log_start(v_file_path);
util_clob_query_to_csv(
p_query => 'SELECT * FROM ' || v_rec.table_name || ' AS OF SCN ' || v_data_scn ||
CASE
WHEN v_rec.pk_columns IS NOT NULL
THEN ' ORDER BY ' || v_rec.pk_columns
ELSE NULL
END,
p_max_rows => p_data_max_rows);
util_clob_add_to_export_files(
p_export_files => v_export_files,
p_name => v_file_path);
util_log_stop;
EXCEPTION
WHEN OTHERS THEN
util_log_error(v_file_path);
END;
END IF;
-- insert script
IF upper(p_data_format) LIKE '%INSERT%' THEN
BEGIN
v_file_path := v_path.to_data || '/' || v_rec.table_name || '.sql';
util_log_start(v_file_path);
util_clob_table_to_insert(
p_table_name => v_rec.table_name,
p_data_scn => v_data_scn,
p_max_rows => p_data_max_rows,
p_insert_all_size => to_number(nvl(regexp_substr(p_data_format,'insert:(\d+)',1,1,'i',1), '10')));
util_clob_add_to_export_files(
p_export_files => v_export_files,
p_name => v_file_path);
v_files.data_(v_files.data_.count + 1) := v_file_path;
util_log_stop;
EXCEPTION
WHEN OTHERS THEN
util_log_error(v_file_path);
END;
END IF;
END LOOP;
CLOSE v_cur;
END process_data;
----------------------------------------------------------------
PROCEDURE create_load_data_file IS
BEGIN
v_file_path := v_path.to_scripts || '/load_data_generated_by_plex.sql';
util_log_start(v_file_path);
util_clob_append('/* A T T E N T I O N
DO NOT TOUCH THIS FILE or set the PLEX.BackApp parameter p_include_data
to false - otherwise your changes would be overwritten on next PLEX.BackApp
call.
*/
set define off verify off feedback off
whenever sqlerror exit sql.sqlcode rollback
prompt --load_data_generated_by_plex
' );
FOR i IN 1..v_files.data_.count LOOP
util_clob_append('@' || v_path.from_scripts_to_project_root || v_files.data_(i) || c_crlf );
END LOOP;
util_clob_add_to_export_files(
p_export_files => v_export_files,
p_name => v_file_path);
util_log_stop;
END create_load_data_file;
----------------------------------------------------------------
PROCEDURE create_template_files IS
--------------------------------
v_file_template VARCHAR2(32767 CHAR);
PROCEDURE readme_file IS
BEGIN
v_file_template := q'^Your Global README File
=======================
It is a good practice to have a README file in the root of your project with
a high level overview of your application. Put the more detailed docs in the
docs folder.
You can start with a copy of this file. Rename it to README.md and try to use
Markdown when writing your content - this has many benefits and you don't waist
time by formatting your docs. If you are unsure have a look at some projects at
[Github](https://github.com) or any other code hosting platform.
Depending on your options when calling `plex.backapp` these files are generated
for you:
- scripts/install_backend_generated_by_plex.sql
- scripts/install_frontend_generated_by_apex.sql
- scripts/install_web_services_generated_by_ords.sql
Do not touch these generated install files. They will be overwritten on each
plex call. Depending on your call parameters it would be ok to modify the file
install_backend_generated_by_plex - especially when you follow the files first
approach and export your schema DDL only ones to have a starting point for you
repository.
If you need to do modifications for the install process then have a look at the
following templates - they call the generated files and you can do your own
stuff before or after the calls.
- scripts/templates/1_export_app_from_DEV.bat
- scripts/templates/2_install_app_into_INT.bat
- scripts/templates/3_install_app_into_PROD.bat
- scripts/templates/export_app_custom_code.sql
- scripts/templates/install_app_custom_code.sql
If you want to use these files please make a copy into the scripts directory
and modify it to your needs. Doing it this way your changes are overwrite save.
[Feedback is welcome]({{PLEX_URL}}/issues/new)
^' ;
v_file_path := 'plex_README.md';
util_log_start(v_file_path);
util_clob_append(replace(
v_file_template,
'{{PLEX_URL}}',
c_plex_url));
util_clob_add_to_export_files(
p_export_files => v_export_files,
p_name => v_file_path);
util_log_stop;
END readme_file;
--------------------------------
PROCEDURE export_batch_file IS
BEGIN
v_file_template := q'^rem Template generated by PLEX version {{PLEX_VERSION}}
rem More infos here: {{PLEX_URL}}
{{@}}echo off
setlocal
set "areyousure=N"
rem ### BEGIN CONFIG ###########################################################
rem Align substrings to your operating system locale: (how it works: https://stackoverflow.com/a/23558738)
set "datetime=%DATE:~6,4%%DATE:~3,2%%DATE:~0,2%_%TIME:~0,2%%TIME:~3,2%%TIME:~6,2%"
set "datetime=%datetime: =0%"
set "systemrole={{SYSTEMROLE}}"
set "connection=localhost:1521/xepdb1"
set "app_id={{APP_ID}}"
set "app_schema={{APP_OWNER}}"
set "scriptfile=export_app_custom_code.sql"
set "logfile=logs/%datetime%_export_app_%app_id%_from_%app_schema%_at_%systemrole%.log"
set "zipfile=BackApp_%app_id%_from_%app_schema%_at_%systemrole%_%datetime%.zip"
rem ### END CONFIG #############################################################
:PROMPT
echo(
echo(
set /p "areyousure=Run %scriptfile% on %app_schema%@%systemrole%(%connection%) [Y/N]? " || set "areyousure=N"
if /i %areyousure% neq y goto END
set NLS_LANG=AMERICAN_AMERICA.UTF8
set /p "password=Please enter password for %app_schema% [default = oracle]: " || set "password=<PASSWORD>"
echo This is the runlog for %scriptfile% on %app_schema%@%systemrole%(%connection%) > %logfile%
echo exit | sqlplus -S %app_schema%/%password%@%connection% ^
{{@}}%scriptfile% ^
%logfile% ^
%zipfile% ^
%app_id%
if %errorlevel% neq 0 echo ERROR: SQL script finished with return code %errorlevel% :-( >> %logfile%
if %errorlevel% neq 0 echo ERROR: SQL script finished with return code %errorlevel% :-(
if %errorlevel% neq 0 goto END
echo Start Post Processing on Client >> %logfile%
echo Start Post Processing on Client
echo ========================================================================= >> %logfile%
echo =========================================================================
echo Decode file %zipfile%.base64 >> %logfile%
echo Decode file %zipfile%.base64
certutil -decode %zipfile%.base64 %zipfile% >> %logfile%
if %errorlevel% neq 0 echo ERROR: Unable to decode %zipfile%.base64 :-( >> %logfile%
if %errorlevel% neq 0 echo ERROR: Unable to decode %zipfile%.base64 :-(
if %errorlevel% neq 0 goto END
del %zipfile%.base64
echo Unzip file %zipfile% >> %logfile%
echo Unzip file %zipfile%
echo - For unzip details see %logfile%
tar -xvf %zipfile% -C .. 2>> %logfile%
if %errorlevel% neq 0 echo ERROR: Unable to unzip %zipfile% :-( >> %logfile%
if %errorlevel% neq 0 echo ERROR: Unable to unzip %zipfile% :-(
if %errorlevel% neq 0 goto END
echo Delete file %zipfile% >> %logfile%
echo Delete file %zipfile%
del %zipfile%
echo ========================================================================= >> %logfile%
echo =========================================================================
echo Post Processing DONE >> %logfile%
echo Post Processing DONE
echo( >> %logfile%
echo(
:END
rem Remove "pause" for fully automated setup:
pause
if %errorlevel% neq 0 exit /b %errorlevel%
^' ;
v_file_path := v_path.to_scripts || '/templates/1_export_app_from_DEV.bat';
util_log_start(v_file_path);
util_clob_append(util_multi_replace(
v_file_template,
'{{PLEX_VERSION}}', c_plex_version,
'{{PLEX_URL}}', c_plex_url,
'{{SYSTEMROLE}}', 'DEV',
$if $$apex_installed $then
'{{APP_OWNER}}', v_app_owner,
'{{APP_ID}}', p_app_id,
$end
'{{@}}', c_at));
util_clob_add_to_export_files(
p_export_files => v_export_files,
p_name => v_file_path);
util_log_stop;
END export_batch_file;
--------------------------------
PROCEDURE export_sq_file IS
BEGIN
v_file_template := q'^/*******************************************************************************
Template generated by PLEX version {{PLEX_VERSION}}
More infos here: {{PLEX_URL}}
You need to provide three parameters:
- logfile: path to the logfile for the script console output
- zipfile: path to the export zip file - this will be created with the spool command
- app_id: the APEX app ID you want to export - only relevant when you have APEX installed
Example call for Windows:
echo exit | sqlplus -S app_schema/password@connection ^
{{@}}export_app_custom_code.sql ^
my_logfile.log ^
my_zipfile.zip ^
100
*******************************************************************************/
set timing on
timing start EXPORT_APP
set timing off verify off feedback off heading off
set trimout on trimspool on pagesize 0 linesize 5000 long 100000000 longchunksize 32767
whenever sqlerror exit sql.sqlcode rollback
-- whenever oserror exit failure rollback
define logfile = "&1."
define zipfile = "&2..base64"
spool "&logfile" append
variable contents clob
variable app_id number
BEGIN
:app_id := &3;
END;
{{/}}
prompt
prompt Start Export from Database
prompt =========================================================================
prompt Do the app export and save to zip file
prompt ATTENTION: Depending on your options this could take some time ...
BEGIN
:contents := plex.to_base64(plex.to_zip(plex.backapp(
-- These are the defaults - align it to your needs:^';
$if $$apex_installed $then
v_file_template := v_file_template || q'^
p_app_id => :app_id,
p_app_date => true,
p_app_public_reports => true,
p_app_private_reports => false,
p_app_notifications => false,
p_app_translations => true,
p_app_pkg_app_mapping => false,
p_app_original_ids => false,
p_app_subscriptions => true,
p_app_comments => true,
p_app_supporting_objects => null,
p_app_include_single_file => false,
p_app_build_status_run_only => false,^';
$end
$if $$ords_installed $then
v_file_template := v_file_template || q'^
p_include_ords_modules => false,^';
$end
v_file_template := v_file_template || q'^
p_include_object_ddl => true,
p_object_type_like => null,
p_object_type_not_like => null,
p_object_name_like => null,
p_object_name_not_like => null,
p_include_data => false,
p_data_as_of_minutes_ago => 0,
p_data_max_rows => 1000,
p_data_table_name_like => null,
p_data_table_name_not_like => null,
p_include_templates => true,
p_include_runtime_log => true,
p_include_error_log => true,
p_base_path_backend => 'app_backend',
p_base_path_frontend => 'app_frontend',
p_base_path_web_services => 'app_web_services',
p_base_path_data => 'app_data',
p_base_path_docs => 'docs',
p_base_path_tests => 'tests',
p_base_path_scripts => 'scripts',
p_base_path_script_logs => 'scripts/logs',
p_scripts_working_directory => 'scripts')));
END;
{{/}}
prompt Spool the resulting base64 encoded zip file to client disk
spool off
set termout off
spool "&zipfile"
print contents
set termout on
spool "&logfile." append
timing stop EXPORT_APP
prompt =========================================================================
prompt Export DONE :-)
prompt
^' ;
v_file_path := v_path.to_scripts || '/templates/export_app_custom_code.sql';
util_log_start(v_file_path);
util_clob_append(util_multi_replace(
v_file_template,
'{{PLEX_VERSION}}', c_plex_version,
'{{PLEX_URL}}', c_plex_url,
'{{/}}', c_slash,
'{{@}}', c_at));
util_clob_add_to_export_files(
p_export_files => v_export_files,
p_name => v_file_path);
util_log_stop;
END export_sq_file;
--------------------------------
PROCEDURE install_batch_files IS
BEGIN
v_file_template := q'^rem Template generated by PLEX version {{PLEX_VERSION}}
rem More infos here: {{PLEX_URL}}
{{@}}echo off
setlocal
set "areyousure=N"
rem ### BEGIN CONFIG ###########################################################
rem Align substrings to your operating system locale: (how it works: https://stackoverflow.com/a/23558738)
set "datetime=%DATE:~6,4%%DATE:~3,2%%DATE:~0,2%_%TIME:~0,2%%TIME:~3,2%%TIME:~6,2%"
set "datetime=%datetime: =0%"
set "systemrole={{SYSTEMROLE}}"
set "connection=localhost:1521/xepdb1"
set "app_id={{APP_ID}}"
set "app_alias={{APP_ALIAS}}"
set "app_schema={{APP_OWNER}}"
set "app_workspace={{APP_WORKSPACE}}"
set "scriptfile=install_app_custom_code.sql"
set "logfile=logs/%datetime%_install_app_%app_id%_into_%app_schema%_at_%systemrole%.log"
rem ### END CONFIG #############################################################
:PROMPT
echo.
echo.
set /p "areyousure=Run %scriptfile% on %app_schema%@%systemrole%(%connection%) [Y/N]? " || set "areyousure=N"
if /i %areyousure% neq y goto END
set NLS_LANG=AMERICAN_AMERICA.UTF8
set /p "password=Please enter password for %app_schema% [default = oracle]: " || set "password=<PASSWORD>"
echo This is the runlog for %scriptfile% on %app_schema%@%systemrole%(%connection%) > %logfile%
echo exit | sqlplus -S %app_schema%/%password%@%connection% ^
{{@}}%scriptfile% ^
%logfile% ^
%app_id% ^
%app_alias% ^
%app_schema% ^
%app_workspace%
if %errorlevel% neq 0 echo ERROR: SQL script finished with return code %errorlevel% :-( >> %logfile%
if %errorlevel% neq 0 echo ERROR: SQL script finished with return code %errorlevel% :-(
:END
rem Remove "pause" for fully automated setup:
pause
if %errorlevel% neq 0 exit /b %errorlevel%
^' ;
v_file_path := v_path.to_scripts || '/templates/2_install_app_into_INT.bat';
util_log_start(v_file_path);
util_clob_append(util_multi_replace(
v_file_template,
'{{PLEX_VERSION}}', c_plex_version,
'{{PLEX_URL}}', c_plex_url,
'{{SYSTEMROLE}}', 'INT',
$if $$apex_installed $then
'{{APP_ID}}', p_app_id,
'{{APP_ALIAS}}', v_app_alias,
'{{APP_OWNER}}', v_app_owner,
'{{APP_WORKSPACE}}', v_app_workspace,
$end
'{{@}}', c_at));
util_clob_add_to_export_files(
p_export_files => v_export_files,
p_name => v_file_path);
util_log_stop;
v_file_path := v_path.to_scripts || '/templates/3_install_app_into_PROD.bat';
util_log_start(v_file_path);
util_clob_append(util_multi_replace(
v_file_template,
'{{PLEX_VERSION}}', c_plex_version,
'{{PLEX_URL}}', c_plex_url,
'{{SYSTEMROLE}}', 'PROD',
$if $$apex_installed $then
'{{APP_ID}}', p_app_id,
'{{APP_ALIAS}}', v_app_alias,
'{{APP_OWNER}}', v_app_owner,
'{{APP_WORKSPACE}}', v_app_workspace,
$end
'{{@}}', c_at));
util_clob_add_to_export_files(
p_export_files => v_export_files,
p_name => v_file_path);
util_log_stop;
END install_batch_files;
--------------------------------
PROCEDURE install_sql_file IS
BEGIN
v_file_template := q'^/*******************************************************************************
Template generated by PLEX version {{PLEX_VERSION}}
More infos here: {{PLEX_URL}}
You need to provide five parameters:
- logfile: path to the logfile for the script console output
- app_id: the APEX app ID you want to have for the installation
- app_alias: the alias you want to have for your app
- app_schema: the parsing schema for your app
- app_workspace: the workspace where your app should be installed
Example call for Windows:
echo exit | sqlplus -S app_schema/password@connection ^
{{@}}install_app_custom_code.sql ^
my_logfile.log ^
100 ^
MY_APP_ALIAS ^
MY_APP_SCHEMA ^
MY_APP_WORKSPACE
*******************************************************************************/
set timing on define on
timing start INSTALL_APP
set timing off verify off feedback off
whenever sqlerror exit sql.sqlcode rollback
-- whenever oserror exit failure rollback
define logfile = "&1"
spool "&logfile" append
variable app_id varchar2(100)
variable app_alias varchar2(100)
variable app_schema varchar2(100)
variable app_workspace varchar2(100)
BEGIN
:app_id := &2;
:app_alias := '&3';
:app_schema := '&4';
:app_workspace := '&5';
END;
{{/}}
set define off
prompt
prompt Start Installation
prompt =========================================================================
prompt Install Backend
{{@}}install_backend_generated_by_plex.sql
--prompt Load Initial Data
--{{@}}load_data_generated_by_plex.sql
prompt Compile Invalid Objects
BEGIN
dbms_utility.compile_schema(
schema => user,
compile_all => false,
reuse_settings => true);
END;
{{/}}
prompt Check Invalid Objects
DECLARE
v_count PLS_INTEGER;
v_objects VARCHAR2(4000);
BEGIN
SELECT COUNT(*), chr(10) ||
listagg('- ' || object_name || ' (' || object_type || ')', chr(10)) within GROUP(ORDER BY object_name)
INTO v_count, v_objects
FROM user_objects
WHERE status = 'INVALID';
IF v_count > 0 THEN
raise_application_error(-20000, chr(10) || chr(10) ||
'Found ' || v_count || ' invalid object' || CASE WHEN v_count > 1 THEN 's' END ||
' :-( ' || chr(10) || '=============================' || v_objects || chr(10) || chr(10) );
END IF;
END;
{{/}}
prompt Install Web Services
{{@}}install_web_services_generated_by_ords.sql
prompt Install Frontend
BEGIN
apex_application_install.set_workspace_id(APEX_UTIL.find_security_group_id(:app_workspace));
apex_application_install.set_application_alias(:app_alias);
apex_application_install.set_application_id(:app_id);
apex_application_install.set_schema(:app_schema);
apex_application_install.generate_offset;
END;
{{/}}
{{@}}install_frontend_generated_by_apex.sql
timing stop INSTALL_APP
prompt =========================================================================
prompt Installation DONE :-)
prompt
^' ;
v_file_path := v_path.to_scripts || '/templates/install_app_custom_code.sql';
util_log_start(v_file_path);
util_clob_append(util_multi_replace(
v_file_template,
'{{PLEX_VERSION}}', c_plex_version,
'{{PLEX_URL}}', c_plex_url,
'{{/}}', c_slash,
'{{@}}', c_at));
util_clob_add_to_export_files(
p_export_files => v_export_files,
p_name => v_file_path);
util_log_stop;
END install_sql_file;
--------------------------------
BEGIN
readme_file;
export_batch_file;
export_sq_file;
install_batch_files;
install_sql_file;
END create_template_files;
----------------------------------------------------------------
PROCEDURE create_directory_keepers IS
v_the_point VARCHAR2(30) := '. < this is the point ;-)';
BEGIN
v_file_path := v_path.to_docs || '/_save_your_docs_here.txt';
util_log_start(v_file_path);
util_clob_append(v_the_point);
util_clob_add_to_export_files(
p_export_files => v_export_files,
p_name => v_file_path);
util_log_stop;
--
v_file_path := v_path.to_script_logs || '/_spool_your_script_logs_here.txt';
util_log_start(v_file_path);
util_clob_append(v_the_point);
util_clob_add_to_export_files(
p_export_files => v_export_files,
p_name => v_file_path);
util_log_stop;
--
v_file_path := v_path.to_tests || '/_save_your_tests_here.txt';
util_log_start(v_file_path);
util_clob_append(v_the_point);
util_clob_add_to_export_files(
p_export_files => v_export_files,
p_name => v_file_path);
util_log_stop;
END create_directory_keepers;
----------------------------------------------------------------
PROCEDURE finish IS
BEGIN
util_ensure_unique_file_names(v_export_files, v_path.to_scripts);
IF p_include_error_log THEN
util_clob_create_error_log(v_export_files);
END IF;
IF p_include_runtime_log THEN
util_clob_create_runtime_log(v_export_files);
END IF;
END finish;
----------------------------------------------------------------
BEGIN
init;
$if $$apex_installed $then
check_owner;
IF p_app_id IS NOT NULL THEN
process_apex_app;
END IF;
$end
IF p_include_object_ddl THEN
process_user_ddl;
process_object_ddl;
$if NOT $$debug_on $then
-- excluded in debug mode (potential long running object types)
process_object_grants;
process_ref_constraints;
$end
create_backend_install_file;
END IF;
$if $$ords_installed $then
IF p_include_ords_modules THEN
process_ords_modules;
END IF;
$end
IF p_include_data THEN
process_data;
if upper(p_data_format) LIKE '%INSERT%' then
create_load_data_file;
end if;
END IF;
IF p_include_templates THEN
create_template_files;
create_directory_keepers;
END IF;
finish;
RETURN v_export_files;
END backapp;
--------------------------------------------------------------------------------------------------------------------------------
PROCEDURE add_query (
p_query VARCHAR2,
p_file_name VARCHAR2,
p_max_rows NUMBER DEFAULT 1000)
IS
v_index PLS_INTEGER;
BEGIN
v_index := g_queries.count + 1;
g_queries(v_index).query := p_query;
g_queries(v_index).file_name := p_file_name;
g_queries(v_index).max_rows := p_max_rows;
END add_query;
--------------------------------------------------------------------------------------------------------------------------------
FUNCTION queries_to_csv (
p_delimiter IN VARCHAR2 DEFAULT ',',
p_quote_mark IN VARCHAR2 DEFAULT '"',
p_header_prefix IN VARCHAR2 DEFAULT NULL,
p_include_runtime_log IN BOOLEAN DEFAULT true,
p_include_error_log IN BOOLEAN DEFAULT true)
RETURN tab_export_files IS
v_export_files tab_export_files;
----------------------------------------------------------------
PROCEDURE init IS
BEGIN
IF g_queries.count = 0 THEN
raise_application_error(
-20201,
'You need first to add queries by using plex.add_query. Calling plex.queries_to_csv clears the global queries array for subsequent processing.');
END IF;
util_log_init(p_module => 'plex.queries_to_csv');
util_log_start('init');
v_export_files := NEW tab_export_files();
util_log_stop;
END init;
----------------------------------------------------------------
PROCEDURE process_queries IS
BEGIN
FOR i IN g_queries.first..g_queries.last LOOP
BEGIN
util_log_start('process_query ' || TO_CHAR(i) || ': ' || g_queries(i).file_name);
util_clob_query_to_csv(
p_query => g_queries(i).query,
p_max_rows => g_queries(i).max_rows,
p_delimiter => p_delimiter,
p_quote_mark => p_quote_mark,
p_header_prefix => p_header_prefix);
util_clob_add_to_export_files(
p_export_files => v_export_files,
p_name => g_queries(i).file_name || '.csv');
util_log_stop;
EXCEPTION
WHEN OTHERS THEN
util_log_error(g_queries(i).file_name);
END;
END LOOP;
END process_queries;
----------------------------------------------------------------
PROCEDURE finish IS
BEGIN
g_queries.DELETE;
util_ensure_unique_file_names(v_export_files);
IF p_include_error_log THEN
util_clob_create_error_log(v_export_files);
END IF;
IF p_include_runtime_log THEN
util_clob_create_runtime_log(v_export_files);
END IF;
END finish;
----------------------------------------------------------------
BEGIN
init;
process_queries;
finish;
RETURN v_export_files;
EXCEPTION
WHEN others THEN
g_queries.DELETE;
END queries_to_csv;
--------------------------------------------------------------------------------------------------------------------------------
FUNCTION to_zip (p_file_collection IN tab_export_files) RETURN BLOB IS
v_zip BLOB;
BEGIN
dbms_lob.createtemporary(v_zip, true);
util_log_start('post processing with to_zip: ' || p_file_collection.count || ' files');
FOR i IN 1..p_file_collection.count LOOP
util_zip_add_file(
p_zipped_blob => v_zip,
p_name => p_file_collection(i).name,
p_content => util_clob_to_blob(p_file_collection(i).contents));
END LOOP;
util_zip_finish(v_zip);
util_log_stop;
util_log_calc_runtimes;
RETURN v_zip;
END to_zip;
--------------------------------------------------------------------------------------------------------------------------------
-- copyright by <NAME>, see https://oracle-base.com/dba/script?category=miscellaneous&file=base64encode.sql
FUNCTION to_base64(p_blob IN BLOB) RETURN CLOB IS
v_bas64 CLOB;
v_step PLS_INTEGER := 14400; -- make sure you set a multiple of 3 not higher than 24573
-- size of a whole multiple of 48 is beneficial to get NEW_LINE after each 64 characters
BEGIN
util_log_start('post processing with to_base64');
FOR i IN 0 .. TRUNC((DBMS_LOB.getlength(p_blob) - 1 ) / v_step) LOOP
v_bas64 := v_bas64 || UTL_RAW.cast_to_varchar2(UTL_ENCODE.base64_encode(DBMS_LOB.substr(p_blob, v_step, i * v_step + 1)));
END LOOP;
util_log_stop;
util_log_calc_runtimes;
RETURN v_bas64;
END;
--------------------------------------------------------------------------------------------------------------------------------
FUNCTION view_error_log RETURN tab_error_log PIPELINED IS
BEGIN
FOR i IN 1..g_errlog.count LOOP
PIPE ROW (g_errlog(i));
END LOOP;
END view_error_log;
--------------------------------------------------------------------------------------------------------------------------------
FUNCTION view_runtime_log RETURN tab_runtime_log PIPELINED IS
v_return rec_runtime_log;
BEGIN
v_return.overall_start_time := g_runlog.start_time;
v_return.overall_run_time := round(g_runlog.run_time, 3);
FOR i IN 1..g_runlog.data.count LOOP
v_return.step := i;
v_return.elapsed := round(g_runlog.data(i).elapsed, 3);
v_return.execution := round(g_runlog.data(i).execution, 6);
v_return.module := g_runlog.module;
v_return.action := g_runlog.data(i).action;
PIPE ROW (v_return);
END LOOP;
END view_runtime_log;
--------------------------------------------------------------------------------------------------------------------------------
BEGIN
IF dbms_lob.istemporary(g_clob) = 0 THEN
dbms_lob.createtemporary(g_clob, true);
END IF;
END plex;
/ |
-- ========================
-- Information
-- ========================
-- Direct Link: https://www.hackerrank.com/challenges/the-company/problem
-- Difficulty: Medium
-- Max Score: 30
-- DBMS: mySQL
-- ========================
-- Solution
-- ========================
SELECT c.company_code, c.founder,
COUNT(DISTINCT l.lead_manager_code), COUNT(DISTINCT s.senior_manager_code),
COUNT(DISTINCT m.manager_code), COUNT(DISTINCT e.employee_code)
FROM Company c, Lead_Manager l, Senior_Manager s, Manager m, Employee e
WHERE c.company_code = l.company_code AND
l.lead_manager_code = s.lead_manager_code AND
s.senior_manager_code = m.senior_manager_code AND
m.manager_code = e.manager_code
GROUP BY c.company_code, c.founder ORDER BY c.company_code;
-- ========================
-- Explanation
-- ========================
-- DISTINCT() used to avoid duplication
-- COUNT() used to return the number of rows in a table
|
<reponame>dram/metasfresh
-- 2021-06-28T12:40:55.955Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_Element_Trl SET Help='', Description='Wenn ja, dann muss der betreffende Geschäftspartner eine Umsatzsteuer-ID haben, damit der Steuersatz matcht.',Updated=TO_TIMESTAMP('2021-06-28 14:40:55','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Element_ID=579121 AND AD_Language='de_CH'
;
-- 2021-06-28T12:40:55.963Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
/* DDL */ select update_TRL_Tables_On_AD_Element_TRL_Update(579121,'de_CH')
;
-- 2021-06-28T12:41:07.481Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_Element_Trl SET Help='', Description='Wenn ja, dann muss der betreffende Geschäftspartner eine Umsatzsteuer-ID haben, damit der Steuersatz matcht.',Updated=TO_TIMESTAMP('2021-06-28 14:41:07','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Element_ID=579121 AND AD_Language='de_DE'
;
-- 2021-06-28T12:41:07.483Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
/* DDL */ select update_TRL_Tables_On_AD_Element_TRL_Update(579121,'de_DE')
;
-- 2021-06-28T12:41:07.490Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
/* DDL */ select update_ad_element_on_ad_element_trl_update(579121,'de_DE')
;
-- 2021-06-28T12:41:07.494Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_Column SET ColumnName=NULL, Name='Partner hat eine Ust.-ID', Description='Wenn ja, dann muss der betreffende Geschäftspartner eine Umsatzsteuer-ID haben, damit der Steuersatz matcht.', Help='' WHERE AD_Element_ID=579121
;
-- 2021-06-28T12:41:07.495Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_Process_Para SET ColumnName=NULL, Name='Partner hat eine Ust.-ID', Description='Wenn ja, dann muss der betreffende Geschäftspartner eine Umsatzsteuer-ID haben, damit der Steuersatz matcht.', Help='' WHERE AD_Element_ID=579121 AND IsCentrallyMaintained='Y'
;
-- 2021-06-28T12:41:07.496Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_Field SET Name='Partner hat eine Ust.-ID', Description='Wenn ja, dann muss der betreffende Geschäftspartner eine Umsatzsteuer-ID haben, damit der Steuersatz matcht.', Help='' WHERE (AD_Column_ID IN (SELECT AD_Column_ID FROM AD_Column WHERE AD_Element_ID=579121) AND AD_Name_ID IS NULL ) OR (AD_Name_ID = 579121)
;
-- 2021-06-28T12:41:07.503Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_Tab SET Name='Partner hat eine Ust.-ID', Description='Wenn ja, dann muss der betreffende Geschäftspartner eine Umsatzsteuer-ID haben, damit der Steuersatz matcht.', Help='', CommitWarning = NULL WHERE AD_Element_ID = 579121
;
-- 2021-06-28T12:41:07.506Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_WINDOW SET Name='Partner hat eine Ust.-ID', Description='Wenn ja, dann muss der betreffende Geschäftspartner eine Umsatzsteuer-ID haben, damit der Steuersatz matcht.', Help='' WHERE AD_Element_ID = 579121
;
-- 2021-06-28T12:41:07.508Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_Menu SET Name = 'Partner hat eine Ust.-ID', Description = 'Wenn ja, dann muss der betreffende Geschäftspartner eine Umsatzsteuer-ID haben, damit der Steuersatz matcht.', WEBUI_NameBrowse = NULL, WEBUI_NameNew = NULL, WEBUI_NameNewBreadcrumb = NULL WHERE AD_Element_ID = 579121
;
-- 2021-06-28T12:42:02.495Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_Element_Trl SET Help='If set to yes, then the respective business partner needs to have a VAT-ID in order for the tax record to match.',Updated=TO_TIMESTAMP('2021-06-28 14:42:02','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Element_ID=579121 AND AD_Language='en_US'
;
-- 2021-06-28T12:42:02.497Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
/* DDL */ select update_TRL_Tables_On_AD_Element_TRL_Update(579121,'en_US')
;
-- 2021-06-28T12:46:50.811Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_Element_Trl SET Description='If set to yes, then the respective business partner needs to have a small business tax exemption in order for the tax record to match.',Updated=TO_TIMESTAMP('2021-06-28 14:46:50','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Element_ID=579210 AND AD_Language='en_US'
;
-- 2021-06-28T12:46:50.812Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
/* DDL */ select update_TRL_Tables_On_AD_Element_TRL_Update(579210,'en_US')
;
-- 2021-06-28T12:48:30.764Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_Element_Trl SET Description='Wenn angehakt, dann muss der betreffende Geschäftspartner eine Kleinunternehmer-Steuerbefreiung haben, damit der Steuersatz matcht.', IsTranslated='Y',Updated=TO_TIMESTAMP('2021-06-28 14:48:30','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Element_ID=579210 AND AD_Language='de_DE'
;
-- 2021-06-28T12:48:30.765Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
/* DDL */ select update_TRL_Tables_On_AD_Element_TRL_Update(579210,'de_DE')
;
-- 2021-06-28T12:48:30.780Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
/* DDL */ select update_ad_element_on_ad_element_trl_update(579210,'de_DE')
;
-- 2021-06-28T12:48:30.782Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_Column SET ColumnName='IsSmallbusiness', Name='Kleinunernehmen', Description='Wenn angehakt, dann muss der betreffende Geschäftspartner eine Kleinunternehmer-Steuerbefreiung haben, damit der Steuersatz matcht.', Help=NULL WHERE AD_Element_ID=579210
;
-- 2021-06-28T12:48:30.784Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_Process_Para SET ColumnName='IsSmallbusiness', Name='Kleinunernehmen', Description='Wenn angehakt, dann muss der betreffende Geschäftspartner eine Kleinunternehmer-Steuerbefreiung haben, damit der Steuersatz matcht.', Help=NULL, AD_Element_ID=579210 WHERE UPPER(ColumnName)='ISSMALLBUSINESS' AND IsCentrallyMaintained='Y' AND AD_Element_ID IS NULL
;
-- 2021-06-28T12:48:30.787Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_Process_Para SET ColumnName='IsSmallbusiness', Name='Kleinunernehmen', Description='Wenn angehakt, dann muss der betreffende Geschäftspartner eine Kleinunternehmer-Steuerbefreiung haben, damit der Steuersatz matcht.', Help=NULL WHERE AD_Element_ID=579210 AND IsCentrallyMaintained='Y'
;
-- 2021-06-28T12:48:30.789Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_Field SET Name='Kleinunernehmen', Description='Wenn angehakt, dann muss der betreffende Geschäftspartner eine Kleinunternehmer-Steuerbefreiung haben, damit der Steuersatz matcht.', Help=NULL WHERE (AD_Column_ID IN (SELECT AD_Column_ID FROM AD_Column WHERE AD_Element_ID=579210) AND AD_Name_ID IS NULL ) OR (AD_Name_ID = 579210)
;
-- 2021-06-28T12:48:30.800Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_Tab SET Name='Kleinunernehmen', Description='Wenn angehakt, dann muss der betreffende Geschäftspartner eine Kleinunternehmer-Steuerbefreiung haben, damit der Steuersatz matcht.', Help=NULL, CommitWarning = NULL WHERE AD_Element_ID = 579210
;
-- 2021-06-28T12:48:30.803Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_WINDOW SET Name='Kleinunernehmen', Description='Wenn angehakt, dann muss der betreffende Geschäftspartner eine Kleinunternehmer-Steuerbefreiung haben, damit der Steuersatz matcht.', Help=NULL WHERE AD_Element_ID = 579210
;
-- 2021-06-28T12:48:30.805Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_Menu SET Name = 'Kleinunernehmen', Description = 'Wenn angehakt, dann muss der betreffende Geschäftspartner eine Kleinunternehmer-Steuerbefreiung haben, damit der Steuersatz matcht.', WEBUI_NameBrowse = NULL, WEBUI_NameNew = NULL, WEBUI_NameNewBreadcrumb = NULL WHERE AD_Element_ID = 579210
;
-- 2021-06-28T12:48:41.602Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_Element_Trl SET Description='Wenn angehakt, dann muss der betreffende Geschäftspartner eine Kleinunternehmer-Steuerbefreiung haben, damit der Steuersatz matcht.',Updated=TO_TIMESTAMP('2021-06-28 14:48:41','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Element_ID=579210 AND AD_Language='de_CH'
;
-- 2021-06-28T12:48:41.605Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
/* DDL */ select update_TRL_Tables_On_AD_Element_TRL_Update(579210,'de_CH')
;
-- 2021-06-28T12:48:47.152Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_Element_Trl SET IsTranslated='Y',Updated=TO_TIMESTAMP('2021-06-28 14:48:47','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Element_ID=579210 AND AD_Language='de_CH'
;
-- 2021-06-28T12:48:47.153Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
/* DDL */ select update_TRL_Tables_On_AD_Element_TRL_Update(579210,'de_CH')
;
-- 2021-06-28T12:49:59.734Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_Column SET AD_Reference_ID=17, AD_Reference_Value_ID=540528,Updated=TO_TIMESTAMP('2021-06-28 14:49:59','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=573975
;
-- 2021-06-28T12:50:02.955Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
INSERT INTO t_alter_column values('c_tax','IsSmallbusiness','CHAR(1)',null,'N')
;
-- 2021-06-28T12:51:00.285Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_Element_Trl SET Description='Wenn "Ja", dann muss der betreffende Geschäftspartner eine Kleinunternehmer-Steuerbefreiung haben, damit der Steuersatz matcht. Wenn "Nein", dann darf keine Befreiung vorliegen.',Updated=TO_TIMESTAMP('2021-06-28 14:51:00','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Element_ID=579210 AND AD_Language='de_CH'
;
-- 2021-06-28T12:51:00.286Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
/* DDL */ select update_TRL_Tables_On_AD_Element_TRL_Update(579210,'de_CH')
;
-- 2021-06-28T12:51:07.377Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_Element_Trl SET Description='Wenn "Ja", dann muss der betreffende Geschäftspartner eine Kleinunternehmer-Steuerbefreiung haben, damit der Steuersatz matcht. Wenn "Nein", dann darf keine Befreiung vorliegen.',Updated=TO_TIMESTAMP('2021-06-28 14:51:07','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Element_ID=579210 AND AD_Language='de_DE'
;
-- 2021-06-28T12:51:07.380Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
/* DDL */ select update_TRL_Tables_On_AD_Element_TRL_Update(579210,'de_DE')
;
-- 2021-06-28T12:51:07.390Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
/* DDL */ select update_ad_element_on_ad_element_trl_update(579210,'de_DE')
;
-- 2021-06-28T12:51:07.393Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_Column SET ColumnName='IsSmallbusiness', Name='Kleinunernehmen', Description='Wenn "Ja", dann muss der betreffende Geschäftspartner eine Kleinunternehmer-Steuerbefreiung haben, damit der Steuersatz matcht. Wenn "Nein", dann darf keine Befreiung vorliegen.', Help=NULL WHERE AD_Element_ID=579210
;
-- 2021-06-28T12:51:07.394Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_Process_Para SET ColumnName='IsSmallbusiness', Name='Kleinunernehmen', Description='Wenn "Ja", dann muss der betreffende Geschäftspartner eine Kleinunternehmer-Steuerbefreiung haben, damit der Steuersatz matcht. Wenn "Nein", dann darf keine Befreiung vorliegen.', Help=NULL, AD_Element_ID=579210 WHERE UPPER(ColumnName)='ISSMALLBUSINESS' AND IsCentrallyMaintained='Y' AND AD_Element_ID IS NULL
;
-- 2021-06-28T12:51:07.396Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_Process_Para SET ColumnName='IsSmallbusiness', Name='Kleinunernehmen', Description='Wenn "Ja", dann muss der betreffende Geschäftspartner eine Kleinunternehmer-Steuerbefreiung haben, damit der Steuersatz matcht. Wenn "Nein", dann darf keine Befreiung vorliegen.', Help=NULL WHERE AD_Element_ID=579210 AND IsCentrallyMaintained='Y'
;
-- 2021-06-28T12:51:07.397Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_Field SET Name='Kleinunernehmen', Description='Wenn "Ja", dann muss der betreffende Geschäftspartner eine Kleinunternehmer-Steuerbefreiung haben, damit der Steuersatz matcht. Wenn "Nein", dann darf keine Befreiung vorliegen.', Help=NULL WHERE (AD_Column_ID IN (SELECT AD_Column_ID FROM AD_Column WHERE AD_Element_ID=579210) AND AD_Name_ID IS NULL ) OR (AD_Name_ID = 579210)
;
-- 2021-06-28T12:51:07.408Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_Tab SET Name='Kleinunernehmen', Description='Wenn "Ja", dann muss der betreffende Geschäftspartner eine Kleinunternehmer-Steuerbefreiung haben, damit der Steuersatz matcht. Wenn "Nein", dann darf keine Befreiung vorliegen.', Help=NULL, CommitWarning = NULL WHERE AD_Element_ID = 579210
;
-- 2021-06-28T12:51:07.410Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_WINDOW SET Name='Kleinunernehmen', Description='Wenn "Ja", dann muss der betreffende Geschäftspartner eine Kleinunternehmer-Steuerbefreiung haben, damit der Steuersatz matcht. Wenn "Nein", dann darf keine Befreiung vorliegen.', Help=NULL WHERE AD_Element_ID = 579210
;
-- 2021-06-28T12:51:07.412Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_Menu SET Name = 'Kleinunernehmen', Description = 'Wenn "Ja", dann muss der betreffende Geschäftspartner eine Kleinunternehmer-Steuerbefreiung haben, damit der Steuersatz matcht. Wenn "Nein", dann darf keine Befreiung vorliegen.', WEBUI_NameBrowse = NULL, WEBUI_NameNew = NULL, WEBUI_NameNewBreadcrumb = NULL WHERE AD_Element_ID = 579210
;
-- 2021-06-28T12:51:38.518Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_Element_Trl SET Description='If set to "yes", then the respective business partner needs to have a small business tax exemption in order for the tax record to match. If set to "No", then there may be no such exception.',Updated=TO_TIMESTAMP('2021-06-28 14:51:38','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Element_ID=579210 AND AD_Language='en_US'
;
-- 2021-06-28T12:51:38.520Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
/* DDL */ select update_TRL_Tables_On_AD_Element_TRL_Update(579210,'en_US')
;
-- 2021-06-28T12:52:13.658Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_Column SET AD_Reference_ID=17, DefaultValue='N', AD_Reference_Value_ID=540528,Updated=TO_TIMESTAMP('2021-06-28 14:52:13','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=3695
;
-- 2021-06-28T12:52:15.115Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
INSERT INTO t_alter_column values('c_tax','RequiresTaxCertificate','CHAR(1)',null,'N')
;
-- 2021-06-28T12:52:15.417Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
--UPDATE C_Tax SET RequiresTaxCertificate='N' WHERE RequiresTaxCertificate IS NULL
--;
-- 2021-06-28T12:53:38.376Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_Element_Trl SET Description='Wenn "Ja", dann muss der betreffende Geschäftspartner eine Umsatzsteuer-ID haben, damit der Steuersatz matcht. Wenn "Nein", dann darf keine Umsatzsteuer-ID vorliegen.',Updated=TO_TIMESTAMP('2021-06-28 14:53:38','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Element_ID=579121 AND AD_Language='de_DE'
;
-- 2021-06-28T12:53:38.377Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
/* DDL */ select update_TRL_Tables_On_AD_Element_TRL_Update(579121,'de_DE')
;
-- 2021-06-28T12:53:38.384Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
/* DDL */ select update_ad_element_on_ad_element_trl_update(579121,'de_DE')
;
-- 2021-06-28T12:53:38.385Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_Column SET ColumnName=NULL, Name='Partner hat eine Ust.-ID', Description='Wenn "Ja", dann muss der betreffende Geschäftspartner eine Umsatzsteuer-ID haben, damit der Steuersatz matcht. Wenn "Nein", dann darf keine Umsatzsteuer-ID vorliegen.', Help='' WHERE AD_Element_ID=579121
;
-- 2021-06-28T12:53:38.386Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_Process_Para SET ColumnName=NULL, Name='Partner hat eine Ust.-ID', Description='Wenn "Ja", dann muss der betreffende Geschäftspartner eine Umsatzsteuer-ID haben, damit der Steuersatz matcht. Wenn "Nein", dann darf keine Umsatzsteuer-ID vorliegen.', Help='' WHERE AD_Element_ID=579121 AND IsCentrallyMaintained='Y'
;
-- 2021-06-28T12:53:38.387Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_Field SET Name='Partner hat eine Ust.-ID', Description='Wenn "Ja", dann muss der betreffende Geschäftspartner eine Umsatzsteuer-ID haben, damit der Steuersatz matcht. Wenn "Nein", dann darf keine Umsatzsteuer-ID vorliegen.', Help='' WHERE (AD_Column_ID IN (SELECT AD_Column_ID FROM AD_Column WHERE AD_Element_ID=579121) AND AD_Name_ID IS NULL ) OR (AD_Name_ID = 579121)
;
-- 2021-06-28T12:53:38.394Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_Tab SET Name='Partner hat eine Ust.-ID', Description='Wenn "Ja", dann muss der betreffende Geschäftspartner eine Umsatzsteuer-ID haben, damit der Steuersatz matcht. Wenn "Nein", dann darf keine Umsatzsteuer-ID vorliegen.', Help='', CommitWarning = NULL WHERE AD_Element_ID = 579121
;
-- 2021-06-28T12:53:38.396Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_WINDOW SET Name='Partner hat eine Ust.-ID', Description='Wenn "Ja", dann muss der betreffende Geschäftspartner eine Umsatzsteuer-ID haben, damit der Steuersatz matcht. Wenn "Nein", dann darf keine Umsatzsteuer-ID vorliegen.', Help='' WHERE AD_Element_ID = 579121
;
-- 2021-06-28T12:53:38.398Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_Menu SET Name = 'Partner hat eine Ust.-ID', Description = 'Wenn "Ja", dann muss der betreffende Geschäftspartner eine Umsatzsteuer-ID haben, damit der Steuersatz matcht. Wenn "Nein", dann darf keine Umsatzsteuer-ID vorliegen.', WEBUI_NameBrowse = NULL, WEBUI_NameNew = NULL, WEBUI_NameNewBreadcrumb = NULL WHERE AD_Element_ID = 579121
;
-- 2021-06-28T12:53:47.919Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_Element_Trl SET Description='Wenn "Ja", dann muss der betreffende Geschäftspartner eine Umsatzsteuer-ID haben, damit der Steuersatz matcht. Wenn "Nein", dann darf keine Umsatzsteuer-ID vorliegen.',Updated=TO_TIMESTAMP('2021-06-28 14:53:47','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Element_ID=579121 AND AD_Language='de_CH'
;
-- 2021-06-28T12:53:47.920Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
/* DDL */ select update_TRL_Tables_On_AD_Element_TRL_Update(579121,'de_CH')
;
-- 2021-06-28T12:54:16.791Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_Element_Trl SET Help='If set to yes, then the respective business partner needs to have a VAT-ID in order for the tax record to match. If set no no, then there may not be a VAT-ID.',Updated=TO_TIMESTAMP('2021-06-28 14:54:16','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Element_ID=579121 AND AD_Language='en_US'
;
-- 2021-06-28T12:54:16.792Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
/* DDL */ select update_TRL_Tables_On_AD_Element_TRL_Update(579121,'en_US')
;
-- 2021-06-28T12:59:13.065Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_Column SET AD_Reference_ID=17, DefaultValue='', AD_Reference_Value_ID=540528,Updated=TO_TIMESTAMP('2021-06-28 14:59:13','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=573974
;
-- 2021-06-28T12:59:15.919Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
INSERT INTO t_alter_column values('c_tax','IsFiscalRepresentation','CHAR(1)',null,null)
;
-- 2021-06-28T13:00:41.259Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_Element_Trl SET Description='Wenn "Ja", dann muss die betreffende Organisation im Bestimmungsland eine Fiskalvertretung haben, damit der Steuersatz matcht. Wenn "Nein", dann darf sie keine Fiskalvertretung haben.', IsTranslated='Y',Updated=TO_TIMESTAMP('2021-06-28 15:00:41','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Element_ID=579209 AND AD_Language='de_CH'
;
-- 2021-06-28T13:00:41.260Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
/* DDL */ select update_TRL_Tables_On_AD_Element_TRL_Update(579209,'de_CH')
;
-- 2021-06-28T13:00:50.215Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_Element_Trl SET Description='Wenn "Ja", dann muss die betreffende Organisation im Bestimmungsland eine Fiskalvertretung haben, damit der Steuersatz matcht. Wenn "Nein", dann darf sie keine Fiskalvertretung haben.', IsTranslated='Y',Updated=TO_TIMESTAMP('2021-06-28 15:00:50','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Element_ID=579209 AND AD_Language='de_DE'
;
-- 2021-06-28T13:00:50.218Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
/* DDL */ select update_TRL_Tables_On_AD_Element_TRL_Update(579209,'de_DE')
;
-- 2021-06-28T13:00:50.237Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
/* DDL */ select update_ad_element_on_ad_element_trl_update(579209,'de_DE')
;
-- 2021-06-28T13:00:50.239Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_Column SET ColumnName='IsFiscalRepresentation', Name='Fiskalvertretung', Description='Wenn "Ja", dann muss die betreffende Organisation im Bestimmungsland eine Fiskalvertretung haben, damit der Steuersatz matcht. Wenn "Nein", dann darf sie keine Fiskalvertretung haben.', Help=NULL WHERE AD_Element_ID=579209
;
-- 2021-06-28T13:00:50.242Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_Process_Para SET ColumnName='IsFiscalRepresentation', Name='Fiskalvertretung', Description='Wenn "Ja", dann muss die betreffende Organisation im Bestimmungsland eine Fiskalvertretung haben, damit der Steuersatz matcht. Wenn "Nein", dann darf sie keine Fiskalvertretung haben.', Help=NULL, AD_Element_ID=579209 WHERE UPPER(ColumnName)='ISFISCALREPRESENTATION' AND IsCentrallyMaintained='Y' AND AD_Element_ID IS NULL
;
-- 2021-06-28T13:00:50.243Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_Process_Para SET ColumnName='IsFiscalRepresentation', Name='Fiskalvertretung', Description='Wenn "Ja", dann muss die betreffende Organisation im Bestimmungsland eine Fiskalvertretung haben, damit der Steuersatz matcht. Wenn "Nein", dann darf sie keine Fiskalvertretung haben.', Help=NULL WHERE AD_Element_ID=579209 AND IsCentrallyMaintained='Y'
;
-- 2021-06-28T13:00:50.245Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_Field SET Name='Fiskalvertretung', Description='Wenn "Ja", dann muss die betreffende Organisation im Bestimmungsland eine Fiskalvertretung haben, damit der Steuersatz matcht. Wenn "Nein", dann darf sie keine Fiskalvertretung haben.', Help=NULL WHERE (AD_Column_ID IN (SELECT AD_Column_ID FROM AD_Column WHERE AD_Element_ID=579209) AND AD_Name_ID IS NULL ) OR (AD_Name_ID = 579209)
;
-- 2021-06-28T13:00:50.256Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_Tab SET Name='Fiskalvertretung', Description='Wenn "Ja", dann muss die betreffende Organisation im Bestimmungsland eine Fiskalvertretung haben, damit der Steuersatz matcht. Wenn "Nein", dann darf sie keine Fiskalvertretung haben.', Help=NULL, CommitWarning = NULL WHERE AD_Element_ID = 579209
;
-- 2021-06-28T13:00:50.258Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_WINDOW SET Name='Fiskalvertretung', Description='Wenn "Ja", dann muss die betreffende Organisation im Bestimmungsland eine Fiskalvertretung haben, damit der Steuersatz matcht. Wenn "Nein", dann darf sie keine Fiskalvertretung haben.', Help=NULL WHERE AD_Element_ID = 579209
;
-- 2021-06-28T13:00:50.260Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_Menu SET Name = 'Fiskalvertretung', Description = 'Wenn "Ja", dann muss die betreffende Organisation im Bestimmungsland eine Fiskalvertretung haben, damit der Steuersatz matcht. Wenn "Nein", dann darf sie keine Fiskalvertretung haben.', WEBUI_NameBrowse = NULL, WEBUI_NameNew = NULL, WEBUI_NameNewBreadcrumb = NULL WHERE AD_Element_ID = 579209
;
-- 2021-06-28T13:01:55.442Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_Element_Trl SET Help='If set to yes, then the respective org needs to have a fiscal representation in the destination country in order for the tax record to match. If set no no, then there may not be a fiscal represenation.', IsTranslated='Y',Updated=TO_TIMESTAMP('2021-06-28 15:01:55','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Element_ID=579209 AND AD_Language='en_US'
;
-- 2021-06-28T13:01:55.444Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
/* DDL */ select update_TRL_Tables_On_AD_Element_TRL_Update(579209,'en_US')
;
-- 2021-06-28T13:02:35.605Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_Column SET DefaultValue='',Updated=TO_TIMESTAMP('2021-06-28 15:02:35','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=3695
;
-- 2021-06-28T13:02:35.812Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
INSERT INTO t_alter_column values('c_tax','RequiresTaxCertificate','CHAR(1)',null,null)
;
-- 2021-06-28T13:02:57.066Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
INSERT INTO t_alter_column values('c_tax','IsFiscalRepresentation','CHAR(1)',null,null)
;
-- 2021-06-28T13:59:49.387Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_Column SET IsMandatory='N',Updated=TO_TIMESTAMP('2021-06-28 15:59:49','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=3695
;
-- 2021-06-28T13:59:52.784Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
INSERT INTO t_alter_column values('c_tax','RequiresTaxCertificate','CHAR(1)',null,null)
;
-- 2021-06-28T13:59:53.081Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
INSERT INTO t_alter_column values('c_tax','RequiresTaxCertificate',null,'NULL',null)
;
|
-- upgrade-5.0.1.0.0-5.0.1.0.1.sql
SELECT acs_log__debug('/packages/intranet-confdb/sql/postgresql/upgrade/upgrade-5.0.1.0.0-5.0.1.0.1.sql','');
CREATE OR REPLACE FUNCTION inline_0 ()
RETURNS INTEGER AS $BODY$
declare
v_count integer;
begin
select count(*) into v_count from pg_class where relname = 'im_conf_item_code_seq';
IF v_count > 0 THEN return 1; END IF;
CREATE SEQUENCE im_conf_item_code_seq START 10001;
return 0;
end;$BODY$ LANGUAGE 'plpgsql';
SELECT inline_0 ();
DROP FUNCTION inline_0 ();
SELECT im_menu__new (
null, 'im_menu', now(), null, null, null,
'intranet-confdb', -- package_name
'conf_items_admin', -- label
'Conf Items Admin', -- name
'/intranet/admin/object-type-admin?object_type=im_conf_item',
900, -- sort_order
(select menu_id from im_menus where label = 'conf_items'),
null
);
create or replace function inline_1 ()
returns integer as $body$
declare
v_menu integer;
v_conf_item_menu integer;
v_employees integer;
begin
select group_id into v_employees from groups where group_name = 'Employees';
select menu_id into v_conf_item_menu from im_menus where label='conf_items';
v_menu := im_menu__new (
null, -- p_menu_id
'im_menu', -- object_type
now(), -- creation_date
null, -- creation_user
null, -- creation_ip
null, -- context_id
'intranet-confdb', -- package_name
'conf_item_add', -- label
'New Conf Item', -- name
'/intranet-confdb/new', -- url
10, -- sort_order
v_conf_item_menu, -- parent_menu_id
'[im_permission $user_id "add_conf_items"]' -- p_visible_tcl
);
PERFORM acs_permission__grant_permission(v_menu, v_employees, 'read');
return 0;
end;$body$ language 'plpgsql';
select inline_1 ();
drop function inline_1();
update im_menus
set parent_menu_id = (select menu_id from im_menus where label = 'conf_items_admin')
where label in (
'conf_item_csv_export',
'conf_item_csv_import',
'nagios',
'nagios_import_conf'
);
|
update "Accounts"
set "locations" = ${locations}
where "id" = ${id};
|
/*************************************************************************/
-- Assigment: schema capacity data ddl
-- Description: schema capacity data ddl
-- Author: <NAME>
-- Date: 11.Jan, 2020
-- Job name: schema capacity data ddl
-- Language: MSSQL
-- Target data: cdm
-- /*************************************************************************/
--
use @meta ;
--
insert into @resultSchema.schema_capacity
select
si1.stage_gb as stage_gb
,si1.tb_id as tb_id
,sm1.TABLE_CATALOG as db_nm
,sm1.TABLE_SCHEMA as schema_nm
,sm1.TABLE_NAME as tbnm
,sm1.TABLE_TYPE as tb_type
,sm1.rows as total_rows
,sm1.table_size as tb_size
,unit as unit
from
(select distinct stage_gb, tb_id, tbnm from @resultSchema.schema_info
where stage_gb= 'META') as si1
left join
(select distinct
it1.TABLE_CATALOG
,it1.TABLE_SCHEMA
,it1.TABLE_NAME
,it1.TABLE_TYPE
,rc1.rows
,ts1.table_size
,ts1.UNIT
from INFORMATION_SCHEMA.TABLES as it1
inner join (SELECT o.name
, i.rows
FROM sysindexes i
INNER JOIN
sysobjects o
ON i.id = o.id
WHERE i.indid < 2
AND o.xtype = 'U'
) as rc1
on rc1.name = it1.TABLE_NAME
left join (
SELECT
table_name = convert(varchar(30), min(o.name))
,table_size = convert(int, ltrim(str(sum(cast(reserved as bigint)) * 8192 / 1024., 15, 0)))
,UNIT = 'KB'
FROM sysindexes i
INNER JOIN sysobjects o ON (o.id = i.id)
WHERE i.indid IN (0, 1, 255) AND o.xtype = 'U'
GROUP BY i.id
) as ts1
on it1.TABLE_NAME = ts1.table_name) as sm1
on si1.tbnm = sm1.TABLE_NAME
|
<gh_stars>1-10
select name, display_name
from gcp.gcp_bigtable_instance
where title = '{{ resourceName }}'; |
<reponame>blinkops/blink-aws-query<filename>aws-test/tests/aws_api_gatewayv2_integration/query.sql
select integration_id
from aws.aws_api_gatewayv2_integration
where api_id = '{{output.api_id.value}}'
|
DECLARE
id_seq VARCHAR2(255) := 'create sequence id_seq';
t_customer VARCHAR2(500) := 'create table customer(' ||
'id int primary key,' ||
'name varchar2(255) unique not null,' ||
'birth_date varchar2(255) not null,' ||
'phone_num varchar2(255) not null,' ||
'"LEVEL" varchar2(255) not null check ("LEVEL" in (''Gold'', ''Silver'', ''Bronze'', ''Normal'')),' ||
'purchase_amount int not null)';
customer_trigger VARCHAR2(255) := 'create trigger customer_trigger ' ||
'before insert on customer ' ||
'for each row ' ||
'begin ' ||
'select id_seq.nextval ' ||
'into :new.id ' ||
'from dual;' ||
'end;';
t_employee VARCHAR2(500) := 'create table employee(' ||
'id int primary key,' ||
'name varchar2(255) unique not null,' ||
'employee_id varchar2(255) unique not null,' ||
'rank varchar2(255) not null check (rank in (''Supervisor'', ''Staff'')))';
employee_trigger VARCHAR2(255) := 'create trigger employee_trigger ' ||
'before insert on employee ' ||
'for each row ' ||
'begin ' ||
'select id_seq.nextval ' ||
'into :new.id ' ||
'from dual;' ||
'end;';
t_menu VARCHAR2(500) := 'create table menu(' ||
'id int primary key,' ||
'name varchar2(255) unique not null,' ||
'price int not null)';
menu_trigger VARCHAR2(255) := 'create trigger menu_trigger ' ||
'before insert on menu ' ||
'for each row ' ||
'begin ' ||
'select id_seq.nextval ' ||
'into :new.id ' ||
'from dual;' ||
'end;';
t_table VARCHAR2(500) := 'create table "TABLE"(' ||
'id int primary key, ' ||
'table_num int unique not null)';
table_trigger VARCHAR2(255) := 'create trigger table_trigger ' ||
'before insert on "TABLE" ' ||
'for each row ' ||
'begin ' ||
'select id_seq.nextval ' ||
'into :new.id ' ||
'from dual;' ||
'end;';
t_order VARCHAR2(500) := 'create table "ORDER"(' ||
'id int primary key,' ||
'table_id int not null,' ||
'menu_id int not null,' ||
'constraint order_table_fk foreign key (table_id) references "TABLE" (id),' ||
'constraint order_menu_fk foreign key (menu_id) references menu (id))';
order_trigger VARCHAR2(255) := 'create trigger order_trigger ' ||
'before insert on "ORDER" ' ||
'for each row ' ||
'begin ' ||
'select id_seq.nextval ' ||
'into :new.id ' ||
'from dual;' ||
'end;';
t_payment VARCHAR2(500) := 'create table payment(' ||
'id int primary key,' ||
'"DATE" date default sysdate not null,' ||
'menu_id int not null,' ||
'table_id int not null,' ||
'payer_id int,' ||
'employee_id int not null,' ||
'pay int not null,' ||
'constraint payment_menu_fk foreign key (menu_id) references menu (id),' ||
'constraint payment_table_fk foreign key (table_id) references "TABLE" (id),' ||
'constraint payment_payer_fk foreign key (payer_id) references customer (id),' ||
'constraint payment_employee_fk foreign key (employee_id) references employee (id))';
payment_trigger VARCHAR2(255) := 'create trigger payment_trigger ' ||
'before insert on payment ' ||
'for each row ' ||
'begin ' ||
'select id_seq.nextval ' ||
'into :new.id ' ||
'from dual;' ||
'end;';
BEGIN
EXECUTE IMMEDIATE id_seq;
EXECUTE IMMEDIATE t_customer;
EXECUTE IMMEDIATE customer_trigger;
EXECUTE IMMEDIATE t_employee;
EXECUTE IMMEDIATE employee_trigger;
EXECUTE IMMEDIATE t_menu;
EXECUTE IMMEDIATE menu_trigger;
EXECUTE IMMEDIATE t_table;
EXECUTE IMMEDIATE table_trigger;
EXECUTE IMMEDIATE t_order;
EXECUTE IMMEDIATE order_trigger;
EXECUTE IMMEDIATE t_payment;
EXECUTE IMMEDIATE payment_trigger;
EXCEPTION
WHEN OTHERS THEN
IF SQLCODE = -955 THEN
NULL;
ELSE
RAISE;
END IF;
END;
|
<gh_stars>0
-- MySQL Workbench Forward Engineering
SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0;
SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0;
SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='TRADITIONAL,ALLOW_INVALID_DATES';
-- -----------------------------------------------------
-- Schema merp
-- -----------------------------------------------------
-- -----------------------------------------------------
-- Schema merp
-- -----------------------------------------------------
CREATE SCHEMA IF NOT EXISTS `merp` DEFAULT CHARACTER SET utf8 ;
USE `merp` ;
-- -----------------------------------------------------
-- Table `merp`.`user`
-- -----------------------------------------------------
CREATE TABLE IF NOT EXISTS `merp`.`user` (
`username` VARCHAR(32) NOT NULL,
`email` VARCHAR(254) NOT NULL,
`password` VARCHAR(255) NOT NULL,
`user_id` INT NOT NULL AUTO_INCREMENT,
`is_admin` TINYINT NOT NULL,
PRIMARY KEY (`user_id`),
UNIQUE INDEX `username_UNIQUE` (`username` ASC))
ENGINE = InnoDB;
-- -----------------------------------------------------
-- Table `merp`.`combat_scenario`
-- -----------------------------------------------------
CREATE TABLE IF NOT EXISTS `merp`.`combat_scenario` (
`scenario_id` INT NOT NULL AUTO_INCREMENT,
`scenario_name` VARCHAR(45) NOT NULL,
`description` LONGTEXT NOT NULL,
`owner_id` INT NULL,
PRIMARY KEY (`scenario_id`))
ENGINE = InnoDB;
-- -----------------------------------------------------
-- Table `merp`.`npc`
-- -----------------------------------------------------
CREATE TABLE IF NOT EXISTS `merp`.`npc` (
`name` VARCHAR(60) NOT NULL,
`class` VARCHAR(24) NOT NULL,
`level` INT NOT NULL,
`race` VARCHAR(18) NOT NULL,
`owner_id` INT NULL,
`npc_id` INT NOT NULL AUTO_INCREMENT,
`background` LONGTEXT NULL,
`scenario_id` INT NULL,
`defensive_bonus` INT NOT NULL,
`hit_points` INT NOT NULL,
`offensive_primary` INT NOT NULL,
`offensive_secondary` INT NULL,
`primary_weapon` VARCHAR(45) NOT NULL,
`secondary_weapon` VARCHAR(45) NULL,
`shield` TINYINT NULL,
`helmet` TINYINT NULL,
`arm_armor` TINYINT NULL,
`leg_armor` TINYINT NULL,
`armor` VARCHAR(45) NULL,
PRIMARY KEY (`npc_id`),
INDEX `npc_fk_idx` (`owner_id` ASC),
INDEX `npc_fk_2_idx` (`scenario_id` ASC),
CONSTRAINT `npc_fk`
FOREIGN KEY (`owner_id`)
REFERENCES `merp`.`user` (`user_id`)
ON DELETE CASCADE
ON UPDATE NO ACTION,
CONSTRAINT `npc_fk_2`
FOREIGN KEY (`scenario_id`)
REFERENCES `merp`.`combat_scenario` (`scenario_id`)
ON DELETE SET NULL
ON UPDATE NO ACTION)
ENGINE = InnoDB;
CREATE USER 'merpuser' IDENTIFIED BY 'merpuser';
GRANT ALL ON `merp`.* TO 'merpuser';
SET SQL_MODE=@OLD_SQL_MODE;
SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS;
SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS;
|
<reponame>dorcastamatey/hostelManager<filename>key_management.sql
-- phpMyAdmin SQL Dump
-- version 4.5.1
-- http://www.phpmyadmin.net
--
-- Host: 127.0.0.1
-- Generation Time: Aug 31, 2016 at 10:46 PM
-- Server version: 10.1.9-MariaDB
-- PHP Version: 5.6.15
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: `key_management`
--
-- --------------------------------------------------------
--
-- Table structure for table `admin`
--
CREATE TABLE `admin` (
`id` int(11) NOT NULL,
`firstName` varchar(20) NOT NULL,
`lastName` varchar(20) NOT NULL,
`managerId` varchar(15) NOT NULL,
`email` varchar(50) DEFAULT NULL,
`password` varchar(60) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `admin`
--
INSERT INTO `admin` (`id`, `firstName`, `lastName`, `managerId`, `email`, `password`) VALUES
(12, 'Dorcas', '<PASSWORD>', '<PASSWORD>', '<EMAIL>', '<PASSWORD>'),
(13, 'Gloria', 'Tamatey', '<PASSWORD>', '<EMAIL>', '<PASSWORD>'),
(18, 'Prince', 'Ofori', 'pofori', '<EMAIL>', '34ea50e85135492b244314398c7bc301'),
(19, 'Mohammed ', 'Suala', 'msuala', '<EMAIL>', 'd652f5ffa6e133aa456765118783fe3a'),
(20, 'Mohammed ', 'Osmanu', 'mosmanu', '<EMAIL>', 'cc0315afa49cb999dd78e98a6e16835d'),
(24, 'Ali', 'Ibrahim', 'aibrahim', '<EMAIL>', 'f86ac59ae46a25d4a21b318eb1d6ab42'),
(25, 'Cathrine', '<NAME>', 'caoppong', '<EMAIL>', '3d34ddbf71c1865c211903efd834053f'),
(26, 'Maku', 'Tamatey', 'mtamatey', '<EMAIL>', 'mtamatey');
-- --------------------------------------------------------
--
-- Table structure for table `historic_data`
--
CREATE TABLE `historic_data` (
`dataId` int(11) NOT NULL,
`firstName` varchar(20) NOT NULL,
`lastName` varchar(20) NOT NULL,
`studentID` varchar(15) NOT NULL,
`email` varchar(30) DEFAULT NULL,
`hostelName` varchar(25) NOT NULL,
`roomNo` varchar(10) NOT NULL,
`keyNo` varchar(10) NOT NULL,
`academicYear` varchar(10) NOT NULL,
`yearGroup` varchar(10) NOT NULL,
`semester` varchar(15) NOT NULL,
`contact` varchar(11) NOT NULL,
`issueDate` date NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `historic_data`
--
INSERT INTO `historic_data` (`dataId`, `firstName`, `lastName`, `studentID`, `email`, `hostelName`, `roomNo`, `keyNo`, `academicYear`, `yearGroup`, `semester`, `contact`, `issueDate`) VALUES
(1, 'Gladys', 'Lamptey', '87162019', '<EMAIL>', '<NAME>', '206', '206_k1', '2016/2017', '2019', ' Fall', '0268763453', '2016-07-27'),
(2, 'Adwoa', 'Lawson', '12345', '<EMAIL>', '<NAME>', '206', '206_k2', '2016/2017', '2018', ' Fall', '0268236459', '2016-07-27'),
(3, 'Addelaid ', 'Boakye', '8374637', '<EMAIL>', '<NAME>', '206', '206_k3', '2017', '2019', ' Fall', '02484876488', '2016-07-27'),
(4, 'Dorcas', 'Tamatey', '65142016', '<EMAIL>', '<NAME>', '208', 'k1', '2016/2017', '2017', ' Fall', '0268116462', '2016-08-29'),
(5, 'Gladys ', 'Nortey', '9384754', '<EMAIL>', '<NAME>', '837', 'k10', '2016/2017', '2017', ' Fall', '02837465', '2016-08-29'),
(6, 'Obed', 'Nortey', '9384750', '<EMAIL>', '<NAME>', '837', 'k11', '2016/2017', '2017', ' Fall', '02837465', '2016-08-29'),
(7, 'Leticia', 'Adotey', '98674', '<EMAIL>', '<NAME>', '8674', 'key1', '', '2020', ' Fall', '048743', '2016-08-31');
-- --------------------------------------------------------
--
-- Table structure for table `lockerkey`
--
CREATE TABLE `lockerkey` (
`lockerKeyId` int(11) NOT NULL,
`lockerKey` varchar(10) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `lockerkey`
--
INSERT INTO `lockerkey` (`lockerKeyId`, `lockerKey`) VALUES
(2, '206_L2'),
(3, '206_L3'),
(1, '206_L4'),
(6, 'l65rg'),
(4, 'lfg'),
(5, 'locker1'),
(8, 'locker2');
-- --------------------------------------------------------
--
-- Table structure for table `maintainceissues`
--
CREATE TABLE `maintainceissues` (
`id` int(11) NOT NULL,
`issue` varchar(50) NOT NULL,
`location` varchar(15) NOT NULL,
`reporterName` varchar(30) NOT NULL,
`contact` varchar(11) NOT NULL,
`issueStatus` varchar(15) NOT NULL,
`date_reported` date NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `maintainceissues`
--
INSERT INTO `maintainceissues` (`id`, `issue`, `location`, `reporterName`, `contact`, `issueStatus`, `date_reported`) VALUES
(1, 'Broken Louvres in room 208', 'Akonor', '<NAME>', '566643', 'Resolved', '2016-07-27'),
(2, 'door lock', 'room 208', 'Asiedu Lamptey', '08765430', 'Resolved', '2016-07-27'),
(3, 'microwaves', 'kitchen', 'Seidu Ali', '0986543', 'Resolved', '2016-07-28'),
(4, 'broken light bulb', '208', 'Dorcas', 'contact', 'not resolved', '2016-08-29'),
(5, 'faulty microwave', 'room 323', '<NAME>', '395843', 'Resolved', '2016-08-31');
-- --------------------------------------------------------
--
-- Table structure for table `managers`
--
CREATE TABLE `managers` (
`id` int(11) NOT NULL,
`firstName` int(11) NOT NULL,
`lastName` int(11) NOT NULL,
`managerId` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `payment`
--
CREATE TABLE `payment` (
`theId` int(11) NOT NULL,
`name` varchar(30) NOT NULL,
`studentId` varchar(12) NOT NULL,
`amount` varchar(5) NOT NULL,
`type` varchar(10) NOT NULL,
`payDate` date NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `payment`
--
INSERT INTO `payment` (`theId`, `name`, `studentId`, `amount`, `type`, `payDate`) VALUES
(1, 'Natasha', '299384', '10', 'locker key', '2016-07-27'),
(2, '<NAME>', '847563', '15', 'locker', '2016-07-27'),
(3, '<NAME>', '76543', '10', 'locker', '2016-07-27'),
(4, '<NAME>', '65142016', '10.00', 'Room', '2016-08-29'),
(6, '<NAME>', '948576', '10', 'room', '2016-08-31'),
(7, '<NAME>', '948576', '10', 'locker', '2016-08-31');
-- --------------------------------------------------------
--
-- Table structure for table `roomkeyno`
--
CREATE TABLE `roomkeyno` (
`keyId` int(11) NOT NULL,
`room_key` varchar(10) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `roomkeyno`
--
INSERT INTO `roomkeyno` (`keyId`, `room_key`) VALUES
(4, '101'),
(1, '206_k1'),
(3, '206_k3'),
(2, '206_k4'),
(5, 'dkf'),
(15, 'huyrdef'),
(16, 'key1');
-- --------------------------------------------------------
--
-- Table structure for table `rooms`
--
CREATE TABLE `rooms` (
`roomsId` int(11) NOT NULL,
`roomNo` varchar(7) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `rooms`
--
INSERT INTO `rooms` (`roomsId`, `roomNo`) VALUES
(3, '204'),
(1, '206'),
(2, '207');
-- --------------------------------------------------------
--
-- Table structure for table `students`
--
CREATE TABLE `students` (
`Id` int(11) NOT NULL,
`firstName` varchar(20) NOT NULL,
`lastName` varchar(20) NOT NULL,
`studentID` varchar(15) NOT NULL,
`email` varchar(30) DEFAULT NULL,
`hostelName` varchar(25) NOT NULL,
`roomNo` varchar(10) NOT NULL,
`roomKeyNo` varchar(10) NOT NULL,
`lockerKeyId` varchar(10) NOT NULL,
`academicYear` varchar(10) NOT NULL,
`yearGroup` varchar(10) NOT NULL,
`semester` varchar(15) NOT NULL,
`contact` varchar(11) NOT NULL,
`issueDate` date NOT NULL,
`roomKeyStatus` varchar(15) NOT NULL,
`lockerKeyStatus` varchar(15) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `students`
--
INSERT INTO `students` (`Id`, `firstName`, `lastName`, `studentID`, `email`, `hostelName`, `roomNo`, `roomKeyNo`, `lockerKeyId`, `academicYear`, `yearGroup`, `semester`, `contact`, `issueDate`, `roomKeyStatus`, `lockerKeyStatus`) VALUES
(4, 'Dorcas', 'Tamatey', '64142016', '<EMAIL>', '<NAME>', '208', 'k1', '206_L2', '2016/2017', '2017', '', '0268116462', '2016-08-29', 'Taken', 'Paid'),
(5, 'Gladys ', 'Nortey', '9384754', '<EMAIL>', '<NAME>', '837', 'k10', 'locker1', '2016/2017', '2017', ' Fall', '02837465', '2016-08-29', 'Taken', 'Taken'),
(10, 'Obed', 'Nortey', '9384750', '<EMAIL>', '<NAME>', '837', 'k11', '206_L3', '2016/2017', '2017', ' Fall', '02837465', '2016-08-29', 'Taken', 'Returned'),
(11, 'Leticia', 'Adotey', '98674', '<EMAIL>', '<NAME>', '8674', 'key1', 'locker2', '', '2020', ' Fall', '048743', '2016-08-31', 'Taken', 'Taken');
-- --------------------------------------------------------
--
-- Table structure for table `visitor`
--
CREATE TABLE `visitor` (
`visitorId` int(11) NOT NULL,
`name` varchar(50) NOT NULL,
`room_visited` varchar(5) NOT NULL,
`person_visited` varchar(50) NOT NULL,
`visitor_contact` varchar(12) NOT NULL,
`host_contact` varchar(11) NOT NULL,
`date_of_visit` date NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `visitor`
--
INSERT INTO `visitor` (`visitorId`, `name`, `room_visited`, `person_visited`, `visitor_contact`, `host_contact`, `date_of_visit`) VALUES
(1, '<NAME>', '207', 'Grace Larbi', '02688765543', '026457890', '2016-07-27'),
(2, '<NAME>', '208', 'Paa Kwesi', '097475463732', '8734747322', '2016-07-27'),
(3, '<NAME>', '207', '<NAME>', '026789997', '025678909', '2016-07-27'),
(4, '<NAME>', '206', 'Cathrine', '029348556', '02857686', '2016-08-29'),
(5, '<NAME>', '687', '<NAME>', '9784', '00969', '2016-08-31');
--
-- Indexes for dumped tables
--
--
-- Indexes for table `admin`
--
ALTER TABLE `admin`
ADD PRIMARY KEY (`id`),
ADD UNIQUE KEY `managerId` (`managerId`),
ADD UNIQUE KEY `email` (`email`);
--
-- Indexes for table `historic_data`
--
ALTER TABLE `historic_data`
ADD PRIMARY KEY (`dataId`),
ADD UNIQUE KEY `studentID` (`studentID`),
ADD UNIQUE KEY `email` (`email`);
--
-- Indexes for table `lockerkey`
--
ALTER TABLE `lockerkey`
ADD PRIMARY KEY (`lockerKeyId`),
ADD UNIQUE KEY `lockerKey` (`lockerKey`);
--
-- Indexes for table `maintainceissues`
--
ALTER TABLE `maintainceissues`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `payment`
--
ALTER TABLE `payment`
ADD PRIMARY KEY (`theId`);
--
-- Indexes for table `roomkeyno`
--
ALTER TABLE `roomkeyno`
ADD PRIMARY KEY (`keyId`),
ADD UNIQUE KEY `key` (`room_key`);
--
-- Indexes for table `rooms`
--
ALTER TABLE `rooms`
ADD PRIMARY KEY (`roomsId`),
ADD UNIQUE KEY `roomNo` (`roomNo`);
--
-- Indexes for table `students`
--
ALTER TABLE `students`
ADD PRIMARY KEY (`Id`),
ADD UNIQUE KEY `studentID` (`studentID`),
ADD UNIQUE KEY `email` (`email`);
--
-- Indexes for table `visitor`
--
ALTER TABLE `visitor`
ADD PRIMARY KEY (`visitorId`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `admin`
--
ALTER TABLE `admin`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=27;
--
-- AUTO_INCREMENT for table `historic_data`
--
ALTER TABLE `historic_data`
MODIFY `dataId` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8;
--
-- AUTO_INCREMENT for table `lockerkey`
--
ALTER TABLE `lockerkey`
MODIFY `lockerKeyId` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9;
--
-- AUTO_INCREMENT for table `maintainceissues`
--
ALTER TABLE `maintainceissues`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6;
--
-- AUTO_INCREMENT for table `payment`
--
ALTER TABLE `payment`
MODIFY `theId` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8;
--
-- AUTO_INCREMENT for table `roomkeyno`
--
ALTER TABLE `roomkeyno`
MODIFY `keyId` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=17;
--
-- AUTO_INCREMENT for table `rooms`
--
ALTER TABLE `rooms`
MODIFY `roomsId` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;
--
-- AUTO_INCREMENT for table `students`
--
ALTER TABLE `students`
MODIFY `Id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=12;
--
-- AUTO_INCREMENT for table `visitor`
--
ALTER TABLE `visitor`
MODIFY `visitorId` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6;
/*!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 */;
|
<gh_stars>0
-- phpMyAdmin SQL Dump
-- version 5.0.2
-- https://www.phpmyadmin.net/
--
-- Host: 127.0.0.1
-- Generation Time: Jan 25, 2021 at 05:27 PM
-- Server version: 10.4.14-MariaDB
-- PHP Version: 7.4.9
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: `deledeal`
--
-- --------------------------------------------------------
--
-- Table structure for table `admins`
--
CREATE TABLE `admins` (
`id` int(11) NOT NULL,
`name` varchar(225) DEFAULT NULL,
`username` varchar(225) NOT NULL,
`password` varchar(225) NOT NULL,
`lang` enum('en','ar') DEFAULT 'en',
`jwt` varchar(225) DEFAULT NULL,
`remember_token` varchar(225) DEFAULT NULL,
`email` varchar(225) DEFAULT NULL,
`phone` varchar(220) DEFAULT NULL,
`super_admin` tinyint(1) NOT NULL DEFAULT 0,
`role_id` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC;
--
-- Dumping data for table `admins`
--
INSERT INTO `admins` (`id`, `name`, `username`, `password`, `lang`, `jwt`, `remember_token`, `email`, `phone`, `super_admin`, `role_id`) VALUES
(1, 'admin', 'admin', '$<PASSWORD>/NzlCplJ6Hffc0Q53dgHg/fd8K', 'en', 'mmfMcIStxxZCEjAshDcWWUeR9FEhcy9DsaVtcYZarzf4G9n1Mbo1', 'V1lKQ4xa52kgWRRmZ6MKQTHVAjgW3wqWTqWGF8mVU0TQL54AXYQ7YfeReN8A', '<EMAIL>', '201094943793', 1, 1),
(2, 'zayed', 'zayed', '$2y$10$N8jJmfNjxWK9SIw00v69SOS1GnN/NzlCplJ6Hffc0Q53dgHg/fd8K', 'en', 'mmfMcIStxxZCEjAshDcWWUeR9FEhcy9DsaVtcYZarzf4G9n1Mbo1', 'V1lK<KEY>WR<KEY>', '<EMAIL>', '201094943793', 1, 1),
(7, 'Order 1', 'Test order 1', '$2y$10$Sltksz/wcxV7Dj8n/OjtSeXr06rlxyUmmHxL6qEUk0PYwDUec9zNi', 'en', 'qyZnWanFl6kqv2yzexah7bsrVS4c7OhmALq3mV6bh9vLvcDu0Zkt', NULL, '<EMAIL>', '011111070745', 0, 6),
(8, 'Test 2', 'Dispatched', '$2y$10$n2zJwqBeLNDhlEDRgX39iO512S6wGWc1zdiO1jCZj5qvEPLl01Y3G', 'en', '1MsxFUwYepfZlUk9zezRjOKk53o5Sx6XJXwmeHJqTcqpQufyHa8u', NULL, '<EMAIL>', '01111070745', 0, 7),
(9, 'Delivered', 'Order test', '$2y$10$f1MwTwhviF7sb6rYVDABjOs3SxeU9ApR3c54hC/1Q/Dkc2KvESJqq', 'en', 'u7c2O5dKEAsQC9wIi3mfpVhC3puyQFbbTd6rIagXby1KEQ825Rxm', NULL, '<EMAIL>', '01165413', 0, 8),
(10, 'ali', 'ali', '$2y$10$YxdfMYpFYDXD2ZN0P1XTFOIojiifBX4bDTTAmkgMvjOeqZMaYNDSe', 'en', 'PFsD3jRleQImDNYYVmQOO49r2EmhiUQ7ZIX1yCHsG35VbGuZdCqo', NULL, 'ali@.com', '3232323232', 0, 9),
(11, '<NAME>', '<NAME>', '$2y$10$ya1sttNS7k9DDlZmpXcxRej1zX/doaEdB8dYUQw4nw2XRfpYvdFJC', 'en', NULL, NULL, '<EMAIL>>', '01155030877', 0, 6),
(12, 'Marina', 'Marina', '$2y$10$L6IoF6ZMdvaXReFvJw2Xgur26IQSfODI/iGf4kkqTsVBMeHyy18zC', 'en', 'Tpcgcosww2Y2zPe3ESwdPrVg24ZDQvKaBZDbfFbbHreS0Ffat1M2', NULL, '<EMAIL>', '01101600917', 0, 6),
(13, 'Abdelrahman', 'Abdelrahman', '$2y$10$sUSLHnDiKV4JojQlgE8vm.qu8CifV8gpZCG405N57ekPNC.fjQhW.', 'en', 'AfDvBRz4glgwiNO13zPuO2yaShvKsWal09DhJ2haPtctvlpRV43M', NULL, '<EMAIL>', '01156699868', 0, 6),
(14, 'Noha', 'Noha', '$2y$10$t3qmww1qrNzrQL2wxyTuxO6X7SWyQW/3WhFTFLX/T9B31VtvFTEi6', 'en', 'fEeee7NxlvzdFwd54EOyU8TsmYRkkgfpSkA8x0H2K9ae2Vn8fuZP', NULL, '<EMAIL>', '01142244322', 0, 6),
(15, 'Mina', 'Mina', '$2y$10$oiwU2hoMHzw5CwTYuBMiUeg9Cju7VJ2TTON6kRZgZQ1VRL5Y/Gq8m', 'en', 'GhkX6bKlammwUI5HSCzA0QjLVYbQV9paQg9L8slLyUoMWGKoMvkw', NULL, '<EMAIL>', '01141223667', 0, 9);
-- --------------------------------------------------------
--
-- Table structure for table `ads_objectives`
--
CREATE TABLE `ads_objectives` (
`id` int(11) NOT NULL,
`name_en` varchar(225) NOT NULL,
`name_ar` varchar(225) NOT NULL,
`position` int(11) DEFAULT NULL,
`status` tinyint(4) NOT NULL DEFAULT 1
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Dumping data for table `ads_objectives`
--
INSERT INTO `ads_objectives` (`id`, `name_en`, `name_ar`, `position`, `status`) VALUES
(1, 'Reach', 'تصل', NULL, 1),
(2, 'Traffic', 'حركة المرور', NULL, 1),
(3, 'Engagement', 'الارتباط', NULL, 1),
(4, 'App Installs', 'عمليات تثبيت التطبيق', NULL, 1),
(5, 'Video Views', 'مشاهدات الفيديو', NULL, 1),
(6, 'Lead Generation', 'تقود الجيل', NULL, 1),
(7, 'Messages', 'الرسائل', NULL, 1),
(8, 'Conversions', 'التحويلات', NULL, 1),
(9, 'Catalog Sales', 'كتالوج المبيعات', NULL, 1);
-- --------------------------------------------------------
--
-- Table structure for table `ads_products`
--
CREATE TABLE `ads_products` (
`id` int(11) NOT NULL,
`ads_objective_id` int(11) NOT NULL,
`name_en` varchar(225) NOT NULL,
`name_ar` varchar(225) NOT NULL,
`placements` text NOT NULL,
`price` int(11) DEFAULT NULL,
`top_description_en` text DEFAULT NULL,
`top_description_ar` text DEFAULT NULL,
`description_en` text DEFAULT NULL,
`description_ar` varchar(225) DEFAULT NULL,
`youtube_link` varchar(225) DEFAULT NULL,
`is_available` tinyint(4) NOT NULL DEFAULT 1,
`rate` int(11) NOT NULL DEFAULT 0,
`position` int(11) DEFAULT NULL,
`status` tinyint(4) NOT NULL DEFAULT 1
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Dumping data for table `ads_products`
--
INSERT INTO `ads_products` (`id`, `ads_objective_id`, `name_en`, `name_ar`, `placements`, `price`, `top_description_en`, `top_description_ar`, `description_en`, `description_ar`, `youtube_link`, `is_available`, `rate`, `position`, `status`) VALUES
(3, 1, 'Single Image', 'صورة واحدة', 'f,i,m', NULL, 'dd', 'ww', '22', '22', 'null', 1, 0, 40, 1),
(4, 1, 'Single Video', 'فيديو واحد', 'f,i,m', NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, 41, 1),
(5, 1, 'Carousel', 'دائري', 'f,i,m', NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, 42, 1),
(6, 1, 'Slideshow', 'عرض الشرائح', 'f,i,m', NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, 43, 1),
(7, 1, 'Collection', 'مجموعة', 'f,i,m', NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, 44, 1),
(8, 1, 'Instant Experience', 'تجربة فورية', 'f,i,m', NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, 45, 1),
(9, 2, 'Single Image', 'صورة واحدة', 'f,i,m,a', NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, 34, 1),
(10, 2, 'Single Video', 'فيديو واحد', 'f,i,m,a', NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, 35, 1),
(11, 2, 'Carousel', 'دائري', 'f,i,m,a', NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, 36, 1),
(12, 2, 'Slideshow', 'عرض الشرائح', 'f,i,m,a', NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, 37, 1),
(13, 2, 'Collection', 'مجموعة', 'f,i,m,a', NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, 38, 1),
(14, 2, 'Instant Experience', 'تجربة فورية', 'f,i,m,a', NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, 39, 1),
(15, 3, 'Single Image', 'صورة واحدة', 'f,i', NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, 30, 1),
(16, 3, 'Single Video', 'فيديو واحد', 'f,i', NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, 31, 1),
(17, 3, 'Slideshow', 'عرض الشرائح', 'f,i', NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, 32, 1),
(18, 3, 'Instant Experience', 'تجربة فورية', 'f,i', NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, 33, 1),
(19, 4, 'Single Image', 'صورة واحدة', 'f,i,m,a', NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, 24, 1),
(20, 4, 'Single Video', 'فيديو واحد', 'f,i,m,a', NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, 25, 1),
(21, 4, 'Carousel', 'دائري', 'f,i,m,a', NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, 26, 1),
(22, 4, 'Slideshow', 'عرض الشرائح', 'f,i,m,a', NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, 27, 1),
(23, 4, 'Collection', 'مجموعة', 'f,i,m,a', NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, 28, 1),
(24, 4, 'Instant Experience', 'تجربة فورية', 'f,i,m,a', NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, 29, 1),
(25, 5, 'Single Video', 'فيديو واحد', 'f,i,a', NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, 21, 1),
(26, 5, 'Slideshow', 'عرض الشرائح', 'f,i,a', NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, 22, 1),
(27, 5, 'Instant Experience', 'تجربة فورية', 'f,i,a', NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, 23, 1),
(28, 6, 'Single Image', 'صورة واحدة', 'f,i,a', NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, 20, 1),
(29, 6, 'Single Video', 'فيديو واحد', 'f,i,a', NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, 16, 1),
(30, 6, 'Carousel', 'دائري', 'f,i,a', NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, 17, 1),
(31, 6, 'Slideshow', 'عرض الشرائح', 'f,i,a', NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, 18, 1),
(32, 6, 'Collection', 'مجموعة', 'f,i,a', NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, 19, 1),
(33, 7, 'Single Image', 'صورة واحدة', 'f,i,a', NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, 15, 1),
(34, 7, 'Single Video', 'فيديو واحد', 'f,i,a', NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, 14, 1),
(35, 7, 'Carousel', 'دائري', 'f,i,a', NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, 13, 1),
(36, 7, 'Slideshow', 'عرض الشرائح', 'f,i,a', NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, 11, 1),
(37, 7, 'Collection', 'مجموعة', 'f,i,a', NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, 12, 1),
(38, 8, 'Single Image', 'صورة واحدة', 'f,i,m,a', NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, 10, 1),
(39, 8, 'Single Video', 'فيديو واحد', 'f,i,m,a', NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, 9, 1),
(40, 8, 'Carousel', 'دائري', 'f,i,m,a', NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, 8, 1),
(41, 8, 'Slideshow', 'عرض الشرائح', 'f,i,m,a', NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, 5, 1),
(42, 8, 'Collection', 'مجموعة', 'f,i,m,a', NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, 7, 1),
(43, 8, 'Instant Experience', 'تجربة فورية', 'f,i,m,a', NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, 6, 1),
(44, 9, 'Single Image', 'صورة واحدة', 'f,i,m,a', NULL, '2\n2', '1\n1', 'ww\n2', 'w\n2', 'XrVPK2Y4lVM', 1, 0, 1, 1),
(45, 9, 'Carousel', 'دائري', 'f,i,m,a', NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, 4, 1),
(46, 9, 'Slideshow', 'عرض الشرائح', 'f,i,m,a', NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, 2, 1),
(47, 9, 'Collection', 'مجموعة', 'f,i,m,a', NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, 3, 1);
-- --------------------------------------------------------
--
-- Table structure for table `ads_product_images`
--
CREATE TABLE `ads_product_images` (
`id` int(11) NOT NULL,
`ads_product_id` int(11) NOT NULL,
`image` varchar(225) NOT NULL,
`is_main` tinyint(4) NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC;
--
-- Dumping data for table `ads_product_images`
--
INSERT INTO `ads_product_images` (`id`, `ads_product_id`, `image`, `is_main`) VALUES
(1, 3, 'AdProductImages_41927.jpg', 0),
(2, 3, 'AdProductImages_49668.png', 1);
-- --------------------------------------------------------
--
-- Table structure for table `base_products`
--
CREATE TABLE `base_products` (
`id` int(11) NOT NULL,
`category_id` int(11) NOT NULL,
`name_en` varchar(225) NOT NULL,
`name_ar` varchar(225) NOT NULL,
`status` int(11) NOT NULL DEFAULT 1,
`position` int(11) DEFAULT NULL,
`created_at` datetime NOT NULL,
`updated_at` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Dumping data for table `base_products`
--
INSERT INTO `base_products` (`id`, `category_id`, `name_en`, `name_ar`, `status`, `position`, `created_at`, `updated_at`) VALUES
(2, 1, 'logo Design', 'تصميم شعار', 1, 1, '2021-01-11 14:55:47', '2021-01-11 15:10:11'),
(3, 1, 'Character Design', 'تصميم الشخصية', 1, 2, '2021-01-11 14:56:52', '2021-01-11 15:10:11'),
(4, 2, '3D modeling', '3D النمذجة', 1, 3, '2021-01-11 14:57:38', '2021-01-11 15:10:11');
-- --------------------------------------------------------
--
-- Table structure for table `categories`
--
CREATE TABLE `categories` (
`id` int(11) NOT NULL,
`name_en` varchar(225) NOT NULL,
`name_ar` varchar(225) NOT NULL,
`position` int(11) DEFAULT NULL,
`status` tinyint(4) NOT NULL DEFAULT 1,
`created_at` datetime NOT NULL,
`updated_at` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Dumping data for table `categories`
--
INSERT INTO `categories` (`id`, `name_en`, `name_ar`, `position`, `status`, `created_at`, `updated_at`) VALUES
(1, 'Desgin', 'تصميم', 1, 1, '2021-01-11 13:57:23', '2021-01-11 14:01:14'),
(2, 'Motion', 'حركة', NULL, 1, '2021-01-11 14:01:38', '2021-01-11 14:01:38');
-- --------------------------------------------------------
--
-- Table structure for table `contact_us`
--
CREATE TABLE `contact_us` (
`id` int(11) NOT NULL,
`name` varchar(225) NOT NULL,
`phone` varchar(225) NOT NULL,
`email` varchar(225) NOT NULL,
`message` text NOT NULL,
`is_contacted` tinyint(1) NOT NULL DEFAULT 0,
`created_at` datetime NOT NULL,
`updated_at` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC;
--
-- Dumping data for table `contact_us`
--
INSERT INTO `contact_us` (`id`, `name`, `phone`, `email`, `message`, `is_contacted`, `created_at`, `updated_at`) VALUES
(1, 'ali', '010101010', '<EMAIL>', 'the current message', 1, '2018-12-30 13:19:36', '2019-02-17 14:34:19'),
(2, 'ali', '0101010101', '<EMAIL>', 'ewelwkle', 0, '2018-12-30 14:19:34', '2018-12-30 14:19:34'),
(3, 'mona', '010101010010', '<EMAIL>', 'go thire', 1, '2019-01-02 14:34:30', '2019-02-17 14:44:11'),
(4, 'mona', '0101010', '<EMAIL>', 'my message', 0, '2019-01-10 13:42:50', '2019-01-10 13:42:50'),
(5, 'test', '4576567567', '<EMAIL>', 'test', 0, '2019-01-21 13:45:24', '2019-02-17 14:44:20'),
(8, 'dwdwd', '01099494949', '<EMAIL>', 'wdwd', 0, '2019-02-18 11:10:08', '2019-02-18 11:10:45'),
(9, 'dwdw', '010949437932', '<EMAIL>', 'sdsd', 0, '2020-08-09 11:03:11', '2020-08-09 11:03:11'),
(10, 'dwdw', '01094943793', '<EMAIL>', 'dwd wdw', 1, '2020-08-09 11:03:54', '2020-08-25 14:28:24'),
(11, 'dwdw', '01094943793', '<EMAIL>', 'wdwd', 1, '2020-08-09 11:05:03', '2020-08-25 14:28:22'),
(12, 'wdwd', '232323', '<EMAIL>', 'wdwdwd', 0, '2020-11-11 16:12:46', '2020-11-11 16:12:46'),
(13, 'dd', '01095653245', 'ddd@s', 'wdwdwd', 0, '2020-12-06 15:28:23', '2020-12-06 15:28:23'),
(14, 'ali', '01234567567', '<EMAIL>', 'this is a message', 0, '2020-12-06 15:38:40', '2020-12-06 15:38:40'),
(15, 'ali', '01234567567', '<EMAIL>', 'this is a message', 0, '2020-12-06 15:39:09', '2020-12-06 15:39:09'),
(16, 'ww', '222222', '<EMAIL>', '222', 0, '2020-12-13 17:48:35', '2020-12-13 17:48:35');
-- --------------------------------------------------------
--
-- Table structure for table `countries`
--
CREATE TABLE `countries` (
`id` int(11) NOT NULL,
`name_en` varchar(225) NOT NULL,
`name_ar` varchar(225) NOT NULL,
`position` int(11) DEFAULT NULL,
`status` tinyint(4) NOT NULL DEFAULT 1,
`created_at` datetime NOT NULL,
`updated_at` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Dumping data for table `countries`
--
INSERT INTO `countries` (`id`, `name_en`, `name_ar`, `position`, `status`, `created_at`, `updated_at`) VALUES
(1, 'Egypt', 'مصر', 1, 1, '2021-01-17 15:11:16', '2021-01-17 15:12:14');
-- --------------------------------------------------------
--
-- Table structure for table `home_sliders`
--
CREATE TABLE `home_sliders` (
`id` int(11) NOT NULL,
`title` varchar(225) DEFAULT NULL,
`image_ar` varchar(225) DEFAULT NULL,
`image_en` varchar(225) DEFAULT NULL,
`link` varchar(225) DEFAULT NULL,
`position` int(11) DEFAULT NULL,
`status` tinyint(1) NOT NULL DEFAULT 1,
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC;
--
-- Dumping data for table `home_sliders`
--
INSERT INTO `home_sliders` (`id`, `title`, `image_ar`, `image_en`, `link`, `position`, `status`, `created_at`, `updated_at`) VALUES
(6, 'Superdeli', 'HomeSlider_53459.png', NULL, NULL, NULL, 1, '2020-08-17 14:22:42', NULL),
(9, 'dddd', 'HomeSliderAr_19684.png', 'HomeSliderEn_95168.png', 'ddd', NULL, 1, '2020-11-18 17:11:28', NULL);
-- --------------------------------------------------------
--
-- Table structure for table `members`
--
CREATE TABLE `members` (
`id` int(11) NOT NULL,
`is_allowed` tinyint(4) NOT NULL DEFAULT 0,
`country_id` int(11) NOT NULL,
`wallet` int(11) NOT NULL DEFAULT 0,
`name` varchar(225) NOT NULL,
`company` varchar(225) NOT NULL,
`password` varchar(225) NOT NULL,
`title` int(11) NOT NULL,
`company_size` varchar(225) DEFAULT NULL,
`email` varchar(225) NOT NULL,
`phone` varchar(225) NOT NULL,
`remember_token` varchar(225) DEFAULT NULL,
`forget_password` varchar(225) DEFAULT NULL,
`should_rate_order_id` int(11) DEFAULT NULL,
`reward_points` int(11) NOT NULL DEFAULT 0,
`is_mail_send` int(11) DEFAULT NULL,
`jwt` varchar(225) DEFAULT NULL,
`os` enum('android','ios') DEFAULT NULL,
`app_version` varchar(225) DEFAULT NULL,
`model` varchar(225) DEFAULT NULL,
`firebase_token` varchar(225) DEFAULT NULL,
`created_at` datetime NOT NULL,
`updated_at` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC;
--
-- Dumping data for table `members`
--
INSERT INTO `members` (`id`, `is_allowed`, `country_id`, `wallet`, `name`, `company`, `password`, `title`, `company_size`, `email`, `phone`, `remember_token`, `forget_password`, `should_rate_order_id`, `reward_points`, `is_mail_send`, `jwt`, `os`, `app_version`, `model`, `firebase_token`, `created_at`, `updated_at`) VALUES
(10, 0, 1, 0, '<NAME>', '', '<PASSWORD>', 0, NULL, '<EMAIL>', '01222187584', 'f3Kt9EUef3aAegra0pyDsRTtGsUCXwaUVWVJu1i9EE975mxrEj7YK5LNiz2B', 'FfV9M0DR9d75k53Nq0U8TnshVMb2ZapHgwxe6vsd1prBO0S0CCIXQ05FWzf2XMwx0jLjhF2pG1ztEPyT', 0, 10, 2, NULL, NULL, NULL, NULL, NULL, '2019-07-15 11:06:59', '2020-05-10 13:36:21'),
(12, 0, 1, 0, 'Hayam', '', 'ac2c147babb6052d69b463d811e67767', 0, NULL, '<EMAIL>', '01024307057', 'ilHHmRTapbjZK2iXQ25DfLBgvsq3wOBHrDFKJvhdYyutT7Ku8TSyZ1eIBKo8', NULL, 0, 0, 2, 'r76qWA19BlrGmF66FE3snBp6cw2NxKZWv82R3ndOPsXGebiiLVy2', 'android', '1.0.0', 'oppo find x', 'wdwdwdwdwdwdwd', '2019-07-17 13:57:49', '2020-09-09 17:33:51'),
(13, 0, 1, 0, 'mo<NAME>', '', 'ac2c147babb6052d69b463d811e67767', 0, NULL, '<EMAIL>', '01094943793', 'zPkqa4zwqdWdJSqAocVhjH1JWc0zI2mb5dErIuyStHPPvZBP1GAVeQWHcokc', 'ASApuThohClmv2I20vicvU4iAOVxN3nDqOj6fk30pQ3U86QvdOCLTp7MAbLjVQRBHv8lpEO9zy6E8muU', NULL, 23, NULL, 'T20qHKkLWRAtTTJrznhz2gl5X2DeFQSAh2G7RKtuW5vvot4tKbbS', 'android', '1.0.0', 'oppo find x', 'wdwdwdwdwdwdwd', '2020-06-07 15:06:02', '2021-01-03 13:13:29'),
(14, 0, 1, 0, 'www wddwd', '', '291bfeb2a016148083070cf0faa0f723', 0, NULL, '<EMAIL>', '01094943793', 'EpkAWn9Fh5zIYxYAL8P1CjVQqXS7WW3ejNadL0A2NPfKMYgDoCAwms8uBrYC', '0DEjAIlK5QUUVOlsY1SpNyOfNhfSYRg3sofC6bgogelw57VQfj5DCmAeGgdTFAk82f17ZwXktDFdTga5', 0, 0, NULL, NULL, NULL, NULL, NULL, NULL, '2020-07-21 13:48:36', '2020-07-21 16:59:00'),
(15, 0, 1, 0, 'dwdw dsd', '', '4f06f6813fed91aa57da3b5d14df95c0', 0, NULL, '<EMAIL>', '01094943793', 'QaVZrtLTDCCzDyzoVuOybp51khveCjzwIsFA2ASmdcuoHRsBG4SUXC1qvUqB', NULL, 0, 0, NULL, NULL, NULL, NULL, NULL, NULL, '2020-07-21 14:13:47', '2020-07-21 14:13:47'),
(16, 0, 1, 0, 'mo<NAME>', '', 'a3e0586de14608f2239997f003c95299', 0, NULL, '<EMAIL>', '01001889852', 'MISSGLaADNGbKnR0rHj8dFHxWYbPLq6IS3eE2R1CwX9KswFE9KGDDgP58N65', NULL, 0, 0, NULL, NULL, NULL, NULL, NULL, NULL, '2020-08-17 13:34:59', '2020-08-17 13:34:59'),
(17, 0, 1, 0, '<NAME>', '', '68d1906e5f32c2faf396886a3a0a9660', 0, NULL, '<EMAIL>', '01111070745', '<KEY>', 'HvDIjQmMYilc9rcX6ju0VwXB0Ur5qL0W10u52AT6FLpSpLvb54d9ju5n813n1KKL6OW4u8bYZpbiSUHL', NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, '2020-08-18 14:51:34', '2020-08-25 15:47:51'),
(18, 0, 1, 0, '<NAME>', '', '0a56b967d6c2fd1ab3c9de210c496539', 0, NULL, '<EMAIL>', '23432432423', 'IukoxYdWFbrGGeyEq8dmPCtm4FjFM7SSONfgilpqI0ely5g0mVgc7DPrALYv', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, '2020-08-18 18:52:33', '2020-08-20 16:18:27'),
(20, 0, 1, 0, '<NAME>', '', '30979048a3a24257efca2ad5dc6fb1ce', 0, NULL, '<EMAIL>', '01222187584', 'o6mZRLcTAdWvyQfVFJhcbNoKYkFrhmSVRiYQnWBJSgdiZcq0piTKbH6U8uXP', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, '2020-08-23 11:18:18', '2020-08-23 11:18:18'),
(21, 0, 1, 0, 'Bishoy', '', '93fdbd6e7532bc783bb5038f0e17382c', 0, NULL, '<EMAIL>', '01254545', 'ds2teWDkB1XcJ1WKlzQaNUoWBYCBOXtJuzie6xhNiZYoNMaStu14aJMxjgkY', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, '2020-08-23 11:23:31', '2020-08-24 13:00:32'),
(28, 0, 1, 0, 'ali 2', '', 'ac2c147babb6052d69b463d811e67767', 0, NULL, '<EMAIL>', '01010101', NULL, NULL, NULL, 0, NULL, '7w82vN3rfX2Q6SljcUmPoFuRfEpdPwGBo8kw5L7KHm964RvAiKVO', 'android', '1.0.0', 'oppo find x', 'wdwdwdwdwdwdwd', '2020-08-24 16:31:58', '2020-08-25 14:07:08'),
(29, 0, 1, 0, 'www', '', 'ac2c147babb6052d69b463d811e67767', 0, NULL, '<EMAIL>', '00101010101', NULL, NULL, NULL, 0, NULL, 'tguRqL3wzzubSgFv1SGAM7be0KcW7hSYL9g0p60IuHgmdVCJjIFr', 'android', '1.0.0', NULL, 'wdwdwdwdwdwdwd', '2020-08-27 15:02:58', '2020-08-27 15:02:58'),
(30, 0, 1, 0, 'www', '', 'ac2c147babb6052d69b463d811e67767', 0, NULL, '<EMAIL>', '00101010101', NULL, NULL, NULL, 0, NULL, '5BPuITmTcscDxmYbrgLL17flpfDksuDtn7ckZqIa6abiLYpaGtAS', 'ios', '1', NULL, 'wdwdwdwdwdwdwd', '2020-08-30 14:06:42', '2020-08-30 14:06:42'),
(31, 0, 1, 0, 'www', '', 'ac2c147babb6052d69b463d811e67767', 0, NULL, '<EMAIL>', '00101010101', NULL, NULL, NULL, 0, NULL, 'qaI9jxkiIe1FVPOyPoi8IEz3pq4Dshp6Os3HhHOkU7aY4A4DWDWa', 'ios', '1', NULL, 'wdwdwdwdwdwdwd', '2020-08-30 14:10:10', '2020-08-30 14:10:10'),
(32, 0, 1, 0, 'wqwq', '', 'd76f7b6f54ee82c6ba7dc10ff3636d91', 0, NULL, 'ewe', '2323332', NULL, NULL, NULL, 0, NULL, 'le1OXQrraFQuXqMKQQygHQHtyTUURrRZp2eOwKoAEiowdiFqqdZT', 'ios', '1.0', NULL, 'toGetFireBaseToken', '2020-08-30 14:18:23', '2020-08-30 14:18:23'),
(33, 0, 1, 0, 'XX is', '', 'adde80c86639f63774c92b58894417ab', 0, NULL, '<EMAIL>', '123456789', NULL, NULL, NULL, 0, NULL, '49i9BGcPq4g6Riv0FxtVZgBnY9sEQGePGE8usrQGCqfBujlUAcW9', 'ios', '1.0', NULL, 'toGetFireBaseTokenRegister', '2020-08-30 15:52:23', '2020-08-30 15:52:23'),
(34, 0, 1, 0, 'Xcismans', '', 'adde80c86639f63774c92b58894417ab', 0, NULL, '<EMAIL>', '123456789', NULL, NULL, NULL, 0, NULL, 'NxB64bXW2b8ng3u66yINtwo4NHZlNmvWuNrVj8xTI8bx3ulAEYjo', 'ios', '1.0', NULL, 'toGetFireBaseTokenRegister', '2020-08-30 15:55:14', '2020-09-02 13:50:43'),
(36, 0, 1, 0, 'ali ahmed', '', '2f1cd4fd2f377eeb50fcb89bf6965909', 0, NULL, '<EMAIL>', '222', 'PIoebbhlTC16TcqbZgxBE1tcwviNtiAa4KZGy0S1xuzln5Iww5EJKASFUNb1', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, '2020-09-09 13:49:47', '2020-09-09 13:49:47'),
(37, 0, 1, 0, 'wdw dwdw', '', 'ac2c147babb6052d69b463d811e67767', 0, NULL, '222@s', '23232323', 'FXY0lRPRCFXQ8N5J7VYz8lMMSQqQdtbmit4Ruk976xHxswQhq5o30rg7FpGt', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, '2020-09-09 13:52:20', '2020-09-09 13:52:20'),
(38, 0, 1, 0, 'ali ahmed', '', 'ac2c147babb6052d69b463d811e67767', 0, NULL, '<EMAIL>', '3232323', 'qYabuS0JpYqEuRMxp21HVqpgknwW10kHWyyzfpAgqTXUgclffFGEmJNJ7dyE', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, '2020-09-09 14:04:23', '2020-09-09 14:04:23'),
(39, 0, 1, 0, 'ali ahmed', '', '2f1cd4fd2f377eeb50fcb89bf6965909', 0, NULL, '22323@ss', '2323232', 'pn82aHqpKJvVqICNElv24sy90JACDqXSOsBNU089Iv00hfIKuG7sOtgBCkjx', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, '2020-09-09 14:06:32', '2020-09-09 14:06:32'),
(47, 1, 1, 22, 'the one', 'the one', 'the one ', 0, 'the one', 'the one', '23232', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, '2021-01-25 15:05:19', '2021-01-25 15:05:19'),
(48, 0, 1, 221, 'dwdw1', 'wdw1', '21', 1, 'dwdw1', '2221', '2323231', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, '2021-01-25 15:05:36', '2021-01-25 15:11:11');
-- --------------------------------------------------------
--
-- Table structure for table `member_files`
--
CREATE TABLE `member_files` (
`id` int(11) NOT NULL,
`member_id` int(11) NOT NULL,
`related_to` varchar(225) NOT NULL,
`file` varchar(225) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- Table structure for table `member_marketing_brief`
--
CREATE TABLE `member_marketing_brief` (
`id` int(11) NOT NULL,
`member_id` int(11) NOT NULL,
`name` varchar(225) NOT NULL,
`about_brand` text DEFAULT NULL,
`USPs` text NOT NULL,
`site_link` varchar(225) DEFAULT NULL,
`kpi` text NOT NULL,
`talk_to_primary` varchar(225) NOT NULL,
`talk_to_secondary` varchar(225) NOT NULL,
`key_response` varchar(225) NOT NULL,
`colors` text DEFAULT NULL,
`competitors` text DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- Table structure for table `member_promo`
--
CREATE TABLE `member_promo` (
`id` int(11) NOT NULL,
`member_id` int(11) NOT NULL,
`promo_id` int(11) NOT NULL,
`city_id` int(11) DEFAULT NULL,
`is_used` tinyint(1) NOT NULL DEFAULT 0,
`used_date` datetime DEFAULT NULL,
`created_at` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC;
--
-- Dumping data for table `member_promo`
--
INSERT INTO `member_promo` (`id`, `member_id`, `promo_id`, `city_id`, `is_used`, `used_date`, `created_at`) VALUES
(485, 17, 113, 22, 1, '2020-08-22 17:37:47', '2020-08-22 16:01:53'),
(486, 21, 114, 28, 1, '2020-08-23 15:51:35', '2020-08-23 11:42:01'),
(487, 17, 115, 22, 1, '2020-08-25 15:45:04', '2020-08-25 15:44:22');
-- --------------------------------------------------------
--
-- Table structure for table `pages_banners`
--
CREATE TABLE `pages_banners` (
`id` int(11) NOT NULL,
`page` varchar(225) DEFAULT NULL,
`imageen` varchar(225) DEFAULT NULL,
`imagear` varchar(225) DEFAULT NULL,
`body` text DEFAULT NULL,
`title` varchar(225) DEFAULT NULL,
`link` varchar(225) DEFAULT NULL,
`position` int(11) DEFAULT NULL,
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC;
--
-- Dumping data for table `pages_banners`
--
INSERT INTO `pages_banners` (`id`, `page`, `imageen`, `imagear`, `body`, `title`, `link`, `position`, `created_at`, `updated_at`) VALUES
(3, 'Offers', 'PagesBanner_83013.png', 'PagesBanner_45395.png', 'TSAR', 'null', 'null', 5, NULL, NULL),
(4, 'ChefRecommends', 'PagesBanner_57364.png', 'PagesBanner_55554.png', 'TSAR', 'null', 'null', 4, NULL, NULL),
(5, 'newArrivals', 'PagesBanner_33766.png', 'PagesBanner_66540.png', 'TSAR', 'null', 'null', 3, NULL, NULL),
(6, 'Bundles', 'PagesBanner_39483.png', 'PagesBanner_83531.png', 'TSAR', 'null', 'null', 6, NULL, NULL),
(8, 'home_1', 'PagesBanner_54057.png', 'PagesBanner_94999.png', 'TSAR', 'null', 'swsw111', 1, NULL, NULL),
(10, 'Recipe', 'PagesBanner_99391.png', 'PagesBanner_94909.png', 'TSAR', 'null', 'swsw', 7, NULL, NULL),
(11, 'About', 'PagesBanner_89655.png', 'PagesBanner_75888.png', 'TSAR', 'null', 'swsw', 8, NULL, NULL),
(12, 'DeliveryPolicy', 'PagesBanner_67107.png', 'PagesBanner_92554.png', 'TSAR', 'null', 'swsw', 13, NULL, NULL),
(13, 'FAQ', 'PagesBanner_29025.png', 'PagesBanner_28811.png', 'TSAR', 'null', 'swsw', 9, NULL, NULL),
(14, 'TermsAndConditions', 'PagesBanner_33737.png', 'PagesBanner_25709.png', 'TSAR', 'null', 'swsw', 10, NULL, NULL),
(15, 'PrivacyPolicy', 'PagesBanner_20980.png', 'PagesBanner_39117.png', 'TSAR', 'null', 'swsw', 11, NULL, NULL),
(16, 'home_2', 'PagesBanner_30375.png', 'PagesBanner_50576.png', 'TSAR', 'null', 'swsw11', 2, NULL, NULL),
(17, 'Career', 'PagesBanner_26833.png', 'PagesBanner_27018.png', 'TSAR', 'null', 'swsw', 12, NULL, NULL),
(18, 'Contact_us', 'PagesBanner_89655.png', 'PagesBanner_75888.png', 'Contact_us', 'null', 'swsw', 8, NULL, NULL);
-- --------------------------------------------------------
--
-- Table structure for table `permissions`
--
CREATE TABLE `permissions` (
`id` int(11) NOT NULL,
`title` varchar(225) NOT NULL,
`related_to` varchar(225) NOT NULL,
`created_at` datetime NOT NULL DEFAULT '2018-08-14 08:45:37'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC;
--
-- Dumping data for table `permissions`
--
INSERT INTO `permissions` (`id`, `title`, `related_to`, `created_at`) VALUES
(1, 'DashBoard', 'DashBoard', '2018-08-14 08:45:37'),
(2, 'Members', 'Members', '2018-08-14 08:45:37'),
(3, 'CategoriesSubCategories', 'CategoriesSubCategories', '2018-08-14 08:45:37'),
(4, 'District', 'District', '2018-08-14 08:45:37'),
(9, 'City', 'City', '2018-08-14 08:45:37'),
(14, 'PopularQuestion', 'PopularQuestion', '2018-08-14 08:45:37'),
(16, 'PagesBanner', 'PagesBanner', '2018-08-14 08:45:37'),
(17, 'HomeSlider', 'HomeSlider', '2018-08-14 08:45:37'),
(18, 'Recipe', 'Recipe', '2018-08-14 08:45:37'),
(19, 'Product', 'Product', '2018-08-14 08:45:37'),
(20, 'Bundel', 'Bundel', '2018-08-14 08:45:37'),
(21, 'PromoCodes', 'PromoCodes', '2018-08-14 08:45:37'),
(22, 'ContactUs', 'ContactUs', '2018-08-14 08:45:37'),
(24, 'Setting', 'Setting', '2018-08-14 08:45:37'),
(25, 'SeoKeywords', 'SeoKeywords', '2018-08-14 08:45:37'),
(26, 'Applicant', 'Applicant', '2018-08-14 08:45:37'),
(27, 'Subscriber', 'Subscriber', '2018-08-14 08:45:37'),
(28, 'TermsAndConditions', 'TermsAndConditions', '2018-08-14 08:45:37'),
(29, 'PrivacyPolicy', 'PrivacyPolicy', '2018-08-14 08:45:37'),
(31, 'Order_Acknowledged', 'Orders', '2018-08-14 08:45:37'),
(32, 'Order_Preparing', 'Orders', '2018-08-14 08:45:37'),
(33, 'Order_Dispatched', 'Orders', '2018-08-14 08:45:37'),
(34, 'Order_Delivered', 'Orders', '2018-08-14 08:45:37'),
(35, 'Order_Canceled', 'Orders', '2018-08-14 08:45:37'),
(36, 'Order', 'Orders', '2018-08-14 08:45:37'),
(37, 'updateStockWithExcel', 'updateStockWithExcel', '2018-08-14 08:45:37');
-- --------------------------------------------------------
--
-- Table structure for table `popular_questions`
--
CREATE TABLE `popular_questions` (
`id` int(11) NOT NULL,
`question_en` text NOT NULL,
`question_ar` text NOT NULL,
`answer_en` text NOT NULL,
`answer_ar` text NOT NULL,
`status` tinyint(4) NOT NULL DEFAULT 1,
`position` int(11) DEFAULT NULL,
`created_at` datetime NOT NULL,
`updated_at` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC;
--
-- Dumping data for table `popular_questions`
--
INSERT INTO `popular_questions` (`id`, `question_en`, `question_ar`, `answer_en`, `answer_ar`, `status`, `position`, `created_at`, `updated_at`) VALUES
(2, '1. Do I need to create an account to shop at mido.com.eg? How do I register?', '1. Do I need to create an account to shop at mido.com.eg? How do I register?', 'Yes, you do. Creating an account is an easy and convenient way to save delivery and order information, view current order status, record past orders, and save favorites that you can share. You may also check out as a guest if you don’t wish to create an account at this time. Click here to create your account!', 'Yes, you do. Creating an account is an easy and convenient way to save delivery and order information, view current order status, record past orders, and save favorites that you can share. You may also check out as a guest if you don’t wish to create an account at this time. Click here to create your account!', 1, 1, '2019-07-07 13:36:13', '2021-01-18 14:01:56'),
(3, '2. How do I find products at mido.com.eg?', '2. How do I find products at mido.com.eg?', '1. By Category – Think of our categories as shopping aisles. You can browse categories on the left navigation of the website. When you hover over a category or tap on it, it will open a list of more specific sub-categories. When you are on a Sub-category page, you can narrow your browsing further by selecting one of the filters.\r\n2. Product Search – Simply type the product you are looking for into the search bar at the top of the site and click Go! You can even search for brand names, categories and product attributes.', '1. By Category – Think of our categories as shopping aisles. You can browse categories on the left navigation of the website. When you hover over a category or tap on it, it will open a list of more specific sub-categories. When you are on a Sub-category page, you can narrow your browsing further by selecting one of the filters.\r\n2. Product Search – Simply type the product you are looking for into the search bar at the top of the site and click Go! You can even search for brand names, categories and product attributes.', 1, 2, '2019-07-07 13:39:35', '2021-01-18 14:01:56'),
(4, '3. When can I get my shopping delivered?', '3. When can I get my shopping delivered?', 'We deliver to you five days a week, from Sunday to Thursday. Our order hours are from 8:30 am to 2:30 pm sent to <EMAIL> . Orders usually take from 48 – 7 hours.', 'We deliver to you five days a week, from Sunday to Thursday. Our order hours are from 8:30 am to 2:30 pm sent to <EMAIL> . Orders usually take from 48 – 7 hours.', 1, 3, '2019-07-07 13:40:03', '2021-01-18 14:01:56'),
(5, '4. What if MIDO does not sell a product I would like to buy?', '4. What if MIDO does not sell a product I would like to buy?', 'We’d love to hear your suggestions on what you would like to buy! Please suggest a product to us, so that we can look into stocking it for your future purchases.', 'We’d love to hear your suggestions on what you would like to buy! Please suggest a product to us, so that we can look into stocking it for your future purchases.', 1, 4, '2019-07-07 13:40:45', '2021-01-18 14:01:56'),
(6, '5. How are my food items stored and delivered?', '5. How are my food items stored and delivered?', 'When it comes to your food, our top priority is ensuring your health and safety, and we work hard to ensure that you get the freshest food in the safest manner possible. We store and transport products in accordance with market standards and regulations. We carefully control the conditions in which your products are stored and transported, from the moment they are delivered to us to the time you receive them at your doorstep. Fresh items stay chilled and frozen items remain frozen.', 'When it comes to your food, our top priority is ensuring your health and safety, and we work hard to ensure that you get the freshest food in the safest manner possible. We store and transport products in accordance with market standards and regulations. We carefully control the conditions in which your products are stored and transported, from the moment they are delivered to us to the time you receive them at your doorstep. Fresh items stay chilled and frozen items remain frozen.', 1, 5, '2019-07-07 13:41:20', '2021-01-18 14:01:56'),
(7, '6. I have a problem with the products in my order. What can I do next?', '6. I have a problem with the products in my order. What can I do next?', 'We ask that you please check your order upon delivery. If you’re not completely happy with your products, please reach out to us via <EMAIL> and we’ll assist you from there.', 'We ask that you please check your order upon delivery. If you’re not completely happy with your products, please reach out to us via <EMAIL> and we’ll assist you from there.', 1, 6, '2019-07-07 13:42:10', '2021-01-18 14:01:56'),
(8, '7. How do I enter a promo code?', '7. How do I enter a promo code?', 'You’ll have the opportunity to enter a promo code during the payment stage of the checkout process. Simply enter the code (e.g. \'mido101\') followed by the \'Enter\' button on the right. Once the code has been successfully redeemed, the total amount will be updated. If there are any issues, you will see a small red box explaining the issue.', 'You’ll have the opportunity to enter a promo code during the payment stage of the checkout process. Simply enter the code (e.g. \'mido101\') followed by the \'Enter\' button on the right. Once the code has been successfully redeemed, the total amount will be updated. If there are any issues, you will see a small red box explaining the issue.', 1, 7, '2019-07-07 13:42:41', '2021-01-18 14:01:56'),
(9, '8. Is MIDO online store secure?', '8. Is MIDO online store secure?', 'Yes. We take every precaution to protect your privacy and to prevent misuse of the private information you provide us.', 'Yes. We take every precaution to protect your privacy and to prevent misuse of the private information you provide us.', 1, 8, '2019-07-07 13:43:16', '2021-01-18 14:01:56'),
(10, '9. There’s a problem with one of the items I ordered. Can I get a refund?', '9. There’s a problem with one of the items I ordered. Can I get a refund?', 'If an item is missing from your order or you have received a damaged item, please refund the order upon delivery or contact us for support via <EMAIL>', 'If an item is missing from your order or you have received a damaged item, please refund the order upon delivery or contact us for support via <EMAIL>', 1, 9, '2019-07-07 13:43:42', '2021-01-18 14:01:56'),
(11, '10. When will my order arrive once it’s ordered?', '10. When will my order arrive once it’s ordered?', 'The delivery for your order usually take from 48-72 hours.', 'The delivery for your order usually take from 48-72 hours.', 1, 10, '2019-07-07 13:44:25', '2021-01-18 14:01:56'),
(12, 'I need to cancel my order I placed for later in the week. Will I be charged?', 'I need to cancel my order I placed for later in the week. Will I be charged?', 'No. If you cancel an order before its scheduled delivery, we will not charge you.', 'No. If you cancel an order before its scheduled delivery, we will not charge you.', 1, 11, '2019-10-20 09:36:34', '2021-01-18 14:01:56'),
(13, 'How can I pay for my order?', 'How can I pay for my order?', 'In order to make your shopping as convenient as possible, we offer a selection of payment modes : Online by credit/debit card, Cash upon delivery & Card upon delivery.', 'In order to make your shopping as convenient as possible, we offer a selection of payment modes : Online by credit/debit card, Cash upon delivery & Card upon delivery.', 1, 12, '2019-10-20 09:37:20', '2021-01-18 14:01:56'),
(14, 'What is the minimum order?', 'What is the minimum order?', 'Minimum order is 499 LE', 'Minimum order is 499 LE', 1, 13, '2019-10-20 09:37:50', '2021-01-18 14:01:56');
-- --------------------------------------------------------
--
-- Table structure for table `privacy_policy`
--
CREATE TABLE `privacy_policy` (
`id` int(11) NOT NULL,
`title_en` varchar(225) NOT NULL,
`title_ar` varchar(225) NOT NULL,
`text_en` text NOT NULL,
`text_ar` text NOT NULL,
`status` tinyint(4) NOT NULL DEFAULT 1,
`position` int(11) DEFAULT NULL,
`created_at` datetime NOT NULL,
`updated_at` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC;
--
-- Dumping data for table `privacy_policy`
--
INSERT INTO `privacy_policy` (`id`, `title_en`, `title_ar`, `text_en`, `text_ar`, `status`, `position`, `created_at`, `updated_at`) VALUES
(3, 'How Do We Deliver?', 'كيف نسلم؟', 'After you have placed your order, an e-mail will be sent to you to verify that we have received your order. When we receive your order, it will be prepared carefully and transported with our refrigerated trucks that are equipped at the highest market standards. Our professional delivery team will bring it to you, making sure your order stays intact until you receive it.', 'بعد تقديمك لطلبك ، سيتم إرسال بريد إلكتروني إليك للتحقق من استلامنا لطلبك. عندما نتلقى طلبك ، سيتم تحضيره بعناية ونقله بشاحناتنا المبردة المجهزة بأعلى معايير السوق. سيقوم فريق التوصيل المحترف لدينا بإحضارها إليك ، مع التأكد من بقاء طلبك على حاله حتى استلامه.', 1, 1, '2020-08-19 10:25:23', '2020-11-12 14:00:40'),
(4, 'What Is The Delivery Time?', 'ما هو وقت التسليم؟', 'Kindly note that we deliver within 24 hours from date of delivery except for weekends.', 'يرجى ملاحظة أننا نقوم بالتوصيل خلال 24 ساعة من تاريخ التسليم باستثناء عطلات نهاية الأسبوع.', 1, 2, '2020-08-19 10:26:50', '2020-11-12 14:00:40'),
(5, 'Where Do We Deliver?', 'أين نقوم بالتوصيل؟', 'We deliver to Cairo and Sahel.', 'نقوم بالتوصيل إلى القاهرة والساحل.', 1, 3, '2020-08-19 10:27:56', '2020-11-12 14:00:40'),
(6, 'How Much Is The Delivery Fee?', 'كم هي رسوم التوصيل؟', 'The delivery fee is EGP 0. Minimum order: 250 EGP.', 'مصاريف التوصيل 0 جنيه مصري. الحد الأدنى للطلب: 250 جنيه مصري.', 1, 4, '2020-08-19 10:28:52', '2020-11-12 14:00:40'),
(7, 'How Do You Pay?', 'كيف تدفع؟', 'The payment for your order is made upon delivery. We accept cash and credit card. When you place your order, you will see the total before you check out. The total includes all your products delivery fee.', 'يتم الدفع لطلبك عند التسليم. نحن نقبل النقد وبطاقات الائتمان. عند تقديم طلبك ، سترى الإجمالي قبل تسجيل المغادرة. يشمل الإجمالي جميع رسوم توصيل منتجاتك.', 1, 5, '2020-08-19 10:30:33', '2020-11-12 14:00:40'),
(8, 'Is It Possible To Return An Order?', 'هل من الممكن إرجاع الطلب؟', 'Because we only have food products, it is not possible to return them. If you do have complaints or questions about your order, please don’t hesitate to contact us on 01210765555. You can also send an e-mail to <EMAIL> or a letter to 13T Al Ade<NAME>, Sheraton, Heliopolis, Cairo, Egypt. Our team will always be ready to listen to your comments and to find the right solution for every problem. When an item in your order is damaged upon delivery, we will replace it free of charge.', 'نظرًا لأن لدينا منتجات غذائية فقط ، فلا يمكن إرجاعها. إذا كانت لديك شكاوى أو أسئلة بخصوص طلبك ، من فضلك لا تتردد في الاتصال بنا على 01210765555. يمكنك أيضًا إرسال بريد إلكتروني إلى <EMAIL> أو خطاب إلى 13T Al Adeeb علي أدهم ، شيراتون ، مصر الجديدة ، القاهرة، مصر. سيكون فريقنا دائمًا على استعداد للاستماع إلى تعليقاتك وإيجاد الحل المناسب لكل مشكلة. عند تلف عنصر في طلبك عند التسليم ، سنقوم باستبداله مجانًا.', 1, 6, '2020-08-19 10:33:49', '2020-11-12 14:00:40'),
(9, 'Contact Us', 'اتصل بنا', 'If you have any further questions, you can contact SuperDeli by sending an e-mail to <EMAIL> or by sending a letter to SuperDeli, 13T Al Adeeb Aly Adham, Sheraton, Heliopolis, Cairo, Egypt.\nOur team is always ready to help you.', 'إذا كان لديك أي أسئلة أخرى ، يمكنك التواصل مع SuperDeli عن طريق إرسال بريد إلكتروني إلى <EMAIL> أو عن طريق إرسال رسالة إلى SuperDeli ، 13T Al Adeeb Aly Adham ، Sheraton ، Heliopolis ، Cairo ، Egypt.\nفريقنا مستعد دائمًا لمساعدتك.', 1, 7, '2020-08-19 10:35:02', '2020-11-12 14:00:40');
-- --------------------------------------------------------
--
-- Table structure for table `products`
--
CREATE TABLE `products` (
`id` int(11) NOT NULL,
`category_id` int(11) NOT NULL,
`base_product_id` int(11) NOT NULL,
`provider_id` int(11) NOT NULL,
`name_en` varchar(225) NOT NULL,
`name_ar` varchar(225) NOT NULL,
`short_description_en` text DEFAULT NULL,
`short_description_ar` text DEFAULT NULL,
`description_en` text NOT NULL,
`description_ar` text NOT NULL,
`rate` int(11) DEFAULT NULL,
`youtube_link` varchar(225) DEFAULT NULL,
`offer_percentage` int(11) NOT NULL DEFAULT 0,
`is_available` tinyint(4) NOT NULL DEFAULT 1,
`status` tinyint(4) NOT NULL DEFAULT 1,
`is_bundle` tinyint(4) NOT NULL DEFAULT 0,
`selles_times` int(11) NOT NULL DEFAULT 0,
`position` int(11) DEFAULT NULL,
`created_at` datetime NOT NULL,
`updated_at` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Dumping data for table `products`
--
INSERT INTO `products` (`id`, `category_id`, `base_product_id`, `provider_id`, `name_en`, `name_ar`, `short_description_en`, `short_description_ar`, `description_en`, `description_ar`, `rate`, `youtube_link`, `offer_percentage`, `is_available`, `status`, `is_bundle`, `selles_times`, `position`, `created_at`, `updated_at`) VALUES
(1, 1, 2, 1, 'dwdw', 'dwd', 'dw', 'dwdw', 'dwdwd', 'dwdw w dwd', NULL, NULL, 0, 1, 1, 0, 0, 1, '2021-01-13 17:12:15', '2021-01-14 17:02:36'),
(2, 1, 2, 1, 'test name en', 'test name ar', 'desc en', 'desc ar', 'short en', 'short ar', NULL, NULL, 0, 1, 1, 0, 0, 2, '2021-01-13 17:25:47', '2021-01-14 17:02:36'),
(3, 2, 4, 1, 'test name en 1', 'test name ar 1', 'desc en 1', 'desc ar 1', 'short en 1', 'short ar', NULL, 'null 1', 0, 0, 1, 0, 0, 3, '2021-01-13 17:27:04', '2021-01-20 15:58:13'),
(4, 1, 2, 1, 'ww', 'www', 'ddd', 'ddd', 'fff', '222', NULL, NULL, 0, 1, 1, 0, 0, NULL, '2021-01-25 16:03:21', '2021-01-25 16:03:21');
-- --------------------------------------------------------
--
-- Table structure for table `products_key_words`
--
CREATE TABLE `products_key_words` (
`id` int(11) NOT NULL,
`product_id` int(11) NOT NULL,
`name_en` varchar(225) NOT NULL,
`name_ar` varchar(225) NOT NULL,
`created_at` datetime NOT NULL,
`updated_at` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC;
--
-- Dumping data for table `products_key_words`
--
INSERT INTO `products_key_words` (`id`, `product_id`, `name_en`, `name_ar`, `created_at`, `updated_at`) VALUES
(1, 1, '3', '3', '2021-01-13 17:12:15', '2021-01-13 17:12:15'),
(2, 2, 'w', 'we', '2021-01-13 17:25:47', '2021-01-13 17:25:47'),
(9, 3, 'w', 'we', '2021-01-13 18:24:16', '2021-01-13 18:24:16');
-- --------------------------------------------------------
--
-- Table structure for table `product_images`
--
CREATE TABLE `product_images` (
`id` int(11) NOT NULL,
`product_id` int(11) NOT NULL,
`image` varchar(225) NOT NULL,
`is_main` tinyint(4) NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC;
--
-- Dumping data for table `product_images`
--
INSERT INTO `product_images` (`id`, `product_id`, `image`, `is_main`) VALUES
(1, 1, 'ProductImages_83987.png', 1),
(2, 2, 'ProductImages_96176.jpg', 1),
(3, 3, 'ProductImages_28391.jpg', 1),
(4, 4, 'ProductImages_48076.jpg', 1);
-- --------------------------------------------------------
--
-- Table structure for table `product_package_basic`
--
CREATE TABLE `product_package_basic` (
`id` int(11) NOT NULL,
`product_id` int(11) NOT NULL,
`price` int(11) NOT NULL,
`days` int(11) NOT NULL,
`modifications` int(11) NOT NULL,
`remaining_text` text DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Dumping data for table `product_package_basic`
--
INSERT INTO `product_package_basic` (`id`, `product_id`, `price`, `days`, `modifications`, `remaining_text`) VALUES
(1, 3, 11, 22, 33, NULL),
(2, 4, 22, 2, 2, NULL);
-- --------------------------------------------------------
--
-- Table structure for table `product_package_premium`
--
CREATE TABLE `product_package_premium` (
`id` int(11) NOT NULL,
`product_id` int(11) NOT NULL,
`price` int(11) NOT NULL,
`days` int(11) NOT NULL,
`modifications` int(11) NOT NULL,
`remaining_text` text DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Dumping data for table `product_package_premium`
--
INSERT INTO `product_package_premium` (`id`, `product_id`, `price`, `days`, `modifications`, `remaining_text`) VALUES
(1, 3, 77, 88, 99, NULL),
(2, 4, 22, 2, 2, NULL);
-- --------------------------------------------------------
--
-- Table structure for table `product_package_standard`
--
CREATE TABLE `product_package_standard` (
`id` int(11) NOT NULL,
`product_id` int(11) NOT NULL,
`price` int(11) NOT NULL,
`days` int(11) NOT NULL,
`modifications` int(11) NOT NULL,
`remaining_text` text DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Dumping data for table `product_package_standard`
--
INSERT INTO `product_package_standard` (`id`, `product_id`, `price`, `days`, `modifications`, `remaining_text`) VALUES
(1, 3, 44, 55, 66, NULL),
(2, 4, 2, 222, 2, NULL);
-- --------------------------------------------------------
--
-- Table structure for table `promo_codes`
--
CREATE TABLE `promo_codes` (
`id` int(11) NOT NULL,
`code` varchar(225) NOT NULL,
`discount_percentage` float NOT NULL,
`from_date` date NOT NULL,
`to_date` date NOT NULL,
`status` tinyint(1) NOT NULL DEFAULT 1,
`city_id` int(11) DEFAULT NULL,
`allowed_number_of_usage` int(11) DEFAULT NULL,
`actual_number_of_usage` int(11) DEFAULT 0,
`created_at` datetime NOT NULL,
`updated_at` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC;
--
-- Dumping data for table `promo_codes`
--
INSERT INTO `promo_codes` (`id`, `code`, `discount_percentage`, `from_date`, `to_date`, `status`, `city_id`, `allowed_number_of_usage`, `actual_number_of_usage`, `created_at`, `updated_at`) VALUES
(113, 'test2020', 10, '2020-08-21', '2020-08-23', 1, 0, 0, 1, '2020-08-21 23:25:12', '2020-08-22 16:01:53'),
(114, 'test123456', 10, '2020-08-05', '2020-08-26', 1, NULL, NULL, 1, '2020-08-23 11:37:17', '2020-08-23 11:49:44'),
(115, 'getmy50', 50, '2020-08-02', '2020-10-01', 1, NULL, NULL, 1, '2020-08-25 15:44:03', '2020-08-25 15:44:22'),
(116, 'go50', 50, '2020-11-08', '2020-12-05', 1, 0, 20, 20, '2020-11-24 15:15:07', '2020-11-24 16:15:36');
-- --------------------------------------------------------
--
-- Table structure for table `providers`
--
CREATE TABLE `providers` (
`id` int(11) NOT NULL,
`name_en` varchar(225) NOT NULL,
`name_ar` varchar(225) NOT NULL,
`created_at` datetime NOT NULL,
`updated_at` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Dumping data for table `providers`
--
INSERT INTO `providers` (`id`, `name_en`, `name_ar`, `created_at`, `updated_at`) VALUES
(1, 'BSocial', 'بي شوشيل', '2021-01-11 13:22:37', '2021-01-11 13:22:41');
-- --------------------------------------------------------
--
-- Table structure for table `roles`
--
CREATE TABLE `roles` (
`id` int(11) NOT NULL,
`name` varchar(225) NOT NULL,
`comment` text DEFAULT NULL,
`created_at` datetime NOT NULL,
`updated_at` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC;
--
-- Dumping data for table `roles`
--
INSERT INTO `roles` (`id`, `name`, `comment`, `created_at`, `updated_at`) VALUES
(6, 'Marketing Team', 'Marcomm', '2020-08-22 17:21:45', '2020-08-26 12:00:51'),
(7, 'Dispatched', 'Order', '2020-08-22 17:22:18', '2020-08-22 17:22:18'),
(8, 'Delivered', 'done', '2020-08-22 17:22:38', '2020-08-22 17:22:38'),
(9, 'cs', 'cs', '2020-08-25 15:55:58', '2020-08-25 15:55:58');
-- --------------------------------------------------------
--
-- Table structure for table `role_permission`
--
CREATE TABLE `role_permission` (
`id` int(11) NOT NULL,
`role_id` int(11) NOT NULL,
`permission_id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC;
--
-- Dumping data for table `role_permission`
--
INSERT INTO `role_permission` (`id`, `role_id`, `permission_id`) VALUES
(48, 7, 36),
(49, 7, 33),
(50, 8, 34),
(51, 8, 36),
(55, 6, 2),
(57, 6, 16),
(58, 6, 17),
(59, 6, 3),
(60, 6, 19),
(61, 6, 20),
(62, 6, 18),
(63, 6, 21),
(64, 6, 24),
(65, 6, 25),
(66, 6, 22),
(67, 6, 1),
(68, 6, 9),
(69, 6, 4),
(70, 9, 37),
(71, 9, 19);
-- --------------------------------------------------------
--
-- Table structure for table `seo_keywords`
--
CREATE TABLE `seo_keywords` (
`id` int(11) NOT NULL,
`name` varchar(225) NOT NULL,
`status` tinyint(4) NOT NULL DEFAULT 1
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC;
--
-- Dumping data for table `seo_keywords`
--
INSERT INTO `seo_keywords` (`id`, `name`, `status`) VALUES
(1, 'test', 1);
-- --------------------------------------------------------
--
-- Table structure for table `settings`
--
CREATE TABLE `settings` (
`id` int(11) NOT NULL,
`title` varchar(225) NOT NULL,
`value` text NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC;
--
-- Dumping data for table `settings`
--
INSERT INTO `settings` (`id`, `title`, `value`) VALUES
(24, 'our_location_en', '8 Fathy Talaat St. Sheraton Buildings, Heliopolis, Cairo, Egypt'),
(25, 'our_phone', ''),
(26, 'facebook_link', 'https://www.facebook.com/SuperDeli.Online/'),
(27, 'twitter_link', 'https://www.twitter.com/'),
(28, 'instagram_link', 'https://www.instagram.com/superdeli.online/'),
(40, 'about_us_text_ar', 'بواسطة الإمام فندي. تعتبر عائلة فندي اللاعبين الرئيسيين للمنتجات الحلوة والحلويات في مصر. Fourrée ، هارد كاندي (كور بيزنس) ، كانوي سويتيز (Éclairs ، توفي) ، دراجيس ، شوكولا (مقولب ، قضبان / عدد الكيلومترات ، فردي) ، البسكويت (كلاسيك-فيلد) والويفر. Horreia هي الرائدة في السوق في السوق المحلية الموقف في صناعة الحلوى الصلبة. ما جعل Horreia أبديًا ومتزايدًا طوال هذه العقود ، هو إخلاص الأجيال الأولى والثانية من Fendi إلى الحب المستمر للابتكارات في المنتجات التي تقدم أوسع نطاق بين جميع المسابقات تقديم الحلوى الصلبة من جميع الأنواع والابتكارات ، سواء كانت كبيرة وصغيرة ومليئة بالمركز الطبيعي أو الاقتصاد كل نوع من الوصفات ، بالإضافة إلى التوفي ، مجموعة من النكهات المختلفة من الرقاقات المليئة بالشوكولاته ، كريمات الفانيلا وغيرها ، وتطويرها للأسواق المحلية والدولية ، وعناصر Govrit التي نطورها للسوق المحلية ، والفول السوداني المغلفة بالشوكولاته ، والحلوى وأكثر في قسم من dragee. وقد نجح الجميع أيضًا في الوصول إلى التصدير من جميع الشركات المحيطة في الشرق الأوسط وأفريقيا ، وصولًا إلى الولايات المتحدة الأمريكية وكندا.'),
(35, 'youtube_link', 'https://www.youtube.com/'),
(36, 'shipping_price', '0'),
(37, 'tax_price', '0'),
(38, 'linkedin_link', 'https://www.linkedin.com/company/midodistributor'),
(39, 'about_us_text_en', 'by <NAME>. Fendi’s Family is the key players of sweet producers and confectionary in Egypt Horreia’s product portfolio covers; Fourrée, Hard Candy (Core Business), Chewy Candies (Éclairs, Toffee), Dragees, Chocolate (Moulded, Bars/Count-lines, Single), Biscuits (Classic-Filled) and wafers. Horreia is Market-Leader in Domestic Market Position in hard candy industry. What made Horreia everlasting and growing throughout these decades, the devotion of Fendi’s 1st & 2nd generations into constant love of product innovations offering the widest range among all competition Offering hard candy of all types and innovations, be it large, small, center filled, natural or economy all sort of recipes, plus toffee, range of different flavors of Wafers filled with chocolate, Vanilla creams etc. and develop it for the domestic and international markets, and Govrit items we develop it for the domestic market, chocolate coated peanuts, candy and more into the section of dragee. That all succeeded also into the export reaching from all surrounding companies in middle east & Africa, all the way to USA & Canada.'),
(41, 'our_phone_1', '+201210765555'),
(42, 'our_phone_2', '+20 1101600920'),
(43, 'our_email', '<EMAIL>'),
(44, 'minimum_basket_amount', '10'),
(45, 'minimum_freeTast_amount', '999'),
(46, 'our_location_ar', '8 ش فتحى طلعت ، مساكن شيراتون ، مصر الجديدة\r\nالقاهرة، مصر'),
(92, 'in_1', 'nn'),
(93, 'in_2', '900'),
(94, 'in_3', 'nn'),
(95, 'PrivacyPolicy_INFORMATION_USE_en', 'to respond to your inquiries or requests, process and fill customer orders, verify yours qualifications for certain products and services, process payments and prevent transactional fraud, provide delivery and other notifications , and contact and communicate with you.\r\n\r\nto respond to your inquiries or requests, process and fill customer orders, verify yours qualifications for certain products and services, process payments and prevent transactional fraud, provide delivery and other notifications , and contact and communicate with you.\r\nto respond to your inquiries or requests, process and fill customer orders, verify yours qualifications for certain products and services, process payments and prevent transactional fraud, provide delivery and other notifications , and contact and communicate with you.\r\nto respond to your inquiries or requests, process and fill customer orders, verify yours qualifications for certain products and services, process payments and prevent transactional fraud, provide delivery and other notifications , and contact and communicate with you.\r\nto respond to your inquiries or requests, process and fill customer orders, verify yours qualifications for certain products and services, process payments and prevent transactional fraud, provide delivery and other notifications , and contact and communicate with you.'),
(96, 'PrivacyPolicy_INFORMATION_DISCLOSURE_en', 'to respond to your inquiries or requests, process and fill customer orders, verify yours qualifications for certain products and services, process payments and prevent transactional fraud, provide delivery and other notifications , and contact and communicate with you.'),
(97, 'PrivacyPolicy_INFORMATION_USE_ar', 'to respond to your inquiries or requests, process and fill customer orders, verify yours qualifications for certain products and services, process payments and prevent transactional fraud, provide delivery and other notifications , and contact and communicate with you.\r\nto respond to your inquiries or requests, process and fill customer orders, verify yours qualifications for certain products and services, process payments and prevent transactional fraud, provide delivery and other notifications , and contact and communicate with you.\r\nto respond to your inquiries or requests, process and fill customer orders, verify yours qualifications for certain products and services, process payments and prevent transactional fraud, provide delivery and other notifications , and contact and communicate with you.\r\nto respond to your inquiries or requests, process and fill customer orders, verify yours qualifications for certain products and services, process payments and prevent transactional fraud, provide delivery and other notifications , and contact and communicate with you.\r\nto respond to your inquiries or requests, process and fill customer orders, verify yours qualifications for certain products and services, process payments and prevent transactional fraud, provide delivery and other notifications , and contact and communicate with you.'),
(98, 'PrivacyPolicy_INFORMATION_DISCLOSURE_ar', 'to respond to your inquiries or requests, process and fill customer orders, verify yours qualifications for certain products and services, process payments and prevent transactional fraud, provide delivery and other notifications , and contact and communicate with you.'),
(100, 'aboutus_en', '<p>Welcome to SUPERDELI.</p>\r\n<p>We are an online webshop that delivers superior grocery, food, and non-food items to our client base in different cities across the country.</p>\r\n\r\n<p>Every product we sell is selected carefully to ensure we are serving our clients with only the top products in every\r\ncategory and ensure its availability as much as possible at all times.\r\n</p>\r\n<p>At SUPERDELI, we strive to serve our clients based on 3 core principles: </p>\r\n\r\n<ul>\r\n <li> QUALITY </li>\r\n <li> SERVICE </li>\r\n <li> CONVENIENCE </li>\r\n</ul> \r\n\r\n<p>It is these 3 principles that define what we do at SUPERDELI and who we are. Our dedicated team of customer service professionals \r\n is committed to help every client with their needs and requests and make sure that every client is satisfied whether with \r\n the products that we deliver or resolving a problem that they might have. \r\n</p>\r\n\r\n<p>Our expert team of top senior and junior chefs are carefully selected and well trained to deliver quality with taste,\r\nhygienic and trendy solutions whether it’s for individual Indulgence or party groups like home gatherings or office\r\nbreakouts.\r\n</p>\r\n\r\n<p>\r\nOur delivery procedures <a href=\"{{url(\'About_us\')}}\"> {{url(\'Recipe\')}} </a> is strict ensuring hygienic and\r\ntemperature-controlled deliveries using temperature-controlled trucks and equipment to ensure at all times that products\r\narrive to our clients in the best condition to enjoy. \r\n</p>\r\n\r\n<p>\r\n At SUPERDELI, you can find your grocery needs for everyday use or special exclusive food items of world class standard or catering options for parties and gatherings. You can also enjoy our recipes <a href=\"{{url(\'Recipe\')}}\">{{url(\'Recipe\')}}</a> section prepared carefully by our Culinary team to offer our clients various recipe options for every diet.\r\n</p>\r\n\r\n<p>\r\n You can also follow us on Facebook <a href=\"https://www.facebook.com/SuperDeli.Online/\">https://www.facebook.com/SuperDeli.Online/</a> and Instagram <a href=\"https://www.instagram.com/superdeli.online/\">https://www.instagram.com/superdeli.online/</a> , to stay tuned to our announcements, new products we add or new services we provide or industry news we share, or exclusive recipe videos by top chefs. \r\n</p>\r\n\r\n<p>\r\n On our website, we aim to provide our clients with a user friendly, and clear website for convenient navigation and to find what you need easily. Our point system <a href=\"{{url(\'ShoppingCart\')}}\">{{url(\'ShoppingCart\')}}</a> with every order gives an automatic rebate scheme to all our clients to build up points as they purchase from us that they can redeem at any time for any goods or services we offer. You can also save previous buying baskets <a href=\"{{url(\'saved_basket\')}}\"> {{url(\'saved_basket\')}} </a> for quick repeat orders with a couple of clicks or you can create your list of favorite items <a href=\"{{url(\'WishList\')}}\">{{url(\'WishList\')}}</a>, with a one-button click on any picture to easily access your favourite items. We provide a lot of offers and product discounts. At our Bundles section <a href=\"{{url(\'bundles\')}}\">{{url(\'bundles\')}}</a>, you can find plenty of offers for grouped products at reduced prices, and at our products in discount section <a href=\"{{url(\'Offers\')}}\"> {{url(\'Offers\')}} </a> , you can find a lot of products being offered at a decent discount rate. We also add new products daily. You can also stay abreast of all new products we are adding by visiting the new New Products section <a href=\"{{url(\'new-arrivals\')}}\">{{url(\'new-arrivals\')}}</a> .\r\n</p>\r\n\r\nWe welcome all customer s feedback, praise, or improvement suggestions and take all customer feedback seriously, and respond to it promptly. You can reach us by phone at +201210765555 or by sending an email to <EMAIL> or by filling out our feedback form <a href=\"{{url(\'Contact_us\')}}\">{{url(\'Contact_us\')}}</a> and we will respond to your inquiry immediately and effectively\r\n\r\nWe hope you enjoy your shopping experience at SUPERDELI.\r\n<a href=\"{{url(\'\')}}\"> {{url(\'\')}} </a> \r\nThe SUPERDELI Team'),
(101, 'aboutus_ar', 'هذا نص قابل للتعديل من المسؤول -> المعلومات والمحتوى\ns\n '),
(102, 'aboutus_side_image', '29911.png');
-- --------------------------------------------------------
--
-- Table structure for table `shopping_cart`
--
CREATE TABLE `shopping_cart` (
`id` int(11) NOT NULL,
`member_id` int(11) NOT NULL,
`type` enum('product','ad') NOT NULL DEFAULT 'product',
`product_id` int(11) NOT NULL,
`package` enum('Standard','Basic','Premium') DEFAULT NULL,
`marketing_brief` int(11) DEFAULT NULL,
`created_at` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC;
-- --------------------------------------------------------
--
-- Table structure for table `subscribers`
--
CREATE TABLE `subscribers` (
`id` int(11) NOT NULL,
`email` varchar(225) NOT NULL,
`is_contacted` tinyint(4) NOT NULL DEFAULT 0,
`created_at` datetime NOT NULL,
`updated_at` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC;
--
-- Dumping data for table `subscribers`
--
INSERT INTO `subscribers` (`id`, `email`, `is_contacted`, `created_at`, `updated_at`) VALUES
(1, 'wdwd', 0, '2019-08-29 18:53:01', '2019-08-29 18:53:01'),
(2, 'sdsdsddsd', 0, '2019-10-15 12:06:04', '2019-10-15 12:06:04'),
(3, '<EMAIL>', 0, '2019-10-15 14:03:23', '2019-10-15 14:03:23'),
(4, '<EMAIL>', 0, '2020-02-04 16:43:16', '2020-02-04 16:43:16'),
(5, '<EMAIL>', 0, '2020-02-18 13:47:38', '2020-02-18 13:47:38'),
(6, '<EMAIL>', 0, '2020-02-18 13:47:50', '2020-02-18 13:47:50'),
(7, '<EMAIL>', 0, '2020-02-18 14:00:41', '2020-02-18 14:00:41'),
(8, '<EMAIL>', 0, '2020-02-18 14:01:38', '2020-02-18 14:01:38'),
(9, '<EMAIL>', 0, '2020-02-18 14:08:35', '2020-02-18 14:08:35'),
(10, '<EMAIL>', 0, '2020-02-18 14:08:40', '2020-02-18 14:08:40'),
(11, '<EMAIL>', 0, '2020-02-18 14:08:54', '2020-02-18 14:08:54'),
(12, '<EMAIL>', 0, '2020-02-18 14:09:26', '2020-02-18 14:09:26'),
(13, '<EMAIL>', 0, '2020-02-18 14:10:08', '2020-02-18 14:10:08'),
(14, '<EMAIL>', 0, '2020-02-18 14:11:44', '2020-02-18 14:11:44'),
(15, '<EMAIL>', 0, '2020-02-18 14:14:49', '2020-02-18 14:14:49'),
(16, '<EMAIL>', 0, '2020-02-18 14:15:51', '2020-02-18 14:15:51'),
(17, '<EMAIL>', 0, '2020-02-18 14:15:58', '2020-02-18 14:15:58'),
(18, '<EMAIL>', 0, '2020-02-18 14:16:25', '2020-02-18 14:16:25'),
(19, '<EMAIL>', 0, '2020-02-18 14:16:34', '2020-02-18 14:16:34'),
(20, '<EMAIL>', 0, '2020-02-18 14:18:28', '2020-02-18 14:18:28'),
(21, '<EMAIL>', 0, '2020-02-18 14:18:33', '2020-02-18 14:18:33'),
(22, '<EMAIL>', 0, '2020-02-18 14:19:42', '2020-02-18 14:19:42'),
(23, '<EMAIL>', 0, '2020-02-18 14:19:52', '2020-02-18 14:19:52'),
(24, '<EMAIL>', 0, '2020-02-18 14:20:13', '2020-02-18 14:20:13'),
(25, '<EMAIL>', 0, '2020-02-18 14:20:35', '2020-02-18 14:20:35'),
(26, '<EMAIL>', 0, '2020-02-18 14:26:24', '2020-02-18 14:26:24'),
(27, '<EMAIL>', 0, '2020-02-18 14:26:31', '2020-02-18 14:26:31'),
(28, '<EMAIL>', 0, '2020-02-18 14:27:26', '2020-02-18 14:27:26'),
(29, '<EMAIL>', 0, '2020-02-18 14:28:26', '2020-02-18 14:28:26'),
(30, '<EMAIL>', 0, '2020-02-18 15:27:12', '2020-02-18 15:27:12'),
(31, '<EMAIL>', 0, '2020-02-18 15:28:22', '2020-02-18 15:28:22'),
(32, '<EMAIL>', 0, '2020-02-18 15:28:29', '2020-02-18 15:28:29'),
(33, '<EMAIL>', 0, '2020-02-18 15:28:37', '2020-02-18 15:28:37'),
(34, '<EMAIL>', 0, '2020-02-18 15:28:46', '2020-02-18 15:28:46'),
(35, '<EMAIL>', 0, '2020-03-08 14:14:56', '2020-03-08 14:14:56'),
(36, '<EMAIL>', 0, '2020-03-08 14:15:33', '2020-03-08 14:15:33'),
(37, '<EMAIL>', 0, '2020-03-08 14:15:40', '2020-03-08 14:15:40'),
(38, '<EMAIL>', 0, '2020-03-15 13:01:03', '2020-03-15 13:01:03'),
(39, 'fdsafasdf@frgsdfg', 0, '2020-03-15 13:08:30', '2020-03-15 13:08:30'),
(40, 'fdsafsdfasdf@gdfgsdfg', 0, '2020-03-15 13:10:17', '2020-03-15 13:10:17'),
(41, 'adsfsdfa@dgfsdfgsdf', 0, '2020-03-15 13:10:33', '2020-03-15 13:10:33'),
(42, 's<PASSWORD>@<EMAIL> <PASSWORD>', 0, '2020-03-15 13:11:01', '2020-03-15 13:11:01'),
(43, '<EMAIL>', 0, '2020-03-15 13:11:14', '2020-03-15 13:11:14'),
(44, '<EMAIL>', 0, '2020-03-15 13:12:20', '2020-03-15 13:12:20'),
(45, '<EMAIL>', 0, '2020-03-15 13:12:47', '2020-03-15 13:12:47'),
(46, '<EMAIL>', 0, '2020-03-15 13:13:03', '2020-03-15 13:13:03'),
(48, '<EMAIL>', 0, '2020-03-15 13:14:17', '2020-03-15 13:14:17'),
(49, '<EMAIL>', 0, '2020-03-15 13:15:12', '2020-03-15 13:15:12'),
(50, '<EMAIL>', 0, '2020-03-15 13:15:33', '2020-03-15 13:15:33'),
(52, 'dsdg<EMAIL>', 0, '2020-03-15 13:18:16', '2020-03-15 13:18:16'),
(53, '<EMAIL>', 0, '2020-03-16 10:30:28', '2020-03-16 10:30:28'),
(54, '<EMAIL>', 0, '2020-03-18 09:19:43', '2020-03-18 09:19:43'),
(55, '<EMAIL>', 0, '2020-08-09 14:45:28', '2020-08-24 11:44:04'),
(57, '<EMAIL>', 0, '2020-08-09 14:46:51', '2020-08-09 14:46:51'),
(58, '<EMAIL>', 0, '2020-08-19 10:22:40', '2020-08-24 11:45:11'),
(59, '<EMAIL>', 0, '2020-08-19 13:16:28', '2020-08-24 11:45:14'),
(60, '<EMAIL>', 0, '2020-08-22 16:40:00', '2020-08-24 11:44:53'),
(61, '<EMAIL>', 0, '2020-08-22 16:41:26', '2020-08-24 12:27:42'),
(63, '<EMAIL>', 0, '2020-08-27 13:49:56', '2020-08-27 13:49:56'),
(64, '<EMAIL>', 0, '2020-08-27 13:50:14', '2020-08-27 13:50:14'),
(65, '<EMAIL>', 1, '2020-11-12 13:05:35', '2021-01-17 15:50:13');
-- --------------------------------------------------------
--
-- Table structure for table `terms_and_conditions`
--
CREATE TABLE `terms_and_conditions` (
`id` int(11) NOT NULL,
`title_en` varchar(225) NOT NULL,
`title_ar` varchar(225) NOT NULL,
`text_en` text NOT NULL,
`text_ar` text NOT NULL,
`status` tinyint(4) NOT NULL DEFAULT 1,
`position` int(11) DEFAULT NULL,
`created_at` datetime NOT NULL,
`updated_at` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC;
--
-- Dumping data for table `terms_and_conditions`
--
INSERT INTO `terms_and_conditions` (`id`, `title_en`, `title_ar`, `text_en`, `text_ar`, `status`, `position`, `created_at`, `updated_at`) VALUES
(1, 'ORDERING THROUGH THE PLATFORM', 'ORDERING THROUGH THE PLATFORM', '1-to respond to your inquiries or requests, process and fill customer orders, verify yours qualifications for certain products and services, process payments and prevent transactional fraud, provide delivery and other \r\n\r\n2-notifications , and contact and communicate with you.\r\nto respond to your inquiries or requests, process and fill customer orders, verify yours qualifications for certain products and services, process payments and prevent transactional fraud, provide delivery and other notifications , and contact and communicate with you.\r\n\r\n3-to respond to your inquiries or requests, process and fill customer orders, verify yours qualifications for certain products and services, process payments and prevent transactional fraud, provide delivery and other notifications , and contact and communicate with you.\r\nto respond to your inquiries or requests, process and fill customer orders, verify yours qualifications for certain products and services, process payments and prevent transactional fraud, provide delivery and other notifications , and contact and communicate with you.\r\nto respond to your inquiries or requests, process and fill customer orders, verify yours qualifications for certain products and services, process payments and prevent transactional fraud, provide delivery and other notifications , and contact and communicate with you.', '1-to respond to your inquiries or requests, process and fill customer orders, verify yours qualifications for certain products and services, process payments and prevent transactional fraud, provide delivery and other \r\n\r\n2-notifications , and contact and communicate with you.\r\nto respond to your inquiries or requests, process and fill customer orders, verify yours qualifications for certain products and services, process payments and prevent transactional fraud, provide delivery and other notifications , and contact and communicate with you.\r\n\r\n3-to respond to your inquiries or requests, process and fill customer orders, verify yours qualifications for certain products and services, process payments and prevent transactional fraud, provide delivery and other notifications , and contact and communicate with you.\r\nto respond to your inquiries or requests, process and fill customer orders, verify yours qualifications for certain products and services, process payments and prevent transactional fraud, provide delivery and other notifications , and contact and communicate with you.\r\nto respond to your inquiries or requests, process and fill customer orders, verify yours qualifications for certain products and services, process payments and prevent transactional fraud, provide delivery and other notifications , and contact and communicate with you.', 1, 1, '2020-06-28 00:00:00', '2021-01-18 14:01:20'),
(2, 'DELIVERY FREE\r\n', 'DELIVERY FREE\r\n', ' notifications , and contact and communicate with you.\r\nto respond to your inquiries or requests, process and fill customer orders, verify yours qualifications for certain products and services, process payments and prevent transactional fraud, provide delivery and other notifications , and contact and communicate with you.\r\n\r\nto respond to your inquiries or requests, process and fill customer orders, verify yours qualifications for certain products and services, process payments and prevent transactional fraud, provide delivery and other notifications , and contact and communicate with you. ', ' notifications , and contact and communicate with you.\r\nto respond to your inquiries or requests, process and fill customer orders, verify yours qualifications for certain products and services, process payments and prevent transactional fraud, provide delivery and other notifications , and contact and communicate with you.\r\n\r\nto respond to your inquiries or requests, process and fill customer orders, verify yours qualifications for certain products and services, process payments and prevent transactional fraud, provide delivery and other notifications , and contact and communicate with you. ', 1, 2, '2020-06-28 00:00:00', '2021-01-18 14:01:20');
-- --------------------------------------------------------
--
-- Table structure for table `wish_list`
--
CREATE TABLE `wish_list` (
`id` int(11) NOT NULL,
`member_id` int(11) NOT NULL,
`product_id` int(11) NOT NULL,
`created_at` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC;
--
-- Dumping data for table `wish_list`
--
INSERT INTO `wish_list` (`id`, `member_id`, `product_id`, `created_at`) VALUES
(57, 13, 317, '2020-08-05 12:41:42'),
(59, 13, 198, '2020-08-05 12:41:45'),
(60, 13, 319, '2020-08-05 12:42:00'),
(64, 13, 322, '2020-08-05 12:45:08'),
(65, 13, 318, '2020-08-05 12:45:09'),
(66, 13, 345, '2020-08-05 12:46:02'),
(69, 13, 336, '2020-08-05 15:26:57'),
(77, 17, 399, '2020-08-18 20:05:38'),
(80, 17, 378, '2020-08-18 20:05:50'),
(88, 13, 426, '2020-08-20 12:43:08'),
(89, 16, 388, '2020-08-20 15:33:17'),
(90, 16, 375, '2020-08-20 15:33:18'),
(91, 16, 377, '2020-08-20 15:33:19'),
(92, 16, 379, '2020-08-20 15:33:20'),
(94, 17, 385, '2020-08-21 00:50:35'),
(95, 17, 475, '2020-08-22 15:43:12'),
(96, 16, 385, '2020-08-23 10:53:48'),
(97, 16, 426, '2020-08-23 10:53:50'),
(103, 17, 375, '2020-08-25 15:59:36'),
(104, 17, 480, '2020-08-25 15:59:40'),
(105, 13, 374, '2020-11-05 11:17:07'),
(106, 13, 1010, '2020-11-05 11:41:23'),
(107, 13, 476, '2020-11-05 13:05:59'),
(108, 13, 377, '2020-11-05 13:06:02');
--
-- Indexes for dumped tables
--
--
-- Indexes for table `admins`
--
ALTER TABLE `admins`
ADD PRIMARY KEY (`id`) USING BTREE,
ADD KEY `role_id` (`role_id`) USING BTREE;
--
-- Indexes for table `ads_objectives`
--
ALTER TABLE `ads_objectives`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `ads_products`
--
ALTER TABLE `ads_products`
ADD PRIMARY KEY (`id`),
ADD KEY `ads_objective_id` (`ads_objective_id`);
--
-- Indexes for table `ads_product_images`
--
ALTER TABLE `ads_product_images`
ADD PRIMARY KEY (`id`) USING BTREE,
ADD KEY `product_id` (`ads_product_id`) USING BTREE;
--
-- Indexes for table `base_products`
--
ALTER TABLE `base_products`
ADD PRIMARY KEY (`id`),
ADD KEY `category_id` (`category_id`);
--
-- Indexes for table `categories`
--
ALTER TABLE `categories`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `contact_us`
--
ALTER TABLE `contact_us`
ADD PRIMARY KEY (`id`) USING BTREE;
--
-- Indexes for table `countries`
--
ALTER TABLE `countries`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `home_sliders`
--
ALTER TABLE `home_sliders`
ADD PRIMARY KEY (`id`) USING BTREE;
--
-- Indexes for table `members`
--
ALTER TABLE `members`
ADD PRIMARY KEY (`id`) USING BTREE,
ADD KEY `country_id` (`country_id`);
--
-- Indexes for table `member_files`
--
ALTER TABLE `member_files`
ADD PRIMARY KEY (`id`),
ADD KEY `member_id` (`member_id`);
--
-- Indexes for table `member_marketing_brief`
--
ALTER TABLE `member_marketing_brief`
ADD PRIMARY KEY (`id`),
ADD KEY `member_id` (`member_id`);
--
-- Indexes for table `member_promo`
--
ALTER TABLE `member_promo`
ADD PRIMARY KEY (`id`) USING BTREE,
ADD KEY `promo_id` (`promo_id`) USING BTREE,
ADD KEY `member_id` (`member_id`) USING BTREE,
ADD KEY `city_id` (`city_id`) USING BTREE;
--
-- Indexes for table `pages_banners`
--
ALTER TABLE `pages_banners`
ADD PRIMARY KEY (`id`) USING BTREE;
--
-- Indexes for table `permissions`
--
ALTER TABLE `permissions`
ADD PRIMARY KEY (`id`) USING BTREE;
--
-- Indexes for table `popular_questions`
--
ALTER TABLE `popular_questions`
ADD PRIMARY KEY (`id`) USING BTREE;
--
-- Indexes for table `privacy_policy`
--
ALTER TABLE `privacy_policy`
ADD PRIMARY KEY (`id`) USING BTREE;
--
-- Indexes for table `products`
--
ALTER TABLE `products`
ADD PRIMARY KEY (`id`),
ADD KEY `category_id` (`category_id`),
ADD KEY `base_product_id` (`base_product_id`),
ADD KEY `provider_id` (`provider_id`);
--
-- Indexes for table `products_key_words`
--
ALTER TABLE `products_key_words`
ADD PRIMARY KEY (`id`) USING BTREE,
ADD KEY `product_id` (`product_id`) USING BTREE;
--
-- Indexes for table `product_images`
--
ALTER TABLE `product_images`
ADD PRIMARY KEY (`id`) USING BTREE,
ADD KEY `product_id` (`product_id`) USING BTREE;
--
-- Indexes for table `product_package_basic`
--
ALTER TABLE `product_package_basic`
ADD PRIMARY KEY (`id`),
ADD KEY `product_id` (`product_id`),
ADD KEY `product_id_2` (`product_id`);
--
-- Indexes for table `product_package_premium`
--
ALTER TABLE `product_package_premium`
ADD PRIMARY KEY (`id`),
ADD KEY `product_id` (`product_id`);
--
-- Indexes for table `product_package_standard`
--
ALTER TABLE `product_package_standard`
ADD PRIMARY KEY (`id`),
ADD KEY `product_id` (`product_id`);
--
-- Indexes for table `promo_codes`
--
ALTER TABLE `promo_codes`
ADD PRIMARY KEY (`id`) USING BTREE,
ADD KEY `city_id` (`city_id`) USING BTREE;
--
-- Indexes for table `providers`
--
ALTER TABLE `providers`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `roles`
--
ALTER TABLE `roles`
ADD PRIMARY KEY (`id`) USING BTREE;
--
-- Indexes for table `role_permission`
--
ALTER TABLE `role_permission`
ADD PRIMARY KEY (`id`) USING BTREE;
--
-- Indexes for table `seo_keywords`
--
ALTER TABLE `seo_keywords`
ADD PRIMARY KEY (`id`) USING BTREE;
--
-- Indexes for table `settings`
--
ALTER TABLE `settings`
ADD PRIMARY KEY (`id`) USING BTREE;
--
-- Indexes for table `shopping_cart`
--
ALTER TABLE `shopping_cart`
ADD PRIMARY KEY (`id`) USING BTREE,
ADD KEY `member_id` (`member_id`) USING BTREE,
ADD KEY `product_id` (`product_id`) USING BTREE,
ADD KEY `marketing_brief` (`marketing_brief`);
--
-- Indexes for table `subscribers`
--
ALTER TABLE `subscribers`
ADD PRIMARY KEY (`id`) USING BTREE;
--
-- Indexes for table `terms_and_conditions`
--
ALTER TABLE `terms_and_conditions`
ADD PRIMARY KEY (`id`) USING BTREE;
--
-- Indexes for table `wish_list`
--
ALTER TABLE `wish_list`
ADD PRIMARY KEY (`id`) USING BTREE,
ADD KEY `member_id` (`member_id`) USING BTREE,
ADD KEY `product_id` (`product_id`) USING BTREE;
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `admins`
--
ALTER TABLE `admins`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=16;
--
-- AUTO_INCREMENT for table `ads_objectives`
--
ALTER TABLE `ads_objectives`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=10;
--
-- AUTO_INCREMENT for table `ads_products`
--
ALTER TABLE `ads_products`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=48;
--
-- AUTO_INCREMENT for table `ads_product_images`
--
ALTER TABLE `ads_product_images`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;
--
-- AUTO_INCREMENT for table `base_products`
--
ALTER TABLE `base_products`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;
--
-- AUTO_INCREMENT for table `categories`
--
ALTER TABLE `categories`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;
--
-- AUTO_INCREMENT for table `contact_us`
--
ALTER TABLE `contact_us`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=17;
--
-- AUTO_INCREMENT for table `countries`
--
ALTER TABLE `countries`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
--
-- AUTO_INCREMENT for table `home_sliders`
--
ALTER TABLE `home_sliders`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=10;
--
-- AUTO_INCREMENT for table `members`
--
ALTER TABLE `members`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=49;
--
-- AUTO_INCREMENT for table `member_files`
--
ALTER TABLE `member_files`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `member_marketing_brief`
--
ALTER TABLE `member_marketing_brief`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `member_promo`
--
ALTER TABLE `member_promo`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=491;
--
-- AUTO_INCREMENT for table `pages_banners`
--
ALTER TABLE `pages_banners`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=19;
--
-- AUTO_INCREMENT for table `permissions`
--
ALTER TABLE `permissions`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=38;
--
-- AUTO_INCREMENT for table `popular_questions`
--
ALTER TABLE `popular_questions`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=16;
--
-- AUTO_INCREMENT for table `privacy_policy`
--
ALTER TABLE `privacy_policy`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=10;
--
-- AUTO_INCREMENT for table `products`
--
ALTER TABLE `products`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6;
--
-- AUTO_INCREMENT for table `products_key_words`
--
ALTER TABLE `products_key_words`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=10;
--
-- AUTO_INCREMENT for table `product_images`
--
ALTER TABLE `product_images`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6;
--
-- AUTO_INCREMENT for table `product_package_basic`
--
ALTER TABLE `product_package_basic`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;
--
-- AUTO_INCREMENT for table `product_package_premium`
--
ALTER TABLE `product_package_premium`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;
--
-- AUTO_INCREMENT for table `product_package_standard`
--
ALTER TABLE `product_package_standard`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;
--
-- AUTO_INCREMENT for table `promo_codes`
--
ALTER TABLE `promo_codes`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=117;
--
-- AUTO_INCREMENT for table `providers`
--
ALTER TABLE `providers`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
--
-- AUTO_INCREMENT for table `roles`
--
ALTER TABLE `roles`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=10;
--
-- AUTO_INCREMENT for table `role_permission`
--
ALTER TABLE `role_permission`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=72;
--
-- AUTO_INCREMENT for table `seo_keywords`
--
ALTER TABLE `seo_keywords`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
--
-- AUTO_INCREMENT for table `settings`
--
ALTER TABLE `settings`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=103;
--
-- AUTO_INCREMENT for table `shopping_cart`
--
ALTER TABLE `shopping_cart`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `subscribers`
--
ALTER TABLE `subscribers`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=66;
--
-- AUTO_INCREMENT for table `terms_and_conditions`
--
ALTER TABLE `terms_and_conditions`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;
--
-- AUTO_INCREMENT for table `wish_list`
--
ALTER TABLE `wish_list`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=109;
--
-- Constraints for dumped tables
--
--
-- Constraints for table `ads_products`
--
ALTER TABLE `ads_products`
ADD CONSTRAINT `ads_products_ibfk_1` FOREIGN KEY (`ads_objective_id`) REFERENCES `ads_objectives` (`id`) ON DELETE CASCADE ON UPDATE CASCADE;
--
-- Constraints for table `ads_product_images`
--
ALTER TABLE `ads_product_images`
ADD CONSTRAINT `ads_product_images_ibfk_1` FOREIGN KEY (`ads_product_id`) REFERENCES `ads_products` (`id`) ON DELETE CASCADE ON UPDATE CASCADE;
--
-- Constraints for table `base_products`
--
ALTER TABLE `base_products`
ADD CONSTRAINT `base_products_ibfk_1` FOREIGN KEY (`category_id`) REFERENCES `categories` (`id`) ON DELETE CASCADE ON UPDATE CASCADE;
--
-- Constraints for table `members`
--
ALTER TABLE `members`
ADD CONSTRAINT `members_ibfk_1` FOREIGN KEY (`country_id`) REFERENCES `countries` (`id`) ON DELETE CASCADE ON UPDATE CASCADE;
--
-- Constraints for table `member_marketing_brief`
--
ALTER TABLE `member_marketing_brief`
ADD CONSTRAINT `member_marketing_brief_ibfk_1` FOREIGN KEY (`member_id`) REFERENCES `members` (`id`) ON DELETE CASCADE ON UPDATE CASCADE;
--
-- Constraints for table `member_promo`
--
ALTER TABLE `member_promo`
ADD CONSTRAINT `member_promo_ibfk_1` FOREIGN KEY (`promo_id`) REFERENCES `promo_codes` (`id`) ON DELETE CASCADE ON UPDATE CASCADE;
--
-- Constraints for table `products`
--
ALTER TABLE `products`
ADD CONSTRAINT `products_ibfk_1` FOREIGN KEY (`category_id`) REFERENCES `categories` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
ADD CONSTRAINT `products_ibfk_2` FOREIGN KEY (`base_product_id`) REFERENCES `base_products` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
ADD CONSTRAINT `products_ibfk_3` FOREIGN KEY (`provider_id`) REFERENCES `providers` (`id`) ON DELETE CASCADE ON UPDATE CASCADE;
--
-- Constraints for table `product_images`
--
ALTER TABLE `product_images`
ADD CONSTRAINT `product_images_ibfk_1` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) ON DELETE CASCADE ON UPDATE CASCADE;
--
-- Constraints for table `product_package_basic`
--
ALTER TABLE `product_package_basic`
ADD CONSTRAINT `product_package_basic_ibfk_1` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) ON DELETE CASCADE ON UPDATE CASCADE;
--
-- Constraints for table `product_package_premium`
--
ALTER TABLE `product_package_premium`
ADD CONSTRAINT `product_package_premium_ibfk_1` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) ON DELETE CASCADE ON UPDATE CASCADE;
--
-- Constraints for table `product_package_standard`
--
ALTER TABLE `product_package_standard`
ADD CONSTRAINT `product_package_standard_ibfk_1` FOREIGN KEY (`product_id`) REFERENCES `products` (`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 */;
|
-- phpMyAdmin SQL Dump
-- version 4.8.4
-- https://www.phpmyadmin.net/
--
-- Host: 127.0.0.1
-- Generation Time: Sep 29, 2021 at 05:58 PM
-- Server version: 10.1.37-MariaDB
-- PHP Version: 7.3.1
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET AUTOCOMMIT = 0;
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: `rpl`
--
-- --------------------------------------------------------
--
-- Table structure for table `data_beasiswa`
--
CREATE TABLE `data_beasiswa` (
`id` int(255) NOT NULL,
`nama_bea` varchar(200) NOT NULL,
`Jenis_bea` varchar(50) NOT NULL,
`Fak_bea` varchar(50) NOT NULL,
`jangka_bea` varchar(50) NOT NULL,
`deskripsi` varchar(255) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `data_beasiswa`
--
INSERT INTO `data_beasiswa` (`id`, `nama_bea`, `Jenis_bea`, `Fak_bea`, `jangka_bea`, `deskripsi`) VALUES
(2, 'Djarum', 'Prestasi', 'FILKOM', '3 Tahun', 'Beasiswa djarum merupakan beasiswa yang disediakan oleh perusahaan djarum guna menunjang prestasi dibidang pendidikan serta sebagai kontribusi nyata untuk bangsa dan negara.'),
(3, 'Pertamina', 'Prestasi', 'FILKOM', '4 Tahun', 'Beasiswa Pertamina merupakan basiswa yang disediakan oleh BUMN dalam sebagai wujud nyata membantu di dunia pendidikan'),
(4, 'Paramex Group', 'Pemberdayaan', 'FIA', '2 Tahun', 'beasiswa ini merupakan beasiswa untuk menyembuhkan sakit kepala mahasiswa yang binggung memikirkan UKT'),
(5, 'Pertamini', 'Prestasi', 'FILKOM', '4 tahun', 'beasiswa pertamini disiapkan untuk mahasiswa yang mampu melakukan penakaran bensin secara presisi dan tidak tumpah');
-- --------------------------------------------------------
--
-- Table structure for table `pendaftar_beasiswa`
--
CREATE TABLE `pendaftar_beasiswa` (
`id_pendaftaran` int(255) NOT NULL,
`nim` varchar(30) NOT NULL,
`id` varchar(30) NOT NULL,
`dokumen` varchar(255) NOT NULL,
`status` varchar(30) NOT NULL DEFAULT 'Belum Diterima',
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `pendaftar_beasiswa`
--
INSERT INTO `pendaftar_beasiswa` (`id_pendaftaran`, `nim`, `id`, `dokumen`, `status`, `created_at`) VALUES
(5, '175150200111078', '2', '175150200111078-kholel-2', 'Diterima', '2019-11-30 21:13:17'),
(6, '175150200111078', '3', '175150200111078-kholel-3', 'Belum Diterima', '2019-11-30 20:25:50'),
(7, '175150200111078', '4', '175150200111078-kholel-4', 'Diterima', '2019-12-05 02:02:20'),
(8, '175150201111036', '2', '175150201111036-Alif Fahrizal-2', 'Belum Diterima', '2019-12-04 15:11:32'),
(9, '175150201111036', '3', '175150201111036-Alif Fahrizal-3', 'Belum Diterima', '2019-12-04 15:21:06'),
(10, '175150201111036', '4', '175150201111036-Alif Fahrizal-4', 'Belum Diterima', '2019-12-04 15:29:24'),
(11, '175150201111053', '2', '175150201111053-Tania Malik Iryana-2', 'Diterima', '2019-12-05 02:01:47'),
(12, '175150201111053', '5', '175150201111053-Tania Malik Iryana-5', 'Diterima', '2019-12-05 02:03:24');
-- --------------------------------------------------------
--
-- Table structure for table `riwayat_data_beasiswa`
--
CREATE TABLE `riwayat_data_beasiswa` (
`id` int(255) NOT NULL,
`nama_bea` varchar(200) NOT NULL,
`Jenis_bea` varchar(50) NOT NULL,
`Fak_bea` varchar(50) NOT NULL,
`jangka_bea` varchar(50) NOT NULL,
`deskripsi` varchar(255) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `riwayat_data_beasiswa`
--
INSERT INTO `riwayat_data_beasiswa` (`id`, `nama_bea`, `Jenis_bea`, `Fak_bea`, `jangka_bea`, `deskripsi`) VALUES
(1, 'Pertamina', 'parsial', 'pertanian', '2 tahun', 'cobaa'),
(2, 'Djarum', 'Prestasi', 'FILKOM', '3 Tahun', 'Beasiswa djarum merupakan beasiswa yang disediakan oleh perusahaan djarum guna menunjang prestasi dibidang pendidikan serta sebagai kontribusi nyata untuk bangsa dan negara.'),
(3, 'Pertamina', 'Prestasi', 'FILKOM', '4 Tahun', 'Beasiswa Pertamina merupakan basiswa yang disediakan oleh BUMN dalam sebagai wujud nyata membantu di dunia pendidikan'),
(4, 'Paramex Group', 'Pemberdayaan', 'FIA', '2 Tahun', 'beasiswa ini merupakan beasiswa untuk menyembuhkan sakit kepala mahasiswa yang binggung memikirkan UKT'),
(5, 'Pertamini', 'Prestasi', 'FILKOM', '4 tahun', 'beasiswa pertamini disiapkan untuk mahasiswa yang mampu melakukan penakaran bensin secara presisi dan tidak tumpah'),
(6, 'dfk', 'kj', 'klefj', 'jk', 'fe'),
(7, '', '', '', '', ''),
(8, '', '', '', '', '');
-- --------------------------------------------------------
--
-- Table structure for table `user`
--
CREATE TABLE `user` (
`nim` varchar(30) NOT NULL,
`nama` varchar(255) NOT NULL,
`password` varchar(255) NOT NULL,
`level` int(10) DEFAULT '1'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `user`
--
INSERT INTO `user` (`nim`, `nama`, `password`, `level`) VALUES
('175150200111078', 'kholel', 'sembarang', 1),
('175150201111036', '<NAME>', 'tes', 1),
('175150201111053', '<NAME>', '<PASSWORD>', 1),
('admin', 'wkwkwk', 'tes', 2),
('adminB', 'kholilulloh', 'sembarang', 2),
('adminku', 'kholilulloh', 'tes', 2);
--
-- Indexes for dumped tables
--
--
-- Indexes for table `data_beasiswa`
--
ALTER TABLE `data_beasiswa`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `pendaftar_beasiswa`
--
ALTER TABLE `pendaftar_beasiswa`
ADD PRIMARY KEY (`id_pendaftaran`);
--
-- Indexes for table `riwayat_data_beasiswa`
--
ALTER TABLE `riwayat_data_beasiswa`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `user`
--
ALTER TABLE `user`
ADD PRIMARY KEY (`nim`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `data_beasiswa`
--
ALTER TABLE `data_beasiswa`
MODIFY `id` int(255) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6;
--
-- AUTO_INCREMENT for table `pendaftar_beasiswa`
--
ALTER TABLE `pendaftar_beasiswa`
MODIFY `id_pendaftaran` int(255) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=13;
--
-- AUTO_INCREMENT for table `riwayat_data_beasiswa`
--
ALTER TABLE `riwayat_data_beasiswa`
MODIFY `id` int(255) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9;
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 */;
|
with source as (
select * from {{ source('raw', 'ext_district') }}
),
renamed as (
select
district_id,
pop,
nmu500,
nmu2k,
nmu10k,
nmuinf,
ncit,
rurba,
avgsal,
urat95,
urat96,
ent_ppt,
ncri95,
ncri96,
city,
state,
zipcode
from source
)
select * from renamed
|
USE PeopleTracker
GO
/****** Object: Table dbo.Photo Script Date: 6/3/2018 4:55:48 PM ******/
IF OBJECT_ID('dbo.Photo', 'U') IS NOT NULL
BEGIN
ALTER TABLE dbo.Photo DROP CONSTRAINT FK_Photo_PhotoType
DROP TABLE dbo.Photo
END
GO
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE dbo.Photo
(
PhotoId int IDENTITY(1,1) NOT NULL,
Location NVARCHAR(512) NOT NULL,
PhotoTypeId int NOT NULL,
CONSTRAINT PK_Photo PRIMARY KEY CLUSTERED
(
PhotoId ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]
GO
ALTER TABLE dbo.Photo WITH CHECK ADD CONSTRAINT FK_Photo_PhotoType FOREIGN KEY(PhotoTypeId)
REFERENCES dbo.PhotoType (PhotoTypeId)
GO
ALTER TABLE dbo.Photo CHECK CONSTRAINT FK_Photo_PhotoType
GO
|
<reponame>saiaku-gaming/quality-assurance
ALTER TABLE crashes
ADD COLUMN diagnostics VARCHAR;
|
-- phpMyAdmin SQL Dump
-- version 4.9.1
-- https://www.phpmyadmin.net/
--
-- Host: 127.0.0.1
-- Generation Time: Jul 03, 2020 at 01:10 AM
-- Server version: 10.4.8-MariaDB-log
-- PHP Version: 7.3.11
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET AUTOCOMMIT = 0;
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: `larahub`
--
-- --------------------------------------------------------
--
-- Table structure for table `answer`
--
CREATE TABLE `answer` (
`id_jawaban` bigint(20) UNSIGNED NOT NULL,
`isi_jawaban` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`tanggal_dibuat_jawaban` timestamp NULL DEFAULT NULL,
`tanggal_diperbaharui_jawaban` timestamp NULL DEFAULT NULL,
`is_selected` tinyint(4) NOT NULL,
`id_penjawab` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `answer`
--
INSERT INTO `answer` (`id_jawaban`, `isi_jawaban`, `tanggal_dibuat_jawaban`, `tanggal_diperbaharui_jawaban`, `is_selected`, `id_penjawab`) VALUES
(1, 'Satu', '2020-07-06 17:00:00', '2020-07-08 17:00:00', 1, 1),
(2, 'Dua', '2020-07-15 17:00:00', '2020-07-23 17:00:00', 2, 2);
-- --------------------------------------------------------
--
-- Table structure for table `failed_jobs`
--
CREATE TABLE `failed_jobs` (
`id` bigint(20) UNSIGNED NOT NULL,
`connection` text COLLATE utf8mb4_unicode_ci NOT NULL,
`queue` text COLLATE utf8mb4_unicode_ci NOT NULL,
`payload` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`exception` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`failed_at` timestamp NOT NULL DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `items`
--
CREATE TABLE `items` (
`id` bigint(20) UNSIGNED NOT NULL,
`name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`tes` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `jawaban`
--
CREATE TABLE `jawaban` (
`id_jawaban` int(11) NOT NULL,
`isi_jawaban` varchar(255) DEFAULT NULL,
`tanggal_dibuat_jawaban` timestamp NULL DEFAULT NULL,
`tanggal_diperbaharui_jawaban` timestamp NULL DEFAULT NULL,
`is_selected` tinyint(4) DEFAULT NULL,
`id_penjawab` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
-- --------------------------------------------------------
--
-- Table structure for table `migrations`
--
CREATE TABLE `migrations` (
`id` int(10) UNSIGNED NOT NULL,
`migration` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`batch` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `migrations`
--
INSERT INTO `migrations` (`id`, `migration`, `batch`) VALUES
(1, '2014_10_12_000000_create_users_table', 1),
(2, '2019_08_19_000000_create_failed_jobs_table', 1),
(3, '2020_07_02_145915_create_items_table', 1),
(4, '2020_07_02_150551_create_question_table', 2),
(5, '2020_07_02_150809_create_answer_table', 3);
-- --------------------------------------------------------
--
-- Table structure for table `pertanyaan`
--
CREATE TABLE `pertanyaan` (
`id_pertanyaan` int(11) NOT NULL,
`judul_pertanyaan` varchar(255) DEFAULT NULL,
`isi_pertanyaan` varchar(255) DEFAULT NULL,
`tanggal_dibuat_pertanyaan` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
`id_penanya` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
-- --------------------------------------------------------
--
-- Table structure for table `profiles`
--
CREATE TABLE `profiles` (
`id` int(11) NOT NULL,
`full_name` varchar(255) DEFAULT NULL,
`address` varchar(255) DEFAULT NULL,
`photo` varchar(255) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
-- --------------------------------------------------------
--
-- Table structure for table `question`
--
CREATE TABLE `question` (
`id_pertanyaan` bigint(20) UNSIGNED NOT NULL,
`judul_pertanyaan` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`isi_pertanyaan` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`tanggal_dibuat_pertanyaan` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
`id_penanya` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `question`
--
INSERT INTO `question` (`id_pertanyaan`, `judul_pertanyaan`, `isi_pertanyaan`, `tanggal_dibuat_pertanyaan`, `id_penanya`) VALUES
(1, 'satu', 'dua', '2019-12-31 17:00:00', 1),
(2, 'satu', 'dua', '2019-12-31 17:00:00', 1);
-- --------------------------------------------------------
--
-- Table structure for table `users`
--
CREATE TABLE `users` (
`id` bigint(20) UNSIGNED NOT NULL,
`name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`email` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`email_verified_at` timestamp NULL DEFAULT NULL,
`password` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Indexes for dumped tables
--
--
-- Indexes for table `answer`
--
ALTER TABLE `answer`
ADD PRIMARY KEY (`id_jawaban`);
--
-- Indexes for table `failed_jobs`
--
ALTER TABLE `failed_jobs`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `items`
--
ALTER TABLE `items`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `jawaban`
--
ALTER TABLE `jawaban`
ADD PRIMARY KEY (`id_jawaban`);
--
-- Indexes for table `migrations`
--
ALTER TABLE `migrations`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `pertanyaan`
--
ALTER TABLE `pertanyaan`
ADD PRIMARY KEY (`id_pertanyaan`);
--
-- Indexes for table `profiles`
--
ALTER TABLE `profiles`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `question`
--
ALTER TABLE `question`
ADD PRIMARY KEY (`id_pertanyaan`);
--
-- Indexes for table `users`
--
ALTER TABLE `users`
ADD PRIMARY KEY (`id`),
ADD UNIQUE KEY `users_email_unique` (`email`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `answer`
--
ALTER TABLE `answer`
MODIFY `id_jawaban` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;
--
-- AUTO_INCREMENT for table `failed_jobs`
--
ALTER TABLE `failed_jobs`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `items`
--
ALTER TABLE `items`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `jawaban`
--
ALTER TABLE `jawaban`
MODIFY `id_jawaban` int(11) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `migrations`
--
ALTER TABLE `migrations`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6;
--
-- AUTO_INCREMENT for table `pertanyaan`
--
ALTER TABLE `pertanyaan`
MODIFY `id_pertanyaan` int(11) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `profiles`
--
ALTER TABLE `profiles`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `question`
--
ALTER TABLE `question`
MODIFY `id_pertanyaan` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;
--
-- AUTO_INCREMENT for table `users`
--
ALTER TABLE `users`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;
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 TABLE `sca_subscriptions` ( `id` INT(10) UNSIGNED AUTO_INCREMENT PRIMARY KEY NOT NULL, `subscriber` VARCHAR(255) NOT NULL, `aor` VARCHAR(255) NOT NULL, `event` INT DEFAULT 0 NOT NULL, `expires` INT(11) DEFAULT 0 NOT NULL, `state` INT DEFAULT 0 NOT NULL, `app_idx` INT DEFAULT 0 NOT NULL, `call_id` VARCHAR(255) NOT NULL, `from_tag` VARCHAR(64) NOT NULL, `to_tag` VARCHAR(64) NOT NULL, `record_route` TEXT, `notify_cseq` INT(11) NOT NULL, `subscribe_cseq` INT(11) NOT NULL, `server_id` INT(11) DEFAULT 0 NOT NULL, CONSTRAINT sca_subscriptions_idx UNIQUE (`subscriber`, `call_id`, `from_tag`, `to_tag`))
CREATE INDEX rls_watchers_rls_watchers_expires ON rls_watchers (expires);
select count(*) from location;
CREATE INDEX presentity_account_idx ON presentity (username,
CREATE INDEX rectime_idx ON topos_t (`rectime`);
CREATE TABLE uacreg ( id INTEGER PRIMARY KEY NOT NULL, l_uuid VARCHAR(64) DEFAULT '' NOT NULL, l_username VARCHAR(64) DEFAULT '' NOT NULL, l_domain VARCHAR(64) DEFAULT '' NOT NULL, r_username VARCHAR(64) DEFAULT '' NOT NULL, r_domain VARCHAR(64) DEFAULT '' NOT NULL, realm VARCHAR(64) DEFAULT '' NOT NULL, auth_username VARCHAR(64) DEFAULT '' NOT NULL, auth_password VARCHAR(64) DEFAULT '' NOT NULL, auth_ha1 VARCHAR(128) DEFAULT '' NOT NULL, auth_proxy VARCHAR(128) DEFAULT '' NOT NULL, expires INTEGER DEFAULT 0 NOT NULL, flags INTEGER DEFAULT 0 NOT NULL, reg_delay INTEGER DEFAULT 0 NOT NULL, CONSTRAINT uacreg_l_uuid_idx UNIQUE (l_uuid))
CREATE TABLE IF NOT EXISTS `stats_method_mem` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `create_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `method` varchar(50) NOT NULL DEFAULT '', `auth` tinyint(1) NOT NULL DEFAULT '0', `cseq` varchar(100) NOT NULL DEFAULT '', `totag` tinyint(1) NOT NULL DEFAULT 0, `total` int(20) NOT NULL DEFAULT 0, PRIMARY KEY (`id`), UNIQUE KEY `datemethod` (`method`,`auth`,`totag`,`cseq`), KEY `from_date` (`create_date`), KEY `method` (`method`), KEY `completed` (`cseq`))
CREATE INDEX lcr_gw_lcr_id_idx ON lcr_gw (lcr_id);
CREATE TABLE `mtrees` ( `id` INT(10) UNSIGNED AUTO_INCREMENT PRIMARY KEY NOT NULL, `tname` VARCHAR(128) DEFAULT '' NOT NULL, `tprefix` VARCHAR(32) DEFAULT '' NOT NULL, `tvalue` VARCHAR(128) DEFAULT '' NOT NULL, CONSTRAINT tname_tprefix_tvalue_idx UNIQUE (`tname`, `tprefix`, `tvalue`))
CREATE TABLE domain ( id NUMBER(10) PRIMARY KEY, domain VARCHAR2(64), did VARCHAR2(64) DEFAULT NULL, last_modified DATE DEFAULT to_date('2000-01-01 00:00:01','yyyy-mm-dd hh24:mi:ss'), CONSTRAINT domain_domain_idx UNIQUE (domain))
CREATE TABLE acc_cdrs ( id INTEGER PRIMARY KEY NOT NULL, start_time TIMESTAMP WITHOUT TIME ZONE DEFAULT '2000-01-01 00:00:00' NOT NULL, end_time TIMESTAMP WITHOUT TIME ZONE DEFAULT '2000-01-01 00:00:00' NOT NULL, duration REAL DEFAULT 0 NOT NULL)
SELECT jab_id FROM jusers WHERE sip_id='$sipuri'
CREATE TABLE `purplemap` ( `id` INT(10) UNSIGNED AUTO_INCREMENT PRIMARY KEY NOT NULL, `sip_user` VARCHAR(128) NOT NULL, `ext_user` VARCHAR(128) NOT NULL, `ext_prot` VARCHAR(16) NOT NULL, `ext_pass` VARCHAR(64))
CREATE TABLE `lcr_rule_target` ( `id` INT(10) UNSIGNED AUTO_INCREMENT PRIMARY KEY NOT NULL, `lcr_id` SMALLINT UNSIGNED NOT NULL, `rule_id` INT UNSIGNED NOT NULL, `gw_id` INT UNSIGNED NOT NULL, `priority` TINYINT UNSIGNED NOT NULL, `weight` INT UNSIGNED DEFAULT 1 NOT NULL, CONSTRAINT rule_id_gw_id_idx UNIQUE (`rule_id`, `gw_id`))
CREATE TABLE matrix ( first INTEGER NOT NULL, second SMALLINT NOT NULL, res INTEGER NOT NULL)
CREATE TABLE carrier_name ( id SERIAL PRIMARY KEY NOT NULL, carrier VARCHAR(64) DEFAULT NULL)
CREATE INDEX location_expires ON
CREATE TABLE dr_gateways ( gwid NUMBER(10) PRIMARY KEY, type NUMBER(10) DEFAULT 0 NOT NULL, address VARCHAR2(128), strip NUMBER(10) DEFAULT 0 NOT NULL, pri_prefix VARCHAR2(64) DEFAULT NULL, attrs VARCHAR2(255) DEFAULT NULL, description VARCHAR2(128) DEFAULT '')
CREATE TABLE uid_domain ( id INTEGER PRIMARY KEY NOT NULL, did VARCHAR(64) NOT NULL, domain VARCHAR(64) NOT NULL, flags INTEGER DEFAULT 0 NOT NULL, CONSTRAINT uid_domain_domain_idx UNIQUE (domain))
CREATE TABLE lcr_rule_target ( id SERIAL PRIMARY KEY NOT NULL, lcr_id SMALLINT NOT NULL, rule_id INTEGER NOT NULL, gw_id INTEGER NOT NULL, priority SMALLINT NOT NULL, weight INTEGER DEFAULT 1 NOT NULL, CONSTRAINT lcr_rule_target_rule_id_gw_id_idx UNIQUE (rule_id, gw_id))
CREATE INDEX cred_idx ON uid_credentials (`auth_username`, `did`);
CREATE TABLE `sip_trace` ( `id` INT(10) UNSIGNED AUTO_INCREMENT PRIMARY KEY NOT NULL, `time_stamp` DATETIME DEFAULT '2000-01-01 00:00:01' NOT NULL, `time_us` INT UNSIGNED DEFAULT 0 NOT NULL, `callid` VARCHAR(255) DEFAULT '' NOT NULL, `traced_user` VARCHAR(128) DEFAULT '' NOT NULL, `msg` MEDIUMTEXT NOT NULL, `method` VARCHAR(50) DEFAULT '' NOT NULL, `status` VARCHAR(128) DEFAULT '' NOT NULL, `fromip` VARCHAR(50) DEFAULT '' NOT NULL, `toip` VARCHAR(50) DEFAULT '' NOT NULL, `fromtag` VARCHAR(64) DEFAULT '' NOT NULL, `totag` VARCHAR(64) DEFAULT '' NOT NULL, `direction` VARCHAR(4) DEFAULT '' NOT NULL)
CREATE INDEX sip_capture_to_user_idx ON sip_capture (to_user);
select * from bad_table_long_row;
CREATE TABLE domain_name ( id INTEGER PRIMARY KEY NOT NULL, domain VARCHAR(64) DEFAULT NULL)
CREATE TABLE htable ( id SERIAL PRIMARY KEY NOT NULL, key_name VARCHAR(64) DEFAULT '' NOT NULL, key_type INTEGER DEFAULT 0 NOT NULL, value_type INTEGER DEFAULT 0 NOT NULL, key_value VARCHAR(128) DEFAULT '' NOT NULL, expires INTEGER DEFAULT 0 NOT NULL)
CREATE INDEX active_watchers_active_watchers_expires ON active_watchers (expires);
CREATE TABLE sip_trace ( id SERIAL PRIMARY KEY NOT NULL, time_stamp TIMESTAMP WITHOUT TIME ZONE DEFAULT '2000-01-01 00:00:01' NOT NULL, time_us INTEGER DEFAULT 0 NOT NULL, callid VARCHAR(255) DEFAULT '' NOT NULL, traced_user VARCHAR(128) DEFAULT '' NOT NULL, msg TEXT NOT NULL, method VARCHAR(50) DEFAULT '' NOT NULL, status VARCHAR(128) DEFAULT '' NOT NULL, fromip VARCHAR(50) DEFAULT '' NOT NULL, toip VARCHAR(50) DEFAULT '' NOT NULL, fromtag VARCHAR(64) DEFAULT '' NOT NULL, totag VARCHAR(64) DEFAULT '' NOT NULL, direction VARCHAR(4) DEFAULT '' NOT NULL)
select value from global_attrs where name='domain_data_version' and type=0 and cast(value as integer) between date_part('epoch', now() - interval '120 seconds') and date_part('epoch', now())", "reload
CREATE INDEX dialog_vars_hash_idx ON dialog_vars (hash_entry, hash_id);
CREATE TABLE `carrierfailureroute` ( `id` INT(10) UNSIGNED AUTO_INCREMENT PRIMARY KEY NOT NULL, `carrier` INT(10) UNSIGNED DEFAULT 0 NOT NULL, `domain` INT(10) UNSIGNED DEFAULT 0 NOT NULL, `scan_prefix` VARCHAR(64) DEFAULT '' NOT NULL, `host_name` VARCHAR(128) DEFAULT '' NOT NULL, `reply_code` VARCHAR(3) DEFAULT '' NOT NULL, `flags` INT(11) UNSIGNED DEFAULT 0 NOT NULL, `mask` INT(11) UNSIGNED DEFAULT 0 NOT NULL, `next_domain` INT(10) UNSIGNED DEFAULT 0 NOT NULL, `description` VARCHAR(255) DEFAULT NULL)
CREATE TABLE silo ( mid INT AUTO_INCREMENT NOT NULL, from_hdr VARCHAR(255) NOT NULL, to_hdr VARCHAR(255) NOT NULL, ruri VARCHAR(255) NOT NULL, uid VARCHAR(64) NOT NULL, inc_time DATETIME NOT NULL DEFAULT '1970-01-01 00:00:00', exp_time DATETIME NOT NULL DEFAULT '1970-01-01 00:00:00', ctype VARCHAR(128) NOT NULL DEFAULT 'text/plain', body BLOB NOT NULL DEFAULT '', UNIQUE KEY silo_idx1 (mid))
CREATE TABLE subscriber ( id INTEGER PRIMARY KEY NOT NULL, username VARCHAR(64) DEFAULT '' NOT NULL, domain VARCHAR(64) DEFAULT '' NOT NULL, password VARCHAR(64) DEFAULT '' NOT NULL, ha1 VARCHAR(128) DEFAULT '' NOT NULL, ha1b VARCHAR(128) DEFAULT '' NOT NULL, email_address VARCHAR(128) DEFAULT NULL, rpid VARCHAR(128) DEFAULT NULL, CONSTRAINT subscriber_account_idx UNIQUE (username, domain))
CREATE INDEX uri_uid ON uri (
CREATE INDEX location_account_contact_idx ON
CREATE TABLE credentials ( auth_username VARCHAR(64) NOT NULL, did VARCHAR(64) NOT NULL DEFAULT '_default', realm VARCHAR(64) NOT NULL, password VARCHAR(28) NOT NULL DEFAULT '', flags INT NOT NULL DEFAULT '0', ha1 VARCHAR(32) NOT NULL, ha1b VARCHAR(32) NOT NULL DEFAULT '', uuid VARCHAR(64) NOT NULL, KEY cred_idx (auth_username, did), KEY uuid (uuid), KEY did_idx (did), KEY realm_idx (realm))
CREATE TABLE gw_grp ( grp_id INT AUTO_INCREMENT NOT NULL, grp_name VARCHAR(64) NOT NULL, UNIQUE KEY gwgrp_idx (grp_id))
CREATE INDEX active_watchers_active_watchers_pres ON active_watchers (presentity_uri, event);
select id, caller, callee, text from messages;", "q
CREATE TABLE `trusted` ( `id` INT(10) UNSIGNED AUTO_INCREMENT PRIMARY KEY NOT NULL, `src_ip` VARCHAR(50) NOT NULL, `proto` VARCHAR(4) NOT NULL, `from_pattern` VARCHAR(64) DEFAULT NULL, `ruri_pattern` VARCHAR(64) DEFAULT NULL, `tag` VARCHAR(64), `priority` INT DEFAULT 0 NOT NULL)
select * FROM $DOMAIN_NAME_TABLE ORDER BY $CARRIERROUTE_DOMAIN_NAME_ID_COLUMN;
select password, <PASSWORD> from subscriber where username='$tu'
CREATE TABLE `pua` ( `id` INT(10) UNSIGNED AUTO_INCREMENT PRIMARY KEY NOT NULL, `pres_uri` VARCHAR(128) NOT NULL, `pres_id` VARCHAR(255) NOT NULL, `event` INT(11) NOT NULL, `expires` INT(11) NOT NULL, `desired_expires` INT(11) NOT NULL, `flag` INT(11) NOT NULL, `etag` VARCHAR(64) NOT NULL, `tuple_id` VARCHAR(64), `watcher_uri` VARCHAR(128) NOT NULL, `call_id` VARCHAR(255) NOT NULL, `to_tag` VARCHAR(64) NOT NULL, `from_tag` VARCHAR(64) NOT NULL, `cseq` INT(11) NOT NULL, `record_route` TEXT, `contact` VARCHAR(128) NOT NULL, `remote_contact` VARCHAR(128) NOT NULL, `version` INT(11) NOT NULL, `extra_headers` TEXT NOT NULL, CONSTRAINT pua_idx UNIQUE (`etag`, `tuple_id`, `call_id`, `from_tag`))
CREATE TABLE location_attrs ( id SERIAL PRIMARY KEY NOT NULL, ruid VARCHAR(64) DEFAULT '' NOT NULL, username VARCHAR(64) DEFAULT '' NOT NULL, domain VARCHAR(64) DEFAULT NULL, aname VARCHAR(64) DEFAULT '' NOT NULL, atype INTEGER DEFAULT 0 NOT NULL, avalue VARCHAR(255) DEFAULT '' NOT NULL, last_modified TIMESTAMP WITHOUT TIME ZONE DEFAULT '2000-01-01 00:00:01' NOT NULL)
SELECT * FROM impu_contact WHERE contact_id = (SELECT contact.id from contact WHERE contact.contact='%.*s')
CREATE INDEX globalblacklist_idx ON globalblacklist (`prefix`);
CREATE TABLE htable ( id NUMBER(10) PRIMARY KEY, key_name VARCHAR2(64) DEFAULT '', key_type NUMBER(10) DEFAULT 0 NOT NULL, value_type NUMBER(10) DEFAULT 0 NOT NULL, key_value VARCHAR2(128) DEFAULT '', expires NUMBER(10) DEFAULT 0 NOT NULL)
SELECT * FROM alarm_data_mem WHERE type='scanner' AND total >= $var(avalue) LIMIT 2", "rd
CREATE TABLE user_attrs ( uuid VARCHAR(64) NOT NULL, name VARCHAR(32) NOT NULL, value VARCHAR(255), type INT NOT NULL DEFAULT '0', flags INT UNSIGNED NOT NULL DEFAULT '0', UNIQUE KEY userattrs_idx (uuid, name, value))
select * from unsorted_table order by number;
SELECT * FROM $1 WHERE $2='$3'\\G;
CREATE TABLE silo ( id NUMBER(10) PRIMARY KEY, src_addr VARCHAR2(128) DEFAULT '', dst_addr VARCHAR2(128) DEFAULT '', username VARCHAR2(64) DEFAULT '', domain VARCHAR2(64) DEFAULT '', inc_time NUMBER(10) DEFAULT 0 NOT NULL, exp_time NUMBER(10) DEFAULT 0 NOT NULL, snd_time NUMBER(10) DEFAULT 0 NOT NULL, ctype VARCHAR2(32) DEFAULT 'text/plain', body BLOB, extra_hdrs CLOB, callid VARCHAR2(128) DEFAULT '', status NUMBER(10) DEFAULT 0 NOT NULL)
CREATE TABLE `speed_dial` ( `id` INT(10) UNSIGNED AUTO_INCREMENT PRIMARY KEY NOT NULL, `username` VARCHAR(64) DEFAULT '' NOT NULL, `domain` VARCHAR(64) DEFAULT '' NOT NULL, `sd_username` VARCHAR(64) DEFAULT '' NOT NULL, `sd_domain` VARCHAR(64) DEFAULT '' NOT NULL, `new_uri` VARCHAR(128) DEFAULT '' NOT NULL, `fname` VARCHAR(64) DEFAULT '' NOT NULL, `lname` VARCHAR(64) DEFAULT '' NOT NULL, `description` VARCHAR(64) DEFAULT '' NOT NULL, CONSTRAINT speed_dial_idx UNIQUE (`username`, `domain`, `sd_domain`, `sd_username`))
CREATE TABLE carrierroute ( id SERIAL PRIMARY KEY NOT NULL, carrier INTEGER DEFAULT 0 NOT NULL, domain INTEGER DEFAULT 0 NOT NULL, scan_prefix VARCHAR(64) DEFAULT '' NOT NULL, flags INTEGER DEFAULT 0 NOT NULL, mask INTEGER DEFAULT 0 NOT NULL, prob REAL DEFAULT 0 NOT NULL, strip INTEGER DEFAULT 0 NOT NULL, rewrite_host VARCHAR(128) DEFAULT '' NOT NULL, rewrite_prefix VARCHAR(64) DEFAULT '' NOT NULL, rewrite_suffix VARCHAR(64) DEFAULT '' NOT NULL, description VARCHAR(255) DEFAULT NULL)
CREATE TABLE `dialog_out` ( `id` int(11) NOT NULL AUTO_INCREMENT, `hash_entry` int(11) NOT NULL, `hash_id` int(11) NOT NULL, `did` varchar(45) NOT NULL, `to_uri` varchar(128) NOT NULL, `to_tag` varchar(64) NOT NULL, `caller_cseq` varchar(20) NOT NULL, `callee_cseq` varchar(20) NOT NULL, `callee_contact` varchar(128) NOT NULL, `callee_route_set` varchar(512) DEFAULT NULL, `callee_sock` varchar(64) NOT NULL, PRIMARY KEY (`id`))
CREATE INDEX hash_idx ON dialog (`hash_entry`, `hash_id`);
CREATE TABLE uri ( uuid VARCHAR(64) NOT NULL, did VARCHAR(64) NOT NULL, username VARCHAR(64) NOT NULL, flags INT UNSIGNED NOT NULL DEFAULT '0', scheme VARCHAR(8) NOT NULL DEFAULT 'sip', KEY uri_idx1 (username, did, scheme), KEY uri_uid (uuid))
SELECT create_date, type, total, source_ip, description FROM alarm_data_mem;");
CREATE INDEX rls_watchers_updated_idx ON rls_watchers (updated);
CREATE TABLE dialog ( id NUMBER(10) PRIMARY KEY, hash_entry NUMBER(10), hash_id NUMBER(10), callid VARCHAR2(255), from_uri VARCHAR2(128), from_tag VARCHAR2(64), to_uri VARCHAR2(128), to_tag VARCHAR2(64), caller_cseq VARCHAR2(20), callee_cseq VARCHAR2(20), caller_route_set VARCHAR2(512), callee_route_set VARCHAR2(512), caller_contact VARCHAR2(128), callee_contact VARCHAR2(128), caller_sock VARCHAR2(64), callee_sock VARCHAR2(64), state NUMBER(10), start_time NUMBER(10), timeout NUMBER(10) DEFAULT 0 NOT NULL, sflags NUMBER(10) DEFAULT 0 NOT NULL, iflags NUMBER(10) DEFAULT 0 NOT NULL, toroute_name VARCHAR2(32), req_uri VARCHAR2(128), xdata VARCHAR2(512))
CREATE TABLE pua ( id SERIAL PRIMARY KEY NOT NULL, pres_uri VARCHAR(128) NOT NULL, pres_id VARCHAR(255) NOT NULL, event INTEGER NOT NULL, expires INTEGER NOT NULL, desired_expires INTEGER NOT NULL, flag INTEGER NOT NULL, etag VARCHAR(64) NOT NULL, tuple_id VARCHAR(64), watcher_uri VARCHAR(128) NOT NULL, call_id VARCHAR(255) NOT NULL, to_tag VARCHAR(64) NOT NULL, from_tag VARCHAR(64) NOT NULL, cseq INTEGER NOT NULL, record_route TEXT, contact VARCHAR(128) NOT NULL, remote_contact VARCHAR(128) NOT NULL, version INTEGER NOT NULL, extra_headers TEXT NOT NULL, CONSTRAINT pua_pua_idx UNIQUE (etag, tuple_id, call_id, from_tag))
CREATE TABLE IF NOT EXISTS `logs_capture` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `micro_ts` bigint(18) NOT NULL DEFAULT '0', `correlation_id` varchar(256) NOT NULL DEFAULT '', `source_ip` varchar(60) NOT NULL DEFAULT '', `source_port` int(10) NOT NULL DEFAULT 0, `destination_ip` varchar(60) NOT NULL DEFAULT '', `destination_port` int(10) NOT NULL DEFAULT 0, `proto` int(5) NOT NULL DEFAULT 0, `family` int(1) DEFAULT NULL, `type` int(5) NOT NULL DEFAULT 0, `node` varchar(125) NOT NULL DEFAULT '', `msg` varchar(1500) NOT NULL DEFAULT '', PRIMARY KEY (`id`,`date`), KEY `date` (`date`), KEY `correlationid` (`correlation_id`(255)))
CREATE TABLE dialplan ( id INTEGER PRIMARY KEY NOT NULL, dpid INTEGER NOT NULL, pr INTEGER NOT NULL, match_op INTEGER NOT NULL, match_exp VARCHAR(64) NOT NULL, match_len INTEGER NOT NULL, subst_exp VARCHAR(64) NOT NULL, repl_exp VARCHAR(64) NOT NULL, attrs VARCHAR(64) NOT NULL)
CREATE TABLE uid_uri ( id INTEGER PRIMARY KEY NOT NULL, uid VARCHAR(64) NOT NULL, did VARCHAR(64) NOT NULL, username VARCHAR(64) NOT NULL, flags INTEGER DEFAULT 0 NOT NULL, scheme VARCHAR(8) DEFAULT 'sip' NOT NULL)
CREATE TABLE silo ( id SERIAL PRIMARY KEY NOT NULL, src_addr VARCHAR(128) DEFAULT '' NOT NULL, dst_addr VARCHAR(128) DEFAULT '' NOT NULL, username VARCHAR(64) DEFAULT '' NOT NULL, domain VARCHAR(64) DEFAULT '' NOT NULL, inc_time INTEGER DEFAULT 0 NOT NULL, exp_time INTEGER DEFAULT 0 NOT NULL, snd_time INTEGER DEFAULT 0 NOT NULL, ctype VARCHAR(32) DEFAULT 'text/plain' NOT NULL, body BYTEA, extra_hdrs TEXT, callid VARCHAR(128) DEFAULT '' NOT NULL, status INTEGER DEFAULT 0 NOT NULL)
CREATE INDEX sca_subscriptions_sca_subscribers_idx ON sca_subscriptions (subscriber, event);
CREATE TABLE mtree ( id INTEGER PRIMARY KEY NOT NULL, tprefix VARCHAR(32) DEFAULT '' NOT NULL, tvalue VARCHAR(128) DEFAULT '' NOT NULL, CONSTRAINT mtree_tprefix_idx UNIQUE (tprefix))
CREATE TABLE re_grp ( id SERIAL PRIMARY KEY NOT NULL, reg_exp VARCHAR(128) DEFAULT '' NOT NULL, group_id INTEGER DEFAULT 0 NOT NULL)
CREATE TABLE carrierroute ( id NUMBER(10) PRIMARY KEY, carrier NUMBER(10) DEFAULT 0 NOT NULL, domain NUMBER(10) DEFAULT 0 NOT NULL, scan_prefix VARCHAR2(64) DEFAULT '', flags NUMBER(10) DEFAULT 0 NOT NULL, mask NUMBER(10) DEFAULT 0 NOT NULL, prob NUMBER DEFAULT 0 NOT NULL, strip NUMBER(10) DEFAULT 0 NOT NULL, rewrite_host VARCHAR2(128) DEFAULT '', rewrite_prefix VARCHAR2(64) DEFAULT '', rewrite_suffix VARCHAR2(64) DEFAULT '', description VARCHAR2(255) DEFAULT NULL)
CREATE INDEX ds_df ON domain_settings (did, filename);
CREATE TABLE userblacklist ( id NUMBER(10) PRIMARY KEY, username VARCHAR2(64) DEFAULT '', domain VARCHAR2(64) DEFAULT '', prefix VARCHAR2(64) DEFAULT '', whitelist NUMBER(5) DEFAULT 0 NOT NULL)
CREATE TABLE IF NOT EXISTS `user` ( `uid` int(10) unsigned NOT NULL AUTO_INCREMENT, `gid` int(10) NOT NULL DEFAULT '10', `grp` varchar(200) NOT NULL DEFAULT '', `username` varchar(50) NOT NULL DEFAULT '', `password` varchar(100) NOT NULL DEFAULT '', `firstname` varchar(250) NOT NULL DEFAULT '', `lastname` varchar(250) NOT NULL DEFAULT '', `email` varchar(250) NOT NULL DEFAULT '', `department` varchar(100) NOT NULL DEFAULT '', `regdate` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `lastvisit` datetime NOT NULL, `active` tinyint(1) NOT NULL DEFAULT '1', PRIMARY KEY (`uid`), UNIQUE KEY `login` (`username`), UNIQUE KEY `username` (`username`))
CREATE TABLE contact_attrs ( uuid VARCHAR(64) NOT NULL, contact VARCHAR(255) NOT NULL, name VARCHAR(32) NOT NULL, value VARCHAR(255), type INT NOT NULL DEFAULT '0', flags INT UNSIGNED NOT NULL DEFAULT '0', UNIQUE KEY contactattrs_idx (uuid, contact, name))
CREATE INDEX callid_idx ON missed_calls (`callid`);
CREATE TABLE IF NOT EXISTS `user_menu` ( `id` varchar(125) NOT NULL DEFAULT '', `name` varchar(100) NOT NULL DEFAULT '', `alias` varchar(200) NOT NULL DEFAULT '', `icon` varchar(100) NOT NULL DEFAULT '', `weight` int(10) NOT NULL DEFAULT '10', `active` int(1) NOT NULL DEFAULT '1', UNIQUE KEY `id` (`id`))
select * from non_existent_table;
CREATE TABLE missed_calls ( id SERIAL PRIMARY KEY NOT NULL, method VARCHAR(16) DEFAULT '' NOT NULL, from_tag VARCHAR(64) DEFAULT '' NOT NULL, to_tag VARCHAR(64) DEFAULT '' NOT NULL, callid VARCHAR(255) DEFAULT '' NOT NULL, sip_code VARCHAR(3) DEFAULT '' NOT NULL, sip_reason VARCHAR(128) DEFAULT '' NOT NULL, time TIMESTAMP WITHOUT TIME ZONE NOT NULL)
UPDATE jusers SET tyep=1 WHERE sip_id=$sipuri
UPDATE imsu SET credit=credit WHERE id=$var
select * from domain", "ra
CREATE TABLE gw ( gw_name VARCHAR(128) NOT NULL, ip_addr INTEGER NOT NULL, port SMALLINT, uri_scheme SMALLINT, transport SMALLINT, prefix VARCHAR(16) NOT NULL, grp_id INTEGER NOT NULL, CONSTRAINT gw_idx1 UNIQUE (gw_name))
CREATE TABLE carrierroute ( id INTEGER PRIMARY KEY NOT NULL, carrier INTEGER DEFAULT 0 NOT NULL, domain INTEGER DEFAULT 0 NOT NULL, scan_prefix VARCHAR(64) DEFAULT '' NOT NULL, flags INTEGER DEFAULT 0 NOT NULL, mask INTEGER DEFAULT 0 NOT NULL, prob REAL DEFAULT 0 NOT NULL, strip INTEGER DEFAULT 0 NOT NULL, rewrite_host VARCHAR(128) DEFAULT '' NOT NULL, rewrite_prefix VARCHAR(64) DEFAULT '' NOT NULL, rewrite_suffix VARCHAR(64) DEFAULT '' NOT NULL, description VARCHAR(255) DEFAULT NULL)
CREATE INDEX callid_idx ON sip_trace (`callid`);
CREATE INDEX sip_capture_pid_user_idx ON sip_capture (pid_user);
CREATE TABLE IF NOT EXISTS `report_capture` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `micro_ts` bigint(18) NOT NULL DEFAULT '0', `correlation_id` varchar(256) NOT NULL DEFAULT '', `source_ip` varchar(60) NOT NULL DEFAULT '', `source_port` int(10) NOT NULL DEFAULT 0, `destination_ip` varchar(60) NOT NULL DEFAULT '', `destination_port` int(10) NOT NULL DEFAULT 0, `proto` int(5) NOT NULL DEFAULT 0, `family` int(1) DEFAULT NULL, `type` int(5) NOT NULL DEFAULT 0, `node` varchar(125) NOT NULL DEFAULT '', `msg` varchar(1500) NOT NULL DEFAULT '', PRIMARY KEY (`id`,`date`), KEY `date` (`date`), KEY `correlationid` (`correlation_id`(255)))
CREATE TABLE acc ( id INT NOT NULL, server_id INT NOT NULL DEFAULT '0', from_uid VARCHAR(64), to_uid VARCHAR(64), to_did VARCHAR(64), from_did VARCHAR(64), sip_from VARCHAR(255), sip_to VARCHAR(255), sip_status INT, sip_method VARCHAR(16), in_ruri VARCHAR(255), out_ruri VARCHAR(255), from_uri VARCHAR(255), to_uri VARCHAR(255), sip_callid VARCHAR(255), sip_cseq INT, digest_username VARCHAR(64), digest_realm VARCHAR(255), from_tag VARCHAR(128), to_tag VARCHAR(128), src_ip INT UNSIGNED, src_port SMALLINT UNSIGNED, request_timestamp DATETIME NOT NULL, response_timestamp DATETIME NOT NULL, flags INT UNSIGNED NOT NULL DEFAULT '0', attrs VARCHAR(255), UNIQUE KEY acc_id_key (server_id, id), KEY acc_cid_key (sip_callid), KEY acc_from_uid (from_uid), KEY acc_to_uid (to_uid))
CREATE INDEX grp_idx ON grp (
CREATE TABLE cpl ( uid VARCHAR(64) NOT NULL, cpl_xml BYTEA, cpl_bin BYTEA, CONSTRAINT cpl_key UNIQUE (uid))
CREATE TABLE IF NOT EXISTS cpl ( user VARCHAR(50) NOT NULL PRIMARY KEY, cpl_xml BLOB, cpl_bin BLOB, UNIQUE (user))
CREATE TABLE dr_groups ( id INTEGER PRIMARY KEY NOT NULL, username VARCHAR(64) NOT NULL, domain VARCHAR(128) DEFAULT '' NOT NULL, groupid INTEGER DEFAULT 0 NOT NULL, description VARCHAR(128) DEFAULT '' NOT NULL)
CREATE INDEX expires_idx ON rls_presentity (`expires`);
CREATE TABLE IF NOT EXISTS `stats_generic` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `from_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `to_date` timestamp NOT NULL DEFAULT '1971-01-01 00:00:01', `type` varchar(50) NOT NULL DEFAULT '', `tag` varchar(50) NOT NULL DEFAULT '', `total` int(20) NOT NULL, PRIMARY KEY (`id`,`from_date`), UNIQUE KEY `datemethod` (`from_date`,`to_date`,`type`,`tag`), KEY `from_date` (`from_date`), KEY `to_date` (`to_date`), KEY `method` (`type`,`tag`))
CREATE TABLE rls_watchers ( id NUMBER(10) PRIMARY KEY, presentity_uri VARCHAR2(128), to_user VARCHAR2(64), to_domain VARCHAR2(64), watcher_username VARCHAR2(64), watcher_domain VARCHAR2(64), event VARCHAR2(64) DEFAULT 'presence', event_id VARCHAR2(64), to_tag VARCHAR2(64), from_tag VARCHAR2(64), callid VARCHAR2(255), local_cseq NUMBER(10), remote_cseq NUMBER(10), contact VARCHAR2(128), record_route CLOB, expires NUMBER(10), status NUMBER(10) DEFAULT 2 NOT NULL, reason VARCHAR2(64), version NUMBER(10) DEFAULT 0 NOT NULL, socket_info VARCHAR2(64), local_contact VARCHAR2(128), from_user VARCHAR2(64), from_domain VARCHAR2(64), updated NUMBER(10), CONSTRAINT rls_watchers_rls_watcher_idx UNIQUE (callid, to_tag, from_tag))
CREATE TABLE `rtpengine` ( `setid` INT(10) UNSIGNED DEFAULT 0 NOT NULL, `url` VARCHAR(64) NOT NULL, `weight` INT(10) UNSIGNED DEFAULT 1 NOT NULL, `disabled` INT(1) DEFAULT 0 NOT NULL, `stamp` DATETIME DEFAULT '1900-01-01 00:00:01' NOT NULL, CONSTRAINT rtpengine_nodes PRIMARY KEY (`setid`, `url`))
CREATE INDEX sca_subscribers_idx ON sca_subscriptions (`subscriber`, `event`);
CREATE TABLE presentity_extensions ( dbid VARCHAR(64) NOT NULL, pres_id VARCHAR(64) NOT NULL, etag VARCHAR(64) NOT NULL, element BYTEA NOT NULL, expires TIMESTAMP NOT NULL DEFAULT '2005-12-07 08:13:15', CONSTRAINT presextensions_idx1 UNIQUE (dbid))
CREATE INDEX sca_subscriptions_sca_expires_idx ON sca_subscriptions (server_id, expires);
CREATE INDEX re_grp_group_idx ON re_grp (group_id);
CREATE TABLE sca_subscriptions ( id SERIAL PRIMARY KEY NOT NULL, subscriber VARCHAR(255) NOT NULL, aor VARCHAR(255) NOT NULL, event INTEGER DEFAULT 0 NOT NULL, expires INTEGER DEFAULT 0 NOT NULL, state INTEGER DEFAULT 0 NOT NULL, app_idx INTEGER DEFAULT 0 NOT NULL, call_id VARCHAR(255) NOT NULL, from_tag VARCHAR(64) NOT NULL, to_tag VARCHAR(64) NOT NULL, record_route TEXT, notify_cseq INTEGER NOT NULL, subscribe_cseq INTEGER NOT NULL, server_id INTEGER DEFAULT 0 NOT NULL, CONSTRAINT sca_subscriptions_sca_subscriptions_idx UNIQUE (subscriber, call_id, from_tag, to_tag))
CREATE TABLE purplemap ( id INT UNSIGNED PRIMARY KEY NOT NULL AUTO_INCREMENT, sip_user VARCHAR(128) NOT NULL, ext_user VARCHAR(128) NOT NULL, ext_prot VARCHAR(16) NOT NULL, ext_pass VARCHAR(64))
CREATE TABLE trusted ( id SERIAL PRIMARY KEY NOT NULL, src_ip VARCHAR(50) NOT NULL, proto VARCHAR(4) NOT NULL, from_pattern VARCHAR(64) DEFAULT NULL, ruri_pattern VARCHAR(64) DEFAULT NULL, tag VARCHAR(64), priority INTEGER DEFAULT 0 NOT NULL)
CREATE TABLE lcr_gw ( id NUMBER(10) PRIMARY KEY, lcr_id NUMBER(5), gw_name VARCHAR2(128), ip_addr VARCHAR2(50), hostname VARCHAR2(64), port NUMBER(5), params VARCHAR2(64), uri_scheme NUMBER(5), transport NUMBER(5), strip NUMBER(5), prefix VARCHAR2(16) DEFAULT NULL, tag VARCHAR2(64) DEFAULT NULL, flags NUMBER(10) DEFAULT 0 NOT NULL, defunct NUMBER(10) DEFAULT NULL)
CREATE INDEX aliases_account_contact_idx ON aliases (username,
select * FROM $TRUSTED_TABLE ;
CREATE TABLE speed_dial ( id NUMBER(10) PRIMARY KEY, username VARCHAR2(64) DEFAULT '', domain VARCHAR2(64) DEFAULT '', sd_username VARCHAR2(64) DEFAULT '', sd_domain VARCHAR2(64) DEFAULT '', new_uri VARCHAR2(128) DEFAULT '', fname VARCHAR2(64) DEFAULT '', lname VARCHAR2(64) DEFAULT '', description VARCHAR2(64) DEFAULT '', CONSTRAINT speed_dial_speed_dial_idx UNIQUE (username, domain, sd_domain, sd_username))
CREATE TABLE watchers ( id NUMBER(10) PRIMARY KEY, presentity_uri VARCHAR2(128), watcher_username VARCHAR2(64), watcher_domain VARCHAR2(64), event VARCHAR2(64) DEFAULT 'presence', status NUMBER(10), reason VARCHAR2(64), inserted_time NUMBER(10), CONSTRAINT watchers_watcher_idx UNIQUE (presentity_uri, watcher_username, watcher_domain, event))
CREATE TABLE userblacklist ( id INTEGER PRIMARY KEY NOT NULL, username VARCHAR(64) DEFAULT '' NOT NULL, domain VARCHAR(64) DEFAULT '' NOT NULL, prefix VARCHAR(64) DEFAULT '' NOT NULL, whitelist SMALLINT DEFAULT 0 NOT NULL)
CREATE INDEX domain_did ON uid_domain_attrs (`did`, `flags`);
CREATE TABLE dbaliases ( id SERIAL PRIMARY KEY NOT NULL, alias_username VARCHAR(64) DEFAULT '' NOT NULL, alias_domain VARCHAR(64) DEFAULT '' NOT NULL, username VARCHAR(64) DEFAULT '' NOT NULL, domain VARCHAR(64) DEFAULT '' NOT NULL)
CREATE TABLE pdt ( prefix VARCHAR(32) NOT NULL, domain VARCHAR(255) NOT NULL, UNIQUE KEY pdt_idx (prefix))
select * FROM $ACL_TABLE $CLAUSE ;
CREATE INDEX xcap_account_doc_type_uri_idx ON xcap (username,
select * from rtpengine;
CREATE TABLE mtree ( id INT(10) UNSIGNED AUTO_INCREMENT PRIMARY KEY NOT NULL, tprefix VARCHAR(32) NOT NULL, tvalue VARCHAR(128) DEFAULT '' NOT NULL, CONSTRAINT tprefix_idx UNIQUE (tprefix) )
CREATE INDEX uid_domain_attrs_domain_did ON uid_domain_attrs (did, flags);
CREATE INDEX hash_idx ON dialog_vars (`hash_entry`, `hash_id`);
CREATE TABLE presentity_notes ( dbid VARCHAR(64) NOT NULL, pres_id VARCHAR(64) NOT NULL, etag VARCHAR(64) NOT NULL, note VARCHAR(128) NOT NULL, lang VARCHAR(64) NOT NULL, expires TIMESTAMP NOT NULL DEFAULT '2005-12-07 08:13:15', CONSTRAINT pnotes_idx1 UNIQUE (dbid))
CREATE TABLE ipmatch ( ip VARCHAR(50) NOT NULL DEFAULT '', avp_val VARCHAR(30) DEFAULT NULL, mark INTEGER NOT NULL DEFAULT '1', flags INTEGER NOT NULL DEFAULT '0', CONSTRAINT ipmatch_idx UNIQUE (ip, mark))
CREATE TABLE contact_attrs ( uid VARCHAR(64) NOT NULL, contact VARCHAR(255) NOT NULL, name VARCHAR(32) NOT NULL, value VARCHAR(255), type INT NOT NULL DEFAULT '0', flags INT UNSIGNED NOT NULL DEFAULT '0', UNIQUE KEY contactattrs_idx (uid, contact, name))
CREATE TABLE carrierfailureroute ( id INTEGER PRIMARY KEY NOT NULL, carrier INTEGER DEFAULT 0 NOT NULL, domain INTEGER DEFAULT 0 NOT NULL, scan_prefix VARCHAR(64) DEFAULT '' NOT NULL, host_name VARCHAR(128) DEFAULT '' NOT NULL, reply_code VARCHAR(3) DEFAULT '' NOT NULL, flags INTEGER DEFAULT 0 NOT NULL, mask INTEGER DEFAULT 0 NOT NULL, next_domain INTEGER DEFAULT 0 NOT NULL, description VARCHAR(255) DEFAULT NULL)
CREATE TABLE gw ( gw_name VARCHAR(128) NOT NULL, ip_addr INT UNSIGNED NOT NULL, port SMALLINT UNSIGNED, uri_scheme TINYINT UNSIGNED, transport SMALLINT UNSIGNED, prefix VARCHAR(16) NOT NULL, grp_id INT NOT NULL, UNIQUE KEY gw_idx1 (gw_name), KEY gw_idx2 (grp_id))
CREATE TABLE topos_d ( id NUMBER(10) PRIMARY KEY, rectime DATE, s_method VARCHAR2(64) DEFAULT '', s_cseq VARCHAR2(64) DEFAULT '', a_callid VARCHAR2(255) DEFAULT '', a_uuid VARCHAR2(255) DEFAULT '', b_uuid VARCHAR2(255) DEFAULT '', a_contact VARCHAR2(128) DEFAULT '', b_contact VARCHAR2(128) DEFAULT '', as_contact VARCHAR2(128) DEFAULT '', bs_contact VARCHAR2(128) DEFAULT '', a_tag VARCHAR2(255) DEFAULT '', b_tag VARCHAR2(255) DEFAULT '', a_rr CLOB, b_rr CLOB, s_rr CLOB, iflags NUMBER(10) DEFAULT 0 NOT NULL, a_uri VARCHAR2(128) DEFAULT '', b_uri VARCHAR2(128) DEFAULT '', r_uri VARCHAR2(128) DEFAULT '', a_srcaddr VARCHAR2(128) DEFAULT '', b_srcaddr VARCHAR2(128) DEFAULT '', a_socket VARCHAR2(128) DEFAULT '', b_socket VARCHAR2(128) DEFAULT '')
CREATE TABLE uri ( uid VARCHAR(64) NOT NULL, did VARCHAR(64) NOT NULL, username VARCHAR(64) NOT NULL, flags INT UNSIGNED NOT NULL DEFAULT '0', scheme VARCHAR(8) NOT NULL DEFAULT 'sip', KEY uri_idx1 (username, did, scheme), KEY uri_uid (uid))
CREATE TABLE IF NOT EXISTS `rtcp_capture` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `micro_ts` bigint(18) NOT NULL DEFAULT '0', `correlation_id` varchar(256) NOT NULL DEFAULT '', `source_ip` varchar(60) NOT NULL DEFAULT '', `source_port` int(10) NOT NULL DEFAULT 0, `destination_ip` varchar(60) NOT NULL DEFAULT '', `destination_port` int(10) NOT NULL DEFAULT 0, `proto` int(5) NOT NULL DEFAULT 0, `family` int(1) DEFAULT NULL, `type` int(5) NOT NULL DEFAULT 0, `node` varchar(125) NOT NULL DEFAULT '', `msg` varchar(1500) NOT NULL DEFAULT '', PRIMARY KEY (`id`,`date`), KEY `date` (`date`), KEY `correlationid` (`correlation_id`(255)))
CREATE TABLE `lcr_rule` ( `id` INT(10) UNSIGNED AUTO_INCREMENT PRIMARY KEY NOT NULL, `lcr_id` SMALLINT UNSIGNED NOT NULL, `prefix` VARCHAR(16) DEFAULT NULL, `from_uri` VARCHAR(64) DEFAULT NULL, `request_uri` VARCHAR(64) DEFAULT NULL, `stopper` INT UNSIGNED DEFAULT 0 NOT NULL, `enabled` INT UNSIGNED DEFAULT 1 NOT NULL, CONSTRAINT lcr_id_prefix_from_uri_idx UNIQUE (`lcr_id`, `prefix`, `from_uri`))
CREATE TABLE topos_t ( id NUMBER(10) PRIMARY KEY, rectime DATE, s_method VARCHAR2(64) DEFAULT '', s_cseq VARCHAR2(64) DEFAULT '', a_callid VARCHAR2(255) DEFAULT '', a_uuid VARCHAR2(255) DEFAULT '', b_uuid VARCHAR2(255) DEFAULT '', direction NUMBER(10) DEFAULT 0 NOT NULL, x_via CLOB, x_vbranch VARCHAR2(255) DEFAULT '', x_rr CLOB, y_rr CLOB, s_rr CLOB, x_uri VARCHAR2(128) DEFAULT '', a_contact VARCHAR2(128) DEFAULT '', b_contact VARCHAR2(128) DEFAULT '', as_contact VARCHAR2(128) DEFAULT '', bs_contact VARCHAR2(128) DEFAULT '', x_tag VARCHAR2(255) DEFAULT '', a_tag VARCHAR2(255) DEFAULT '', b_tag VARCHAR2(255) DEFAULT '', a_srcaddr VARCHAR2(128) DEFAULT '', b_srcaddr VARCHAR2(128) DEFAULT '', a_socket VARCHAR2(128) DEFAULT '', b_socket VARCHAR2(128) DEFAULT '')
CREATE TABLE domain ( did VARCHAR(64) NOT NULL, domain VARCHAR(128) NOT NULL, flags INTEGER NOT NULL DEFAULT '0', CONSTRAINT domain_idx UNIQUE (domain))
CREATE TABLE `acc` ( `id` INT(10) UNSIGNED AUTO_INCREMENT PRIMARY KEY NOT NULL, `method` VARCHAR(16) DEFAULT '' NOT NULL, `from_tag` VARCHAR(64) DEFAULT '' NOT NULL, `to_tag` VARCHAR(64) DEFAULT '' NOT NULL, `callid` VARCHAR(255) DEFAULT '' NOT NULL, `sip_code` VARCHAR(3) DEFAULT '' NOT NULL, `sip_reason` VARCHAR(128) DEFAULT '' NOT NULL, `time` DATETIME NOT NULL)
CREATE TABLE carrierfailureroute ( id NUMBER(10) PRIMARY KEY, carrier NUMBER(10) DEFAULT 0 NOT NULL, domain NUMBER(10) DEFAULT 0 NOT NULL, scan_prefix VARCHAR2(64) DEFAULT '', host_name VARCHAR2(128) DEFAULT '', reply_code VARCHAR2(3) DEFAULT '', flags NUMBER(10) DEFAULT 0 NOT NULL, mask NUMBER(10) DEFAULT 0 NOT NULL, next_domain NUMBER(10) DEFAULT 0 NOT NULL, description VARCHAR2(255) DEFAULT NULL)
CREATE INDEX acc_to_uid ON acc (to_uid);
CREATE TABLE location ( id INT(10) UNSIGNED AUTO_INCREMENT PRIMARY KEY NOT NULL, username VARCHAR(64) DEFAULT '' NOT NULL, domain VARCHAR(64) DEFAULT NULL, contact VARCHAR(255) DEFAULT '' NOT NULL, received VARCHAR(128) DEFAULT NULL, path VARCHAR(128) DEFAULT NULL, expires DATETIME DEFAULT '2020-05-28 21:32:15' NOT NULL, q FLOAT(10,2) DEFAULT 1.0 NOT NULL, callid VARCHAR(255) DEFAULT 'Default-Call-ID' NOT NULL, cseq INT(11) DEFAULT 1 NOT NULL, last_modified DATETIME DEFAULT '1900-01-01 00:00:01' NOT NULL, flags INT(11) DEFAULT 0 NOT NULL, cflags INT(11) DEFAULT 0 NOT NULL, user_agent VARCHAR(255) DEFAULT '' NOT NULL, socket VARCHAR(64) DEFAULT NULL, methods INT(11) DEFAULT NULL)
CREATE TABLE presentity ( id SERIAL PRIMARY KEY NOT NULL, username VARCHAR(64) NOT NULL, domain VARCHAR(64) NOT NULL, event VARCHAR(64) NOT NULL, etag VARCHAR(64) NOT NULL, expires INTEGER NOT NULL, received_time INTEGER NOT NULL, body BYTEA NOT NULL, sender VARCHAR(128) NOT NULL, priority INTEGER DEFAULT 0 NOT NULL, CONSTRAINT presentity_presentity_idx UNIQUE (username, domain, event, etag))
CREATE TABLE sca_subscriptions ( id NUMBER(10) PRIMARY KEY, subscriber VARCHAR2(255), aor VARCHAR2(255), event NUMBER(10) DEFAULT 0 NOT NULL, expires NUMBER(10) DEFAULT 0 NOT NULL, state NUMBER(10) DEFAULT 0 NOT NULL, app_idx NUMBER(10) DEFAULT 0 NOT NULL, call_id VARCHAR2(255), from_tag VARCHAR2(64), to_tag VARCHAR2(64), record_route CLOB, notify_cseq NUMBER(10), subscribe_cseq NUMBER(10), server_id NUMBER(10) DEFAULT 0 NOT NULL, CONSTRAINT ORA_sca_subscriptions_idx UNIQUE (subscriber, call_id, from_tag, to_tag))
CREATE TABLE `pdt` ( `id` INT(10) UNSIGNED AUTO_INCREMENT PRIMARY KEY NOT NULL, `sdomain` VARCHAR(128) NOT NULL, `prefix` VARCHAR(32) NOT NULL, `domain` VARCHAR(128) DEFAULT '' NOT NULL, CONSTRAINT sdomain_prefix_idx UNIQUE (`sdomain`, `prefix`))
CREATE INDEX lcr_id_idx ON lcr_gw (`lcr_id`);
CREATE TABLE `missed_calls` ( `id` INT(10) UNSIGNED AUTO_INCREMENT PRIMARY KEY NOT NULL, `method` VARCHAR(16) DEFAULT '' NOT NULL, `from_tag` VARCHAR(64) DEFAULT '' NOT NULL, `to_tag` VARCHAR(64) DEFAULT '' NOT NULL, `callid` VARCHAR(255) DEFAULT '' NOT NULL, `sip_code` VARCHAR(3) DEFAULT '' NOT NULL, `sip_reason` VARCHAR(128) DEFAULT '' NOT NULL, `time` DATETIME NOT NULL)
CREATE TABLE `domainpolicy` ( `id` INT(10) UNSIGNED AUTO_INCREMENT PRIMARY KEY NOT NULL, `rule` VARCHAR(255) NOT NULL, `type` VARCHAR(255) NOT NULL, `att` VARCHAR(255), `val` VARCHAR(128), `description` VARCHAR(255) NOT NULL, CONSTRAINT rav_idx UNIQUE (`rule`, `att`, `val`))
CREATE TABLE presentity ( pres_id VARCHAR(64) NOT NULL, uri VARCHAR(255) NOT NULL, uid VARCHAR(64) NOT NULL, pdomain VARCHAR(128) NOT NULL, xcap_params BLOB NOT NULL, UNIQUE KEY presentity_key (pres_id))
CREATE INDEX dbaliases_target_idx ON dbaliases (username,
CREATE TABLE rtpproxy_attrs ( id VARCHAR(256) NOT NULL, name VARCHAR(32) NOT NULL, value VARCHAR(255), type INT NOT NULL DEFAULT '0', flags INT NOT NULL DEFAULT '0', PRIMARY KEY (id,name))
CREATE INDEX username_idx ON subscriber (`username`);
CREATE INDEX peer_idx ON
select location from netgeo_cache
select * FROM $DIALPLAN_TABLE ORDER BY $DIALPLAN_DPID_COLUMN, $DIALPLAN_PR_COLUMN;
CREATE TABLE `acc_cdrs` ( `id` INT(10) UNSIGNED AUTO_INCREMENT PRIMARY KEY NOT NULL, `start_time` DATETIME DEFAULT '2000-01-01 00:00:00' NOT NULL, `end_time` DATETIME DEFAULT '2000-01-01 00:00:00' NOT NULL, `duration` FLOAT(10,3) DEFAULT 0 NOT NULL)
CREATE INDEX sip_capture_callid_aleg_idx ON sip_capture (callid_aleg);
UPDATE jusers SET type=0 WHERE sip_id=$sipuri
CREATE TABLE version ( table_name VARCHAR(32) NOT NULL, table_version INTEGER DEFAULT 0 NOT NULL, CONSTRAINT version_table_name_idx UNIQUE (table_name))
SELECT type,value,name,notify,email FROM alarm_config WHERE NOW() between startdate AND stopdate AND active = 1", "ra
CREATE TABLE xcap ( id INTEGER PRIMARY KEY NOT NULL, username VARCHAR(64) NOT NULL, domain VARCHAR(64) NOT NULL, doc BLOB NOT NULL, doc_type INTEGER NOT NULL, etag VARCHAR(64) NOT NULL, source INTEGER NOT NULL, doc_uri VARCHAR(255) NOT NULL, port INTEGER NOT NULL, CONSTRAINT xcap_doc_uri_idx UNIQUE (doc_uri))
CREATE INDEX updated_idx ON rls_watchers (`updated`);
CREATE TABLE address ( id NUMBER(10) PRIMARY KEY, grp NUMBER(10) DEFAULT 1 NOT NULL, ip_addr VARCHAR2(50), mask NUMBER(10) DEFAULT 32 NOT NULL, port NUMBER(5) DEFAULT 0 NOT NULL, tag VARCHAR2(64))
CREATE TABLE domainpolicy ( id INTEGER PRIMARY KEY NOT NULL, rule VARCHAR(255) NOT NULL, type VARCHAR(255) NOT NULL, att VARCHAR(255), val VARCHAR(128), description VARCHAR(255) NOT NULL, CONSTRAINT domainpolicy_rav_idx UNIQUE (rule, att, val))
CREATE INDEX active_watchers_updated_idx ON active_watchers (updated);
CREATE TABLE globalblacklist ( id INTEGER PRIMARY KEY NOT NULL, prefix VARCHAR(64) DEFAULT '' NOT NULL, whitelist SMALLINT DEFAULT 0 NOT NULL, description VARCHAR(255) DEFAULT NULL)
CREATE TABLE uri_attrs ( username VARCHAR(64) NOT NULL, did VARCHAR(64) NOT NULL, name VARCHAR(32) NOT NULL, value VARCHAR(255), type INTEGER NOT NULL DEFAULT '0', flags INTEGER NOT NULL DEFAULT '0', scheme VARCHAR(8) NOT NULL DEFAULT 'sip', CONSTRAINT uriattrs_idx UNIQUE (username, did, name, value, scheme))
CREATE TABLE attr_types ( name VARCHAR(32) NOT NULL, rich_type VARCHAR(32) NOT NULL DEFAULT 'string', raw_type INTEGER NOT NULL DEFAULT '2', type_spec VARCHAR(255) DEFAULT NULL, description VARCHAR(255) DEFAULT NULL, default_flags INTEGER NOT NULL DEFAULT '0', flags INTEGER NOT NULL DEFAULT '0', priority INTEGER NOT NULL DEFAULT '0', access INTEGER NOT NULL DEFAULT '0', ordering INTEGER NOT NULL DEFAULT '0', grp VARCHAR(32) NOT NULL DEFAULT 'other', CONSTRAINT upt_idx1 UNIQUE (name))
CREATE TABLE speed_dial ( id INT AUTO_INCREMENT NOT NULL, uid VARCHAR(64) NOT NULL, dial_username VARCHAR(64) NOT NULL, dial_did VARCHAR(64) NOT NULL, new_uri VARCHAR(255) NOT NULL, UNIQUE KEY speeddial_idx1 (uid, dial_did, dial_username), UNIQUE KEY speeddial_id (id), KEY speeddial_uid (uid))
select * from table(dump_tables('$DBROOTUSER'));
CREATE TABLE rtpengine ( setid NUMBER(10) DEFAULT 0 NOT NULL, url VARCHAR2(64), weight NUMBER(10) DEFAULT 1 NOT NULL, disabled NUMBER(10) DEFAULT 0 NOT NULL, stamp DATE DEFAULT '1900-01-01 00:00:01', CONSTRAINT rtpengine_rtpengine_nodes PRIMARY KEY (setid, url))
CREATE INDEX realm_idx ON credentials (realm);
CREATE TABLE dr_rules ( ruleid SERIAL PRIMARY KEY NOT NULL, groupid VARCHAR(255) NOT NULL, prefix VARCHAR(64) NOT NULL, timerec VARCHAR(255) NOT NULL, priority INTEGER DEFAULT 0 NOT NULL, routeid VARCHAR(64) NOT NULL, gwlist VARCHAR(255) NOT NULL, description VARCHAR(128) DEFAULT '' NOT NULL)
SELECT DISTINCT FROM WHERE =
select * from test order by non_existent_column;
CREATE TABLE pdt ( id NUMBER(10) PRIMARY KEY, sdomain VARCHAR2(128), prefix VARCHAR2(32), domain VARCHAR2(128) DEFAULT '', CONSTRAINT pdt_sdomain_prefix_idx UNIQUE (sdomain, prefix))
CREATE TABLE uid_user_attrs ( id INTEGER PRIMARY KEY NOT NULL, uid VARCHAR(64) NOT NULL, name VARCHAR(32) NOT NULL, value VARCHAR(128), type INTEGER DEFAULT 0 NOT NULL, flags INTEGER DEFAULT 0 NOT NULL, CONSTRAINT uid_user_attrs_userattrs_idx UNIQUE (uid, name, value))
CREATE TABLE dbaliases ( id NUMBER(10) PRIMARY KEY, alias_username VARCHAR2(64) DEFAULT '', alias_domain VARCHAR2(64) DEFAULT '', username VARCHAR2(64) DEFAULT '', domain VARCHAR2(64) DEFAULT '')
CREATE INDEX start_time_idx ON acc_cdrs (`start_time`);
CREATE TABLE rls_vs ( id VARCHAR(48) NOT NULL, rls_id VARCHAR(48) NOT NULL, uri VARCHAR(255) NOT NULL, UNIQUE KEY rls_vs_key (id))
CREATE TABLE mohqueues ( id NUMBER(10) PRIMARY KEY, name VARCHAR2(25), uri VARCHAR2(100), mohdir VARCHAR2(100), mohfile VARCHAR2(100), debug NUMBER(10), CONSTRAINT mohqueues_mohqueue_uri_idx UNIQUE (uri), CONSTRAINT mohqueues_mohqueue_name_idx UNIQUE (name))
CREATE TABLE `domain_name` ( `id` INT(10) UNSIGNED AUTO_INCREMENT PRIMARY KEY NOT NULL, `domain` VARCHAR(64) DEFAULT NULL)
CREATE TABLE `subscriber` ( `id` int(11) NOT NULL AUTO_INCREMENT, `watcher_uri` varchar(100) NOT NULL, `watcher_contact` varchar(100) NOT NULL, `presentity_uri` varchar(100) NOT NULL, `event` int(11) NOT NULL, `expires` datetime NOT NULL, `version` int(11) NOT NULL, `local_cseq` int(11) NOT NULL, `call_id` varchar(50) NOT NULL, `from_tag` varchar(50) NOT NULL, `to_tag` varchar(50) NOT NULL, `record_route` varchar(50) NOT NULL, `sockinfo_str` varchar(50) NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `watcher_uri` (`event`,`watcher_contact`,`presentity_uri`))
CREATE INDEX acc_cdrs_start_time_idx ON acc_cdrs (start_time);
CREATE TABLE `rls_watchers` ( `id` INT(10) UNSIGNED AUTO_INCREMENT PRIMARY KEY NOT NULL, `presentity_uri` VARCHAR(128) NOT NULL, `to_user` VARCHAR(64) NOT NULL, `to_domain` VARCHAR(64) NOT NULL, `watcher_username` VARCHAR(64) NOT NULL, `watcher_domain` VARCHAR(64) NOT NULL, `event` VARCHAR(64) DEFAULT 'presence' NOT NULL, `event_id` VARCHAR(64), `to_tag` VARCHAR(64) NOT NULL, `from_tag` VARCHAR(64) NOT NULL, `callid` VARCHAR(255) NOT NULL, `local_cseq` INT(11) NOT NULL, `remote_cseq` INT(11) NOT NULL, `contact` VARCHAR(128) NOT NULL, `record_route` TEXT, `expires` INT(11) NOT NULL, `status` INT(11) DEFAULT 2 NOT NULL, `reason` VARCHAR(64) NOT NULL, `version` INT(11) DEFAULT 0 NOT NULL, `socket_info` VARCHAR(64) NOT NULL, `local_contact` VARCHAR(128) NOT NULL, `from_user` VARCHAR(64) NOT NULL, `from_domain` VARCHAR(64) NOT NULL, `updated` INT(11) NOT NULL, CONSTRAINT rls_watcher_idx UNIQUE (`callid`, `to_tag`, `from_tag`))
CREATE TABLE dialplan ( id SERIAL PRIMARY KEY NOT NULL, dpid INTEGER NOT NULL, pr INTEGER NOT NULL, match_op INTEGER NOT NULL, match_exp VARCHAR(64) NOT NULL, match_len INTEGER NOT NULL, subst_exp VARCHAR(64) NOT NULL, repl_exp VARCHAR(64) NOT NULL, attrs VARCHAR(64) NOT NULL)
CREATE TABLE IF NOT EXISTS `alarm_config` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(200) NOT NULL DEFAULT '', `startdate` datetime NOT NULL, `stopdate` datetime NOT NULL, `type` varchar(50) CHARACTER SET utf8 NOT NULL DEFAULT '', `value` int(5) NOT NULL DEFAULT 0, `notify` tinyint(1) NOT NULL DEFAULT '1', `email` varchar(200) NOT NULL DEFAULT '', `createdate` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `active` int(1) NOT NULL DEFAULT '1', PRIMARY KEY (`id`), UNIQUE KEY `type` (`type`))
CREATE INDEX traced_user_idx ON sip_trace (`traced_user`);
CREATE TABLE ipmatch ( ip VARCHAR(50) NOT NULL DEFAULT '', avp_val VARCHAR(30) DEFAULT NULL, mark INT(10) UNSIGNED NOT NULL DEFAULT '1', flags INT(10) UNSIGNED NOT NULL DEFAULT '0', UNIQUE KEY ipmatch_idx (ip, mark))
CREATE INDEX pb_uid ON phonebook (
select * from where column ="asdf";
CREATE INDEX presentity_presentity_expires ON presentity (expires);
CREATE INDEX expires_idx ON aliases (`expires`);
CREATE INDEX account_idx ON silo (`username`, `domain`);
CREATE TABLE IF NOT EXISTS `stats_ip_mem` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `create_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `method` varchar(50) NOT NULL DEFAULT '', `source_ip` varchar(255) NOT NULL DEFAULT '0.0.0.0', `total` int(20) NOT NULL DEFAULT 0, PRIMARY KEY (`id`), UNIQUE KEY `datemethod` (`method`,`source_ip`))
CREATE TABLE uid_user_attrs ( id NUMBER(10) PRIMARY KEY, uuid VARCHAR2(64), name VARCHAR2(32), value VARCHAR2(128), type NUMBER(10) DEFAULT 0 NOT NULL, flags NUMBER(10) DEFAULT 0 NOT NULL, CONSTRAINT uid_user_attrs_userattrs_idx UNIQUE (uuid, name, value))
CREATE TABLE sip_trace ( id NUMBER(10) PRIMARY KEY, time_stamp DATE DEFAULT to_date('2000-01-01 00:00:01','yyyy-mm-dd hh24:mi:ss'), time_us NUMBER(10) DEFAULT 0 NOT NULL, callid VARCHAR2(255) DEFAULT '', traced_user VARCHAR2(128) DEFAULT '', msg CLOB, method VARCHAR2(50) DEFAULT '', status VARCHAR2(128) DEFAULT '', fromip VARCHAR2(50) DEFAULT '', toip VARCHAR2(50) DEFAULT '', fromtag VARCHAR2(64) DEFAULT '', totag VARCHAR2(64) DEFAULT '', direction VARCHAR2(4) DEFAULT '')
CREATE TABLE jusers( juid INT NOT NULL AUTO_INCREMENT, jab_id VARCHAR(128) NOT NULL, jab_passwd VARCHAR(50), sip_id VARCHAR(128) NOT NULL, type INT NOT NULL DEFAULT 0, PRIMARY KEY(juid), KEY(jab_id), KEY(sip_id))
update subscriber set perms=? where USER_ID=?
CREATE TABLE attr_types ( name VARCHAR(32) NOT NULL, rich_type VARCHAR(32) NOT NULL DEFAULT 'string', raw_type INT NOT NULL DEFAULT '2', type_spec VARCHAR(255) DEFAULT NULL, description VARCHAR(255) DEFAULT NULL, default_flags INT NOT NULL DEFAULT '0', flags INT NOT NULL DEFAULT '0', priority INT NOT NULL DEFAULT '0', attr_access INT NOT NULL DEFAULT '0', ordering INT NOT NULL DEFAULT '0', grp VARCHAR(32) NOT NULL DEFAULT 'other', UNIQUE KEY upt_idx1 (name))
CREATE INDEX uid_uri_uri_idx1 ON uid_uri (username, did, scheme);
CREATE TABLE uid_uri_attrs ( id NUMBER(10) PRIMARY KEY, username VARCHAR2(64), did VARCHAR2(64), name VARCHAR2(32), value VARCHAR2(128), type NUMBER(10) DEFAULT 0 NOT NULL, flags NUMBER(10) DEFAULT 0 NOT NULL, scheme VARCHAR2(8) DEFAULT 'sip', CONSTRAINT uid_uri_attrs_uriattrs_idx UNIQUE (username, did, name, value, scheme))
CREATE INDEX domain_did ON domain_attrs (did, flags);
CREATE TABLE lcr_rule ( id INTEGER PRIMARY KEY NOT NULL, lcr_id SMALLINT NOT NULL, prefix VARCHAR(16) DEFAULT NULL, from_uri VARCHAR(64) DEFAULT NULL, request_uri VARCHAR(64) DEFAULT NULL, stopper INTEGER DEFAULT 0 NOT NULL, enabled INTEGER DEFAULT 1 NOT NULL, CONSTRAINT lcr_rule_lcr_id_prefix_from_uri_idx UNIQUE (lcr_id, prefix, from_uri))
insert into test values (col1, col2)
CREATE TABLE IF NOT EXISTS `alias` ( `id` int(10) NOT NULL AUTO_INCREMENT, `gid` int(5) NOT NULL DEFAULT 0, `ip` varchar(80) NOT NULL DEFAULT '', `port` int(10) NOT NULL DEFAULT '0', `capture_id` varchar(100) NOT NULL DEFAULT '', `alias` varchar(100) NOT NULL DEFAULT '', `status` tinyint(1) NOT NULL DEFAULT 0, `created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (`id`), UNIQUE KEY `id` (`id`), UNIQUE KEY `host_2` (`ip`,`port`,`capture_id`), KEY `host` (`ip`))
CREATE TABLE uri ( id SERIAL PRIMARY KEY NOT NULL, username VARCHAR(64) DEFAULT '' NOT NULL, domain VARCHAR(64) DEFAULT '' NOT NULL, uri_user VARCHAR(64) DEFAULT '' NOT NULL, last_modified TIMESTAMP WITHOUT TIME ZONE DEFAULT '2000-01-01 00:00:01' NOT NULL, CONSTRAINT uri_account_idx UNIQUE (username, domain, uri_user))
CREATE INDEX sip_capture_callid_idx ON sip_capture (callid);
CREATE TABLE `address` ( `id` INT(10) UNSIGNED AUTO_INCREMENT PRIMARY KEY NOT NULL, `grp` INT(11) UNSIGNED DEFAULT 1 NOT NULL, `ip_addr` VARCHAR(50) NOT NULL, `mask` INT DEFAULT 32 NOT NULL, `port` SMALLINT(5) UNSIGNED DEFAULT 0 NOT NULL, `tag` VARCHAR(64))
CREATE INDEX target_idx ON dbaliases (`username`, `domain`);
CREATE INDEX group_idx ON re_grp (`group_id`);
CREATE TABLE topos_t ( id SERIAL PRIMARY KEY NOT NULL, rectime TIMESTAMP WITHOUT TIME ZONE NOT NULL, s_method VARCHAR(64) DEFAULT '' NOT NULL, s_cseq VARCHAR(64) DEFAULT '' NOT NULL, a_callid VARCHAR(255) DEFAULT '' NOT NULL, a_uuid VARCHAR(255) DEFAULT '' NOT NULL, b_uuid VARCHAR(255) DEFAULT '' NOT NULL, direction INTEGER DEFAULT 0 NOT NULL, x_via TEXT, x_vbranch VARCHAR(255) DEFAULT '' NOT NULL, x_rr TEXT, y_rr TEXT, s_rr TEXT, x_uri VARCHAR(128) DEFAULT '' NOT NULL, a_contact VARCHAR(128) DEFAULT '' NOT NULL, b_contact VARCHAR(128) DEFAULT '' NOT NULL, as_contact VARCHAR(128) DEFAULT '' NOT NULL, bs_contact VARCHAR(128) DEFAULT '' NOT NULL, x_tag VARCHAR(255) DEFAULT '' NOT NULL, a_tag VARCHAR(255) DEFAULT '' NOT NULL, b_tag VARCHAR(255) DEFAULT '' NOT NULL, a_srcaddr VARCHAR(128) DEFAULT '' NOT NULL, b_srcaddr VARCHAR(128) DEFAULT '' NOT NULL, a_socket VARCHAR(128) DEFAULT '' NOT NULL, b_socket VARCHAR(128) DEFAULT '' NOT NULL)
CREATE TABLE active_watchers ( id INTEGER PRIMARY KEY NOT NULL, presentity_uri VARCHAR(128) NOT NULL, watcher_username VARCHAR(64) NOT NULL, watcher_domain VARCHAR(64) NOT NULL, to_user VARCHAR(64) NOT NULL, to_domain VARCHAR(64) NOT NULL, event VARCHAR(64) DEFAULT 'presence' NOT NULL, event_id VARCHAR(64), to_tag VARCHAR(64) NOT NULL, from_tag VARCHAR(64) NOT NULL, callid VARCHAR(255) NOT NULL, local_cseq INTEGER NOT NULL, remote_cseq INTEGER NOT NULL, contact VARCHAR(128) NOT NULL, record_route TEXT, expires INTEGER NOT NULL, status INTEGER DEFAULT 2 NOT NULL, reason VARCHAR(64) NOT NULL, version INTEGER DEFAULT 0 NOT NULL, socket_info VARCHAR(64) NOT NULL, local_contact VARCHAR(128) NOT NULL, from_user VARCHAR(64) NOT NULL, from_domain VARCHAR(64) NOT NULL, updated INTEGER NOT NULL, updated_winfo INTEGER NOT NULL, flags INTEGER DEFAULT 0 NOT NULL, user_agent VARCHAR(255) DEFAULT '' NOT NULL, CONSTRAINT active_watchers_active_watchers_idx UNIQUE (callid, to_tag, from_tag))
CREATE INDEX matrix_matrix_idx ON matrix (
CREATE INDEX did_idx ON uid_domain (`did`);
CREATE TABLE speed_dial ( username varchar(64) NOT NULL default '', domain varchar(128) NOT NULL default '', sd_username varchar(64) NOT NULL default '', sd_domain varchar(128) NOT NULL default '', new_uri varchar(192) NOT NULL default '', description varchar(64) NOT NULL default '', PRIMARY KEY (username, domain, sd_domain, sd_username))
CREATE TABLE uid_global_attrs ( id INTEGER PRIMARY KEY NOT NULL, name VARCHAR(32) NOT NULL, type INTEGER DEFAULT 0 NOT NULL, value VARCHAR(128), flags INTEGER DEFAULT 0 NOT NULL, CONSTRAINT uid_global_attrs_global_attrs_idx UNIQUE (name, value))
CREATE TABLE grp ( uid VARCHAR(64) NOT NULL DEFAULT '', grp VARCHAR(64) NOT NULL DEFAULT '', last_modified TIMESTAMP NOT NULL DEFAULT '1970-01-01 00:00:00')
CREATE TABLE rtpproxy ( id INTEGER PRIMARY KEY NOT NULL, setid VARCHAR(32) DEFAULT 00 NOT NULL, url VARCHAR(64) DEFAULT '' NOT NULL, flags INTEGER DEFAULT 0 NOT NULL, weight INTEGER DEFAULT 1 NOT NULL, description VARCHAR(64) DEFAULT '' NOT NULL)
CREATE TABLE purplemap ( id NUMBER(10) PRIMARY KEY, sip_user VARCHAR2(128), ext_user VARCHAR2(128), ext_prot VARCHAR2(16), ext_pass VARCHAR2(64))
CREATE TABLE domain_attrs ( id SERIAL PRIMARY KEY NOT NULL, did VARCHAR(64) NOT NULL, name VARCHAR(32) NOT NULL, type INTEGER NOT NULL, value VARCHAR(255) NOT NULL, last_modified TIMESTAMP WITHOUT TIME ZONE DEFAULT '2000-01-01 00:00:01' NOT NULL, CONSTRAINT domain_attrs_domain_attrs_idx UNIQUE (did, name, value))
CREATE INDEX uri_uid ON uid_uri (`uid`);
CREATE INDEX did_idx ON credentials (did);
CREATE TABLE globalblacklist ( id NUMBER(10) PRIMARY KEY, prefix VARCHAR2(64) DEFAULT '', whitelist NUMBER(5) DEFAULT 0 NOT NULL, description VARCHAR2(255) DEFAULT NULL)
CREATE INDEX topos_t_a_callid_idx ON topos_t (a_callid);
update test set col2= where id = 3 where id = 3
CREATE TABLE IF NOT EXISTS `node` ( `id` int(10) NOT NULL AUTO_INCREMENT, `host` varchar(80) NOT NULL DEFAULT '', `dbname` varchar(100) NOT NULL DEFAULT '', `dbport` varchar(100) NOT NULL DEFAULT '', `dbusername` varchar(100) NOT NULL DEFAULT '', `dbpassword` varchar(100) NOT NULL DEFAULT '', `dbtables` varchar(100) NOT NULL DEFAULT 'sip_capture', `name` varchar(100) NOT NULL DEFAULT '', `status` tinyint(1) NOT NULL DEFAULT 0, PRIMARY KEY (`id`), UNIQUE KEY `id` (`id`), UNIQUE KEY `host_2` (`host`), KEY `host` (`host`))
CREATE TABLE `uid_domain` ( `id` INT(10) UNSIGNED AUTO_INCREMENT PRIMARY KEY NOT NULL, `did` VARCHAR(64) NOT NULL, `domain` VARCHAR(64) NOT NULL, `flags` INT UNSIGNED DEFAULT 0 NOT NULL, CONSTRAINT domain_idx UNIQUE (`domain`))
CREATE TABLE uid_credentials ( id NUMBER(10) PRIMARY KEY, auth_username VARCHAR2(64), did VARCHAR2(64) DEFAULT '_default', realm VARCHAR2(64), password VARCHAR2(28) DEFAULT '', flags NUMBER(10) DEFAULT 0 NOT NULL, ha1 VARCHAR2(32), ha1b VARCHAR2(32) DEFAULT '', uuid VARCHAR2(64))
CREATE INDEX active_watchers_pres ON active_watchers (`presentity_uri`, `event`);
select * FROM $CARRIER_NAME_TABLE ORDER BY $CARRIERROUTE_CARRIER_NAME_ID_COLUMN;
CREATE TABLE uri ( id INTEGER PRIMARY KEY NOT NULL, username VARCHAR(64) DEFAULT '' NOT NULL, domain VARCHAR(64) DEFAULT '' NOT NULL, uri_user VARCHAR(64) DEFAULT '' NOT NULL, last_modified TIMESTAMP WITHOUT TIME ZONE DEFAULT '2000-01-01 00:00:01' NOT NULL, CONSTRAINT uri_account_idx UNIQUE (username, domain, uri_user))
CREATE INDEX sip_trace_date_idx ON sip_trace (time_stamp);
CREATE TABLE cpl ( id NUMBER(10) PRIMARY KEY, username VARCHAR2(64), domain VARCHAR2(64) DEFAULT '', cpl_xml CLOB, cpl_bin CLOB, CONSTRAINT cpl_account_idx UNIQUE (username, domain))
CREATE INDEX lcr_idx2 ON lcr (from_uri);
CREATE TABLE `uid_credentials` ( `id` INT(10) UNSIGNED AUTO_INCREMENT PRIMARY KEY NOT NULL, `auth_username` VARCHAR(64) NOT NULL, `did` VARCHAR(64) DEFAULT '_default' NOT NULL, `realm` VARCHAR(64) NOT NULL, `password` VARCHAR(28) DEFAULT '' NOT NULL, `flags` INT DEFAULT 0 NOT NULL, `ha1` VARCHAR(32) NOT NULL, `ha1b` VARCHAR(32) DEFAULT '' NOT NULL, `uid` VARCHAR(64) NOT NULL)
CREATE INDEX topos_d_a_callid_idx ON topos_d (a_callid);
CREATE TABLE `location_attrs` ( `id` INT(10) UNSIGNED AUTO_INCREMENT PRIMARY KEY NOT NULL, `ruid` VARCHAR(64) DEFAULT '' NOT NULL, `username` VARCHAR(64) DEFAULT '' NOT NULL, `domain` VARCHAR(64) DEFAULT NULL, `aname` VARCHAR(64) DEFAULT '' NOT NULL, `atype` INT(11) DEFAULT 0 NOT NULL, `avalue` VARCHAR(255) DEFAULT '' NOT NULL, `last_modified` DATETIME DEFAULT '2000-01-01 00:00:01' NOT NULL)
CREATE TABLE cpl ( id SERIAL PRIMARY KEY NOT NULL, username VARCHAR(64) NOT NULL, domain VARCHAR(64) DEFAULT '' NOT NULL, cpl_xml TEXT, cpl_bin TEXT, CONSTRAINT cpl_account_idx UNIQUE (username, domain))
CREATE TABLE IF NOT EXISTS `group` ( `gid` int(10) NOT NULL DEFAULT 0, `name` varchar(100) NOT NULL DEFAULT '', UNIQUE KEY `gid` (`gid`))
CREATE TABLE `dialog_in` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `hash_entry` int(10) unsigned NOT NULL, `hash_id` int(10) unsigned NOT NULL, `did` varchar(45) NOT NULL, `callid` varchar(255) NOT NULL, `from_uri` varchar(128) NOT NULL, `from_tag` varchar(64) NOT NULL, `caller_original_cseq` varchar(20) NOT NULL, `req_uri` varchar(128) NOT NULL, `caller_route_set` varchar(512) DEFAULT NULL, `caller_contact` varchar(128) NOT NULL, `caller_sock` varchar(64) NOT NULL, `state` int(10) unsigned NOT NULL, `start_time` int(10) unsigned NOT NULL, `timeout` int(10) unsigned NOT NULL DEFAULT '0', `sflags` int(10) unsigned NOT NULL DEFAULT '0', `toroute_name` varchar(32) DEFAULT NULL, `toroute_index` int(11) DEFAULT NULL, PRIMARY KEY (`id`), KEY `hash_idx` (`hash_entry`,`hash_id`))
select * FROM $DISPATCHER_TABLE ORDER BY $DISPATCHER_SETID_COLUMN;
CREATE INDEX topos_d_rectime_idx ON topos_d (rectime);
CREATE INDEX sip_capture_auth_user_idx ON sip_capture (auth_user);
CREATE TABLE htable ( id INTEGER PRIMARY KEY NOT NULL, key_name VARCHAR(64) DEFAULT '' NOT NULL, key_type INTEGER DEFAULT 0 NOT NULL, value_type INTEGER DEFAULT 0 NOT NULL, key_value VARCHAR(128) DEFAULT '' NOT NULL, expires INTEGER DEFAULT 0 NOT NULL)
CREATE INDEX uid_credentials_realm_idx ON uid_credentials (realm);
CREATE TABLE lcr_gw ( id INTEGER PRIMARY KEY NOT NULL, lcr_id SMALLINT NOT NULL, gw_name VARCHAR(128), ip_addr VARCHAR(50), hostname VARCHAR(64), port SMALLINT, params VARCHAR(64), uri_scheme SMALLINT, transport SMALLINT, strip SMALLINT, prefix VARCHAR(16) DEFAULT NULL, tag VARCHAR(64) DEFAULT NULL, flags INTEGER DEFAULT 0 NOT NULL, defunct INTEGER DEFAULT NULL)
CREATE INDEX alias_idx ON dbaliases (`alias_username`, `alias_domain`);
CREATE TABLE aliases ( id NUMBER(10) PRIMARY KEY, ruid VARCHAR2(64) DEFAULT '', username VARCHAR2(64) DEFAULT '', domain VARCHAR2(64) DEFAULT NULL, contact VARCHAR2(255) DEFAULT '', received VARCHAR2(128) DEFAULT NULL, path VARCHAR2(512) DEFAULT NULL, expires DATE DEFAULT to_date('2030-05-28 21:32:15','yyyy-mm-dd hh24:mi:ss'), q NUMBER(10,2) DEFAULT 1.0 NOT NULL, callid VARCHAR2(255) DEFAULT 'Default-Call-ID', cseq NUMBER(10) DEFAULT 1 NOT NULL, last_modified DATE DEFAULT to_date('2000-01-01 00:00:01','yyyy-mm-dd hh24:mi:ss'), flags NUMBER(10) DEFAULT 0 NOT NULL, cflags NUMBER(10) DEFAULT 0 NOT NULL, user_agent VARCHAR2(255) DEFAULT '', socket VARCHAR2(64) DEFAULT NULL, methods NUMBER(10) DEFAULT NULL, instance VARCHAR2(255) DEFAULT NULL, reg_id NUMBER(10) DEFAULT 0 NOT NULL, server_id NUMBER(10) DEFAULT 0 NOT NULL, connection_id NUMBER(10) DEFAULT 0 NOT NULL, keepalive NUMBER(10) DEFAULT 0 NOT NULL, partition NUMBER(10) DEFAULT 0 NOT NULL, CONSTRAINT aliases_ruid_idx UNIQUE (ruid))
CREATE TABLE domain_attrs ( did VARCHAR(64), name VARCHAR(32) NOT NULL, type INTEGER NOT NULL DEFAULT '0', value VARCHAR(255), flags INTEGER NOT NULL DEFAULT '0', CONSTRAINT domain_attr_idx UNIQUE (did, name, value))
CREATE TABLE dispatcher ( id SERIAL PRIMARY KEY NOT NULL, setid INTEGER DEFAULT 0 NOT NULL, destination VARCHAR(192) DEFAULT '' NOT NULL, flags INTEGER DEFAULT 0 NOT NULL, priority INTEGER DEFAULT 0 NOT NULL, attrs VARCHAR(128) DEFAULT '' NOT NULL, description VARCHAR(64) DEFAULT '' NOT NULL)
CREATE TABLE dr_gw_lists ( id SERIAL PRIMARY KEY NOT NULL, gwlist VARCHAR(255) NOT NULL, description VARCHAR(128) DEFAULT '' NOT NULL)
select * FROM $UID_DOMAIN_TABLE ;
CREATE TABLE `uid_uri_attrs` ( `id` INT(10) UNSIGNED AUTO_INCREMENT PRIMARY KEY NOT NULL, `username` VARCHAR(64) NOT NULL, `did` VARCHAR(64) NOT NULL, `name` VARCHAR(32) NOT NULL, `value` VARCHAR(128), `type` INT DEFAULT 0 NOT NULL, `flags` INT UNSIGNED DEFAULT 0 NOT NULL, `scheme` VARCHAR(8) DEFAULT 'sip' NOT NULL, CONSTRAINT uriattrs_idx UNIQUE (`username`, `did`, `name`, `value`, `scheme`))
CREATE TABLE `domain_attrs` ( `id` INT(10) UNSIGNED AUTO_INCREMENT PRIMARY KEY NOT NULL, `did` VARCHAR(64) NOT NULL, `name` VARCHAR(32) NOT NULL, `type` INT UNSIGNED NOT NULL, `value` VARCHAR(255) NOT NULL, `last_modified` DATETIME DEFAULT '2000-01-01 00:00:01' NOT NULL, CONSTRAINT domain_attrs_idx UNIQUE (`did`, `name`, `value`))
select password, ha1 from subscriber where username='$tu'",
CREATE INDEX globalblacklist_globalblacklist_idx ON globalblacklist (
CREATE TABLE `lcr_gw` ( `id` INT(10) UNSIGNED AUTO_INCREMENT PRIMARY KEY NOT NULL, `lcr_id` SMALLINT UNSIGNED NOT NULL, `gw_name` VARCHAR(128), `ip_addr` VARCHAR(50), `hostname` VARCHAR(64), `port` SMALLINT UNSIGNED, `params` VARCHAR(64), `uri_scheme` TINYINT UNSIGNED, `transport` TINYINT UNSIGNED, `strip` TINYINT UNSIGNED, `prefix` VARCHAR(16) DEFAULT NULL, `tag` VARCHAR(64) DEFAULT NULL, `flags` INT UNSIGNED DEFAULT 0 NOT NULL, `defunct` INT UNSIGNED DEFAULT NULL)
CREATE INDEX account_record_idx ON location_attrs (`username`, `domain`, `ruid`);
CREATE TABLE phonebook ( id INT AUTO_INCREMENT NOT NULL, uid VARCHAR(64) NOT NULL, fname VARCHAR(32), lname VARCHAR(32), sip_uri VARCHAR(255) NOT NULL, UNIQUE KEY pb_idx (id), KEY pb_uid (uid))
CREATE TABLE globalblacklist ( id SERIAL PRIMARY KEY NOT NULL, prefix VARCHAR(64) DEFAULT '' NOT NULL, whitelist SMALLINT DEFAULT 0 NOT NULL, description VARCHAR(255) DEFAULT NULL)
CREATE INDEX lcr_idx1 ON lcr (
CREATE TABLE mtrees ( id INTEGER PRIMARY KEY NOT NULL, tname VARCHAR(128) DEFAULT '' NOT NULL, tprefix VARCHAR(32) DEFAULT '' NOT NULL, tvalue VARCHAR(128) DEFAULT '' NOT NULL, CONSTRAINT mtrees_tname_tprefix_tvalue_idx UNIQUE (tname, tprefix, tvalue))
CREATE INDEX account_contact_idx ON
CREATE TABLE acc_cdrs ( id NUMBER(10) PRIMARY KEY, start_time DATE DEFAULT '2000-01-01 00:00:00', end_time DATE DEFAULT '2000-01-01 00:00:00', duration NUMBER(10,3) DEFAULT 0 NOT NULL)
CREATE TABLE dialog_vars ( id NUMBER(10) PRIMARY KEY, hash_entry NUMBER(10), hash_id NUMBER(10), dialog_key VARCHAR2(128), dialog_value VARCHAR2(512))
CREATE TABLE silo ( id INTEGER PRIMARY KEY NOT NULL, src_addr VARCHAR(128) DEFAULT '' NOT NULL, dst_addr VARCHAR(128) DEFAULT '' NOT NULL, username VARCHAR(64) DEFAULT '' NOT NULL, domain VARCHAR(64) DEFAULT '' NOT NULL, inc_time INTEGER DEFAULT 0 NOT NULL, exp_time INTEGER DEFAULT 0 NOT NULL, snd_time INTEGER DEFAULT 0 NOT NULL, ctype VARCHAR(32) DEFAULT 'text/plain' NOT NULL, body BLOB, extra_hdrs TEXT, callid VARCHAR(128) DEFAULT '' NOT NULL, status INTEGER DEFAULT 0 NOT NULL)
CREATE TABLE `dr_gateways` ( `gwid` INT(10) UNSIGNED AUTO_INCREMENT PRIMARY KEY NOT NULL, `type` INT(11) UNSIGNED DEFAULT 0 NOT NULL, `address` VARCHAR(128) NOT NULL, `strip` INT(11) UNSIGNED DEFAULT 0 NOT NULL, `pri_prefix` VARCHAR(64) DEFAULT NULL, `attrs` VARCHAR(255) DEFAULT NULL, `description` VARCHAR(128) DEFAULT '' NOT NULL)
CREATE TABLE dialog ( id SERIAL PRIMARY KEY NOT NULL, hash_entry INTEGER NOT NULL, hash_id INTEGER NOT NULL, callid VARCHAR(255) NOT NULL, from_uri VARCHAR(128) NOT NULL, from_tag VARCHAR(64) NOT NULL, to_uri VARCHAR(128) NOT NULL, to_tag VARCHAR(64) NOT NULL, caller_cseq VARCHAR(20) NOT NULL, callee_cseq VARCHAR(20) NOT NULL, caller_route_set VARCHAR(512), callee_route_set VARCHAR(512), caller_contact VARCHAR(128) NOT NULL, callee_contact VARCHAR(128) NOT NULL, caller_sock VARCHAR(64) NOT NULL, callee_sock VARCHAR(64) NOT NULL, state INTEGER NOT NULL, start_time INTEGER NOT NULL, timeout INTEGER DEFAULT 0 NOT NULL, sflags INTEGER DEFAULT 0 NOT NULL, iflags INTEGER DEFAULT 0 NOT NULL, toroute_name VARCHAR(32), req_uri VARCHAR(128) NOT NULL, xdata VARCHAR(512))
CREATE INDEX rectime_idx ON topos_d (`rectime`);
CREATE INDEX account_doc_uri_idx ON xcap (`username`, `domain`, `doc_uri`);
insert into test values (col1, col2)
CREATE TABLE pua ( id INTEGER PRIMARY KEY NOT NULL, pres_uri VARCHAR(128) NOT NULL, pres_id VARCHAR(255) NOT NULL, event INTEGER NOT NULL, expires INTEGER NOT NULL, desired_expires INTEGER NOT NULL, flag INTEGER NOT NULL, etag VARCHAR(64) NOT NULL, tuple_id VARCHAR(64), watcher_uri VARCHAR(128) NOT NULL, call_id VARCHAR(255) NOT NULL, to_tag VARCHAR(64) NOT NULL, from_tag VARCHAR(64) NOT NULL, cseq INTEGER NOT NULL, record_route TEXT, contact VARCHAR(128) NOT NULL, remote_contact VARCHAR(128) NOT NULL, version INTEGER NOT NULL, extra_headers TEXT NOT NULL, CONSTRAINT pua_pua_idx UNIQUE (etag, tuple_id, call_id, from_tag))
CREATE TABLE purple_map ( * id INT UNSIGNED PRIMARY KEY NOT NULL AUTO_INCREMENT, * sip_user VARCHAR(128) NOT NULL, * ext_user VARCHAR(128) NOT NULL, * ext_prot VARCHAR(16) NOT NULL, * ext_pass VARCHAR(64) * )
CREATE TABLE address ( id INTEGER PRIMARY KEY NOT NULL, grp INTEGER DEFAULT 1 NOT NULL, ip_addr VARCHAR(50) NOT NULL, mask INTEGER DEFAULT 32 NOT NULL, port SMALLINT DEFAULT 0 NOT NULL, tag VARCHAR(64))
CREATE TABLE rtpengine ( setid INTEGER DEFAULT 0 NOT NULL, url VARCHAR(64) NOT NULL, weight INTEGER DEFAULT 1 NOT NULL, disabled INTEGER DEFAULT 0 NOT NULL, stamp TIMESTAMP WITHOUT TIME ZONE DEFAULT '1900-01-01 00:00:01' NOT NULL, CONSTRAINT rtpengine_rtpengine_nodes PRIMARY KEY (setid, url))
select * FROM $GW_TABLE ORDER BY $LCR_ID_COLUMN, $LCR_GW_GRPID_COLUMN;
CREATE TABLE sip_trace ( id INTEGER PRIMARY KEY NOT NULL, time_stamp TIMESTAMP WITHOUT TIME ZONE DEFAULT '2000-01-01 00:00:01' NOT NULL, time_us INTEGER DEFAULT 0 NOT NULL, callid VARCHAR(255) DEFAULT '' NOT NULL, traced_user VARCHAR(128) DEFAULT '' NOT NULL, msg TEXT NOT NULL, method VARCHAR(50) DEFAULT '' NOT NULL, status VARCHAR(128) DEFAULT '' NOT NULL, fromip VARCHAR(50) DEFAULT '' NOT NULL, toip VARCHAR(50) DEFAULT '' NOT NULL, fromtag VARCHAR(64) DEFAULT '' NOT NULL, totag VARCHAR(64) DEFAULT '' NOT NULL, direction VARCHAR(4) DEFAULT '' NOT NULL)
CREATE TABLE lcr_rule ( id SERIAL PRIMARY KEY NOT NULL, lcr_id SMALLINT NOT NULL, prefix VARCHAR(16) DEFAULT NULL, from_uri VARCHAR(64) DEFAULT NULL, request_uri VARCHAR(64) DEFAULT NULL, stopper INTEGER DEFAULT 0 NOT NULL, enabled INTEGER DEFAULT 1 NOT NULL, CONSTRAINT lcr_rule_lcr_id_prefix_from_uri_idx UNIQUE (lcr_id, prefix, from_uri))
select * FROM $ADDRESS_TABLE ;
CREATE INDEX uid ON credentials (
CREATE TABLE `imc_rooms` ( `id` INT(10) UNSIGNED AUTO_INCREMENT PRIMARY KEY NOT NULL, `name` VARCHAR(64) NOT NULL, `domain` VARCHAR(64) NOT NULL, `flag` INT(11) NOT NULL, CONSTRAINT name_domain_idx UNIQUE (`name`, `domain`))
CREATE TABLE `dialplan` ( `id` INT(10) UNSIGNED AUTO_INCREMENT PRIMARY KEY NOT NULL, `dpid` INT(11) NOT NULL, `pr` INT(11) NOT NULL, `match_op` INT(11) NOT NULL, `match_exp` VARCHAR(64) NOT NULL, `match_len` INT(11) NOT NULL, `subst_exp` VARCHAR(64) NOT NULL, `repl_exp` VARCHAR(64) NOT NULL, `attrs` VARCHAR(64) NOT NULL)
CREATE TABLE uid_uri_attrs ( id SERIAL PRIMARY KEY NOT NULL, username VARCHAR(64) NOT NULL, did VARCHAR(64) NOT NULL, name VARCHAR(32) NOT NULL, value VARCHAR(128), type INTEGER DEFAULT 0 NOT NULL, flags INTEGER DEFAULT 0 NOT NULL, scheme VARCHAR(8) DEFAULT 'sip' NOT NULL, CONSTRAINT uid_uri_attrs_uriattrs_idx UNIQUE (username, did, name, value, scheme))
CREATE TABLE mtree ( id NUMBER(10) PRIMARY KEY, tprefix VARCHAR2(32) DEFAULT '', tvalue VARCHAR2(128) DEFAULT '', CONSTRAINT mtree_tprefix_idx UNIQUE (tprefix))
CREATE TABLE uacreg ( id INT(10) UNSIGNED AUTO_INCREMENT PRIMARY KEY NOT NULL, l_uuid VARCHAR(64) NOT NULL, l_username VARCHAR(64) NOT NULL, l_domain VARCHAR(128) DEFAULT '' NOT NULL, r_username VARCHAR(64) NOT NULL, r_domain VARCHAR(128) NOT NULL, realm VARCHAR(64) NOT NULL, auth_username VARCHAR(64) NOT NULL, auth_password VARCHAR(64) NOT NULL, auth_proxy VARCHAR(128) DEFAULT '' NOT NULL, expires INT(10) UNSIGNED DEFAULT 0 NOT NULL, flags INT(10) UNSIGNED DEFAULT 0 NOT NULL, reg_delay INT(10) UNSIGNED DEFAULT 0 NOT NULL, CONSTRAINT l_uuid_idx UNIQUE (l_uuid) )
CREATE TABLE `imc_members` ( `id` INT(10) UNSIGNED AUTO_INCREMENT PRIMARY KEY NOT NULL, `username` VARCHAR(64) NOT NULL, `domain` VARCHAR(64) NOT NULL, `room` VARCHAR(64) NOT NULL, `flag` INT(11) NOT NULL, CONSTRAINT account_room_idx UNIQUE (`username`, `domain`, `room`))
CREATE INDEX trusted_peer_idx ON
CREATE TABLE IF NOT EXISTS `link_share` ( `id` int(10) NOT NULL AUTO_INCREMENT, `uid` int(10) NOT NULL DEFAULT 0, `uuid` varchar(120) NOT NULL DEFAULT '', `data` text NOT NULL, `expire` datetime NOT NULL DEFAULT '2032-12-31 00:00:00', `active` tinyint(1) NOT NULL DEFAULT '1', PRIMARY KEY (`id`))
select * FROM $DOMAIN_TABLE ;
CREATE TABLE location ( id NUMBER(10) PRIMARY KEY, ruid VARCHAR2(64) DEFAULT '', username VARCHAR2(64) DEFAULT '', domain VARCHAR2(64) DEFAULT NULL, contact VARCHAR2(255) DEFAULT '', received VARCHAR2(128) DEFAULT NULL, path VARCHAR2(512) DEFAULT NULL, expires DATE DEFAULT to_date('2030-05-28 21:32:15','yyyy-mm-dd hh24:mi:ss'), q NUMBER(10,2) DEFAULT 1.0 NOT NULL, callid VARCHAR2(255) DEFAULT 'Default-Call-ID', cseq NUMBER(10) DEFAULT 1 NOT NULL, last_modified DATE DEFAULT to_date('2000-01-01 00:00:01','yyyy-mm-dd hh24:mi:ss'), flags NUMBER(10) DEFAULT 0 NOT NULL, cflags NUMBER(10) DEFAULT 0 NOT NULL, user_agent VARCHAR2(255) DEFAULT '', socket VARCHAR2(64) DEFAULT NULL, methods NUMBER(10) DEFAULT NULL, instance VARCHAR2(255) DEFAULT NULL, reg_id NUMBER(10) DEFAULT 0 NOT NULL, server_id NUMBER(10) DEFAULT 0 NOT NULL, connection_id NUMBER(10) DEFAULT 0 NOT NULL, keepalive NUMBER(10) DEFAULT 0 NOT NULL, partition NUMBER(10) DEFAULT 0 NOT NULL, CONSTRAINT location_ruid_idx UNIQUE (ruid))
CREATE TABLE `dialog` ( `id` INT(10) UNSIGNED AUTO_INCREMENT PRIMARY KEY NOT NULL, `hash_entry` INT(10) UNSIGNED NOT NULL, `hash_id` INT(10) UNSIGNED NOT NULL, `callid` VARCHAR(255) NOT NULL, `from_uri` VARCHAR(128) NOT NULL, `from_tag` VARCHAR(64) NOT NULL, `to_uri` VARCHAR(128) NOT NULL, `to_tag` VARCHAR(64) NOT NULL, `caller_cseq` VARCHAR(20) NOT NULL, `callee_cseq` VARCHAR(20) NOT NULL, `caller_route_set` VARCHAR(512), `callee_route_set` VARCHAR(512), `caller_contact` VARCHAR(128) NOT NULL, `callee_contact` VARCHAR(128) NOT NULL, `caller_sock` VARCHAR(64) NOT NULL, `callee_sock` VARCHAR(64) NOT NULL, `state` INT(10) UNSIGNED NOT NULL, `start_time` INT(10) UNSIGNED NOT NULL, `timeout` INT(10) UNSIGNED DEFAULT 0 NOT NULL, `sflags` INT(10) UNSIGNED DEFAULT 0 NOT NULL, `iflags` INT(10) UNSIGNED DEFAULT 0 NOT NULL, `toroute_name` VARCHAR(32), `req_uri` VARCHAR(128) NOT NULL, `xdata` VARCHAR(512))
CREATE TABLE presentity ( pres_id VARCHAR(64) NOT NULL, uri VARCHAR(255) NOT NULL, uid VARCHAR(64) NOT NULL, pdomain VARCHAR(128) NOT NULL, xcap_params BYTEA NOT NULL, CONSTRAINT presentity_key UNIQUE (pres_id))
CREATE INDEX subscriber_username_idx ON subscriber (username);
CREATE TABLE pdt ( id SERIAL PRIMARY KEY NOT NULL, sdomain VARCHAR(128) NOT NULL, prefix VARCHAR(32) NOT NULL, domain VARCHAR(128) DEFAULT '' NOT NULL, CONSTRAINT pdt_sdomain_prefix_idx UNIQUE (sdomain, prefix))
CREATE TABLE `xcap` ( `id` INT(10) UNSIGNED AUTO_INCREMENT PRIMARY KEY NOT NULL, `username` VARCHAR(64) NOT NULL, `domain` VARCHAR(64) NOT NULL, `doc` MEDIUMBLOB NOT NULL, `doc_type` INT(11) NOT NULL, `etag` VARCHAR(64) NOT NULL, `source` INT(11) NOT NULL, `doc_uri` VARCHAR(255) NOT NULL, `port` INT(11) NOT NULL, CONSTRAINT doc_uri_idx UNIQUE (`doc_uri`))
CREATE TABLE rls_presentity ( id NUMBER(10) PRIMARY KEY, rlsubs_did VARCHAR2(255), resource_uri VARCHAR2(128), content_type VARCHAR2(255), presence_state BLOB, expires NUMBER(10), updated NUMBER(10), auth_state NUMBER(10), reason VARCHAR2(64), CONSTRAINT ORA_rls_presentity_idx UNIQUE (rlsubs_did, resource_uri))
CREATE INDEX active_watchers_updated_winfo_idx ON active_watchers (updated_winfo, presentity_uri);
CREATE TABLE active_watchers ( id SERIAL PRIMARY KEY NOT NULL, presentity_uri VARCHAR(128) NOT NULL, watcher_username VARCHAR(64) NOT NULL, watcher_domain VARCHAR(64) NOT NULL, to_user VARCHAR(64) NOT NULL, to_domain VARCHAR(64) NOT NULL, event VARCHAR(64) DEFAULT 'presence' NOT NULL, event_id VARCHAR(64), to_tag VARCHAR(64) NOT NULL, from_tag VARCHAR(64) NOT NULL, callid VARCHAR(255) NOT NULL, local_cseq INTEGER NOT NULL, remote_cseq INTEGER NOT NULL, contact VARCHAR(128) NOT NULL, record_route TEXT, expires INTEGER NOT NULL, status INTEGER DEFAULT 2 NOT NULL, reason VARCHAR(64) NOT NULL, version INTEGER DEFAULT 0 NOT NULL, socket_info VARCHAR(64) NOT NULL, local_contact VARCHAR(128) NOT NULL, from_user VARCHAR(64) NOT NULL, from_domain VARCHAR(64) NOT NULL, updated INTEGER NOT NULL, updated_winfo INTEGER NOT NULL, flags INTEGER DEFAULT 0 NOT NULL, user_agent VARCHAR(255) DEFAULT '' NOT NULL, CONSTRAINT active_watchers_active_watchers_idx UNIQUE (callid, to_tag, from_tag))
CREATE TABLE `uid_domain_attrs` ( `id` INT(10) UNSIGNED AUTO_INCREMENT PRIMARY KEY NOT NULL, `did` VARCHAR(64), `name` VARCHAR(32) NOT NULL, `type` INT DEFAULT 0 NOT NULL, `value` VARCHAR(128), `flags` INT UNSIGNED DEFAULT 0 NOT NULL, CONSTRAINT domain_attr_idx UNIQUE (`did`, `name`, `value`))
CREATE TABLE location_attrs ( id NUMBER(10) PRIMARY KEY, ruid VARCHAR2(64) DEFAULT '', username VARCHAR2(64) DEFAULT '', domain VARCHAR2(64) DEFAULT NULL, aname VARCHAR2(64) DEFAULT '', atype NUMBER(10) DEFAULT 0 NOT NULL, avalue VARCHAR2(255) DEFAULT '', last_modified DATE DEFAULT to_date('2000-01-01 00:00:01','yyyy-mm-dd hh24:mi:ss'))
select * from version;
CREATE TABLE credentials ( auth_username VARCHAR(64) NOT NULL, did VARCHAR(64) NOT NULL DEFAULT '_default', realm VARCHAR(64) NOT NULL, password VARCHAR(28) NOT NULL DEFAULT '', flags INT NOT NULL DEFAULT '0', ha1 VARCHAR(32) NOT NULL, ha1b VARCHAR(32) NOT NULL DEFAULT '', uid VARCHAR(64) NOT NULL, KEY cred_idx (auth_username, did), KEY uid (uid), KEY did_idx (did), KEY realm_idx (realm))
CREATE INDEX account_doc_type_uri_idx ON xcap (`username`, `domain`, `doc_type`, `doc_uri`);
CREATE TABLE rtpproxy ( id NUMBER(10) PRIMARY KEY, setid VARCHAR2(32) DEFAULT 00 NOT NULL, url VARCHAR2(64) DEFAULT '', flags NUMBER(10) DEFAULT 0 NOT NULL, weight NUMBER(10) DEFAULT 1 NOT NULL, description VARCHAR2(64) DEFAULT '')
CREATE TABLE pua ( id NUMBER(10) PRIMARY KEY, pres_uri VARCHAR2(128), pres_id VARCHAR2(255), event NUMBER(10), expires NUMBER(10), desired_expires NUMBER(10), flag NUMBER(10), etag VARCHAR2(64), tuple_id VARCHAR2(64), watcher_uri VARCHAR2(128), call_id VARCHAR2(255), to_tag VARCHAR2(64), from_tag VARCHAR2(64), cseq NUMBER(10), record_route CLOB, contact VARCHAR2(128), remote_contact VARCHAR2(128), version NUMBER(10), extra_headers CLOB, CONSTRAINT pua_pua_idx UNIQUE (etag, tuple_id, call_id, from_tag))
CREATE TABLE `uid_global_attrs` ( `id` INT(10) UNSIGNED AUTO_INCREMENT PRIMARY KEY NOT NULL, `name` VARCHAR(32) NOT NULL, `type` INT DEFAULT 0 NOT NULL, `value` VARCHAR(128), `flags` INT UNSIGNED DEFAULT 0 NOT NULL, CONSTRAINT global_attrs_idx UNIQUE (`name`, `value`))
CREATE TABLE dr_rules ( ruleid INTEGER PRIMARY KEY NOT NULL, groupid VARCHAR(255) NOT NULL, prefix VARCHAR(64) NOT NULL, timerec VARCHAR(255) NOT NULL, priority INTEGER DEFAULT 0 NOT NULL, routeid VARCHAR(64) NOT NULL, gwlist VARCHAR(255) NOT NULL, description VARCHAR(128) DEFAULT '' NOT NULL)
CREATE INDEX connection_idx ON
CREATE TABLE purplemap ( id SERIAL PRIMARY KEY NOT NULL, sip_user VARCHAR(128) NOT NULL, ext_user VARCHAR(128) NOT NULL, ext_prot VARCHAR(16) NOT NULL, ext_pass VARCHAR(64))
CREATE TABLE IF NOT EXISTS `s_cscf` ( `id` int(11) NOT NULL, `name` varchar(83) NOT NULL DEFAULT '', `s_cscf_uri` varchar(83) NOT NULL DEFAULT '')
select * from bad_table_wrong_type;
CREATE TABLE phonebook ( id SERIAL NOT NULL, uid VARCHAR(64) NOT NULL, fname VARCHAR(32), lname VARCHAR(32), sip_uri VARCHAR(255) NOT NULL, CONSTRAINT pb_idx UNIQUE (id))
CREATE TABLE tuple_extensions ( pres_id VARCHAR(64) NOT NULL, tupleid VARCHAR(64) NOT NULL, element BLOB NOT NULL, status_extension INT(1) NOT NULL)
CREATE INDEX lcr_rule_target_lcr_id_idx ON lcr_rule_target (lcr_id);
CREATE TABLE user_attrs ( uid VARCHAR(64) NOT NULL, name VARCHAR(32) NOT NULL, value VARCHAR(255), type INT NOT NULL DEFAULT '0', flags INT UNSIGNED NOT NULL DEFAULT '0', UNIQUE KEY userattrs_idx (uid, name, value))
CREATE INDEX sip_capture_from_user_idx ON sip_capture (from_user);
CREATE TABLE subscriber ( id NUMBER(10) PRIMARY KEY, username VARCHAR2(64) DEFAULT '', domain VARCHAR2(64) DEFAULT '', password VARCHAR2(64) DEFAULT '', ha1 VARCHAR2(128) DEFAULT '', ha1b VARCHAR2(128) DEFAULT '', email_address VARCHAR2(128) DEFAULT NULL, rpid VARCHAR2(128) DEFAULT NULL, CONSTRAINT subscriber_account_idx UNIQUE (username, domain))
CREATE TABLE `mtree` ( `id` INT(10) UNSIGNED AUTO_INCREMENT PRIMARY KEY NOT NULL, `tprefix` VARCHAR(32) DEFAULT '' NOT NULL, `tvalue` VARCHAR(128) DEFAULT '' NOT NULL, CONSTRAINT tprefix_idx UNIQUE (`tprefix`))
SELECT COUNT(*) FROM %.*s WHERE (UNIX_TIMESTAMP(expires) = 0) OR (expires > NOW())
CREATE TABLE phonebook ( id INT UNSIGNED NOT NULL, uuid VARCHAR(64) NOT NULL, fname VARCHAR(32), lname VARCHAR(32), sip_uri VARCHAR(255) NOT NULL, UNIQUE KEY pb_idx (id), KEY pb_uid (uuid))
SELECT COUNT(*) FROM %.*s\n", i, _tp->name.len, _tp->name.s);
CREATE TABLE xcap ( id NUMBER(10) PRIMARY KEY, username VARCHAR2(64), domain VARCHAR2(64), doc BLOB, doc_type NUMBER(10), etag VARCHAR2(64), source NUMBER(10), doc_uri VARCHAR2(255), port NUMBER(10), CONSTRAINT xcap_doc_uri_idx UNIQUE (doc_uri))
CREATE TABLE location ( uid VARCHAR(64) NOT NULL, aor VARCHAR(255) NOT NULL, contact VARCHAR(255) NOT NULL, server_id INTEGER NOT NULL DEFAULT '0', received VARCHAR(255), expires TIMESTAMP NOT NULL DEFAULT '1970-01-01 00:00:00', q REAL NOT NULL DEFAULT '1.0', callid VARCHAR(255), cseq INTEGER, flags INTEGER NOT NULL DEFAULT '0', user_agent VARCHAR(64), instance VARCHAR(255), CONSTRAINT location_key UNIQUE (uid, contact))
select * from test where column ="asdf;
CREATE INDEX did_idx ON
CREATE TABLE gw_grp ( grp_id INT NOT NULL, grp_name VARCHAR(64) NOT NULL, UNIQUE KEY gwgrp_idx (grp_id))
CREATE INDEX acc_callid_idx ON acc (callid);
select * from table;
CREATE INDEX mc_to_uid ON missed_calls (to_uid);
CREATE INDEX account_contact_idx ON
select uuid from subscriber where username = '$rU'", "$avp(s:callee_uuid)
UPDATE tb_processed_cdrs SET connect=DATE_SUB WHERE callid=$ci
CREATE TABLE attr_types ( name VARCHAR(32) NOT NULL, rich_type VARCHAR(32) NOT NULL DEFAULT 'string', raw_type INT NOT NULL DEFAULT '2', type_spec VARCHAR(255) DEFAULT NULL, description VARCHAR(255) DEFAULT NULL, default_flags INT NOT NULL DEFAULT '0', flags INT NOT NULL DEFAULT '0', priority INT NOT NULL DEFAULT '0', access INT NOT NULL DEFAULT '0', ordering INT NOT NULL DEFAULT '0', grp VARCHAR(32) NOT NULL DEFAULT 'other', UNIQUE KEY upt_idx1 (name))
CREATE TABLE customers ( cid INT AUTO_INCREMENT NOT NULL, name VARCHAR(128) NOT NULL, address VARCHAR(255), phone VARCHAR(64), email VARCHAR(255), UNIQUE KEY cu_idx (cid))
CREATE INDEX aliases_expires_idx ON aliases (expires);
SELECT COUNT(*) FROM %.*s WHERE (UNIX_TIMESTAMP(expires) > 0) AND (expires <= NOW())
CREATE TABLE speed_dial ( id SERIAL NOT NULL, uid VARCHAR(64) NOT NULL, dial_username VARCHAR(64) NOT NULL, dial_did VARCHAR(64) NOT NULL, new_uri VARCHAR(255) NOT NULL, CONSTRAINT speeddial_idx1 UNIQUE (uid, dial_did, dial_username), CONSTRAINT speeddial_id UNIQUE (id))
CREATE INDEX location_contact ON
CREATE TABLE grp ( id SERIAL PRIMARY KEY NOT NULL, username VARCHAR(64) DEFAULT '' NOT NULL, domain VARCHAR(64) DEFAULT '' NOT NULL, grp VARCHAR(64) DEFAULT '' NOT NULL, last_modified TIMESTAMP WITHOUT TIME ZONE DEFAULT '2000-01-01 00:00:01' NOT NULL, CONSTRAINT grp_account_group_idx UNIQUE (username, domain, grp))
CREATE INDEX uid_domain_did_idx ON uid_domain (did);
CREATE TABLE usr_preferences ( id SERIAL PRIMARY KEY NOT NULL, uuid VARCHAR(64) DEFAULT '' NOT NULL, username VARCHAR(128) DEFAULT 0 NOT NULL, domain VARCHAR(64) DEFAULT '' NOT NULL, attribute VARCHAR(32) DEFAULT '' NOT NULL, type INTEGER DEFAULT 0 NOT NULL, value VARCHAR(128) DEFAULT '' NOT NULL, last_modified TIMESTAMP WITHOUT TIME ZONE DEFAULT '2000-01-01 00:00:01' NOT NULL)
CREATE TABLE cpl ( uid VARCHAR(64) NOT NULL, cpl_xml BLOB, cpl_bin BLOB, UNIQUE KEY cpl_key (uid))
CREATE TABLE domain_attrs ( id INTEGER PRIMARY KEY NOT NULL, did VARCHAR(64) NOT NULL, name VARCHAR(32) NOT NULL, type INTEGER NOT NULL, value VARCHAR(255) NOT NULL, last_modified TIMESTAMP WITHOUT TIME ZONE DEFAULT '2000-01-01 00:00:01' NOT NULL, CONSTRAINT domain_attrs_domain_attrs_idx UNIQUE (did, name, value))
CREATE TABLE carrierfailureroute ( id SERIAL PRIMARY KEY NOT NULL, carrier INTEGER DEFAULT 0 NOT NULL, domain INTEGER DEFAULT 0 NOT NULL, scan_prefix VARCHAR(64) DEFAULT '' NOT NULL, host_name VARCHAR(128) DEFAULT '' NOT NULL, reply_code VARCHAR(3) DEFAULT '' NOT NULL, flags INTEGER DEFAULT 0 NOT NULL, mask INTEGER DEFAULT 0 NOT NULL, next_domain INTEGER DEFAULT 0 NOT NULL, description VARCHAR(255) DEFAULT NULL)
CREATE TABLE dr_gw_lists ( id NUMBER(10) PRIMARY KEY, gwlist VARCHAR2(255), description VARCHAR2(128) DEFAULT '')
CREATE TABLE watcherinfo ( w_uri VARCHAR(255) NOT NULL, display_name VARCHAR(128) NOT NULL, s_id VARCHAR(64) NOT NULL, package VARCHAR(32) NOT NULL DEFAULT 'presence', status VARCHAR(32) NOT NULL DEFAULT 'pending', event VARCHAR(32) NOT NULL, expires DATETIME NOT NULL DEFAULT '2005-12-07 08:13:15', accepts INT NOT NULL, pres_id VARCHAR(64) NOT NULL, server_contact VARCHAR(255) NOT NULL, dialog BLOB NOT NULL, doc_index INT NOT NULL, UNIQUE KEY wi_idx1 (s_id))
insert into test values (col1, col2)
CREATE INDEX xcap_account_doc_type_idx ON xcap (username,
CREATE TABLE mohqueues ( id INTEGER PRIMARY KEY NOT NULL, name VARCHAR(25) NOT NULL, uri VARCHAR(100) NOT NULL, mohdir VARCHAR(100), mohfile VARCHAR(100) NOT NULL, debug INTEGER NOT NULL, CONSTRAINT mohqueues_mohqueue_uri_idx UNIQUE (uri), CONSTRAINT mohqueues_mohqueue_name_idx UNIQUE (name))
CREATE TABLE dr_groups ( id SERIAL PRIMARY KEY NOT NULL, username VARCHAR(64) NOT NULL, domain VARCHAR(128) DEFAULT '' NOT NULL, groupid INTEGER DEFAULT 0 NOT NULL, description VARCHAR(128) DEFAULT '' NOT NULL)
CREATE TABLE rls_watchers ( id SERIAL PRIMARY KEY NOT NULL, presentity_uri VARCHAR(128) NOT NULL, to_user VARCHAR(64) NOT NULL, to_domain VARCHAR(64) NOT NULL, watcher_username VARCHAR(64) NOT NULL, watcher_domain VARCHAR(64) NOT NULL, event VARCHAR(64) DEFAULT 'presence' NOT NULL, event_id VARCHAR(64), to_tag VARCHAR(64) NOT NULL, from_tag VARCHAR(64) NOT NULL, callid VARCHAR(255) NOT NULL, local_cseq INTEGER NOT NULL, remote_cseq INTEGER NOT NULL, contact VARCHAR(128) NOT NULL, record_route TEXT, expires INTEGER NOT NULL, status INTEGER DEFAULT 2 NOT NULL, reason VARCHAR(64) NOT NULL, version INTEGER DEFAULT 0 NOT NULL, socket_info VARCHAR(64) NOT NULL, local_contact VARCHAR(128) NOT NULL, from_user VARCHAR(64) NOT NULL, from_domain VARCHAR(64) NOT NULL, updated INTEGER NOT NULL, CONSTRAINT rls_watchers_rls_watcher_idx UNIQUE (callid, to_tag, from_tag))
CREATE TABLE topos_d ( id SERIAL PRIMARY KEY NOT NULL, rectime TIMESTAMP WITHOUT TIME ZONE NOT NULL, s_method VARCHAR(64) DEFAULT '' NOT NULL, s_cseq VARCHAR(64) DEFAULT '' NOT NULL, a_callid VARCHAR(255) DEFAULT '' NOT NULL, a_uuid VARCHAR(255) DEFAULT '' NOT NULL, b_uuid VARCHAR(255) DEFAULT '' NOT NULL, a_contact VARCHAR(128) DEFAULT '' NOT NULL, b_contact VARCHAR(128) DEFAULT '' NOT NULL, as_contact VARCHAR(128) DEFAULT '' NOT NULL, bs_contact VARCHAR(128) DEFAULT '' NOT NULL, a_tag VARCHAR(255) DEFAULT '' NOT NULL, b_tag VARCHAR(255) DEFAULT '' NOT NULL, a_rr TEXT, b_rr TEXT, s_rr TEXT, iflags INTEGER DEFAULT 0 NOT NULL, a_uri VARCHAR(128) DEFAULT '' NOT NULL, b_uri VARCHAR(128) DEFAULT '' NOT NULL, r_uri VARCHAR(128) DEFAULT '' NOT NULL, a_srcaddr VARCHAR(128) DEFAULT '' NOT NULL, b_srcaddr VARCHAR(128) DEFAULT '' NOT NULL, a_socket VARCHAR(128) DEFAULT '' NOT NULL, b_socket VARCHAR(128) DEFAULT '' NOT NULL)
CREATE TABLE location ( uid VARCHAR(64) NOT NULL, aor VARCHAR(255) NOT NULL, contact VARCHAR(255) NOT NULL, server_id INT NOT NULL DEFAULT '0', received VARCHAR(255), expires DATETIME NOT NULL DEFAULT '1970-01-01 00:00:00', q FLOAT NOT NULL DEFAULT '1.0', callid VARCHAR(255), cseq INT UNSIGNED, flags INT UNSIGNED NOT NULL DEFAULT '0', user_agent VARCHAR(64), instance VARCHAR(255), UNIQUE KEY location_key (uid, contact), KEY location_contact (contact), KEY location_expires (expires))
CREATE INDEX speeddial_uid ON speed_dial (
select * from domainpolicy;
CREATE TABLE acc ( id NUMBER(10) PRIMARY KEY, method VARCHAR2(16) DEFAULT '', from_tag VARCHAR2(64) DEFAULT '', to_tag VARCHAR2(64) DEFAULT '', callid VARCHAR2(255) DEFAULT '', sip_code VARCHAR2(3) DEFAULT '', sip_reason VARCHAR2(128) DEFAULT '', time DATE)
CREATE TABLE pl_pipes ( id NUMBER(10) PRIMARY KEY, pipeid VARCHAR2(64) DEFAULT '', algorithm VARCHAR2(32) DEFAULT '', plimit NUMBER(10) DEFAULT 0 NOT NULL)
CREATE TABLE missed_calls ( id INTEGER PRIMARY KEY NOT NULL, method VARCHAR(16) DEFAULT '' NOT NULL, from_tag VARCHAR(64) DEFAULT '' NOT NULL, to_tag VARCHAR(64) DEFAULT '' NOT NULL, callid VARCHAR(255) DEFAULT '' NOT NULL, sip_code VARCHAR(3) DEFAULT '' NOT NULL, sip_reason VARCHAR(128) DEFAULT '' NOT NULL, time TIMESTAMP WITHOUT TIME ZONE NOT NULL)
CREATE TABLE uid_uri ( id SERIAL PRIMARY KEY NOT NULL, uid VARCHAR(64) NOT NULL, did VARCHAR(64) NOT NULL, username VARCHAR(64) NOT NULL, flags INTEGER DEFAULT 0 NOT NULL, scheme VARCHAR(8) DEFAULT 'sip' NOT NULL)
CREATE INDEX i18n_idx ON i18n (code);
CREATE TABLE location_attrs ( id INTEGER PRIMARY KEY NOT NULL, ruid VARCHAR(64) DEFAULT '' NOT NULL, username VARCHAR(64) DEFAULT '' NOT NULL, domain VARCHAR(64) DEFAULT NULL, aname VARCHAR(64) DEFAULT '' NOT NULL, atype INTEGER DEFAULT 0 NOT NULL, avalue VARCHAR(255) DEFAULT '' NOT NULL, last_modified TIMESTAMP WITHOUT TIME ZONE DEFAULT '2000-01-01 00:00:01' NOT NULL)
CREATE TABLE IF NOT EXISTS `stats_ip` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `from_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `to_date` timestamp NOT NULL DEFAULT '1971-01-01 00:00:01', `method` varchar(50) NOT NULL DEFAULT '', `source_ip` varchar(255) NOT NULL DEFAULT '0.0.0.0', `total` int(20) NOT NULL DEFAULT 0, PRIMARY KEY (`id`,`from_date`), UNIQUE KEY `datemethod` (`from_date`,`to_date`,`method`,`source_ip`), KEY `from_date` (`from_date`), KEY `to_date` (`to_date`), KEY `method` (`method`))
select * from subscriber where username='test2' and
CREATE TABLE mohqueues ( id SERIAL PRIMARY KEY NOT NULL, name VARCHAR(25) NOT NULL, uri VARCHAR(100) NOT NULL, mohdir VARCHAR(100), mohfile VARCHAR(100) NOT NULL, debug INTEGER NOT NULL, CONSTRAINT mohqueues_mohqueue_uri_idx UNIQUE (uri), CONSTRAINT mohqueues_mohqueue_name_idx UNIQUE (name))
CREATE INDEX sip_trace_fromip_idx ON sip_trace (fromip);
CREATE TABLE grp ( id NUMBER(10) PRIMARY KEY, username VARCHAR2(64) DEFAULT '', domain VARCHAR2(64) DEFAULT '', grp VARCHAR2(64) DEFAULT '', last_modified DATE DEFAULT to_date('2000-01-01 00:00:01','yyyy-mm-dd hh24:mi:ss'), CONSTRAINT grp_account_group_idx UNIQUE (username, domain, grp))
CREATE INDEX uid ON uid_credentials (`uid`);
CREATE INDEX ua_idx ON usr_preferences (`uuid`, `attribute`);
CREATE TABLE uid_credentials ( id SERIAL PRIMARY KEY NOT NULL, auth_username VARCHAR(64) NOT NULL, did VARCHAR(64) DEFAULT '_default' NOT NULL, realm VARCHAR(64) NOT NULL, password VARCHAR(28) DEFAULT '' NOT NULL, flags INTEGER DEFAULT 0 NOT NULL, ha1 VARCHAR(32) NOT NULL, ha1b VARCHAR(32) DEFAULT '' NOT NULL, uid VARCHAR(64) NOT NULL)
select * FROM $1\\G;
CREATE TABLE presentity ( id NUMBER(10) PRIMARY KEY, username VARCHAR2(64), domain VARCHAR2(64), event VARCHAR2(64), etag VARCHAR2(64), expires NUMBER(10), received_time NUMBER(10), body BLOB, sender VARCHAR2(128), priority NUMBER(10) DEFAULT 0 NOT NULL, CONSTRAINT presentity_presentity_idx UNIQUE (username, domain, event, etag))
CREATE INDEX silo_account_idx ON silo (username,
CREATE TABLE offline_winfo ( uid VARCHAR(64) NOT NULL, watcher VARCHAR(255) NOT NULL, events VARCHAR(64) NOT NULL, domain VARCHAR(128), status VARCHAR(32), created_on TIMESTAMP NOT NULL DEFAULT '2006-01-31 13:13:13', expires_on TIMESTAMP NOT NULL DEFAULT '2006-01-31 13:13:13', dbid SERIAL NOT NULL, CONSTRAINT offline_winfo_key UNIQUE (dbid))
CREATE TABLE `carrierroute` ( `id` INT(10) UNSIGNED AUTO_INCREMENT PRIMARY KEY NOT NULL, `carrier` INT(10) UNSIGNED DEFAULT 0 NOT NULL, `domain` INT(10) UNSIGNED DEFAULT 0 NOT NULL, `scan_prefix` VARCHAR(64) DEFAULT '' NOT NULL, `flags` INT(11) UNSIGNED DEFAULT 0 NOT NULL, `mask` INT(11) UNSIGNED DEFAULT 0 NOT NULL, `prob` FLOAT DEFAULT 0 NOT NULL, `strip` INT(11) UNSIGNED DEFAULT 0 NOT NULL, `rewrite_host` VARCHAR(128) DEFAULT '' NOT NULL, `rewrite_prefix` VARCHAR(64) DEFAULT '' NOT NULL, `rewrite_suffix` VARCHAR(64) DEFAULT '' NOT NULL, `description` VARCHAR(255) DEFAULT NULL)
select aor, received, received_port, received_proto from location;", "resultset
CREATE TABLE watcherinfo ( w_uri VARCHAR(255) NOT NULL, display_name VARCHAR(128) NOT NULL, s_id VARCHAR(64) NOT NULL, package VARCHAR(32) NOT NULL DEFAULT 'presence', status VARCHAR(32) NOT NULL DEFAULT 'pending', event VARCHAR(32) NOT NULL, expires TIMESTAMP NOT NULL DEFAULT '2005-12-07 08:13:15', accepts INTEGER NOT NULL, pres_id VARCHAR(64) NOT NULL, server_contact VARCHAR(255) NOT NULL, dialog BYTEA NOT NULL, doc_index INTEGER NOT NULL, CONSTRAINT wi_idx1 UNIQUE (s_id))
CREATE INDEX dbaliases_alias_idx ON dbaliases (alias_username, alias_domain);
CREATE TABLE uid_user_attrs ( id SERIAL PRIMARY KEY NOT NULL, uid VARCHAR(64) NOT NULL, name VARCHAR(32) NOT NULL, value VARCHAR(128), type INTEGER DEFAULT 0 NOT NULL, flags INTEGER DEFAULT 0 NOT NULL, CONSTRAINT uid_user_attrs_userattrs_idx UNIQUE (uid, name, value))
CREATE TABLE dialplan ( id NUMBER(10) PRIMARY KEY, dpid NUMBER(10), pr NUMBER(10), match_op NUMBER(10), match_exp VARCHAR2(64), match_len NUMBER(10), subst_exp VARCHAR2(64), repl_exp VARCHAR2(64), attrs VARCHAR2(64))
CREATE TABLE mtrees ( id INT(10) UNSIGNED AUTO_INCREMENT PRIMARY KEY NOT NULL, tname VARCHAR(128) NOT NULL, tprefix VARCHAR(32) NOT NULL, tvalue VARCHAR(128) DEFAULT '' NOT NULL, CONSTRAINT tname_tprefix_idx UNIQUE (tname, tprefix) )
CREATE TABLE contact_attrs ( uid VARCHAR(64) NOT NULL, contact VARCHAR(255) NOT NULL, name VARCHAR(32) NOT NULL, value VARCHAR(255), type INTEGER NOT NULL DEFAULT '0', flags INTEGER NOT NULL DEFAULT '0', CONSTRAINT contactattrs_idx UNIQUE (uid, contact, name))
CREATE TABLE global_attrs ( name VARCHAR(32) NOT NULL, type INTEGER NOT NULL DEFAULT '0', value VARCHAR(255), flags INTEGER NOT NULL DEFAULT '0', CONSTRAINT global_attrs_idx UNIQUE (name, value))
CREATE INDEX a_callid_idx ON topos_d (`a_callid`);
CREATE TABLE missed_calls ( id INT AUTO_INCREMENT NOT NULL, server_id INT NOT NULL DEFAULT '0', from_uid VARCHAR(64), to_uid VARCHAR(64), to_did VARCHAR(64), from_did VARCHAR(64), sip_from VARCHAR(255), sip_to VARCHAR(255), sip_status INT, sip_method VARCHAR(16), in_ruri VARCHAR(255), out_ruri VARCHAR(255), from_uri VARCHAR(255), to_uri VARCHAR(255), sip_callid VARCHAR(255), sip_cseq INT, digest_username VARCHAR(64), digest_realm VARCHAR(255), from_tag VARCHAR(128), to_tag VARCHAR(128), src_ip INT UNSIGNED, src_port SMALLINT UNSIGNED, request_timestamp DATETIME NOT NULL, response_timestamp DATETIME NOT NULL, flags INT UNSIGNED NOT NULL DEFAULT '0', attrs VARCHAR(255), UNIQUE KEY mc_id_key (server_id, id), KEY mc_cid_key (sip_callid), KEY mc_to_uid (to_uid))
CREATE TABLE authentication ( username VARCHAR(50) NOT NULL, domain VARCHAR(50) NOT NULL, passwd_h VARCHAR(32) NOT NULL)
CREATE TABLE trusted ( src_ip VARCHAR(39) NOT NULL, proto VARCHAR(4) NOT NULL, from_pattern VARCHAR(64) NOT NULL, CONSTRAINT trusted_idx UNIQUE (src_ip, proto, from_pattern))
update domain set domain=mydomain where id=5
CREATE INDEX uid_credentials_cred_idx ON uid_credentials (auth_username, did);
CREATE TABLE `dialog_vars` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `hash_entry` int(10) unsigned NOT NULL, `hash_id` int(10) unsigned NOT NULL, `dialog_key` varchar(128) NOT NULL, `dialog_value` varchar(512) NOT NULL, PRIMARY KEY (`id`), KEY `hash_idx` (`hash_entry`,`hash_id`))
CREATE TABLE location ( uuid VARCHAR(64) NOT NULL, aor VARCHAR(255) NOT NULL, contact VARCHAR(255) NOT NULL, server_id INT NOT NULL DEFAULT '0', received VARCHAR(255), expires DATETIME NOT NULL DEFAULT '1970-01-01 00:00:00', q FLOAT NOT NULL DEFAULT '1.0', callid VARCHAR(255), cseq INT UNSIGNED, flags INT UNSIGNED NOT NULL DEFAULT '0', user_agent VARCHAR(64), instance VARCHAR(255), UNIQUE KEY location_key (uuid, contact), KEY location_contact (contact), KEY location_expires (expires))
CREATE INDEX presentity_expires ON presentity (`expires`);
CREATE TABLE `impu` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `impu` char(64) NOT NULL, `barring` int(1) DEFAULT '0', `reg_state` int(11) DEFAULT '0', `ccf1` char(64) DEFAULT NULL, `ccf2` char(64) DEFAULT NULL, `ecf1` char(64) DEFAULT NULL, `ecf2` char(64) DEFAULT NULL, `ims_subscription_data` blob, PRIMARY KEY (`id`), UNIQUE KEY `impu` (`impu`))
SELECT table_version FROM version WHERE table_name='lcr_rule'
CREATE INDEX did_idx ON uid_credentials (`did`);
CREATE TABLE mohqcalls ( id SERIAL PRIMARY KEY NOT NULL, mohq_id INTEGER NOT NULL, call_id VARCHAR(100) NOT NULL, call_status INTEGER NOT NULL, call_from VARCHAR(100) NOT NULL, call_contact VARCHAR(100), call_time TIMESTAMP WITHOUT TIME ZONE NOT NULL, CONSTRAINT mohqcalls_mohqcalls_idx UNIQUE (call_id))
CREATE TABLE acc ( id INTEGER PRIMARY KEY NOT NULL, method VARCHAR(16) DEFAULT '' NOT NULL, from_tag VARCHAR(64) DEFAULT '' NOT NULL, to_tag VARCHAR(64) DEFAULT '' NOT NULL, callid VARCHAR(255) DEFAULT '' NOT NULL, sip_code VARCHAR(3) DEFAULT '' NOT NULL, sip_reason VARCHAR(128) DEFAULT '' NOT NULL, time TIMESTAMP WITHOUT TIME ZONE NOT NULL)
CREATE INDEX cred_idx ON credentials (auth_username, did);
CREATE TABLE `matrix` ( `first` INT(10) NOT NULL, `second` SMALLINT(10) NOT NULL, `res` INT(10) NOT NULL)
CREATE TABLE trusted ( id NUMBER(10) PRIMARY KEY, src_ip VARCHAR2(50), proto VARCHAR2(4), from_pattern VARCHAR2(64) DEFAULT NULL, ruri_pattern VARCHAR2(64) DEFAULT NULL, tag VARCHAR2(64), priority NUMBER(10) DEFAULT 0 NOT NULL)
CREATE TABLE uid_domain_attrs ( id INTEGER PRIMARY KEY NOT NULL, did VARCHAR(64), name VARCHAR(32) NOT NULL, type INTEGER DEFAULT 0 NOT NULL, value VARCHAR(128), flags INTEGER DEFAULT 0 NOT NULL, CONSTRAINT uid_domain_attrs_domain_attr_idx UNIQUE (did, name, value))
select * FROM $1;
select * from subscriber;
CREATE TABLE `dispatcher` ( `id` INT(10) UNSIGNED AUTO_INCREMENT PRIMARY KEY NOT NULL, `setid` INT DEFAULT 0 NOT NULL, `destination` VARCHAR(192) DEFAULT '' NOT NULL, `flags` INT DEFAULT 0 NOT NULL, `priority` INT DEFAULT 0 NOT NULL, `attrs` VARCHAR(128) DEFAULT '' NOT NULL, `description` VARCHAR(64) DEFAULT '' NOT NULL)
CREATE INDEX dialog2_idx ON pua (`call_id`, `from_tag`);
CREATE TABLE subscriber ( id SERIAL PRIMARY KEY NOT NULL, username VARCHAR(64) DEFAULT '' NOT NULL, domain VARCHAR(64) DEFAULT '' NOT NULL, password VARCHAR(64) DEFAULT '' NOT NULL, ha1 VARCHAR(128) DEFAULT '' NOT NULL, ha1b VARCHAR(128) DEFAULT '' NOT NULL, email_address VARCHAR(128) DEFAULT NULL, rpid VARCHAR(128) DEFAULT NULL, CONSTRAINT subscriber_account_idx UNIQUE (username, domain))
CREATE TABLE version ( table_name VARCHAR2(32), table_version NUMBER(10) DEFAULT 0 NOT NULL, CONSTRAINT version_table_name_idx UNIQUE (table_name))
CREATE TABLE credentials ( auth_username VARCHAR(64) NOT NULL, did VARCHAR(64) NOT NULL DEFAULT '_default', realm VARCHAR(64) NOT NULL, password VARCHAR(28) NOT NULL DEFAULT '', flags INTEGER NOT NULL DEFAULT '0', ha1 VARCHAR(32) NOT NULL, ha1b VARCHAR(32) NOT NULL DEFAULT '', uid VARCHAR(64) NOT NULL)
select COUNT(*) from location where username='49721123456790';
CREATE INDEX uid_uri_uri_uid ON uid_uri (
CREATE TABLE imc_members ( id INTEGER PRIMARY KEY NOT NULL, username VARCHAR(64) NOT NULL, domain VARCHAR(64) NOT NULL, room VARCHAR(64) NOT NULL, flag INTEGER NOT NULL, CONSTRAINT imc_members_account_room_idx UNIQUE (username, domain, room))
CREATE TABLE `dr_gw_lists` ( `id` INT(10) UNSIGNED AUTO_INCREMENT PRIMARY KEY NOT NULL, `gwlist` VARCHAR(255) NOT NULL, `description` VARCHAR(128) DEFAULT '' NOT NULL)
CREATE INDEX uid_credentials_did_idx ON uid_credentials (did);
CREATE INDEX sip_trace_traced_user_idx ON sip_trace (traced_user);
CREATE INDEX rls_presentity_updated_idx ON rls_presentity (updated);
CREATE TABLE `subscriber` ( `id` INT(10) UNSIGNED AUTO_INCREMENT PRIMARY KEY NOT NULL, `username` VARCHAR(64) DEFAULT '' NOT NULL, `domain` VARCHAR(64) DEFAULT '' NOT NULL, `password` VARCHAR(64) DEFAULT '' NOT NULL, `ha1` VARCHAR(128) DEFAULT '' NOT NULL, `ha1b` VARCHAR(128) DEFAULT '' NOT NULL, `email_address` VARCHAR(128) DEFAULT NULL, `rpid` VARCHAR(128) DEFAULT NULL, CONSTRAINT account_idx UNIQUE (`username`, `domain`))
CREATE TABLE mtrees ( id NUMBER(10) PRIMARY KEY, tname VARCHAR2(128) DEFAULT '', tprefix VARCHAR2(32) DEFAULT '', tvalue VARCHAR2(128) DEFAULT '', CONSTRAINT ORA_tname_tprefix_tvalue_idx UNIQUE (tname, tprefix, tvalue))
select * from subscriber where column="value";
CREATE INDEX uri_idx1 ON uid_uri (`username`, `did`, `scheme`);
CREATE TABLE purplemap ( id INTEGER PRIMARY KEY NOT NULL, sip_user VARCHAR(128) NOT NULL, ext_user VARCHAR(128) NOT NULL, ext_prot VARCHAR(16) NOT NULL, ext_pass VARCHAR(64))
CREATE INDEX rls_watchers_rls_watchers_update ON rls_watchers (watcher_username, watcher_domain, event);
CREATE INDEX rls_watchers_update ON rls_watchers (`watcher_username`, `watcher_domain`, `event`);
CREATE TABLE i18n ( code INTEGER NOT NULL, reason_re VARCHAR(255) DEFAULT NULL, lang VARCHAR(32) NOT NULL, new_reason VARCHAR(255), CONSTRAINT i18n_uniq_idx UNIQUE (code, lang))
CREATE INDEX date_idx ON sip_trace (`time_stamp`);
CREATE TABLE active_watchers ( id NUMBER(10) PRIMARY KEY, presentity_uri VARCHAR2(128), watcher_username VARCHAR2(64), watcher_domain VARCHAR2(64), to_user VARCHAR2(64), to_domain VARCHAR2(64), event VARCHAR2(64) DEFAULT 'presence', event_id VARCHAR2(64), to_tag VARCHAR2(64), from_tag VARCHAR2(64), callid VARCHAR2(255), local_cseq NUMBER(10), remote_cseq NUMBER(10), contact VARCHAR2(128), record_route CLOB, expires NUMBER(10), status NUMBER(10) DEFAULT 2 NOT NULL, reason VARCHAR2(64), version NUMBER(10) DEFAULT 0 NOT NULL, socket_info VARCHAR2(64), local_contact VARCHAR2(128), from_user VARCHAR2(64), from_domain VARCHAR2(64), updated NUMBER(10), updated_winfo NUMBER(10), flags NUMBER(10) DEFAULT 0 NOT NULL, user_agent VARCHAR2(255) DEFAULT '', CONSTRAINT ORA_active_watchers_idx UNIQUE (callid, to_tag, from_tag))
CREATE TABLE re_grp ( id INTEGER PRIMARY KEY NOT NULL, reg_exp VARCHAR(128) DEFAULT '' NOT NULL, group_id INTEGER DEFAULT 0 NOT NULL)
CREATE INDEX rls_presentity_rlsubs_idx ON rls_presentity (rlsubs_did);
select * from user;
CREATE TABLE acc ( id SERIAL PRIMARY KEY NOT NULL, method VARCHAR(16) DEFAULT '' NOT NULL, from_tag VARCHAR(64) DEFAULT '' NOT NULL, to_tag VARCHAR(64) DEFAULT '' NOT NULL, callid VARCHAR(255) DEFAULT '' NOT NULL, sip_code VARCHAR(3) DEFAULT '' NOT NULL, sip_reason VARCHAR(128) DEFAULT '' NOT NULL, time TIMESTAMP WITHOUT TIME ZONE NOT NULL)
select uid,aor,contact,received from location where uid=?/%$f.uid");
CREATE INDEX topos_t_rectime_idx ON topos_t (rectime);
CREATE TABLE `impu_contact` ( `id` int(11) NOT NULL AUTO_INCREMENT, `impu_id` int(11) NOT NULL, `contact_id` int(11) NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `impu_id` (`impu_id`,`contact_id`))
CREATE TABLE silo ( mid INT NOT NULL, from_hdr VARCHAR(255) NOT NULL, to_hdr VARCHAR(255) NOT NULL, ruri VARCHAR(255) NOT NULL, uuid VARCHAR(64) NOT NULL, inc_time DATETIME NOT NULL DEFAULT '1970-01-01 00:00:00', exp_time DATETIME NOT NULL DEFAULT '1970-01-01 00:00:00', ctype VARCHAR(128) NOT NULL DEFAULT 'text/plain', body BLOB NOT NULL DEFAULT '', UNIQUE KEY silo_idx1 (mid))
CREATE TABLE acc ( id SERIAL NOT NULL, server_id INTEGER NOT NULL DEFAULT '0', from_uid VARCHAR(64), to_uid VARCHAR(64), to_did VARCHAR(64), from_did VARCHAR(64), sip_from VARCHAR(255), sip_to VARCHAR(255), sip_status INTEGER, sip_method VARCHAR(16), in_ruri VARCHAR(255), out_ruri VARCHAR(255), from_uri VARCHAR(255), to_uri VARCHAR(255), sip_callid VARCHAR(255), sip_cseq INTEGER, digest_username VARCHAR(64), digest_realm VARCHAR(255), from_tag VARCHAR(128), to_tag VARCHAR(128), src_ip INTEGER, src_port SMALLINT, request_timestamp TIMESTAMP NOT NULL, response_timestamp TIMESTAMP NOT NULL, flags INTEGER NOT NULL DEFAULT '0', attrs VARCHAR(255), CONSTRAINT acc_id_key UNIQUE (server_id, id))
CREATE TABLE matrix ( first NUMBER(10), second NUMBER(5), res NUMBER(10))
CREATE TABLE pl_pipes ( id INTEGER PRIMARY KEY NOT NULL, pipeid VARCHAR(64) DEFAULT '' NOT NULL, algorithm VARCHAR(32) DEFAULT '' NOT NULL, plimit INTEGER DEFAULT 0 NOT NULL)
CREATE TABLE aliases ( id SERIAL PRIMARY KEY NOT NULL, ruid VARCHAR(64) DEFAULT '' NOT NULL, username VARCHAR(64) DEFAULT '' NOT NULL, domain VARCHAR(64) DEFAULT NULL, contact VARCHAR(255) DEFAULT '' NOT NULL, received VARCHAR(128) DEFAULT NULL, path VARCHAR(512) DEFAULT NULL, expires TIMESTAMP WITHOUT TIME ZONE DEFAULT '2030-05-28 21:32:15' NOT NULL, q REAL DEFAULT 1.0 NOT NULL, callid VARCHAR(255) DEFAULT 'Default-Call-ID' NOT NULL, cseq INTEGER DEFAULT 1 NOT NULL, last_modified TIMESTAMP WITHOUT TIME ZONE DEFAULT '2000-01-01 00:00:01' NOT NULL, flags INTEGER DEFAULT 0 NOT NULL, cflags INTEGER DEFAULT 0 NOT NULL, user_agent VARCHAR(255) DEFAULT '' NOT NULL, socket VARCHAR(64) DEFAULT NULL, methods INTEGER DEFAULT NULL, instance VARCHAR(255) DEFAULT NULL, reg_id INTEGER DEFAULT 0 NOT NULL, server_id INTEGER DEFAULT 0 NOT NULL, connection_id INTEGER DEFAULT 0 NOT NULL, keepalive INTEGER DEFAULT 0 NOT NULL, partition INTEGER DEFAULT 0 NOT NULL, CONSTRAINT aliases_ruid_idx UNIQUE (ruid))
CREATE TABLE dr_gw_lists ( id INTEGER PRIMARY KEY NOT NULL, gwlist VARCHAR(255) NOT NULL, description VARCHAR(128) DEFAULT '' NOT NULL)
select * FROM $DIALOG_TABLE ORDER BY id;
CREATE TABLE uid_domain ( id SERIAL PRIMARY KEY NOT NULL, did VARCHAR(64) NOT NULL, domain VARCHAR(64) NOT NULL, flags INTEGER DEFAULT 0 NOT NULL, CONSTRAINT uid_domain_domain_idx UNIQUE (domain))
CREATE TABLE rls_presentity ( id SERIAL PRIMARY KEY NOT NULL, rlsubs_did VARCHAR(255) NOT NULL, resource_uri VARCHAR(128) NOT NULL, content_type VARCHAR(255) NOT NULL, presence_state BYTEA NOT NULL, expires INTEGER NOT NULL, updated INTEGER NOT NULL, auth_state INTEGER NOT NULL, reason VARCHAR(64) NOT NULL, CONSTRAINT rls_presentity_rls_presentity_idx UNIQUE (rlsubs_did, resource_uri))
CREATE TABLE IF NOT EXISTS `alarm_data` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `create_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `type` varchar(50) NOT NULL DEFAULT '', `total` int(20) NOT NULL DEFAULT 0, `source_ip` varchar(150) NOT NULL DEFAULT '0.0.0.0', `description` varchar(256) NOT NULL DEFAULT '', `status` int(1) NOT NULL DEFAULT '1', PRIMARY KEY (`id`,`create_date`), KEY `to_date` (`create_date`), KEY `method` (`type`))
CREATE INDEX rlsubs_idx ON rls_presentity (`rlsubs_did`);
CREATE TABLE re_grp ( id NUMBER(10) PRIMARY KEY, reg_exp VARCHAR2(128) DEFAULT '', group_id NUMBER(10) DEFAULT 0 NOT NULL)
CREATE TABLE rtpproxy ( id SERIAL PRIMARY KEY NOT NULL, setid VARCHAR(32) DEFAULT 00 NOT NULL, url VARCHAR(64) DEFAULT '' NOT NULL, flags INTEGER DEFAULT 0 NOT NULL, weight INTEGER DEFAULT 1 NOT NULL, description VARCHAR(64) DEFAULT '' NOT NULL)
CREATE INDEX sip_capture_ruri_user_idx ON sip_capture (ruri_user);
CREATE INDEX uda_idx ON usr_preferences (`username`, `domain`, `attribute`);
select count(*) from subscriber where username='monitor' and
CREATE TABLE global_attrs ( name VARCHAR(32) NOT NULL, type INT NOT NULL DEFAULT '0', value VARCHAR(255), flags INT UNSIGNED NOT NULL DEFAULT '0', UNIQUE KEY global_attrs_idx (name, value))
CREATE INDEX matrix_idx ON matrix (`first`, `second`);
select * from unsorted_table order by id;
CREATE TABLE `mohqueues` ( `id` INT(10) UNSIGNED AUTO_INCREMENT PRIMARY KEY NOT NULL, `name` VARCHAR(25) NOT NULL, `uri` VARCHAR(100) NOT NULL, `mohdir` VARCHAR(100), `mohfile` VARCHAR(100) NOT NULL, `debug` INT NOT NULL, CONSTRAINT mohqueue_uri_idx UNIQUE (`uri`), CONSTRAINT mohqueue_name_idx UNIQUE (`name`))
CREATE INDEX xcap_account_doc_uri_idx ON xcap (username,
CREATE TABLE `dbaliases` ( `id` INT(10) UNSIGNED AUTO_INCREMENT PRIMARY KEY NOT NULL, `alias_username` VARCHAR(64) DEFAULT '' NOT NULL, `alias_domain` VARCHAR(64) DEFAULT '' NOT NULL, `username` VARCHAR(64) DEFAULT '' NOT NULL, `domain` VARCHAR(64) DEFAULT '' NOT NULL)
CREATE TABLE dialog_vars ( id INTEGER PRIMARY KEY NOT NULL, hash_entry INTEGER NOT NULL, hash_id INTEGER NOT NULL, dialog_key VARCHAR(128) NOT NULL, dialog_value VARCHAR(512) NOT NULL)
CREATE TABLE presentity_contact ( pres_id VARCHAR(64) NOT NULL, basic INT(3) NOT NULL, expires DATETIME NOT NULL DEFAULT '2004-05-28 21:32:15', priority FLOAT NOT NULL DEFAULT '0.5', contact VARCHAR(255), tupleid VARCHAR(64) NOT NULL, etag VARCHAR(64) NOT NULL, published_id VARCHAR(64) NOT NULL, UNIQUE KEY presid_index (pres_id, tupleid))
CREATE TABLE speed_dial ( id INT NOT NULL, uuid VARCHAR(64) NOT NULL, dial_username VARCHAR(64) NOT NULL, dial_did VARCHAR(64) NOT NULL, new_uri VARCHAR(255) NOT NULL, UNIQUE KEY speeddial_idx1 (uuid, dial_did, dial_username), UNIQUE KEY speeddial_id (id), KEY speeddial_uid (uuid))
CREATE TABLE `re_grp` ( `id` INT(10) UNSIGNED AUTO_INCREMENT PRIMARY KEY NOT NULL, `reg_exp` VARCHAR(128) DEFAULT '' NOT NULL, `group_id` INT(11) DEFAULT 0 NOT NULL)
CREATE TABLE domain_settings ( did VARCHAR(64) NOT NULL, filename VARCHAR(255) NOT NULL, version INTEGER NOT NULL, timestamp INTEGER, content BYTEA, flags INTEGER NOT NULL DEFAULT '0', CONSTRAINT ds_id UNIQUE (did, filename, version))
CREATE TABLE user_attrs ( uid VARCHAR(64) NOT NULL, name VARCHAR(32) NOT NULL, value VARCHAR(255), type INTEGER NOT NULL DEFAULT '0', flags INTEGER NOT NULL DEFAULT '0', CONSTRAINT userattrs_idx UNIQUE (uid, name, value))
SELECT * FROM ".$table." WHERE name=\"".$admin."\" and passwd=\"".$passwd."\
CREATE TABLE dispatcher ( id INTEGER PRIMARY KEY NOT NULL, setid INTEGER DEFAULT 0 NOT NULL, destination VARCHAR(192) DEFAULT '' NOT NULL, flags INTEGER DEFAULT 0 NOT NULL, priority INTEGER DEFAULT 0 NOT NULL, attrs VARCHAR(128) DEFAULT '' NOT NULL, description VARCHAR(64) DEFAULT '' NOT NULL)
CREATE INDEX mc_cid_key ON missed_calls (sip_callid);
CREATE TABLE lcr_gw ( id SERIAL PRIMARY KEY NOT NULL, lcr_id SMALLINT NOT NULL, gw_name VARCHAR(128), ip_addr VARCHAR(50), hostname VARCHAR(64), port SMALLINT, params VARCHAR(64), uri_scheme SMALLINT, transport SMALLINT, strip SMALLINT, prefix VARCHAR(16) DEFAULT NULL, tag VARCHAR(64) DEFAULT NULL, flags INTEGER DEFAULT 0 NOT NULL, defunct INTEGER DEFAULT NULL)
select value from global_attrs where name='gattr_timestamp' and type=0 and cast(value as unsigned int) between unix_timestamp(now())-120 and unix_timestamp(now())", "gattr_reload
CREATE TABLE presentity_contact ( pres_id VARCHAR(64) NOT NULL, basic INTEGER NOT NULL, expires TIMESTAMP NOT NULL DEFAULT '2004-05-28 21:32:15', priority REAL NOT NULL DEFAULT '0.5', contact VARCHAR(255), tupleid VARCHAR(64) NOT NULL, etag VARCHAR(64) NOT NULL, published_id VARCHAR(64) NOT NULL, CONSTRAINT presid_index UNIQUE (pres_id, tupleid))
CREATE TABLE uid_domain_attrs ( id SERIAL PRIMARY KEY NOT NULL, did VARCHAR(64), name VARCHAR(32) NOT NULL, type INTEGER DEFAULT 0 NOT NULL, value VARCHAR(128), flags INTEGER DEFAULT 0 NOT NULL, CONSTRAINT uid_domain_attrs_domain_attr_idx UNIQUE (did, name, value))
CREATE TABLE imc_rooms ( id INTEGER PRIMARY KEY NOT NULL, name VARCHAR(64) NOT NULL, domain VARCHAR(64) NOT NULL, flag INTEGER NOT NULL, CONSTRAINT imc_rooms_name_domain_idx UNIQUE (name, domain))
CREATE TABLE `usr_preferences` ( `id` INT(10) UNSIGNED AUTO_INCREMENT PRIMARY KEY NOT NULL, `uuid` VARCHAR(64) DEFAULT '' NOT NULL, `username` VARCHAR(128) DEFAULT 0 NOT NULL, `domain` VARCHAR(64) DEFAULT '' NOT NULL, `attribute` VARCHAR(32) DEFAULT '' NOT NULL, `type` INT(11) DEFAULT 0 NOT NULL, `value` VARCHAR(128) DEFAULT '' NOT NULL, `last_modified` DATETIME DEFAULT '2000-01-01 00:00:01' NOT NULL)
CREATE INDEX location_attrs_last_modified_idx ON location_attrs (last_modified);
CREATE TABLE domainpolicy ( id SERIAL PRIMARY KEY NOT NULL, rule VARCHAR(255) NOT NULL, type VARCHAR(255) NOT NULL, att VARCHAR(255), val VARCHAR(128), description VARCHAR(255) NOT NULL, CONSTRAINT domainpolicy_rav_idx UNIQUE (rule, att, val))
CREATE TABLE test ( col_bool BOOL, col_bytea BYTEA, col_char CHAR, col_int8 INT8, col_int4 INT4, col_int2 INT2, col_text TEXT, col_float4 FLOAT4, col_float8 FLOAT8, col_inet INET, col_bpchar BPCHAR, col_varchar VARCHAR, col_timestamp TIMESTAMP, col_timestamptz TIMESTAMPTZ, col_bit BIT(32), col_varbit VARBIT)
CREATE TABLE userblacklist ( id SERIAL PRIMARY KEY NOT NULL, username VARCHAR(64) DEFAULT '' NOT NULL, domain VARCHAR(64) DEFAULT '' NOT NULL, prefix VARCHAR(64) DEFAULT '' NOT NULL, whitelist SMALLINT DEFAULT 0 NOT NULL)
CREATE INDEX pua_dialog1_idx ON pua (pres_id, pres_uri);
CREATE INDEX realm_idx ON uid_credentials (`realm`);
CREATE TABLE IF NOT EXISTS `stats_geo` (`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `from_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `to_date` timestamp NOT NULL DEFAULT '1971-01-01 00:00:01', `method` varchar(50) NOT NULL DEFAULT '', `country` varchar(255) NOT NULL DEFAULT 'UN', `lat` float NOT NULL DEFAULT '0', `lon` float NOT NULL DEFAULT '0', `total` int(20) NOT NULL DEFAULT '0', PRIMARY KEY (`id`,`from_date`), UNIQUE KEY `datemethod` (`from_date`,`to_date`,`method`,`country`), KEY `from_date` (`from_date`), KEY `to_date` (`to_date`), KEY `method` (`method`))
CREATE INDEX account_doc_type_idx ON xcap (`username`, `domain`, `doc_type`);
CREATE TABLE rls_vs ( id VARCHAR(48) NOT NULL, rls_id VARCHAR(48) NOT NULL, uri VARCHAR(255) NOT NULL, CONSTRAINT rls_vs_key UNIQUE (id))
CREATE TABLE `cpl` ( `id` INT(10) UNSIGNED AUTO_INCREMENT PRIMARY KEY NOT NULL, `username` VARCHAR(64) NOT NULL, `domain` VARCHAR(64) DEFAULT '' NOT NULL, `cpl_xml` TEXT, `cpl_bin` TEXT, CONSTRAINT account_idx UNIQUE (`username`, `domain`))
CREATE TABLE carrier_name ( id NUMBER(10) PRIMARY KEY, carrier VARCHAR2(64) DEFAULT NULL)
CREATE TABLE pdt ( id INTEGER PRIMARY KEY NOT NULL, sdomain VARCHAR(128) NOT NULL, prefix VARCHAR(32) NOT NULL, domain VARCHAR(128) DEFAULT '' NOT NULL, CONSTRAINT pdt_sdomain_prefix_idx UNIQUE (sdomain, prefix))
CREATE TABLE IF NOT EXISTS `nds_trusted_domains` ( `id` int(11) NOT NULL, `trusted_domain` varchar(83) NOT NULL DEFAULT '')
UPDATE version SET table_version=2 WHERE table_name=lcr_gw
CREATE INDEX rule_idx ON domainpolicy (`rule`);
CREATE TABLE topos_d ( id INTEGER PRIMARY KEY NOT NULL, rectime TIMESTAMP WITHOUT TIME ZONE NOT NULL, s_method VARCHAR(64) DEFAULT '' NOT NULL, s_cseq VARCHAR(64) DEFAULT '' NOT NULL, a_callid VARCHAR(255) DEFAULT '' NOT NULL, a_uuid VARCHAR(255) DEFAULT '' NOT NULL, b_uuid VARCHAR(255) DEFAULT '' NOT NULL, a_contact VARCHAR(128) DEFAULT '' NOT NULL, b_contact VARCHAR(128) DEFAULT '' NOT NULL, as_contact VARCHAR(128) DEFAULT '' NOT NULL, bs_contact VARCHAR(128) DEFAULT '' NOT NULL, a_tag VARCHAR(255) DEFAULT '' NOT NULL, b_tag VARCHAR(255) DEFAULT '' NOT NULL, a_rr TEXT, b_rr TEXT, s_rr TEXT, iflags INTEGER DEFAULT 0 NOT NULL, a_uri VARCHAR(128) DEFAULT '' NOT NULL, b_uri VARCHAR(128) DEFAULT '' NOT NULL, r_uri VARCHAR(128) DEFAULT '' NOT NULL, a_srcaddr VARCHAR(128) DEFAULT '' NOT NULL, b_srcaddr VARCHAR(128) DEFAULT '' NOT NULL, a_socket VARCHAR(128) DEFAULT '' NOT NULL, b_socket VARCHAR(128) DEFAULT '' NOT NULL)
CREATE TABLE `pl_pipes` ( `id` INT(10) UNSIGNED AUTO_INCREMENT PRIMARY KEY NOT NULL, `pipeid` VARCHAR(64) DEFAULT '' NOT NULL, `algorithm` VARCHAR(32) DEFAULT '' NOT NULL, `plimit` INT DEFAULT 0 NOT NULL)
CREATE TABLE `dialog_vars` ( `id` INT(10) UNSIGNED AUTO_INCREMENT PRIMARY KEY NOT NULL, `hash_entry` INT(10) UNSIGNED NOT NULL, `hash_id` INT(10) UNSIGNED NOT NULL, `dialog_key` VARCHAR(128) NOT NULL, `dialog_value` VARCHAR(512) NOT NULL)
CREATE TABLE `rtpproxy` ( `id` INT(10) UNSIGNED AUTO_INCREMENT PRIMARY KEY NOT NULL, `setid` VARCHAR(32) DEFAULT 00 NOT NULL, `url` VARCHAR(64) DEFAULT '' NOT NULL, `flags` INT DEFAULT 0 NOT NULL, `weight` INT DEFAULT 1 NOT NULL, `description` VARCHAR(64) DEFAULT '' NOT NULL)
CREATE TABLE dr_rules ( ruleid NUMBER(10) PRIMARY KEY, groupid VARCHAR2(255), prefix VARCHAR2(64), timerec VARCHAR2(255), priority NUMBER(10) DEFAULT 0 NOT NULL, routeid VARCHAR2(64), gwlist VARCHAR2(255), description VARCHAR2(128) DEFAULT '')
CREATE TABLE sca_subscriptions ( id INTEGER PRIMARY KEY NOT NULL, subscriber VARCHAR(255) NOT NULL, aor VARCHAR(255) NOT NULL, event INTEGER DEFAULT 0 NOT NULL, expires INTEGER DEFAULT 0 NOT NULL, state INTEGER DEFAULT 0 NOT NULL, app_idx INTEGER DEFAULT 0 NOT NULL, call_id VARCHAR(255) NOT NULL, from_tag VARCHAR(64) NOT NULL, to_tag VARCHAR(64) NOT NULL, record_route TEXT, notify_cseq INTEGER NOT NULL, subscribe_cseq INTEGER NOT NULL, server_id INTEGER DEFAULT 0 NOT NULL, CONSTRAINT sca_subscriptions_sca_subscriptions_idx UNIQUE (subscriber, call_id, from_tag, to_tag))
CREATE INDEX fromip_idx ON sip_trace (`fromip`);
CREATE TABLE IF NOT EXISTS `alarm_data_mem` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `create_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `type` varchar(50) NOT NULL DEFAULT '', `total` int(20) NOT NULL DEFAULT 0, `source_ip` varchar(150) NOT NULL DEFAULT '0.0.0.0', `description` varchar(256) NOT NULL DEFAULT '', `status` int(1) NOT NULL DEFAULT '1', PRIMARY KEY (`id`), UNIQUE KEY `type` (`type`,`source_ip`), KEY `to_date` (`create_date`), KEY `method` (`type`))
CREATE TABLE address ( id SERIAL PRIMARY KEY NOT NULL, grp INTEGER DEFAULT 1 NOT NULL, ip_addr VARCHAR(50) NOT NULL, mask INTEGER DEFAULT 32 NOT NULL, port SMALLINT DEFAULT 0 NOT NULL, tag VARCHAR(64))
CREATE TABLE `grp` ( `id` INT(10) UNSIGNED AUTO_INCREMENT PRIMARY KEY NOT NULL, `username` VARCHAR(64) DEFAULT '' NOT NULL, `domain` VARCHAR(64) DEFAULT '' NOT NULL, `grp` VARCHAR(64) DEFAULT '' NOT NULL, `last_modified` DATETIME DEFAULT '2000-01-01 00:00:01' NOT NULL, CONSTRAINT account_group_idx UNIQUE (`username`, `domain`, `grp`))
CREATE TABLE `mohqcalls` ( `id` INT(10) UNSIGNED AUTO_INCREMENT PRIMARY KEY NOT NULL, `mohq_id` INT(10) UNSIGNED NOT NULL, `call_id` VARCHAR(100) NOT NULL, `call_status` INT UNSIGNED NOT NULL, `call_from` VARCHAR(100) NOT NULL, `call_contact` VARCHAR(100), `call_time` DATETIME NOT NULL, CONSTRAINT mohqcalls_idx UNIQUE (`call_id`))
CREATE INDEX callid_idx ON acc (`callid`);
CREATE INDEX domainpolicy_rule_idx ON domainpolicy (
select value from global_attrs where name='domain_data_version' and type=0 and cast(value as unsigned int) between unix_timestamp(now())-120 and unix_timestamp(now())", "reload
CREATE TABLE `globalblacklist` ( `id` INT(10) UNSIGNED AUTO_INCREMENT PRIMARY KEY NOT NULL, `prefix` VARCHAR(64) DEFAULT '' NOT NULL, `whitelist` TINYINT(1) DEFAULT 0 NOT NULL, `description` VARCHAR(255) DEFAULT NULL)
CREATE TABLE `silo` ( `id` INT(10) UNSIGNED AUTO_INCREMENT PRIMARY KEY NOT NULL, `src_addr` VARCHAR(128) DEFAULT '' NOT NULL, `dst_addr` VARCHAR(128) DEFAULT '' NOT NULL, `username` VARCHAR(64) DEFAULT '' NOT NULL, `domain` VARCHAR(64) DEFAULT '' NOT NULL, `inc_time` INT DEFAULT 0 NOT NULL, `exp_time` INT DEFAULT 0 NOT NULL, `snd_time` INT DEFAULT 0 NOT NULL, `ctype` VARCHAR(32) DEFAULT 'text/plain' NOT NULL, `body` BLOB, `extra_hdrs` TEXT, `callid` VARCHAR(128) DEFAULT '' NOT NULL, `status` INT DEFAULT 0 NOT NULL)
CREATE TABLE xcap ( id SERIAL PRIMARY KEY NOT NULL, username VARCHAR(64) NOT NULL, domain VARCHAR(64) NOT NULL, doc BYTEA NOT NULL, doc_type INTEGER NOT NULL, etag VARCHAR(64) NOT NULL, source INTEGER NOT NULL, doc_uri VARCHAR(255) NOT NULL, port INTEGER NOT NULL, CONSTRAINT xcap_doc_uri_idx UNIQUE (doc_uri))
CREATE INDEX uid_credentials_uid ON uid_credentials (
CREATE INDEX location_connection_idx ON
CREATE INDEX updated_idx ON active_watchers (`updated`);
CREATE INDEX userblacklist_idx ON userblacklist (`username`, `domain`, `prefix`);
CREATE TABLE dialog ( id INTEGER PRIMARY KEY NOT NULL, hash_entry INTEGER NOT NULL, hash_id INTEGER NOT NULL, callid VARCHAR(255) NOT NULL, from_uri VARCHAR(128) NOT NULL, from_tag VARCHAR(64) NOT NULL, to_uri VARCHAR(128) NOT NULL, to_tag VARCHAR(64) NOT NULL, caller_cseq VARCHAR(20) NOT NULL, callee_cseq VARCHAR(20) NOT NULL, caller_route_set VARCHAR(512), callee_route_set VARCHAR(512), caller_contact VARCHAR(128) NOT NULL, callee_contact VARCHAR(128) NOT NULL, caller_sock VARCHAR(64) NOT NULL, callee_sock VARCHAR(64) NOT NULL, state INTEGER NOT NULL, start_time INTEGER NOT NULL, timeout INTEGER DEFAULT 0 NOT NULL, sflags INTEGER DEFAULT 0 NOT NULL, iflags INTEGER DEFAULT 0 NOT NULL, toroute_name VARCHAR(32), req_uri VARCHAR(128) NOT NULL, xdata VARCHAR(512))
CREATE TABLE `uid_user_attrs` ( `id` INT(10) UNSIGNED AUTO_INCREMENT PRIMARY KEY NOT NULL, `uid` VARCHAR(64) NOT NULL, `name` VARCHAR(32) NOT NULL, `value` VARCHAR(128), `type` INT DEFAULT 0 NOT NULL, `flags` INT UNSIGNED DEFAULT 0 NOT NULL, CONSTRAINT userattrs_idx UNIQUE (`uid`, `name`, `value`))
CREATE TABLE rls_watchers ( id INTEGER PRIMARY KEY NOT NULL, presentity_uri VARCHAR(128) NOT NULL, to_user VARCHAR(64) NOT NULL, to_domain VARCHAR(64) NOT NULL, watcher_username VARCHAR(64) NOT NULL, watcher_domain VARCHAR(64) NOT NULL, event VARCHAR(64) DEFAULT 'presence' NOT NULL, event_id VARCHAR(64), to_tag VARCHAR(64) NOT NULL, from_tag VARCHAR(64) NOT NULL, callid VARCHAR(255) NOT NULL, local_cseq INTEGER NOT NULL, remote_cseq INTEGER NOT NULL, contact VARCHAR(128) NOT NULL, record_route TEXT, expires INTEGER NOT NULL, status INTEGER DEFAULT 2 NOT NULL, reason VARCHAR(64) NOT NULL, version INTEGER DEFAULT 0 NOT NULL, socket_info VARCHAR(64) NOT NULL, local_contact VARCHAR(128) NOT NULL, from_user VARCHAR(64) NOT NULL, from_domain VARCHAR(64) NOT NULL, updated INTEGER NOT NULL, CONSTRAINT rls_watchers_rls_watcher_idx UNIQUE (callid, to_tag, from_tag))
CREATE INDEX dialog_hash_idx ON dialog (hash_entry, hash_id);
CREATE TABLE `uacreg` ( `id` INT(10) UNSIGNED AUTO_INCREMENT PRIMARY KEY NOT NULL, `l_uuid` VARCHAR(64) DEFAULT '' NOT NULL, `l_username` VARCHAR(64) DEFAULT '' NOT NULL, `l_domain` VARCHAR(64) DEFAULT '' NOT NULL, `r_username` VARCHAR(64) DEFAULT '' NOT NULL, `r_domain` VARCHAR(64) DEFAULT '' NOT NULL, `realm` VARCHAR(64) DEFAULT '' NOT NULL, `auth_username` VARCHAR(64) DEFAULT '' NOT NULL, `auth_password` VARCHAR(64) DEFAULT '' NOT NULL, `auth_ha1` VARCHAR(128) DEFAULT '' NOT NULL, `auth_proxy` VARCHAR(128) DEFAULT '' NOT NULL, `expires` INT DEFAULT 0 NOT NULL, `flags` INT DEFAULT 0 NOT NULL, `reg_delay` INT DEFAULT 0 NOT NULL, CONSTRAINT l_uuid_idx UNIQUE (`l_uuid`))
CREATE TABLE customers ( cid SERIAL NOT NULL, name VARCHAR(128) NOT NULL, address VARCHAR(255), phone VARCHAR(64), email VARCHAR(255), CONSTRAINT cu_idx UNIQUE (cid))
CREATE TABLE domainpolicy ( id NUMBER(10) PRIMARY KEY, rule VARCHAR2(255), type VARCHAR2(255), att VARCHAR2(255), val VARCHAR2(128), description VARCHAR2(255), CONSTRAINT domainpolicy_rav_idx UNIQUE (rule, att, val))
CREATE TABLE offline_winfo ( uid VARCHAR(64) NOT NULL, watcher VARCHAR(255) NOT NULL, events VARCHAR(64) NOT NULL, domain VARCHAR(128), status VARCHAR(32), created_on DATETIME NOT NULL DEFAULT '2006-01-31 13:13:13', expires_on DATETIME NOT NULL DEFAULT '2006-01-31 13:13:13', dbid INT(10) UNSIGNED AUTO_INCREMENT NOT NULL, UNIQUE KEY offline_winfo_key (dbid))
CREATE TABLE imc_members ( id NUMBER(10) PRIMARY KEY, username VARCHAR2(64), domain VARCHAR2(64), room VARCHAR2(64), flag NUMBER(10), CONSTRAINT imc_members_account_room_idx UNIQUE (username, domain, room))
CREATE TABLE domain_name ( id NUMBER(10) PRIMARY KEY, domain VARCHAR2(64) DEFAULT NULL)
CREATE TABLE dr_gateways ( gwid INTEGER PRIMARY KEY NOT NULL, type INTEGER DEFAULT 0 NOT NULL, address VARCHAR(128) NOT NULL, strip INTEGER DEFAULT 0 NOT NULL, pri_prefix VARCHAR(64) DEFAULT NULL, attrs VARCHAR(255) DEFAULT NULL, description VARCHAR(128) DEFAULT '' NOT NULL)
CREATE TABLE cpl ( id INTEGER PRIMARY KEY NOT NULL, username VARCHAR(64) NOT NULL, domain VARCHAR(64) DEFAULT '' NOT NULL, cpl_xml TEXT, cpl_bin TEXT, CONSTRAINT cpl_account_idx UNIQUE (username, domain))
CREATE TABLE acc_cdrs ( id SERIAL PRIMARY KEY NOT NULL, start_time TIMESTAMP WITHOUT TIME ZONE DEFAULT '2000-01-01 00:00:00' NOT NULL, end_time TIMESTAMP WITHOUT TIME ZONE DEFAULT '2000-01-01 00:00:00' NOT NULL, duration REAL DEFAULT 0 NOT NULL)
CREATE TABLE cpl ( uuid VARCHAR(64) NOT NULL, cpl_xml BLOB, cpl_bin BLOB, UNIQUE KEY cpl_key (uuid))
CREATE TABLE customers ( cid INT UNSIGNED NOT NULL, name VARCHAR(128) NOT NULL, address VARCHAR(255), phone VARCHAR(64), email VARCHAR(255), UNIQUE KEY cu_idx (cid))
CREATE TABLE presentity ( pres_id VARCHAR(64) NOT NULL, uri VARCHAR(255) NOT NULL, uuid VARCHAR(64) NOT NULL, pdomain VARCHAR(128) NOT NULL, xcap_params BLOB NOT NULL, UNIQUE KEY presentity_key (pres_id))
SELECT * FROM $1 WHERE $2=$3\\G;
CREATE TABLE uid_uri_attrs ( id INTEGER PRIMARY KEY NOT NULL, username VARCHAR(64) NOT NULL, did VARCHAR(64) NOT NULL, name VARCHAR(32) NOT NULL, value VARCHAR(128), type INTEGER DEFAULT 0 NOT NULL, flags INTEGER DEFAULT 0 NOT NULL, scheme VARCHAR(8) DEFAULT 'sip' NOT NULL, CONSTRAINT uid_uri_attrs_uriattrs_idx UNIQUE (username, did, name, value, scheme))
select * from table(dump_tables('$DBROOTUSER'));
CREATE TABLE `uid_uri` ( `id` INT(10) UNSIGNED AUTO_INCREMENT PRIMARY KEY NOT NULL, `uid` VARCHAR(64) NOT NULL, `did` VARCHAR(64) NOT NULL, `username` VARCHAR(64) NOT NULL, `flags` INT UNSIGNED DEFAULT 0 NOT NULL, `scheme` VARCHAR(8) DEFAULT 'sip' NOT NULL)
CREATE TABLE lcr_rule_target ( id NUMBER(10) PRIMARY KEY, lcr_id NUMBER(5), rule_id NUMBER(10), gw_id NUMBER(10), priority NUMBER(5), weight NUMBER(10) DEFAULT 1 NOT NULL, CONSTRAINT ORA_rule_id_gw_id_idx UNIQUE (rule_id, gw_id))
select * from location where key = 'userx' limit 1;
CREATE TABLE pl_pipes ( id INT(10) UNSIGNED AUTO_INCREMENT PRIMARY KEY NOT NULL, pipeid VARCHAR(64) DEFAULT '' NOT NULL, algorithm VARCHAR(32) DEFAULT '' NOT NULL, plimit INT DEFAULT 0 NOT NULL, CONSTRAINT pipeid_idx UNIQUE (pipeid))
CREATE TABLE missed_calls ( id NUMBER(10) PRIMARY KEY, method VARCHAR2(16) DEFAULT '', from_tag VARCHAR2(64) DEFAULT '', to_tag VARCHAR2(64) DEFAULT '', callid VARCHAR2(255) DEFAULT '', sip_code VARCHAR2(3) DEFAULT '', sip_reason VARCHAR2(128) DEFAULT '', time DATE)
CREATE INDEX missed_calls_callid_idx ON missed_calls (callid);
CREATE INDEX acc_cid_key ON acc (sip_callid);
CREATE INDEX location_expires_idx ON
CREATE TABLE `ro_session` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `hash_entry` int(10) unsigned NOT NULL, `hash_id` int(10) unsigned NOT NULL, `session_id` varchar(100) NOT NULL, `dlg_hash_entry` int(10) unsigned NOT NULL, `dlg_hash_id` int(10) unsigned NOT NULL, `direction` int(1) unsigned NOT NULL, `asserted_identity` varchar(100) NOT NULL, `callee` varchar(100) NOT NULL, `start_time` datetime DEFAULT NULL, `last_event_timestamp` datetime DEFAULT NULL, `reserved_secs` int(10) DEFAULT NULL, `valid_for` int(10) DEFAULT NULL, `state` int(1) DEFAULT NULL, `incoming_trunk_id` varchar(20) DEFAULT NULL, `outgoing_trunk_id` varchar(20) DEFAULT NULL, `rating_group` int(11) DEFAULT NULL, `service_identifier` int(11) DEFAULT NULL, PRIMARY KEY (`id`), KEY `hash_idx` (`hash_entry`,`hash_id`))
CREATE TABLE rls_vs_names ( id varchar(48) NOT NULL, name varchar(64), lang varchar(64))
CREATE INDEX sca_expires_idx ON sca_subscriptions (`server_id`, `expires`);
select * from unsorted_table order by user;
select COUNT(*) from location where username='49721123456789';
select * from location;
select COUNT(*) from location where username like '49721123456789%';
CREATE TABLE dispatcher ( id NUMBER(10) PRIMARY KEY, setid NUMBER(10) DEFAULT 0 NOT NULL, destination VARCHAR2(192) DEFAULT '', flags NUMBER(10) DEFAULT 0 NOT NULL, priority NUMBER(10) DEFAULT 0 NOT NULL, attrs VARCHAR2(128) DEFAULT '', description VARCHAR2(64) DEFAULT '')
CREATE TABLE uid_domain_attrs ( id NUMBER(10) PRIMARY KEY, did VARCHAR2(64), name VARCHAR2(32), type NUMBER(10) DEFAULT 0 NOT NULL, value VARCHAR2(128), flags NUMBER(10) DEFAULT 0 NOT NULL, CONSTRAINT ORA_domain_attr_idx UNIQUE (did, name, value))
CREATE INDEX last_modified_idx ON location_attrs (`last_modified`);
CREATE INDEX updated_idx ON rls_presentity (`updated`);
CREATE TABLE `userblacklist` ( `id` INT(10) UNSIGNED AUTO_INCREMENT PRIMARY KEY NOT NULL, `username` VARCHAR(64) DEFAULT '' NOT NULL, `domain` VARCHAR(64) DEFAULT '' NOT NULL, `prefix` VARCHAR(64) DEFAULT '' NOT NULL, `whitelist` TINYINT(1) DEFAULT 0 NOT NULL)
CREATE TABLE mtree ( id SERIAL PRIMARY KEY NOT NULL, tprefix VARCHAR(32) DEFAULT '' NOT NULL, tvalue VARCHAR(128) DEFAULT '' NOT NULL, CONSTRAINT mtree_tprefix_idx UNIQUE (tprefix))
CREATE INDEX acc_from_uid ON acc (from_uid);
CREATE TABLE usr_preferences ( id NUMBER(10) PRIMARY KEY, uuid VARCHAR2(64) DEFAULT '', username VARCHAR2(128) DEFAULT 0 NOT NULL, domain VARCHAR2(64) DEFAULT '', attribute VARCHAR2(32) DEFAULT '', type NUMBER(10) DEFAULT 0 NOT NULL, value VARCHAR2(128) DEFAULT '', last_modified DATE DEFAULT to_date('2000-01-01 00:00:01','yyyy-mm-dd hh24:mi:ss'))
select count(*) from $TABLE where $COL='$VALUE';
select * from bad_table_short_row;
CREATE INDEX alias_user_idx ON dbaliases (`alias_username`);
SELECT id FROM impu WHERE ((type = 0 AND identity='$ru') OR (type = 0 AND identity='tel:$rU') OR (type = 3 AND '$ru' REGEXP identity) OR (type = 3 AND 'tel:$rU' REGEXP identity)) limit 1;", "$var(destination_impu_id)
CREATE TABLE presentity_extensions ( dbid VARCHAR(64) NOT NULL, pres_id VARCHAR(64) NOT NULL, etag VARCHAR(64) NOT NULL, element BLOB NOT NULL, expires DATETIME NOT NULL DEFAULT '2005-12-07 08:13:15', UNIQUE KEY presextensions_idx1 (dbid))
select * FROM $LCR_TABLE ORDER BY $LCR_ID_COLUMN, $LCR_PREFIX_COLUMN;
CREATE TABLE rls_vs_names ( id VARCHAR(48) NOT NULL, name VARCHAR(64), lang VARCHAR(64))
CREATE TABLE grp ( uid VARCHAR(64) NOT NULL DEFAULT '', grp VARCHAR(64) NOT NULL DEFAULT '', last_modified DATETIME NOT NULL DEFAULT '1970-01-01 00:00:00', KEY grp_idx (uid, grp))
CREATE TABLE trusted ( src_ip VARCHAR(39) NOT NULL, proto VARCHAR(4) NOT NULL, from_pattern VARCHAR(64) NOT NULL, UNIQUE KEY trusted_idx (src_ip, proto, from_pattern))
CREATE TABLE rls_subscription ( id VARCHAR(48) NOT NULL, doc_version INT NOT NULL, dialog BLOB NOT NULL, expires DATETIME NOT NULL DEFAULT '2005-12-02 09:00:13', status INT NOT NULL, contact VARCHAR(255) NOT NULL, uri VARCHAR(255) NOT NULL, package VARCHAR(128) NOT NULL, w_uri VARCHAR(255) NOT NULL, xcap_params BLOB NOT NULL, UNIQUE KEY rls_subscription_key (id))
CREATE TABLE `impu_subscriber` ( `id` int(11) NOT NULL AUTO_INCREMENT, `impu_id` int(11) NOT NULL, `subscriber_id` int(11) NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `impu_id` (`impu_id`,`subscriber_id`))
CREATE INDEX expires_idx ON pua (`expires`);
select count(*) from subscriber;
select * from bad_table_int;
CREATE TABLE pl_pipes ( id SERIAL PRIMARY KEY NOT NULL, pipeid VARCHAR(64) DEFAULT '' NOT NULL, algorithm VARCHAR(32) DEFAULT '' NOT NULL, plimit INTEGER DEFAULT 0 NOT NULL)
CREATE INDEX pua_dialog2_idx ON pua (call_id, from_tag);
CREATE TABLE rls_presentity ( id INTEGER PRIMARY KEY NOT NULL, rlsubs_did VARCHAR(255) NOT NULL, resource_uri VARCHAR(128) NOT NULL, content_type VARCHAR(255) NOT NULL, presence_state BLOB NOT NULL, expires INTEGER NOT NULL, updated INTEGER NOT NULL, auth_state INTEGER NOT NULL, reason VARCHAR(64) NOT NULL, CONSTRAINT rls_presentity_rls_presentity_idx UNIQUE (rlsubs_did, resource_uri))
CREATE TABLE `dr_groups` ( `id` INT(10) UNSIGNED AUTO_INCREMENT PRIMARY KEY NOT NULL, `username` VARCHAR(64) NOT NULL, `domain` VARCHAR(128) DEFAULT '' NOT NULL, `groupid` INT(11) UNSIGNED DEFAULT 0 NOT NULL, `description` VARCHAR(128) DEFAULT '' NOT NULL)
SELECT * FROM %.*s\n
select * from subscriber where id = 3;
CREATE INDEX usr_preferences_uda_idx ON usr_preferences (username,
CREATE TABLE uacreg ( id NUMBER(10) PRIMARY KEY, l_uuid VARCHAR2(64) DEFAULT '', l_username VARCHAR2(64) DEFAULT '', l_domain VARCHAR2(64) DEFAULT '', r_username VARCHAR2(64) DEFAULT '', r_domain VARCHAR2(64) DEFAULT '', realm VARCHAR2(64) DEFAULT '', auth_username VARCHAR2(64) DEFAULT '', auth_password VARCHAR2(64) DEFAULT '', auth_ha1 VARCHAR2(128) DEFAULT '', auth_proxy VARCHAR2(128) DEFAULT '', expires NUMBER(10) DEFAULT 0 NOT NULL, flags NUMBER(10) DEFAULT 0 NOT NULL, reg_delay NUMBER(10) DEFAULT 0 NOT NULL, CONSTRAINT uacreg_l_uuid_idx UNIQUE (l_uuid))
CREATE INDEX lcr_id_idx ON lcr_rule_target (`lcr_id`);
select * FROM $DIALPLAN_TABLE WHERE $DIALPLAN_DPID_COLUMN=$1 ORDER BY $DIALPLAN_PR_COLUMN ;
CREATE INDEX pua_expires_idx ON pua (expires);
CREATE TABLE mtrees ( id SERIAL PRIMARY KEY NOT NULL, tname VARCHAR(128) DEFAULT '' NOT NULL, tprefix VARCHAR(32) DEFAULT '' NOT NULL, tvalue VARCHAR(128) DEFAULT '' NOT NULL, CONSTRAINT mtrees_tname_tprefix_tvalue_idx UNIQUE (tname, tprefix, tvalue))
CREATE TABLE lcr ( prefix VARCHAR(16) NOT NULL, from_uri VARCHAR(255) NOT NULL DEFAULT '%', grp_id INTEGER, priority INTEGER)
CREATE TABLE uri ( id NUMBER(10) PRIMARY KEY, username VARCHAR2(64) DEFAULT '', domain VARCHAR2(64) DEFAULT '', uri_user VARCHAR2(64) DEFAULT '', last_modified DATE DEFAULT to_date('2000-01-01 00:00:01','yyyy-mm-dd hh24:mi:ss'), CONSTRAINT uri_account_idx UNIQUE (username, domain, uri_user))
CREATE TABLE `watchers` ( `id` INT(10) UNSIGNED AUTO_INCREMENT PRIMARY KEY NOT NULL, `presentity_uri` VARCHAR(128) NOT NULL, `watcher_username` VARCHAR(64) NOT NULL, `watcher_domain` VARCHAR(64) NOT NULL, `event` VARCHAR(64) DEFAULT 'presence' NOT NULL, `status` INT(11) NOT NULL, `reason` VARCHAR(64), `inserted_time` INT(11) NOT NULL, CONSTRAINT watcher_idx UNIQUE (`presentity_uri`, `watcher_username`, `watcher_domain`, `event`))
CREATE TABLE lcr_rule_target ( id INTEGER PRIMARY KEY NOT NULL, lcr_id SMALLINT NOT NULL, rule_id INTEGER NOT NULL, gw_id INTEGER NOT NULL, priority SMALLINT NOT NULL, weight INTEGER DEFAULT 1 NOT NULL, CONSTRAINT lcr_rule_target_rule_id_gw_id_idx UNIQUE (rule_id, gw_id))
CREATE INDEX account_idx ON presentity (`username`, `domain`, `event`);
CREATE TABLE uid_global_attrs ( id SERIAL PRIMARY KEY NOT NULL, name VARCHAR(32) NOT NULL, type INTEGER DEFAULT 0 NOT NULL, value VARCHAR(128), flags INTEGER DEFAULT 0 NOT NULL, CONSTRAINT uid_global_attrs_global_attrs_idx UNIQUE (name, value))
CREATE INDEX gw_idx2 ON gw (grp_id);
CREATE TABLE uid_uri ( id NUMBER(10) PRIMARY KEY, uuid VARCHAR2(64), did VARCHAR2(64), username VARCHAR2(64), flags NUMBER(10) DEFAULT 0 NOT NULL, scheme VARCHAR2(8) DEFAULT 'sip')
CREATE INDEX expires_idx ON
CREATE TABLE rls_subscription ( id VARCHAR(48) NOT NULL, doc_version INTEGER NOT NULL, dialog BYTEA NOT NULL, expires TIMESTAMP NOT NULL DEFAULT '2005-12-02 09:00:13', status INTEGER NOT NULL, contact VARCHAR(255) NOT NULL, uri VARCHAR(255) NOT NULL, package VARCHAR(128) NOT NULL, w_uri VARCHAR(255) NOT NULL, xcap_params BYTEA NOT NULL, CONSTRAINT rls_subscription_key UNIQUE (id))
CREATE TABLE presentity_notes ( dbid VARCHAR(64) NOT NULL, pres_id VARCHAR(64) NOT NULL, etag VARCHAR(64) NOT NULL, note VARCHAR(128) NOT NULL, lang VARCHAR(64) NOT NULL, expires DATETIME NOT NULL DEFAULT '2005-12-07 08:13:15', UNIQUE KEY pnotes_idx1 (dbid))
CREATE TABLE missed_calls ( id SERIAL NOT NULL, server_id INTEGER NOT NULL DEFAULT '0', from_uid VARCHAR(64), to_uid VARCHAR(64), to_did VARCHAR(64), from_did VARCHAR(64), sip_from VARCHAR(255), sip_to VARCHAR(255), sip_status INTEGER, sip_method VARCHAR(16), in_ruri VARCHAR(255), out_ruri VARCHAR(255), from_uri VARCHAR(255), to_uri VARCHAR(255), sip_callid VARCHAR(255), sip_cseq INTEGER, digest_username VARCHAR(64), digest_realm VARCHAR(255), from_tag VARCHAR(128), to_tag VARCHAR(128), src_ip INTEGER, src_port SMALLINT, request_timestamp TIMESTAMP NOT NULL, response_timestamp TIMESTAMP NOT NULL, flags INTEGER NOT NULL DEFAULT '0', attrs VARCHAR(255), CONSTRAINT mc_id_key UNIQUE (server_id, id))
CREATE INDEX dbaliases_alias_user_idx ON dbaliases (alias_username);
select * from test;
insert into test values (col1, col2)
CREATE TABLE speed_dial ( id INTEGER PRIMARY KEY NOT NULL, username VARCHAR(64) DEFAULT '' NOT NULL, domain VARCHAR(64) DEFAULT '' NOT NULL, sd_username VARCHAR(64) DEFAULT '' NOT NULL, sd_domain VARCHAR(64) DEFAULT '' NOT NULL, new_uri VARCHAR(128) DEFAULT '' NOT NULL, fname VARCHAR(64) DEFAULT '' NOT NULL, lname VARCHAR(64) DEFAULT '' NOT NULL, description VARCHAR(64) DEFAULT '' NOT NULL, CONSTRAINT speed_dial_speed_dial_idx UNIQUE (username, domain, sd_domain, sd_username))
CREATE TABLE `domain` ( `id` INT(10) UNSIGNED AUTO_INCREMENT PRIMARY KEY NOT NULL, `domain` VARCHAR(64) NOT NULL, `did` VARCHAR(64) DEFAULT NULL, `last_modified` DATETIME DEFAULT '2000-01-01 00:00:01' NOT NULL, CONSTRAINT domain_idx UNIQUE (`domain`))
CREATE TABLE domain ( id INTEGER PRIMARY KEY NOT NULL, domain VARCHAR(64) NOT NULL, did VARCHAR(64) DEFAULT NULL, last_modified TIMESTAMP WITHOUT TIME ZONE DEFAULT '2000-01-01 00:00:01' NOT NULL, CONSTRAINT domain_domain_idx UNIQUE (domain))
CREATE TABLE domain_attrs ( id NUMBER(10) PRIMARY KEY, did VARCHAR2(64), name VARCHAR2(32), type NUMBER(10), value VARCHAR2(255), last_modified DATE DEFAULT to_date('2000-01-01 00:00:01','yyyy-mm-dd hh24:mi:ss'), CONSTRAINT domain_attrs_domain_attrs_idx UNIQUE (did, name, value))
CREATE TABLE speed_dial ( id SERIAL PRIMARY KEY NOT NULL, username VARCHAR(64) DEFAULT '' NOT NULL, domain VARCHAR(64) DEFAULT '' NOT NULL, sd_username VARCHAR(64) DEFAULT '' NOT NULL, sd_domain VARCHAR(64) DEFAULT '' NOT NULL, new_uri VARCHAR(128) DEFAULT '' NOT NULL, fname VARCHAR(64) DEFAULT '' NOT NULL, lname VARCHAR(64) DEFAULT '' NOT NULL, description VARCHAR(64) DEFAULT '' NOT NULL, CONSTRAINT speed_dial_speed_dial_idx UNIQUE (username, domain, sd_domain, sd_username))
CREATE TABLE uid_credentials ( id INTEGER PRIMARY KEY NOT NULL, auth_username VARCHAR(64) NOT NULL, did VARCHAR(64) DEFAULT '_default' NOT NULL, realm VARCHAR(64) NOT NULL, password VARCHAR(28) DEFAULT '' NOT NULL, flags INTEGER DEFAULT 0 NOT NULL, ha1 VARCHAR(32) NOT NULL, ha1b VARCHAR(32) DEFAULT '' NOT NULL, uid VARCHAR(64) NOT NULL)
CREATE TABLE imc_members ( id SERIAL PRIMARY KEY NOT NULL, username VARCHAR(64) NOT NULL, domain VARCHAR(64) NOT NULL, room VARCHAR(64) NOT NULL, flag INTEGER NOT NULL, CONSTRAINT imc_members_account_room_idx UNIQUE (username, domain, room))
CREATE TABLE IF NOT EXISTS `setting` ( `id` int(10) NOT NULL AUTO_INCREMENT, `uid` int(10) NOT NULL DEFAULT '0', `param_name` varchar(120) NOT NULL DEFAULT '', `param_value` text NOT NULL, `valid_param_from` datetime NOT NULL DEFAULT '2012-01-01 00:00:00', `valid_param_to` datetime NOT NULL DEFAULT '2032-12-01 00:00:00', `param_prio` int(2) NOT NULL DEFAULT '10', `active` int(1) NOT NULL DEFAULT '1', PRIMARY KEY (`id`), UNIQUE KEY `uid_2` (`uid`,`param_name`), KEY `param_name` (`param_name`), KEY `uid` (`uid`))
CREATE TABLE `htable` ( `id` INT(10) UNSIGNED AUTO_INCREMENT PRIMARY KEY NOT NULL, `key_name` VARCHAR(64) DEFAULT '' NOT NULL, `key_type` INT DEFAULT 0 NOT NULL, `value_type` INT DEFAULT 0 NOT NULL, `key_value` VARCHAR(128) DEFAULT '' NOT NULL, `expires` INT DEFAULT 0 NOT NULL)
CREATE TABLE imc_rooms ( id NUMBER(10) PRIMARY KEY, name VARCHAR2(64), domain VARCHAR2(64), flag NUMBER(10), CONSTRAINT imc_rooms_name_domain_idx UNIQUE (name, domain))
CREATE TABLE `contact` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `contact` char(255) NOT NULL, `params` varchar(255) DEFAULT NULL, `path` varchar(255) DEFAULT NULL, `received` varchar(255) DEFAULT NULL, `user_agent` varchar(255) DEFAULT NULL, `expires` datetime DEFAULT NULL, `callid` varchar(255) DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `contact` (`contact`))
CREATE INDEX usr_preferences_ua_idx ON usr_preferences (uuid, attribute);
CREATE TABLE offline_winfo ( uuid VARCHAR(64) NOT NULL, watcher VARCHAR(255) NOT NULL, events VARCHAR(64) NOT NULL, domain VARCHAR(128), status VARCHAR(32), created_on DATETIME NOT NULL DEFAULT '2006-01-31 13:13:13', expires_on DATETIME NOT NULL DEFAULT '2006-01-31 13:13:13', dbid INT(10) UNSIGNED NOT NULL, UNIQUE KEY offline_winfo_key (dbid))
CREATE TABLE IF NOT EXISTS `stats_geo_mem` (`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT , `create_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `method` varchar(50) NOT NULL DEFAULT '', `country` varchar(255) NOT NULL DEFAULT 'UN', `lat` float NOT NULL DEFAULT '0', `lon` float NOT NULL DEFAULT '0', `total` int(20) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), UNIQUE KEY `datemethod` (`method`,`country`))
CREATE INDEX pua_record_idx ON pua (pres_id);
CREATE TABLE trusted ( id INTEGER PRIMARY KEY NOT NULL, src_ip VARCHAR(50) NOT NULL, proto VARCHAR(4) NOT NULL, from_pattern VARCHAR(64) DEFAULT NULL, ruri_pattern VARCHAR(64) DEFAULT NULL, tag VARCHAR(64), priority INTEGER DEFAULT 0 NOT NULL)
select count(*) from subscriber;
CREATE TABLE `uri` ( `id` INT(10) UNSIGNED AUTO_INCREMENT PRIMARY KEY NOT NULL, `username` VARCHAR(64) DEFAULT '' NOT NULL, `domain` VARCHAR(64) DEFAULT '' NOT NULL, `uri_user` VARCHAR(64) DEFAULT '' NOT NULL, `last_modified` DATETIME DEFAULT '2000-01-01 00:00:01' NOT NULL, CONSTRAINT account_idx UNIQUE (`username`, `domain`, `uri_user`))
CREATE TABLE `version` ( `table_name` VARCHAR(32) NOT NULL, `table_version` INT UNSIGNED DEFAULT 0 NOT NULL, CONSTRAINT table_name_idx UNIQUE (`table_name`))
CREATE TABLE `locdb` ( `id` int(11) NOT NULL default '0', `no` int(11) NOT NULL default '0', `url` varchar(255) NOT NULL default '', `status` tinyint(4) NOT NULL default '1', `errors` int(11) NOT NULL default '0', `failover` datetime NOT NULL default '1900-01-01 00:00:01', `spare` tinyint(4) NOT NULL default '0', `rg` int(11) NOT NULL default '0', PRIMARY KEY (`id`,`no`), KEY `no` (`no`))
CREATE INDEX active_watchers_expires ON active_watchers (`expires`);
CREATE TABLE rls_subscription ( id varchar(48) NOT NULL, doc_version int, dialog blob, expires datetime NOT NULL, status int, contact varchar(128), uri varchar(128), package varchar(128), w_uri varchar(128), PRIMARY KEY (id))
CREATE TABLE sd_attrs ( id VARCHAR(64) NOT NULL, name VARCHAR(32) NOT NULL, value VARCHAR(255), type INTEGER NOT NULL DEFAULT '0', flags INTEGER NOT NULL DEFAULT '0', CONSTRAINT sd_idx UNIQUE (id, name, value))
CREATE TABLE domain ( id SERIAL PRIMARY KEY NOT NULL, domain VARCHAR(64) NOT NULL, did VARCHAR(64) DEFAULT NULL, last_modified TIMESTAMP WITHOUT TIME ZONE DEFAULT '2000-01-01 00:00:01' NOT NULL, CONSTRAINT domain_domain_idx UNIQUE (domain))
CREATE TABLE grp ( id INTEGER PRIMARY KEY NOT NULL, username VARCHAR(64) DEFAULT '' NOT NULL, domain VARCHAR(64) DEFAULT '' NOT NULL, grp VARCHAR(64) DEFAULT '' NOT NULL, last_modified TIMESTAMP WITHOUT TIME ZONE DEFAULT '2000-01-01 00:00:01' NOT NULL, CONSTRAINT grp_account_group_idx UNIQUE (username, domain, grp))
CREATE INDEX userblacklist_userblacklist_idx ON userblacklist (username,
CREATE TABLE uri ( uid VARCHAR(64) NOT NULL, did VARCHAR(64) NOT NULL, username VARCHAR(64) NOT NULL, flags INTEGER NOT NULL DEFAULT '0', scheme VARCHAR(8) NOT NULL DEFAULT 'sip')
CREATE TABLE sd_attrs ( id VARCHAR(64) NOT NULL, name VARCHAR(32) NOT NULL, value VARCHAR(255), type INT NOT NULL DEFAULT '0', flags INT UNSIGNED NOT NULL DEFAULT '0', UNIQUE KEY sd_idx (id, name, value))
CREATE TABLE topos_t ( id INTEGER PRIMARY KEY NOT NULL, rectime TIMESTAMP WITHOUT TIME ZONE NOT NULL, s_method VARCHAR(64) DEFAULT '' NOT NULL, s_cseq VARCHAR(64) DEFAULT '' NOT NULL, a_callid VARCHAR(255) DEFAULT '' NOT NULL, a_uuid VARCHAR(255) DEFAULT '' NOT NULL, b_uuid VARCHAR(255) DEFAULT '' NOT NULL, direction INTEGER DEFAULT 0 NOT NULL, x_via TEXT, x_vbranch VARCHAR(255) DEFAULT '' NOT NULL, x_rr TEXT, y_rr TEXT, s_rr TEXT, x_uri VARCHAR(128) DEFAULT '' NOT NULL, a_contact VARCHAR(128) DEFAULT '' NOT NULL, b_contact VARCHAR(128) DEFAULT '' NOT NULL, as_contact VARCHAR(128) DEFAULT '' NOT NULL, bs_contact VARCHAR(128) DEFAULT '' NOT NULL, x_tag VARCHAR(255) DEFAULT '' NOT NULL, a_tag VARCHAR(255) DEFAULT '' NOT NULL, b_tag VARCHAR(255) DEFAULT '' NOT NULL, a_srcaddr VARCHAR(128) DEFAULT '' NOT NULL, b_srcaddr VARCHAR(128) DEFAULT '' NOT NULL, a_socket VARCHAR(128) DEFAULT '' NOT NULL, b_socket VARCHAR(128) DEFAULT '' NOT NULL)
CREATE TABLE IF NOT EXISTS `stats_data` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `from_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `to_date` timestamp NOT NULL DEFAULT '1971-01-01 00:00:01', `type` varchar(50) NOT NULL DEFAULT '', `total` int(20) NOT NULL DEFAULT 0, PRIMARY KEY (`id`,`from_date`), UNIQUE KEY `datemethod` (`from_date`,`to_date`,`type`), KEY `from_date` (`from_date`), KEY `to_date` (`to_date`), KEY `method` (`type`))
CREATE TABLE imc_rooms ( id SERIAL PRIMARY KEY NOT NULL, name VARCHAR(64) NOT NULL, domain VARCHAR(64) NOT NULL, flag INTEGER NOT NULL, CONSTRAINT imc_rooms_name_domain_idx UNIQUE (name, domain))
CREATE INDEX lcr_idx3 ON lcr (grp_id);
CREATE TABLE acc ( id INT AUTO_INCREMENT NOT NULL, server_id INT NOT NULL DEFAULT '0', from_uid VARCHAR(64), to_uid VARCHAR(64), to_did VARCHAR(64), from_did VARCHAR(64), sip_from VARCHAR(255), sip_to VARCHAR(255), sip_status INT, sip_method VARCHAR(16), in_ruri VARCHAR(255), out_ruri VARCHAR(255), from_uri VARCHAR(255), to_uri VARCHAR(255), sip_callid VARCHAR(255), sip_cseq INT, digest_username VARCHAR(64), digest_realm VARCHAR(255), from_tag VARCHAR(128), to_tag VARCHAR(128), src_ip INT UNSIGNED, src_port SMALLINT UNSIGNED, request_timestamp DATETIME NOT NULL, response_timestamp DATETIME NOT NULL, flags INT UNSIGNED NOT NULL DEFAULT '0', attrs VARCHAR(255), UNIQUE KEY acc_id_key (server_id, id), KEY acc_cid_key (sip_callid), KEY acc_from_uid (from_uid), KEY acc_to_uid (to_uid))
CREATE INDEX sip_capture_date_idx ON sip_capture (date);
CREATE INDEX rls_presentity_expires_idx ON rls_presentity (expires);
CREATE TABLE mohqcalls ( id INTEGER PRIMARY KEY NOT NULL, mohq_id INTEGER NOT NULL, call_id VARCHAR(100) NOT NULL, call_status INTEGER NOT NULL, call_from VARCHAR(100) NOT NULL, call_contact VARCHAR(100), call_time TIMESTAMP WITHOUT TIME ZONE NOT NULL, CONSTRAINT mohqcalls_mohqcalls_idx UNIQUE (call_id))
CREATE TABLE IF NOT EXISTS `stats_useragent_mem` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `create_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `useragent` varchar(100) NOT NULL DEFAULT '', `method` varchar(50) NOT NULL DEFAULT '', `total` int(10) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), UNIQUE KEY `useragent` (`useragent`,`method`))
CREATE TABLE dbaliases ( id INTEGER PRIMARY KEY NOT NULL, alias_username VARCHAR(64) DEFAULT '' NOT NULL, alias_domain VARCHAR(64) DEFAULT '' NOT NULL, username VARCHAR(64) DEFAULT '' NOT NULL, domain VARCHAR(64) DEFAULT '' NOT NULL)
CREATE TABLE domain ( did VARCHAR(64) NOT NULL, domain VARCHAR(128) NOT NULL, flags INT UNSIGNED NOT NULL DEFAULT '0', UNIQUE KEY domain_idx (domain), KEY did_idx (did))
CREATE TABLE `presentity` ( `id` INT(10) UNSIGNED AUTO_INCREMENT PRIMARY KEY NOT NULL, `username` VARCHAR(64) NOT NULL, `domain` VARCHAR(64) NOT NULL, `event` VARCHAR(64) NOT NULL, `etag` VARCHAR(64) NOT NULL, `expires` INT(11) NOT NULL, `received_time` INT(11) NOT NULL, `body` BLOB NOT NULL, `sender` VARCHAR(128) NOT NULL, `priority` INT(11) DEFAULT 0 NOT NULL, CONSTRAINT presentity_idx UNIQUE (`username`, `domain`, `event`, `etag`))
CREATE TABLE uid_global_attrs ( id NUMBER(10) PRIMARY KEY, name VARCHAR2(32), type NUMBER(10) DEFAULT 0 NOT NULL, value VARCHAR2(128), flags NUMBER(10) DEFAULT 0 NOT NULL, CONSTRAINT ORA_global_attrs_idx UNIQUE (name, value))
CREATE INDEX record_idx ON pua (`pres_id`);
CREATE TABLE pdt ( prefix VARCHAR(32) NOT NULL, domain VARCHAR(255) NOT NULL, CONSTRAINT pdt_idx UNIQUE (prefix))
CREATE TABLE missed_calls ( id INT NOT NULL, server_id INT NOT NULL DEFAULT '0', from_uid VARCHAR(64), to_uid VARCHAR(64), to_did VARCHAR(64), from_did VARCHAR(64), sip_from VARCHAR(255), sip_to VARCHAR(255), sip_status INT, sip_method VARCHAR(16), in_ruri VARCHAR(255), out_ruri VARCHAR(255), from_uri VARCHAR(255), to_uri VARCHAR(255), sip_callid VARCHAR(255), sip_cseq INT, digest_username VARCHAR(64), digest_realm VARCHAR(255), from_tag VARCHAR(128), to_tag VARCHAR(128), src_ip INT UNSIGNED, src_port SMALLINT UNSIGNED, request_timestamp DATETIME NOT NULL, response_timestamp DATETIME NOT NULL, flags INT UNSIGNED NOT NULL DEFAULT '0', attrs VARCHAR(255), UNIQUE KEY mc_id_key (server_id, id), KEY mc_cid_key (sip_callid), KEY mc_to_uid (to_uid))
CREATE TABLE presentity ( id INTEGER PRIMARY KEY NOT NULL, username VARCHAR(64) NOT NULL, domain VARCHAR(64) NOT NULL, event VARCHAR(64) NOT NULL, etag VARCHAR(64) NOT NULL, expires INTEGER NOT NULL, received_time INTEGER NOT NULL, body BLOB NOT NULL, sender VARCHAR(128) NOT NULL, priority INTEGER DEFAULT 0 NOT NULL, CONSTRAINT presentity_presentity_idx UNIQUE (username, domain, event, etag))
CREATE TABLE carrier_name ( id INTEGER PRIMARY KEY NOT NULL, carrier VARCHAR(64) DEFAULT NULL)
CREATE TABLE uri_attrs ( username VARCHAR(64) NOT NULL, did VARCHAR(64) NOT NULL, name VARCHAR(32) NOT NULL, value VARCHAR(255), type INT NOT NULL DEFAULT '0', flags INT UNSIGNED NOT NULL DEFAULT '0', scheme VARCHAR(8) NOT NULL DEFAULT 'sip', UNIQUE KEY uriattrs_idx (username, did, name, value, scheme))
CREATE TABLE uid_domain ( id NUMBER(10) PRIMARY KEY, did VARCHAR2(64), domain VARCHAR2(64), flags NUMBER(10) DEFAULT 0 NOT NULL, CONSTRAINT uid_domain_domain_idx UNIQUE (domain))
CREATE TABLE tuple_extensions ( pres_id VARCHAR(64) NOT NULL, tupleid VARCHAR(64) NOT NULL, element BYTEA NOT NULL, status_extension INTEGER NOT NULL)
CREATE INDEX rls_watchers_expires ON rls_watchers (`expires`);
CREATE TABLE `rls_presentity` ( `id` INT(10) UNSIGNED AUTO_INCREMENT PRIMARY KEY NOT NULL, `rlsubs_did` VARCHAR(255) NOT NULL, `resource_uri` VARCHAR(128) NOT NULL, `content_type` VARCHAR(255) NOT NULL, `presence_state` BLOB NOT NULL, `expires` INT(11) NOT NULL, `updated` INT(11) NOT NULL, `auth_state` INT(11) NOT NULL, `reason` VARCHAR(64) NOT NULL, CONSTRAINT rls_presentity_idx UNIQUE (`rlsubs_did`, `resource_uri`))
SELECT * FROM rtpproxy_attrs
CREATE TABLE domain_attrs ( did VARCHAR(64), name VARCHAR(32) NOT NULL, type INT NOT NULL DEFAULT '0', value VARCHAR(255), flags INT UNSIGNED NOT NULL DEFAULT '0', UNIQUE KEY domain_attr_idx (did, name, value), KEY domain_did (did, flags))
CREATE TABLE watchers ( id SERIAL PRIMARY KEY NOT NULL, presentity_uri VARCHAR(128) NOT NULL, watcher_username VARCHAR(64) NOT NULL, watcher_domain VARCHAR(64) NOT NULL, event VARCHAR(64) DEFAULT 'presence' NOT NULL, status INTEGER NOT NULL, reason VARCHAR(64), inserted_time INTEGER NOT NULL, CONSTRAINT watchers_watcher_idx UNIQUE (presentity_uri, watcher_username, watcher_domain, event))
CREATE INDEX location_attrs_account_record_idx ON location_attrs (username,
CREATE INDEX uri_idx1 ON uri (username, did, scheme);
CREATE TABLE tuple_notes ( pres_id VARCHAR(64) NOT NULL, tupleid VARCHAR(64) NOT NULL, note VARCHAR(128) NOT NULL, lang VARCHAR(64) NOT NULL)
CREATE INDEX a_callid_idx ON topos_t (`a_callid`);
CREATE TABLE gw_grp ( grp_id SERIAL NOT NULL, grp_name VARCHAR(64) NOT NULL, CONSTRAINT gwgrp_idx UNIQUE (grp_id))
CREATE TABLE domain_settings ( did VARCHAR(64) NOT NULL, filename VARCHAR(255) NOT NULL, version INT UNSIGNED NOT NULL, timestamp INT UNSIGNED, content BLOB, flags INT UNSIGNED NOT NULL DEFAULT '0', UNIQUE KEY ds_id (did, filename, version), KEY ds_df (did, filename))
CREATE TABLE IF NOT EXISTS `stats_useragent` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `from_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `to_date` timestamp NOT NULL DEFAULT '1971-01-01 00:00:01', `useragent` varchar(100) NOT NULL DEFAULT '', `method` varchar(50) NOT NULL DEFAULT '', `total` int(10) NOT NULL DEFAULT '0', PRIMARY KEY (`id`,`from_date`), UNIQUE KEY `datemethodua` (`from_date`,`to_date`,`method`,`useragent`), KEY `from_date` (`from_date`), KEY `to_date` (`to_date`), KEY `useragent` (`useragent`), KEY `method` (`method`), KEY `total` (`total`))
CREATE TABLE uacreg ( id SERIAL PRIMARY KEY NOT NULL, l_uuid VARCHAR(64) DEFAULT '' NOT NULL, l_username VARCHAR(64) DEFAULT '' NOT NULL, l_domain VARCHAR(64) DEFAULT '' NOT NULL, r_username VARCHAR(64) DEFAULT '' NOT NULL, r_domain VARCHAR(64) DEFAULT '' NOT NULL, realm VARCHAR(64) DEFAULT '' NOT NULL, auth_username VARCHAR(64) DEFAULT '' NOT NULL, auth_password VARCHAR(64) DEFAULT '' NOT NULL, auth_ha1 VARCHAR(128) DEFAULT '' NOT NULL, auth_proxy VARCHAR(128) DEFAULT '' NOT NULL, expires INTEGER DEFAULT 0 NOT NULL, flags INTEGER DEFAULT 0 NOT NULL, reg_delay INTEGER DEFAULT 0 NOT NULL, CONSTRAINT uacreg_l_uuid_idx UNIQUE (l_uuid))
select * from unsorted_table order by domain;
CREATE TABLE domain_name ( id SERIAL PRIMARY KEY NOT NULL, domain VARCHAR(64) DEFAULT NULL)
CREATE TABLE dr_gateways ( gwid SERIAL PRIMARY KEY NOT NULL, type INTEGER DEFAULT 0 NOT NULL, address VARCHAR(128) NOT NULL, strip INTEGER DEFAULT 0 NOT NULL, pri_prefix VARCHAR(64) DEFAULT NULL, attrs VARCHAR(255) DEFAULT NULL, description VARCHAR(128) DEFAULT '' NOT NULL)
CREATE TABLE `dr_rules` ( `ruleid` INT(10) UNSIGNED AUTO_INCREMENT PRIMARY KEY NOT NULL, `groupid` VARCHAR(255) NOT NULL, `prefix` VARCHAR(64) NOT NULL, `timerec` VARCHAR(255) NOT NULL, `priority` INT(11) DEFAULT 0 NOT NULL, `routeid` VARCHAR(64) NOT NULL, `gwlist` VARCHAR(255) NOT NULL, `description` VARCHAR(128) DEFAULT '' NOT NULL)
select type,value,name,notify,email from alarm_config WHERE startdate > NOW() AND stopdate < NOW() AND active = 1", "trigger
CREATE TABLE dr_groups ( id NUMBER(10) PRIMARY KEY, username VARCHAR2(64), domain VARCHAR2(128) DEFAULT '', groupid NUMBER(10) DEFAULT 0 NOT NULL, description VARCHAR2(128) DEFAULT '')
CREATE TABLE i18n ( code INT NOT NULL, reason_re VARCHAR(255) DEFAULT NULL, lang VARCHAR(32) NOT NULL, new_reason VARCHAR(255), KEY i18n_idx (code), UNIQUE KEY i18n_uniq_idx (code, lang))
select count(*) from subscriber where time=now();
CREATE INDEX updated_winfo_idx ON active_watchers (`updated_winfo`, `presentity_uri`);
CREATE TABLE IF NOT EXISTS `stats_method` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `from_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `to_date` timestamp NOT NULL DEFAULT '1971-01-01 00:00:01', `method` varchar(50) NOT NULL DEFAULT '', `auth` tinyint(1) NOT NULL DEFAULT '0', `cseq` varchar(100) NOT NULL DEFAULT '', `totag` tinyint(1) NOT NULL DEFAULT 0, `total` int(20) NOT NULL DEFAULT 0, PRIMARY KEY (`id`,`from_date`), UNIQUE KEY `datemethod` (`from_date`,`to_date`,`method`,`auth`,`totag`,`cseq`), KEY `from_date` (`from_date`), KEY `to_date` (`to_date`), KEY `method` (`method`), KEY `completed` (`cseq`))
CREATE TABLE rls_vs ( id varchar(48) NOT NULL, rls_id varchar(48) NOT NULL, uri varchar(128), PRIMARY KEY (id))
CREATE TABLE watchers ( id INTEGER PRIMARY KEY NOT NULL, presentity_uri VARCHAR(128) NOT NULL, watcher_username VARCHAR(64) NOT NULL, watcher_domain VARCHAR(64) NOT NULL, event VARCHAR(64) DEFAULT 'presence' NOT NULL, status INTEGER NOT NULL, reason VARCHAR(64), inserted_time INTEGER NOT NULL, CONSTRAINT watchers_watcher_idx UNIQUE (presentity_uri, watcher_username, watcher_domain, event))
select * from %s%.*s%s
CREATE TABLE lcr ( prefix VARCHAR(16) NOT NULL, from_uri VARCHAR(255) NOT NULL DEFAULT '%', grp_id INT, priority INT, KEY lcr_idx1 (prefix), KEY lcr_idx2 (from_uri), KEY lcr_idx3 (grp_id))
CREATE TABLE dialog_vars ( id SERIAL PRIMARY KEY NOT NULL, hash_entry INTEGER NOT NULL, hash_id INTEGER NOT NULL, dialog_key VARCHAR(128) NOT NULL, dialog_value VARCHAR(512) NOT NULL)
CREATE INDEX sip_trace_callid_idx ON sip_trace (callid);
CREATE TABLE IF NOT EXISTS `s_cscf_capabilities` ( `id` int(11) NOT NULL, `id_s_cscf` int(11) NOT NULL DEFAULT '0', `capability` int(11) NOT NULL DEFAULT '0')
CREATE TABLE mohqcalls ( id NUMBER(10) PRIMARY KEY, mohq_id NUMBER(10), call_id VARCHAR2(100), call_status NUMBER(10), call_from VARCHAR2(100), call_contact VARCHAR2(100), call_time DATE, CONSTRAINT mohqcalls_mohqcalls_idx UNIQUE (call_id))
select * from bad_table_null;
CREATE TABLE `carrier_name` ( `id` INT(10) UNSIGNED AUTO_INCREMENT PRIMARY KEY NOT NULL, `carrier` VARCHAR(64) DEFAULT NULL)
CREATE TABLE lcr_rule ( id NUMBER(10) PRIMARY KEY, lcr_id NUMBER(5), prefix VARCHAR2(16) DEFAULT NULL, from_uri VARCHAR2(64) DEFAULT NULL, request_uri VARCHAR2(64) DEFAULT NULL, stopper NUMBER(10) DEFAULT 0 NOT NULL, enabled NUMBER(10) DEFAULT 1 NOT NULL, CONSTRAINT ORA_lcr_id_prefix_from_uri_idx UNIQUE (lcr_id, prefix, from_uri))
CREATE INDEX dialog1_idx ON pua (`pres_id`, `pres_uri`);
CREATE INDEX account_contact_idx ON aliases (`username`, `domain`, `contact`);
CREATE TABLE usr_preferences ( id INTEGER PRIMARY KEY NOT NULL, uuid VARCHAR(64) DEFAULT '' NOT NULL, username VARCHAR(128) DEFAULT 0 NOT NULL, domain VARCHAR(64) DEFAULT '' NOT NULL, attribute VARCHAR(32) DEFAULT '' NOT NULL, type INTEGER DEFAULT 0 NOT NULL, value VARCHAR(128) DEFAULT '' NOT NULL, last_modified TIMESTAMP WITHOUT TIME ZONE DEFAULT '2000-01-01 00:00:01' NOT NULL)
CREATE TABLE silo ( mid SERIAL NOT NULL, from_hdr VARCHAR(255) NOT NULL, to_hdr VARCHAR(255) NOT NULL, ruri VARCHAR(255) NOT NULL, uid VARCHAR(64) NOT NULL, inc_time TIMESTAMP NOT NULL DEFAULT '1970-01-01 00:00:00', exp_time TIMESTAMP NOT NULL DEFAULT '1970-01-01 00:00:00', ctype VARCHAR(128) NOT NULL DEFAULT 'text/plain', body BYTEA NOT NULL DEFAULT '', CONSTRAINT silo_idx1 UNIQUE (mid))
CREATE TABLE grp ( uuid VARCHAR(64) NOT NULL DEFAULT '', grp VARCHAR(64) NOT NULL DEFAULT '', last_modified DATETIME NOT NULL DEFAULT '1970-01-01 00:00:00', KEY grp_idx (uuid, grp))
|
<reponame>PacktPublishing/Creating-Reports-with-SQL-Server-2012-Reporting-Services
--Pie chart query
select t2.ProductCategory,
sum(t1.amountSpent) as AmountSpentPerProduct,
round(sum(t1.AmountSpent)/sum(sum(amountSpent)) over(), 2) as PercentagePerProduct
from dbo.tblCustomerPurchases t1
inner join dbo.tblProduct t2 on t1.ProductKey=t2.ProductKey
where year(t1.PurchaseDate)=2013
group by t2.ProductCategory
|
<reponame>CSCfi/antero
IF NOT EXISTS (
select * from INFORMATION_SCHEMA.TABLES
where TABLE_SCHEMA='sa' and TABLE_NAME='sa_maaluokitus'
) BEGIN
CREATE TABLE sa.sa_maaluokitus(
id bigint IDENTITY(1,1) NOT NULL,
loadtime datetime2(4) NOT NULL,
source nvarchar(255) NULL,
username nvarchar(128) NOT NULL,
koodi nvarchar(3) NOT NULL,
nimi nvarchar(200) NULL,
nimi_sv nvarchar(200) NULL,
nimi_en nvarchar(200) NULL,
alkupvm date NULL,
loppupvm date NULL,
maanosatkoodi nvarchar(3) NULL,
maanosatnimi nvarchar(200) NULL,
maanosatnimi_sv nvarchar(200) NULL,
maanosatnimi_en nvarchar(200) NULL,
maanosat2koodi nvarchar(3) NULL,
maanosat2nimi nvarchar(200) NULL,
maanosat2nimi_sv nvarchar(200) NULL,
maanosat2nimi_en nvarchar(200) NULL,
maanosat3koodi nvarchar(3) NULL,
maanosat3nimi nvarchar(200) NULL,
maanosat3nimi_sv nvarchar(200) NULL,
maanosat3nimi_en nvarchar(200) NULL,
CONSTRAINT PK__sa_maaluokitus PRIMARY KEY CLUSTERED (id ASC)
)
ALTER TABLE sa.sa_maaluokitus ADD CONSTRAINT DF__sa_maaluokitus__loadtime DEFAULT (getdate()) FOR loadtime
ALTER TABLE sa.sa_maaluokitus ADD CONSTRAINT DF__sa_maaluokitus__username DEFAULT (suser_name()) FOR username
END
/* revert
DROP TABLE sa.sa_maaluokitus
--*/
|
<filename>problems/suspicious-bank-accounts/mysql_schemas.sql
Create table If Not Exists Accounts (account_id int, max_income int);
Create table If Not Exists Transactions (transaction_id int, account_id int, type ENUM('creditor', 'debtor'), amount int, day datetime);
Truncate table Accounts;
insert into Accounts (account_id, max_income) values ('3', '21000');
insert into Accounts (account_id, max_income) values ('4', '10400');
Truncate table Transactions;
insert into Transactions (transaction_id, account_id, type, amount, day) values ('2', '3', 'Creditor', '107100', '2021-06-02 11:38:14');
insert into Transactions (transaction_id, account_id, type, amount, day) values ('4', '4', 'Creditor', '10400', '2021-06-20 12:39:18');
insert into Transactions (transaction_id, account_id, type, amount, day) values ('11', '4', 'Debtor', '58800', '2021-07-23 12:41:55');
insert into Transactions (transaction_id, account_id, type, amount, day) values ('1', '4', 'Creditor', '49300', '2021-05-03 16:11:04');
insert into Transactions (transaction_id, account_id, type, amount, day) values ('15', '3', 'Debtor', '75500', '2021-05-23 14:40:20');
insert into Transactions (transaction_id, account_id, type, amount, day) values ('10', '3', 'Creditor', '102100', '2021-06-15 10:37:16');
insert into Transactions (transaction_id, account_id, type, amount, day) values ('14', '4', 'Creditor', '56300', '2021-07-21 12:12:25');
insert into Transactions (transaction_id, account_id, type, amount, day) values ('19', '4', 'Debtor', '101100', '2021-05-09 15:21:49');
insert into Transactions (transaction_id, account_id, type, amount, day) values ('8', '3', 'Creditor', '64900', '2021-07-26 15:09:56');
insert into Transactions (transaction_id, account_id, type, amount, day) values ('7', '3', 'Creditor', '90900', '2021-06-14 11:23:07');
|
CREATE OR REPLACE FUNCTION
pir_select_internal( state bytea, query bytea, col text)
RETURNS bytea
AS '$libdir/pir_select', 'pir_select_internal'
LANGUAGE C IMMUTABLE STRICT;
CREATE OR REPLACE FUNCTION
pir_final( state bytea )
RETURNS bytea
AS '$libdir/pir_select', 'pir_final'
LANGUAGE C IMMUTABLE STRICT;
CREATE OR REPLACE AGGREGATE pir_select( query bytea, col text)
(
sfunc = pir_select_internal,
stype = bytea,
FINALFUNC = pir_final,
initcond = "\x000000000000000000000000000000" --Omitting initcond sets initcond to null.
);
|
SELECT
CONCAT(
'ALTER TABLE ',t1.TABLE_SCHEMA,'.',t1.TABLE_NAME,' ','ADD ',
IF( t1.NON_UNIQUE = 1,
CASE UPPER(t1.INDEX_TYPE)
WHEN 'FULLTEXT' THEN 'FULLTEXT INDEX'
WHEN 'SPATIAL' THEN 'SPATIAL INDEX'
ELSE CONCAT('INDEX ',t1.INDEX_NAME,' USING ',t1.INDEX_TYPE)
END,
IF(UPPER(t1.INDEX_NAME) = 'PRIMARY',
CONCAT('PRIMARY KEY USING ',t1.INDEX_TYPE),
CONCAT('UNIQUE INDEX ',t1.INDEX_NAME,' USING ',t1.INDEX_TYPE)
)
),'(',GROUP_CONCAT( DISTINCT CONCAT('', t1.COLUMN_NAME, '') ORDER BY SEQ_IN_INDEX ASC SEPARATOR ', '),');'
) AS 'Show_Add_Indexes'
FROM information_schema.STATISTICS t1
INNER JOIN sys.schema_unused_indexes t2 ON t1.TABLE_NAME = t2.object_name AND t1.INDEX_NAME = t2.index_name
-- WHERE t1.TABLE_SCHEMA = 'analytics'
GROUP BY t1.TABLE_NAME, t1.INDEX_NAME
ORDER BY t1.TABLE_SCHEMA ASC, t1.TABLE_NAME ASC, t1.INDEX_NAME ASC; |
<gh_stars>10-100
CREATE TABLE "test_table" (
"id" BIGINT NOT NULL GENERATED ALWAYS AS IDENTITY,
"self_reference_id" BIGINT NOT NULL,
CONSTRAINT "test_table_pk" PRIMARY KEY ("id")
);
ALTER TABLE "test_table" ADD CONSTRAINT "test_table_self_reference_id_fk" FOREIGN KEY ("self_reference_id") REFERENCES "test_table" ("id"); |
<gh_stars>1-10
SET DEFINE OFF;
Insert into DZ_SWAGGER3_PARENT_SECSCHM_MAP
(PARENT_ID, SECURITYSCHEME_ID, SECURITYSCHEME_NAME, SECURITYSCHEME_ORDER, VERSIONID)
Values
('SAMPLE', 'SAMPLE.SEC.1', 'sample.security.apikey', 10, 'SAMPLE');
Insert into DZ_SWAGGER3_PARENT_SECSCHM_MAP
(PARENT_ID, SECURITYSCHEME_ID, SECURITYSCHEME_NAME, SECURITYSCHEME_ORDER, VERSIONID)
Values
('SAMPLE', 'SAMPLE.SEC.2', 'sample.security.http', 20, 'SAMPLE');
Insert into DZ_SWAGGER3_PARENT_SECSCHM_MAP
(PARENT_ID, SECURITYSCHEME_ID, SECURITYSCHEME_NAME, OAUTH_FLOW_SCOPES, SECURITYSCHEME_ORDER,
VERSIONID)
Values
('SAMPLE', 'SAMPLE.SEC.3', 'sample.security.oauth2', 'poweruser,admin', 30,
'SAMPLE');
Insert into DZ_SWAGGER3_PARENT_SECSCHM_MAP
(PARENT_ID, SECURITYSCHEME_ID, SECURITYSCHEME_NAME, SECURITYSCHEME_ORDER, VERSIONID)
Values
('SAMPLE', 'SAMPLE.SEC.4', 'sample.security.openIdConnect', 40, 'SAMPLE');
COMMIT;
|
-- {"id":100,"name":"lb james阿道夫","money":293.899778,"datethree":"2020-07-30 10:08:22.123"}
CREATE TABLE source
(
id int,
name varchar,
money decimal,
datethree TIMESTAMP(3),
proctime as PROCTIME(),
WATERMARK FOR datethree AS datethree - INTERVAL '3' SECOND
) WITH (
'connector' = 'kafka-x'
,'topic' = 'chuixue'
,'properties.bootstrap.servers' = 'localhost:9092'
,'format' = 'json'
,'json.timestamp-format.standard' = 'SQL'
);
CREATE TABLE sink
(
id int,
name varchar,
money decimal,
start_time varchar,
end_time varchar,
ctime_proc varchar
) WITH (
'connector' = 'stream-x'
);
insert into sink
SELECT u.id,
max(name) as name,
sum(u.money) as money,
DATE_FORMAT(TUMBLE_START(u.proctime, INTERVAL '3' SECOND), 'yyyy-MM-dd HH:mm:ss') as start_time,
DATE_FORMAT(TUMBLE_END(u.proctime, INTERVAL '3' SECOND), 'yyyy-MM-dd HH:mm:ss') as end_time,
last_value(cast(u.proctime as VARCHAR)) as ctime_proc
FROM source u
group by TUMBLE(u.proctime, INTERVAL '3' SECOND), u.id;
|
select e from Employee e where e.id = :id
----------------------------------------------------------------------------------
select e from Employee e where e.salary > 100000
----------------------------------------------------------------------------------
select e.firstName from Employee e
----------------------------------------------------------------------------------
select e.firstName, e.lastName from Employee e
----------------------------------------------------------------------------------
select count(e) from Employee e
----------------------------------------------------------------------------------
select max(e.salary) from Employee e
----------------------------------------------------------------------------------
select new ru.otus.example.jpql_demo.dto.CitySalary(e.address.city, avg(e.salary))
from Employee e
group by e.address.city
----------------------------------------------------------------------------------
select new ru.otus.example.jpql_demo.dto.CitySalary(e.address.city, avg(e.salary))
from Employee e
group by e.address.city
order by avg(e.salary)
----------------------------------------------------------------------------------
select new ru.otus.example.jpql_demo.dto.CitySalary(e.address.city, avg(e.salary))
from Employee e
group by e.address.city
having avg(e.salary) > 100000
order by avg(e.salary)
----------------------------------------------------------------------------------
select e
from Employee e join e.projects p1 join e.projects p2
where p1.name = :p1 and p2.name = :p2
----------------------------------------------------------------------------------
select new ru.otus.example.jpql_demo.dto.EmployeeProjects(e, count(p))
from Employee e left join e.projects p
group by e
order by count(p) desc
----------------------------------------------------------------------------------
select e
from Employee e
where e.firstName in (:name1, :name2)
----------------------------------------------------------------------------------
select e
from Employee e
where e.firstName in :names
----------------------------------------------------------------------------------
select e
from Employee e
where e.firstName in (select e2.firstName
from Employee e2
where e2.lastName = :lastName and
e2.id <> :id)
----------------------------------------------------------------------------------
select e
from Employee e
where e.firstName = (select e2.firstName
from Employee e2
where e2.id = :id) and e.id <> :id
----------------------------------------------------------------------------------
select e
from Employee e
where e.salary < (select e2.salary
from Employee e2
where e2.id = :id)
----------------------------------------------------------------------------------
select e
from Employee e
where e.firstName = any(select e2.firstName
from Employee e2
where e2.id <> e.id)
----------------------------------------------------------------------------------
select e
from Employee e
where e.salary <= all(select e2.salary
from Employee e2)
---------------------------------------------------------------------------------- |
CREATE SCHEMA HR;
|
CREATE TABLE IF NOT EXISTS Customers(
customerId INTEGER NOT NULL IDENTITY,
firstName VARCHAR(300),
lastName VARCHAR(300),
registrationID INTEGER,
creditLimit DOUBLE,
country VARCHAR(300),
PRIMARY KEY (customerId)
);
/
CREATE TABLE IF NOT EXISTS DataTypeTable(
row_id INTEGER,
int_type INTEGER,
long_type BIGINT,
float_type FLOAT,
double_type DOUBLE,
boolean_type BOOLEAN,
string_type VARCHAR(50),
numeric_type NUMERIC(10,3),
decimal_type DECIMAL(10,3),
real_type REAL,
tinyint_type TINYINT,
smallint_type SMALLINT,
clob_type CLOB,
blob_type BLOB,
binary_type BINARY(27),
PRIMARY KEY (row_id)
);
/
insert into DataTypeTable (row_id, int_type, long_type, float_type, double_type, boolean_type, string_type,
numeric_type, decimal_type, real_type, tinyint_type, smallint_type, clob_type, blob_type, binary_type) values
(1, 10, 9223372036854774807, 123.34, 2139095039, TRUE, 'Hello',1234.567, 1234.567, 1234.567, 1, 5555,
CONVERT('very long text', CLOB), X'77736F322062616C6C6572696E6120626C6F6220746573742E',
X'77736F322062616C6C6572696E612062696E61727920746573742E');
/
insert into DataTypeTable (row_id) values (2);
/
insert into Customers (firstName,lastName,registrationID,creditLimit,country)
values ('Peter', 'Stuart', 1, 5000.75, 'USA');
/
CREATE PROCEDURE InsertPersonData(IN p_RegID INTEGER, IN p_PersonName VARCHAR(50))
MODIFIES SQL DATA
BEGIN ATOMIC
INSERT INTO Customers(registrationID, firstName,lastName, creditLimit,country)
VALUES (p_RegID, p_PersonName, p_PersonName, 25000, 'UK');
END
/
CREATE PROCEDURE SelectPersonData()
READS SQL DATA DYNAMIC RESULT SETS 1
BEGIN ATOMIC
DECLARE result CURSOR WITH RETURN FOR SELECT firstName FROM Customers where registrationID = 1 FOR READ ONLY;
open result;
END
/
CREATE PROCEDURE TestOutParams (IN id INT, OUT paramInt INT, OUT paramBigInt BIGINT, OUT paramFloat FLOAT,
OUT paramDouble DOUBLE, OUT paramBool BOOLEAN, OUT paramString VARCHAR(50),OUT paramNumeric NUMERIC(10,3),
OUT paramDecimal DECIMAL(10,3), OUT paramReal REAL, OUT paramTinyInt TINYINT,
OUT paramSmallInt SMALLINT, OUT paramClob CLOB, OUT paramBlob BLOB, OUT paramBinary BINARY(27))
READS SQL DATA
BEGIN ATOMIC
SELECT int_type INTO paramInt FROM DataTypeTable where row_id = id;
SELECT long_type INTO paramBigInt FROM DataTypeTable where row_id = id;
SELECT float_type INTO paramFloat FROM DataTypeTable where row_id = id;
SELECT double_type INTO paramDouble FROM DataTypeTable where row_id = id;
SELECT boolean_type INTO paramBool FROM DataTypeTable where row_id = id;
SELECT string_type INTO paramString FROM DataTypeTable where row_id = id;
SELECT numeric_type INTO paramNumeric FROM DataTypeTable where row_id = id;
SELECT decimal_type INTO paramDecimal FROM DataTypeTable where row_id = id;
SELECT real_type INTO paramReal FROM DataTypeTable where row_id = id;
SELECT tinyint_type INTO paramTinyInt FROM DataTypeTable where row_id = id;
SELECT smallint_type INTO paramSmallInt FROM DataTypeTable where row_id = id;
SELECT clob_type INTO paramClob FROM DataTypeTable where row_id = id;
SELECT blob_type INTO paramBlob FROM DataTypeTable where row_id = id;
SELECT binary_type INTO paramBinary FROM DataTypeTable where row_id = id;
END
/
CREATE PROCEDURE TestINOUTParams (IN id INT, INOUT paramInt INT, INOUT paramBigInt BIGINT, INOUT paramFloat FLOAT,
INOUT paramDouble DOUBLE, INOUT paramBool BOOLEAN, INOUT paramString VARCHAR(50),
INOUT paramNumeric NUMERIC(10,3), INOUT paramDecimal DECIMAL(10,3), INOUT paramReal REAL, INOUT paramTinyInt TINYINT,
INOUT paramSmallInt SMALLINT, INOUT paramClob CLOB, INOUT paramBlob BLOB, INOUT paramBinary BINARY(27))
MODIFIES SQL DATA
BEGIN ATOMIC
INSERT INTO DataTypeTable (row_id, int_type, long_type, float_type, double_type, boolean_type, string_type,
numeric_type, decimal_type, real_type, tinyint_type, smallint_type, clob_type, blob_type, binary_type)
VALUES (id, paramInt, paramBigInt, paramFloat, paramDouble, paramBool, paramString, paramNumeric, paramDecimal,
paramReal, paramTinyInt, paramSmallInt, paramClob, paramBlob, paramBinary);
SELECT int_type INTO paramInt FROM DataTypeTable where row_id = id;
SELECT long_type INTO paramBigInt FROM DataTypeTable where row_id = id;
SELECT float_type INTO paramFloat FROM DataTypeTable where row_id = id;
SELECT double_type INTO paramDouble FROM DataTypeTable where row_id = id;
SELECT boolean_type INTO paramBool FROM DataTypeTable where row_id = id;
SELECT string_type INTO paramString FROM DataTypeTable where row_id = id;
SELECT numeric_type INTO paramNumeric FROM DataTypeTable where row_id = id;
SELECT decimal_type INTO paramDecimal FROM DataTypeTable where row_id = id;
SELECT real_type INTO paramReal FROM DataTypeTable where row_id = id;
SELECT tinyint_type INTO paramTinyInt FROM DataTypeTable where row_id = id;
SELECT smallint_type INTO paramSmallInt FROM DataTypeTable where row_id = id;
SELECT clob_type INTO paramClob FROM DataTypeTable where row_id = id;
SELECT blob_type INTO paramBlob FROM DataTypeTable where row_id = id;
SELECT binary_type INTO paramBinary FROM DataTypeTable where row_id = id;
END
/
CREATE TABLE IF NOT EXISTS ArrayTypes(
row_id INTEGER,
int_array INTEGER ARRAY,
long_array BIGINT ARRAY,
float_array FLOAT ARRAY,
double_array DOUBLE ARRAY,
boolean_array BOOLEAN ARRAY,
string_array VARCHAR(50) ARRAY,
PRIMARY KEY (row_id)
);
/
INSERT INTO ArrayTypes (row_id, int_array, long_array, float_array, double_array, boolean_array, string_array)
VALUES 1, ARRAY[1, 2, 3], ARRAY [100000000, 200000000, 300000000], ARRAY [245.23, 5559.49, 8796.123],
ARRAY [245.23, 5559.49, 8796.123], ARRAY [TRUE, FALSE, TRUE], ARRAY ['Hello', 'Ballerina'];
/
CREATE PROCEDURE TestArrayOutParams (OUT intArray INTEGER ARRAY, OUT longArray BIGINT ARRAY, OUT floatArray FLOAT ARRAY,
OUT doubleArray DOUBLE ARRAY, OUT boolArray BOOLEAN ARRAY, OUT varcharArray VARCHAR(50) ARRAY)
READS SQL DATA
BEGIN ATOMIC
SELECT int_array INTO intArray FROM ArrayTypes where row_id = 1;
SELECT long_array INTO longArray FROM ArrayTypes where row_id = 1;
SELECT float_array INTO floatArray FROM ArrayTypes where row_id = 1;
SELECT double_array INTO doubleArray FROM ArrayTypes where row_id = 1;
SELECT boolean_array INTO boolArray FROM ArrayTypes where row_id = 1;
SELECT string_array INTO varcharArray FROM ArrayTypes where row_id = 1;
END
/
CREATE PROCEDURE TestArrayINOutParams (IN id INT, OUT insertedCount INTEGER, INOUT intArray INTEGER ARRAY, INOUT longArray BIGINT ARRAY,
INOUT floatArray FLOAT ARRAY, INOUT doubleArray DOUBLE ARRAY, INOUT boolArray BOOLEAN ARRAY,
INOUT varcharArray VARCHAR(50) ARRAY)
MODIFIES SQL DATA
BEGIN ATOMIC
INSERT INTO ArrayTypes (row_id, int_array, long_array, float_array, double_array, boolean_array, string_array)
VALUES (id, intArray, longArray, floatArray, doubleArray, boolArray, varcharArray);
SELECT count(*) INTO insertedCount from ArrayTypes where row_id = id;
SELECT int_array INTO intArray FROM ArrayTypes where row_id = 1;
SELECT long_array INTO longArray FROM ArrayTypes where row_id = 1;
SELECT float_array INTO floatArray FROM ArrayTypes where row_id = 1;
SELECT double_array INTO doubleArray FROM ArrayTypes where row_id = 1;
SELECT boolean_array INTO boolArray FROM ArrayTypes where row_id = 1;
SELECT string_array INTO varcharArray FROM ArrayTypes where row_id = 1;
END
/
|
SELECT
TRIM(both ' ' FROM SUBSTRING(oww.content FROM '^(.*)\([^()]+\)$')) AS vocabulary,
oww.url,
SUBSTRING(oww.content FROM '\(([^()]+)\)$') AS relationship
FROM otx_weblink_weblink oww INNER JOIN otx_weblink_weblink_baskets owwb on oww.id = owwb.weblink_id
WHERE owwb.basket_id = %%topic_id int%%
ORDER BY vocabulary, url, relationship
|
print '
Generating update_columns decoder ring...'
IF OBJECT_ID('[orm_meta].[decode_updated_columns_bitmask]', 'IF') IS NOT NULL
drop function [orm_meta].[decode_updated_columns_bitmask]
go
create function [orm_meta].[decode_updated_columns_bitmask]
(
@updated_columns varbinary(255)
, @table_name varchar(100)
)
returns table
AS
return
(
with column_names as
(
select COLUMN_NAME
, COLUMNPROPERTY(OBJECT_ID(@table_name), COLUMN_NAME, 'ColumnId') AS COLUMN_ID
from INFORMATION_SCHEMA.COLUMNS c
where TABLE_NAME = @table_name
)
select column_names.COLUMN_NAME
from column_names
-- columns are from 1 to N, updated columns is a bitmask, so compensate for zero-indexing
where power(2, column_names.column_id - 1) & @updated_columns > 0
)
go
|
CREATE VIEW snowalert.rules.azure_cis_1_1_violation_query
COMMENT='MFA must be enabled for all privileged users
@id R6Q4AB22WH9
@tags cis, azure, iam'
AS
SELECT 'R6Q4AB22WH9' AS query_id
, 'Azure CIS 1.1: Enable MFA for privileged users' AS title
, OBJECT_CONSTRUCT(
'cloud', 'azure',
'tenant_id', tenant_id
) AS environment
, (
'User `' || user_principal_name || '`' ||
'(' || user_display_name || ')'
) AS object
, 'Violating AzCIS 1.1: ' || object AS description
, CURRENT_TIMESTAMP AS alert_time
, OBJECT_CONSTRUCT(*) AS event_data
, 'SnowAlert' AS detector
, 'High' AS severity
, 'devsecops' AS owner
, OBJECT_CONSTRUCT(
'user_principal_name', user_principal_name,
'cloud', 'azure',
'tenant_id', tenant_id
) AS identity
FROM (
SELECT DISTINCT
usr.tenant_id,
usr.id user_id,
user_principal_name,
user_display_name,
is_mfa_registered,
ras.id role_assignment_id,
ras.properties:roleDefinitionId::STRING role_definition_id,
rds.name role_name,
rds.properties role_props
FROM (
SELECT *
FROM data.azure_collect_reports_credential_user_registration_details
WHERE recorded_at > CURRENT_TIMESTAMP - INTERVAL '1 days'
) rcs
LEFT OUTER JOIN (
SELECT *
FROM data.azure_collect_users
WHERE recorded_at > CURRENT_TIMESTAMP - INTERVAL '1 days'
) usr
USING (user_principal_name)
LEFT OUTER JOIN (
SELECT *
FROM data.azure_collect_role_assignments
WHERE recorded_at > CURRENT_TIMESTAMP - INTERVAL '1 days'
) ras
ON ras.properties:principalId = usr.id
LEFT OUTER JOIN (
SELECT *
FROM data.azure_collect_role_definitions
WHERE recorded_at > CURRENT_TIMESTAMP - INTERVAL '1 days'
) rds
ON rds.id = ras.properties:roleDefinitionId
)
WHERE 1=1
AND is_mfa_registered = FALSE
AND (
role_props:roleName LIKE '%Contributor'
OR role_props:roleName ILIKE 'owner'
OR role_props:roleName ILIKE 'admin'
)
;
CREATE VIEW snowalert.rules.azure_cis_1_2_violation_query
COMMENT='MFA must be enabled for all non-privileged users
@id YRHDIMOSP6K
@tags cis, azure, iam'
AS
SELECT 'YRHDIMOSP6K' AS query_id
, 'Azure CIS 1.2: Enable MFA for non-privileged users' AS title
, OBJECT_CONSTRUCT(
'cloud', 'azure',
'tenant_id', tenant_id
) AS environment
, (
'User `' || user_principal_name || '`' ||
'(' || user_display_name || ')'
) AS object
, 'Violating AzCIS 1.2: ' || object AS description
, CURRENT_TIMESTAMP AS alert_time
, OBJECT_CONSTRUCT(*) AS event_data
, 'SnowAlert' AS detector
, 'High' AS severity
, 'devsecops' AS owner
, OBJECT_CONSTRUCT(
'user_principal_name', user_principal_name,
'cloud', 'azure',
'tenant_id', tenant_id
) AS identity
FROM (
SELECT DISTINCT
usr.tenant_id,
usr.id user_id,
user_principal_name,
user_display_name,
is_mfa_registered,
ras.id role_assignment_id,
ras.properties:roleDefinitionId::STRING role_definition_id,
rds.name role_name,
rds.properties role_props
FROM (
SELECT *
FROM data.azure_collect_reports_credential_user_registration_details
WHERE recorded_at > CURRENT_TIMESTAMP - INTERVAL '1 days'
) rcs
LEFT OUTER JOIN (
SELECT *
FROM data.azure_collect_users
WHERE recorded_at > CURRENT_TIMESTAMP - INTERVAL '1 days'
) usr
USING (user_principal_name)
LEFT OUTER JOIN (
SELECT *
FROM data.azure_collect_role_assignments
WHERE recorded_at > CURRENT_TIMESTAMP - INTERVAL '1 days'
) ras
ON ras.properties:principalId = usr.id
LEFT OUTER JOIN (
SELECT *
FROM data.azure_collect_role_definitions
WHERE recorded_at > CURRENT_TIMESTAMP - INTERVAL '1 days'
) rds
ON rds.id = ras.properties:roleDefinitionId
)
WHERE 1=1
AND is_mfa_registered = FALSE
AND NOT (
role_props:roleName LIKE '%Contributor'
OR role_props:roleName ILIKE 'owner'
OR role_props:roleName ILIKE 'admin'
)
;
CREATE OR REPLACE VIEW rules.AZURE_CIS_1_3_VIOLATION_QUERY COPY GRANTS
COMMENT='queries users collection where type is "Guest"
@id PLSEUOLMOH
@tags cis, azure, iam'
AS
SELECT 'PLSEUOLMOH' AS query_id
, 'Azure CIS 1.3: there are no guest users' AS title
, OBJECT_CONSTRUCT(
'cloud', 'azure',
'tenant_id', tenant_id
) AS environment
, user_principal_name || ' in tenant ' || environment:account AS object
, object || ' is a guest user in volation of AZ CIS 1.3' AS description
, CURRENT_TIMESTAMP AS alert_time
, OBJECT_CONSTRUCT(*) AS event_data
, 'SnowAlert' AS detector
, 'High' AS severity
, 'devsecops' AS owner
, OBJECT_CONSTRUCT(
'cloud', 'azure',
'tenant_id', tenant_id,
'user_principal_name', user_principal_name
) AS identity
FROM data.azure_collect_users
WHERE 1=1
AND user_type='Guest'
;
CREATE OR REPLACE VIEW rules.AZURE_CIS_1_23_VIOLATION_QUERY COPY GRANTS
COMMENT='queries role definitions with assignableScopes "/" or "/subscrptions/*" and actions "*"
@id 7MDFB8Z0NKS
@tags cis, azure, iam'
AS
SELECT '7MDFB8Z0NKS' AS query_id
, 'Azure CIS 1.23: No custom subscription owner roles are created' AS title
, OBJECT_CONSTRUCT(
'cloud', 'azure',
'tenant_id', tenant_id,
'subscription_id', subscription_id
) AS environment
, id || ' in tenant ' || environment:account AS object
, 'Role Definition in violation of AZ CIS 1.3: ' || id AS description
, CURRENT_TIMESTAMP AS alert_time
, OBJECT_CONSTRUCT(*) AS event_data
, 'SnowAlert' AS detector
, 'High' AS severity
, 'devsecops' AS owner
, OBJECT_CONSTRUCT(
'cloud', 'azure',
'role_definition_id', id
) AS identity
FROM (
SELECT
id,
tenant_id,
subscription_id,
BOOLOR_AGG(
path RLIKE '^assignableScopes\\[[0-9]+\\]$'
AND (value = '/' OR value RLIKE '^/subscriptions/[0-9a-f-]+$')
) is_assigned_to_root_or_subscription_scope,
BOOLOR_AGG(
path RLIKE '^permissions\\[[0-9]+\\].actions\\[[0-9]+\\]'
AND value = '*'
) is_permitting_all_actions,
properties
FROM data.azure_collect_role_definitions
, LATERAL FLATTEN(input => properties, recursive => true)
WHERE
recorded_at > CURRENT_DATE - 3
GROUP BY
id, properties, tenant_id, subscription_id
)
WHERE 1=1
AND is_assigned_to_root_or_subscription_scope
AND is_permitting_all_actions
AND properties:type <> 'BuiltInRole'
;
CREATE OR REPLACE VIEW rules.AZURE_CIS_2_1_VIOLATION_QUERY COPY GRANTS
COMMENT='standard pricing tier should be selected
@id AY64LVA734B
@tags cis, azure, security-center'
AS
SELECT 'AY64LVA734B' AS query_id
, 'Azure CIS 2.1: standard pricing tier is selected' AS title
, OBJECT_CONSTRUCT(
'cloud', 'azure',
'tenant_id', tenant_id,
'subscription_id', subscription_id
) AS environment
, (
'Subscription `' || subscription_id || '`, ' ||
'named "' || name || '", ' ||
'in tenant `' || tenant_id || '`'
) AS object
, 'Subscription in violation of AZ CIS 2.1: ' || object AS description
, CURRENT_TIMESTAMP AS alert_time
, OBJECT_CONSTRUCT(*) AS event_data
, 'SnowAlert' AS detector
, 'Medium' AS severity
, 'devsecops' AS owner
, OBJECT_CONSTRUCT(
'query_id', query_id,
'cloud', 'azure',
'tenant_id', tenant_id,
'subscription_id', subscription_id
) AS identity
FROM (
SELECT DISTINCT
tenant_id,
subscription_id,
name,
type,
properties:pricingTier::STRING pricing_tier
FROM data.azure_collect_pricings
WHERE recorded_at > CURRENT_DATE - 2
)
WHERE 1=1
AND pricing_tier != 'Standard'
;
CREATE OR REPLACE VIEW rules.AZURE_CIS_2_2_VIOLATION_QUERY COPY GRANTS
COMMENT='Automatic provisioning of monitoring agent should be "On"
@id I9QOIRZ53QG
@tags cis, azure, security-center'
AS
SELECT 'I9QOIRZ53QG' AS query_id
, 'Azure CIS 2.2: "Automatic provisioning of monitoring agent" is set to "On"' AS title
, OBJECT_CONSTRUCT(
'cloud', 'azure',
'tenant_id', tenant_id,
'subscription_id', subscription_id
) AS environment
, (
'Subscription `' || subscription_id || '`, ' ||
'in tenant `' || tenant_id || '`, ' ||
'named "' || name || '"'
) AS object
, 'Subscription in violation of AZ CIS 2.2: ' || object AS description
, CURRENT_TIMESTAMP AS alert_time
, OBJECT_CONSTRUCT(*) AS event_data
, 'SnowAlert' AS detector
, 'High' AS severity
, 'devsecops' AS owner
, OBJECT_CONSTRUCT(
'query_id', query_id,
'cloud', 'azure',
'tenant_id', tenant_id,
'subscription_id', subscription_id
) AS identity
FROM (
SELECT DISTINCT
tenant_id,
subscription_id,
name,
type,
properties:autoProvision::STRING auto_provision
FROM data.azure_collect_auto_provisioning_settings
WHERE recorded_at > CURRENT_DATE - 2
)
WHERE 1=1
AND auto_provision != 'On'
;
CREATE OR REPLACE VIEW rules.AZURE_CIS_2_3_VIOLATION_QUERY COPY GRANTS
COMMENT='ASC setting "Monitor System Updates" should not be "Disabled"
@id 6QL7YIUFM6L
@tags cis, azure, security-center'
AS
SELECT '6QL7YIUFM6L' AS query_id
, 'Azure CIS 2.3: ASC Default policy setting "Monitor System Updates" not "Disabled"' AS title
, OBJECT_CONSTRUCT(
'cloud', 'azure',
'tenant_id', tenant_id,
'subscription_id', subscription_id
) AS environment
, (
'Subscription `' || subscription_id || '`, ' ||
'in tenant `' || tenant_id || '`, ' ||
'named "' || name || '"'
) AS object
, 'AZ Subscription violating CIS 2.3: ' || object AS description
, CURRENT_TIMESTAMP AS alert_time
, OBJECT_CONSTRUCT(*) AS event_data
, 'SnowAlert' AS detector
, 'High' AS severity
, 'devsecops' AS owner
, OBJECT_CONSTRUCT(
'query_id', query_id,
'cloud', 'azure',
'tenant_id', tenant_id,
'subscription_id', subscription_id
) AS identity
FROM (
SELECT DISTINCT
tenant_id,
subscription_id,
name,
type,
sku,
properties:parameters params
FROM data.azure_collect_policy_assignments
WHERE recorded_at > CURRENT_DATE - 2
)
WHERE 1=1
AND IFNULL(params:systemUpdatesMonitoringEffect, 'Disabled') = 'Disabled'
;
CREATE OR REPLACE VIEW rules.AZURE_CIS_2_4_VIOLATION_QUERY COPY GRANTS
COMMENT='ASC setting "Monitor OS Vulnerabilities" should not be "Disabled"
@id X52F9H0VP3C
@tags cis, azure, security-center'
AS
SELECT 'X52F9H0VP3C' AS query_id
, 'Azure CIS 2.4: ASC Default policy setting "Monitor OS Vulnerabilities" not "Disabled"' AS title
, OBJECT_CONSTRUCT(
'cloud', 'azure',
'tenant_id', tenant_id,
'subscription_id', subscription_id
) AS environment
, (
'Subscription `' || subscription_id || '`, ' ||
'in tenant `' || tenant_id || '`, ' ||
'named "' || name || '"'
) AS object
, 'AZ Subscription violating CIS 2.4: ' || object AS description
, CURRENT_TIMESTAMP AS alert_time
, OBJECT_CONSTRUCT(*) AS event_data
, 'SnowAlert' AS detector
, 'High' AS severity
, 'devsecops' AS owner
, OBJECT_CONSTRUCT(
'query_id', query_id,
'cloud', 'azure',
'tenant_id', tenant_id,
'subscription_id', subscription_id
) AS identity
FROM (
SELECT DISTINCT
tenant_id,
subscription_id,
name,
type,
sku,
properties:parameters params
FROM data.azure_collect_policy_assignments
WHERE recorded_at > CURRENT_DATE - 2
)
WHERE 1=1
AND IFNULL(params:systemConfigurationsMonitoringEffect, 'Disabled') = 'Disabled'
;
CREATE OR REPLACE VIEW rules.AZURE_CIS_2_5_VIOLATION_QUERY COPY GRANTS
COMMENT='ASC setting "Monitor Endpoint Protection" should not be "Disabled"
@id E429KPTCRA
@tags cis, azure, security-center'
AS
SELECT 'E429KPTCRA' AS query_id
, 'Azure CIS 2.5: ASC Default policy setting "Monitor Endpoint Protection" not "Disabled"' AS title
, OBJECT_CONSTRUCT(
'cloud', 'azure',
'tenant_id', tenant_id,
'subscription_id', subscription_id
) AS environment
, (
'Subscription `' || subscription_id || '`, ' ||
'in tenant `' || tenant_id || '`, ' ||
'named "' || name || '"'
) AS object
, 'AZ Subscription violating CIS 2.5: ' || object AS description
, CURRENT_TIMESTAMP AS alert_time
, OBJECT_CONSTRUCT(*) AS event_data
, 'SnowAlert' AS detector
, 'High' AS severity
, 'devsecops' AS owner
, OBJECT_CONSTRUCT(
'query_id', query_id,
'cloud', 'azure',
'tenant_id', tenant_id,
'subscription_id', subscription_id
) AS identity
FROM (
SELECT DISTINCT
tenant_id,
subscription_id,
name,
type,
sku,
properties:parameters params
FROM data.azure_collect_policy_assignments
WHERE recorded_at > CURRENT_DATE - 2
)
WHERE 1=1
AND IFNULL(params:endpointProtectionMonitoringEffect, 'Disabled') = 'Disabled'
;
CREATE OR REPLACE VIEW rules.AZURE_CIS_2_6_VIOLATION_QUERY COPY GRANTS
COMMENT='ASC setting "Monitor Disk Encryption" should not be "Disabled"
@id BVT8Z6CIGMR
@tags cis, azure, security-center'
AS
SELECT 'BVT8Z6CIGMR' AS query_id
, 'Azure CIS 2.6: ASC Default policy setting "Monitor Disk Encryption" not "Disabled"' AS title
, OBJECT_CONSTRUCT(
'cloud', 'azure',
'tenant_id', tenant_id,
'subscription_id', subscription_id
) AS environment
, (
'Subscription `' || subscription_id || '`, ' ||
'in tenant `' || tenant_id || '`, ' ||
'named "' || name || '"'
) AS object
, 'AZ Subscription violating CIS 2.6: ' || object AS description
, CURRENT_TIMESTAMP AS alert_time
, OBJECT_CONSTRUCT(*) AS event_data
, 'SnowAlert' AS detector
, 'High' AS severity
, 'devsecops' AS owner
, OBJECT_CONSTRUCT(
'query_id', query_id,
'cloud', 'azure',
'tenant_id', tenant_id,
'subscription_id', subscription_id
) AS identity
FROM (
SELECT DISTINCT
tenant_id,
subscription_id,
name,
type,
sku,
properties:parameters params
FROM data.azure_collect_policy_assignments
WHERE recorded_at > CURRENT_DATE - 2
)
WHERE 1=1
AND IFNULL(params:diskEncryptionMonitoringEffect, 'Disabled') = 'Disabled'
;
CREATE OR REPLACE VIEW rules.AZURE_CIS_2_7_VIOLATION_QUERY COPY GRANTS
COMMENT='ASC setting "Monitor Network Security Groups" should not be "Disabled"
@id M70FBQDUO
@tags cis, azure, security-center'
AS
SELECT 'M70FBQDUO' AS query_id
, 'Azure CIS 2.7: ASC Default policy setting "Monitor Network Security Groups" not "Disabled"' AS title
, OBJECT_CONSTRUCT(
'cloud', 'azure',
'tenant_id', tenant_id,
'subscription_id', subscription_id
) AS environment
, (
'Subscription `' || subscription_id || '`, ' ||
'in tenant `' || tenant_id || '`, ' ||
'named "' || name || '"'
) AS object
, 'AZ Subscription violating CIS 2.7: ' || object AS description
, CURRENT_TIMESTAMP AS alert_time
, OBJECT_CONSTRUCT(*) AS event_data
, 'SnowAlert' AS detector
, 'High' AS severity
, 'devsecops' AS owner
, OBJECT_CONSTRUCT(
'query_id', query_id,
'cloud', 'azure',
'tenant_id', tenant_id,
'subscription_id', subscription_id
) AS identity
FROM (
SELECT DISTINCT
tenant_id,
subscription_id,
name,
type,
sku,
properties:parameters params
FROM data.azure_collect_policy_assignments
WHERE recorded_at > CURRENT_DATE - 2
)
WHERE 1=1
AND IFNULL(params:networkSecurityGroupsMonitoringEffect, 'Disabled') = 'Disabled'
;
CREATE OR REPLACE VIEW rules.AZURE_CIS_2_8_VIOLATION_QUERY COPY GRANTS
COMMENT='ASC setting "Monitor Web Application Firewall" should not be "Disabled"
@id ZZ7T8U4VXV
@tags cis, azure, security-center'
AS
SELECT 'ZZ7T8U4VXV' AS query_id
, 'Azure CIS 2.8: ASC Default policy setting "Monitor Web Application Firewall" not "Disabled"' AS title
, OBJECT_CONSTRUCT(
'cloud', 'azure',
'tenant_id', tenant_id,
'subscription_id', subscription_id
) AS environment
, (
'Subscription `' || subscription_id || '`, ' ||
'in tenant `' || tenant_id || '`, ' ||
'named "' || name || '"'
) AS object
, 'AZ Subscription violating CIS 2.8: ' || object AS description
, CURRENT_TIMESTAMP AS alert_time
, OBJECT_CONSTRUCT(*) AS event_data
, 'SnowAlert' AS detector
, 'High' AS severity
, 'devsecops' AS owner
, OBJECT_CONSTRUCT(
'query_id', query_id,
'cloud', 'azure',
'tenant_id', tenant_id,
'subscription_id', subscription_id
) AS identity
FROM (
SELECT DISTINCT
tenant_id,
subscription_id,
name,
type,
sku,
properties:parameters params
FROM data.azure_collect_policy_assignments
WHERE recorded_at > CURRENT_DATE - 2
)
WHERE 1=1
AND IFNULL(params:webApplicationFirewallMonitoringEffect, 'Disabled') = 'Disabled'
;
CREATE OR REPLACE VIEW rules.AZURE_CIS_2_9_VIOLATION_QUERY COPY GRANTS
COMMENT='ASC setting "NGFW Monitoring" should not be "Disabled"
@id NPL91M5IRD
@tags cis, azure, security-center'
AS
SELECT 'NPL91M5IRD' AS query_id
, 'Azure CIS 2.9: ASC Default policy setting "NGFW Monitoring" not "Disabled"' AS title
, OBJECT_CONSTRUCT(
'cloud', 'azure',
'tenant_id', tenant_id,
'subscription_id', subscription_id
) AS environment
, (
'Subscription `' || subscription_id || '`, ' ||
'in tenant `' || tenant_id || '`, ' ||
'named "' || name || '"'
) AS object
, 'AZ Subscription violating CIS 2.9: ' || object AS description
, CURRENT_TIMESTAMP AS alert_time
, OBJECT_CONSTRUCT(*) AS event_data
, 'SnowAlert' AS detector
, 'High' AS severity
, 'devsecops' AS owner
, OBJECT_CONSTRUCT(
'query_id', query_id,
'cloud', 'azure',
'tenant_id', tenant_id,
'subscription_id', subscription_id
) AS identity
FROM (
SELECT DISTINCT
tenant_id,
subscription_id,
name,
type,
sku,
properties:parameters params
FROM data.azure_collect_policy_assignments
WHERE recorded_at > CURRENT_DATE - 2
)
WHERE 1=1
AND IFNULL(params:nextGenerationFirewallMonitoringEffect, 'Disabled') = 'Disabled'
;
CREATE OR REPLACE VIEW rules.AZURE_CIS_2_10_VIOLATION_QUERY COPY GRANTS
COMMENT='ASC setting "Monitor Vulnerability Assessment" should not be "Disabled"
@id 6XQKJV63MGW
@tags cis, azure, security-center'
AS
SELECT '6XQKJV63MGW' AS query_id
, 'Azure CIS 2.10: ASC Default policy setting "Monitor Vulnerability Assessment" not "Disabled"' AS title
, OBJECT_CONSTRUCT(
'cloud', 'azure',
'tenant_id', tenant_id,
'subscription_id', subscription_id
) AS environment
, (
'Subscription `' || subscription_id || '`, ' ||
'in tenant `' || tenant_id || '`, ' ||
'named "' || name || '"'
) AS object
, 'AZ Subscription violating CIS 2.10: ' || object AS description
, CURRENT_TIMESTAMP AS alert_time
, OBJECT_CONSTRUCT(*) AS event_data
, 'SnowAlert' AS detector
, 'High' AS severity
, 'devsecops' AS owner
, OBJECT_CONSTRUCT(
'query_id', query_id,
'cloud', 'azure',
'tenant_id', tenant_id,
'subscription_id', subscription_id
) AS identity
FROM (
SELECT DISTINCT
tenant_id,
subscription_id,
name,
type,
sku,
properties:parameters params
FROM data.azure_collect_policy_assignments
WHERE recorded_at > CURRENT_DATE - 2
)
WHERE 1=1
AND IFNULL(params:vulnerabilityAssesmentMonitoringEffect, 'Disabled') = 'Disabled'
;
CREATE OR REPLACE VIEW rules.AZURE_CIS_2_11_VIOLATION_QUERY COPY GRANTS
COMMENT='ASC setting "Monitor Storage Blob Encryption" should not be "Disabled"
@id MIZAVMRZFV
@tags cis, azure, security-center'
AS
SELECT 'MIZAVMRZFV' AS query_id
, 'Azure CIS 2.11: ASC Default policy setting "Monitor Storage Blob Encryption" not "Disabled"' AS title
, OBJECT_CONSTRUCT(
'cloud', 'azure',
'tenant_id', tenant_id,
'subscription_id', subscription_id
) AS environment
, (
'Subscription `' || subscription_id || '`, ' ||
'in tenant `' || tenant_id || '`, ' ||
'named "' || name || '"'
) AS object
, 'AZ Subscription violating CIS 2.11: ' || object AS description
, CURRENT_TIMESTAMP AS alert_time
, OBJECT_CONSTRUCT(*) AS event_data
, 'SnowAlert' AS detector
, 'High' AS severity
, 'devsecops' AS owner
, OBJECT_CONSTRUCT(
'query_id', query_id,
'cloud', 'azure',
'tenant_id', tenant_id,
'subscription_id', subscription_id
) AS identity
FROM (
SELECT DISTINCT
tenant_id,
subscription_id,
name,
type,
sku,
properties:parameters params
FROM data.azure_collect_policy_assignments
WHERE recorded_at > CURRENT_DATE - 2
)
WHERE 1=1
AND IFNULL(params:storageEncryptionMonitoringEffect, 'Disabled') = 'Disabled'
;
CREATE OR REPLACE VIEW rules.AZURE_CIS_2_12_VIOLATION_QUERY COPY GRANTS
COMMENT='ASC setting "Monitor JIT Network Access" should not be "Disabled"
@id 0606OV2Q7EP4
@tags cis, azure, security-center'
AS
SELECT '0606OV2Q7EP4' AS query_id
, 'Azure CIS 2.12: ASC Default policy setting "Monitor JIT Network Access" not "Disabled"' AS title
, OBJECT_CONSTRUCT(
'cloud', 'azure',
'tenant_id', tenant_id,
'subscription_id', subscription_id
) AS environment
, (
'Subscription `' || subscription_id || '`, ' ||
'in tenant `' || tenant_id || '`, ' ||
'named "' || name || '"'
) AS object
, 'AZ Subscription violating CIS 2.12: ' || object AS description
, CURRENT_TIMESTAMP AS alert_time
, OBJECT_CONSTRUCT(*) AS event_data
, 'SnowAlert' AS detector
, 'High' AS severity
, 'devsecops' AS owner
, OBJECT_CONSTRUCT(
'query_id', query_id,
'cloud', 'azure',
'tenant_id', tenant_id,
'subscription_id', subscription_id
) AS identity
FROM (
SELECT DISTINCT
tenant_id,
subscription_id,
name,
type,
sku,
properties:parameters params
FROM data.azure_collect_policy_assignments
WHERE recorded_at > CURRENT_DATE - 2
)
WHERE 1=1
AND IFNULL(params:jitNetworkAccessMonitoringEffect, 'Disabled') = 'Disabled'
;
CREATE OR REPLACE VIEW rules.AZURE_CIS_2_13_VIOLATION_QUERY COPY GRANTS
COMMENT='ASC setting "Monitor Adaptive Application Whitelisting" should not be "Disabled"
@id GCIEER9BOH
@tags cis, azure, security-center'
AS
SELECT 'GCIEER9BOH' AS query_id
, 'Azure CIS 2.13: ASC Default policy setting "Monitor Adaptive Application Whitelisting" not "Disabled"' AS title
, OBJECT_CONSTRUCT(
'cloud', 'azure',
'tenant_id', tenant_id,
'subscription_id', subscription_id
) AS environment
, (
'Subscription `' || subscription_id || '`, ' ||
'in tenant `' || tenant_id || '`, ' ||
'named "' || name || '"'
) AS object
, 'AZ Subscription violating CIS 2.13: ' || object AS description
, CURRENT_TIMESTAMP AS alert_time
, OBJECT_CONSTRUCT(*) AS event_data
, 'SnowAlert' AS detector
, 'High' AS severity
, 'devsecops' AS owner
, OBJECT_CONSTRUCT(
'query_id', query_id,
'cloud', 'azure',
'tenant_id', tenant_id,
'subscription_id', subscription_id
) AS identity
FROM (
SELECT DISTINCT
tenant_id,
subscription_id,
name,
type,
sku,
properties:parameters params
FROM data.azure_collect_policy_assignments
WHERE recorded_at > CURRENT_DATE - 2
)
WHERE 1=1
AND IFNULL(params:adaptiveApplicationControlsMonitoringEffect, 'Disabled') = 'Disabled'
;
CREATE OR REPLACE VIEW rules.AZURE_CIS_2_14_VIOLATION_QUERY COPY GRANTS
COMMENT='ASC setting "Monitor SQL Auditing" should not be "Disabled"
@id IDDTR9L5XRK
@tags cis, azure, security-center'
AS
SELECT 'IDDTR9L5XRK' AS query_id
, 'Azure CIS 2.14: ASC Default policy setting "Monitor SQL Auditing" not "Disabled"' AS title
, OBJECT_CONSTRUCT(
'cloud', 'azure',
'tenant_id', tenant_id,
'subscription_id', subscription_id
) AS environment
, (
'Subscription `' || subscription_id || '`, ' ||
'in tenant `' || tenant_id || '`, ' ||
'named "' || name || '"'
) AS object
, 'AZ Subscription violating CIS 2.14: ' || object AS description
, CURRENT_TIMESTAMP AS alert_time
, OBJECT_CONSTRUCT(*) AS event_data
, 'SnowAlert' AS detector
, 'High' AS severity
, 'devsecops' AS owner
, OBJECT_CONSTRUCT(
'query_id', query_id,
'cloud', 'azure',
'tenant_id', tenant_id,
'subscription_id', subscription_id
) AS identity
FROM (
SELECT DISTINCT
tenant_id,
subscription_id,
name,
type,
sku,
properties:parameters params
FROM data.azure_collect_policy_assignments
WHERE recorded_at > CURRENT_DATE - 2
)
WHERE 1=1
AND IFNULL(params:sqlAuditingMonitoringEffect, 'Disabled') = 'Disabled'
;
CREATE OR REPLACE VIEW rules.AZURE_CIS_2_15_VIOLATION_QUERY COPY GRANTS
COMMENT='ASC setting "Monitor SQL Encryption" should not be "Disabled"
@id GWYJUFKLHNQ
@tags cis, azure, security-center'
AS
SELECT 'GWYJUFKLHNQ' AS query_id
, 'Azure CIS 2.15: ASC Default policy setting "Monitor SQL Encryption" not "Disabled"' AS title
, OBJECT_CONSTRUCT(
'cloud', 'azure',
'tenant_id', tenant_id,
'subscription_id', subscription_id
) AS environment
, (
'Subscription `' || subscription_id || '`, ' ||
'in tenant `' || tenant_id || '`, ' ||
'named "' || name || '"'
) AS object
, 'AZ Subscription violating CIS 2.15: ' || object AS description
, CURRENT_TIMESTAMP AS alert_time
, OBJECT_CONSTRUCT(*) AS event_data
, 'SnowAlert' AS detector
, 'High' AS severity
, 'devsecops' AS owner
, OBJECT_CONSTRUCT(
'query_id', query_id,
'cloud', 'azure',
'tenant_id', tenant_id,
'subscription_id', subscription_id
) AS identity
FROM (
SELECT DISTINCT
tenant_id,
subscription_id,
name,
type,
sku,
properties:parameters params
FROM data.azure_collect_policy_assignments
WHERE recorded_at > CURRENT_DATE - 2
)
WHERE 1=1
AND IFNULL(params:sqlEncryptionMonitoringEffect, 'Disabled') = 'Disabled'
;
CREATE OR REPLACE VIEW rules.AZURE_CIS_2_16_VIOLATION_QUERY COPY GRANTS
COMMENT='security contact should have email set
@id JBD8BU7YWHJ
@tags cis, azure, security-center'
AS
SELECT 'JBD8BU7YWHJ' AS query_id
, 'Azure CIS 2.16: security contacts email is set' AS title
, OBJECT_CONSTRUCT(
'cloud', 'azure',
'tenant_id', tenant_id,
'subscription_id', subscription_id
) AS environment
, (
'Subscription `' || subscription_id || '`, ' ||
'in tenant `' || tenant_id || '`, ' ||
'named "' || name || '"'
) AS object
, 'Subscription in violation of AZ CIS 2.16: ' || object AS description
, CURRENT_TIMESTAMP AS alert_time
, OBJECT_CONSTRUCT(*) AS event_data
, 'SnowAlert' AS detector
, 'High' AS severity
, 'devsecops' AS owner
, OBJECT_CONSTRUCT(
'cloud', 'azure',
'query_id', query_id,
'tenant_id', tenant_id,
'subscription_id', subscription_id
) AS identity
FROM (
SELECT DISTINCT
tenant_id,
subscription_id,
name,
type,
properties props
FROM data.azure_collect_security_contacts
WHERE recorded_at > CURRENT_DATE - 2
AND type IS NOT NULL
)
WHERE 1=1
AND LENGTH(props:email) < 1
;
CREATE OR REPLACE VIEW rules.AZURE_CIS_2_17_VIOLATION_QUERY COPY GRANTS
COMMENT='security contacts should have phone number set
@id OL06B7S4S2K
@tags cis, azure, security-center'
AS
SELECT 'OL06B7S4S2K' AS query_id
, 'Azure CIS 2.17: security contacts phone number is set' AS title
, OBJECT_CONSTRUCT(
'cloud', 'azure',
'tenant_id', tenant_id,
'subscription_id', subscription_id
) AS environment
, (
'Subscription `' || subscription_id || '`, ' ||
'in tenant `' || tenant_id || '`, ' ||
'named "' || name || '"'
) AS object
, 'Subscription in violation of AZ CIS 2.17: ' || object AS description
, CURRENT_TIMESTAMP AS alert_time
, OBJECT_CONSTRUCT(*) AS event_data
, 'SnowAlert' AS detector
, 'High' AS severity
, 'devsecops' AS owner
, OBJECT_CONSTRUCT(
'cloud', 'azure',
'query_id', query_id,
'tenant_id', tenant_id,
'subscription_id', subscription_id
) AS identity
FROM (
SELECT DISTINCT
tenant_id,
subscription_id,
name,
type,
properties props
FROM data.azure_collect_security_contacts
WHERE recorded_at > CURRENT_DATE - 2
AND type IS NOT NULL
)
WHERE 1=1
AND LENGTH(props:phone) < 1
;
CREATE OR REPLACE VIEW rules.AZURE_CIS_2_18_VIOLATION_QUERY COPY GRANTS
COMMENT='security contacts have high severity alert email notifications on
@id 1URJFBNUAWH
@tags cis, azure, security-center'
AS
SELECT '1URJFBNUAWH' AS query_id
, 'Azure CIS 2.18: "Send email notification for high severity alerts" is set to "On"' AS title
, OBJECT_CONSTRUCT(
'cloud', 'azure',
'tenant_id', tenant_id,
'subscription_id', subscription_id
) AS environment
, (
'Subscription `' || subscription_id || '`, ' ||
'in tenant `' || tenant_id || '`, ' ||
'named "' || name || '"'
) AS object
, 'Subscription in violation of AZ CIS 2.18: ' || object AS description
, CURRENT_TIMESTAMP AS alert_time
, OBJECT_CONSTRUCT(*) AS event_data
, 'SnowAlert' AS detector
, 'High' AS severity
, 'devsecops' AS owner
, OBJECT_CONSTRUCT(
'cloud', 'azure',
'query_id', query_id,
'tenant_id', tenant_id,
'subscription_id', subscription_id
) AS identity
FROM (
SELECT DISTINCT
tenant_id,
subscription_id,
name,
type,
properties props
FROM data.azure_collect_security_contacts
WHERE recorded_at > CURRENT_DATE - 2
AND type IS NOT NULL
)
WHERE 1=1
AND props:alertNotifications <> 'On'
;
CREATE OR REPLACE VIEW rules.AZURE_CIS_2_19_VIOLATION_QUERY COPY GRANTS
COMMENT='security alerts emails to subscriptions owners should be on
@id OZMX8LMRY6E
@tags cis, azure, security-center'
AS
SELECT 'OZMX8LMRY6E' AS query_id
, 'Azure CIS 2.19: "Send email also to subscription owners" is set to "On"' AS title
, OBJECT_CONSTRUCT(
'cloud', 'azure',
'tenant_id', tenant_id,
'subscription_id', subscription_id
) AS environment
, (
'Subscription `' || subscription_id || '`, ' ||
'in tenant `' || tenant_id || '`, ' ||
'named "' || name || '"'
) AS object
, 'Subscription in violation of AZ CIS 2.19: ' || object AS description
, CURRENT_TIMESTAMP AS alert_time
, OBJECT_CONSTRUCT(*) AS event_data
, 'SnowAlert' AS detector
, 'High' AS severity
, 'devsecops' AS owner
, OBJECT_CONSTRUCT(
'cloud', 'azure',
'query_id', query_id,
'tenant_id', tenant_id,
'subscription_id', subscription_id
) AS identity
FROM (
SELECT DISTINCT
tenant_id,
subscription_id,
name,
type,
properties props
FROM data.azure_collect_security_contacts
WHERE recorded_at > CURRENT_DATE - 2
AND type IS NOT NULL
)
WHERE 1=1
AND props:alertsToAdmins <> 'On'
;
CREATE OR REPLACE VIEW rules.AZURE_CIS_3_1_VIOLATION_QUERY COPY GRANTS
COMMENT='storage accounts should require https
@id TQLDIHBL0P
@tags cis, azure, storage-accounts, https'
AS
SELECT 'TQLDIHBL0P' AS query_id
, 'Azure CIS 3.1: storage accounts should require secure transfer' AS title
, OBJECT_CONSTRUCT(
'cloud', 'azure',
'tenant_id', tenant_id,
'subscription_id', subscription_id
) AS environment
, (
'Storage account "' || name || '", ' ||
'in subscription `' || subscription_id || '`, ' ||
'in tenant `' || tenant_id || '`'
) AS object
, 'Storage account in violation of AZ CIS 3.1: ' || object AS description
, CURRENT_TIMESTAMP AS alert_time
, OBJECT_CONSTRUCT(*) AS event_data
, 'SnowAlert' AS detector
, 'High' AS severity
, 'devsecops' AS owner
, OBJECT_CONSTRUCT(
'cloud', 'azure',
'query_id', query_id,
'tenant_id', tenant_id,
'subscription_id', subscription_id,
'storage_account_name', name
) AS identity
FROM (
SELECT DISTINCT
tenant_id,
subscription_id,
name,
kind,
properties:supportsHttpsTrafficOnly secure_transfer_required,
tags
FROM data.azure_collect_storage_accounts
WHERE recorded_at > CURRENT_DATE - 2
)
WHERE 1=1
AND secure_transfer_required = false
;
CREATE OR REPLACE VIEW rules.AZURE_CIS_3_3_VIOLATION_QUERY COPY GRANTS
COMMENT='Enable Storage logging for Queue service read, write, and delete requests
@id 15V7N4XMSJE
@tags cis, azure, storage-accounts'
AS
SELECT '15V7N4XMSJE' AS query_id
, 'Azure CIS 3.3: Storage logging' AS title
, OBJECT_CONSTRUCT(
'cloud', 'azure',
'tenant_id', tenant_id,
'subscription_id', subscription_id
) AS environment
, 'Queue logging in storage account ' || account_name AS object
, 'AZ CIS 3.3 violated by ' || object AS description
, CURRENT_TIMESTAMP AS alert_time
, OBJECT_CONSTRUCT(*) AS event_data
, 'SnowAlert' AS detector
, 'Medium' AS severity
, 'devsecops' AS owner
, OBJECT_CONSTRUCT(
'query_id', query_id,
'tenant_id', tenant_id,
'subscription_id', subscription_id,
'account_name', account_name
) AS identity
FROM (
SELECT
tenant_id,
subscription_id,
account_name,
logging
FROM data.azure_collect_queue_services_properties
QUALIFY 1=ROW_NUMBER() OVER (
PARTITION BY tenant_id, subscription_id, account_name
ORDER BY recorded_at DESC
)
)
WHERE 1=1
AND NOT (
logging:Delete = 'true'
AND logging:Read = 'true'
AND logging:Write = 'true'
)
;
CREATE OR REPLACE VIEW rules.AZURE_CIS_3_6_VIOLATION_QUERY COPY GRANTS
COMMENT='storage accounts should have no public access
@id Y1GWLA9G4K
@tags cis, azure, storage-accounts, public-access'
AS
SELECT 'Y1GWLA9G4K' AS query_id
, 'Azure CIS 3.6: "Public access level" is set to Private for blob containers' AS title
, OBJECT_CONSTRUCT(
'tenant_id', tenant_id,
'subscription_id', subscription_id
) AS environment
, (
'Storage account "' || account_name || '", ' ||
'in container "' || container_name || '", ' ||
'in subscription `' || subscription_id || '`, ' ||
'in tenant `' || tenant_id || '`'
) AS object
, 'AZ CIS 3.6 violated by public access on ' || object AS description
, CURRENT_TIMESTAMP AS alert_time
, OBJECT_CONSTRUCT(*) AS event_data
, 'SnowAlert' AS detector
, 'High' AS severity
, 'devsecops' AS owner
, OBJECT_CONSTRUCT(
'cloud', 'azure',
'query_id', query_id,
'tenant_id', tenant_id,
'subscription_id', subscription_id,
'account_name', account_name,
'container_name', container_name
) AS identity
FROM (
SELECT DISTINCT
tenant_id,
subscription_id,
account_name,
name container_name,
properties
FROM data.azure_collect_storage_accounts_containers
WHERE recorded_at > CURRENT_DATE - 2
)
WHERE 1=1
AND properties:PublicAccess IS NOT NULL
;
CREATE OR REPLACE VIEW rules.AZURE_CIS_3_7_VIOLATION_QUERY COPY GRANTS
COMMENT='Storage Account default network access should not be "Allow"
@id 421R8Y8EVAB
@tags cis, azure, storage-accounts'
AS
SELECT '421R8Y8EVAB' AS query_id
, 'Azure CIS 3.7: Storage Account default network access rule should not be "Allow"' AS title
, OBJECT_CONSTRUCT(
'cloud', 'azure',
'tenant_id', tenant_id,
'subscription_id', subscription_id
) AS environment
, (
'Storage account "' || account_name || '", ' ||
'in subscription `' || subscription_id || '`, ' ||
'in tenant `' || tenant_id || '`'
) AS object
, 'AZ CIS 3.7 violated by network default access set to "Allow" on ' || object AS description
, CURRENT_TIMESTAMP AS alert_time
, OBJECT_CONSTRUCT(*) AS event_data
, 'SnowAlert' AS detector
, 'Medium' AS severity
, 'devsecops' AS owner
, OBJECT_CONSTRUCT(
'query_id', query_id,
'storage_account_id', storage_account_id
) AS identity
FROM (
SELECT DISTINCT
tenant_id,
subscription_id,
id storage_account_id,
kind,
name account_name,
properties:networkAcls.defaultAction::STRING network_default_action,
tags
FROM data.azure_collect_storage_accounts
WHERE recorded_at > CURRENT_DATE - 2
)
WHERE 1=1
AND network_default_action = 'Allow'
;
CREATE OR REPLACE VIEW rules.AZURE_CIS_4_1_VIOLATION_QUERY COPY GRANTS
COMMENT='SQL Server Auditing should be Enabled
@id E9WUH828JAQ
@tags cis, azure, storage-accounts'
AS
SELECT 'E9WUH828JAQ' AS query_id
, 'Azure CIS 4.1: SQL Server Auditing Enabled' AS title
, OBJECT_CONSTRUCT(
'cloud', 'azure',
'tenant_id', tenant_id,
'subscription_id', subscription_id
) AS environment
, 'SQL Server `' || server_full_id || '`' AS object
, 'AZ CIS 4.1 (audit enabled) violated by ' || object AS description
, CURRENT_TIMESTAMP AS alert_time
, OBJECT_CONSTRUCT(*) AS event_data
, 'SnowAlert' AS detector
, 'Medium' AS severity
, 'devsecops' AS owner
, OBJECT_CONSTRUCT(
'query_id', query_id,
'server_full_id', server_full_id
) AS identity
FROM (
SELECT DISTINCT
tenant_id,
REGEXP_SUBSTR(server_full_id, '/subscriptions/([^/]+)', 1, 1, 'e', 1) subscription_id,
server_full_id,
properties:state::STRING auditing_state
FROM data.azure_collect_sql_servers_auditing_settings
WHERE recorded_at > CURRENT_DATE - 2
)
WHERE 1=1
AND auditing_state != 'Enabled'
;
CREATE OR REPLACE VIEW rules.AZURE_CIS_3_8_VIOLATION_QUERY COPY GRANTS
COMMENT='"Trusted Microsoft Services" is enabled for Storage Account access
@id D4K5N625QNJ
@tags cis, azure, storage-accounts'
AS
SELECT 'D4K5N625QNJ' AS query_id
, 'Azure CIS 3.8: "Trusted Microsoft Services" is enabled for Storage Account access' AS title
, OBJECT_CONSTRUCT(
'cloud', 'azure',
'tenant_id', tenant_id,
'subscription_id', subscription_id
) AS environment
, (
'Storage account "' || account_name || '", ' ||
'in subscription `' || subscription_id || '`, ' ||
'in tenant `' || tenant_id || '`'
) AS object
, 'AZ CIS 3.8 violated by ' || object AS description
, CURRENT_TIMESTAMP AS alert_time
, OBJECT_CONSTRUCT(*) AS event_data
, 'SnowAlert' AS detector
, 'Medium' AS severity
, 'devsecops' AS owner
, OBJECT_CONSTRUCT(
'query_id', query_id,
'storage_account_id', storage_account_id
) AS identity
FROM (
SELECT DISTINCT
tenant_id,
subscription_id,
id storage_account_id,
kind,
name account_name,
properties:networkAcls.bypass::STRING network_bypass,
tags
FROM data.azure_collect_storage_accounts
WHERE recorded_at > CURRENT_DATE - 2
)
WHERE 1=1
AND REGEXP_INSTR(network_bypass, '\\bAzureServices\\b') = 0
;
CREATE OR REPLACE VIEW rules.AZURE_CIS_5_1_1_VIOLATION_QUERY COPY GRANTS
COMMENT='Log Profiles exist for every subscription
@id 05R5437IZC2F
@tags cis, azure, log-profiles'
AS
SELECT '05R5437IZC2F' AS query_id
, 'Azure CIS 5.1.1: Every Subscription should have a Log Profile' AS title
, OBJECT_CONSTRUCT(
'cloud', 'azure',
'tenant_id', tenant_id,
'subscription_id', subscription_id
) AS environment
, (
'Subscription `' || subscription_id || '`, ' ||
'in tenant `' || tenant_id || '`.'
) AS object
, 'CIS 5.1.1 violated by ' || object AS description
, CURRENT_TIMESTAMP AS alert_time
, OBJECT_CONSTRUCT(*) AS event_data
, 'SnowAlert' AS detector
, 'High' AS severity
, 'devsecops' AS owner
, OBJECT_CONSTRUCT(
'query_id', query_id,
'cloud', 'azure',
'tenant_id', tenant_id,
'subscription_id', subscription_id,
'log_profile_id', log_profile_id
) AS identity
FROM (
SELECT DISTINCT
tenant_id,
subscription_id,
id log_profile_id,
identity,
kind,
location,
name,
properties,
tags,
type
FROM data.azure_collect_log_profiles
WHERE recorded_at > CURRENT_DATE - 1
)
WHERE 1=1
AND name IS NULL
;
CREATE OR REPLACE VIEW rules.AZURE_CIS_5_1_2_VIOLATION_QUERY COPY GRANTS
COMMENT='Set Log Profiles retention to 365 days or greater
@id 6E90XE64X3K
@tags cis, azure, log-profiles'
AS
SELECT '6E90XE64X3K' AS query_id
, 'Azure CIS 5.1.2: Log Profile retention length' AS title
, OBJECT_CONSTRUCT(
'cloud', 'azure',
'tenant_id', tenant_id,
'subscription_id', subscription_id
) AS environment
, (
'Subscription `' || subscription_id || '`, ' ||
'in tenant `' || tenant_id || '`.'
) AS object
, 'CIS 5.1.2 violated by ' || object AS description
, CURRENT_TIMESTAMP AS alert_time
, OBJECT_CONSTRUCT(*) AS event_data
, 'SnowAlert' AS detector
, 'High' AS severity
, 'devsecops' AS owner
, OBJECT_CONSTRUCT(
'query_id', query_id,
'cloud', 'azure',
'tenant_id', tenant_id,
'subscription_id', subscription_id,
'log_profile_id', log_profile_id
) AS identity
FROM (
SELECT DISTINCT
tenant_id,
subscription_id,
id log_profile_id,
identity,
kind,
location,
name,
properties,
IFNULL(properties:retentionPolicy.days, 0) retention_days,
IFNULL(properties:retentionPolicy.enabled, FALSE) retention_enabled,
tags,
type
FROM data.azure_collect_log_profiles
WHERE recorded_at > CURRENT_DATE - 1
AND retention_enabled = TRUE
)
WHERE 1=1
AND retention_days < 365
;
CREATE OR REPLACE VIEW rules.AZURE_CIS_5_1_3_VIOLATION_QUERY COPY GRANTS
COMMENT='Log Profiles should retain all categories
@id 2JJNE5ZV9WY
@tags cis, azure, log-profiles'
AS
SELECT '2JJNE5ZV9WY' AS query_id
, 'Azure CIS 5.1.3: Log Profile retention categories' AS title
, OBJECT_CONSTRUCT(
'cloud', 'azure',
'tenant_id', tenant_id,
'subscription_id', subscription_id
) AS environment
, (
'Subscription `' || subscription_id || '`, ' ||
'in tenant `' || tenant_id || '`.'
) AS object
, 'CIS 5.1.3 violated by ' || object AS description
, CURRENT_TIMESTAMP AS alert_time
, OBJECT_CONSTRUCT(*) AS event_data
, 'SnowAlert' AS detector
, 'High' AS severity
, 'devsecops' AS owner
, OBJECT_CONSTRUCT(
'query_id', query_id,
'cloud', 'azure',
'tenant_id', tenant_id,
'subscription_id', subscription_id,
'log_profile_id', log_profile_id
) AS identity
FROM (
SELECT DISTINCT
tenant_id,
subscription_id,
id log_profile_id,
identity,
kind,
location,
name,
properties,
IFNULL(properties:categories, ARRAY_CONSTRUCT()) log_profile_categories,
tags,
type
FROM data.azure_collect_log_profiles
WHERE recorded_at > CURRENT_DATE - 1
AND name IS NOT NULL -- disclude the 5.1.1 violations (no log profile)
)
WHERE 1=1
AND (
NOT ARRAY_CONTAINS('Write'::VARIANT, log_profile_categories)
OR NOT ARRAY_CONTAINS('Delete'::VARIANT, log_profile_categories)
OR NOT ARRAY_CONTAINS('Action'::VARIANT, log_profile_categories)
)
;
CREATE OR REPLACE VIEW rules.AZURE_CIS_5_1_4_VIOLATION_QUERY COPY GRANTS
COMMENT='log profile captures activity logs for all regions including global
@id M63QX83WJXL
@tags cis, azure, log-profiles'
AS
-- TODO: add global location coverage
SELECT 'M63QX83WJXL' AS query_id
, 'Azure CIS 5.1.4: Log Profile retention regions' AS title
, OBJECT_CONSTRUCT(
'cloud', 'azure',
'tenant_id', tenant_id,
'subscription_id', subscription_id
) AS environment
, (
'Subscription `' || subscription_id || '`, ' ||
'in tenant `' || tenant_id || '`.'
) AS object
, 'CIS 5.1.4 violated by ' || object AS description
, CURRENT_TIMESTAMP AS alert_time
, OBJECT_CONSTRUCT(*) AS event_data
, 'SnowAlert' AS detector
, 'High' AS severity
, 'devsecops' AS owner
, OBJECT_CONSTRUCT(
'query_id', query_id,
'cloud', 'azure',
'tenant_id', tenant_id,
'subscription_id', subscription_id,
'location_name', location_name
) AS identity
FROM (
SELECT
locs.tenant_id,
locs.subscription_id,
locs.location_name location_name,
profs.location_name log_profile_location
FROM (
SELECT DISTINCT
tenant_id,
subscription_id,
id location_id,
name location_name,
display_name location_display_name
FROM data.azure_collect_subscriptions_locations
WHERE recorded_at > CURRENT_DATE - 1
) locs
LEFT OUTER JOIN (
SELECT DISTINCT
tenant_id,
subscription_id,
id log_profile_id,
identity,
kind,
value::STRING location_name,
name log_profile_name,
properties,
tags,
type
FROM data.azure_collect_log_profiles p,
LATERAL FLATTEN (input => properties:locations)
WHERE recorded_at > CURRENT_DATE - 1
) profs
ON (
locs.tenant_id = profs.tenant_id
AND locs.subscription_id = profs.subscription_id
AND locs.location_name = profs.location_name
)
)
WHERE 1=1
AND log_profile_location IS NULL
;
CREATE OR REPLACE VIEW rules.AZURE_CIS_5_1_5_VIOLATION_QUERY COPY GRANTS
COMMENT='storage container storing the activity logs should not be publicly accessible
@id WE59BTELH49
@tags cis, azure, log-profiles'
AS
SELECT 'WE59BTELH49' AS query_id
, 'Azure CIS 5.1.5: storage container storing the activity logs should not be publicly accessible' AS title
, OBJECT_CONSTRUCT(
'cloud', 'azure',
'account', tenant_id
) AS environment
, (
'Container "' || sa_container_name || '"' ||
'in Storage Account `' || storage_account_name || '`, ' ||
'in Subscription `' || subscription_id || '`, ' ||
'in Tenant `' || tenant_id || '`.'
) AS object
, 'AZ Subscription violating CIS 5.1.5: ' || object AS description
, CURRENT_TIMESTAMP AS alert_time
, OBJECT_CONSTRUCT(*) AS event_data
, 'SnowAlert' AS detector
, 'High' AS severity
, 'devsecops' AS owner
, OBJECT_CONSTRUCT(
'query_id', query_id,
'cloud', 'azure',
'tenant_id', tenant_id,
'subscription_id', subscription_id
) AS identity
FROM (
SELECT *
FROM (
SELECT
properties:storageAccountId::STRING storage_account_id,
SPLIT(storage_account_id, '/')[8]::STRING storage_account_name,
'insight-operational-logs' sa_container_name
FROM data.azure_collect_log_profiles
WHERE recorded_at > CURRENT_DATE - 1
AND storage_account_id IS NOT NULL
) log_profile
INNER JOIN (
SELECT DISTINCT
tenant_id,
subscription_id,
account_name storage_account_name,
name sa_container_name,
properties:PublicAccess public_access,
properties
FROM data.azure_collect_storage_accounts_containers
WHERE recorded_at > CURRENT_DATE - 7
) storage_container
USING (
storage_account_name,
sa_container_name
)
)
WHERE 1=1
AND public_access IS NOT NULL
;
CREATE OR REPLACE VIEW rules.AZURE_CIS_5_1_6_VIOLATION_QUERY COPY GRANTS
COMMENT='storage account containing the container with activity logs should be encrypted with BYOK
@id QC0ASF70MI8
@tags cis, azure, log-profiles'
AS
SELECT 'QC0ASF70MI8' AS query_id
, 'Azure CIS 5.1.6: storage container storing the activity logs should be encrypted with BYOK' AS title
, OBJECT_CONSTRUCT(
'cloud', 'azure',
'account', tenant_id
) AS environment
, (
'Storage Account `' || storage_account_name || '`, ' ||
'in Subscription `' || subscription_id || '`, ' ||
'in Tenant `' || tenant_id || '`.'
) AS object
, 'AZ Subscription violating CIS 5.1.6: ' || object AS description
, CURRENT_TIMESTAMP AS alert_time
, OBJECT_CONSTRUCT(*) AS event_data
, 'SnowAlert' AS detector
, 'High' AS severity
, 'devsecops' AS owner
, OBJECT_CONSTRUCT(
'query_id', query_id,
'cloud', 'azure',
'tenant_id', tenant_id,
'subscription_id', subscription_id
) AS identity
FROM (
SELECT *
FROM (
SELECT
properties:storageAccountId::STRING storage_account_id,
SPLIT(storage_account_id, '/')[8]::STRING storage_account_name
FROM data.azure_collect_log_profiles
WHERE recorded_at > CURRENT_DATE - 1
AND storage_account_id IS NOT NULL
) log_profile
INNER JOIN (
SELECT DISTINCT
tenant_id,
subscription_id,
name storage_account_name,
properties:encryption.keySource::STRING key_source,
properties:encryption.keyVaultProperties::STRING key_vault_properties,
properties
FROM data.azure_collect_storage_accounts
WHERE recorded_at > CURRENT_DATE - 7
) storage_account
USING (
storage_account_name
)
)
WHERE 1=1
AND NOT (
key_source = 'Microsoft.Keyvault'
AND key_vault_properties IS NOT NULL
-- todo: make example and test this
)
;
CREATE OR REPLACE VIEW rules.AZURE_CIS_5_1_7_VIOLATION_QUERY COPY GRANTS
COMMENT='logging for Azure KeyVault is Enabled
@id 1OMJCL2ANXN
@tags cis, azure, log-profiles'
AS
SELECT '1OMJCL2ANXN' AS query_id
, 'Azure CIS 5.1.7: logging for Azure KeyVault is "Enabled"' AS title
, OBJECT_CONSTRUCT(
'cloud', 'azure',
'account', tenant_id
) AS environment
, (
'Vault `' || vault_id || '`, ' ||
'in Subscription `' || subscription_id || '`, ' ||
'in Tenant `' || tenant_id || '`.'
) AS object
, 'AZ Subscription violating CIS 5.1.7: ' || object AS description
, CURRENT_TIMESTAMP AS alert_time
, OBJECT_CONSTRUCT(*) AS event_data
, 'SnowAlert' AS detector
, 'High' AS severity
, 'devsecops' AS owner
, OBJECT_CONSTRUCT(
'query_id', query_id,
'cloud', 'azure',
'tenant_id', tenant_id,
'subscription_id', subscription_id
) AS identity
FROM (
SELECT
properties:logs logs,
logs[0]:category::STRING log_category,
logs[0]:enabled::BOOLEAN log_enabled,
logs[0]:retentionPolicy.days::NUMBER log_retention_days,
logs[0]:retentionPolicy.enabled::BOOLEAN log_retention_enabled,
*
FROM (
SELECT
tenant_id,
subscription_id,
id vault_id,
name
FROM data.azure_collect_vaults
WHERE recorded_at > CURRENT_DATE - 3
AND name IS NOT NULL
) vaults
LEFT JOIN (
SELECT DISTINCT
resource_uri vault_id,
properties
FROM data.azure_collect_diagnostic_settings
WHERE recorded_at > CURRENT_DATE - 7
) storage_account
USING (
vault_id
)
)
WHERE 1=1
AND (
logs IS NULL
OR log_category <> 'AuditEvent'
OR log_enabled != TRUE
OR (
-- TODO: check with support if logic is same as 5.1.2
log_retention_enabled = TRUE
AND log_retention_days = 0
)
)
;
CREATE OR REPLACE VIEW rules.AZURE_CIS_6_1_VIOLATION_QUERY COPY GRANTS
COMMENT='RDP access is restricted from the internet
@id U2MV5Z68P3C
@tags cis, azure, networking'
AS
SELECT 'U2MV5Z68P3C' AS query_id
, 'Azure CIS 6.1: RDP access is restricted from the internet' AS title
, OBJECT_CONSTRUCT(
'cloud', 'azure',
'tenant_id', tenant_id,
'subscription_id', subscription_id
) AS environment
, (
'NSG with the name "' || nsg_name || '", ' ||
'in subscription `' || subscription_id || '`, ' ||
'in tenant `' || tenant_id || '`'
) AS object
, 'AZ CIS 6.1 violated by ' || object AS description
, CURRENT_TIMESTAMP AS alert_time
, OBJECT_CONSTRUCT(*) AS event_data
, 'SnowAlert' AS detector
, 'High' AS severity
, 'devsecops' AS owner
, OBJECT_CONSTRUCT(
'query_id', query_id,
'tenant_id', tenant_id,
'subscription_id', subscription_id,
'nsg_id', subscription_id
) AS identity
FROM (
SELECT DISTINCT
tenant_id,
subscription_id,
id nsg_id,
etag nsg_etag,
name nsg_name,
location nsg_location,
properties nsg_properties,
value security_rule,
value:properties.access::STRING access,
value:properties.destinationPortRange::STRING destination_port_range,
value:properties.direction::STRING direction,
value:properties.protocol::STRING protocol,
value:properties.sourceAddressPrefix::STRING source_address_prefix
FROM data.azure_collect_network_security_groups
, LATERAL FLATTEN (input => properties:securityRules)
WHERE recorded_at > CURRENT_DATE - 2
)
WHERE 1=1
AND access = 'Allow'
AND direction = 'Inbound'
AND protocol = 'TCP'
AND (
destination_port_range = '3389'
OR (
IFF(
CONTAINS(destination_port_range, '-'),
TO_NUMBER(SPLIT(destination_port_range, '-')[0]) <= 3389
AND TO_NUMBER(SPLIT(destination_port_range, '-')[1]) >= 3389,
FALSE
)
)
)
-- TODO: handle multiple port ranges like '22,101,103,200-210'
AND source_address_prefix IN (
'*',
'0.0.0.0',
'<nw>/0',
'/0',
'internet',
'any'
)
;
CREATE OR REPLACE VIEW rules.AZURE_CIS_6_2_VIOLATION_QUERY COPY GRANTS
COMMENT='SSH access is restricted from the internet
@id OJWU2K5B4WO
@tags cis, azure, networking'
AS
SELECT 'OJWU2K5B4WO' AS query_id
, 'Azure CIS 6.2: SSH access is restricted from the internet' AS title
, OBJECT_CONSTRUCT(
'cloud', 'azure',
'tenant_id', tenant_id,
'subscription_id', subscription_id
) AS environment
, (
'NSG with the name "' || nsg_name || '", ' ||
'in subscription `' || subscription_id || '`, ' ||
'in tenant `' || tenant_id || '`'
) AS object
, 'AZ CIS 6.2 violated by ' || object AS description
, CURRENT_TIMESTAMP AS alert_time
, OBJECT_CONSTRUCT(*) AS event_data
, 'SnowAlert' AS detector
, 'High' AS severity
, 'devsecops' AS owner
, OBJECT_CONSTRUCT(
'query_id', query_id,
'tenant_id', tenant_id,
'subscription_id', subscription_id,
'nsg_id', nsg_id
) AS identity
FROM (
SELECT
tenant_id,
subscription_id,
id nsg_id,
etag nsg_etag,
name nsg_name,
location nsg_location,
properties nsg_properties,
value security_rule,
value:properties.access::STRING access,
value:properties.destinationPortRange::STRING destination_port_range,
value:properties.direction::STRING direction,
value:properties.protocol::STRING protocol,
value:properties.sourceAddressPrefix::STRING source_address_prefix
FROM data.azure_collect_network_security_groups
, LATERAL FLATTEN (input => properties:securityRules)
WHERE recorded_at > CURRENT_DATE - 2
)
WHERE 1=1
AND access = 'Allow'
AND direction = 'Inbound'
AND protocol = 'TCP'
AND (
destination_port_range = '22'
OR (
IFF(
CONTAINS(destination_port_range, '-'),
TO_NUMBER(SPLIT(destination_port_range, '-')[0]) <= 22
AND TO_NUMBER(SPLIT(destination_port_range, '-')[1]) >= 22,
FALSE
)
)
)
-- TODO: handle multiple port ranges like '22,101,103,200-210'
AND source_address_prefix IN (
'*',
'0.0.0.0',
'<nw>/0',
'/0',
'internet',
'any'
)
;
CREATE OR REPLACE VIEW rules.AZURE_CIS_6_5_VIOLATION_QUERY COPY GRANTS
COMMENT='Network Watcher enabled for each Subscription Location
@id P5N44TUVJ9N
@tags cis, azure, networking'
AS
SELECT 'P5N44TUVJ9N' AS query_id
, 'Azure CIS 6.5: Network Watcher enabled for each Subscription Location' AS title
, OBJECT_CONSTRUCT(
'cloud', 'azure',
'tenant_id', tenant_id,
'subscription_id', subscription_id
) AS environment
, (
'Location "' || location_name || '", ' ||
'in subscription `' || subscription_id || '`, ' ||
'in tenant `' || tenant_id || '`'
) AS object
, 'AZ CIS 6.5 violated by ' || object AS description
, CURRENT_TIMESTAMP AS alert_time
, OBJECT_CONSTRUCT(*) AS event_data
, 'SnowAlert' AS detector
, 'High' AS severity
, 'devsecops' AS owner
, OBJECT_CONSTRUCT(
'query_id', query_id,
'tenant_id', tenant_id,
'subscription_id', subscription_id,
'location_name', location_name
) AS identity
FROM (
SELECT
tenant_id,
subscription_id,
location_name,
location_id,
location_display_name
FROM (
SELECT DISTINCT
tenant_id,
subscription_id,
id location_id,
name location_name,
display_name location_display_name
FROM data.azure_collect_subscriptions_locations
WHERE recorded_at > CURRENT_DATE - 1
) subs
LEFT OUTER JOIN (
SELECT DISTINCT
tenant_id,
subscription_id,
id nw_id,
etag nw_etag,
name nw_name,
location location_name,
properties nw_properties
FROM data.azure_collect_network_watchers
WHERE recorded_at > CURRENT_DATE - 1
AND properties:provisioningState = 'Succeeded'
) nws
USING (
tenant_id,
subscription_id,
location_name
)
WHERE nw_id IS NULL
)
WHERE 1=1
;
CREATE OR REPLACE VIEW rules.AZURE_CIS_7_1_VIOLATION_QUERY COPY GRANTS
COMMENT='OS Disk must be encrypted
@id F7HQ2BVPBQG
@tags cis, azure, virtual-machines'
AS
SELECT 'F7HQ2BVPBQG' AS query_id
, 'Azure CIS 7.1: OS Disk must be encrypted' AS title
, OBJECT_CONSTRUCT(
'cloud', 'azure',
'tenant_id', tenant_id,
'subscription_id', subscription_id
) AS environment
, (
'VM ' || vm_id
) AS object
, 'AZ CIS 7.1 violated by ' || object AS description
, CURRENT_TIMESTAMP AS alert_time
, OBJECT_CONSTRUCT(*) AS event_data
, 'SnowAlert' AS detector
, 'High' AS severity
, 'devsecops' AS owner
, OBJECT_CONSTRUCT(
'query_id', query_id,
'vm_id', vm_id
) AS identity
FROM (
SELECT
subscription_id,
tenant_id,
vm_id,
os_disk_id,
encryption
FROM (
SELECT DISTINCT
subscription_id,
tenant_id,
id vm_id,
properties vm_properties,
properties:storageProfile.osDisk.managedDisk.id::STRING os_disk_id
FROM data.azure_collect_virtual_machines
WHERE recorded_at > CURRENT_DATE - 1
AND id IS NOT NULL
) vm
LEFT OUTER JOIN (
SELECT DISTINCT
id disk_id,
properties:encryption encryption
FROM data.azure_collect_disks
WHERE recorded_at > CURRENT_DATE - 1
) disk
ON (os_disk_id = disk_id)
-- TODO(afedorov): data is missing some disks, and
-- so the following removes those visibility errors
-- from triggering this violation. once we find out
-- why, we can remove this WHERE condition.
WHERE disk_id IS NOT NULL
)
WHERE 1=1
AND encryption:type NOT IN (
'EncryptionAtRestWithCustomerKey',
'EncryptionAtRestWithPlatformAndCustomerKeys'
)
;
CREATE OR REPLACE VIEW rules.AZURE_CIS_7_2_VIOLATION_QUERY COPY GRANTS
COMMENT='Data Disks must be encrypted
@id JF1IPB3TZ
@tags cis, azure, virtual-machines'
AS
SELECT 'JF1IPB3TZ' AS query_id
, 'Azure CIS 7.2: Data Disks must be encrypted' AS title
, OBJECT_CONSTRUCT(
'cloud', 'azure',
'tenant_id', tenant_id,
'subscription_id', subscription_id
) AS environment
, (
'VM ' || vm_id
) AS object
, 'AZ CIS 7.2 violated by ' || object AS description
, CURRENT_TIMESTAMP AS alert_time
, OBJECT_CONSTRUCT(*) AS event_data
, 'SnowAlert' AS detector
, 'High' AS severity
, 'devsecops' AS owner
, OBJECT_CONSTRUCT(
'query_id', query_id,
'vm_id', vm_id
) AS identity
FROM (
SELECT
subscription_id,
tenant_id,
vm_id,
data_disk_id,
encryption
FROM (
SELECT DISTINCT
subscription_id,
tenant_id,
id vm_id,
properties vm_properties,
value:managedDisk.id::STRING data_disk_id
FROM data.azure_collect_virtual_machines,
LATERAL FLATTEN(input => properties:storageProfile.dataDisks)
WHERE recorded_at > CURRENT_DATE - 1
AND id IS NOT NULL
) vm
LEFT OUTER JOIN (
SELECT DISTINCT
id disk_id,
properties:encryption encryption
FROM data.azure_collect_disks
WHERE recorded_at > CURRENT_DATE - 1
) disk
ON (data_disk_id = disk_id)
-- TODO(afedorov): data is missing some disks, and
-- so the following removes those visibility errors
-- from triggering this violation. once we find out
-- why, we can remove this WHERE condition.
WHERE disk_id IS NOT NULL
)
WHERE 1=1
AND encryption:type NOT IN (
'EncryptionAtRestWithCustomerKey',
'EncryptionAtRestWithPlatformAndCustomerKeys'
)
;
CREATE OR REPLACE VIEW rules.AZURE_CIS_7_3_VIOLATION_QUERY COPY GRANTS
COMMENT='Unattached disks must be encrypted
@id CN4YBO0X01B
@tags cis, azure, virtual-machines'
AS
SELECT 'CN4YBO0X01B' AS query_id
, 'Azure CIS 7.3: Unattached disks must be encrypted' AS title
, OBJECT_CONSTRUCT(
'cloud', 'azure',
'tenant_id', tenant_id,
'subscription_id', subscription_id
) AS environment
, (
'Disk ' || disk_id
) AS object
, 'AZ CIS 7.3 violated by ' || object AS description
, CURRENT_TIMESTAMP AS alert_time
, OBJECT_CONSTRUCT(*) AS event_data
, 'SnowAlert' AS detector
, 'High' AS severity
, 'devsecops' AS owner
, OBJECT_CONSTRUCT(
'query_id', query_id,
'disk_id', disk_id
) AS identity
FROM (
SELECT DISTINCT
id disk_id,
tenant_id,
subscription_id,
managed_by,
properties:encryption encryption
FROM data.azure_collect_disks
WHERE recorded_at > CURRENT_DATE - 1
AND disk_id IS NOT NULL
AND managed_by IS NULL
)
WHERE 1=1
AND encryption:type NOT IN (
'EncryptionAtRestWithCustomerKey',
'EncryptionAtRestWithPlatformAndCustomerKeys'
)
;
CREATE OR REPLACE VIEW rules.AZURE_CIS_7_4_VIOLATION_QUERY COPY GRANTS
COMMENT='Only approved VM extensions installed
@id 58CYJ8J9MC4
@tags cis, azure, virtual-machines'
AS
SELECT '58CYJ8J9MC4' AS query_id
, 'Azure CIS 7.4: Only approved VM extensions installed' AS title
, OBJECT_CONSTRUCT(
'cloud', 'azure',
'tenant_id', tenant_id
) AS environment
, vm_id AS object
, 'AzCIS 7.4 violated by ' || object AS description
, CURRENT_TIMESTAMP AS alert_time
, OBJECT_CONSTRUCT(*) AS event_data
, 'SnowAlert' AS detector
, 'High' AS severity
, 'devsecops' AS owner
, OBJECT_CONSTRUCT(
'vm_id', query_id
) AS identity
FROM (
SELECT DISTINCT tenant_id, vm_id, name extension_name
FROM data.azure_collect_virtual_machines_extensions
WHERE recorded_at > CURRENT_DATE - 1
AND name IS NOT NULL
)
WHERE 1=1
AND extension_name NOT IN (
'LinuxDiagnostic',
'AzureNetworkWatcherExtension'
)
;
CREATE OR REPLACE VIEW rules.AZURE_CIS_8_1_VIOLATION_QUERY COPY GRANTS
COMMENT='Expiration date is set on all keys
@id J9SXTR77OP
@tags cis, azure, security-considerations'
AS
SELECT 'J9SXTR77OP' AS query_id
, 'Azure CIS 8.1: Expiration date is set on all keys' AS title
, OBJECT_CONSTRUCT(
'cloud', 'azure',
'tenant_id', tenant_id
) AS environment
, (
'key ' || key_id
) AS object
, 'AzCIS 8.1 violated by ' || object AS description
, CURRENT_TIMESTAMP AS alert_time
, OBJECT_CONSTRUCT(*) AS event_data
, 'SnowAlert' AS detector
, 'High' AS severity
, 'devsecops' AS owner
, OBJECT_CONSTRUCT(
'query_id', query_id,
'key_id', key_id
) AS identity
FROM (
SELECT
tenant_id,
kid key_id,
attributes,
attributes:enabled enabled,
attributes:exp::TIMESTAMP expires
FROM azure_collect_vaults_keys
WHERE error IS NULL
AND recorded_at > CURRENT_TIMESTAMP - INTERVAL '1 days'
)
WHERE 1=1
AND enabled
AND expires IS NULL
;
CREATE OR REPLACE VIEW rules.AZURE_CIS_8_2_VIOLATION_QUERY COPY GRANTS
COMMENT='Expiration date is set on all secrets
@id HSUI200N9J
@tags cis, azure, security-considerations'
AS
SELECT 'HSUI200N9J' AS query_id
, 'Azure CIS 8.2: Expiration date is set on all keys' AS title
, OBJECT_CONSTRUCT(
'cloud', 'azure',
'tenant_id', tenant_id
) AS environment
, (
'secret ' || secret_id
) AS object
, 'AzCIS 8.2 violated by ' || object AS description
, CURRENT_TIMESTAMP AS alert_time
, OBJECT_CONSTRUCT(*) AS event_data
, 'SnowAlert' AS detector
, 'High' AS severity
, 'devsecops' AS owner
, OBJECT_CONSTRUCT(
'query_id', query_id,
'secret_id', secret_id
) AS identity
FROM (
SELECT
tenant_id,
id secret_id,
attributes,
attributes:enabled enabled,
attributes:exp::TIMESTAMP expires
FROM azure_collect_vaults_secrets
WHERE error IS NULL
AND recorded_at > CURRENT_TIMESTAMP - INTERVAL '1 days'
)
WHERE 1=1
AND enabled
AND expires IS NULL
;
|
--
-- Base de datos: `db_asgard`
--
USE `db_asgard`;
--
-- Volcado de datos para la tabla `persona`
--
INSERT INTO `persona` (`per_id`, `per_pri_nombre`, `per_seg_nombre`, `per_pri_apellido`, `per_seg_apellido`, `per_cedula`, `per_ruc`, `per_pasaporte`, `etn_id`, `eciv_id`, `per_genero`, `per_nacionalidad`, `pai_id_nacimiento`, `pro_id_nacimiento`, `can_id_nacimiento`, `per_nac_ecuatoriano`, `per_fecha_nacimiento`, `per_celular`, `per_correo`, `per_foto`, `tsan_id`, `per_domicilio_sector`, `per_domicilio_cpri`, `per_domicilio_csec`, `per_domicilio_num`, `per_domicilio_ref`, `per_domicilio_telefono`, `per_domicilio_celular2`, `pai_id_domicilio`, `pro_id_domicilio`, `can_id_domicilio`, `per_trabajo_nombre`, `per_trabajo_direccion`, `per_trabajo_telefono`, `per_trabajo_ext`, `pai_id_trabajo`, `pro_id_trabajo`, `can_id_trabajo`, `per_estado`, `per_fecha_creacion`, `per_fecha_modificacion`, `per_estado_logico`) VALUES
(1001, 'Jose', 'Alberto', 'Perdomo', 'Briones', '0913391512', NULL, NULL, 1, 2, 'M', 'Ecuatoriano', 1, 10, 87, '1', '1973-04-11', '989167680', '<EMAIL>', NULL, 7, 'Villa EspaÑa', 'Etapa Madrid', 'Mz 2224 Villa 20', NULL, 'Diagonal Cancha Sintetica Junto Al Aki', '2073575', NULL, 1, 10, 87, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2029-09-18 08:33:00', '2001-10-17 18:14:00', '1'),
(1002, 'Alejandro', NULL, 'Romoleroux', NULL, '0918288572', NULL, NULL, 4, 1, 'M', 'Ecuatoriano', 1, 10, 87, '1', '1995-02-27', '985990772', '<EMAIL>', NULL, 1, 'Urdesa Central', 'Balsamos', 'Ilanes', '1011', 'Casa De Dos Pisos Color Crema Con Portones Negros', '2886880', NULL, 1, 10, 87, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2003-10-17 17:01:00', '2003-10-17 22:57:00', '1'),
(1003, 'Jessica', 'Nataly', 'Semblantes', 'Cuyo', '0504462805', NULL, NULL, 4, 1, 'F', 'Ecuatoriano', 1, 6, 49, '1', '1996-04-19', '983310607', '<EMAIL>', NULL, 5, 'Barrio Tres De Mayo', 'Calle NiÑo De Isinche', 'Via Al Santuario NiÑo De Isinche', NULL, 'Una Cuadra Antes De La Iglesia Del Barrio Tres De Mayo', '2725362', NULL, 1, 6, 49, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2009-10-18 08:09:00', '2010-10-17 15:31:00', '1'),
(1004, 'Bryan', 'Vinicio', 'Porozo', 'Roldan', '1723152607', NULL, NULL, 1, 1, 'M', 'Ecuatoriano', 1, 8, 71, '1', '1995-09-24', '997639869', '<EMAIL>', NULL, 7, '<NAME>', '<NAME>', '<NAME>', '21', 'Diagonal A La GuarderÍa <NAME> Y Vida', '2033943', NULL, 1, 19, 189, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2013-10-17 20:04:00', '2013-10-18 01:19:00', '1'),
(1005, 'Byron', 'Marcelo', 'Fernandez', 'Carpio', '1713076212', NULL, NULL, 4, 2, 'M', 'Ecuatoriano', 1, 19, 189, '1', '1981-02-18', '984535993', '<EMAIL>', NULL, 7, 'Conocoto', '<NAME>', 'Antigua Via', '0', 'Gasolinera Petro Comercial Conjunto Portal De Andalucia Casa C6', '2343912', NULL, 1, 19, 189, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2014-10-17 11:35:00', '2014-10-17 21:34:00', '1'),
(1006, 'Vladimir', 'Ladislao', 'Diaz', 'Macay', '1314750322', NULL, NULL, 1, 1, 'M', 'Ecuatoriano', 1, 14, 152, '1', '1996-04-08', '998598382', '<EMAIL>', NULL, 1, 'Solca', '<NAME>', 'Autopista Guillen', '0', 'Mas Adelante Del Colegio Cembims', '2580798', NULL, 1, 14, 152, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2014-10-18 06:42:00', '2015-10-17 11:56:00', '1'),
(1007, 'Nelson', 'Humberto', 'Palacios', 'Carrillo', '1310910680', NULL, NULL, 4, 1, 'M', 'Ecuatoriano', 1, 14, 147, '1', '1986-08-18', '994709475', '<EMAIL>', NULL, 7, 'Centro', 'Rocafuerte', 'Seis De Diciembre', '303', 'A Lado Del Bar Vizcaya', '2310164', NULL, 1, 14, 147, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2017-10-17 10:21:00', '2017-10-17 16:44:00', '1'),
(1008, 'Sara', 'Madelen', 'Andaluz', 'Segovia', '0940837545', NULL, NULL, 4, 2, 'F', 'Ecuatoriano', 1, 10, 87, '1', '1994-05-10', '958987966', '<EMAIL>', NULL, 3, 'Norte', 'Autopista Terminal Pascuales', 'Metropolis 2 Mz 1010 Villa 5', NULL, 'Frente A Metropolis 1', '3885256', NULL, 1, 10, 87, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2017-10-18 05:56:00', '2018-10-17 11:06:00', '1'),
(1009, 'Idis', 'Ivon', 'Bajaña', 'Silva', '0927158212', NULL, NULL, 4, 2, 'F', 'Ecuatoriano', 1, 10, 85, '1', '1992-09-02', '991778453', '<EMAIL>', NULL, 1, 'Centro', 'Av A<NAME>', 'Velasco Ibarra', '830', 'Atras Del Madero Muebles', '2011416', NULL, 1, 3, 28, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2017-10-18 06:03:00', '2018-10-17 11:26:00', '1'),
(1010, 'Cinthya', 'Rosali', 'Benavides', 'Baños', '0201889771', NULL, NULL, 4, 1, 'F', 'Ecuatoriano', 1, 2, 16, '1', '1987-01-31', '989504284', '<EMAIL>', NULL, 7, 'El Paraiso', 'Av <NAME>', 'Via Principal', NULL, '<NAME>', '2644082', NULL, 1, 2, 16, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2023-10-18 02:02:00', '2022-01-19 05:29:00', '1'),
(1011, 'Pamela', 'Enriqueta', 'Quiñonez', 'Mora', '0919595017', NULL, NULL, 4, 2, 'F', 'Ecuatoriano', 1, 10, 87, '1', '1988-10-27', '988098716', '<EMAIL>', NULL, 1, 'Norte', 'Alborada', '11 Etapa', '9', '<NAME>', '4217776', NULL, 1, 10, 87, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2024-10-17 15:46:00', '2027-10-17 19:16:00', '1'),
(1012, 'Ximena', 'Elizabeth', 'Vasquez', 'Vilañez', '1723455232', NULL, NULL, 4, 2, 'F', 'Ecuatoriano', 1, 19, 189, '1', '1987-08-02', '987049959', '<EMAIL>', NULL, 8, '<NAME>', 'Av <NAME>', '<NAME>', NULL, 'Gasolinera', '3693060', NULL, 1, 19, 184, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2024-10-18 03:16:00', '2006-11-17 13:49:00', '1'),
(1013, 'Johanna', 'Alexandra', 'Aguilera', 'Pesantez', '0704771575', NULL, NULL, 4, 1, 'M', 'Ecuatoriano', 1, 1, 3, '1', '1987-05-11', '996763198', '<EMAIL>', NULL, 3, 'Norte', 'Via Daule Km23', 'Via Del Lago Manzana 234', '3', 'Frente Al Lago', '2267149', NULL, 1, 10, 87, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2025-10-17 20:23:00', '2008-11-18 04:54:00', '1'),
(1014, 'Carla', 'Ruth', 'Torres', 'Sojos', '0932044183', NULL, NULL, 4, 1, 'F', 'Ecuatoriano', 1, 10, 87, '1', '1996-01-24', '985150998', '<EMAIL>', NULL, 1, '<NAME>', 'La 40', 'Y <NAME>', NULL, 'Casa De Dos Pisos Con Porton Color Negro', '2229382', NULL, 1, 10, 87, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2025-10-18 02:33:00', '2010-05-19 08:05:00', '1'),
(1015, 'Lida', 'Isabel', 'Chuni', 'Quezada', '0106545353', NULL, NULL, 4, 2, 'F', 'Ecuatoriano', 1, 1, 8, '1', '1992-03-21', '986315158', '<EMAIL>', NULL, 7, 'El Tiempo', '<NAME>', '<NAME>', '0', 'Segunda Casa Color Blanca', '3013353', NULL, 1, 1, 3, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2025-10-18 03:36:00', '2001-11-17 13:11:00', '1'),
(1016, 'Marco', 'Ivan', 'Buri', 'Vera', '1311325508', NULL, NULL, 4, 2, 'M', 'Ecuatoriano', 1, 10, 87, '1', '1984-05-18', '990983091', '<EMAIL>', NULL, 5, 'La Aurora', 'Sn', 'Sn', NULL, 'Entrando Por La Piazza La Joya', '6052869', NULL, 1, 10, 87, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2025-10-18 05:24:00', '2026-10-18 07:21:00', '1'),
(1017, '<NAME>', NULL, '<NAME>', NULL, '0931003297', NULL, NULL, 4, 1, 'F', 'Ecuatoriano', 1, 10, 87, '1', '1992-07-23', '9696279999', '<EMAIL>', NULL, 1, 'Ciudadela 9 De Octubre Mz 53 Villa 10', 'Entre 7ma Y', '9na', '708', 'Monte De Piedad Del Biess', '0', NULL, 1, 10, 87, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2001-11-18 03:00:00', '2002-11-17 10:29:00', '1'),
(1018, 'Ana', 'Belen', 'Ormaza', 'Jurado', '0950298802', NULL, NULL, 4, 1, 'M', 'Ecuatoriano', 1, 10, 87, '1', '1997-12-15', '990212130', '<EMAIL>', NULL, 7, 'Sur', 'Esteros', 'Na', NULL, 'Entrando Por El Registro Civil Sur', '2438111', NULL, 1, 10, 87, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2007-11-17 12:02:00', '2007-11-18 01:31:00', '1'),
(1019, 'Jose', 'Luis', 'Simbaña', 'Toala', '1310815277', NULL, NULL, 4, 1, 'M', 'Ecuatoriano', 1, 14, 152, '1', '1999-09-15', '996417656', '<EMAIL>', NULL, 7, '<NAME> 1', 'Calle 302', 'Av 201', NULL, 'A 2 Cuadras De Upc', '3700875', NULL, 1, 14, 137, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2007-11-18 00:30:00', '2007-11-18 00:54:00', '1'),
(1020, 'Maria', 'Veronica', 'Arrobo', 'Guayllasaca', '0703070235', NULL, NULL, 4, 2, 'F', 'Ecuatoriano', 1, 7, 53, '1', '1975-04-25', '994106740', '<EMAIL>', NULL, 5, 'Barriada 23 De Febrero', 'Sin Nombre', 'Sin Nombre', '0', 'Frente A La Tienda Naty', '2914687', NULL, 1, 7, 62, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2008-11-17 15:58:00', '2008-11-17 16:10:00', '1'),
(1021, 'Nelson', 'Elias', 'Necpas', 'Cacuango', '1727670828', NULL, NULL, 3, 1, 'M', 'Ecuatoriano', 1, 19, 184, '1', '1993-03-19', '988853471', '<EMAIL>', NULL, 7, 'Cariacu', 'La Chimba', '26 De mayo', '69', 'Centro De Acopio El OrdeÑo', '2129251', NULL, 1, 19, 184, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2011-11-17 12:02:00', '2011-11-17 12:26:00', '1'),
(1022, 'Josue', 'Ivan', 'Tobar', 'Quinde', '0940887888', NULL, NULL, 4, 1, 'M', 'Ecuatoriano', 1, 10, 87, '1', '1992-07-21', '994908589', '<EMAIL>', NULL, 3, 'Sur', 'Calle 49 S', 'Avenida 12 S', '11', 'Frente A La Fragata', '2420333', NULL, 1, 10, 87, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2012-11-18 00:00:00', '2012-11-18 00:38:00', '1'),
(1023, 'Pablo', 'Mauricio', 'Castro', 'Hinostroza', '1204656910', NULL, NULL, 4, 1, 'M', 'Ecuatoriano', 1, 13, 125, '1', '1994-08-26', '978799344', '<EMAIL>', NULL, 3, '<NAME>', 'Av <NAME>', 'Calle D', NULL, 'Llegando A La Puerta Tel Colegio Babajoyo Trasera', '2730632', NULL, 1, 13, 125, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2013-11-18 01:59:00', '2013-11-18 02:21:00', '1'),
(1024, 'Carlos', 'Marcelo', 'MartÍnez', 'Travez', '1205068750', NULL, NULL, 4, 1, 'M', 'Ecuatoriano', 1, 6, 51, '1', '1982-03-01', '984071889', '<EMAIL>', NULL, 7, 'Promejoras', 'Avenida Del Ejercito', 'Panama', '513', 'Casa Esquinera Amarilla De 2 Pisos', '2773465', NULL, 1, 13, 131, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2014-11-18 04:27:00', '2014-11-18 05:06:00', '1'),
(1025, 'Adrian', NULL, 'Alvarado', NULL, '0104983119', NULL, NULL, 4, 1, 'M', 'Ecuatoriano', 1, 1, 3, '1', '1990-11-18', '996752492', '<EMAIL>', NULL, 3, '<NAME>', '<NAME>', '<NAME>', '1654', 'Casa Dos Pisos Color Amarillo Puerta Negra', '2881717', NULL, 1, 1, 3, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2019-11-18 00:58:00', '2019-11-18 01:09:00', '1'),
(1026, 'Ricardo', 'Miguel', 'Lopez', 'Villavicencio', '0918875873', NULL, NULL, 4, 1, 'M', 'Ecuatoriano', 1, 20, 193, '1', '1979-08-30', '992250736', '<EMAIL>', NULL, 5, 'Norte', 'La Joya Etapa Ambar Mz 11', 'Villa 22', '22', 'Entrando Por Supermaxi', '6035552', NULL, 1, 10, 82, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2020-11-18 04:14:00', '2006-01-18 11:48:00', '1'),
(1027, 'Veronica', NULL, 'Diaz', NULL, '0914690334', NULL, NULL, 4, 4, 'M', 'Ecuatoriano', 1, 10, 87, '1', '1982-04-27', '939357046', '<EMAIL>', NULL, 1, 'La Aurora', 'Frente Al Pai De La Policia', 'Callejon Diagonal Al Pai', NULL, 'Frente Al Parque De La Aurora', '2442957', NULL, 1, 14, 146, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2020-11-18 07:27:00', '2020-11-18 07:50:00', '1'),
(1028, 'Oscar', 'Mario', 'Mora', 'Ortega', '0918584913', NULL, NULL, 4, 4, 'M', 'Ecuatoriano', 1, 10, 87, '1', '1979-07-18', '968828245', '<EMAIL>', NULL, 5, 'Norte', '<NAME>', 'Alborada 14 Etapa', '2', 'Villa 10', '5104456', NULL, 1, 10, 87, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2023-11-18 06:43:00', '2023-11-18 06:50:00', '1'),
(1029, 'David', 'Fernando', 'Galarza', 'Pizarro', '0706320496', NULL, NULL, 4, 1, 'M', 'Ecuatoriano', 1, 7, 60, '1', '1998-08-05', '987691398', '<EMAIL>', NULL, 7, 'Kennedy', 'Cdka <NAME>', 'Mz 54 Solarv02', NULL, '<NAME>', '2932187', NULL, 1, 10, 87, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2004-01-18 10:28:00', '2004-01-18 10:44:00', '1'),
(1030, 'Mildred', NULL, 'Jaramillo', 'Arboleda', 'AQ729540', NULL, 'AQ729540', 4, 2, 'F', 'Colombiana', 11, 238, 3238, '0', '1983-07-22', '994372260', '<EMAIL>', NULL, 7, 'Ceibos Norte', 'Km 7 Medio Via A La Costa', 'Urbanizacion Ceibos Point', '102', 'Frente A La Universidad Del Pacifico', '5048103', NULL, 1, 10, 87, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2005-01-18 12:57:00', '2019-07-19 07:37:00', '1'),
(1031, 'Gabriela', 'Alejandra', 'Lopez', 'Paspuel', '1723671523', NULL, NULL, 4, 1, 'F', 'Ecuatoriano', 1, 19, 189, '1', '1999-02-13', '3473534874', '<EMAIL>', NULL, 3, 'Cumbaya', '<NAME>', 'Chimborazo', NULL, '20 Metros De Almacenes Tia Cumbaya', '2890440', NULL, 1, 19, 189, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2005-01-19 03:51:00', '2005-01-19 04:16:00', '1'),
(1032, 'Jose', 'Gerardo', 'Valarezo', 'Gaona', '0706626744', NULL, NULL, 4, 5, 'M', 'Ecuatoriano', 1, 7, 64, '1', '1998-05-02', '979423414', '<EMAIL>', NULL, 7, 'Centro', 'Sucre', '<NAME>', NULL, 'Minimarket Jor Mar', '2978194', NULL, 1, 7, 63, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2008-01-18 15:17:00', '2008-01-18 15:44:00', '1'),
(1033, 'Luisiana', 'Yesus', 'Cornejo', 'Medina', '0928737295', NULL, NULL, 4, 1, 'F', 'Ecuatoriano', 1, 10, 90, '1', '1990-08-28', '999509148', '<EMAIL>', NULL, 3, 'Norte', 'Av <NAME>', '<NAME>', '235', 'Frente Al Pai Urdenort 2', '2729166', NULL, 1, 10, 87, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2011-01-18 11:58:00', '2011-01-18 12:26:00', '1'),
(1034, 'Renatta', 'Andrea', 'Fernandez', 'Ramirez', '0926823345', NULL, NULL, 4, 1, 'F', 'Ecuatoriano', 1, 10, 87, '1', '2000-06-30', '983109204', '<EMAIL>', NULL, 4, 'Tarqui', '<NAME>', 'Ricaurte', '14', 'Frente Al Colegio Pasionista', '2843408', NULL, 1, 10, 87, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2012-01-19 00:46:00', '2012-01-19 08:11:00', '1'),
(1035, 'Pamela', 'Muriel', 'OrdoÑez', 'Carvajal', '0922004452', NULL, NULL, 4, 2, 'F', 'Ecuatoriano', 1, 10, 87, '1', '1982-11-12', '998639654', '<EMAIL>', NULL, 7, 'Norte', 'Km 10 Via Samborondon', 'Urb Fuentes Del Rio', '18', 'Por Amagua', '5040208', NULL, 1, 10, 87, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2013-01-18 10:03:00', '2013-01-18 10:11:00', '1'),
(1036, 'Manuel', 'Ivan', 'Dota', 'Vasquez', '0703934257', NULL, NULL, 3, 2, 'M', 'Ecuatoriano', 1, 7, 62, '1', '1980-08-21', '993230020', '<EMAIL>', NULL, 7, 'Autobamba', '<NAME>', '<NAME>', '0', 'Diagonal A La Pizerria Gourmet', '2396370', NULL, 1, 5, 45, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2016-01-18 10:08:00', '2016-01-18 10:18:00', '1'),
(1037, 'Luis', 'Alfredo', 'Portilla', 'Hanna', '0922280441', NULL, NULL, 4, 1, 'M', 'Ecuatoriano', 1, 10, 87, '1', '1990-05-17', '986531615', '<EMAIL>', NULL, 7, 'Mucho Lote 2', 'Autopista Terminal Terrestre Pascuales', '<NAME>', NULL, 'Urbanizacion Victoria Del Rio', '4543804', NULL, 1, 10, 87, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2017-01-19 00:51:00', '2017-01-19 01:10:00', '1'),
(1038, 'Nicole', 'Alexandra', 'Perez', 'Basantes', '1750494856', NULL, NULL, 4, 1, 'F', 'Ecuatoriano', 1, 19, 189, '1', '1993-05-11', '987545958', '<EMAIL>', NULL, 7, '<NAME>', '13 De junio', '21 De marzo', NULL, 'Edificio', '3432722', NULL, 1, 19, 189, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2023-01-18 11:10:00', '2025-01-18 12:41:00', '1'),
(1039, 'MarÍa', 'Gabriela', 'Estevez', 'Salazar', '1803534666', NULL, NULL, 2, 3, 'F', 'Ecuatoriano', 1, 23, 204, '1', '1986-11-19', '984154036', '<EMAIL>', NULL, 5, 'San Antonio', 'Pintag', 'CaÑaris', '147', 'Casa Verde Con Beige', '2400279', NULL, 1, 23, 204, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2026-01-18 12:48:00', '2026-01-19 00:29:00', '1'),
(1040, 'Daniel', 'Alejandro', 'Castro', 'Hurel', '0919247452', NULL, NULL, 4, 1, 'M', 'Ecuatoriano', 1, 10, 87, '1', '1989-07-24', '989566035', '<EMAIL>', NULL, 5, 'Sur', 'Carrisal', 'Pedernal', '2', 'Atras Del Registro Civil Sur', '2496110', NULL, 1, 10, 87, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2028-01-19 08:51:00', '2028-01-19 09:08:00', '1'),
(1041, 'Maricela', 'Alexandra', 'Veintimilla', 'Toro', '0704572445', NULL, NULL, 2, 2, 'F', 'Ecuatoriano', 1, 7, 66, '1', '1984-03-07', '985700549', '<EMAIL>', NULL, 7, 'Urbano', '25 De junio', 'Sn', '20', '<NAME>', '6003198', NULL, 1, 7, 60, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2029-01-19 01:18:00', '2029-01-19 01:32:00', '1'),
(1042, 'Oswaldo', 'Amado', 'Cevallos', 'Burgos', '0919989723', NULL, NULL, 4, 2, 'M', 'Ecuatoriano', 1, 10, 87, '1', '1980-07-18', '997252677', '<EMAIL>', NULL, 7, 'Sur De La Ciudad', 'Via Al Puerto Maritimo', 'Avenida 1 S', '16', 'Una Cuadra De La Principal', '3842927', NULL, 1, 10, 87, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2030-01-19 06:42:00', '2030-01-19 07:01:00', '1'),
(1043, 'Hernan', 'Aladino', 'Delgado', 'Santarrosa', '0942930041', NULL, NULL, 4, 1, 'M', 'Ecuatoriano', 1, 10, 96, '1', '1999-04-10', '985703145', '<EMAIL>', NULL, 7, 'Mon<NAME>', 'Av Del Pacifico', 'Calle 4ta', '8', 'La Finkita', '3185280', NULL, 1, 10, 96, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2007-02-19 06:57:00', '2009-02-18 11:12:00', '1'),
(1044, 'Miguel', 'Alfredo', 'Guerrero', 'Lugo', '114022950', NULL, '114022950', 4, 1, 'M', 'Venezolano', 38, 594, 12090, '0', '1997-01-27', '995316072', '<EMAIL>', NULL, 1, '<NAME>', 'Mz C26', 'Villa 5', NULL, 'Cuadra Entre Iglesias CatÓlica Y EvangÉlica', '5268998', NULL, 1, 10, 87, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2010-02-18 12:22:00', '2010-02-18 13:16:00', '1'),
(1045, 'Mayra', 'Elizabeth', 'Paez', 'Silva', '1310883895', NULL, NULL, 4, 4, 'F', 'Ecuatoriano', 1, 14, 140, '1', '1989-01-13', '994575318', '<EMAIL>', NULL, 5, 'Santa Rosa', 'Av 3 De Julio', 'Acacias', NULL, 'Frente Ala Escuela De Chiferes Profesionales', '2660018', NULL, 1, 14, 140, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2012-02-18 14:12:00', '2027-05-19 07:13:00', '1'),
(1046, 'Veronica', NULL, 'Sisalima', NULL, '1104318439', NULL, NULL, 1, 1, 'M', 'Ecuatoriano', 1, 1, 1, '1', '1982-08-01', '997191610', '<EMAIL>', NULL, 1, 'Pindal', '<NAME>', 'Pindal', NULL, '0', '4853611', NULL, 1, 1, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2014-02-19 06:04:00', '2019-02-19 09:02:00', '1'),
(1047, 'Maria', NULL, 'Vera', NULL, '0926205287', NULL, NULL, 5, 5, 'F', 'Ecuatoriano', 1, 10, 87, '1', '1988-08-06', '981146947', '<EMAIL>', NULL, 7, '<NAME>', '<NAME>', 'MaraÑon', '610', 'Una Cuadra Antes Del Colegio Antepara', '2791825', NULL, 1, 13, 136, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2015-02-19 06:16:00', '2015-02-19 06:31:00', '1'),
(1048, 'Maria', 'Narcisa', 'Cajamarca', 'Sagbay', '1900570761', NULL, NULL, 4, 1, 'F', 'Ecuatoriano', 1, 15, 159, '1', '1986-11-03', '979754068', '<EMAIL>', NULL, 7, 'Gualaquiza', 'Av Sixto Duran Ballen', 'Via Antigua Sevilla', '0', '<NAME>', '2781317', NULL, 1, 15, 159, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2017-02-18 12:29:00', '2017-02-18 12:47:00', '1'),
(1049, 'Belkys', 'Marina', 'Parraga', 'Neira', '0926132853', NULL, NULL, 4, 2, 'F', 'Ecuatoriano', 1, 10, 87, '1', '1989-05-05', '998250463', '<EMAIL>', NULL, 7, 'Norte', '<NAME>', '<NAME>', NULL, 'Una Cuadra Clinica K<NAME>', '5027157', NULL, 1, 10, 87, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2019-02-19 03:00:00', '2019-02-19 03:27:00', '1'),
(1050, 'Michaela', 'Sofia', 'Chiriboga', 'Orellana', '0922147970', NULL, NULL, 2, 1, 'F', 'Ecuatoriano', 1, 10, 87, '1', '1999-08-09', '988656816', '<EMAIL>', NULL, 7, 'Via A La Costa', 'Torres Del Salado', 'Mz F Villa 7', NULL, 'Despues De La Gasolinera Mobil Y Antes Del Burger Kinh', '6042799', NULL, 1, 10, 87, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2019-02-19 06:36:00', '2027-02-19 07:48:00', '1'),
(1051, 'Jose', 'Gabriel', 'Jaramillo', NULL, '0929157550', NULL, NULL, 4, 1, 'M', 'Ecuatoriano', 1, 10, 87, '1', '1994-12-16', '962825786', '<EMAIL>', NULL, 7, 'Sur', '<NAME>', '<NAME>', '15', 'Frente Al Colegio Provincia De Chimborazo', '3854429', NULL, 1, 10, 87, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2019-02-19 09:50:00', '2020-02-18 10:30:00', '1'),
(1052, 'Mikaela', 'Yazmin', 'Macas', 'Pisco', '0952097822', NULL, NULL, 4, 1, 'F', 'Ecuatoriano', 1, 10, 87, '1', '1995-10-29', '958896311', '<EMAIL>', NULL, 7, '<NAME>', 'Av Francisco De Orellana', '<NAME>', NULL, 'San Marino', '2494948', NULL, 1, 10, 87, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2022-02-19 01:30:00', '2022-02-19 01:46:00', '1'),
(1053, 'Carlos', 'Andres', '<NAME>', 'Echeverria', '0955906359', NULL, NULL, 4, 1, 'M', 'Ecuatoriano', 1, 10, 87, '1', '1996-02-28', '994134408', '<EMAIL>', NULL, 1, 'Centro', 'Av Del Ejercito', '<NAME>', '4232', 'Centro', '0', NULL, 1, 10, 87, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2001-03-19 08:22:00', '2001-03-19 09:18:00', '1'),
(1054, 'Dennisse', 'Cecilia', 'Ronquillo', 'Veliz', '0928301910', NULL, NULL, 5, 4, 'F', 'Ecuatoriano', 1, 10, 77, '1', '1991-03-12', '995881844', '<EMAIL>', NULL, 3, '2c', 'Primavera2', 'Sn', NULL, 'Pas<NAME>', '2804562', NULL, 1, 10, 83, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2001-03-19 08:37:00', '2001-03-19 08:45:00', '1'),
(1055, 'Valeria', 'Nathali', 'Balseca', 'Rodriguez', '1719440503', NULL, NULL, 4, 2, 'F', 'Ecuatoriano', 1, 19, 189, '1', '1984-07-25', '982237991', '<EMAIL>', NULL, 6, '<NAME>', '<NAME>', '<NAME>', NULL, 'Atras De La Pilsener', '2648818', NULL, 1, 19, 189, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2005-03-18 13:31:00', '2005-03-18 14:02:00', '1'),
(1056, 'Karla', 'Pierina', 'Romero', 'Romero', '0953673217', NULL, NULL, 1, 1, 'F', 'Ecuatoriano', 1, 10, 87, '1', '1999-04-12', '994127013', '<EMAIL>', NULL, 3, 'Parroquia <NAME>', '<NAME>yris', '<NAME>', '58', 'En La Principal Una Cruz Azul En La Esquina De La Calle Hay Un Cyber Diagonal Una Mata De Mango', '2860057', NULL, 1, 10, 83, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2006-03-19 02:44:00', '2006-03-19 03:42:00', '1'),
(1057, 'Jose', 'Gabriel', 'Castro', 'Robles', '0923586374', NULL, NULL, 4, 4, 'M', 'Ecuatoriano', 1, 10, 87, '1', '2018-03-17', '980914269', '<EMAIL>', NULL, 1, 'Norte', '<NAME>', '37', '726', 'Casa De Dos Pisos', '2188238', NULL, 1, 10, 87, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2007-03-18 12:15:00', '2009-03-18 11:06:00', '1'),
(1058, 'Christina', 'Alexandra', 'Montalvan', 'Poppe', '0922487293', NULL, NULL, 4, 2, 'F', 'Ecuatoriano', 1, 10, 87, '1', '1988-04-06', '958858435', '<EMAIL>', NULL, 7, 'Villa Club', 'E<NAME>', 'Mz 1 Villa 9', NULL, '<NAME>', '6050896', NULL, 1, 10, 87, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2008-03-18 15:33:00', '2008-03-19 06:11:00', '1'),
(1059, 'Astrid', 'Melany', 'Bedran', 'Milan', '0931897045', NULL, NULL, 4, 2, 'F', 'Ecuatoriano', 1, 10, 87, '1', '1995-09-01', '960548986', '<EMAIL>', NULL, 7, '<NAME>', '<NAME>', 'Alfaro', NULL, 'Edificio Amarillo De 3 Pisos', '2720157', NULL, 1, 10, 92, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2008-03-19 03:30:00', '2008-03-19 03:45:00', '1'),
(1060, 'Rosa', 'Elena', 'Fernandez', 'Llaguno', '1204252009', NULL, NULL, 4, 2, 'F', 'Ecuatoriano', 1, 13, 125, '1', '1978-11-11', '982918750', '<EMAIL>', NULL, 7, 'Centro', 'Olmedo', '5ta Peatonal', '0', 'Junto A La Tienda Don<NAME>', '2734002', NULL, 1, 13, 125, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2008-03-19 06:35:00', '2008-03-19 06:55:00', '1'),
(1061, 'Ingrid', 'Ivonne', 'Cali', 'Villafuerte', '0926855206', NULL, NULL, 4, 2, 'F', 'Ecuatoriano', 1, 10, 87, '1', '1988-01-06', '982387214', '<EMAIL>', NULL, 7, 'Noroeste', '<NAME>', 'No I18 Mz 308', '9', 'Atras Esc Eduacion Y Verdad', '2265575', NULL, 1, 10, 87, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2008-03-19 08:25:00', '2025-04-19 02:21:00', '1'),
(1062, 'Ahiram', 'Israel', 'Loor', 'Soria', '1206232116', NULL, NULL, 5, 1, 'M', 'Ecuatoriano', 1, 13, 125, '1', '1997-12-19', '986051444', '<EMAIL>', NULL, 7, '<NAME>ado', 'Carretera', 'Carretera', NULL, 'Via Jujan', '3053884', NULL, 1, 13, 125, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2009-03-18 12:59:00', '2009-03-18 13:26:00', '1'),
(1063, 'Helen', 'Karolina', 'Diaz', 'MuÑoz', '1206454652', NULL, NULL, 4, 1, 'F', 'Ecuatoriano', 1, 13, 136, '1', '1993-07-22', '996217329', '<EMAIL>', NULL, 7, 'Cd<NAME>', 'Teodoro Wolf', '<NAME>', '1', 'Bajada De La Toma Agua Emapavin', '2791470', NULL, 1, 13, 136, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2010-03-19 04:44:00', '2010-03-19 04:55:00', '1'),
(1064, 'Carlos', 'Luis', 'Galarza', 'Ballesteros', '0925368607', NULL, NULL, 4, 2, 'M', 'Ecuatoriano', 1, 10, 87, '1', '1985-06-20', '987681231', '<EMAIL>', NULL, 1, 'Sur', '<NAME>', 'Samborondon', '1402', 'Casa Esquinera Color Beige', '2464072', NULL, 1, 10, 87, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2011-03-19 09:17:00', '2017-04-19 05:52:00', '1'),
(1065, 'Maria', 'Jose', 'Moran', 'Mera', '0924456346', NULL, NULL, 2, 2, 'F', 'Ecuatoriano', 1, 10, 87, '1', '1984-04-21', '986962755', '<EMAIL>', NULL, 1, 'Sur', 'Bolivia', 'Colombia Y Quito', '204', 'Frente A La Escuela <NAME>', '5122748', NULL, 1, 10, 87, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2012-03-18 13:05:00', '2015-03-19 07:01:00', '1'),
(1066, 'Luis', 'Anibal', 'Bautista', 'Ortiz', '0503327512', NULL, NULL, 4, 1, 'M', 'Ecuatoriano', 1, 6, 50, '1', '1987-06-29', '983205355', '<EMAIL>', NULL, 7, 'Salcedo', '<NAME>', 'Sin Nombre', '1', 'Colegio 19 De Septiembre', '2705227', NULL, 1, 6, 50, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2012-03-19 03:46:00', '2012-03-19 08:10:00', '1'),
(1067, 'Sandy', 'Carolina', 'Jaramillo', 'Alvarado', '0951075282', NULL, NULL, 4, 1, 'F', 'Ecuatoriano', 1, 10, 87, '1', '1993-06-18', '996940269', '<EMAIL>', NULL, 7, '<NAME>', '36', 'Entre Oriente Y Sedalana', '2417', 'Diagonal A Tienda Esquinera', '2661500', NULL, 1, 10, 87, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2013-03-19 01:40:00', '2013-03-19 01:49:00', '1'),
(1068, 'Luis', 'Javier', 'Sornoza', 'Solorzano', '0942801911', NULL, NULL, 5, 1, 'M', 'Ecuatoriano', 1, 10, 96, '1', '1998-06-15', '986551438', '<EMAIL>', NULL, 1, '<NAME>', 'Av Ocean Club Resort', '<NAME>', NULL, 'Casa Felipe Estrada', '2760558', NULL, 1, 10, 96, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2013-03-19 02:19:00', '2013-03-19 02:42:00', '1'),
(1069, 'Jorge', 'Luis', 'Zambrano', 'Lozano', '0953779758', NULL, NULL, 4, 1, 'M', 'Ecuatoriano', 1, 10, 87, '1', '1996-04-18', '967913789', '<EMAIL>', NULL, 5, 'Norte', '<NAME>', 'Avenida 33', '3', 'Entrando Por La Escuela Mundial', '2898909', NULL, 1, 10, 87, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2014-03-19 00:44:00', '2015-03-19 07:21:00', '1'),
(1070, 'Jairo', 'Steven', 'Nugra', 'Cochancela', '0941541583', NULL, NULL, 1, 1, 'M', 'Ecuatoriano', 1, 10, 91, '1', '1996-10-11', '982443280', '<EMAIL>', NULL, 7, '<NAME>', 'Barrio 15 De Septiembre', 'Sin Nombre', NULL, 'Frente Al Taller Auto Frenos', '9824432', NULL, 1, 10, 91, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2015-03-18 11:12:00', '2015-03-18 11:39:00', '1'),
(1071, 'Estefania', 'Alexandra', 'Alarcon', 'Lamota', '0926647280', NULL, NULL, 4, 1, 'F', 'Ecuatoriano', 1, 10, 87, '1', '1988-07-23', '983802760', '<EMAIL>', NULL, 7, 'Samanes 2', '<NAME>', '<NAME>', NULL, 'Parque Samanes', '2214529', NULL, 1, 10, 87, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2015-03-18 22:40:00', '2015-03-19 05:03:00', '1'),
(1072, 'Lorena', 'Elizabeth', 'Salazar', 'Merino', '0704318245', NULL, NULL, 4, 1, 'F', 'Ecuatoriano', 1, 7, 58, '1', '1982-10-11', '979045887', '<EMAIL>', NULL, 7, 'Hualtaco', 'Los Rios', 'Av La Huada', NULL, 'Frente A Tienda Brisas Del Mar', '2510047', NULL, 1, 7, 58, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2015-03-19 03:25:00', '2015-03-19 05:47:00', '1'),
(1073, 'Oswaldo', NULL, 'Correa', NULL, '0930645973', NULL, NULL, 1, 1, 'M', 'Ecuatoriano', 1, 1, 1, '1', '1991-02-02', '988679360', '<EMAIL>', NULL, 1, 'Norte', 'Prosperina', 'Coop 29 De Abril', '3118', 'Por El Jardin Los Paolitos', '2047515', NULL, 1, 10, 87, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2015-03-19 09:29:00', '2015-03-19 09:45:00', '1'),
(1074, 'Cristobal', 'Ariel', 'Gonzabay', 'Toala', '0928507169', NULL, NULL, 4, 1, 'M', 'Ecuatoriano', 1, 20, 192, '1', '2000-07-07', '967545725', '<EMAIL>', NULL, 7, 'Palmar', 'Via Al Santuario', 'Bar<NAME>', NULL, 'Cerca Del Santuario', '2904031', NULL, 1, 20, 194, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2016-03-18 10:46:00', '2016-03-18 11:51:00', '1'),
(1075, 'Jose', 'Antonio', 'Alvarez', 'Lema', '0915977029', NULL, NULL, 4, 2, 'M', 'Ecuatoriano', 1, 10, 87, '1', '1980-02-23', '986130535', '<EMAIL>', NULL, 7, 'Centcentr', 'Guaranda', 'Febrescordero', '522', 'Esquinera', '2411626', NULL, 1, 10, 87, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2016-03-18 12:37:00', '2016-03-18 12:50:00', '1'),
(1076, 'Ramiro', 'Manuel', 'Briones', 'Vizcaino', '0925289084', NULL, NULL, 4, 2, 'M', 'Ecuatoriano', 1, 10, 87, '1', '1986-10-01', '999564218', '<EMAIL>', NULL, 3, 'Norte', 'Guayacanes', 'Mz 81', '4', 'Frente Al Parque', '5127947', NULL, 1, 10, 87, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2016-03-19 03:36:00', '2019-03-19 00:08:00', '1'),
(1077, 'Adela', 'Yeniffer', 'Lucio', 'Choez', '1312548496', NULL, NULL, 4, 2, 'F', 'Ecuatoriano', 1, 14, 144, '1', '1990-11-24', '939288635', '<EMAIL>', NULL, 7, 'Norte', 'Guayacanes', 'Mz 81', '4', 'Frente Al Parque', '5127947', NULL, 1, 10, 87, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2016-03-19 03:36:00', '2016-03-19 04:24:00', '1'),
(1078, 'Cynthia', 'Mariela', 'Rivas', 'Loor', '0922896113', NULL, NULL, 4, 2, 'F', 'Ecuatoriano', 1, 10, 87, '1', '1984-12-27', '992345530', '<EMAIL>', NULL, 7, 'Sur', 'Sn', '<NAME>', '0', '<NAME>', '2424065', NULL, 1, 10, 87, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2016-03-19 05:32:00', '2016-03-19 09:36:00', '1'),
(1079, 'Leonardo', 'Jose', 'Arboleda', 'Rueda', '0917303141', NULL, NULL, 4, 2, 'M', 'Ecuatoriano', 1, 10, 87, '1', '1982-01-14', '994363339', '<EMAIL>', NULL, 8, 'Norte', 'Guayacanes', '<NAME>', '84', 'Cerca De Pacifitel De Guayacanes', '5043363', NULL, 1, 10, 87, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2019-03-18 10:31:00', '2019-03-18 10:46:00', '1'),
(1080, 'Narcisa', 'Carolina', 'Allan', 'Talledo', '0954010765', NULL, NULL, 4, 1, 'F', 'Ecuatoriano', 1, 10, 87, '1', '1994-12-30', '989754062', '<EMAIL>', NULL, 1, 'Sur', 'Av Las Esclusas', 'Av <NAME>', '4117', 'Casa 1 Planta Turqueza', '3099810', NULL, 1, 10, 87, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2020-03-19 05:05:00', '2020-03-19 05:17:00', '1'),
(1081, 'Jordy', 'Hipolito', 'Yaguachi', 'Elizalde', '0705377091', NULL, NULL, 4, 1, 'M', 'Ecuatoriano', 1, 7, 61, '1', '1997-11-21', '996912878', '<EMAIL>', NULL, 7, 'Imbabura', 'Via Puyango', 'Via San Jose', '12', 'Casa Amarilla 1 Piso', '2956380', NULL, 1, 7, 61, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2021-03-18 23:47:00', '2021-03-19 00:03:00', '1'),
(1082, 'Katherine', 'Karina', 'Bermeo', 'Mero', '0919200089', NULL, NULL, 4, 1, 'F', 'Ecuatoriano', 1, 10, 87, '1', '1992-02-12', '986783805', '<EMAIL>', NULL, 3, 'Norte', '<NAME>', '<NAME>', '62', '<NAME>', '2820147', NULL, 1, 10, 87, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2021-03-19 07:24:00', '2021-03-19 08:18:00', '1'),
(1083, 'Domenica', 'Stephania', 'Quintana', 'Garcia', '2450595950', NULL, NULL, 4, 1, 'F', 'Ecuatoriano', 1, 20, 193, '1', '1999-09-23', '983858432', '<EMAIL>', NULL, 7, '<NAME>', '<NAME> Larrea', 'Segunda Entrada De Muey', '7', 'Ci<NAME>', '2778189', NULL, 1, 20, 193, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2022-03-18 10:11:00', '2022-03-19 01:52:00', '1'),
(1084, 'Jorge', 'Renan', 'Moreira', 'Alarcon', '1312695974', NULL, NULL, 4, 5, 'M', 'Ecuatoriano', 1, 14, 152, '1', '1989-01-25', '993650772', '<EMAIL>', NULL, 7, 'Municipal', 'Autopista Manabi Guillen', 'Paso Lateral', NULL, 'Pino', '2305436', NULL, 1, 14, 152, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2024-03-18 23:19:00', '2005-04-19 09:34:00', '1'),
(1085, 'Erika', 'Johanna', 'Pacheco', 'Quinto', '0924331911', NULL, NULL, 4, 2, 'F', 'Ecuatoriano', 1, 10, 87, '1', '1985-11-26', '990477322', '<EMAIL>', NULL, 7, 'Sur', 'Coop Jaime Roldos', 'Mz 7', '30', 'Diaginal Sub Centro De Salud Guangala', '2543034', NULL, 1, 10, 87, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2024-03-19 04:38:00', '2020-04-19 08:36:00', '1'),
(1086, 'Gregorio', NULL, 'Quinchiguango', 'Maldonado', '2000133344', NULL, NULL, 3, 1, 'M', 'Ecuatoriano', 1, 9, 76, '1', '1996-08-15', '960055704', '<EMAIL>', NULL, 7, 'Miraflores', '<NAME>', 'Duncan', NULL, '<NAME>', '2527311', NULL, 1, 9, 76, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2026-03-19 08:48:00', '2027-03-18 11:08:00', '1'),
(1087, 'Karen', 'Michelle', 'Reyes', 'Merchan', '0951955780', NULL, NULL, 4, 5, 'F', 'Ecuatoriano', 1, 10, 87, '1', '1996-10-04', '939081329', '<EMAIL>', NULL, 7, 'Norte', 'Via A Daule Km 6 Y Medio', 'Aga', NULL, '<NAME>os', '2048090', NULL, 1, 10, 87, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2028-03-18 12:33:00', '2004-04-18 13:06:00', '1'),
(1088, 'Iris', 'Pamela', 'Hermenejildo', 'Hermenejildo', '0953582442', NULL, NULL, 1, 1, 'F', 'Ecuatoriano', 1, 10, 87, '1', '1996-07-23', '959829539', '<EMAIL>', NULL, 3, 'Suroeste', 'Portete', 'Venezuela', '5048', 'Atras <NAME>', '2478830', NULL, 1, 10, 87, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2028-03-19 01:52:00', '2028-03-19 08:21:00', '1'),
(1089, 'Cinthya', 'Rosario', 'Mera', 'Casquete', '0925030611', NULL, NULL, 4, 1, 'F', 'Ecuatoriano', 1, 10, 87, '1', '1986-02-21', '988348354', '<EMAIL>', NULL, 1, 'Norte', 'Coop Gallegos Lara', 'Mz T 50', '9', 'Centro De Salud', '2256399', NULL, 1, 10, 87, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2029-03-19 02:56:00', '2029-03-19 03:12:00', '1'),
(1090, '<NAME>', NULL, '<NAME>', NULL, '0953916319', NULL, NULL, 4, 1, 'M', 'Ecuatoriano', 1, 10, 87, '1', '1997-05-22', '997071992', '<EMAIL>', NULL, 5, 'Tarqui', '<NAME>', 'Av Principal', '216', '6 Cuadras A La Izquierda', '2878248', NULL, 1, 10, 87, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2029-03-19 03:53:00', '2029-03-19 04:12:00', '1'),
(1091, 'Leonardo', 'Estefano', 'Peña', 'Coca', '0954859831', NULL, NULL, 4, 1, 'M', 'Ecuatoriano', 1, 10, 87, '1', '1999-08-30', '995100248', '<EMAIL>', NULL, 7, 'Roca', '<NAME>', 'Piedrahita', '144', 'Templo Parusia', '2307117', NULL, 1, 10, 87, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2030-03-18 14:31:00', '2030-03-18 14:48:00', '1'),
(1092, 'Mildred', 'Guillermina', 'Vera', 'Zambrano', '0924856859', NULL, NULL, 4, 2, 'F', 'Ecuatoriano', 1, 10, 87, '1', '1986-08-01', '981542614', '<EMAIL>', NULL, 5, 'Suroeste', 'Huancavilca', '22y23', '4917', 'A Mitad De Cuadra', '2476641', NULL, 1, 10, 87, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2031-03-18 10:29:00', '2031-03-18 11:01:00', '1'),
(1093, 'Ruben', 'Dario', 'Zambrano', 'Cevallos', '0920108404', NULL, NULL, 4, 2, 'M', 'Ecuatoriano', 1, 10, 87, '1', '1982-02-16', '939268573', '<EMAIL>', NULL, 1, 'Oe', 'Huancavilca', '23ava', '4917', 'Casa De 3 Pisos', '2476641', NULL, 1, 10, 87, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2031-03-18 11:32:00', '2003-04-18 10:13:00', '1'),
(1094, 'Jennifer', NULL, 'Ureta', 'Centeno', '0924226962', NULL, NULL, 2, 2, 'F', 'Ecuatoriano', 1, 10, 87, '1', '1985-07-23', '979064111', '<EMAIL>', NULL, 7, 'Norte', '<NAME>', '20ane', '24', 'Tia De Samanes', '2216292', NULL, 1, 10, 87, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2002-04-19 04:32:00', '2010-04-19 03:29:00', '1'),
(1095, 'Melissa', 'RocÍo', 'VÁzquez', 'Villacreses', '1315150043', NULL, NULL, 5, 1, 'F', 'Ecuatoriano', 1, 14, 144, '1', '1993-03-01', '994425624', '<EMAIL>', NULL, 7, 'Centro', 'Guayas', 'Bolivar', '0', 'Centro', '2603035', NULL, 1, 14, 144, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2002-04-19 07:50:00', '2003-04-19 05:49:00', '1'),
(1096, 'Harold', 'Fernando', 'Torres', 'Moreno', '0916876196', NULL, NULL, 4, 4, 'M', 'Ecuatoriano', 1, 10, 87, '1', '1976-09-16', '979442881', '<EMAIL>', NULL, 1, 'Centro', 'Av Machalilla', 'Manabi', '1', 'Frente Comandato', '2300274', NULL, 1, 14, 153, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2003-04-19 05:33:00', '2003-04-19 06:00:00', '1'),
(1097, 'Andy', 'Javier', 'Balcazar', 'Maldonado', '0703650960', NULL, NULL, 4, 5, 'M', 'Ecuatoriano', 1, 7, 58, '1', '1992-04-15', '978695107', '<EMAIL>', NULL, 7, 'Cdla 18 De Noviembre', 'Pichincha', 'Pasaje', NULL, 'Diagonal A Tienda Enmita', '2511230', NULL, 1, 7, 58, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2004-04-19 08:47:00', '2005-04-18 11:25:00', '1'),
(1098, 'Juan', 'Sebastian', 'Quinaluisa', 'Chiluiza', '1251140123', NULL, NULL, 4, 1, 'M', 'Ecuatoriano', 1, 19, 189, '1', '2000-12-21', '998969680', '<EMAIL>', NULL, 7, 'Ciudadela Buena Fe Norte', 'Via Guaranda Babahoyo', '<NAME>', NULL, 'Frente A Servicios Vargas', '6039170', NULL, 1, 13, 128, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2005-04-18 13:43:00', '2009-04-19 07:59:00', '1'),
(1099, 'Ingri', 'Lilibeth', 'Pino', 'Espinoza', '1313571901', NULL, NULL, 2, 1, 'F', 'Ecuatoriano', 1, 14, 139, '1', '1994-10-12', '986352986', '<EMAIL>', NULL, 7, 'Via A La Costa', 'Mz 2379', 'Ciudadela Puertas Del Sol', '9', 'Casa De 2 Piso Blanca Esquinera', '2468705', NULL, 1, 10, 87, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2005-04-19 05:33:00', '2005-04-19 05:43:00', '1'),
(1100, 'Diego', 'Gabriel', 'Molina', 'Romero', '0923054001', NULL, NULL, 4, 1, 'M', 'Ecuatoriano', 1, 20, 193, '1', '1997-12-13', '980950383', '<EMAIL>', NULL, 5, 'Las Diunas 2', 'Las Dunas', 'Mz J', '19', 'A Una Cuadra Del Colisio Jaime Roldos', '2222222', NULL, 1, 20, 193, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2005-04-19 07:11:00', '2010-04-18 10:01:00', '1'),
(1101, 'Stalin', 'Marlon', 'EspaÑa', 'Vasquez', '0927193805', NULL, NULL, 4, 1, 'M', 'Ecuatoriano', 1, 10, 79, '1', '1988-09-30', '968303868', '<EMAIL>', NULL, 8, 'Norte', 'Cdla Orquideas', 'Mz 37 Villa 10', '10', 'Ingresando Frente A Gasolinera Primax', '4607210', NULL, 1, 10, 87, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2006-04-19 04:56:00', '2010-04-19 01:45:00', '1'),
(1102, 'Nicolle', 'Danielle', 'Troccoly', 'Yepez', '0952100170', NULL, NULL, 4, 1, 'F', 'Ecuatoriana', 57, 10, 1, '1', '1998-01-02', '983130544', '<EMAIL>', NULL, 7, 'Norte', 'Flamingo', '<NAME>', '219', '<NAME>', '2396624', NULL, 1, 10, 87, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2007-04-18 10:06:00', '2009-04-19 09:33:00', '1'),
(1103, 'Nayelly', 'Renella', 'Castellanos', 'Jimenez', '0951681089', NULL, NULL, 4, 1, 'F', 'Ecuatoriano', 1, 10, 87, '1', '2000-09-25', '985776906', '<EMAIL>', NULL, 7, 'El Triunfo', 'Domingo Comin', '2 De agosto', NULL, 'Atras Del Cementerio', '4567885', NULL, 1, 10, 82, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2007-04-19 05:50:00', '2010-04-19 08:59:00', '1'),
(1104, 'Steven', 'Mauricio', 'MuÑoz', 'Baquerizo', '0917969438', NULL, NULL, 4, 2, 'M', 'Ecuatoriano', 1, 10, 1, '1', '1986-05-22', '989616513', '<EMAIL>', NULL, 3, 'Sauces 9', '<NAME>', '<NAME>', '3', 'Mz R22 Villa 5 Casa Blanca De Una Planta', '2574351', NULL, 1, 10, 87, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2008-04-19 03:48:00', '2013-04-18 11:29:00', '1'),
(1105, 'Candy', 'Maricela', 'Paredes', 'Veintimilla', '0603455957', NULL, NULL, 4, 2, 'F', 'Ecuatoriano', 1, 5, 40, '1', '1980-09-01', '939950326', '<EMAIL>', NULL, 7, '<NAME>', 'Panamericana', 'La Dolorosa', '2', 'Pasando El Motel El Jardin', '2327155', NULL, 1, 5, 40, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2009-04-19 02:41:00', '2009-04-19 03:12:00', '1'),
(1106, 'Edison', 'Sneider', 'Cox', 'Erazo', '2200239677', NULL, NULL, 4, 5, 'M', 'Ecuatoriano', 1, 17, 176, '1', '1996-04-14', '960482422', '<EMAIL>', NULL, 7, '<NAME>', '<NAME>', '<NAME>', '0', 'Frente A Las Oficinas De Medio Ambiente', '527705', NULL, 1, 17, 176, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2009-04-19 09:49:00', '2010-04-18 10:01:00', '1'),
(1107, 'MarÍa', 'Trinidad', 'CedeÑo', 'Caicedo', '1308511391', NULL, NULL, 4, 1, 'F', 'Ecuatoriano', 1, 14, 141, '1', '1978-02-24', '985679290', '<EMAIL>', NULL, 3, '<NAME>', '<NAME>', '<NAME>', '145', 'Diagonal Colegio <NAME>', '3160674', NULL, 1, 19, 189, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2010-04-18 13:29:00', '2010-04-18 13:53:00', '1'),
(1108, 'Sebastian', NULL, '<NAME>', NULL, '1203480841', NULL, NULL, 5, 1, 'M', 'Ecuatoriano', 1, 10, 87, '1', '1977-03-26', '989841715', '<EMAIL>', NULL, 7, 'Ciudad Santiago', 'La Ria', 'Peatonal', '6078', 'Villa 16', '4631054', NULL, 1, 10, 87, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2010-04-19 02:47:00', '2017-04-19 03:13:00', '1'),
(1109, 'Juan', 'Israel', 'Andrade', 'Gonzalez', '0104057054', NULL, NULL, 1, 2, 'M', 'Ecuatoriano', 1, 1, 3, '1', '1984-05-25', '984864358', '<EMAIL>', NULL, 7, 'Paraiso', '<NAME>', '<NAME>', '252', 'A Pocos Metros Del Parque', '4107924', NULL, 1, 1, 3, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2010-04-19 04:33:00', '2010-04-19 05:42:00', '1'),
(1110, 'Ericka', 'Jazmin', 'Quito', 'Amboya', '0606232072', NULL, NULL, 4, 1, 'F', 'Ecuatoriano', 1, 5, 40, '1', '1999-06-09', '939052378', '<EMAIL>', NULL, 1, 'Lotizacion El Bosque', 'Primera Etapa', 'Segunda Etapa', '135', 'La Casa Del Miduvi Con Rejas Negras', '2222222', NULL, 1, 5, 40, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2011-04-18 11:44:00', '2013-04-19 08:28:00', '1'),
(1111, 'Gladys', 'Irene', 'Suarez', 'Suarez', '0803453273', NULL, NULL, 1, 1, 'F', 'Ecuatoriano', 1, 8, 67, '1', '1993-07-30', '960833895', '<EMAIL>', NULL, 5, 'Tonchigue', '<NAME>', '<NAME>', NULL, 'Una Cuadra Antes Del Reten Naval', '2470180', NULL, 1, 8, 67, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2011-04-19 02:57:00', '2014-05-19 03:34:00', '1'),
(1112, 'Nygel', 'Xavier', 'Diaz', 'Arboleda', '1205918657', NULL, NULL, 4, 1, 'M', 'Ecuatoriano', 1, 13, 125, '1', '1986-01-27', '992375860', '<EMAIL>', NULL, 7, 'Centro', '<NAME>', '2da Peatonal', NULL, 'Diagonal Clinica Odontologica Quimi', '2732762', NULL, 1, 13, 125, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2011-04-19 06:14:00', '2013-04-18 23:31:00', '1'),
(1113, 'Shirley', 'Judith', 'Quituisaca', 'Campoverde', '0940285786', NULL, NULL, 1, 1, 'F', 'Ecuatoriano', 1, 10, 87, '1', '1997-05-29', '968857606', '<EMAIL>', NULL, 1, 'Tarqui', '<NAME>', 'Av Principal', '216', 'De La Garita 6 Cuadras', '2847286', NULL, 1, 10, 87, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2012-04-19 04:00:00', '2013-04-19 02:16:00', '1'),
(1114, 'Diana', 'Nathaly', 'Chancay', 'Del Valle', '1312501255', NULL, NULL, 4, 1, 'F', 'Ecuatoriano', 1, 14, 144, '1', '1988-04-02', '994819029', '<EMAIL>', NULL, 3, 'Sur', 'Callejon 10', '<NAME>', NULL, '<NAME>', '3880485', NULL, 1, 10, 87, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2012-04-19 05:12:00', '2013-04-18 14:09:00', '1'),
(1115, 'Priscila', 'Maritza', 'Gutierrez', 'Bermeo', '0105249080', NULL, NULL, 4, 4, 'F', 'Ecuatoriano', 1, 1, 3, '1', '1987-11-13', '998483408', '<EMAIL>', NULL, 8, '<NAME>', '<NAME>', 'Urb', '36', 'Urb Los Capulies', '2859111', NULL, 1, 1, 3, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2012-04-19 08:57:00', '2012-04-19 09:46:00', '1'),
(1116, 'Wilian', 'Fernando', 'Yepez', 'Romo', '1001580834', NULL, NULL, 4, 2, 'M', 'Ecuatoriano', 1, 11, 104, '1', '1973-02-26', '939857451', '<EMAIL>', NULL, 7, 'Caranqui', 'Avenida Atahualpa', 'Capitan Espinosa', '5', 'A Una Cuadra Del Colegio Atahualpa', '2222222', NULL, 1, 11, 104, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2013-04-19 02:59:00', '2013-04-19 03:17:00', '1'),
(1117, 'Andrea', 'Alexandra', 'Arregui', 'Alvarado', '0924762578', NULL, NULL, 4, 1, 'F', 'Ecuatoriano', 1, 10, 87, '1', '1997-11-26', '996264253', '<EMAIL>', NULL, 3, 'Pueblo Nuevo', 'Avenida23', 'Calle 42 Y 43', NULL, 'Mercado De Salinas', '2770619', NULL, 1, 20, 193, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2017-04-19 05:27:00', '2017-04-19 05:43:00', '1'),
(1118, 'Leandro', 'Israel', 'Fajardo', 'Puga', '0923788368', NULL, NULL, 4, 1, 'M', 'Ecuatoriano', 1, 10, 90, '1', '1993-03-17', '986381216', '<EMAIL>', NULL, 1, '<NAME>', 'Galo Plaza', 'E Guaranda E Ibirra', NULL, 'Csa Con Pton Cafe', '2222222', NULL, 1, 10, 90, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2017-04-19 09:06:00', '2018-04-19 02:22:00', '1'),
(1119, 'William', 'Edgar', 'Paguay', 'Cajamarca', '0924707250', NULL, NULL, 4, 1, 'M', 'Ecuatoriano', 1, 10, 87, '1', '1984-10-17', '987265406', '<EMAIL>', NULL, 7, 'Sur', 'La Floresta 2', 'Av <NAME>', '18', 'Coleg<NAME>', '3865106', NULL, 1, 10, 87, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2017-04-19 09:46:00', '2018-04-18 10:19:00', '1'),
(1120, 'Jair', 'Alfredo', 'Solarte', 'Rivas', '0951048172', NULL, NULL, 4, 1, 'M', 'Ecuatoriano', 1, 10, 87, '1', '1999-02-14', '993711331', '<EMAIL>', NULL, 3, 'Prosperina', 'Calle Sexta', 'La Quinta', '205', 'Mercado La Prosperina', '2478900', NULL, 1, 10, 87, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2017-04-19 09:58:00', '2018-04-19 01:25:00', '1'),
(1121, 'Jenny', 'Patricia', 'Barboto', 'Avecillas', '1205059718', NULL, NULL, 4, 1, 'F', 'Ecuatoriano', 1, 13, 124, '1', '1985-07-18', '987599895', '<EMAIL>', NULL, 3, '<NAME>', '<NAME>', 'Manabi', '16', 'A Tres Cuadras Del Estadio San Lorenzo', '2907304', NULL, 1, 13, 132, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2018-04-19 06:15:00', '2019-04-18 23:29:00', '1'),
(1122, 'Nixon', 'Erith', 'CedeÑo', 'Obando', '0958957482', NULL, NULL, 4, 1, 'M', 'Ecuatoriano', 1, 10, 87, '1', '2000-05-10', '987659331', '<EMAIL>', NULL, 7, 'Casuarina', '<NAME>', 'Sn', NULL, 'Atras Del Colegio Canada', '2222222', NULL, 1, 10, 77, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2020-04-19 04:13:00', '2007-05-19 09:59:00', '1'),
(1123, 'Gina', 'Patricia', 'Villavicencio', 'Loja', '1711464162', NULL, NULL, 4, 2, 'F', 'Ecuatoriano', 1, 19, 189, '1', '1977-04-19', '992466914', '<EMAIL>', NULL, 7, '<NAME>', '<NAME>', '<NAME>', NULL, 'Peaje Via A Los Chillos', '2320349', NULL, 1, 19, 189, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2023-04-19 01:28:00', '2023-04-19 03:48:00', '1'),
(1124, 'Pablo', 'Andres', 'Navarro', 'Rogel', '1002732962', NULL, NULL, 4, 3, 'M', 'Ecuatoriano', 1, 11, 105, '1', '1990-12-05', '3987428473', '<EMAIL>', NULL, 7, 'La Dolorosa', 'Avd Quito', 'Bolibar', '1', 'Mas Arriba De La Escuela', '2668326', NULL, 1, 11, 105, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2025-04-18 12:38:00', '2012-05-18 10:24:00', '1'),
(1125, 'Janet', 'Carolina', 'Tacuri', 'Guapacaza', '0916713688', NULL, NULL, 1, 2, 'F', 'Ecuatoriano', 1, 10, 87, '1', '2018-04-26', '990796966', '<EMAIL>', NULL, 1, 'Norte', 'Samanes', 'Avda Orellana', '25', 'Cerca De Edimca', '2843247', NULL, 1, 10, 87, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2026-04-19 07:23:00', '2026-04-19 07:43:00', '1'),
(1126, 'Alex', 'Leonardo', 'Salvatierra', 'Zambrano', '0927719369', NULL, NULL, 4, 1, 'M', 'Ecuatoriano', 1, 13, 126, '1', '1991-03-02', '981823030', '<EMAIL>', NULL, 7, 'Lotizacion Lupita', 'Manzana13 Solar14', 'Lupita', '28', 'Cancha De Futbol', '5275580', NULL, 1, 13, 126, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2027-04-19 04:24:00', '2028-04-18 13:01:00', '1');
INSERT INTO `persona` (`per_id`, `per_pri_nombre`, `per_seg_nombre`, `per_pri_apellido`, `per_seg_apellido`, `per_cedula`, `per_ruc`, `per_pasaporte`, `etn_id`, `eciv_id`, `per_genero`, `per_nacionalidad`, `pai_id_nacimiento`, `pro_id_nacimiento`, `can_id_nacimiento`, `per_nac_ecuatoriano`, `per_fecha_nacimiento`, `per_celular`, `per_correo`, `per_foto`, `tsan_id`, `per_domicilio_sector`, `per_domicilio_cpri`, `per_domicilio_csec`, `per_domicilio_num`, `per_domicilio_ref`, `per_domicilio_telefono`, `per_domicilio_celular2`, `pai_id_domicilio`, `pro_id_domicilio`, `can_id_domicilio`, `per_trabajo_nombre`, `per_trabajo_direccion`, `per_trabajo_telefono`, `per_trabajo_ext`, `pai_id_trabajo`, `pro_id_trabajo`, `can_id_trabajo`, `per_estado`, `per_fecha_creacion`, `per_fecha_modificacion`, `per_estado_logico`) VALUES
(1127, 'Gladys', 'Rosalia', 'Aviles', 'Rojas', '0918436809', NULL, NULL, 1, 1, 'F', 'Ecuatoriano', 1, 10, 87, '1', '2018-05-02', '999058486', '<EMAIL>', NULL, 7, 'Sur', '<NAME>', 'Argentina', '1915', 'Junto A Colegio', '2218917', NULL, 1, 10, 87, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2002-05-19 07:36:00', '2002-05-19 08:06:00', '1'),
(1128, 'Brithany', 'Julexy', 'Moreno', 'CedeÑo', '0750335432', NULL, NULL, 4, 1, 'F', 'Ecuatoriano', 1, 7, 58, '0', '1999-03-21', '989445082', '<EMAIL>', NULL, 7, 'Huaquillas', 'Ciudadelas 12 De Octubre', 'Entre Los Ceibos Y Zaruma', NULL, 'Licoreria FarfÁn', '9445082', NULL, 1, 7, 58, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2002-05-19 08:23:00', '2028-06-19 02:33:00', '1'),
(1129, 'Jorge', 'Alfredo', 'PazmiÑo', 'Sotomayor', '0926247206', NULL, NULL, 4, 1, 'M', 'Ecuatoriano', 1, 10, 87, '0', '1987-02-02', '968035009', '<EMAIL>', NULL, 7, 'Samanes', 'Teod<NAME>', 'Tercer Pasaje Tres', '21', 'Frente Al Ascilo De Ancianos', '5030425', NULL, 1, 10, 87, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2004-05-19 01:59:00', '2004-05-19 02:15:00', '1'),
(1130, 'Jenny', 'Janina', 'Fernandez', 'Lozano', '0302526157', NULL, NULL, 1, 1, 'M', 'Ecuatoriano', 1, 10, 85, '1', '1999-10-10', '986980715', '<EMAIL>', NULL, 7, 'Centro', 'Calle Tercera', 'Calle Tercera', NULL, 'Unidad Educativa El Triunfo', '0', NULL, 1, 10, 85, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2004-05-19 02:24:00', '2004-05-19 02:38:00', '1'),
(1131, 'Suan', 'Elizabeth', 'Suarez', 'Coronel', '0920460896', NULL, NULL, 4, 2, 'M', 'Ecuatoriano', 1, 10, 87, '0', '1984-03-13', '989226963', '<EMAIL>', NULL, 7, 'Via La Costa', 'Via La Costa', 'Sn', NULL, 'Maz 6 V4', '5043473', NULL, 1, 10, 87, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2007-05-19 09:51:00', '2007-05-19 09:59:00', '1'),
(1132, 'Geovanny', 'Gregorio', 'Auria', 'Salazar', '0924867500', NULL, NULL, 4, 2, 'M', 'Ecuatoriano', 1, 10, 87, '1', '1986-07-24', '981154067', '<EMAIL>', NULL, 3, 'Duran', 'Coop', '<NAME>', NULL, 'Mz 1 Slr 8', '2222222', NULL, 1, 10, 83, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2009-05-19 04:17:00', '2028-05-19 01:04:00', '1'),
(1133, 'Maura', 'Jackeline', 'Torres', 'Jose', '0918255878', NULL, NULL, 4, 2, 'F', 'Ecuatoriano', 1, 20, 194, '1', '1979-09-06', '960491594', '<EMAIL>', NULL, 7, '<NAME>', '<NAME>', '<NAME>', '53', 'Junto A La Antena De Telconet', '2913680', NULL, 1, 20, 194, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2015-05-18 11:53:00', '2009-06-19 01:19:00', '1'),
(1134, 'Jessica', 'Paola', 'Rosero', 'Rodriguez', '1720617289', NULL, NULL, 4, 3, 'F', 'Ecuatoriano', 1, 21, 196, '1', '1988-03-25', '982891286', '<EMAIL>', NULL, 3, 'Sur', 'Es Avenida Quito', 'Y Pallatanga', '1305', 'Sto Domingo Tsachilas', '0', NULL, 1, 21, 196, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2015-05-19 05:48:00', '2016-05-19 04:33:00', '1'),
(1135, 'Maritza', 'Victoria', 'Freire', 'Viteri', '1801129790', NULL, NULL, 4, 4, 'F', 'Ecuatoriano', 1, 23, 204, '1', '1968-12-28', '987436423', '<EMAIL>', NULL, 7, 'Izamba', '<NAME>', '<NAME>', '26', 'Frente Liceo Policial', '2527833', NULL, 1, 23, 204, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2016-05-19 09:39:00', '2017-05-18 15:12:00', '1'),
(1136, 'John', 'Peter', 'Salavarria', 'Yagual', '0922977939', NULL, NULL, 4, 1, 'M', 'Ecuatoriano', 1, 10, 87, '1', '1995-05-09', '961063435', '<EMAIL>', NULL, 7, 'Cooperativa San Francisco', 'Via Daule', 'Mz 1054 S 10', '10', 'Casa De 2 Pisos Blanca', '2445508', NULL, 1, 10, 87, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2018-05-19 07:08:00', '2018-05-19 07:33:00', '1'),
(1137, 'Kelly', 'Judith', 'Granados', 'Murillo', '0950652784', NULL, NULL, 4, 1, 'M', 'Ecuatoriano', 1, 20, 192, '1', '1992-11-29', '969587906', '<EMAIL>', NULL, 7, 'Norte', 'Vergeles', 'Mz 45 A', '11', 'Vergeles', '3103287', NULL, 1, 10, 87, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2023-05-19 05:31:00', '2002-06-19 02:26:00', '1'),
(1138, '<NAME>', NULL, 'Au<NAME>', NULL, '0930495395', NULL, NULL, 4, 1, 'F', 'Ecuatoriano', 1, 10, 87, '1', '1991-11-17', '939043395', '<EMAIL>', NULL, 7, 'Norte', 'El Bosque', 'Sn', '50', 'A Lado Del Rancho Texas', '523074', NULL, 1, 9, 76, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2028-05-19 05:04:00', '2028-05-19 05:36:00', '1'),
(1139, 'Jonathan', 'Dario', 'Linch', 'Gonzalez', '0925014599', NULL, NULL, 4, 1, 'M', 'Ecuatoriano', 1, 1, 1, '1', '1991-12-03', '967072486', '<EMAIL>', NULL, 1, 'Sur Oeste', '<NAME>', '21 Ava', '4031', 'Frente A Una Capilla', '2460668', NULL, 1, 10, 87, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2030-05-18 10:12:00', '2030-05-18 10:35:00', '1'),
(1140, 'Luis', 'Fabian', 'Sayo', 'Naranjo', '2000082905', NULL, NULL, 1, 1, 'M', 'Ecuatoriano', 1, 9, 75, '1', '1991-12-29', '991031928', '<EMAIL>', NULL, 3, 'San Cristobal', 'Km 2', 'Via Al Progreso', NULL, 'Casa De 2 Pisos', '2520912', NULL, 1, 9, 75, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2030-05-19 01:32:00', '2030-05-19 02:09:00', '1'),
(1141, 'Carolina', 'Elizabeth', 'Leon', 'Zaccida', '0925245037', NULL, NULL, 4, 1, 'F', 'Ecuatoriano', 1, 10, 87, '1', '1986-01-30', '992159878', '<EMAIL>', NULL, 7, 'Norte', 'Virtoria Del Rio', 'Calle Asis', NULL, 'Mz 2911', '4545682', NULL, 1, 10, 87, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2031-05-19 00:36:00', '2031-05-19 01:02:00', '1'),
(1142, 'Nancy', 'Margarita', 'Penafiel', 'Jimenez', '1714086855', NULL, NULL, 4, 2, 'F', 'Ecuatoriano', 1, 16, 174, '1', '1974-07-13', '984212482', '<EMAIL>', NULL, 7, '<NAME>', 'Panamericana Norte', 'Tabacundo', '0', 'Calle Adoquinada Junto A La Gasolinera La Pantera 2', '2364441', NULL, 1, 19, 184, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2031-05-19 02:15:00', '2021-06-19 03:10:00', '1'),
(1143, 'Catherine', 'Andrea', 'Herrera', 'Caicedo', '0955374673', NULL, NULL, 4, 1, 'M', 'Ecuatoriano', 1, 10, 82, '1', '1995-11-15', '990471848', '<EMAIL>', NULL, 7, 'Urbana Banife', 'Vicente Piedrahita', 'Vicente Piedrahita Segunda', '205', 'Parte Posterior Del Shopping', '2798869', NULL, 1, 10, 82, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2031-05-19 04:52:00', '2031-05-19 06:56:00', '1'),
(1144, 'Jose', 'Armando', 'Ruiz', 'Jimenez', '0923398374', NULL, NULL, 4, 1, 'M', 'Ecuatoriano', 1, 10, 87, '1', '1998-02-04', '986211873', '<EMAIL>', NULL, 3, 'Suroeste', 'Oriente', 'La 24', NULL, 'Pasando La 22', '2759435', NULL, 1, 10, 87, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2031-05-19 06:20:00', '2031-05-19 06:27:00', '1'),
(1145, 'Angelica', 'Maria', 'Auquilla', 'Sanaguano', '0919163220', NULL, NULL, 1, 2, 'F', 'Ecuatoriano', 1, 5, 45, '1', '1980-02-02', '981052728', '<EMAIL>', NULL, 7, 'Bellavista', 'GalÁpagos', '<NAME>', NULL, 'Diagonal A La Cancha', '2523074', NULL, 1, 9, 76, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2001-06-18 10:43:00', '2001-06-18 12:12:00', '1'),
(1146, 'Venecia', 'Beatriz', 'Hinostroza', 'Coello', '0913424131', NULL, NULL, 4, 1, 'F', 'Ecuatoriano', 1, 13, 127, '1', '1969-08-26', '991912473', '<EMAIL>', NULL, 3, '<NAME>', 'Av Malecon 9 De Octubre', 'A', NULL, 'Entrada Por El Colegio Ecomundo', '0', NULL, 1, 13, 125, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2001-06-19 07:12:00', '2002-06-18 23:52:00', '1'),
(1147, 'Betsaida', 'Lorena', 'Cruz', 'QuiÑonez', '0951451475', NULL, NULL, 4, 1, 'F', 'Ecuatoriano', 1, 10, 87, '1', '1997-07-11', '983363178', '<EMAIL>', NULL, 7, 'Ballenita Oriental', '<NAME>', 'Av Tercera Y Calle Publica', NULL, 'Hipermarket Mi Comisariato', '2433357', NULL, 1, 20, 194, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2002-06-19 02:13:00', '2002-06-19 03:21:00', '1'),
(1148, 'Adrian', 'Roberto', 'Troccoly', 'Yepez', '0952054211', NULL, NULL, 4, 1, 'M', 'Ecuatoriano', 1, 10, 87, '1', '1995-10-07', '983130544', '<EMAIL>', NULL, 7, 'Norte', 'Flamingo', '<NAME>', '219', '<NAME>', '2396624', NULL, 1, 10, 87, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2004-06-19 07:45:00', '2004-06-19 07:55:00', '1'),
(1149, 'Karen', 'Elizabeth', 'Ramirez', 'Velez', '0920931490', NULL, NULL, 4, 1, 'M', 'Ecuatoriano', 1, 20, 193, '1', '1987-06-10', '980123012', '<EMAIL>', NULL, 7, 'Norte', 'La Libertad', 'Calle 25', NULL, 'Via A Salinas', '2783249', NULL, 1, 20, 193, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2005-06-19 04:44:00', '2006-06-18 10:43:00', '1'),
(1150, 'Magda', 'Elena', 'Castro', 'Vega', '0201799061', NULL, NULL, 4, 1, 'F', 'Ecuatoriano', 1, 2, 20, '1', '1987-04-15', '996577407', '<EMAIL>', NULL, 7, '<NAME>', 'Matias', 'Salinas', NULL, 'Pocos Pasos Del Subcentro De Salud', '2210149', NULL, 1, 2, 20, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2006-06-19 03:05:00', '2006-06-19 06:12:00', '1'),
(1151, 'Francisco', 'Ruben', 'Ormaza', 'Cuadros', '2200226047', NULL, NULL, 4, 1, 'M', 'Ecuatoriano', 1, 8, 71, '1', '1991-05-28', '983881638', '<EMAIL>', NULL, 3, 'Parroquia CaÑa Quemada', 'Pasaje Via Al Guabo', '8 De septiembre', '8', 'Villas Encalada', '0', NULL, 1, 7, 62, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2007-06-19 08:59:00', '2007-06-19 09:22:00', '1'),
(1152, 'Yessica', 'Elizabeth', 'Valencia', 'Sisa', '2000128500', NULL, NULL, 4, 1, 'F', 'Ecuatoriano', 1, 9, 76, '1', '1997-11-01', '960057921', '<EMAIL>', NULL, 7, 'Alta Bellavista', '<NAME>', '<NAME>', NULL, 'Frente A Una Cancha De Volley', '0', NULL, 1, 9, 76, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2008-06-19 07:55:00', '2008-06-19 08:16:00', '1'),
(1153, 'Lisbeth', '<NAME>', 'Rodriguez', 'Honorez', '0704191204', NULL, NULL, 4, 2, 'F', 'Ecuatoriano', 1, 7, 60, '1', '1981-04-21', '998489035', '<EMAIL>', NULL, 7, 'Las Brisas', 'Segunda Entrada De La Ciudadela', 'Segundo Callejon Mz 2', '8', 'Segunda Calle Largo Primer Callejon A Mano Derecha Segunda Casa Dos Pisos', '2983514', NULL, 1, 7, 60, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2011-06-19 01:37:00', '2011-06-19 08:03:00', '1'),
(1154, 'Jorge', 'Washington', 'Jaramillo', 'Valle', '0916361165', NULL, NULL, 4, 2, 'M', 'Ecuatoriano', 1, 10, 90, '1', '1975-11-06', '987239504', '<EMAIL>', NULL, 7, 'Norte', 'Mucho Lote', 'Etapa 5 Mz 2605', '24', 'Mucho Lote 1', '0', NULL, 1, 10, 87, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2012-06-18 10:11:00', '2012-06-18 10:18:00', '1'),
(1155, 'Silvio', 'Hernan', 'Coloma', 'Alban', '1720126497', NULL, NULL, 4, 1, 'M', 'Ecuatoriano', 1, 2, 22, '1', '1986-09-30', '990418895', '<EMAIL>', NULL, 7, '2', '<NAME>', '<NAME>', '105', 'Canchas Coperativismos', '2742042', NULL, 1, 21, 196, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2016-06-19 05:49:00', '2004-07-19 02:53:00', '1'),
(1156, 'Cristhian', 'Alfredo', 'Delgado', 'Rumbea', '0926514340', NULL, NULL, 2, 2, 'M', 'Ecuatoriano', 1, 10, 87, '1', '1988-08-04', '969988208', '<EMAIL>', NULL, 7, 'El Recreo', '4ta Etapa', 'Mz 418', '36', 'Peatonal', '2675505', NULL, 1, 10, 83, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2016-06-19 09:21:00', '2019-06-18 14:04:00', '1'),
(1157, 'Monica', 'Paola', 'Ricaurte', 'Estrada', '0926055161', NULL, NULL, 4, 2, 'F', 'Ecuatoriano', 1, 20, 192, '1', '1988-10-09', '992250825', '<EMAIL>', NULL, 7, '<NAME>', 'Avenida 6', 'Calle 4', NULL, 'A 3 Cuadras De La Clinica Loja', '420000', NULL, 1, 20, 193, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2025-06-19 08:51:00', '2026-06-19 08:29:00', '1'),
(1158, 'Alberto', 'Carlos', 'Triana', 'Ansaldo', '0919742692', NULL, NULL, 2, 2, 'M', 'Ecuatoriano', 1, 10, 87, '1', '1979-10-12', '9993350537', '<EMAIL>', NULL, 3, 'Norte', 'Av 25 De Julio', 'Sn', '3', 'Por Ciudad Verde', '0', NULL, 1, 7, 60, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2027-06-18 10:44:00', '2027-06-19 04:00:00', '1'),
(1159, 'Carlos', 'Daniel', 'Delgado', 'Alejandro', '0950569939', NULL, NULL, 4, 1, 'M', 'Ecuatoriano', 1, 10, 87, '1', '1997-02-15', '978715423', '<EMAIL>', NULL, 7, 'Mucho Lote 1', 'No 24', 'No 24', '30', 'A Dos Casa De La Farmacia Sana Sana', '2897882', NULL, 1, 10, 87, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2028-06-18 12:11:00', '2028-06-18 12:26:00', '1'),
(1160, 'Ines', 'Cecilia', 'Culqui', 'Pomboza', '1801766120', NULL, NULL, 1, 2, 'F', 'Ecuatoriano', 1, 23, 204, '1', '1962-05-27', '988533926', '<EMAIL>', NULL, 7, '<NAME>', 'Quito', 'Guayaquil', NULL, 'Junto A Cooperativa Galapaguera', '2520675', NULL, 1, 9, 75, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2003-07-19 01:12:00', '2003-07-19 01:24:00', '1'),
(1161, 'Marco', 'Antonio', 'Almache', 'Cando', '1203987837', NULL, NULL, 4, 2, 'M', 'Ecuatoriano', 1, 13, 124, '1', '1978-12-11', '980388983', '<EMAIL>', NULL, 7, '<NAME>', '0', '0', '0', 'Por Ximena 7', '2919439', NULL, 1, 13, 125, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2009-07-19 05:07:00', '2009-07-19 05:19:00', '1'),
(1162, 'Freddy', 'David', 'Pinargote', 'Aviles', '0927852541', NULL, NULL, 4, 2, 'M', 'Ecuatoriano', 1, 20, 192, '1', '1989-09-22', '994489808', '<EMAIL>', NULL, 7, 'Montecristi', 'Urbanizacion Ciudad Jardin', 'Via Perimetral', '1', 'Mz G V 1 A Concesionaria Hyundai', '2317257', NULL, 1, 14, 147, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2010-07-19 01:43:00', '2010-07-19 02:59:00', '1'),
(1163, 'Elisa', 'Karina', 'Chavez', 'Abril', '1721172698', NULL, NULL, 4, 1, 'F', 'Ecuatoriano', 1, 21, 196, '1', '1985-01-22', '985522758', '<EMAIL>', NULL, 7, '<NAME>', '<NAME>', '<NAME>', '14', 'Junto Al Parque Intrnacional Bomboli', '2757054', NULL, 1, 21, 196, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2011-07-19 05:54:00', '2011-07-19 06:25:00', '1'),
(1164, 'Diana', 'Elizabeelizabetelizabeth', 'Ochoa', 'Loor', '2350086134', NULL, NULL, 4, 1, 'F', 'Ecuatoriano', 1, 21, 196, '1', '1999-05-06', '992381623', '<EMAIL>', NULL, 7, '<NAME>', '<NAME>', '<NAME>', '70', 'Escuela HÉroes De Paquisha', '2757054', NULL, 1, 21, 196, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2011-07-19 08:28:00', '2011-07-19 08:49:00', '1'),
(1165, 'Cristian', 'Santiago', 'Martinez', 'Chuquitarco', '0503038291', NULL, NULL, 4, 1, 'M', 'Ecuatoriano', 1, 6, 47, '1', '1987-12-17', '961324886', '<EMAIL>', NULL, 1, 'Los Hornos', 'Via A Pujili', 'Via A San Jose De Pichul', NULL, 'Mecanica De Enderezada Y Pintura', '961324', NULL, 1, 6, 47, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2012-07-19 00:33:00', '2012-07-19 07:20:00', '1'),
(1166, 'Alana', 'Carolina', 'Astudilo', 'Figueroa', 'V-27684584', NULL, 'V-27684584', 6, 1, 'F', 'Venezolana', 38, 601, 12203, '0', '2000-01-02', '4248498132', '<EMAIL>', NULL, 7, 'Villa Rosa', 'Numero 5', 'Bloque 6 Piso 4', '408', 'Al Lado Del Liceo', '8498132', NULL, 38, 601, 12203, NULL, NULL, NULL, NULL, 38, 586, 11987, '1', '2013-07-19 02:06:00', '2023-07-19 09:28:00', '1'),
(1167, 'Angel', 'Daniel', 'Sequera', 'Suarez', 'V-25141583', NULL, 'V-25141583', 6, 1, 'M', 'Venezolano', 38, 597, 12138, '0', '1996-07-09', '4245600423', '<EMAIL>', NULL, 7, 'El Encanto', 'Calle 11', 'Calle 10', '108', 'Bodega Herminio', '5600423', NULL, 38, 597, 12138, NULL, NULL, NULL, NULL, 38, 586, 11987, '1', '2013-07-19 02:06:00', '2023-07-18 10:44:00', '1'),
(1168, 'Yeferson', 'David', 'Mendoza', 'Chacón', 'V-25760628', NULL, 'V-25760628', 2, 1, 'M', 'Venezolano', 1, 10, 87, '0', '1996-02-06', '4129181312', '<EMAIL>', NULL, 3, 'Santa Rosalia', 'Av Nueva Granada', 'Los Rosales', NULL, 'Terminal La Bandera', '6600035', NULL, 1, 10, 87, NULL, NULL, NULL, NULL, 1, 10, 87, '1', '2013-07-19 02:06:00', '2017-07-18 11:43:00', '1'),
(1169, 'Carlos', 'Javier', 'Moreno', 'Salazar', 'V-27317094', NULL, 'V-27317094', 2, 1, 'M', 'Venezolano', 38, 597, 12133, '0', '1999-04-20', '4245910198', '<EMAIL>', NULL, 7, '<NAME>', 'Calle 18', 'Carreras 1 Y 2', NULL, 'Calle 18 Entre Carreras 1 Y 2 Sector Ali Primera', '6634275', NULL, 38, 597, 12138, NULL, NULL, NULL, NULL, 38, 586, 11987, '1', '2013-07-19 02:06:00', '2018-07-19 09:03:00', '1'),
(1170, 'José', NULL, 'Mogollón', NULL, 'V-27586588', NULL, 'V-27586588', 4, 1, 'M', 'Venezolana', 38, 597, 12138, '0', '2000-01-27', '4245432608', '<EMAIL>', NULL, 7, 'El Pozon', 'Calle 4', 'Carrera 6', '93', 'Villa Rosa', '6635178', NULL, 38, 597, 12138, NULL, NULL, NULL, NULL, 38, 586, 11987, '1', '2013-07-19 02:06:00', '2017-07-19 08:47:00', '1'),
(1171, 'Michelle', 'Jose', 'Fonseca', 'Antequera', 'V-26487626', NULL, 'V-26487626', 4, 1, 'F', 'Venezolana', 38, 591, 12060, '0', '1998-01-27', '4145227967', '<EMAIL>', NULL, 7, 'Urbanizacion <NAME>', 'Calle 9', 'Calle 10', '4', '<NAME>', '6631098', NULL, 38, 597, 12138, NULL, NULL, NULL, NULL, 38, 586, 11987, '1', '2013-07-19 02:06:00', '2021-07-19 00:49:00', '1'),
(1172, 'Doris', 'Maria', 'Castillo', 'Castillo', 'V-28150838', NULL, 'V-28150838', 4, 1, 'F', 'Venezolana', 38, 597, 12137, '0', '1994-10-04', '4121555497', '<EMAIL>', NULL, 7, 'El Hatico Calle Principal Via Boro', 'Calle Principal', 'Consejo Comunal Pio Tamayo', '0', 'El Estadio', '6631098', NULL, 38, 597, 12133, NULL, NULL, NULL, NULL, 38, 586, 11987, '1', '2013-07-19 02:06:00', '2028-07-18 12:29:00', '1'),
(1173, 'Robert', 'Antonio', 'Linares', 'Perez', 'V-27388016', NULL, 'V-27388016', 2, 1, 'M', 'Venezolana', 38, 597, 12133, '0', '1996-11-01', '4126723671', '<EMAIL>', NULL, 7, 'Urbanizacion Santa Rita', 'Santa Rita', 'Calle Paramericana', NULL, 'Via A El Molino', '3525754', NULL, 38, 597, 12133, NULL, NULL, NULL, NULL, 38, 586, 11987, '1', '2013-07-19 02:06:00', '2017-07-18 23:09:00', '1'),
(1174, 'Luis', 'Eduardo', 'Guédez', 'Torrealba', 'V-28328590', NULL, 'V-28328590', 4, 1, 'M', 'Venezolano', 38, 597, 12133, '0', '2001-08-14', '4121555466', '<EMAIL>', NULL, 3, 'La Concordia', '3', 'Av Fraternidad', NULL, 'Licoreria Curumato', '6635564', NULL, 38, 597, 12138, NULL, NULL, NULL, NULL, 38, 586, 11987, '1', '2013-07-19 02:06:00', '2021-07-19 05:17:00', '1'),
(1175, 'Moisés', 'David', 'Perez', 'Perez', 'V-23553806', NULL, 'V-23553806', 4, 1, 'M', 'Venezolano', 38, 597, 12133, '0', '1992-11-02', '4149576559', '<EMAIL>', NULL, 5, 'Este', 'Portugal', 'Santa Elena', '13', '1 Cuadra Del Estadium De Futbol', '2532601', NULL, 38, 597, 12133, NULL, NULL, NULL, NULL, 38, 586, 11987, '1', '2013-07-19 02:06:00', '2029-07-19 00:43:00', '1'),
(1176, 'Yulitza', 'Del Carmen', 'Flores', 'Lucena', 'V-24384639', NULL, 'V-24384639', 1, 2, 'F', 'Venezolana', 38, 597, 12133, '0', '1995-04-12', '4168374485', '<EMAIL>', NULL, 7, 'El Tocuyo Estado Lara', '<NAME>', '<NAME>', '1', '<NAME>', '8374485', NULL, 38, 597, 12133, NULL, NULL, NULL, NULL, 38, 586, 11987, '1', '2013-07-19 02:06:00', '2026-07-19 06:45:00', '1'),
(1177, 'Katherinne', 'Stefania', 'Romano', 'PÉrez', 'V-27761230', NULL, 'V-27761230', 4, 1, 'F', 'Venezolana', 38, 597, 12138, '0', '2000-04-11', '4121564618', '<EMAIL>', NULL, 7, 'M<NAME>', 'Carrera 10', 'Calle 15', NULL, 'A 100 Metros De La Unidad Educativa Padre P<NAME>', '6630671', NULL, 38, 597, 12138, NULL, NULL, NULL, NULL, 38, 586, 11987, '1', '2013-07-19 02:06:00', '2016-07-19 08:51:00', '1'),
(1178, 'Mayra', 'Alejandra', 'Arrieche', 'Torrealba', 'V-25653846', NULL, 'V-25653846', 6, 1, 'F', 'Venezolana', 38, 597, 12133, '0', '1994-05-22', '4140733236', '<EMAIL>', NULL, 7, 'El Tocuyo Estado Lara', 'Calle 4', 'Urbanizacion Villa Colonial', '93', 'Calle Cuatro', '733236', NULL, 38, 597, 12133, NULL, NULL, NULL, NULL, 38, 586, 11987, '1', '2013-07-19 02:06:00', '2020-07-19 05:12:00', '1'),
(1179, 'Marycarmen', 'De Los Ángeles', 'RodrÍguez', 'VÁsquez', 'V-27994491', NULL, 'V-27994491', 4, 1, 'F', 'Venezolana', 38, 597, 12133, '0', '2001-07-13', '4262017612', '<EMAIL>', NULL, 8, '<NAME>', '<NAME>', 'Calle 4', '55', 'Residencia Las DoÑas P5 Apto 55 Diagonal A Metropoliss', '2667191', NULL, 38, 597, 12133, NULL, NULL, NULL, NULL, 38, 586, 11987, '1', '2013-07-19 02:06:00', '2029-07-19 06:34:00', '1'),
(1180, 'Laila', NULL, 'Ramirez', 'Nazrldin', 'V-27234923', NULL, 'V-27234923', 2, 1, 'F', 'Venezolana', 38, 606, 12297, '0', '1999-07-31', '4167105575', '<EMAIL>', NULL, 4, 'La Candelaria', 'Calle Sur 13', 'Esquina Ño Pastor', '1010', 'Plaza Parque Carabobo', '5763080', NULL, 38, 594, 12090, NULL, NULL, NULL, NULL, 38, 586, 11987, '1', '2013-07-19 02:06:00', '2014-07-19 07:19:00', '1'),
(1181, 'JesÚs', 'Eduardo', 'PÉrez', 'Gomez', 'V-28480869', NULL, 'V-28480869', 2, 1, 'M', 'Venezolano', 38, 591, 12060, '0', '2001-08-14', '4162401769', '<EMAIL>', NULL, 3, '<NAME>', 'Calle 50', 'Entre 26 Y 27', '2636', 'Casa 26 36', '4453047', NULL, 38, 597, 12133, NULL, NULL, NULL, NULL, 38, 586, 11987, '1', '2013-07-19 02:06:00', '2023-07-19 09:43:00', '1'),
(1182, 'Mariana', NULL, 'Paredes', 'MÉndez', 'V-27629590', NULL, 'V-27629590', 4, 1, 'F', 'Venezolana', 38, 2180, 31591, '0', '2000-05-16', '4126799795', '<EMAIL>', NULL, 7, 'La Mora', 'La Mora', 'Segunda Calle', NULL, 'Universidad YacambÚ Sede Vieja', '2693493', NULL, 38, 597, 12133, NULL, NULL, NULL, NULL, 38, 586, 11987, '1', '2013-07-19 02:06:00', '2018-07-19 08:57:00', '1'),
(1183, 'Marco', 'Antonio', 'DÍaz', 'Villegas', 'V-27617324', NULL, 'V-27617324', 4, 1, 'M', 'Venezolano', 38, 597, 12133, '0', '2000-11-26', '4265543545', '<EMAIL>', NULL, 7, 'Este', 'Portugal', '6', NULL, 'Frente A Parque El Cardenalito Del Este Area Sur', '2559227', NULL, 38, 597, 12133, NULL, NULL, NULL, NULL, 38, 586, 11987, '1', '2013-07-19 02:06:00', '2019-07-19 08:15:00', '1'),
(1184, 'Gianfranco', NULL, 'Radomile', 'Oquendo', 'V-28653684', NULL, 'V-28653684', 4, 1, 'M', 'Venezolana', 38, 597, 12133, '0', '2000-11-17', '4267524987', '<EMAIL>', NULL, 8, 'Catedral', 'Avenida 20', 'Calle 11', NULL, '<NAME>', '2522378', NULL, 38, 597, 12133, NULL, NULL, NULL, NULL, 38, 586, 11987, '1', '2013-07-19 02:06:00', '2031-07-18 13:20:00', '1'),
(1185, 'Anateresa', NULL, 'Barrios', 'Nieto', 'V-26120647', NULL, 'V-26120647', 4, 1, 'F', 'Venezolana', 38, 597, 12133, '0', '1997-09-26', '4245213309', '<EMAIL>', NULL, 3, 'Los Rastrojos Municipio Palavecino', 'Intercomunal Cabudare Acarigua', 'Calle Unica UrbanizaciÓn Royal Park', '11', 'Al Lado De La Panaderia Royal Park', '2625008', NULL, 38, 597, 12133, NULL, NULL, NULL, NULL, 38, 586, 11987, '1', '2013-07-19 02:06:00', '2028-07-19 01:49:00', '1'),
(1186, 'MarÍa', 'Alejandra', 'ChacÓn', 'Gil', 'V-28493266', NULL, 'V-28493266', 2, 1, 'F', 'Venezolana', 38, 597, 12133, '0', '2000-09-29', '4245993750', '<EMAIL>', NULL, 7, 'Este', '<NAME>', 'Av Principal Ciudad Roca', NULL, 'Centro Comercial Las Trinitarias', '6350106', NULL, 38, 597, 12133, NULL, NULL, NULL, NULL, 38, 586, 11987, '1', '2013-07-19 02:06:00', '2028-07-19 02:46:00', '1'),
(1187, 'Ana', 'Virginia', 'HernÁndez', 'Coronel', 'V-27737881', NULL, 'V-27737881', 2, 1, 'F', 'Venezolana', 38, 597, 12133, '0', '2001-04-15', '4245312095', '<EMAIL>', NULL, 7, 'El Valle', 'Calle 49', 'Carrera 25', '2486', 'Banco Provincial', '7156096', NULL, 38, 597, 12133, NULL, NULL, NULL, NULL, 38, 586, 11987, '1', '2013-07-19 02:06:00', '2016-07-19 08:00:00', '1'),
(1188, 'Fabiana', 'Angelica', 'Romero', 'León', 'V-26897439', NULL, 'V-26897439', 4, 1, 'F', 'Venezolana', 38, 601, 12212, '0', '2000-01-18', '4242790732', '<EMAIL>', NULL, 7, 'Gran Roque', 'La Pista', 'La Lagunita', NULL, 'Vivencia', '2790732', NULL, 38, 594, 12090, NULL, NULL, NULL, NULL, 38, 586, 11987, '1', '2013-07-19 02:06:00', '2020-07-19 06:42:00', '1'),
(1189, 'Fernando', 'Matias', 'Klein', NULL, '31003866', NULL, '31003866', 2, 1, 'M', 'Argentina', 3, 33, 230, '0', '1984-11-22', '3512688115', '<EMAIL>', NULL, 8, 'Las Rosas 1', '<NAME>', '<NAME>', '339', 'Barrio Las Rosas 1', '4952656', NULL, 3, 39, 230, NULL, NULL, NULL, NULL, 3, 33, 230, '1', '2013-07-19 02:06:00', '2023-07-19 04:36:00', '1'),
(1190, 'Rocio', '<NAME>', 'López', NULL, '41439244', NULL, '41439244', 1, 1, 'F', 'Argentina', 3, 33, 230, '0', '1998-07-08', '3517566933', '<EMAIL>', NULL, 1, 'Renacimiento', '<NAME>', '<NAME>', '427', 'Cementerio San Vicente', '4563472', NULL, 3, 33, 230, NULL, NULL, NULL, NULL, 3, 33, 230, '1', '2013-07-19 02:06:00', '2028-07-19 08:23:00', '1'),
(1191, 'Kenyer', 'Alejandra', 'Duque', 'Ceballos', '1000405997', NULL, '1000405997', 4, 1, 'F', 'Colombiana', 11, 209, 2491, '0', '1999-09-10', '3045229581', '<EMAIL>', NULL, 1, 'Comuna 8', 'Calle 65', '16', '46', '121', '2846677', NULL, 11, 209, 2491, NULL, NULL, NULL, NULL, 11, 208, 2480, '1', '2013-07-19 02:06:00', '2024-07-19 09:42:00', '1'),
(1192, 'Emmanuel', 'E', 'Giraldo', 'Marin', '1152221677', NULL, '1152221677', 6, 2, 'M', 'Colombiano', 11, 209, 2491, '0', '1998-07-03', '3137513095', '<EMAIL>', NULL, 3, 'Enciso', 'Carrera 25 Bb', 'Calle 56', NULL, 'Barrio', '0', NULL, 11, 209, 2491, NULL, NULL, NULL, NULL, 11, 208, 2480, '1', '2013-07-19 02:06:00', '2023-07-18 22:05:00', '1'),
(1193, 'Veronica', 'Isabel', 'Rodriguez', 'Vergara', '1026149683', NULL, '1026149683', 4, 1, 'F', 'Colombiana', 11, 221, 2828, '0', '1993-09-25', '3144191894', '<EMAIL>', NULL, 3, 'Urbano', '57c', '57c', '2231', 'Al Lado De La Cancha Los Mangos', '2921522', NULL, 11, 209, 2491, NULL, NULL, NULL, NULL, 11, 208, 2481, '1', '2013-07-19 02:06:00', '2030-07-19 08:29:00', '1'),
(1194, 'Paula', 'Andrea', 'Goez', 'Quiroz', '1146442117', NULL, '1146442117', 1, 1, 'F', 'Colombiana', 11, 209, 2491, '0', '1997-09-30', '3006431903', '<EMAIL>', NULL, 7, 'Altos De La Torre', '57', '17a33', NULL, 'Escuela Altos De La Torre', '2921862', NULL, 11, 209, 2491, NULL, NULL, NULL, NULL, 11, 208, 2481, '1', '2013-07-19 02:06:00', '2024-07-19 03:18:00', '1'),
(1195, 'Wendy', 'Johana', 'Bustos', 'Azuaje', 'V-24759756', NULL, 'V-24759756', 4, 1, 'F', 'Venezolana', 38, 594, 12091, '0', '1996-07-22', '4126341797', '<EMAIL>', NULL, 7, '<NAME>', '<NAME>', 'Los Robles', NULL, 'EstaciÓn Agua Salud Del Metro De Caracas', '8622043', NULL, 38, 586, 11987, NULL, NULL, NULL, NULL, 1, 10, 87, '1', '2013-07-19 02:06:00', '2018-07-19 06:04:00', '1'),
(1196, 'Daniel', 'Mauricio', 'Sánchez', 'Vaquero', '1007831842', NULL, '1007831842', 4, 1, 'M', 'Colombia', 11, 237, 3198, '0', '2000-09-01', '3146643581', '<EMAIL>', NULL, 7, 'Afueras', 'Carretera Kilometro 3 Via Flandes Espinal', 'Porterias', NULL, 'Frente A Hotel CabaÑas Del Rey', '2468418', NULL, 11, 237, 3208, NULL, NULL, NULL, NULL, 38, 586, 11987, '1', '2013-07-19 02:06:00', '2019-07-19 06:40:00', '1'),
(1197, 'Alvaro', 'José', 'Ramirez', 'Falcón', '3-0510-0486', NULL, '3-0510-0486', 4, 1, 'M', 'Costarricense', 12, 243, 3328, '0', '1998-02-01', '71159650', '<EMAIL>', NULL, 7, 'Cervantes', 'El Bajo De Cervamtes', '75 Metros Este Super Karen Liliana', NULL, 'Casa Amarilla Oro', '7115965', NULL, 12, 243, 3328, NULL, NULL, NULL, NULL, 12, 242, 3308, '1', '2013-07-19 02:06:00', '2016-07-19 07:53:00', '1'),
(1198, 'Elcira', 'Milagros', 'Garcia', 'Padilla', '1012423556', NULL, '1012423556', 4, 1, 'F', 'Colombiana', 11, 213, 2605, '0', '1995-07-26', '3045473991', '<EMAIL>', NULL, 7, '<NAME>', 'Calle 5b', '41b', '59', 'Casa', '7006052', NULL, 11, 222, 2848, NULL, NULL, NULL, NULL, 11, 208, 2481, '1', '2013-07-19 02:06:00', '2024-07-18 12:14:00', '1'),
(1199, 'Sonia', 'Esmeralda', 'Mejia', 'Leiva', '51964273', NULL, '51964273', 4, 1, 'F', 'SalvadoreÑa', 16, 299, 3721, '0', '1995-06-28', '70303888', '<EMAIL>', NULL, 5, 'Urbano', '<NAME>', 'Final De Calle', '16', '<NAME>', '2384200', NULL, 16, 299, 3721, NULL, NULL, NULL, NULL, 16, 298, 3718, '1', '2013-07-19 02:06:00', '2018-07-19 09:03:00', '1'),
(1200, 'Angie', 'Eunice', 'Santacruz', 'Cortéz', '06006395-3', NULL, '06006395-3', 4, 1, 'F', 'SalvadoreÑa', 16, 302, 3750, '0', '2000-02-14', '72989589', '<EMAIL>', NULL, 7, 'Nuevo Lourdes', '<NAME>', 'Poligono N', '24', 'Mega Manzana 2', '2346588', NULL, 16, 302, 3744, NULL, NULL, NULL, NULL, 16, 298, 3718, '1', '2013-07-19 02:06:00', '2016-07-18 12:48:00', '1'),
(1201, 'Mileydi', 'Johayra', 'Cornejo', 'Chavez', '75180990', NULL, '75180990', 4, 1, 'F', 'Peruana', 30, 553, 11515, '0', '1996-08-02', '980923227', '<EMAIL>', NULL, 7, 'Mz', 'Los Jazmines', 'N1 Lote 37', NULL, 'En La Recta De Los Restaurantes Cevicherias', '331000', NULL, 30, 540, 11432, NULL, NULL, NULL, NULL, 30, 534, 11366, '1', '2013-07-19 02:06:00', '2017-07-19 09:34:00', '1'),
(1202, 'Roberto', 'Andrés', 'Ydler', 'Aguero', '147037565', NULL, '147037565', 2, 1, 'M', 'Venezolano', 38, 594, 12090, '0', '1997-04-04', '4124307100', '<EMAIL>', NULL, 7, '<NAME>', '<NAME>', '<NAME>', '257', 'Av Insurgente', '9141245', NULL, 30, 548, 11495, NULL, NULL, NULL, NULL, 30, 534, 11366, '1', '2013-07-19 02:06:00', '2017-07-18 11:12:00', '1'),
(1203, 'Michelle', 'Mariana', 'Carrera', 'Ortiz', '0940715675', NULL, NULL, 1, 1, 'M', 'Ecuatoriano', 1, 10, 87, '1', '1992-11-27', '994333663', '<EMAIL>', NULL, 7, '<NAME>', '<NAME>', '<NAME>', '2728', 'Diagonal Clinica Millenium', '6013252', NULL, 1, 10, 87, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2014-07-19 04:33:00', '2014-07-19 04:42:00', '1'),
(1204, 'Julio', 'Vinicio', 'Nacimba', 'Loya', '1723726939', NULL, NULL, 1, 1, 'M', 'Ecuatoriano', 1, 19, 189, '1', '1992-08-30', '994212845', '<EMAIL>', NULL, 1, 'AmaguaÑa', '<NAME>', '12 De octubre', NULL, 'Casa De Dos Pisos', '3821309', NULL, 1, 19, 189, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2014-07-19 05:32:00', '2016-07-19 09:58:00', '1'),
(1205, 'Erika', 'Alejandra', 'PeÑa', 'MontaÑo', '1758819013', NULL, NULL, 4, 1, 'F', 'Colombiana', 11, 238, 3238, '0', '1988-12-24', '939836682', '<EMAIL>', NULL, 3, 'Las Acacias', 'Las Acacias', 'Las Acacias', NULL, 'Entrada X Duragas', '2790132', NULL, 1, 8, 69, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2016-07-19 02:19:00', '2017-07-19 06:29:00', '1'),
(1206, 'Nexar', 'Vicente', 'Loor', 'Vera', '1311007635', NULL, NULL, 4, 2, 'M', 'Ecuatoriano', 1, 14, 140, '1', '1982-05-17', '994326209', '<EMAIL>', NULL, 7, 'Pascuales', 'Km 16 Via A Daule', 'Via Daule', '11', 'Cerveceria Nacional', '2995498', NULL, 1, 10, 87, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2016-07-19 08:13:00', '2016-07-19 08:46:00', '1'),
(1207, 'Leonela', 'Isabel', 'Mujica', 'Torrealba', '28165895', NULL, '28165895', 4, 1, 'F', 'Venezolana', 38, 597, 12133, '0', '2001-08-08', '4140733236', '<EMAIL>', NULL, 7, '<NAME>', 'Calle 4', '<NAME>', '93', '<NAME>', '6631098', NULL, 38, 597, 12138, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2021-07-18 23:31:00', '2021-07-18 23:47:00', '1'),
(1208, 'Maria', 'Isabel', 'Crow', 'Crow', '0914631940', NULL, NULL, 2, 2, 'F', 'Ecuatoriano', 1, 10, 87, '1', '1974-12-20', '993799638', '<EMAIL>', NULL, 7, 'Samborondon', 'Ciudad Celeste', 'Etapa La Peninsula Mz 10 Villa 19', NULL, 'Pasando El Colegio Soler', '2028260', NULL, 1, 10, 98, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2021-07-19 06:33:00', '2021-07-19 06:42:00', '1'),
(1209, 'Alberto', 'Harold', 'Martinez', 'Castillo', '0942078890', NULL, NULL, 4, 1, 'M', 'Ecuatoriano', 1, 10, 95, '1', '1994-11-16', '988673388', '<EMAIL>', NULL, 7, 'Milagro', '<NAME>', '<NAME>', '710', 'Casa 2 Pisos Color Fucsia Y Crema', '2712294', NULL, 1, 10, 90, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2025-07-18 10:13:00', '2005-08-18 20:10:00', '1'),
(1210, 'Karen', 'Liseth', 'Picado', 'Gonzalez', 'C02339109', NULL, 'C02339109', 4, 1, 'F', 'Nicaraguense', 27, 494, 10901, '0', '1993-10-01', '585211191', '<EMAIL>', NULL, 1, '2', '<NAME>', '2', '2', '2', '5211191', NULL, 27, 494, 10900, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2030-07-19 02:48:00', '2030-07-19 04:06:00', '1'),
(1211, 'Allison', 'Geraldine', 'Lazo', 'Cun', '0705984201', NULL, NULL, 4, 1, 'F', 'Ecuatoriano', 1, 7, 60, '1', '1997-03-11', '988909756', '<EMAIL>', NULL, 3, 'La PeaÑa', 'Avenida Ferroviaria', 'Avenida Principal', NULL, 'Sindicato De Chofer', '2162253', NULL, 1, 7, 62, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2031-07-18 12:21:00', '2031-07-18 12:53:00', '1'),
(1212, 'Erick', 'Alexis', 'Arana', 'Cuzme', '2350920183', NULL, NULL, 4, 1, 'M', 'Ecuatoriano', 1, 21, 195, '1', '1999-10-19', '994123819', '<EMAIL>', NULL, 1, '<NAME>', '<NAME>', '<NAME>', '4', 'A Media Cuadra De La Cancha Sintetica San Carlos', '2725597', NULL, 1, 21, 195, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2003-08-19 00:10:00', '2003-08-19 00:51:00', '1'),
(1213, 'Jose', 'Ignacio', 'Agurto', 'Mera', '1204759011', NULL, NULL, 1, 4, 'M', 'Ecuatoriano', 1, 10, 87, '1', '1981-10-20', '996239581', '<EMAIL>', NULL, 3, '<NAME>', '<NAME>', '7mo Pasaje', '13', 'Detras Del Hotel Monte Carlo', '5064268', NULL, 1, 10, 87, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2009-08-19 00:45:00', '2011-08-18 21:43:00', '1'),
(1214, 'Jessica', 'Marisol', 'Quinatoa', 'Jami', '0503567125', NULL, NULL, 4, 1, 'M', 'Ecuatoriano', 1, 6, 47, '1', '1992-01-17', '999736368', '<EMAIL>', NULL, 1, 'Cotopaxi', 'Latacunga', 'Latacunga', NULL, 'Latacunga', '0', NULL, 1, 6, 47, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2018-08-03 23:44:38', '2018-08-10 15:06:48', '1'),
(1215, 'Andrea', 'Naralia', 'Vargas', 'Bosquez', '1724092042', NULL, NULL, 4, 2, 'F', 'Ecuatoriano', 1, 21, 196, '1', '1990-08-29', '989406937', '<EMAIL>', NULL, 5, 'Centro', 'Via Quito', 'Mz3', '17', 'Conjunto Residencial El Doral', '2276628', NULL, 1, 21, 196, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2018-08-14 18:11:44', '2018-08-14 18:56:11', '1'),
(1216, 'Carolay ', NULL, 'Merino', NULL, '1104486533', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '593999327585', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2018-10-04 20:29:11', NULL, '1'),
(1217, 'Segundo', NULL, 'Vacacela', NULL, '060443160-1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '593987017993', '<EMAIL>', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2018-10-04 20:52:15', NULL, '1'),
(1218, 'Armando', NULL, 'Sarango', NULL, '1500640931', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '5939922503329', '<EMAIL>', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2018-10-05 14:46:33', NULL, '1'),
(1219, 'Rommel ', NULL, 'JimÉnez ', NULL, '0950199257', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '999091389', '<EMAIL>', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2018-10-05 16:09:11', NULL, '1'),
(1220, 'Jose', NULL, 'Tenorio', NULL, '0921850590', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0958865178', '<EMAIL>', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2018-10-05 20:24:47', NULL, '1'),
(1221, 'Karen', NULL, 'Saldaña', NULL, '1206200881', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '593997094920', '<EMAIL>', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2018-10-05 20:38:24', NULL, '1'),
(1222, 'Maria', NULL, 'Macas', NULL, '1104784671', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0988790286', '<EMAIL>', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2018-10-05 21:09:13', NULL, '1'),
(1223, 'Darwin ', NULL, 'Ventura ', NULL, '2450071804', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '960279266', '<EMAIL>', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2018-10-05 21:44:43', NULL, '1'),
(1224, 'Luis ', NULL, 'Octavio ', NULL, '0605470202', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '593961555247', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '2018-10-05 22:33:32', NULL, '1');
|
<gh_stars>1-10
create serial s start with 5 increment by 2 cache 5;
create table t(i int) partition by hash(i) partitions 3;
insert into t(i) values (s.next_value), (s.next_value), (s.next_value), (s.next_value), (s.next_value), (s.next_value), (s.next_value), (s.next_value);
select * from t__p__p0 order by i;
select * from t__p__p1 order by i;
select * from t__p__p2 order by i;
alter table t add partition partitions 2;
select * from t__p__p0 order by i;
select * from t__p__p1 order by i;
select * from t__p__p2 order by i;
select * from t__p__p3 order by i;
select * from t__p__p4 order by i;
insert into t(i) values (s.next_value);
select * from t__p__p0 order by 1;
drop t;
drop serial s;
|
alter table "chat"."ReadUpToIndex" rename column "attendeeId" to "registrantId";
|
<reponame>dimagilg/commcare-hq<filename>corehq/blobs/sql_templates/restrict_legacy_attachment_metadata_insert.sql<gh_stars>100-1000
-- prevent inserts of legacy form and case attachments
CREATE OR REPLACE FUNCTION insert_not_allowed() RETURNS TRIGGER AS $$ BEGIN
RAISE EXCEPTION 'insert not allowed';
END; $$ LANGUAGE 'plpgsql';
DROP TRIGGER IF EXISTS legacy_xform_attachment_insert_not_allowed
ON form_processor_xformattachmentsql;
CREATE TRIGGER legacy_xform_attachment_insert_not_allowed
BEFORE INSERT ON form_processor_xformattachmentsql
EXECUTE PROCEDURE insert_not_allowed();
|
select it.name as Tag,
round((sum(quantity * unit_price) / ( select sum(quantity * unit_price)
from sales_invoice as si1
left join sales_invoice_detail as sid1
on si1.id_sales_invoice = sid1.id_sales_invoice
where si1.trans_date between @StartDate and @EndDate) * 100), 2) as Percentage
from sales_invoice as si
left join sales_invoice_detail as sid
on sid.id_sales_invoice = si.id_sales_invoice
left join items as i
on i.id_item = sid.id_item
left join item_tag_detail as itd
on itd.id_item = i.id_item
left join item_tag as it
on it.id_tag = itd.id_tag
where si.trans_date
between @StartDate and @EndDate
and si.id_company = 1
group by it.id_tag
order by it.id_tag
|
UPDATE STUDIO
SET president = "M.G.Mayers"
WHERE name="MGM" |
CREATE TABLE stones (
id SERIAL PRIMARY KEY,
game_id int REFERENCES games NOT NULL,
x int NOT NULL,
y int NOT NULL,
color character varying(255) NOT NULL,
inserted_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL,
UNIQUE (game_id, x, y)
);
|
<reponame>ajmalhsn/survey_repo
-- phpMyAdmin SQL Dump
-- version 4.6.5.2
-- https://www.phpmyadmin.net/
--
-- Host: 127.0.0.1
-- Generation Time: Apr 27, 2018 at 06:50 PM
-- Server version: 10.1.21-MariaDB
-- PHP Version: 5.6.30
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: `test`
--
-- --------------------------------------------------------
--
-- Table structure for table `q26_attr`
--
CREATE TABLE `q26_attr` (
`id` int(11) NOT NULL,
`attribute_e` varchar(500) NOT NULL,
`attribute_a` varchar(500) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Dumping data for table `q26_attr`
--
INSERT INTO `q26_attr` (`id`, `attribute_e`, `attribute_a`) VALUES
(1, 'Reputation/Image of the provider', 'سمعة/ الصورة الانطباعية عن المزود'),
(2, 'Convenience offered', 'الراحة المقدمة'),
(3, 'Endorsement by local government authority/department', 'المصادقة من قبل هيئة/ دائرة حكومية محلية'),
(4, 'Local roots of the company (e.g., having more local employees, having a local company representative dealing with you etc.)', 'الجذور المحلية للشركة (على سبيل المثال لديها موظفين محليين أكثر، لديها ممثل محلي للشركة يتعامل معكم، الخ)'),
(5, 'Security/Peace of mind', 'الآمان/راحة البال'),
(6, 'Flexible coverage schemes', 'برامج تغطية مرنة'),
(7, 'Value for money/Value added Services', 'استحقاق السعر/خدمات ذات قيمة مضافة'),
(8, 'Customer Service', 'خدمة العملاء'),
(9, 'Global Expertise & Reach', 'الخبرة العالمية والوصول إليها'),
(10, 'Ease of application process (Proposal & Quotation, Process to enroll etc.)', 'سهولة عملية تقديم الطلب (العرض وعرض الأسعار، عملية التسجيل، الخ)'),
(11, 'Pre-Authorization process', 'عملية ما قبل التفويض'),
(12, 'Speed of approval (to see the doctors/tests etc.)', 'سرعة الموافقة (لزيارة الأطباء/إجراء الفحوصات، الخ)'),
(13, 'Easy Claims process', 'سهولة عملية المطالبة'),
(14, 'Pricing, Fee & Charges', 'الأسعار والرسوم والأتعاب'),
(15, 'Medical Inflation/ Burning charge', 'تضخم العلاج الطبي/ حرق الأسعار'),
(16, 'Payment Options & Flexible Terms', 'خيارات الدفع و الشروط المرنة'),
(17, 'Loyalty programs', 'برامج الولاء'),
(18, 'Ease of linking with Jawazat', 'سهولة الربط مع الجوازات'),
(19, 'Fast delivery of cards once signed up', 'السرعة في تسليم البطاقات بمجرد الاشتراك'),
(20, 'Online platforms', 'منصات عبر الانترنت'),
(21, 'Wide range of insurance products', 'مجموعة واسعة من منتجات التأمين'),
(22, 'Less documentation', 'مستندات أقل'),
(23, 'Trustworthiness', 'جديرة بالثقة'),
(24, 'KSA wide Providers Network (Hospital/Clinics covered)', 'شبكة واسعة من المزودين في المملكة العربية السعودية (المستشفيات/ المستوصفات المغطاة)'),
(25, 'City wide Providers Network (Hospital/Clinics covered)', 'شبكة مزودي الخدمات على مستوى المدينة (المستشفيات/ المستوصفات المغطاة)'),
(26, 'Specialties covered by the Hospital/Clinic network', 'التخصصات التي تغطيها شبكة المستشفيات/المستوصفات'),
(27, 'Annual Coverage Limit', 'حدود التغطية السنوية'),
(28, 'Dental coverage', 'تغطية الأسنان'),
(29, 'Optician coverage', 'تغطية النظارات الطبية'),
(30, 'Diseases covered', 'الأمراض المغطاة'),
(31, 'Outpatient coverage', 'تغطية العيادات الخارجية'),
(32, 'Inpatient coverage', 'تغطية التنويم'),
(33, 'Maternity cover', 'تغطية الحمل والولادة'),
(34, 'Chronic disease cover', 'تغطية الأمراض المزمنة'),
(35, 'Pre-existing conditions coverage', 'تغطية الحالات الموجودة مسبقا'),
(36, 'Serious illness cover (Cancer, Dialysis etc.)', 'تغطية الأمراض الخطيرة (السرطان، غسيل الكلى، الخ)'),
(37, 'Emergency treatment & coverage', 'تغطية العلاج الطارئ'),
(38, 'Seasonal Vaccinations', 'اللقاحات الموسمية'),
(39, 'Payment asked from Employees/ Deductible for doctor visit/medicines/tests etc.', 'مبلغ أقل يدفعه الموظف/ المبلغ المقطوع من الموظف مقابل زيارة الطبيب/ الأدوية/الفحوصات، الخ'),
(40, 'Home country coverage (For Expat employees)', 'تغطية في بلد الموظف الأصلي (بالنسبة للمقيمين)'),
(41, 'VIP services like Phone consultation, Home visits etc.', 'خدمات لكبار الشخصيات مثل توفر الاستشارات عبر الهاتف، الزيارات المنزلية، الخ'),
(42, 'Coverage of prescribed drugs', 'تغطية أوسع للأدوية التي يصفها الطبيب');
/*!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 */;
|
<reponame>HardyScheel/learn-MySQL
-- Login: mysaql -u <your username> -p
select database(); -- Which db is selected?
show databases; -- Show all dbs.
use <myDatabase>; -- Use a specific db.
show tables; -- Show all tables of your selected db.
describe <your db>.<your table> -- Show details about a table. |
-- CreateTable
CREATE TABLE "Marriage" (
"marriageId" SERIAL NOT NULL,
"maleId" INTEGER NOT NULL,
"femaleId" INTEGER NOT NULL,
"marriageDate" TIMESTAMP(3) NOT NULL,
"remark" TEXT NOT NULL,
PRIMARY KEY ("marriageId")
);
|
-- phpMyAdmin SQL Dump
-- version 5.0.3
-- https://www.phpmyadmin.net/
--
-- Host: localhost
-- Generation Time: Jan 23, 2021 at 02:46 PM
-- Server version: 10.4.14-MariaDB
-- PHP Version: 7.4.11
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: `scrambler_word`
--
-- --------------------------------------------------------
--
-- Table structure for table `migrations`
--
CREATE TABLE `migrations` (
`id` int(10) UNSIGNED NOT NULL,
`migration` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`batch` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `migrations`
--
INSERT INTO `migrations` (`id`, `migration`, `batch`) VALUES
(1, '2021_01_23_052957_create_word_table', 1),
(2, '2021_01_23_131140_create_score_table', 2);
-- --------------------------------------------------------
--
-- Table structure for table `score`
--
CREATE TABLE `score` (
`id` bigint(20) UNSIGNED NOT NULL,
`name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`score` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `score`
--
INSERT INTO `score` (`id`, `name`, `score`, `created_at`, `updated_at`) VALUES
(1, '<NAME>', '80', NULL, NULL),
(2, '<NAME>', '100', NULL, NULL);
-- --------------------------------------------------------
--
-- Table structure for table `word`
--
CREATE TABLE `word` (
`id` bigint(20) UNSIGNED NOT NULL,
`word` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `word`
--
INSERT INTO `word` (`id`, `word`, `created_at`, `updated_at`) VALUES
(1, 'alpaca', NULL, NULL),
(2, 'ant', NULL, NULL),
(3, 'Beagle', NULL, NULL),
(4, 'Bee', NULL, NULL),
(5, 'bat', NULL, NULL),
(6, 'beaver', NULL, NULL),
(7, 'bear', NULL, NULL),
(8, 'beetle', NULL, NULL),
(9, 'bird', NULL, NULL),
(10, 'buffalo', NULL, NULL);
--
-- Indexes for dumped tables
--
--
-- Indexes for table `migrations`
--
ALTER TABLE `migrations`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `score`
--
ALTER TABLE `score`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `word`
--
ALTER TABLE `word`
ADD PRIMARY KEY (`id`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `migrations`
--
ALTER TABLE `migrations`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;
--
-- AUTO_INCREMENT for table `score`
--
ALTER TABLE `score`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;
--
-- AUTO_INCREMENT for table `word`
--
ALTER TABLE `word`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=11;
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 */;
|
<reponame>seba-m/University-Projects
-- Table: public.Producto
-- DROP TABLE public."Producto";
CREATE TABLE IF NOT EXISTS public."Producto"
(
"IdProducto" character varying(40) COLLATE pg_catalog."default" NOT NULL,
"IdCategoria" character varying(40) COLLATE pg_catalog."default" NOT NULL,
"IdNegocio" character varying(40) COLLATE pg_catalog."default" NOT NULL,
"Nombre" character varying(100) COLLATE pg_catalog."default" NOT NULL,
"Descripcion" text COLLATE pg_catalog."default",
"Foto" character varying(40) COLLATE pg_catalog."default",
"Stock" integer NOT NULL DEFAULT 0,
"CantidadMinima" integer,
"PrecioCosto" integer NOT NULL DEFAULT 0,
"PrecioVenta" integer NOT NULL DEFAULT 0,
"FechaVencimiento" date,
"UnidadMedida" character varying(20) COLLATE pg_catalog."default",
"AlarmaActivada" boolean DEFAULT false,
"AlarmaAccionada" boolean DEFAULT false,
"FechaAlarma" timestamp(0) without time zone,
CONSTRAINT "ProductoPK" PRIMARY KEY ("IdProducto"),
CONSTRAINT "CategoriaFK" FOREIGN KEY ("IdCategoria")
REFERENCES public."Categoria" ("IdCategoria") MATCH SIMPLE
ON UPDATE NO ACTION
ON DELETE NO ACTION,
CONSTRAINT "NegocioFK" FOREIGN KEY ("IdNegocio")
REFERENCES public."Negocio" ("IdNegocio") MATCH SIMPLE
ON UPDATE NO ACTION
ON DELETE NO ACTION
)
TABLESPACE pg_default;
ALTER TABLE public."Producto"
OWNER to postgres;
-- Index: finf_producto_AlarmaAccionada
-- DROP INDEX public."finf_producto_AlarmaAccionada";
CREATE INDEX "finf_producto_AlarmaAccionada"
ON public."Producto" USING btree
("AlarmaAccionada" ASC NULLS LAST, "IdNegocio" COLLATE pg_catalog."default" ASC NULLS LAST)
TABLESPACE pg_default; |
alter table "public"."comments"
add constraint "comments_pkey"
primary key ("username");
|
--
INSERT INTO subscription_delivery_in_progress (id, claimant, claimed, claim_expires)
VALUES ($(subscriptionId), $(claimant), now(), now() + $(claimTimeoutSeconds)::text::interval)
ON CONFLICT (id) DO UPDATE
SET
claimant = $(claimant),
claimed = now(),
claim_expires = now() + $(claimTimeoutSeconds)::text::interval
RETURNING id
|
DROP TABLE IF EXISTS raster_pixelaspolygons;
CREATE TABLE raster_pixelaspolygons (
rast raster
);
CREATE OR REPLACE FUNCTION make_test_raster()
RETURNS void
AS $$
DECLARE
width int := 10;
height int := 10;
x int;
y int;
rast raster;
BEGIN
rast := ST_MakeEmptyRaster(width, height, 0, 0, 1, -1, 0, 0, 0);
rast := ST_AddBand(rast, 1, '32BUI', 0, 0);
FOR x IN 1..width LOOP
FOR y IN 1..height LOOP
IF (x + y) % 2 = 1 THEN
rast := ST_SetValue(rast, 1, x, y, x + y);
END IF;
END LOOP;
END LOOP;
INSERT INTO raster_pixelaspolygons VALUES (rast);
RETURN;
END;
$$ LANGUAGE 'plpgsql';
SELECT make_test_raster();
DROP FUNCTION make_test_raster();
SELECT
(pix).x,
(pix).y,
(pix).val,
ST_AsText((pix).geom)
FROM (SELECT ST_PixelAsPolygons(rast) AS pix FROM raster_pixelaspolygons) foo
ORDER BY 1, 2, 4;
SELECT
(pix).x,
(pix).y,
(pix).val,
ST_AsText((pix).geom)
FROM (SELECT ST_PixelAsPolygons(ST_SetBandNoDataValue(rast, NULL)) AS pix FROM raster_pixelaspolygons) foo
ORDER BY 1, 2, 4;
SELECT
(pix).x,
(pix).y,
(pix).val,
ST_AsText((pix).geom)
FROM (SELECT ST_PixelAsPolygons(rast, NULL) AS pix FROM raster_pixelaspolygons) foo
ORDER BY 1, 2, 4;
SELECT
(pix).x,
(pix).y,
(pix).val,
ST_AsText((pix).geom)
FROM (SELECT ST_PixelAsPolygons(rast, 1, FALSE) AS pix FROM raster_pixelaspolygons) foo
ORDER BY 1, 2, 4;
SELECT ST_AsText(ST_PixelAsPolygon(rast, 1, 1)) FROM raster_pixelaspolygons;
SELECT ST_AsText(ST_PixelAsPolygon(rast, 1, 2)) FROM raster_pixelaspolygons;
SELECT ST_AsText(ST_PixelAsPolygon(rast, -1, -1)) FROM raster_pixelaspolygons;
DROP TABLE IF EXISTS raster_pixelaspolygons;
|
<filename>eclipse-workspace/DemoSite/core/src/main/resources/sql/BLC_SKU_UPDATE_LONG_DESC.sql
UPDATE BLC_SKU SET LONG_DESCRIPTION='The super-sized, slipcased Adamantium Collection format is back, and it''s the X-Men''s turn in the spotlight! It''s the best and brightest moments from the mighty mutants'' long and storied history, like you''ve never seen them before - and packed with dozens of extras! Thrill to the X-Men''s debut, seminal battles against Magneto and the Sentinels, the classic Days of Future Past and God Loves, Man Kills stories, Magneto''s return, Cyclops and Jean Grey''s wedding, Cassandra Nova''s deadly attack on mutantkind, the discovery of a cure for mutation, the X-Men''s exodus to San Francisco, and the original teen team''s shocking arrival in the present day' WHERE SKU_ID=10000001;
UPDATE BLC_SKU SET LONG_DESCRIPTION='It''s the strangest, smashing-est Hulk yet! The green goliath discovers that to remain himself - and prevent the diabolical Dr. Banner from re-emerging - he must STAY ANGRY! The Hulk picks fights against drug cartels, sea monsters, Russian super-soldiers and a lost city of Sasquatches - oh, and the Punisher, Kraven the Hunter, Wolverine and the Thing! But when Banner''s devious master plan is revealed, and Dr. Doom returns, it''s a monumental day of reckoning for both Hulk and Banner! Hulk wants a piece of Doom, Banner plays an endgame of his own, and it all leads to an explosive conclusion' WHERE SKU_ID=10000002;
UPDATE BLC_SKU SET LONG_DESCRIPTION='A NEW YORK TIMES #1 BESTSELLER
The Justice League is the greatest force for good the world has ever seen. But not everyone sees them that way.
Their never-ending battle against evil results in casualties beyond its super-powered, costumed combatants. The League’s attempts to safeguard innocent lives cannot save everybody. Unbeknownst to Earth’s greatest champions, their greatest triumph may contain the seeds of their greatest defeat.
For heroes are not the only people who face tragedy and are reborn as something greater than they were before. Villains can take this journey, too.
And once they start out on this dark path, the road could lead straight to the destruction of the Justice League….
' WHERE SKU_ID=10000003;
UPDATE BLC_SKU SET LONG_DESCRIPTION='Yet to be written' WHERE SKU_ID=10000004;
UPDATE BLC_SKU SET LONG_DESCRIPTION='Florence: Harvard symbologist <NAME> awakes in a hospital bed with no recollection of where he is or how he got there. Nor can he explain the origin of the macabre object that is found hidden in his belongings.
A threat to his life will propel him and a young doctor, <NAME>, into a breakneck chase across the city. Only Langdon''s knowledge of the hidden passageways and ancient secrets that lie behind its historic facade can save them from the clutches of their unknown pursuers.
With only a few lines from Dante''s Inferno to guide them, they must decipher a sequence of codes buried deep within some of the Renaissance''s most celebrated artworks to find the answers to a puzzle which may, or may not, help them save the world from a terrifying threat.' WHERE SKU_ID=10000005;
UPDATE BLC_SKU SET LONG_DESCRIPTION='The Lost Symbol by <NAME> is a mind-numbing, racy thriller set within a 12-hour period that sends the protagonist, <NAME>, on a wild race to find the keys that would unlock the secrets of freemasonry.' WHERE SKU_ID=10000006;
UPDATE BLC_SKU SET LONG_DESCRIPTION='Harvard professor <NAME> receives an urgent late-night phone call while on business in Paris: the elderly curator of the Louvre has been brutally murdered inside the museum.Alongside the body, police have found a series of baffling codes.As Langdon and a gifted French cryptologist, <NAME>, begin to sort through the bizarre riddles, they are stunned to find a trail that leads to the works of <NAME> - and suggests the answer to a mystery that stretches deep into the vault of history.' WHERE SKU_ID=10000007;
UPDATE BLC_SKU SET LONG_DESCRIPTION='he Immortals of Meluha is the first book of the Shiva Trilogy. The book is about the discovery of the Neelkanth and the arrival of Shiva and his tribe to the city of Meluha. The Suryavanshi rulers and their empire is facing trouble and Shiva is the only one who can save them.' WHERE SKU_ID=10000008;
UPDATE BLC_SKU SET LONG_DESCRIPTION='The Secret of the Nagas begins with Shiva trying to save Sati from a Naga attack. His quest for the Naga warrior who killed Brahaspati and assaulted Sati leads Shiva and Sati to the land of the Brangas. In The Secret of Nagas, Shiva the prophesied savior of the Meluhan Empire finds himself in a turbulent situation trying to avenge the murder of his friend and saving his clan and the people of Meluha from the evil serpent people.His journey takes him across the lengths and breadths of the ancient India, searching for the truth and answers to all his intriguing questions. He travels to Kashi to find every bit of detail about the Nagas. He comes to learn about the reason behind the alliance between the Brangas and the Nagas. Both Shiva and Sati eventually discover startling secrets that have profound effects on both their lives and relationship. With a war brewing in the backdrop, will Shiva be able to accept the truth and live up to the expectations attached to him?' WHERE SKU_ID=10000009;
UPDATE BLC_SKU SET LONG_DESCRIPTION='India’s own super hero is finally here. Shiva has risen yet again to destroy the evildoers. The last of the Shiva Trilogy, this book promises to keep the readers gripped while the great warrior discovers who his true enemies are and gives it his all to destroy them.' WHERE SKU_ID=10000010;
UPDATE BLC_SKU SET LONG_DESCRIPTION='Master of The Game revolves around the MacGregor/Blackwell family and Kate Blackwell in particular. Kate is one of the richest and most powerful women in the world. The story starts with her ninetieth birthday celebration which is attended by other powerful people and dignitaries. She is hugely enigmatic with innumerable mysteries surrounding her. Her father earned riches beyond his imagination a long time back as a diamond prospector. Her mother, on the other hand, was born to a sly Afrikaner merchant. Her birthday celebrations see participation and toasts from prominent people like a judge of the Supreme Court. The White House also sends a telegram. The old lady herself sees the specters of long gone friends and enemies surround her on her birthday.' WHERE SKU_ID=10000011;
UPDATE BLC_SKU SET LONG_DESCRIPTION='Nothing Lasts Forever is a riveting suspense thriller penned by the master storyteller. It is an international bestseller that brings to you the story of three women doctors are unexpectedly hurled into a spotlight in the frenzied world of a big hospital.' WHERE SKU_ID=10000012;
UPDATE BLC_SKU SET LONG_DESCRIPTION='Master of The Game revolves around the MacGregor/Blackwell family and Kate Blackwell in particular. Kate is one of the richest and most powerful women in the world. The story starts with her ninetieth birthday celebration which is attended by other powerf' WHERE SKU_ID=10000013;
UPDATE BLC_SKU SET LONG_DESCRIPTION='A touch of a button could mean the end of the world as we know it....<NAME>ley, beautiful, talented, intelligent, bas been chosen as the American Ambassador to Romania. Thrust from her comforting, homely life in Kansas, she finds herself lost amongst the political turmoil in a foreign country where she is seen as the enemy and no – one is to be trusted.
Then someone starts to threaten Mary and her children. Who can want her to leave so desperately and why? And can Mary decide who she can trust when her life is on the line?
' WHERE SKU_ID=10000014;
UPDATE BLC_SKU SET LONG_DESCRIPTION=' A Song of Ice And Fire takes place across two continents, Westeros and Essos. In these regions, seasons last for years. It has been summer for many years, but winter is approaching, and the turn of the season also triggers many momentous events. There are three distinct storylines, although they are ultimately interconnected.
Many centuries ago, the Seven Kingdoms that ruled Westeros were united under the powerful Targaryen Dynasty, who had the service of fire-breathing dragons at their disposal. This dynasty came to an end when the dragons apparently became extinct.
There was a power struggle over the Iron Throne, once held by the Targaryens and the last Targaryen ruler was killed in a rebellion led by <NAME>.
Now, after Robert’s death, his young son, the cruel and self-absorbed <NAME>, occupies the throne, supported by his mother and her powerful family, the Lannisters. The northern fiefdoms in Westeros are held by the powerful Eddard Stark, who swears allegiance to <NAME>.
In the far northern border of Westeros, there is a huge, centuries old Wall of Ice. This is the only barrier that protects Westeros from the unearthly beings called the Others. And, there are the Wildlings, humans who live beyond the wall. This Wall is protected by the sentinels of the Night’s Watch.
In Essos, the story follows the fortunes of young Daenerys Targaryen, the only known heir to the House of Targaryen. Her character grows through the series, from a innocent young girl sold into marriage, to a strong young woman who wants to reclaim the Iron Throne.
Complicating the situation are rival claimants to the Iron Throne who want Joffrey out of the way. The most prominent among these is <NAME>, brother to <NAME>.
A Song of Ice And Fire (Set of 6 Books) slowly builds up the strife and tension, and is an epic tale of murder, treachery, intrigue, and ambition under the ever present shadow of the enigmatic Others. This series has been adapted for television by HBO, as Game Of Thrones. The six books in this set are A Game of Thrones, A Feast For Crows, A Clash Of Kings, A Dance With Dragons, A Storm Of Swords 1: Steel and Snow and A Storm Of Swords 2: Blood and Gold.' WHERE SKU_ID=10000015;
UPDATE BLC_SKU SET LONG_DESCRIPTION=' The series, A Song Of Ice And Fire, narrates an epic fantasy story that is set in Westeros and Essos, two separate continents that share an ancient history and are linked by a common dynasty. The first two novels trace the events in Westeros after the death of the last king of the Targaryen Dynasty. The third book is set in the continent of Essos, where the last known descendant of the Targaryen line, Daenerys Targaryen, slowly rises to power.
The whole series traces the power struggle for the Iron Throne of Westeros, with various factions staking claim to it.
In the fourth book, A Feast For Crows, the War of the Five Kings finally draws to an end. Most of the main disputants for the Iron throne are dead. <NAME>, the alleged son of <NAME>, has now become the Commander of the Night watch. In the absence of King <NAME>, Joffrey’s eight year old brother, <NAME>, is now the ruler of King’s Landing, watched over by his mother <NAME>.
The manuscript of A Feast for Crows was so huge that the author was compelled to split it. He decided to split the novel geographically rather than chronologically. For this reason, A Feast For Crows and A Dance With Dragons trace events that take place simultaneously, but in different locations. In A Feast For Crows, the story focuses on the happenings in Westeros, the Riverlands, Dorne, King’s Landing, and the Iron Islands. The events in Essos, Winterfell, and the Wall are covered in A Dance With Dragons.
<NAME> finally realizes her dreams of power as she is now the factual ruler of King’s Landing. She is not as skilled in administration as she is in intrigue and makes many ill-advised moves, making many enemies in the process, leading to her own downfall. The book also follows the events in the Riverlands, the Eyrie, Iron Islands, and Dorne. This book also covers a part of the story of Arya Stark in the East. The rest of her story is covered in the next book.' WHERE SKU_ID=10000016;
UPDATE BLC_SKU SET LONG_DESCRIPTION='Onetime underground journalist <NAME> has traveled far from his radical roots in the ?60s-until the bizarre and brutal murder of a millionaire rock promoter draws him back. As Sandy sets out to investigate the crime, he finds himself on a magical mystery tour of the pent-up passions of his generation. For a new messiah has resurrected the once legendary rock band Nazgul-but with an apocalyptic new beat that is a requiem of demonism, mind control, and death only Sandy may be able to change in time.' WHERE SKU_ID=10000017;
UPDATE BLC_SKU SET LONG_DESCRIPTION='Fanfeludastic - Indian Review of Books, taut, smart and visually charged.
There is no age bar for reading this collection - Mid day
Kaleidoscopic dance of images and remarkable powers of observation - Deccan Herald
This omnibus edition features the ever-popular adventures of Satyajit Rays enduring creation, the professional sleuth <NAME> (Feluda). In his escapades, Feluda is accompanied by his cousin Topshe and the bumbling crime writer <NAME> (Jatayu). From Jaisalmer to Simla, from the Ellora Caves to Varanasi, the trio traverse fascinating locales to unravel one devious crime after another.
Thrills unlimited - Financial Express
A delightful pastime - Statesman ' WHERE SKU_ID=10000018;
UPDATE BLC_SKU SET LONG_DESCRIPTION=' The protagonist of this book is Swaminathan, a ten year old boy who lives in the fictional town of Malgudi. He lives a simple life and spends his days with his friends Mani and Rajam.
The book details how Swami’s school life changes with the entrance of Rajam. The colonial values instilled in the school also irk Swami. The book also details how Swami flees from home after going through dejecting experiences. All the incidents in Swami’s life change him from the innocent naughty boy to someone who wants to take a revolutionary path. The author details all of Swami’s adventures in British India.
Swami And Friends elaborates on the life of the simpleton who confided only in his grandmother and whose relationships were very emotional and basic in nature. The Guardian acknowledged the novel as one of the world’s best English novels by an Indian author. The stories from Swami And Friends were adapted into a television series called Malgudi Days.' WHERE SKU_ID=10000019;
UPDATE BLC_SKU SET LONG_DESCRIPTION=' This is a collection of <NAME>ayan’s best stories, in which the fictitious town, Malgudi, springs to life with characters that will remain in your heart forever.
Summary of the Book
In this collection, <NAME>’s best works have been collected under three different sections: From an Astrologer’s Day, From Lawley Road and New Stories.' WHERE SKU_ID=10000020;
UPDATE BLC_SKU SET LONG_DESCRIPTION='This title brings you the delightfully funny account of a harum scarum schoolboy called Swami, written by one of the greatest writers of our time. Malgudi Schooldays exhilarates all those who step into its world, as Swami’s days are full of action. When he is not creating a mess in the classroom, or making blunders in his exams, he is adventuring down the streets of Malgudi. He is either troubling his grandmother or stoning the school windows after being inspired by a swadeshi demonstration! But the greatest stunt Swami and his friends have to pull off is putting together a cricket team called the Malgudi Cricket Club and challenging the Young Men’s Union to a match. Although they gather a team, things go horribly wrong just before the match. This makes Swami with no other option than running away from home, wanting never to come back again.' WHERE SKU_ID=10000021;
UPDATE BLC_SKU SET LONG_DESCRIPTION=' Tughlaq by <NAME>
This play tells the story of an idealist 14th-century Sultan of Delhi, <NAME>. It is considered to be an allegory on the Nehru era and contains Karnad’s thoughts on the effects of idealism.
Evam Indrajit by <NAME>
This play questions one’s existence and shows how one must strive to find the truth in one’s life. It delves into the thoughts and emotions felt by the educated urban middle class.
Silence! The Court is in Session by <NAME>
A group of teaches decide to stage a play in a village. When one of the actors fails to show up, a stagehand is asked to replace him. The others stage a rehearsal to help the man understand the procedures of the court, and one of the cast is charged with infanticide as part of the play. However, the scene turns surreal as the cast makes a startling discovery about the accused member.' WHERE SKU_ID=10000022;
UPDATE BLC_SKU SET LONG_DESCRIPTION=' Naga-Mandala
A woman attracts the attention of a cobra in her failed attempt to feed a love potion to her wayward husband in this play which delves into the meaning of marriage and faithfulness.
Hayavadana
In this play, a man seeks to understand his inner self through the complicated relationships he shares with the people around him.
Tughlaq
This play tells the story of <NAME>, the idealist 19th century Sultan of Delhi.' WHERE SKU_ID=10000023;
UPDATE BLC_SKU SET LONG_DESCRIPTION='<NAME>, the son of the deceased king and the nephew of King Claudius, his father''s brother and successor, is the hero of this play. He returns to Denmark to find that his mother has already remarried, marrying his uncle. Soon, the castle grounds are haunted by the King’s ghost and Hamlet decides to meet the spectre. The ghost reveals a secret to Hamlet: his father didn’t die of natural causes. In fact, his uncle poisoned him and usurped the throne. Hamlet begins conspiring with the ghost to exact revenge. However, as events unfold, he begins to find that Claudius isn’t an easy man to catch.' WHERE SKU_ID=10000024;
UPDATE BLC_SKU SET LONG_DESCRIPTION='Magic, love spells, and an enchanted wood provide the materials for one of Shakespeare’s most delightful comedies. When four young lovers, fleeing the Athenian law and their own mismatched rivalries, take to the forest of Athens, their lives become entangled with a feud between the King and Queen of the Fairies. Some Athenian tradesmen, rehearsing a play for the forthcoming wedding of Duke Theseus and his bride, Hippolyta, unintentionally add to the hilarity. The result is a marvelous mix-up of desire and enchantment, merriment and farce, all touched by Shakespeare’s inimitable vision of the intriguing relationship between art and life, dreams and the waking world.' WHERE SKU_ID=10000025;
UPDATE BLC_SKU SET LONG_DESCRIPTION='Reference book' WHERE SKU_ID=10000026;
UPDATE BLC_SKU SET LONG_DESCRIPTION='A Manual on Clinical Surgery is a celebrated book on clinical surgery by Dr. <NAME>. The book comprehensively covers the subject, and is the recommended guide for medical students who are preparing for the final MBBS examination. The book features nearly 600 illustrations, including line drawings, radiographs, monochrome and color prints, and even photographs of clinical conditions. It provides detailed information about every part of the body, and a section is dedicated to differential diagnosis at the end of each chapter.' WHERE SKU_ID=10000027;
UPDATE BLC_SKU SET LONG_DESCRIPTION=' Al-Mefty''s Meningiomas, Second Edition is the definitive guide to meningioma diagnosis, treatment, and surgery, and reflects over a decade of major advances in the diagnosis and management of both intracranial and spinal meningiomas since the first edition was published.
The text begins with important information on anatomy, pathology, and epidemiology, followed by clinical and preoperative considerations. The expert authors then provide detailed descriptions of state-of-the-art surgical approaches listed by anatomical site and special operative considerations for intracranial meningiomas. The book closes with incisive discussion of breakthroughs in radiosurgery, radiotherapy and chemotherapy.' WHERE SKU_ID=10000028;
UPDATE BLC_SKU SET LONG_DESCRIPTION='The author team of Prescott?s Microbiology continues the tradition of past editions by providing a balanced, comprehensive introduction to all major areas of microbiology. Because of this balance, Microbiology is appropriate for microbiology majors and mixed majors courses. The new authors have focused on readability, artwork, and the integration of several key themes (including evolution, ecology and diversity) throughout the text, making an already superior text even better.' WHERE SKU_ID=10000029;
UPDATE BLC_SKU SET LONG_DESCRIPTION='<NAME>’s Atlas of Human Anatomy is a complete reference for students of medical sciences. It helps students understand the complete framework of the Human Body, giving them detailed explanations about the structure, methods used to study them and common ailments. The book teaches readers about understanding the human body from the inside-out, giving them a comprehensive picture. It included vivid illustrations which help readers relate the information in an easier manner. The book will help all undergraduate doctors and students of biology.' WHERE SKU_ID=10000030;
UPDATE BLC_SKU SET LONG_DESCRIPTION='<NAME>, <NAME> and <NAME>’s Kaplan and Sadock’s Synopsis of Psychiatry – Eleventh Edition is updated with DSM-5. It offers a complete overview of the entire field of psychiatry for clinicians, residents, students and all others who provide mental health care. The book discusses various concepts in behavioural sciences and clinical psychiatry. Replete with case studies and real-world examples, it serves as a reliable reference guide on the subjects' WHERE SKU_ID=10000031;
UPDATE BLC_SKU SET LONG_DESCRIPTION='Based on the Second Edition of Marks'' Basic Medical Biochemistry: A Clinical Approach, Marks'' Essentials of Medical Biochemistry has been streamlined to focus on only the most essential biochemical concepts important to medical students. The authors present facts and pathways to emphasize how the underlying biochemistry is related to the body''s overall physiological functions. This text presents patients to the students as the biochemistry is being discussed, which strengthens the link between biochemistry and medicine and allows the student to learn about this interaction as the biochemistry is presented. Each chapter includes clinical and biochemical notes and comments, questions and answers to encourage further thinking, and suggested references for those who would like to pursue a particular topic in more depth' WHERE SKU_ID=10000032;
UPDATE BLC_SKU SET LONG_DESCRIPTION='Reference book' WHERE SKU_ID=10000033;
UPDATE BLC_SKU SET LONG_DESCRIPTION='A fundamental and respected resource book in critical care, The ICU Book, Fourth Edition, continues to provide the current and practical guidance that have made it the best-selling text in critical care. The text addresses both the medical and surgical aspects of critical care, delivering the guidance needed to ensure sound, safe and effective treatment for patients in intensive care-regardless of the specialty focus of the unit. Traditionally available as a printed textbook, the print version now comes with a completely revamped digital experience, powered by Inkling.' WHERE SKU_ID=10000034;
UPDATE BLC_SKU SET LONG_DESCRIPTION='Reference book' WHERE SKU_ID=10000035;
UPDATE BLC_SKU SET LONG_DESCRIPTION='Christensen''s Physics of Diagnostic Radiology is a comprehensive book for undergraduate students of Medical Sciences. The book comprises chapters on radiation, production of X-rays, filters, stereoscopy, ultrasound, protection, and digital radiography. In addition, the book provides a clear and lucid understanding of the physics principles essential for medical diagnosis. This book is essential for radiologists.' WHERE SKU_ID=10000036;
UPDATE BLC_SKU SET LONG_DESCRIPTION='The thoroughly revised Seventh Edition of Feigenbaum''s Echocardiography reflects recent changes in the technology and clinical use of echocardiography. Highlights include over 1,600 illustrations, 600 in full color; detailed discussions on the use of three-dimensional echocardiography and perfusion imaging; and new information on the mechanics and utility of Strain and Strain rate imaging. Many new images complement the state-of-the-art information on technological advances. Current AHA/ACC guidelines are included for each chapter.' WHERE SKU_ID=10000037;
UPDATE BLC_SKU SET LONG_DESCRIPTION='Marketing Management is regarded as one of the best study materials on marketing throughout the world, and Marketing Management: A South Asian Perspective presents various dynamic theories and practices in marketing in such a manner, that the book today is extensively followed by a plethora of people including students, teachers and marketing professionals. This book retains the salient aspects of the previous editions and in addition presents plenty of fresh information on marketing from the global and local perspectives.
One key feature of the updated version of Marketing Management: A South Asian Perspective is that it contains new vignettes at the beginning of each chapter that have the potential to trigger long bouts of meaningful classroom discussions on the subject. In addition, the Marketing Memo and Marketing Insight boxes have been revised in the 14th edition of the book that throws ample light on the challenges and chances marketers might face in rural South East Asia.
Marketing Management: A South Asian Perspective also contains several new subsections and in-text cases that address the drastic alterations that have occurred in the marketing world today. A portion of the subject matter has also been reorganized to put the spotlight on South Asia, which is the focal point of the book. The book emphasizes on holistic marketing and the interdependencies that exist in the global marketing scenario in the present times. The book covers topics like Competitive Dynamics, Tapping into Global Markets, Communicating Value, Setting Product Strategy, and Creating Customer Value and Customer Relationships.
Marketing Management: A South Asian Perspective discusses various marketing issues not only via prosaic information, but also in a more attention-captivating way through lecture slides and files containing test items' WHERE SKU_ID=10000038;
UPDATE BLC_SKU SET LONG_DESCRIPTION='Services Marketing is a comprehensive book for students of Business Management. The book comprises chapters on consumer behavior in a services context, positioning services in competitive markets, applying the 4Ps of marketing to services, designing and managing the customer interface, and striving for service excellence. In addition, the book includes several case studies and examples to help understand the concepts better. This book is essential for professionals of sales and marketing.' WHERE SKU_ID=10000039;
UPDATE BLC_SKU SET LONG_DESCRIPTION='<NAME>’s Human Resource Management : Text and Cases 7th Edition is apt for MBA students. The book is divided into multiple sections so as to give you a better understanding of the subject. The books covers MBA syllabus for students who are specialising in human resources.' WHERE SKU_ID=10000040;
UPDATE BLC_SKU SET LONG_DESCRIPTION='Complete Business Statistics is a comprehensive book for undergraduate students of Commerce and Finance. The book comprises chapters on probability, random variables, confidence intervals, analysis of variance, simple linear regression, correlation and non-parametric methods, and Chi-square tests. In addition, the book consists of several examples, exercises and statistical applications in finance, economics, government, technology, operations and marketing. This book is essential for students preparing for their postgraduate entrance examinations.' WHERE SKU_ID=10000041;
UPDATE BLC_SKU SET LONG_DESCRIPTION=' First published in 1934, Security Analysis is one of the most influential financial books ever written. Selling more than one million copies through five editions, it has provided generations of investors with the timeless value investing philosophy and techniques of <NAME> and <NAME>.
As relevant today as when they first appeared nearly 75 years ago, the teachings of <NAME>, the father of value investing, have withstood the test of time across a wide diversity of market conditions, countries, and asset classes.
This new sixth edition, based on the classic 1940 version, is enhanced with 200 additional pages of commentary from some of today''s leading Wall Street money managers. These masters of value investing explain why the principles and techniques of Graham and Dodd are still highly relevant even in today''s vastly different markets' WHERE SKU_ID=10000042;
UPDATE BLC_SKU SET LONG_DESCRIPTION='Ever since <NAME> inaugurated the genre by photographing the Crimean War in 1855, the world''s great photojournalists have used a variety of approaches to bear witness to their times. At one end of the photojournalistic spectrum are war photographers like <NAME> and <NAME>, who capture the most extreme events of human existence as they happen; at the other are social documentarians like <NAME> and <NAME>, who step back from the single dramatic incident to cover in depth such economic and cultural issues as labor and migration. By compiling 250 of the most memorable images from photojournalismGCOs 150-year history, Photojournalism 1855 to the Present: EditorGCOs Choice provides a fascinating introduction to the entire range of the field.Author <NAME>, a noted authority on photojournalism, selected the fifty-four photographers featured in this book based on their critical reputations and historical importance. For each photographer, Golden provides a portfolio of representative imagesGComany reproduced at full-page sizeGCoas well as a brief biography and an insightful critical commentary on his or her career. In these commentaries and in his informative introduction, Golden discusses the particular challenges of photojournalism, such as the relationship between photographer and subject, and the moral ramifications of aestheticizing human suffering. Yet perhaps most importantly, his text also encourages the reader to look closer and discover how well the photographs speak for themselves. From Frank HurleyGCOs groundbreaking World War I battlefield shots to <NAME> MarkGCOs stark portraits of American poverty and James NachtweyGCOs haunting pictures of the September 11 attacks, the images in this book prove that even in our era of twenty-four-hour video-on demand, the still photograph remains as powerful as ever.' WHERE SKU_ID=10000043;
UPDATE BLC_SKU SET LONG_DESCRIPTION='This Handbook charts the growing area of journalism studies, exploring the current state of theory and setting an agenda for future research in an international context. The volume is structured around theoretical and empirical approaches, and covers scholarship on news production and organizations; news content; journalism and society; and journalism in a global context. Emphasizing comparative and global perspectives, each chapter explores: ' WHERE SKU_ID=10000044;
UPDATE BLC_SKU SET LONG_DESCRIPTION='Data Structures And Algorithms Made Easy In Java is a guide which helps you understand data structures better. Data structures are ways in which data is stored and organised on a computer so as to make it more resourceful. There are different kinds of data structures available for different tasks, with some being highly specific and others used for certain applications. They help in effectively managing large quantities of data with the help of algorithms which, in the fields of mathematics and computer science, is a systematic procedure towards solving any numerical problem. The book covers many topics concerning competitive examinations and includes numerous puzzles and probable interview questions to help the reader prepare better. Each question also comes with multiple solutions of varying complexities so as to enable the reader to deal with a variety of questions. Furthermore, all codes in the book have been written using the Java script. It is a complete preparation guide for likely job aspirants for companies like Oracle, Microsoft, Amazon, Facebook and for people appearing for competitive examinations' WHERE SKU_ID=10000045;
UPDATE BLC_SKU SET LONG_DESCRIPTION='Introduction to Avionic Systems, Third Edition explains the basic principles and underlying theory of the core avionic systems in modern civil and military aircraft, comprising the pilot''s head-up and head-down displays, data entry and control systems, fly by wire flight control systems, inertial sensor and air data systems, navigation systems, autopilots and flight management systems. The implementation and integration of these systems with current (2010) technology is explained together with the methods adopted to meet the very high safety and integrity requirements. The systems are analysed from the physical laws governing their behaviour, so that the system design and response can be understood and the performance examined. Worked examples are given to show how the theory can be applied and an engineering feel gained from a simplified model. Physical explanations are also set out and the text is structured so that readers can fast forward through the maths, if they so wish. Introduction to Avionic Systems, Third Edition meets the needs of graduates, or equivalent, entering the aerospace industries who have been educated in a wide range of disciplines, for example, electronic engineering, computing science, mathematics, physics, mechanical and aeronautical engineering. It also meets the needs of engineers at all levels working in particular areas of avionics who require an understanding of other avionic systems. Technology is continually advancing and this new third edition has been revised and updated and the presentation improved, where appropriate, The systems coverage has also been increased and a new section on helicopter flight control added.' WHERE SKU_ID=10000046;
UPDATE BLC_SKU SET LONG_DESCRIPTION='Numerical Heat Transfer And Fluid Flow primarily uses elementary calculus and simple algebra in exploring and developing numerical procedures to predict the behavior of various processes. This is mainly based on physical considerations. The approach is tailored to help augment a deeper understanding of all the crucial aspects of heat transfer and fluid flow. The exercises explored through the text are specifically aimed at improving the ability to analyze and interpret the data and the final computed results.' WHERE SKU_ID=10000047;
UPDATE BLC_SKU SET LONG_DESCRIPTION='This is the third edition of the book Microwave Devices And Circuits, which is a reference book on the latest in microwave electronic technology. The book is designed to help students who are pursuing courses on microwaves, microwave engineering, physical electronics, and microwave electronics. It also provides extensive information on microwave solid-state devices, microwave tubes, and microwave circuits. The book includes chapters like Introduction Between Electrons and Fields, Electromagnetic Plane Waves, Microwave Transmission Lines, Microwave Waveguides and Components, Microwave Transistors and Tunnel Diodes, Microwave Field-effect Transistors, Transferred Electron Devices (TEDs), Avalanche Transit-time Devices, Microwave Linear-beam Tubes (O type), Microwave Crossed-field Tubes (M type), Striplines, and Monolithic Microwave Integrated Circuits.' WHERE SKU_ID=10000048;
UPDATE BLC_SKU SET LONG_DESCRIPTION=' Improve Compensation Strategies for Package Shortcomings
In today''s deregulated environment, the nation''s electric power network is forced to operate in a manner for which it was not designed. As a result, precision system analysis is essential to predict and continually update network operating status, estimate current power flows and bus voltages, determine stability limits, and minimize costs.
Computational Methods for Electric Power Systems is an introductory overview of computational methods used for analytical studies in power systems and other engineering and scientific fields. As power systems increasingly operate under stressed conditions, techniques such as computer simulation remain integral to control and security assessment. This volume analyzes the algorithms used in commercial analysis packages and presents salient examples of their implementation that are simple and thorough enough to be reproduced easily. Most of the examples were produced using MATLAB® language.
Presents General Theory Applicable to Different Systems
Commercial packages routinely fail or give erroneous results when used to simulate stressed systems, and understanding their underlying numerical algorithms is imperative to correctly interpret their results. This edition paints a broad picture of the methods used in such packages but omits extraneous detail. It includes new chapters that address function approximation and finite element analysis, in addition to new sections' WHERE SKU_ID=10000049;
UPDATE BLC_SKU SET LONG_DESCRIPTION='Design of Steel Structures 2nd Edition, authored by <NAME>, is a comprehensive textbook for Civil Engineering students. It gives students a detailed account of the aspects and design of simple steel structures.' WHERE SKU_ID=10000050;
UPDATE BLC_SKU SET LONG_DESCRIPTION='The contemporary study of all computer algorithms can be understood clearly by perusing the contents of Introduction To Algorithms. Although this covers most of the important aspects of algorithms, the concepts have been detailed in a lucid manner, so as to be palatable to readers at all levels of skill.' WHERE SKU_ID=10000051;
UPDATE BLC_SKU SET LONG_DESCRIPTION='UNIX Concepts And Applications is superb guide for beginners stepping into the world of UNIX. The book is filled with real-world examples that help the reader in understanding the concepts in a better way while the exercises put to test the reader’s understanding of the topics.' WHERE SKU_ID=10000052;
UPDATE BLC_SKU SET LONG_DESCRIPTION='With a majority rule over the complete software industry, it is very evident that an in-depth knowledge of JAVA is a very crucial factor for software and IT professionals. Core JAVA: An Integrated Approach considers new learners while explaining the concepts of Java in a simple and straightforward manner.' WHERE SKU_ID=10000053;
UPDATE BLC_SKU SET LONG_DESCRIPTION='Concrete Mathematics: A Foundation for Computer Science is a comprehensive on mathematics which explains the working of an advanced computer programming and algorithms. The book comprises of more than 500 exercises divided into categories like sums, recurrences, integer functions, elementary number theory, binomial coefficients, discrete probability and asymptotic methods. In addition, the book has new material about mechanical summation and an expanded bibliography and index. This book is essential for students pursuing advanced mathematics' WHERE SKU_ID=10000054;
UPDATE BLC_SKU SET LONG_DESCRIPTION='ndia After Gandhi: The History Of The World''s Largest Democracy, published in 2007, takes an in-depth look into the history of this country, since its independence from the British Raj in 1947. The author has skillfully reconstructed the last six decades of India’s past. Guha explains how the country was divided by religion, caste, language, and yet it established itself as an independent, united, and democratic nation.' WHERE SKU_ID=10000055;
UPDATE BLC_SKU SET LONG_DESCRIPTION=' Designed for ardent history enthusiasts, India''s Struggle For Independence is one of the most exhaustive and precise account of the struggle of Indian Independence ever written in the literary world. Written and edited by five expert authors, it presents a detailed outlook on one of the most important periods in Indian history.
The facts and details provided in this book have been gathered from oral and written sources, and various other primary sources have been used along with years of intense research. Written with a very concise approach, it is a one of a kind book that details the intricacies of the Indian Independence struggle.
The struggle for Indian Independence took a long time and was something that affected the whole country. Every state in the country boasted of some kind of revolt – minor or major during this period. Numerous revolutionaries throughout the country came together in their efforts to fight against the British rule and set their country free. Few of the chapters in the book are The Fight to Secure Press Freedom, Foundation of the Congress: The Myth, World War I and Indian Nationalism: The Ghadar, An Economic Critique of Colonialism, Peasant Movements and Uprisings after 1857, The Non-Cooperation Movement—1920-1922, The Gathering Storm-1927-1929, Civil Rebellions and Tribal Uprisings, and many more.' WHERE SKU_ID=10000056;
UPDATE BLC_SKU SET LONG_DESCRIPTION='ndia’s Biggest Cover Up is a sequel to Dhar’s previous book, Back From Dead: Inside The Subhas Bose Mystery, which was released in 2005. Following that, Dhar and his colleagues had begun their research to find out the reason behind Subhash Chandra Bose’s death, and requested extra information from the Ministry of Home Affairs, Indian Prime Minister’s Office, and the Ministry of External Affairs. They also sought information from foreign governments through the Freedom of Information Act and the Right to Information Act.' WHERE SKU_ID=10000057;
UPDATE BLC_SKU SET LONG_DESCRIPTION='Indian civilization is among the oldest in the world, and what is unique in that respect is that the culture of the peoples still remains largely unchanged, with a strong thread of continuity through the ages.
The Wonder That was India takes a look at the country’s history from the time of the Harappan or Indus Valley Civilization. It explores the possible causes for the decline of the Harappan civilization and settlements. The book talks about the possibility of the Harappans having moved towards the south and settled in the peninsular region.
The author also discusses the Aryan invasion theory, supporting it with various research papers and findings of that time. The evolution of Hindu religion is also talked about in this book—from the Harappan times, to the coming of the Aryans and the mutual influence that Hinduism and its off shoots Jainism and Buddhism had on each other.
This book is comprehensive in its coverage of Indian history. It looks at every aspect of Indian society and culture. The Wonder That was India covers everything from religion, governance, social evolution, literary traditions, philosophy languages, and science.
The author explores the significant role the Hindu religion played on the lives of the people. All the literary compositions of ancient times had religious associations. He also puts forward the theory that the European gypsies are of Indian origin.
The Wonder That Was India also gives an insight into modern Indian society and culture, how it became a confluence of different influences from many a quarter throughout the many stages of its history.' WHERE SKU_ID=10000058;
UPDATE BLC_SKU SET LONG_DESCRIPTION=' There comes a day in one''s life when one feels it should all be put down before memory fades. There are endless memories and I have carried a story with me for a long time.
SRINAGAR IN THE WINTER OF 1989 was an eerie ghost town witnessing the beginnings of a war dance. The dam burst the night boys from the separatist JKLF group were freed in exchange for the release of <NAME>, the Union home minister''s daughter. As <NAME> predicted, the government''s caving in emboldened many Kashmiris into thinking that azaadi was possible. ''The price we will have to pay'' were Farooq''s prophetic words. Killings were almost a daily occurrence. Bomb explosions and firings occurred not far from the chief minister''s residence in the most secure zone. Gun-toting youth in trucks were seen close to the cantonment. Kashmiris believed that they were on the verge of liberation. <NAME>, who was posted there, saw Intelligence Bureau colleagues being picked off one by one.' WHERE SKU_ID=10000059;
UPDATE BLC_SKU SET LONG_DESCRIPTION='The Last Mughal highlights Dalrymple’s longstanding fascination with the Indian city of Delhi. It presents the Delhi that formed the seat of the Mughal empire in India - a city as brilliant as the monarch who reigned over it. Indeed <NAME> embodied the very essence of Delhi city. He was a talented and versatile individual, well-versed in poetry, calligraphy, and mysticism. Despite being under the control of the East India Company to quite an extent, he nevertheless managed to form a dazzling court, setting the stage for one of India’s most culturally rich phases.' WHERE SKU_ID=10000060;
UPDATE BLC_SKU SET LONG_DESCRIPTION='' WHERE SKU_ID=10000061;
UPDATE BLC_SKU SET LONG_DESCRIPTION='' WHERE SKU_ID=10000062;
UPDATE BLC_SKU SET LONG_DESCRIPTION='The hottest new look in fashion jewelry is all about gemstones and pearls. Now readers can create--right at home--their own unique versions of the stylish looks they see on models and in magazines. Using simple, accessible techniques and easily ' WHERE SKU_ID=10000063;
UPDATE BLC_SKU SET LONG_DESCRIPTION='Examining what it is that makes fashion illustration the choice of the moment of art directors and style magazines, this book follows the renaissance predicted by the authors 2000 book, Fashion Illustration Now. Borrellis introduction describes the contemporary mood among these artists and in particular shows how the maturing of the digital age has had a surprising and astonishingly creative effect on the handmade art of illustration. Organized alphabetically by artist and in a similar format to Fashion Illustration Now, the book includes over forty exceptional artists, who capture the mood of contemporary style, show examples of their work and describe their inspiration.' WHERE SKU_ID=10000064;
UPDATE BLC_SKU SET LONG_DESCRIPTION='Aimed at complete beginners and experienced crafts people looking for new ideas, this unique approach to decorating everyday glass objects to create stylish individual pieces is both a practical guide and a source of inspiration. Creative Glass features a wide range of exciting projects, from those using simple techniques of coiling wire, to more advanced projects involving intricate beadwork or soldering. A comprehensive section of practical information on tools and materials explains the basic techniques of working with wire, beads, and mosaic. All of the projects are accompanied by clear step-by-step photographs, detailed instructions, and stylish inspirational photographs of the finished piece. From pretty holiday baubles to a sophisticated wire woven decanter, there is something to suit every taste and skill level.' WHERE SKU_ID=10000065;
|
<filename>codes/data/orm/src/main/resources/sql/mysql/ddl.sql
USE mydb;
DROP TABLE IF EXISTS `user`;
CREATE TABLE `user` (
`id` int(10) NOT NULL COMMENT '用户ID' AUTO_INCREMENT,
`name` varchar(50) NOT NULL COMMENT '用户名',
`sex` int(1) NOT NULL COMMENT '性别。1表示男,2表示女',
`age` int(4) NOT NULL DEFAULT '18' COMMENT '年龄',
PRIMARY KEY (`id`)
) COMMENT='用户表';
DROP TABLE IF EXISTS `product`;
CREATE TABLE `product` (
`id` int(10) NOT NULL COMMENT '产品ID' AUTO_INCREMENT,
`name` varchar(50) DEFAULT NULL COMMENT '产品名',
`price` float DEFAULT NULL COMMENT '价格',
PRIMARY KEY (`id`)
) COMMENT='产品表';
DROP TABLE IF EXISTS `order`;
CREATE TABLE `order` (
`id` int(10) NOT NULL COMMENT '订单ID' AUTO_INCREMENT,
`user_id` int(10) NOT NULL COMMENT '用户ID',
`product_id` int(10) NOT NULL COMMENT '产品ID',
`num` int(10) NOT NULL DEFAULT '0' COMMENT '购买数量',
`statu` int(1) NOT NULL DEFAULT '1' COMMENT '状态。1表示未支付;2表示已支付',
PRIMARY KEY (`id`)
) COMMENT='订单表';
|
/*
SQLyog Ultimate v11.25 (64 bit)
MySQL - 5.5.20 : Database - spark_project
*********************************************************************
*/
/*!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*/`spark_project` /*!40100 DEFAULT CHARACTER SET utf8 */;
USE `spark_project`;
/*Table structure for table `page_split_convert_rate` */
DROP TABLE IF EXISTS `page_split_convert_rate`;
CREATE TABLE `page_split_convert_rate` (
`taskid` int(11) DEFAULT NULL,
`convert_rate` varchar(255) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*Data for the table `page_split_convert_rate` */
insert into `page_split_convert_rate`(`taskid`,`convert_rate`) values (3,'3_4=1.53|2_3=0.81|4_5=0.77|1_2=0.09|6_7=1.34|7_8=0.84|8_9=0.88|5_6=0.97');
/*Table structure for table `session_aggr_stat` */
DROP TABLE IF EXISTS `session_aggr_stat`;
CREATE TABLE `session_aggr_stat` (
`task_id` int(11) DEFAULT NULL,
`session_count` int(11) DEFAULT NULL,
`1s_3s` double DEFAULT NULL,
`4s_6s` double DEFAULT NULL,
`7s_9s` double DEFAULT NULL,
`10s_30s` double DEFAULT NULL,
`30s_60s` double DEFAULT NULL,
`1m_3m` double DEFAULT NULL,
`3m_10m` double DEFAULT NULL,
`10m_30m` double DEFAULT NULL,
`30m` double DEFAULT NULL,
`1_3` double DEFAULT NULL,
`4_6` double DEFAULT NULL,
`7_9` double DEFAULT NULL,
`10_30` double DEFAULT NULL,
`30_60` double DEFAULT NULL,
`60` double DEFAULT NULL,
KEY `idx_task_id` (`task_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*Data for the table `session_aggr_stat` */
insert into `session_aggr_stat`(`task_id`,`session_count`,`1s_3s`,`4s_6s`,`7s_9s`,`10s_30s`,`30s_60s`,`1m_3m`,`3m_10m`,`10m_30m`,`30m`,`1_3`,`4_6`,`7_9`,`10_30`,`30_60`,`60`) values (2,713,0,0,0,0,0,0,0.01,0.08,0.9,0.07,0.17,0.19,0.57,0,0);
/*Table structure for table `session_detail` */
DROP TABLE IF EXISTS `session_detail`;
CREATE TABLE `session_detail` (
`task_id` int(11) DEFAULT NULL,
`user_id` int(11) DEFAULT NULL,
`session_id` varchar(255) DEFAULT NULL,
`page_id` int(11) DEFAULT NULL,
`action_time` varchar(255) DEFAULT NULL,
`search_keyword` varchar(255) DEFAULT NULL,
`click_category_id` int(11) DEFAULT NULL,
`click_product_id` int(11) DEFAULT NULL,
`order_category_ids` varchar(255) DEFAULT NULL,
`order_product_ids` varchar(255) DEFAULT NULL,
`pay_category_ids` varchar(255) DEFAULT NULL,
`pay_product_ids` varchar(255) DEFAULT NULL,
KEY `idx_task_id` (`task_id`),
KEY `idx_session_id` (`session_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*Data for the table `session_detail` */
insert into `session_detail`(`task_id`,`user_id`,`session_id`,`page_id`,`action_time`,`search_keyword`,`click_category_id`,`click_product_id`,`order_category_ids`,`order_product_ids`,`pay_category_ids`,`pay_product_ids`) values (2,82,'3f2561eb9bab4e768b97e242d9fb74f1',7,'2015-12-02 16:58:12',NULL,0,0,NULL,NULL,'91','46'),(2,82,'3f2561eb9bab4e768b97e242d9fb74f1',0,'2015-12-02 16:56:29',NULL,0,0,NULL,NULL,'7','88'),(2,82,'3f2561eb9bab4e768b97e242d9fb74f1',2,'2015-12-02 16:41:47',NULL,46,56,NULL,NULL,NULL,NULL),(2,82,'3f2561eb9bab4e768b97e242d9fb74f1',6,'2015-12-02 16:09:30',NULL,46,46,NULL,NULL,NULL,NULL),(2,82,'3f2561eb9bab4e768b97e242d9fb74f1',9,'2015-12-02 16:02:17','日本料理',46,0,NULL,NULL,NULL,NULL),(2,82,'3f2561eb9bab4e768b97e242d9fb74f1',3,'2015-12-02 16:42:18','火锅',46,0,NULL,NULL,NULL,NULL),(2,82,'3f2561eb9bab4e768b97e242d9fb74f1',3,'2015-12-02 16:04:56',NULL,46,0,'71','87',NULL,NULL),(2,82,'3f2561eb9bab4e768b97e242d9fb74f1',8,'2015-12-02 16:22:22',NULL,46,75,NULL,NULL,NULL,NULL),(2,82,'3f2561eb9bab4e768b97e242d9fb74f1',1,'2015-12-02 16:40:41',NULL,46,0,NULL,NULL,'6','47'),(2,82,'3f2561eb9bab4e768b97e242d9fb74f1',6,'2015-12-02 16:18:49','新辣道鱼火锅',46,0,NULL,NULL,NULL,NULL),(2,82,'3f2561eb9bab4e768b97e242d9fb74f1',6,'2015-12-02 16:00:55',NULL,46,0,'29','29',NULL,NULL),(2,82,'3f2561eb9bab4e768b97e242d9fb74f1',5,'2015-12-02 16:49:44','蛋糕',46,0,NULL,NULL,NULL,NULL),(2,82,'3f2561eb9bab4e768b97e242d9fb74f1',4,'2015-12-02 16:01:22',NULL,46,0,NULL,NULL,'29','56'),(2,82,'3f2561eb9bab4e768b97e242d9fb74f1',5,'2015-12-02 16:56:35',NULL,46,0,NULL,NULL,'89','56'),(2,82,'3f2561eb9bab4e768b97e242d9fb74f1',1,'2015-12-02 16:38:15','新辣道鱼火锅',46,0,NULL,NULL,NULL,NULL),(2,82,'3f2561eb9bab4e768b97e242d9fb74f1',7,'2015-12-02 16:48:27','呷哺呷哺',46,0,NULL,NULL,NULL,NULL),(2,82,'3f2561eb9bab4e768b97e242d9fb74f1',4,'2015-12-02 16:02:15',NULL,46,0,NULL,NULL,'14','13'),(2,82,'3f2561eb9bab4e768b97e242d9fb74f1',4,'2015-12-02 16:21:07',NULL,46,36,NULL,NULL,NULL,NULL),(2,29,'3f7bc64d2b0b4c7ab365dafa07e24383',0,'2015-12-02 2:54:37',NULL,0,0,NULL,NULL,'38','36'),(2,29,'3f7bc64d2b0b4c7ab365dafa07e24383',1,'2015-12-02 2:55:39',NULL,0,0,'89','62',NULL,NULL),(2,29,'3f7bc64d2b0b4c7ab365dafa07e24383',8,'2015-12-02 2:42:28','蛋糕',0,0,NULL,NULL,NULL,NULL),(2,29,'3f7bc64d2b0b4c7ab365dafa07e24383',3,'2015-12-02 2:21:15',NULL,31,87,NULL,NULL,NULL,NULL),(2,29,'3f7bc64d2b0b4c7ab365dafa07e24383',3,'2015-12-02 2:23:48',NULL,31,60,NULL,NULL,NULL,NULL),(2,29,'3f7bc64d2b0b4c7ab365dafa07e24383',3,'2015-12-02 2:12:34',NULL,31,0,'41','0',NULL,NULL),(2,29,'3f7bc64d2b0b4c7ab365dafa07e24383',1,'2015-12-02 2:53:38',NULL,31,0,'45','35',NULL,NULL),(2,29,'3f7bc64d2b0b4c7ab365dafa07e24383',8,'2015-12-02 2:55:16',NULL,31,0,NULL,NULL,'92','0'),(2,29,'3f7bc64d2b0b4c7ab365dafa07e24383',9,'2015-12-02 2:48:20','国贸大厦',31,0,NULL,NULL,NULL,NULL),(2,29,'3f7bc64d2b0b4c7ab365dafa07e24383',3,'2015-12-02 2:30:57',NULL,31,43,NULL,NULL,NULL,NULL),(2,29,'3f7bc64d2b0b4c7ab365dafa07e24383',1,'2015-12-02 2:23:22','蛋糕',31,0,NULL,NULL,NULL,NULL),(2,29,'3f7bc64d2b0b4c7ab365dafa07e24383',0,'2015-12-02 2:19:19',NULL,31,0,'28','92',NULL,NULL),(2,81,'a7750f1d8aa642409b4bbdc526af82b2',6,'2015-12-02 20:17:38',NULL,0,0,NULL,NULL,'64','80'),(2,81,'a7750f1d8aa642409b4bbdc526af82b2',8,'2015-12-02 20:52:39','日本料理',0,0,NULL,NULL,NULL,NULL),(2,82,'274d3df9254e41cfa51bdb742eeef1c9',8,'2015-12-02 22:57:25',NULL,0,0,NULL,NULL,'2','95'),(2,82,'274d3df9254e41cfa51bdb742eeef1c9',8,'2015-12-02 22:06:37',NULL,0,0,'20','67',NULL,NULL),(2,82,'274d3df9254e41cfa51bdb742eeef1c9',7,'2015-12-02 22:32:30','新辣道鱼火锅',0,0,NULL,NULL,NULL,NULL),(2,82,'274d3df9254e41cfa51bdb742eeef1c9',9,'2015-12-02 22:24:31','国贸大厦',0,0,NULL,NULL,NULL,NULL),(2,82,'274d3df9254e41cfa51bdb742eeef1c9',8,'2015-12-02 22:34:56',NULL,0,0,NULL,NULL,'21','12'),(2,82,'274d3df9254e41cfa51bdb742eeef1c9',7,'2015-12-02 22:44:47','火锅',0,0,NULL,NULL,NULL,NULL),(2,82,'274d3df9254e41cfa51bdb742eeef1c9',2,'2015-12-02 22:11:04',NULL,0,0,'97','50',NULL,NULL),(2,82,'274d3df9254e41cfa51bdb742eeef1c9',1,'2015-12-02 22:19:49',NULL,47,65,NULL,NULL,NULL,NULL),(2,82,'274d3df9254e41cfa51bdb742eeef1c9',2,'2015-12-02 22:06:32',NULL,47,0,NULL,NULL,'36','84'),(2,82,'274d3df9254e41cfa51bdb742eeef1c9',7,'2015-12-02 22:52:25',NULL,47,0,'41','29',NULL,NULL),(2,82,'274d3df9254e41cfa51bdb742eeef1c9',1,'2015-12-02 22:06:11',NULL,47,0,NULL,NULL,'11','80'),(2,82,'274d3df9254e41cfa51bdb742eeef1c9',3,'2015-12-02 22:20:09',NULL,47,50,NULL,NULL,NULL,NULL),(2,82,'274d3df9254e41cfa51bdb742eeef1c9',8,'2015-12-02 22:55:21','重庆小面',47,0,NULL,NULL,NULL,NULL),(2,82,'274d3df9254e41cfa51bdb742eeef1c9',3,'2015-12-02 22:16:26',NULL,47,86,NULL,NULL,NULL,NULL),(2,82,'274d3df9254e41cfa51bdb742eeef1c9',8,'2015-12-02 22:00:24','国贸大厦',47,0,NULL,NULL,NULL,NULL),(2,82,'274d3df9254e41cfa51bdb742eeef1c9',7,'2015-12-02 22:51:42',NULL,47,0,NULL,NULL,'42','36'),(2,82,'274d3df9254e41cfa51bdb742eeef1c9',7,'2015-12-02 22:54:21',NULL,47,0,'17','10',NULL,NULL),(2,82,'274d3df9254e41cfa51bdb742eeef1c9',2,'2015-12-02 22:56:49',NULL,47,82,NULL,NULL,NULL,NULL),(2,82,'274d3df9254e41cfa51bdb742eeef1c9',9,'2015-12-02 22:52:47',NULL,47,0,NULL,NULL,'87','48'),(2,6,'5dfcd91dc1cc46399897f979b6b4036d',2,'2015-12-02 11:16:38',NULL,0,0,'58','7',NULL,NULL),(2,6,'5dfcd91dc1cc46399897f979b6b4036d',6,'2015-12-02 11:50:56',NULL,12,68,NULL,NULL,NULL,NULL),(2,6,'5dfcd91dc1cc46399897f979b6b4036d',5,'2015-12-02 11:44:38','温泉',12,0,NULL,NULL,NULL,NULL),(2,6,'5dfcd91dc1cc46399897f979b6b4036d',7,'2015-12-02 11:50:01',NULL,12,19,NULL,NULL,NULL,NULL),(2,6,'5dfcd91dc1cc46399897f979b6b4036d',8,'2015-12-02 11:08:39',NULL,12,0,NULL,NULL,'33','37'),(2,6,'5dfcd91dc1cc46399897f979b6b4036d',0,'2015-12-02 11:07:48',NULL,12,84,NULL,NULL,NULL,NULL),(2,92,'37a51032b3524aa586332c64fd213c2a',9,'2015-12-02 3:53:48',NULL,0,0,'93','63',NULL,NULL),(2,92,'37a51032b3524aa586332c64fd213c2a',4,'2015-12-02 3:14:39','新辣道鱼火锅',0,0,NULL,NULL,NULL,NULL),(2,92,'37a51032b3524aa586332c64fd213c2a',5,'2015-12-02 3:24:26',NULL,26,61,NULL,NULL,NULL,NULL),(2,92,'37a51032b3524aa586332c64fd213c2a',3,'2015-12-02 3:31:47',NULL,26,0,NULL,NULL,'91','26'),(2,92,'37a51032b3524aa586332c64fd213c2a',7,'2015-12-02 3:53:33',NULL,26,0,'34','55',NULL,NULL),(2,92,'37a51032b3524aa586332c64fd213c2a',3,'2015-12-02 3:13:02','温泉',26,0,NULL,NULL,NULL,NULL),(2,92,'37a51032b3524aa586332c64fd213c2a',7,'2015-12-02 3:57:48',NULL,26,0,NULL,NULL,'70','84'),(2,92,'37a51032b3524aa586332c64fd213c2a',9,'2015-12-02 3:30:36','新辣道鱼火锅',26,0,NULL,NULL,NULL,NULL),(2,92,'37a51032b3524aa586332c64fd213c2a',3,'2015-12-02 3:24:10',NULL,26,31,NULL,NULL,NULL,NULL),(2,92,'37a51032b3524aa586332c64fd213c2a',2,'2015-12-02 3:16:54',NULL,26,0,NULL,NULL,'64','35'),(2,92,'37a51032b3524aa586332c64fd213c2a',7,'2015-12-02 3:20:40',NULL,26,0,'60','93',NULL,NULL),(2,92,'37a51032b3524aa586332c64fd213c2a',2,'2015-12-02 3:36:30',NULL,26,26,NULL,NULL,NULL,NULL),(2,92,'37a51032b3524aa586332c64fd213c2a',1,'2015-12-02 3:08:11',NULL,26,83,NULL,NULL,NULL,NULL),(2,92,'37a51032b3524aa586332c64fd213c2a',7,'2015-12-02 3:09:24',NULL,26,0,'51','75',NULL,NULL),(2,92,'37a51032b3524aa586332c64fd213c2a',8,'2015-12-02 3:23:29',NULL,26,0,'87','31',NULL,NULL),(2,92,'37a51032b3524aa586332c64fd213c2a',7,'2015-12-02 3:14:41','日本料理',26,0,NULL,NULL,NULL,NULL),(2,92,'37a51032b3524aa586332c64fd213c2a',4,'2015-12-02 3:41:26',NULL,26,0,NULL,NULL,'39','12'),(2,92,'37a51032b3524aa586332c64fd213c2a',1,'2015-12-02 3:11:22','国贸大厦',26,0,NULL,NULL,NULL,NULL),(2,99,'bcbf01e4215e4703810d439657b611d0',0,'2015-12-02 10:02:18',NULL,81,18,NULL,NULL,NULL,NULL),(2,99,'bcbf01e4215e4703810d439657b611d0',6,'2015-12-02 10:07:53','日本料理',81,0,NULL,NULL,NULL,NULL),(2,99,'bcbf01e4215e4703810d439657b611d0',5,'2015-12-02 10:19:19',NULL,81,0,NULL,NULL,'78','36'),(2,99,'bcbf01e4215e4703810d439657b611d0',7,'2015-12-02 10:03:19',NULL,81,0,'48','28',NULL,NULL),(2,99,'bcbf01e4215e4703810d439657b611d0',4,'2015-12-02 10:36:23',NULL,81,0,NULL,NULL,'59','6'),(2,99,'bcbf01e4215e4703810d439657b611d0',8,'2015-12-02 10:11:03',NULL,81,0,'46','4',NULL,NULL),(2,99,'bcbf01e4215e4703810d439657b611d0',4,'2015-12-02 10:44:40','呷哺呷哺',81,0,NULL,NULL,NULL,NULL),(2,99,'bcbf01e4215e4703810d439657b611d0',4,'2015-12-02 10:06:42','重庆辣子鸡',81,0,NULL,NULL,NULL,NULL),(2,99,'bcbf01e4215e4703810d439657b611d0',2,'2015-12-02 10:31:09',NULL,81,0,'66','74',NULL,NULL),(2,54,'e9e6fb27147a469698c7aaec2f5ed580',0,'2015-12-02 20:52:34',NULL,0,0,NULL,NULL,'28','24'),(2,54,'e9e6fb27147a469698c7aaec2f5ed580',4,'2015-12-02 20:12:30',NULL,0,0,NULL,NULL,'7','68'),(2,54,'e9e6fb27147a469698c7aaec2f5ed580',2,'2015-12-02 20:39:15',NULL,0,0,'16','81',NULL,NULL),(2,54,'e9e6fb27147a469698c7aaec2f5ed580',5,'2015-12-02 20:22:46',NULL,90,20,NULL,NULL,NULL,NULL),(2,54,'e9e6fb27147a469698c7aaec2f5ed580',4,'2015-12-02 20:01:38',NULL,90,0,'60','78',NULL,NULL),(2,54,'e9e6fb27147a469698c7aaec2f5ed580',9,'2015-12-02 20:43:58',NULL,90,63,NULL,NULL,NULL,NULL),(2,54,'e9e6fb27147a469698c7aaec2f5ed580',6,'2015-12-02 20:22:29',NULL,90,0,NULL,NULL,'79','4'),(2,54,'e9e6fb27147a469698c7aaec2f5ed580',5,'2015-12-02 20:12:01',NULL,90,0,NULL,NULL,'87','99'),(2,54,'e9e6fb27147a469698c7aaec2f5ed580',3,'2015-12-02 20:51:13',NULL,90,0,'53','72',NULL,NULL),(2,54,'e9e6fb27147a469698c7aaec2f5ed580',1,'2015-12-02 20:37:25',NULL,90,92,NULL,NULL,NULL,NULL),(2,54,'e9e6fb27147a469698c7aaec2f5ed580',9,'2015-12-02 20:38:53',NULL,90,0,'65','49',NULL,NULL),(2,54,'e9e6fb27147a469698c7aaec2f5ed580',8,'2015-12-02 20:33:50',NULL,90,33,NULL,NULL,NULL,NULL),(2,54,'e9e6fb27147a469698c7aaec2f5ed580',3,'2015-12-02 20:22:55',NULL,90,0,'87','46',NULL,NULL),(2,65,'1d7acc93b5b34e139f704970379b66f8',5,'2015-12-02 21:47:45',NULL,0,0,NULL,NULL,'11','73'),(2,65,'1d7acc93b5b34e139f704970379b66f8',0,'2015-12-02 21:25:09',NULL,1,3,NULL,NULL,NULL,NULL),(2,65,'1d7acc93b5b34e139f704970379b66f8',4,'2015-12-02 21:22:10',NULL,1,0,NULL,NULL,'4','33'),(2,65,'1d7acc93b5b34e139f704970379b66f8',3,'2015-12-02 21:41:34',NULL,1,0,'74','34',NULL,NULL),(2,65,'1d7acc93b5b34e139f704970379b66f8',0,'2015-12-02 21:39:26',NULL,1,0,NULL,NULL,'12','71'),(2,65,'1d7acc93b5b34e139f704970379b66f8',0,'2015-12-02 21:19:38','新辣道鱼火锅',1,0,NULL,NULL,NULL,NULL),(2,65,'1d7acc93b5b34e139f704970379b66f8',4,'2015-12-02 21:46:46',NULL,1,64,NULL,NULL,NULL,NULL),(2,65,'1d7acc93b5b34e139f704970379b66f8',9,'2015-12-02 21:26:48','新辣道鱼火锅',1,0,NULL,NULL,NULL,NULL),(2,65,'1d7acc93b5b34e139f704970379b66f8',7,'2015-12-02 21:25:16','重庆辣子鸡',1,0,NULL,NULL,NULL,NULL),(2,65,'1d7acc93b5b34e139f704970379b66f8',4,'2015-12-02 21:20:11',NULL,1,0,'50','3',NULL,NULL),(2,65,'1d7acc93b5b34e139f704970379b66f8',2,'2015-12-02 21:44:56',NULL,1,0,'83','71',NULL,NULL),(2,65,'1d7acc93b5b34e139f704970379b66f8',5,'2015-12-02 21:20:45',NULL,1,0,'31','76',NULL,NULL),(2,65,'1d7acc93b5b34e139f704970379b66f8',3,'2015-12-02 21:18:44',NULL,1,0,'11','96',NULL,NULL),(2,65,'1d7acc93b5b34e139f704970379b66f8',2,'2015-12-02 21:38:41','呷哺呷哺',1,0,NULL,NULL,NULL,NULL),(2,65,'1d7acc93b5b34e139f704970379b66f8',6,'2015-12-02 21:06:05',NULL,1,0,'41','82',NULL,NULL),(2,65,'1d7acc93b5b34e139f704970379b66f8',1,'2015-12-02 21:36:38',NULL,1,9,NULL,NULL,NULL,NULL),(2,65,'1d7acc93b5b34e139f704970379b66f8',1,'2015-12-02 21:44:54',NULL,1,0,NULL,NULL,'37','83'),(2,65,'1d7acc93b5b34e139f704970379b66f8',1,'2015-12-02 21:15:58',NULL,1,0,NULL,NULL,NULL,NULL),(2,65,'1d7acc93b5b34e139f704970379b66f8',4,'2015-12-02 21:04:48',NULL,1,65,NULL,NULL,NULL,NULL),(2,65,'1d7acc93b5b34e139f704970379b66f8',0,'2015-12-02 21:00:09',NULL,1,50,NULL,NULL,NULL,NULL),(2,65,'1d7acc93b5b34e139f704970379b66f8',1,'2015-12-02 21:12:21',NULL,1,0,NULL,NULL,'76','40'),(2,65,'1d7acc93b5b34e139f704970379b66f8',7,'2015-12-02 21:20:00',NULL,1,61,NULL,NULL,NULL,NULL),(2,96,'69b06fc425b44ee586d094d46dc1a379',0,'2015-12-02 2:32:27',NULL,99,11,NULL,NULL,NULL,NULL),(2,96,'69b06fc425b44ee586d094d46dc1a379',7,'2015-12-02 2:28:44',NULL,99,0,'18','5',NULL,NULL),(2,96,'69b06fc425b44ee586d094d46dc1a379',6,'2015-12-02 2:08:33',NULL,99,0,'30','90',NULL,NULL),(2,96,'69b06fc425b44ee586d094d46dc1a379',3,'2015-12-02 2:09:47','日本料理',99,0,NULL,NULL,NULL,NULL),(2,96,'69b06fc425b44ee586d094d46dc1a379',8,'2015-12-02 2:41:09','呷哺呷哺',99,0,NULL,NULL,NULL,NULL),(2,96,'69b06fc425b44ee586d094d46dc1a379',8,'2015-12-02 2:23:40',NULL,99,0,'13','12',NULL,NULL),(2,96,'69b06fc425b44ee586d094d46dc1a379',3,'2015-12-02 2:41:37',NULL,99,0,'52','13',NULL,NULL),(2,96,'69b06fc425b44ee586d094d46dc1a379',7,'2015-12-02 2:33:07',NULL,99,45,NULL,NULL,NULL,NULL),(2,96,'69b06fc425b44ee586d094d46dc1a379',9,'2015-12-02 2:50:17',NULL,99,0,'15','61',NULL,NULL),(2,96,'69b06fc425b44ee586d094d46dc1a379',4,'2015-12-02 2:36:20',NULL,99,0,'79','35',NULL,NULL),(2,87,'54ea143621e544b083e5b5455606e935',0,'2015-12-02 17:16:28',NULL,0,0,NULL,NULL,'44','1'),(2,87,'54ea143621e544b083e5b5455606e935',9,'2015-12-02 17:35:12',NULL,0,0,'55','49',NULL,NULL),(2,87,'54ea143621e544b083e5b5455606e935',4,'2015-12-02 17:01:19',NULL,0,0,NULL,NULL,'64','90'),(2,87,'54ea143621e544b083e5b5455606e935',8,'2015-12-02 17:35:55',NULL,0,0,'84','63',NULL,NULL),(2,87,'54ea143621e544b083e5b5455606e935',3,'2015-12-02 17:49:15',NULL,0,0,NULL,NULL,'72','34'),(2,87,'54ea143621e544b083e5b5455606e935',4,'2015-12-02 17:13:45',NULL,0,0,NULL,NULL,'25','80'),(2,87,'54ea143621e544b083e5b5455606e935',6,'2015-12-02 17:12:27',NULL,40,72,NULL,NULL,NULL,NULL),(2,87,'54ea143621e544b083e5b5455606e935',0,'2015-12-02 17:14:48',NULL,40,33,NULL,NULL,NULL,NULL),(2,87,'54ea143621e544b083e5b5455606e935',6,'2015-12-02 17:49:23',NULL,40,0,'92','62',NULL,NULL),(2,81,'77dae390b3634348a9295170a85ccec8',6,'2015-12-02 4:08:27',NULL,53,33,NULL,NULL,NULL,NULL),(2,81,'77dae390b3634348a9295170a85ccec8',1,'2015-12-02 4:57:23',NULL,53,94,NULL,NULL,NULL,NULL),(2,81,'77dae390b3634348a9295170a85ccec8',7,'2015-12-02 4:49:54','重庆辣子鸡',53,0,NULL,NULL,NULL,NULL),(2,81,'77dae390b3634348a9295170a85ccec8',7,'2015-12-02 4:03:37',NULL,53,0,'53','31',NULL,NULL),(2,81,'77dae390b3634348a9295170a85ccec8',5,'2015-12-02 4:11:33',NULL,53,0,NULL,NULL,'52','26'),(2,81,'77dae390b3634348a9295170a85ccec8',0,'2015-12-02 4:24:55',NULL,53,98,NULL,NULL,NULL,NULL),(2,81,'77dae390b3634348a9295170a85ccec8',6,'2015-12-02 4:27:43',NULL,53,0,'51','84',NULL,NULL),(2,81,'77dae390b3634348a9295170a85ccec8',2,'2015-12-02 4:00:07',NULL,53,36,NULL,NULL,NULL,NULL),(2,81,'77dae390b3634348a9295170a85ccec8',8,'2015-12-02 4:28:23',NULL,53,0,NULL,NULL,'88','72'),(2,81,'77dae390b3634348a9295170a85ccec8',5,'2015-12-02 4:54:33',NULL,53,0,NULL,NULL,'75','79'),(2,99,'a613bf8b408740d69aa68379b8d5b3f5',3,'2015-12-02 4:54:31',NULL,0,0,NULL,NULL,'46','63'),(2,99,'a613bf8b408740d69aa68379b8d5b3f5',0,'2015-12-02 4:40:45',NULL,59,40,NULL,NULL,NULL,NULL),(2,99,'a613bf8b408740d69aa68379b8d5b3f5',8,'2015-12-02 4:45:37',NULL,59,42,NULL,NULL,NULL,NULL),(2,99,'a613bf8b408740d69aa68379b8d5b3f5',8,'2015-12-02 4:45:13',NULL,59,0,NULL,NULL,'54','92'),(2,99,'a613bf8b408740d69aa68379b8d5b3f5',2,'2015-12-02 4:06:49',NULL,59,96,NULL,NULL,NULL,NULL),(2,99,'a613bf8b408740d69aa68379b8d5b3f5',3,'2015-12-02 4:07:13',NULL,59,32,NULL,NULL,NULL,NULL),(2,99,'a613bf8b408740d69aa68379b8d5b3f5',6,'2015-12-02 4:32:30',NULL,59,0,'41','7',NULL,NULL),(2,99,'a613bf8b408740d69aa68379b8d5b3f5',3,'2015-12-02 4:21:12','温泉',59,0,NULL,NULL,NULL,NULL),(2,57,'72f8c93ec4264cdd959560c1f666f6c4',5,'2015-12-02 17:23:43','火锅',0,0,NULL,NULL,NULL,NULL),(2,57,'72f8c93ec4264cdd959560c1f666f6c4',2,'2015-12-02 17:20:26','呷哺呷哺',0,0,NULL,NULL,NULL,NULL),(2,57,'72f8c93ec4264cdd959560c1f666f6c4',2,'2015-12-02 17:23:35','太古商场',0,0,NULL,NULL,NULL,NULL),(2,57,'72f8c93ec4264cdd959560c1f666f6c4',9,'2015-12-02 17:57:30',NULL,83,20,NULL,NULL,NULL,NULL),(2,57,'72f8c93ec4264cdd959560c1f666f6c4',8,'2015-12-02 17:22:05',NULL,83,51,NULL,NULL,NULL,NULL),(2,57,'72f8c93ec4264cdd959560c1f666f6c4',5,'2015-12-02 17:16:43',NULL,83,0,'52','80',NULL,NULL),(2,57,'72f8c93ec4264cdd959560c1f666f6c4',0,'2015-12-02 17:56:16',NULL,83,0,'79','17',NULL,NULL),(2,57,'72f8c93ec4264cdd959560c1f666f6c4',0,'2015-12-02 17:32:42',NULL,83,0,'99','55',NULL,NULL),(2,57,'72f8c93ec4264cdd959560c1f666f6c4',7,'2015-12-02 17:07:41',NULL,83,46,NULL,NULL,NULL,NULL),(2,57,'72f8c93ec4264cdd959560c1f666f6c4',0,'2015-12-02 17:55:10',NULL,83,0,'95','1',NULL,NULL),(2,57,'72f8c93ec4264cdd959560c1f666f6c4',5,'2015-12-02 17:41:55',NULL,83,0,'50','85',NULL,NULL),(2,57,'72f8c93ec4264cdd959560c1f666f6c4',7,'2015-12-02 17:03:41',NULL,83,0,'56','73',NULL,NULL),(2,51,'2a05f0625d164703990f952c8e7b43ce',3,'2015-12-02 1:19:51',NULL,0,0,'31','63',NULL,NULL),(2,51,'2a05f0625d164703990f952c8e7b43ce',2,'2015-12-02 1:49:02',NULL,0,0,'81','36',NULL,NULL),(2,51,'2a05f0625d164703990f952c8e7b43ce',9,'2015-12-02 1:36:20',NULL,0,0,'44','4',NULL,NULL),(2,51,'2a05f0625d164703990f952c8e7b43ce',0,'2015-12-02 1:56:23',NULL,0,0,NULL,NULL,'64','74'),(2,51,'2a05f0625d164703990f952c8e7b43ce',7,'2015-12-02 1:28:42',NULL,0,0,'80','13',NULL,NULL),(2,51,'2a05f0625d164703990f952c8e7b43ce',0,'2015-12-02 1:31:28',NULL,43,89,NULL,NULL,NULL,NULL),(2,51,'2a05f0625d164703990f952c8e7b43ce',6,'2015-12-02 1:21:36',NULL,43,0,'79','14',NULL,NULL),(2,51,'2a05f0625d164703990f952c8e7b43ce',9,'2015-12-02 1:33:46',NULL,43,0,'60','27',NULL,NULL),(2,51,'2a05f0625d164703990f952c8e7b43ce',4,'2015-12-02 1:41:28',NULL,43,0,'0','69',NULL,NULL),(2,51,'2a05f0625d164703990f952c8e7b43ce',9,'2015-12-02 1:52:23','重庆小面',43,0,NULL,NULL,NULL,NULL),(2,51,'2a05f0625d164703990f952c8e7b43ce',5,'2015-12-02 1:28:24',NULL,43,0,NULL,NULL,'13','96'),(2,51,'2a05f0625d164703990f952c8e7b43ce',0,'2015-12-02 1:26:09',NULL,43,0,NULL,NULL,'74','33'),(2,51,'2a05f0625d164703990f952c8e7b43ce',3,'2015-12-02 1:14:34','温泉',43,0,NULL,NULL,NULL,NULL),(2,51,'2a05f0625d164703990f952c8e7b43ce',8,'2015-12-02 1:05:42','重庆小面',43,0,NULL,NULL,NULL,NULL),(2,51,'2a05f0625d164703990f952c8e7b43ce',7,'2015-12-02 1:52:43',NULL,43,0,NULL,NULL,'57','48'),(2,51,'2a05f0625d164703990f952c8e7b43ce',3,'2015-12-02 1:26:40',NULL,43,88,NULL,NULL,NULL,NULL),(2,51,'2a05f0625d164703990f952c8e7b43ce',6,'2015-12-02 1:45:09',NULL,43,0,'87','14',NULL,NULL),(2,51,'2a05f0625d164703990f952c8e7b43ce',6,'2015-12-02 1:42:27',NULL,43,51,NULL,NULL,NULL,NULL),(2,51,'2a05f0625d164703990f952c8e7b43ce',0,'2015-12-02 1:14:13',NULL,43,0,NULL,NULL,'14','40'),(2,51,'2a05f0625d164703990f952c8e7b43ce',9,'2015-12-02 1:21:32',NULL,43,0,'89','47',NULL,NULL),(2,51,'2a05f0625d164703990f952c8e7b43ce',8,'2015-12-02 1:34:37','蛋糕',43,0,NULL,NULL,NULL,NULL),(2,51,'2a05f0625d164703990f952c8e7b43ce',6,'2015-12-02 1:31:30',NULL,43,0,NULL,NULL,'63','79'),(2,35,'59cfaf0bdc46413eb565cdbf98dca031',2,'2015-12-02 21:16:03',NULL,0,0,'80','15',NULL,NULL),(2,35,'59cfaf0bdc46413eb565cdbf98dca031',6,'2015-12-02 21:16:34',NULL,0,0,'43','39',NULL,NULL),(2,35,'59cfaf0bdc46413eb565cdbf98dca031',0,'2015-12-02 21:31:21','太古商场',0,0,NULL,NULL,NULL,NULL),(2,35,'59cfaf0bdc46413eb565cdbf98dca031',0,'2015-12-02 21:05:53',NULL,0,0,'52','92',NULL,NULL),(2,35,'59cfaf0bdc46413eb565cdbf98dca031',8,'2015-12-02 21:15:56',NULL,0,0,NULL,NULL,'66','90'),(2,35,'59cfaf0bdc46413eb565cdbf98dca031',0,'2015-12-02 21:44:01',NULL,81,61,NULL,NULL,NULL,NULL),(2,35,'59cfaf0bdc46413eb565cdbf98dca031',4,'2015-12-02 21:47:40','太古商场',81,0,NULL,NULL,NULL,NULL),(2,35,'59cfaf0bdc46413eb565cdbf98dca031',3,'2015-12-02 21:30:20',NULL,81,0,'87','92',NULL,NULL),(2,35,'59cfaf0bdc46413eb565cdbf98dca031',4,'2015-12-02 21:29:24',NULL,81,0,NULL,NULL,'93','53'),(2,35,'59cfaf0bdc46413eb565cdbf98dca031',9,'2015-12-02 21:39:30',NULL,81,0,'75','95',NULL,NULL),(2,35,'59cfaf0bdc46413eb565cdbf98dca031',9,'2015-12-02 21:15:10',NULL,81,0,'99','49',NULL,NULL),(2,35,'59cfaf0bdc46413eb565cdbf98dca031',8,'2015-12-02 21:10:24',NULL,81,0,NULL,NULL,'26','36'),(2,35,'59cfaf0bdc46413eb565cdbf98dca031',8,'2015-12-02 21:41:57','火锅',81,0,NULL,NULL,NULL,NULL),(2,35,'59cfaf0bdc46413eb565cdbf98dca031',9,'2015-12-02 21:13:25',NULL,81,0,NULL,NULL,'77','51'),(2,35,'59cfaf0bdc46413eb565cdbf98dca031',2,'2015-12-02 21:48:25',NULL,81,0,'76','80',NULL,NULL),(2,35,'59cfaf0bdc46413eb565cdbf98dca031',0,'2015-12-02 21:50:02',NULL,81,0,'34','91',NULL,NULL),(2,35,'59cfaf0bdc46413eb565cdbf98dca031',7,'2015-12-02 21:12:48','国贸大厦',81,0,NULL,NULL,NULL,NULL),(2,35,'59cfaf0bdc46413eb565cdbf98dca031',5,'2015-12-02 21:24:32','国贸大厦',81,0,NULL,NULL,NULL,NULL),(2,35,'59cfaf0bdc46413eb565cdbf98dca031',3,'2015-12-02 21:39:52',NULL,81,77,NULL,NULL,NULL,NULL),(2,35,'59cfaf0bdc46413eb565cdbf98dca031',0,'2015-12-02 21:11:05',NULL,81,58,NULL,NULL,NULL,NULL),(2,35,'59cfaf0bdc46413eb565cdbf98dca031',9,'2015-12-02 21:33:42','重庆小面',81,0,NULL,NULL,NULL,NULL),(2,35,'59cfaf0bdc46413eb565cdbf98dca031',8,'2015-12-02 21:49:15','日本料理',81,0,NULL,NULL,NULL,NULL),(2,35,'59cfaf0bdc46413eb565cdbf98dca031',3,'2015-12-02 21:02:53','日本料理',81,0,NULL,NULL,NULL,NULL),(2,35,'59cfaf0bdc46413eb565cdbf98dca031',2,'2015-12-02 21:31:43',NULL,81,34,NULL,NULL,NULL,NULL),(2,35,'59cfaf0bdc46413eb565cdbf98dca031',4,'2015-12-02 21:54:50','国贸大厦',81,0,NULL,NULL,NULL,NULL),(2,35,'59cfaf0bdc46413eb565cdbf98dca031',1,'2015-12-02 21:04:10',NULL,81,0,NULL,NULL,'72','30'),(2,35,'59cfaf0bdc46413eb565cdbf98dca031',1,'2015-12-02 21:48:50',NULL,81,0,'74','15',NULL,NULL),(2,2,'82a56a675d5249faaaac5b3ecfb347d0',8,'2015-12-02 3:56:39','呷哺呷哺',0,0,NULL,NULL,NULL,NULL),(2,2,'82a56a675d5249faaaac5b3ecfb347d0',3,'2015-12-02 3:07:42',NULL,0,0,NULL,NULL,'40','14'),(2,2,'82a56a675d5249faaaac5b3ecfb347d0',8,'2015-12-02 3:46:55',NULL,19,39,NULL,NULL,NULL,NULL),(2,2,'82a56a675d5249faaaac5b3ecfb347d0',7,'2015-12-02 3:43:13',NULL,19,0,'48','25',NULL,NULL),(2,2,'82a56a675d5249faaaac5b3ecfb347d0',2,'2015-12-02 3:01:28','太古商场',19,0,NULL,NULL,NULL,NULL),(2,2,'82a56a675d5249faaaac5b3ecfb347d0',2,'2015-12-02 3:58:40','蛋糕',19,0,NULL,NULL,NULL,NULL),(2,2,'82a56a675d5249faaaac5b3ecfb347d0',5,'2015-12-02 3:20:58',NULL,19,0,'88','14',NULL,NULL),(2,2,'82a56a675d5249faaaac5b3ecfb347d0',8,'2015-12-02 3:07:15',NULL,19,0,NULL,NULL,'34','52'),(2,2,'82a56a675d5249faaaac5b3ecfb347d0',7,'2015-12-02 3:19:26',NULL,19,0,'90','54',NULL,NULL),(2,36,'b47e8b7b1bbf470f80c2cbc8723b9c6a',3,'2015-12-02 7:24:37',NULL,57,11,NULL,NULL,NULL,NULL),(2,36,'b47e8b7b1bbf470f80c2cbc8723b9c6a',0,'2015-12-02 7:48:07',NULL,57,8,NULL,NULL,NULL,NULL),(2,36,'b47e8b7b1bbf470f80c2cbc8723b9c6a',5,'2015-12-02 7:58:50',NULL,57,34,NULL,NULL,NULL,NULL),(2,36,'b47e8b7b1bbf470f80c2cbc8723b9c6a',4,'2015-12-02 7:05:01',NULL,57,0,'83','7',NULL,NULL),(2,36,'b47e8b7b1bbf470f80c2cbc8723b9c6a',9,'2015-12-02 7:33:53',NULL,57,0,NULL,NULL,'18','19'),(2,36,'b47e8b7b1bbf470f80c2cbc8723b9c6a',8,'2015-12-02 7:55:08','蛋糕',57,0,NULL,NULL,NULL,NULL),(2,36,'b47e8b7b1bbf470f80c2cbc8723b9c6a',0,'2015-12-02 7:24:43',NULL,57,8,NULL,NULL,NULL,NULL),(2,36,'b47e8b7b1bbf470f80c2cbc8723b9c6a',5,'2015-12-02 7:03:03',NULL,57,0,'77','44',NULL,NULL),(2,87,'60e6b14c2fbd417db7e99775b53576ce',8,'2015-12-02 16:34:01',NULL,0,0,'52','72',NULL,NULL),(2,87,'60e6b14c2fbd417db7e99775b53576ce',6,'2015-12-02 16:31:44',NULL,12,81,NULL,NULL,NULL,NULL),(2,87,'60e6b14c2fbd417db7e99775b53576ce',0,'2015-12-02 16:51:06',NULL,12,67,NULL,NULL,NULL,NULL),(2,87,'60e6b14c2fbd417db7e99775b53576ce',0,'2015-12-02 16:08:02',NULL,12,65,NULL,NULL,NULL,NULL),(2,87,'60e6b14c2fbd417db7e99775b53576ce',8,'2015-12-02 16:29:31',NULL,12,0,NULL,NULL,'23','94'),(2,87,'60e6b14c2fbd417db7e99775b53576ce',6,'2015-12-02 16:05:41',NULL,12,0,'65','61',NULL,NULL),(2,87,'60e6b14c2fbd417db7e99775b53576ce',8,'2015-12-02 16:36:01',NULL,12,0,'67','95',NULL,NULL),(2,87,'60e6b14c2fbd417db7e99775b53576ce',7,'2015-12-02 16:27:04',NULL,12,11,NULL,NULL,NULL,NULL),(2,87,'60e6b14c2fbd417db7e99775b53576ce',3,'2015-12-02 16:45:04',NULL,12,0,NULL,NULL,'29','53'),(2,87,'60e6b14c2fbd417db7e99775b53576ce',8,'2015-12-02 16:11:39',NULL,12,0,'96','29',NULL,NULL),(2,87,'60e6b14c2fbd417db7e99775b53576ce',0,'2015-12-02 16:22:34',NULL,12,0,NULL,NULL,'76','99'),(2,87,'60e6b14c2fbd417db7e99775b53576ce',7,'2015-12-02 16:24:16',NULL,12,0,'93','59',NULL,NULL),(2,51,'8a250b21e69c44c49bc629347fcd7094',5,'2015-12-02 19:57:30',NULL,0,0,NULL,NULL,'44','56'),(2,51,'8a250b21e69c44c49bc629347fcd7094',1,'2015-12-02 19:16:15',NULL,0,0,'68','47',NULL,NULL),(2,51,'8a250b21e69c44c49bc629347fcd7094',4,'2015-12-02 19:27:38','新辣道鱼火锅',0,0,NULL,NULL,NULL,NULL),(2,51,'8a250b21e69c44c49bc629347fcd7094',9,'2015-12-02 19:58:11',NULL,0,0,'57','16',NULL,NULL),(2,51,'8a250b21e69c44c49bc629347fcd7094',0,'2015-12-02 19:39:20',NULL,28,35,NULL,NULL,NULL,NULL),(2,51,'8a250b21e69c44c49bc629347fcd7094',7,'2015-12-02 19:18:37','火锅',28,0,NULL,NULL,NULL,NULL),(2,92,'f30a5f276f344ad68cc460b8e873d65c',5,'2015-12-02 6:30:48','太古商场',0,0,NULL,NULL,NULL,NULL),(2,92,'f30a5f276f344ad68cc460b8e873d65c',2,'2015-12-02 6:34:17',NULL,51,26,NULL,NULL,NULL,NULL),(2,92,'f30a5f276f344ad68cc460b8e873d65c',7,'2015-12-02 6:18:52','温泉',51,0,NULL,NULL,NULL,NULL),(2,92,'f30a5f276f344ad68cc460b8e873d65c',7,'2015-12-02 6:58:06',NULL,51,0,'72','81',NULL,NULL),(2,92,'f30a5f276f344ad68cc460b8e873d65c',0,'2015-12-02 6:12:28','重庆小面',51,0,NULL,NULL,NULL,NULL),(2,92,'f30a5f276f344ad68cc460b8e873d65c',8,'2015-12-02 6:27:11',NULL,51,0,'94','23',NULL,NULL),(2,92,'f30a5f276f344ad68cc460b8e873d65c',3,'2015-12-02 6:08:08',NULL,51,0,NULL,NULL,'63','50'),(2,92,'f30a5f276f344ad68cc460b8e873d65c',2,'2015-12-02 6:16:54',NULL,51,0,'71','29',NULL,NULL),(2,92,'f30a5f276f344ad68cc460b8e873d65c',4,'2015-12-02 6:28:53',NULL,51,0,'91','34',NULL,NULL),(2,92,'f30a5f276f344ad68cc460b8e873d65c',0,'2015-12-02 6:31:34',NULL,51,21,NULL,NULL,NULL,NULL),(2,92,'f30a5f276f344ad68cc460b8e873d65c',9,'2015-12-02 6:05:34','呷哺呷哺',51,0,NULL,NULL,NULL,NULL),(2,92,'f30a5f276f344ad68cc460b8e873d65c',0,'2015-12-02 6:22:41',NULL,51,0,NULL,NULL,'43','89'),(2,92,'f30a5f276f344ad68cc460b8e873d65c',6,'2015-12-02 6:46:24',NULL,51,59,NULL,NULL,NULL,NULL),(2,92,'f30a5f276f344ad68cc460b8e873d65c',2,'2015-12-02 6:04:52',NULL,51,0,'52','28',NULL,NULL),(2,22,'acfe374119eb4bb4886699279dfe021e',5,'2015-12-02 10:21:56',NULL,11,59,NULL,NULL,NULL,NULL),(2,22,'acfe374119eb4bb4886699279dfe021e',6,'2015-12-02 10:26:03',NULL,11,68,NULL,NULL,NULL,NULL),(2,22,'acfe374119eb4bb4886699279dfe021e',0,'2015-12-02 10:17:33',NULL,11,44,NULL,NULL,NULL,NULL),(2,22,'acfe374119eb4bb4886699279dfe021e',0,'2015-12-02 10:18:53',NULL,11,0,NULL,NULL,'94','9'),(2,22,'acfe374119eb4bb4886699279dfe021e',7,'2015-12-02 10:49:46',NULL,11,99,NULL,NULL,NULL,NULL),(2,22,'acfe374119eb4bb4886699279dfe021e',7,'2015-12-02 10:57:24',NULL,11,0,'12','6',NULL,NULL),(2,22,'acfe374119eb4bb4886699279dfe021e',3,'2015-12-02 10:23:20','火锅',11,0,NULL,NULL,NULL,NULL),(2,22,'acfe374119eb4bb4886699279dfe021e',2,'2015-12-02 10:17:07',NULL,11,0,'76','9',NULL,NULL),(2,22,'acfe374119eb4bb4886699279dfe021e',0,'2015-12-02 10:27:22',NULL,11,28,NULL,NULL,NULL,NULL),(2,22,'acfe374119eb4bb4886699279dfe021e',1,'2015-12-02 10:20:43',NULL,11,0,NULL,NULL,'5','3'),(2,22,'acfe374119eb4bb4886699279dfe021e',1,'2015-12-02 10:20:01',NULL,11,59,NULL,NULL,NULL,NULL),(2,22,'acfe374119eb4bb4886699279dfe021e',7,'2015-12-02 10:52:39','火锅',11,0,NULL,NULL,NULL,NULL),(2,22,'acfe374119eb4bb4886699279dfe021e',8,'2015-12-02 10:45:23',NULL,11,60,NULL,NULL,NULL,NULL),(2,22,'acfe374119eb4bb4886699279dfe021e',3,'2015-12-02 10:38:23','温泉',11,0,NULL,NULL,NULL,NULL),(2,22,'acfe374119eb4bb4886699279dfe021e',1,'2015-12-02 10:52:56',NULL,11,0,'6','60',NULL,NULL),(2,22,'acfe374119eb4bb4886699279dfe021e',7,'2015-12-02 10:14:52',NULL,11,0,'90','52',NULL,NULL),(2,22,'acfe374119eb4bb4886699279dfe021e',4,'2015-12-02 10:11:36',NULL,11,0,NULL,NULL,'6','6'),(2,22,'acfe374119eb4bb4886699279dfe021e',3,'2015-12-02 10:33:21',NULL,11,4,NULL,NULL,NULL,NULL),(2,22,'acfe374119eb4bb4886699279dfe021e',0,'2015-12-02 10:29:56',NULL,11,0,'30','13',NULL,NULL),(2,22,'acfe374119eb4bb4886699279dfe021e',9,'2015-12-02 10:09:17',NULL,11,0,'79','46',NULL,NULL),(2,22,'acfe374119eb4bb4886699279dfe021e',2,'2015-12-02 10:35:19',NULL,11,0,NULL,NULL,'65','4'),(2,2,'4df86749346145b696462d74764a1011',1,'2015-12-02 8:43:23','重庆小面',0,0,NULL,NULL,NULL,NULL),(2,2,'4df86749346145b696462d74764a1011',1,'2015-12-02 8:41:20',NULL,0,0,NULL,NULL,'45','45'),(2,2,'4df86749346145b696462d74764a1011',0,'2015-12-02 8:07:58',NULL,91,73,NULL,NULL,NULL,NULL),(2,2,'4df86749346145b696462d74764a1011',7,'2015-12-02 8:08:58',NULL,91,0,'5','22',NULL,NULL),(2,2,'4df86749346145b696462d74764a1011',9,'2015-12-02 8:24:08',NULL,91,0,'76','96',NULL,NULL),(2,2,'4df86749346145b696462d74764a1011',5,'2015-12-02 8:48:24',NULL,91,0,'65','53',NULL,NULL),(2,2,'4df86749346145b696462d74764a1011',2,'2015-12-02 8:13:12',NULL,91,0,NULL,NULL,'86','6'),(2,2,'4df86749346145b696462d74764a1011',5,'2015-12-02 8:21:21','火锅',91,0,NULL,NULL,NULL,NULL),(2,2,'4df86749346145b696462d74764a1011',4,'2015-12-02 8:17:28',NULL,91,0,NULL,NULL,'56','59'),(2,2,'4df86749346145b696462d74764a1011',8,'2015-12-02 8:19:05',NULL,91,0,NULL,NULL,'98','98'),(2,2,'4df86749346145b696462d74764a1011',1,'2015-12-02 8:27:21',NULL,91,0,'55','83',NULL,NULL),(2,2,'4df86749346145b696462d74764a1011',5,'2015-12-02 8:06:03',NULL,91,0,'92','46',NULL,NULL),(2,2,'4df86749346145b696462d74764a1011',2,'2015-12-02 8:19:31',NULL,91,0,'75','82',NULL,NULL),(2,2,'4df86749346145b696462d74764a1011',9,'2015-12-02 8:51:34',NULL,91,0,NULL,NULL,'14','97'),(2,2,'4df86749346145b696462d74764a1011',2,'2015-12-02 8:06:27',NULL,91,21,NULL,NULL,NULL,NULL),(2,2,'4df86749346145b696462d74764a1011',2,'2015-12-02 8:43:37',NULL,91,0,NULL,NULL,'67','5'),(2,2,'4df86749346145b696462d74764a1011',7,'2015-12-02 8:16:45',NULL,91,47,NULL,NULL,NULL,NULL),(2,87,'df15bdd863114f21a99bfe69522b1cef',8,'2015-12-02 21:02:36','太古商场',0,0,NULL,NULL,NULL,NULL),(2,87,'df15bdd863114f21a99bfe69522b1cef',5,'2015-12-02 21:19:30',NULL,0,0,'27','89',NULL,NULL),(2,87,'df15bdd863114f21a99bfe69522b1cef',4,'2015-12-02 21:11:55',NULL,0,0,NULL,NULL,'32','64'),(2,87,'df15bdd863114f21a99bfe69522b1cef',2,'2015-12-02 21:30:34',NULL,0,0,'93','47',NULL,NULL),(2,87,'df15bdd863114f21a99bfe69522b1cef',9,'2015-12-02 21:11:34',NULL,49,81,NULL,NULL,NULL,NULL),(2,87,'df15bdd863114f21a99bfe69522b1cef',5,'2015-12-02 21:03:41','国贸大厦',49,0,NULL,NULL,NULL,NULL),(2,87,'df15bdd863114f21a99bfe69522b1cef',7,'2015-12-02 21:28:12',NULL,49,0,NULL,NULL,'29','46'),(2,87,'df15bdd863114f21a99bfe69522b1cef',7,'2015-12-02 21:08:14',NULL,49,37,NULL,NULL,NULL,NULL),(2,87,'df15bdd863114f21a99bfe69522b1cef',7,'2015-12-02 21:15:01',NULL,49,0,'1','2',NULL,NULL),(2,87,'df15bdd863114f21a99bfe69522b1cef',8,'2015-12-02 21:17:38',NULL,49,0,'30','9',NULL,NULL),(2,87,'df15bdd863114f21a99bfe69522b1cef',7,'2015-12-02 21:01:58',NULL,49,36,NULL,NULL,NULL,NULL),(2,87,'df15bdd863114f21a99bfe69522b1cef',0,'2015-12-02 21:37:32',NULL,49,68,NULL,NULL,NULL,NULL),(2,87,'df15bdd863114f21a99bfe69522b1cef',2,'2015-12-02 21:46:30',NULL,49,0,'0','32',NULL,NULL),(2,87,'df15bdd863114f21a99bfe69522b1cef',6,'2015-12-02 21:11:44',NULL,49,76,NULL,NULL,NULL,NULL),(2,87,'df15bdd863114f21a99bfe69522b1cef',9,'2015-12-02 21:11:51',NULL,49,82,NULL,NULL,NULL,NULL),(2,9,'2b54dced3b9c4bdb9928223bf93adfc4',8,'2015-12-02 0:21:17',NULL,36,78,NULL,NULL,NULL,NULL),(2,9,'2b54dced3b9c4bdb9928223bf93adfc4',1,'2015-12-02 0:55:42','重庆辣子鸡',36,0,NULL,NULL,NULL,NULL),(2,9,'2b54dced3b9c4bdb9928223bf93adfc4',8,'2015-12-02 0:38:26',NULL,36,0,NULL,NULL,'6','98'),(2,9,'2b54dced3b9c4bdb9928223bf93adfc4',0,'2015-12-02 0:37:01',NULL,36,0,'70','56',NULL,NULL),(2,9,'2b54dced3b9c4bdb9928223bf93adfc4',4,'2015-12-02 0:30:53',NULL,36,0,'87','58',NULL,NULL),(2,9,'2b54dced3b9c4bdb9928223bf93adfc4',4,'2015-12-02 0:55:18',NULL,36,0,NULL,NULL,'41','72'),(2,9,'2b54dced3b9c4bdb9928223bf93adfc4',3,'2015-12-02 0:52:16',NULL,36,0,'0','85',NULL,NULL),(2,5,'e31f5a4592d34fd8a4ecf9f0ae0f747b',8,'2015-12-02 13:42:38',NULL,0,0,'75','30',NULL,NULL),(2,5,'e31f5a4592d34fd8a4ecf9f0ae0f747b',4,'2015-12-02 13:27:40',NULL,86,11,NULL,NULL,NULL,NULL),(2,5,'e31f5a4592d34fd8a4ecf9f0ae0f747b',3,'2015-12-02 13:04:42',NULL,86,36,NULL,NULL,NULL,NULL),(2,5,'e31f5a4592d34fd8a4ecf9f0ae0f747b',8,'2015-12-02 13:08:03','重庆辣子鸡',86,0,NULL,NULL,NULL,NULL),(2,5,'e31f5a4592d34fd8a4ecf9f0ae0f747b',6,'2015-12-02 13:00:10','呷哺呷哺',86,0,NULL,NULL,NULL,NULL),(2,5,'e31f5a4592d34fd8a4ecf9f0ae0f747b',0,'2015-12-02 13:12:41',NULL,86,0,NULL,NULL,'90','20'),(2,21,'95860585cbd542fe80395dd6a84f1f7d',9,'2015-12-02 18:19:07',NULL,0,0,'95','19',NULL,NULL),(2,21,'95860585cbd542fe80395dd6a84f1f7d',9,'2015-12-02 18:27:53',NULL,0,0,NULL,NULL,'29','73'),(2,21,'95860585cbd542fe80395dd6a84f1f7d',9,'2015-12-02 18:56:31',NULL,0,0,NULL,NULL,'91','30'),(2,21,'95860585cbd542fe80395dd6a84f1f7d',9,'2015-12-02 18:39:09',NULL,0,0,'84','95',NULL,NULL),(2,21,'95860585cbd542fe80395dd6a84f1f7d',6,'2015-12-02 18:30:57',NULL,87,15,NULL,NULL,NULL,NULL),(2,21,'95860585cbd542fe80395dd6a84f1f7d',2,'2015-12-02 18:48:23',NULL,87,0,NULL,NULL,'7','43'),(2,21,'95860585cbd542fe80395dd6a84f1f7d',7,'2015-12-02 18:42:15','重庆辣子鸡',87,0,NULL,NULL,NULL,NULL),(2,21,'95860585cbd542fe80395dd6a84f1f7d',8,'2015-12-02 18:45:43',NULL,87,0,'27','37',NULL,NULL),(2,21,'95860585cbd542fe80395dd6a84f1f7d',8,'2015-12-02 18:21:19',NULL,87,2,NULL,NULL,NULL,NULL),(2,39,'ba7e290380974b2aa62d82aad33fc903',1,'2015-12-02 3:11:45',NULL,0,0,NULL,NULL,'48','72'),(2,39,'ba7e290380974b2aa62d82aad33fc903',4,'2015-12-02 3:28:02',NULL,0,0,'23','97',NULL,NULL),(2,39,'ba7e290380974b2aa62d82aad33fc903',9,'2015-12-02 3:48:52',NULL,0,0,'70','9',NULL,NULL),(2,39,'ba7e290380974b2aa62d82aad33fc903',0,'2015-12-02 3:00:46','蛋糕',0,0,NULL,NULL,NULL,NULL),(2,39,'ba7e290380974b2aa62d82aad33fc903',3,'2015-12-02 3:41:00',NULL,0,0,NULL,NULL,'87','96'),(2,39,'ba7e290380974b2aa62d82aad33fc903',8,'2015-12-02 3:34:07',NULL,0,0,NULL,NULL,'62','71'),(2,39,'ba7e290380974b2aa62d82aad33fc903',3,'2015-12-02 3:02:37',NULL,0,0,'30','15',NULL,NULL),(2,39,'ba7e290380974b2aa62d82aad33fc903',5,'2015-12-02 3:12:16',NULL,0,0,NULL,NULL,'95','80'),(2,39,'ba7e290380974b2aa62d82aad33fc903',8,'2015-12-02 3:18:14',NULL,0,0,NULL,NULL,'95','24'),(2,39,'ba7e290380974b2aa62d82aad33fc903',5,'2015-12-02 3:16:07',NULL,53,42,NULL,NULL,NULL,NULL),(2,39,'ba7e290380974b2aa62d82aad33fc903',4,'2015-12-02 3:07:31','新辣道鱼火锅',53,0,NULL,NULL,NULL,NULL),(2,39,'ba7e290380974b2aa62d82aad33fc903',7,'2015-12-02 3:37:36',NULL,53,0,'44','14',NULL,NULL),(2,39,'ba7e290380974b2aa62d82aad33fc903',0,'2015-12-02 3:10:03',NULL,53,0,NULL,NULL,'0','21'),(2,39,'ba7e290380974b2aa62d82aad33fc903',0,'2015-12-02 3:35:57',NULL,53,64,NULL,NULL,NULL,NULL),(2,39,'ba7e290380974b2aa62d82aad33fc903',8,'2015-12-02 3:50:10','火锅',53,0,NULL,NULL,NULL,NULL),(2,39,'ba7e290380974b2aa62d82aad33fc903',5,'2015-12-02 3:10:49',NULL,53,49,NULL,NULL,NULL,NULL),(2,39,'ba7e290380974b2aa62d82aad33fc903',0,'2015-12-02 3:24:20',NULL,53,0,NULL,NULL,'84','59'),(2,39,'ba7e290380974b2aa62d82aad33fc903',9,'2015-12-02 3:14:46','重庆辣子鸡',53,0,NULL,NULL,NULL,NULL),(2,77,'7b2ed9038a8241a2945d85858ec50fb0',1,'2015-12-02 0:45:41','重庆辣子鸡',0,0,NULL,NULL,NULL,NULL),(2,77,'7b2ed9038a8241a2945d85858ec50fb0',4,'2015-12-02 0:36:45',NULL,0,0,'72','40',NULL,NULL),(2,77,'7b2ed9038a8241a2945d85858ec50fb0',6,'2015-12-02 0:00:40',NULL,0,0,'62','46',NULL,NULL),(2,77,'7b2ed9038a8241a2945d85858ec50fb0',5,'2015-12-02 0:02:27',NULL,0,0,NULL,NULL,'82','33'),(2,77,'7b2ed9038a8241a2945d85858ec50fb0',3,'2015-12-02 0:21:26',NULL,24,69,NULL,NULL,NULL,NULL),(2,77,'7b2ed9038a8241a2945d85858ec50fb0',7,'2015-12-02 0:08:58',NULL,24,12,NULL,NULL,NULL,NULL),(2,77,'7b2ed9038a8241a2945d85858ec50fb0',9,'2015-12-02 0:55:58',NULL,24,0,NULL,NULL,'86','32'),(2,77,'7b2ed9038a8241a2945d85858ec50fb0',8,'2015-12-02 0:46:04','火锅',24,0,NULL,NULL,NULL,NULL),(2,77,'7b2ed9038a8241a2945d85858ec50fb0',2,'2015-12-02 0:05:16',NULL,24,37,NULL,NULL,NULL,NULL),(2,77,'7b2ed9038a8241a2945d85858ec50fb0',6,'2015-12-02 0:54:14',NULL,24,92,NULL,NULL,NULL,NULL),(2,77,'7b2ed9038a8241a2945d85858ec50fb0',8,'2015-12-02 0:48:49',NULL,24,32,NULL,NULL,NULL,NULL),(2,51,'a1b961f442434ad09d41ae7a17f9c3b3',8,'2015-12-02 1:10:58',NULL,97,48,NULL,NULL,NULL,NULL),(2,51,'a1b961f442434ad09d41ae7a17f9c3b3',6,'2015-12-02 1:50:54',NULL,97,0,'87','57',NULL,NULL),(2,51,'a1b961f442434ad09d41ae7a17f9c3b3',5,'2015-12-02 1:31:20',NULL,97,0,NULL,NULL,'48','23'),(2,51,'a1b961f442434ad09d41ae7a17f9c3b3',2,'2015-12-02 1:20:27',NULL,97,0,'88','54',NULL,NULL),(2,51,'a1b961f442434ad09d41ae7a17f9c3b3',5,'2015-12-02 1:30:56','日本料理',97,0,NULL,NULL,NULL,NULL),(2,51,'a1b961f442434ad09d41ae7a17f9c3b3',0,'2015-12-02 1:47:48',NULL,97,0,NULL,NULL,'18','90'),(2,51,'a1b961f442434ad09d41ae7a17f9c3b3',3,'2015-12-02 1:41:26',NULL,97,0,'8','69',NULL,NULL),(2,51,'a1b961f442434ad09d41ae7a17f9c3b3',6,'2015-12-02 1:22:52',NULL,97,25,NULL,NULL,NULL,NULL),(2,51,'a1b961f442434ad09d41ae7a17f9c3b3',7,'2015-12-02 1:25:21','火锅',97,0,NULL,NULL,NULL,NULL),(2,51,'a1b961f442434ad09d41ae7a17f9c3b3',6,'2015-12-02 1:49:25',NULL,97,0,NULL,NULL,'35','68'),(2,51,'a1b961f442434ad09d41ae7a17f9c3b3',1,'2015-12-02 1:32:18',NULL,97,68,NULL,NULL,NULL,NULL),(2,51,'a1b961f442434ad09d41ae7a17f9c3b3',9,'2015-12-02 1:54:05','日本料理',97,0,NULL,NULL,NULL,NULL),(2,51,'a1b961f442434ad09d41ae7a17f9c3b3',1,'2015-12-02 1:44:26',NULL,97,28,NULL,NULL,NULL,NULL),(2,51,'a1b961f442434ad09d41ae7a17f9c3b3',2,'2015-12-02 1:16:37',NULL,97,0,NULL,NULL,'38','61'),(2,51,'a1b961f442434ad09d41ae7a17f9c3b3',8,'2015-12-02 1:38:18',NULL,97,0,'99','38',NULL,NULL),(2,51,'a1b961f442434ad09d41ae7a17f9c3b3',5,'2015-12-02 1:24:56',NULL,97,0,NULL,NULL,'14','3'),(2,51,'a1b961f442434ad09d41ae7a17f9c3b3',8,'2015-12-02 1:15:37',NULL,97,34,NULL,NULL,NULL,NULL),(2,88,'a87af38431b247169ffed122f82823fe',3,'2015-12-02 18:54:06',NULL,0,0,'97','93',NULL,NULL),(2,88,'a87af38431b247169ffed122f82823fe',3,'2015-12-02 18:43:41',NULL,50,88,NULL,NULL,NULL,NULL),(2,88,'a87af38431b247169ffed122f82823fe',1,'2015-12-02 18:18:13','重庆小面',50,0,NULL,NULL,NULL,NULL),(2,88,'a87af38431b247169ffed122f82823fe',4,'2015-12-02 18:16:05','重庆辣子鸡',50,0,NULL,NULL,NULL,NULL),(2,88,'a87af38431b247169ffed122f82823fe',8,'2015-12-02 18:02:04',NULL,50,0,'50','5',NULL,NULL),(2,88,'95ddae8f5d5d45a794d5d4048ab94c9d',9,'2015-12-02 19:43:52',NULL,0,0,'10','66',NULL,NULL),(2,88,'95ddae8f5d5d45a794d5d4048ab94c9d',0,'2015-12-02 19:06:13','日本料理',0,0,NULL,NULL,NULL,NULL),(2,88,'95ddae8f5d5d45a794d5d4048ab94c9d',9,'2015-12-02 19:44:16',NULL,17,13,NULL,NULL,NULL,NULL),(2,88,'95ddae8f5d5d45a794d5d4048ab94c9d',0,'2015-12-02 19:16:42',NULL,17,0,NULL,NULL,'24','14'),(2,88,'95ddae8f5d5d45a794d5d4048ab94c9d',5,'2015-12-02 19:26:02',NULL,17,3,NULL,NULL,NULL,NULL),(2,88,'95ddae8f5d5d45a794d5d4048ab94c9d',2,'2015-12-02 19:13:40','重庆小面',17,0,NULL,NULL,NULL,NULL),(2,88,'95ddae8f5d5d45a794d5d4048ab94c9d',9,'2015-12-02 19:40:15','日本料理',17,0,NULL,NULL,NULL,NULL),(2,88,'95ddae8f5d5d45a794d5d4048ab94c9d',2,'2015-12-02 19:54:33','太古商场',17,0,NULL,NULL,NULL,NULL),(2,88,'95ddae8f5d5d45a794d5d4048ab94c9d',1,'2015-12-02 19:49:27',NULL,17,0,'87','99',NULL,NULL),(2,88,'95ddae8f5d5d45a794d5d4048ab94c9d',6,'2015-12-02 19:23:31',NULL,17,0,'96','49',NULL,NULL),(2,16,'1f75ede132f04d48a07dc9cb6142e460',7,'2015-12-02 3:57:33','温泉',0,0,NULL,NULL,NULL,NULL),(2,16,'1f75ede132f04d48a07dc9cb6142e460',8,'2015-12-02 3:51:29',NULL,72,67,NULL,NULL,NULL,NULL),(2,16,'1f75ede132f04d48a07dc9cb6142e460',5,'2015-12-02 3:04:05',NULL,72,0,'64','88',NULL,NULL),(2,16,'1f75ede132f04d48a07dc9cb6142e460',3,'2015-12-02 3:54:03',NULL,72,0,NULL,NULL,'18','72'),(2,16,'1f75ede132f04d48a07dc9cb6142e460',6,'2015-12-02 3:04:20',NULL,72,78,NULL,NULL,NULL,NULL),(2,16,'1f75ede132f04d48a07dc9cb6142e460',8,'2015-12-02 3:04:00',NULL,72,0,'85','20',NULL,NULL),(2,16,'1f75ede132f04d48a07dc9cb6142e460',8,'2015-12-02 3:00:39',NULL,72,69,NULL,NULL,NULL,NULL),(2,16,'1f75ede132f04d48a07dc9cb6142e460',5,'2015-12-02 3:28:18',NULL,72,0,'68','52',NULL,NULL),(2,16,'1f75ede132f04d48a07dc9cb6142e460',8,'2015-12-02 3:29:32',NULL,72,60,NULL,NULL,NULL,NULL),(2,16,'1f75ede132f04d48a07dc9cb6142e460',1,'2015-12-02 3:37:00',NULL,72,0,'17','85',NULL,NULL),(2,16,'1f75ede132f04d48a07dc9cb6142e460',9,'2015-12-02 3:33:10',NULL,72,0,NULL,NULL,'26','29'),(2,16,'1f75ede132f04d48a07dc9cb6142e460',9,'2015-12-02 3:09:51','新辣道鱼火锅',72,0,NULL,NULL,NULL,NULL),(2,16,'1f75ede132f04d48a07dc9cb6142e460',6,'2015-12-02 3:42:02',NULL,72,19,NULL,NULL,NULL,NULL),(2,16,'1f75ede132f04d48a07dc9cb6142e460',0,'2015-12-02 3:56:27',NULL,72,26,NULL,NULL,NULL,NULL),(2,65,'96ee9801356d470f98b45675e279485d',7,'2015-12-02 0:31:19',NULL,0,0,NULL,NULL,'34','81'),(2,65,'96ee9801356d470f98b45675e279485d',2,'2015-12-02 0:13:22',NULL,53,20,NULL,NULL,NULL,NULL),(2,65,'96ee9801356d470f98b45675e279485d',5,'2015-12-02 0:17:21',NULL,53,60,NULL,NULL,NULL,NULL),(2,65,'96ee9801356d470f98b45675e279485d',7,'2015-12-02 0:24:13',NULL,53,93,NULL,NULL,NULL,NULL),(2,65,'96ee9801356d470f98b45675e279485d',7,'2015-12-02 0:57:23',NULL,53,0,'41','44',NULL,NULL),(2,5,'504a335c099c4434bd01f6256f6ab1db',5,'2015-12-02 9:20:42',NULL,0,0,NULL,NULL,'60','60'),(2,5,'504a335c099c4434bd01f6256f6ab1db',4,'2015-12-02 9:44:35',NULL,14,14,NULL,NULL,NULL,NULL),(2,5,'504a335c099c4434bd01f6256f6ab1db',2,'2015-12-02 9:38:05',NULL,14,0,'7','57',NULL,NULL),(2,5,'504a335c099c4434bd01f6256f6ab1db',0,'2015-12-02 9:10:38','新辣道鱼火锅',14,0,NULL,NULL,NULL,NULL),(2,5,'504a335c099c4434bd01f6256f6ab1db',4,'2015-12-02 9:00:08',NULL,14,0,'33','14',NULL,NULL),(2,5,'504a335c099c4434bd01f6256f6ab1db',9,'2015-12-02 9:38:01',NULL,14,0,'82','53',NULL,NULL),(2,5,'504a335c099c4434bd01f6256f6ab1db',7,'2015-12-02 9:09:46',NULL,14,0,'45','87',NULL,NULL),(2,5,'504a335c099c4434bd01f6256f6ab1db',9,'2015-12-02 9:00:14',NULL,14,40,NULL,NULL,NULL,NULL),(2,5,'504a335c099c4434bd01f6256f6ab1db',2,'2015-12-02 9:50:45',NULL,14,82,NULL,NULL,NULL,NULL),(2,5,'504a335c099c4434bd01f6256f6ab1db',3,'2015-12-02 9:52:37',NULL,14,0,NULL,NULL,'79','78'),(2,5,'504a335c099c4434bd01f6256f6ab1db',4,'2015-12-02 9:43:46',NULL,14,86,NULL,NULL,NULL,NULL),(2,5,'504a335c099c4434bd01f6256f6ab1db',4,'2015-12-02 9:15:18','呷哺呷哺',14,0,NULL,NULL,NULL,NULL),(2,5,'504a335c099c4434bd01f6256f6ab1db',6,'2015-12-02 9:06:23',NULL,14,0,'38','28',NULL,NULL),(2,5,'504a335c099c4434bd01f6256f6ab1db',7,'2015-12-02 9:09:56','重庆小面',14,0,NULL,NULL,NULL,NULL),(2,5,'504a335c099c4434bd01f6256f6ab1db',0,'2015-12-02 9:51:14',NULL,14,0,'40','47',NULL,NULL),(2,5,'504a335c099c4434bd01f6256f6ab1db',7,'2015-12-02 9:53:21',NULL,14,0,NULL,NULL,'11','84'),(2,85,'7648db16dfea492e94bc87c5ab7fbbd8',1,'2015-12-02 12:55:34',NULL,17,93,NULL,NULL,NULL,NULL),(2,85,'7648db16dfea492e94bc87c5ab7fbbd8',6,'2015-12-02 12:19:14','蛋糕',17,0,NULL,NULL,NULL,NULL),(2,85,'7648db16dfea492e94bc87c5ab7fbbd8',4,'2015-12-02 12:00:38',NULL,17,0,NULL,NULL,'24','55'),(2,85,'7648db16dfea492e94bc87c5ab7fbbd8',9,'2015-12-02 12:23:15',NULL,17,56,NULL,NULL,NULL,NULL),(2,85,'7648db16dfea492e94bc87c5ab7fbbd8',6,'2015-12-02 12:37:05',NULL,17,8,NULL,NULL,NULL,NULL),(2,85,'7648db16dfea492e94bc87c5ab7fbbd8',6,'2015-12-02 12:43:09',NULL,17,0,NULL,NULL,'75','60'),(2,85,'7648db16dfea492e94bc87c5ab7fbbd8',0,'2015-12-02 12:13:18',NULL,17,0,NULL,NULL,'40','89'),(2,85,'7648db16dfea492e94bc87c5ab7fbbd8',8,'2015-12-02 12:19:09',NULL,17,70,NULL,NULL,NULL,NULL),(2,85,'7648db16dfea492e94bc87c5ab7fbbd8',9,'2015-12-02 12:01:33',NULL,17,0,'97','42',NULL,NULL),(2,85,'7648db16dfea492e94bc87c5ab7fbbd8',2,'2015-12-02 12:06:04',NULL,17,0,NULL,NULL,'1','37'),(2,85,'7648db16dfea492e94bc87c5ab7fbbd8',0,'2015-12-02 12:25:17',NULL,17,0,'55','91',NULL,NULL),(2,85,'7648db16dfea492e94bc87c5ab7fbbd8',5,'2015-12-02 12:17:27',NULL,17,0,NULL,NULL,'62','48'),(2,85,'7648db16dfea492e94bc87c5ab7fbbd8',2,'2015-12-02 12:04:50',NULL,17,0,NULL,NULL,'31','9'),(2,85,'7648db16dfea492e94bc87c5ab7fbbd8',9,'2015-12-02 12:30:12','温泉',17,0,NULL,NULL,NULL,NULL),(2,85,'7648db16dfea492e94bc87c5ab7fbbd8',4,'2015-12-02 12:39:18',NULL,17,0,NULL,NULL,'12','63'),(2,85,'7648db16dfea492e94bc87c5ab7fbbd8',7,'2015-12-02 12:39:33',NULL,17,0,'5','42',NULL,NULL),(2,85,'7648db16dfea492e94bc87c5ab7fbbd8',8,'2015-12-02 12:44:15',NULL,17,0,NULL,NULL,'34','83'),(2,79,'1130bc6f351b446184c3e038691f4a31',3,'2015-12-02 9:06:39',NULL,0,0,NULL,NULL,'52','71'),(2,79,'1130bc6f351b446184c3e038691f4a31',2,'2015-12-02 9:19:23',NULL,0,0,NULL,NULL,'52','41'),(2,79,'1130bc6f351b446184c3e038691f4a31',0,'2015-12-02 9:41:52',NULL,0,0,NULL,NULL,'38','1'),(2,79,'1130bc6f351b446184c3e038691f4a31',7,'2015-12-02 9:48:09',NULL,0,0,NULL,NULL,'93','51'),(2,79,'1130bc6f351b446184c3e038691f4a31',3,'2015-12-02 9:06:55','重庆辣子鸡',0,0,NULL,NULL,NULL,NULL),(2,10,'b7fc8352543147489392c3376c4ab0af',7,'2015-12-02 15:40:51',NULL,0,0,NULL,NULL,'89','44'),(2,10,'b7fc8352543147489392c3376c4ab0af',7,'2015-12-02 15:31:19',NULL,61,36,NULL,NULL,NULL,NULL),(2,10,'b7fc8352543147489392c3376c4ab0af',3,'2015-12-02 15:12:30',NULL,61,0,NULL,NULL,'40','22'),(2,10,'b7fc8352543147489392c3376c4ab0af',8,'2015-12-02 15:53:31',NULL,61,0,'64','43',NULL,NULL),(2,10,'b7fc8352543147489392c3376c4ab0af',6,'2015-12-02 15:03:00',NULL,61,0,NULL,NULL,'55','5'),(2,10,'b7fc8352543147489392c3376c4ab0af',9,'2015-12-02 15:01:02',NULL,61,0,NULL,NULL,'59','48'),(2,10,'b7fc8352543147489392c3376c4ab0af',1,'2015-12-02 15:52:23',NULL,61,74,NULL,NULL,NULL,NULL),(2,83,'10ce5602ee784c4f911fcd615883254f',0,'2015-12-02 6:43:11',NULL,0,0,'46','47',NULL,NULL),(2,83,'10ce5602ee784c4f911fcd615883254f',9,'2015-12-02 6:45:12',NULL,0,0,NULL,NULL,'61','41'),(2,83,'10ce5602ee784c4f911fcd615883254f',8,'2015-12-02 6:11:30','重庆辣子鸡',0,0,NULL,NULL,NULL,NULL),(2,83,'10ce5602ee784c4f911fcd615883254f',5,'2015-12-02 6:27:54','火锅',0,0,NULL,NULL,NULL,NULL),(2,83,'10ce5602ee784c4f911fcd615883254f',5,'2015-12-02 6:25:11',NULL,66,90,NULL,NULL,NULL,NULL),(2,83,'10ce5602ee784c4f911fcd615883254f',0,'2015-12-02 6:00:13',NULL,66,68,NULL,NULL,NULL,NULL),(2,83,'10ce5602ee784c4f911fcd615883254f',0,'2015-12-02 6:46:32',NULL,66,0,NULL,NULL,'25','17'),(2,83,'10ce5602ee784c4f911fcd615883254f',7,'2015-12-02 6:06:31',NULL,66,73,NULL,NULL,NULL,NULL),(2,83,'10ce5602ee784c4f911fcd615883254f',8,'2015-12-02 6:00:54',NULL,66,86,NULL,NULL,NULL,NULL),(2,83,'10ce5602ee784c4f911fcd615883254f',7,'2015-12-02 6:38:20',NULL,66,0,NULL,NULL,'15','46'),(2,83,'10ce5602ee784c4f911fcd615883254f',1,'2015-12-02 6:44:23','太古商场',66,0,NULL,NULL,NULL,NULL),(2,83,'10ce5602ee784c4f911fcd615883254f',3,'2015-12-02 6:34:19',NULL,66,0,NULL,NULL,'92','53'),(2,65,'c695713c90424451bc6aec450b02de7a',0,'2015-12-02 14:15:35',NULL,0,0,NULL,NULL,'97','86'),(2,65,'c695713c90424451bc6aec450b02de7a',1,'2015-12-02 14:29:01',NULL,0,0,'56','1',NULL,NULL),(2,65,'c695713c90424451bc6aec450b02de7a',2,'2015-12-02 14:06:29',NULL,0,0,'79','21',NULL,NULL),(2,65,'c695713c90424451bc6aec450b02de7a',3,'2015-12-02 14:03:15','火锅',0,0,NULL,NULL,NULL,NULL),(2,65,'c695713c90424451bc6aec450b02de7a',4,'2015-12-02 14:18:05',NULL,58,44,NULL,NULL,NULL,NULL),(2,65,'c695713c90424451bc6aec450b02de7a',1,'2015-12-02 14:27:33','重庆小面',58,0,NULL,NULL,NULL,NULL),(2,65,'c695713c90424451bc6aec450b02de7a',5,'2015-12-02 14:19:36',NULL,58,92,NULL,NULL,NULL,NULL),(2,65,'c695713c90424451bc6aec450b02de7a',5,'2015-12-02 14:13:56',NULL,58,21,NULL,NULL,NULL,NULL),(2,88,'61620defda8a41a2a75d192eeb2163c1',4,'2015-12-02 22:00:39',NULL,0,0,NULL,NULL,'83','7'),(2,88,'61620defda8a41a2a75d192eeb2163c1',2,'2015-12-02 22:19:58',NULL,0,0,'18','18',NULL,NULL),(2,88,'61620defda8a41a2a75d192eeb2163c1',5,'2015-12-02 22:48:10','新辣道鱼火锅',0,0,NULL,NULL,NULL,NULL),(2,88,'61620defda8a41a2a75d192eeb2163c1',8,'2015-12-02 22:57:48',NULL,0,0,NULL,NULL,'7','56'),(2,88,'61620defda8a41a2a75d192eeb2163c1',9,'2015-12-02 22:31:23','呷哺呷哺',0,0,NULL,NULL,NULL,NULL),(2,88,'61620defda8a41a2a75d192eeb2163c1',9,'2015-12-02 22:42:22',NULL,0,0,NULL,NULL,'61','36'),(2,88,'61620defda8a41a2a75d192eeb2163c1',2,'2015-12-02 22:21:38',NULL,0,0,NULL,NULL,'81','71'),(2,88,'61620defda8a41a2a75d192eeb2163c1',4,'2015-12-02 22:14:28',NULL,0,0,'63','10',NULL,NULL),(2,88,'61620defda8a41a2a75d192eeb2163c1',2,'2015-12-02 22:11:25',NULL,0,0,NULL,NULL,'20','24'),(2,88,'61620defda8a41a2a75d192eeb2163c1',6,'2015-12-02 22:50:30',NULL,0,0,'57','57',NULL,NULL),(2,78,'d2d0da36c6f2446ea2e437e6608242b9',6,'2015-12-02 4:53:23',NULL,0,0,NULL,NULL,'86','96'),(2,78,'d2d0da36c6f2446ea2e437e6608242b9',6,'2015-12-02 4:20:11',NULL,0,0,NULL,NULL,'36','60'),(2,78,'d2d0da36c6f2446ea2e437e6608242b9',5,'2015-12-02 4:46:10',NULL,55,94,NULL,NULL,NULL,NULL),(2,78,'d2d0da36c6f2446ea2e437e6608242b9',1,'2015-12-02 4:56:15','太古商场',55,0,NULL,NULL,NULL,NULL),(2,78,'d2d0da36c6f2446ea2e437e6608242b9',3,'2015-12-02 4:05:50',NULL,55,95,NULL,NULL,NULL,NULL),(2,78,'d2d0da36c6f2446ea2e437e6608242b9',4,'2015-12-02 4:00:09',NULL,55,0,NULL,NULL,'73','10'),(2,72,'12e6111860e940f7ba99c29d58e7d858',4,'2015-12-02 22:14:32',NULL,12,17,NULL,NULL,NULL,NULL),(2,72,'12e6111860e940f7ba99c29d58e7d858',5,'2015-12-02 22:40:24','重庆辣子鸡',12,0,NULL,NULL,NULL,NULL),(2,72,'12e6111860e940f7ba99c29d58e7d858',7,'2015-12-02 22:36:26',NULL,12,0,NULL,NULL,'33','26'),(2,91,'78b3b9fe3ec44a62a183a8d36cb2f2ae',5,'2015-12-02 15:20:01',NULL,55,85,NULL,NULL,NULL,NULL),(2,91,'78b3b9fe3ec44a62a183a8d36cb2f2ae',3,'2015-12-02 15:13:49',NULL,55,0,'76','46',NULL,NULL),(2,91,'78b3b9fe3ec44a62a183a8d36cb2f2ae',4,'2015-12-02 15:38:37',NULL,55,0,NULL,NULL,'42','47'),(2,91,'78b3b9fe3ec44a62a183a8d36cb2f2ae',0,'2015-12-02 15:02:15','日本料理',55,0,NULL,NULL,NULL,NULL),(2,91,'78b3b9fe3ec44a62a183a8d36cb2f2ae',8,'2015-12-02 15:02:54',NULL,55,0,'94','46',NULL,NULL),(2,91,'78b3b9fe3ec44a62a183a8d36cb2f2ae',0,'2015-12-02 15:03:31','国贸大厦',55,0,NULL,NULL,NULL,NULL),(2,91,'78b3b9fe3ec44a62a183a8d36cb2f2ae',9,'2015-12-02 15:55:45',NULL,55,0,'90','77',NULL,NULL),(2,91,'78b3b9fe3ec44a62a183a8d36cb2f2ae',6,'2015-12-02 15:09:24',NULL,55,0,NULL,NULL,'51','21'),(2,91,'78b3b9fe3ec44a62a183a8d36cb2f2ae',5,'2015-12-02 15:13:29','火锅',55,0,NULL,NULL,NULL,NULL),(2,91,'78b3b9fe3ec44a62a183a8d36cb2f2ae',9,'2015-12-02 15:24:47',NULL,55,0,'45','64',NULL,NULL),(2,91,'78b3b9fe3ec44a62a183a8d36cb2f2ae',1,'2015-12-02 15:25:04',NULL,55,92,NULL,NULL,NULL,NULL),(2,99,'62ff6ee89c64453dbcacbfad695f7f3c',4,'2015-12-02 11:58:55',NULL,0,0,NULL,NULL,'30','70'),(2,99,'62ff6ee89c64453dbcacbfad695f7f3c',6,'2015-12-02 11:31:21','重庆辣子鸡',0,0,NULL,NULL,NULL,NULL),(2,99,'62ff6ee89c64453dbcacbfad695f7f3c',6,'2015-12-02 11:16:49',NULL,0,0,'0','59',NULL,NULL),(2,99,'62ff6ee89c64453dbcacbfad695f7f3c',7,'2015-12-02 11:26:26',NULL,51,60,NULL,NULL,NULL,NULL),(2,99,'62ff6ee89c64453dbcacbfad695f7f3c',2,'2015-12-02 11:50:13',NULL,51,39,NULL,NULL,NULL,NULL),(2,99,'62ff6ee89c64453dbcacbfad695f7f3c',3,'2015-12-02 11:38:49',NULL,51,19,NULL,NULL,NULL,NULL),(2,99,'62ff6ee89c64453dbcacbfad695f7f3c',8,'2015-12-02 11:24:27','呷哺呷哺',51,0,NULL,NULL,NULL,NULL),(2,99,'62ff6ee89c64453dbcacbfad695f7f3c',1,'2015-12-02 11:38:42',NULL,51,46,NULL,NULL,NULL,NULL),(2,99,'62ff6ee89c64453dbcacbfad695f7f3c',9,'2015-12-02 11:08:15','温泉',51,0,NULL,NULL,NULL,NULL),(2,99,'62ff6ee89c64453dbcacbfad695f7f3c',0,'2015-12-02 11:32:04',NULL,51,19,NULL,NULL,NULL,NULL),(2,99,'62ff6ee89c64453dbcacbfad695f7f3c',4,'2015-12-02 11:49:39',NULL,51,80,NULL,NULL,NULL,NULL),(2,99,'62ff6ee89c64453dbcacbfad695f7f3c',1,'2015-12-02 11:10:30',NULL,51,0,NULL,NULL,'63','21'),(2,99,'62ff6ee89c64453dbcacbfad695f7f3c',5,'2015-12-02 11:02:44',NULL,51,0,NULL,NULL,'83','21'),(2,51,'44997dedc5894e81bebcc18d135bdd94',6,'2015-12-02 5:31:25',NULL,0,0,'72','1',NULL,NULL),(2,51,'44997dedc5894e81bebcc18d135bdd94',0,'2015-12-02 5:17:00',NULL,0,0,NULL,NULL,'10','58'),(2,51,'44997dedc5894e81bebcc18d135bdd94',5,'2015-12-02 5:54:16',NULL,0,0,NULL,NULL,'47','96'),(2,51,'44997dedc5894e81bebcc18d135bdd94',6,'2015-12-02 5:07:01','太古商场',0,0,NULL,NULL,NULL,NULL),(2,51,'c4ef48b2cd3d43db8e942e1ed34a31a8',5,'2015-12-02 12:52:20',NULL,0,0,'96','23',NULL,NULL),(2,51,'c4ef48b2cd3d43db8e942e1ed34a31a8',0,'2015-12-02 12:28:23',NULL,0,0,NULL,NULL,'24','60'),(2,51,'c4ef48b2cd3d43db8e942e1ed34a31a8',0,'2015-12-02 12:19:40','温泉',0,0,NULL,NULL,NULL,NULL),(2,51,'c4ef48b2cd3d43db8e942e1ed34a31a8',7,'2015-12-02 12:37:11',NULL,0,0,'20','67',NULL,NULL),(2,51,'c4ef48b2cd3d43db8e942e1ed34a31a8',5,'2015-12-02 12:42:34',NULL,0,0,NULL,NULL,'98','21'),(2,51,'c4ef48b2cd3d43db8e942e1ed34a31a8',0,'2015-12-02 12:31:33',NULL,0,0,'54','54',NULL,NULL),(2,51,'c4ef48b2cd3d43db8e942e1ed34a31a8',5,'2015-12-02 12:18:47',NULL,16,18,NULL,NULL,NULL,NULL),(2,51,'c4ef48b2cd3d43db8e942e1ed34a31a8',0,'2015-12-02 12:41:40',NULL,16,0,'56','95',NULL,NULL),(2,51,'c4ef48b2cd3d43db8e942e1ed34a31a8',7,'2015-12-02 12:19:14','日本料理',16,0,NULL,NULL,NULL,NULL),(2,51,'c4ef48b2cd3d43db8e942e1ed34a31a8',7,'2015-12-02 12:22:12','重庆小面',16,0,NULL,NULL,NULL,NULL),(2,51,'3eff557696734063b0eb0b3304852354',3,'2015-12-02 18:31:33','蛋糕',0,0,NULL,NULL,NULL,NULL),(2,51,'3eff557696734063b0eb0b3304852354',5,'2015-12-02 18:13:48',NULL,23,26,NULL,NULL,NULL,NULL),(2,51,'3eff557696734063b0eb0b3304852354',5,'2015-12-02 18:21:08',NULL,23,45,NULL,NULL,NULL,NULL),(2,51,'3eff557696734063b0eb0b3304852354',7,'2015-12-02 18:25:10',NULL,23,0,'44','83',NULL,NULL),(2,51,'3eff557696734063b0eb0b3304852354',2,'2015-12-02 18:05:06',NULL,23,0,NULL,NULL,'7','8'),(2,51,'3eff557696734063b0eb0b3304852354',5,'2015-12-02 18:49:06',NULL,23,0,NULL,NULL,'74','6'),(2,51,'3eff557696734063b0eb0b3304852354',9,'2015-12-02 18:52:08',NULL,23,0,'84','21',NULL,NULL),(2,33,'e8e74c2c49d544e087874ec934243fa5',9,'2015-12-02 7:14:34',NULL,0,0,'55','30',NULL,NULL),(2,33,'e8e74c2c49d544e087874ec934243fa5',9,'2015-12-02 7:27:07',NULL,0,0,NULL,NULL,'76','26'),(2,33,'e8e74c2c49d544e087874ec934243fa5',0,'2015-12-02 7:19:55',NULL,0,0,NULL,NULL,'87','16'),(2,33,'e8e74c2c49d544e087874ec934243fa5',0,'2015-12-02 7:04:17','重庆辣子鸡',0,0,NULL,NULL,NULL,NULL),(2,33,'e8e74c2c49d544e087874ec934243fa5',9,'2015-12-02 7:58:12',NULL,0,0,'34','40',NULL,NULL),(2,33,'e8e74c2c49d544e087874ec934243fa5',9,'2015-12-02 7:19:22',NULL,87,80,NULL,NULL,NULL,NULL),(2,33,'e8e74c2c49d544e087874ec934243fa5',4,'2015-12-02 7:15:31',NULL,87,8,NULL,NULL,NULL,NULL),(2,33,'e8e74c2c49d544e087874ec934243fa5',7,'2015-12-02 7:35:16',NULL,87,0,'8','45',NULL,NULL),(2,33,'e8e74c2c49d544e087874ec934243fa5',9,'2015-12-02 7:41:06',NULL,87,40,NULL,NULL,NULL,NULL),(2,33,'e8e74c2c49d544e087874ec934243fa5',8,'2015-12-02 7:14:55',NULL,87,0,NULL,NULL,'10','87'),(2,17,'5472824df0f4464f9eea04335d6c7b5d',7,'2015-12-02 13:57:57','火锅',0,0,NULL,NULL,NULL,NULL),(2,17,'5472824df0f4464f9eea04335d6c7b5d',4,'2015-12-02 13:51:53',NULL,0,0,NULL,NULL,'25','43'),(2,17,'5472824df0f4464f9eea04335d6c7b5d',1,'2015-12-02 13:56:03',NULL,32,67,NULL,NULL,NULL,NULL),(2,17,'5472824df0f4464f9eea04335d6c7b5d',9,'2015-12-02 13:21:37',NULL,32,7,NULL,NULL,NULL,NULL),(2,17,'5472824df0f4464f9eea04335d6c7b5d',1,'2015-12-02 13:20:50',NULL,32,0,NULL,NULL,'64','32'),(2,0,'5d78683de4a140f68781f666e7cf2de8',6,'2015-12-02 15:10:29',NULL,0,0,NULL,NULL,'90','50'),(2,0,'5d78683de4a140f68781f666e7cf2de8',0,'2015-12-02 15:20:00',NULL,0,0,NULL,NULL,'71','10'),(2,0,'5d78683de4a140f68781f666e7cf2de8',1,'2015-12-02 15:05:10',NULL,0,0,NULL,NULL,'22','73'),(2,0,'5d78683de4a140f68781f666e7cf2de8',8,'2015-12-02 15:08:31',NULL,51,80,NULL,NULL,NULL,NULL),(2,0,'5d78683de4a140f68781f666e7cf2de8',2,'2015-12-02 15:30:40',NULL,51,0,NULL,NULL,'84','3'),(2,0,'5d78683de4a140f68781f666e7cf2de8',5,'2015-12-02 15:45:31',NULL,51,0,'97','18',NULL,NULL),(2,0,'5d78683de4a140f68781f666e7cf2de8',7,'2015-12-02 15:34:18',NULL,51,0,NULL,NULL,'27','83'),(2,0,'5d78683de4a140f68781f666e7cf2de8',8,'2015-12-02 15:22:53',NULL,51,0,'43','35',NULL,NULL),(2,40,'4d0fa735038b4741aa79c1d755ea9124',9,'2015-12-02 0:29:01','国贸大厦',0,0,NULL,NULL,NULL,NULL),(2,40,'4d0fa735038b4741aa79c1d755ea9124',6,'2015-12-02 0:15:17','新辣道鱼火锅',0,0,NULL,NULL,NULL,NULL),(2,40,'4d0fa735038b4741aa79c1d755ea9124',3,'2015-12-02 0:54:51',NULL,0,0,'78','44',NULL,NULL),(2,40,'4d0fa735038b4741aa79c1d755ea9124',0,'2015-12-02 0:50:48',NULL,0,0,'0','12',NULL,NULL),(2,40,'4d0fa735038b4741aa79c1d755ea9124',2,'2015-12-02 0:02:58',NULL,6,40,NULL,NULL,NULL,NULL),(2,40,'4d0fa735038b4741aa79c1d755ea9124',0,'2015-12-02 0:27:07','新辣道鱼火锅',6,0,NULL,NULL,NULL,NULL),(2,40,'4d0fa735038b4741aa79c1d755ea9124',0,'2015-12-02 0:58:34',NULL,6,22,NULL,NULL,NULL,NULL),(2,40,'4d0fa735038b4741aa79c1d755ea9124',0,'2015-12-02 0:26:00','太古商场',6,0,NULL,NULL,NULL,NULL),(2,40,'4d0fa735038b4741aa79c1d755ea9124',1,'2015-12-02 0:49:35','国贸大厦',6,0,NULL,NULL,NULL,NULL),(2,40,'4d0fa735038b4741aa79c1d755ea9124',5,'2015-12-02 0:49:21',NULL,6,0,'40','98',NULL,NULL),(2,40,'4d0fa735038b4741aa79c1d755ea9124',8,'2015-12-02 0:10:44',NULL,6,0,'25','12',NULL,NULL),(2,40,'4d0fa735038b4741aa79c1d755ea9124',1,'2015-12-02 0:29:26',NULL,6,0,NULL,NULL,'72','17'),(2,77,'a62c087aba6c44b0bf13b0e757cfbf72',8,'2015-12-02 1:21:26','日本料理',0,0,NULL,NULL,NULL,NULL),(2,77,'a62c087aba6c44b0bf13b0e757cfbf72',5,'2015-12-02 1:02:21',NULL,24,79,NULL,NULL,NULL,NULL),(2,77,'a62c087aba6c44b0bf13b0e757cfbf72',5,'2015-12-02 1:11:03',NULL,24,0,'11','58',NULL,NULL),(2,77,'a62c087aba6c44b0bf13b0e757cfbf72',8,'2015-12-02 1:36:36',NULL,24,0,NULL,NULL,'18','59'),(2,77,'a62c087aba6c44b0bf13b0e757cfbf72',6,'2015-12-02 1:32:03',NULL,24,69,NULL,NULL,NULL,NULL),(2,77,'a62c087aba6c44b0bf13b0e757cfbf72',6,'2015-12-02 1:27:56',NULL,24,0,'39','7',NULL,NULL),(2,77,'1a93a260d4334559aeb4e8d79aa31a9f',1,'2015-12-02 11:56:50',NULL,21,47,NULL,NULL,NULL,NULL),(2,77,'1a93a260d4334559aeb4e8d79aa31a9f',4,'2015-12-02 11:31:16','呷哺呷哺',21,0,NULL,NULL,NULL,NULL),(2,77,'1a93a260d4334559aeb4e8d79aa31a9f',8,'2015-12-02 11:11:24',NULL,21,0,NULL,NULL,'54','15'),(2,77,'1a93a260d4334559aeb4e8d79aa31a9f',1,'2015-12-02 11:58:42',NULL,21,0,NULL,NULL,'90','20'),(2,77,'1a93a260d4334559aeb4e8d79aa31a9f',8,'2015-12-02 11:14:29','蛋糕',21,0,NULL,NULL,NULL,NULL),(2,77,'1a93a260d4334559aeb4e8d79aa31a9f',2,'2015-12-02 11:08:17',NULL,21,28,NULL,NULL,NULL,NULL),(2,2,'30b815c847874188bff266a9b850da3f',3,'2015-12-02 20:31:06','国贸大厦',0,0,NULL,NULL,NULL,NULL),(2,2,'30b815c847874188bff266a9b850da3f',8,'2015-12-02 20:20:28',NULL,50,37,NULL,NULL,NULL,NULL),(2,2,'30b815c847874188bff266a9b850da3f',8,'2015-12-02 20:18:54',NULL,50,72,NULL,NULL,NULL,NULL),(2,2,'30b815c847874188bff266a9b850da3f',9,'2015-12-02 20:49:53',NULL,50,60,NULL,NULL,NULL,NULL),(2,2,'30b815c847874188bff266a9b850da3f',6,'2015-12-02 20:48:27',NULL,50,2,NULL,NULL,NULL,NULL),(2,2,'30b815c847874188bff266a9b850da3f',2,'2015-12-02 20:47:27',NULL,50,0,'59','88',NULL,NULL),(2,2,'30b815c847874188bff266a9b850da3f',7,'2015-12-02 20:35:27',NULL,50,0,'9','9',NULL,NULL),(2,2,'30b815c847874188bff266a9b850da3f',5,'2015-12-02 20:57:08',NULL,50,0,NULL,NULL,'76','93'),(2,2,'30b815c847874188bff266a9b850da3f',7,'2015-12-02 20:18:18',NULL,50,0,NULL,NULL,'68','59'),(2,2,'30b815c847874188bff266a9b850da3f',1,'2015-12-02 20:44:12',NULL,50,97,NULL,NULL,NULL,NULL),(2,2,'30b815c847874188bff266a9b850da3f',9,'2015-12-02 20:34:25',NULL,50,0,NULL,NULL,'23','71'),(2,2,'30b815c847874188bff266a9b850da3f',6,'2015-12-02 20:45:11',NULL,50,70,NULL,NULL,NULL,NULL),(2,2,'30b815c847874188bff266a9b850da3f',2,'2015-12-02 20:34:12',NULL,50,0,NULL,NULL,'2','60'),(2,2,'30b815c847874188bff266a9b850da3f',4,'2015-12-02 20:39:17',NULL,50,0,'21','92',NULL,NULL),(2,2,'30b815c847874188bff266a9b850da3f',2,'2015-12-02 20:03:08',NULL,50,0,'78','29',NULL,NULL),(2,2,'30b815c847874188bff266a9b850da3f',9,'2015-12-02 20:08:23',NULL,50,0,'82','19',NULL,NULL),(2,2,'30b815c847874188bff266a9b850da3f',8,'2015-12-02 20:01:52','重庆辣子鸡',50,0,NULL,NULL,NULL,NULL),(2,2,'30b815c847874188bff266a9b850da3f',3,'2015-12-02 20:30:55',NULL,50,0,'33','10',NULL,NULL),(2,17,'<KEY>',3,'2015-12-02 16:52:17',NULL,5,81,NULL,NULL,NULL,NULL),(2,17,'<KEY>',8,'2015-12-02 16:56:45',NULL,5,0,'81','14',NULL,NULL),(2,17,'<KEY>',5,'2015-12-02 16:31:18',NULL,5,0,'81','73',NULL,NULL),(2,17,'<KEY>',0,'2015-12-02 16:37:06','太古商场',5,0,NULL,NULL,NULL,NULL),(2,17,'<KEY>',8,'2015-12-02 16:01:37',NULL,5,0,NULL,NULL,'85','76'),(2,17,'<KEY>',2,'2015-12-02 16:30:26',NULL,5,0,NULL,NULL,'79','54'),(2,17,'<KEY>',7,'2015-12-02 16:03:48','太古商场',5,0,NULL,NULL,NULL,NULL),(2,17,'<KEY>',5,'2015-12-02 16:17:57',NULL,5,55,NULL,NULL,NULL,NULL),(2,17,'<KEY>',8,'2015-12-02 16:44:25',NULL,5,0,'71','53',NULL,NULL),(2,17,'<KEY>',2,'2015-12-02 16:24:37',NULL,5,0,NULL,NULL,'61','67'),(2,17,'<KEY>',3,'2015-12-02 16:07:27','日本料理',5,0,NULL,NULL,NULL,NULL),(2,17,'<KEY>',1,'2015-12-02 16:47:35',NULL,5,0,NULL,NULL,'27','24'),(2,17,'<KEY>',1,'2015-12-02 16:49:29',NULL,5,0,'17','62',NULL,NULL),(2,17,'<KEY>',1,'2015-12-02 16:25:36','火锅',5,0,NULL,NULL,NULL,NULL),(2,17,'<KEY>',6,'2015-12-02 16:35:46',NULL,5,0,NULL,NULL,'97','95'),(2,17,'<KEY>',4,'2015-12-02 16:14:47',NULL,5,0,'78','32',NULL,NULL),(2,17,'<KEY>',6,'2015-12-02 16:35:33','火锅',5,0,NULL,NULL,NULL,NULL),(2,13,'e6237c7a234447b0a355665b7e006973',5,'2015-12-02 6:41:31',NULL,0,0,'32','58',NULL,NULL),(2,13,'e6237c7a234447b0a355665b7e006973',0,'2015-12-02 6:24:00',NULL,0,0,NULL,NULL,'50','86'),(2,13,'e6237c7a234447b0a355665b7e006973',9,'2015-12-02 6:51:14',NULL,55,71,NULL,NULL,NULL,NULL),(2,13,'e6237c7a234447b0a355665b7e006973',4,'2015-12-02 6:33:13',NULL,55,0,NULL,NULL,'87','35'),(2,13,'e6237c7a234447b0a355665b7e006973',1,'2015-12-02 6:07:22',NULL,55,0,NULL,NULL,'66','0'),(2,13,'e6237c7a234447b0a355665b7e006973',4,'2015-12-02 6:52:06',NULL,55,0,NULL,NULL,'25','6'),(2,13,'e6237c7a234447b0a355665b7e006973',5,'2015-12-02 6:09:21','日本料理',55,0,NULL,NULL,NULL,NULL),(2,13,'e6237c7a234447b0a355665b7e006973',7,'2015-12-02 6:27:19',NULL,55,0,'84','95',NULL,NULL),(2,13,'e6237c7a234447b0a355665b7e006973',0,'2015-12-02 6:48:45',NULL,55,0,'61','40',NULL,NULL),(2,13,'e6237c7a234447b0a355665b7e006973',9,'2015-12-02 6:04:03',NULL,55,0,NULL,NULL,'55','74'),(2,13,'e6237c7a234447b0a355665b7e006973',9,'2015-12-02 6:49:04','新辣道鱼火锅',55,0,NULL,NULL,NULL,NULL),(2,13,'e6237c7a234447b0a355665b7e006973',2,'2015-12-02 6:10:14','新辣道鱼火锅',55,0,NULL,NULL,NULL,NULL),(2,13,'e6237c7a234447b0a355665b7e006973',5,'2015-12-02 6:13:47','新辣道鱼火锅',55,0,NULL,NULL,NULL,NULL),(2,13,'e6237c7a234447b0a355665b7e006973',5,'2015-12-02 6:17:55','温泉',55,0,NULL,NULL,NULL,NULL),(2,63,'5f4e6d25ff574597be933aad6c55cf9d',3,'2015-12-02 10:53:42',NULL,99,18,NULL,NULL,NULL,NULL),(2,63,'5f4e6d25ff574597be933aad6c55cf9d',1,'2015-12-02 10:06:31',NULL,99,0,'6','95',NULL,NULL),(2,63,'5f4e6d25ff574597be933aad6c55cf9d',2,'2015-12-02 10:15:40',NULL,99,46,NULL,NULL,NULL,NULL),(2,63,'5f4e6d25ff574597be933aad6c55cf9d',5,'2015-12-02 10:09:48',NULL,99,0,'58','88',NULL,NULL),(2,63,'5f4e6d25ff574597be933aad6c55cf9d',6,'2015-12-02 10:13:50',NULL,99,42,NULL,NULL,NULL,NULL),(2,63,'5f4e6d25ff574597be933aad6c55cf9d',3,'2015-12-02 10:26:30',NULL,99,93,NULL,NULL,NULL,NULL),(2,63,'5f4e6d25ff574597be933aad6c55cf9d',5,'2015-12-02 10:06:14',NULL,99,0,'73','61',NULL,NULL),(2,63,'5f4e6d25ff574597be933aad6c55cf9d',7,'2015-12-02 10:26:52',NULL,99,0,NULL,NULL,'51','27'),(2,63,'5f4e6d25ff574597be933aad6c55cf9d',2,'2015-12-02 10:17:51','国贸大厦',99,0,NULL,NULL,NULL,NULL),(2,63,'5f4e6d25ff574597be933aad6c55cf9d',3,'2015-12-02 10:37:17',NULL,99,0,NULL,NULL,'59','41'),(2,63,'5f4e6d25ff574597be933aad6c55cf9d',0,'2015-12-02 10:42:36','火锅',99,0,NULL,NULL,NULL,NULL),(2,63,'5f4e6d25ff574597be933aad6c55cf9d',9,'2015-12-02 10:18:06',NULL,99,49,NULL,NULL,NULL,NULL),(2,63,'5f4e6d25ff574597be933aad6c55cf9d',1,'2015-12-02 10:14:23',NULL,99,38,NULL,NULL,NULL,NULL),(2,63,'5f4e6d25ff574597be933aad6c55cf9d',9,'2015-12-02 10:26:53',NULL,99,0,NULL,NULL,'20','49'),(2,63,'5f4e6d25ff574597be933aad6c55cf9d',4,'2015-12-02 10:52:32','重庆辣子鸡',99,0,NULL,NULL,NULL,NULL),(2,63,'5f4e6d25ff574597be933aad6c55cf9d',3,'2015-12-02 10:06:52',NULL,99,0,'53','22',NULL,NULL),(2,63,'5f4e6d25ff574597be933aad6c55cf9d',5,'2015-12-02 10:22:43',NULL,99,0,NULL,NULL,'91','54'),(2,63,'5f4e6d25ff574597be933aad6c55cf9d',8,'2015-12-02 10:36:31',NULL,99,53,NULL,NULL,NULL,NULL),(2,63,'5f4e6d25ff574597be933aad6c55cf9d',3,'2015-12-02 10:02:17',NULL,99,0,NULL,NULL,'42','85'),(2,63,'5f4e6d25ff574597be933aad6c55cf9d',7,'2015-12-02 10:45:35',NULL,99,0,'88','86',NULL,NULL),(2,88,'f3a8b662f4484634bcce0f7c57bcc910',2,'2015-12-02 0:25:54','太古商场',0,0,NULL,NULL,NULL,NULL),(2,88,'f3a8b662f4484634bcce0f7c57bcc910',9,'2015-12-02 0:54:16',NULL,0,0,'59','68',NULL,NULL),(2,88,'f3a8b662f4484634bcce0f7c57bcc910',2,'2015-12-02 0:04:28',NULL,0,0,NULL,NULL,'31','70'),(2,88,'f3a8b662f4484634bcce0f7c57bcc910',9,'2015-12-02 0:05:28',NULL,0,0,NULL,NULL,'57','2'),(2,88,'f3a8b662f4484634bcce0f7c57bcc910',5,'2015-12-02 0:51:47',NULL,72,24,NULL,NULL,NULL,NULL),(2,88,'f3a8b662f4484634bcce0f7c57bcc910',8,'2015-12-02 0:42:43',NULL,72,0,'46','79',NULL,NULL),(2,88,'f3a8b662f4484634bcce0f7c57bcc910',0,'2015-12-02 0:08:57',NULL,72,0,NULL,NULL,'65','26'),(2,88,'f3a8b662f4484634bcce0f7c57bcc910',2,'2015-12-02 0:49:44',NULL,72,0,'85','32',NULL,NULL),(2,88,'f3a8b662f4484634bcce0f7c57bcc910',6,'2015-12-02 0:10:01','国贸大厦',72,0,NULL,NULL,NULL,NULL),(2,88,'f3a8b662f4484634bcce0f7c57bcc910',0,'2015-12-02 0:54:06',NULL,72,0,'47','94',NULL,NULL),(2,88,'f3a8b662f4484634bcce0f7c57bcc910',7,'2015-12-02 0:25:57',NULL,72,0,'57','96',NULL,NULL),(2,88,'f3a8b662f4484634bcce0f7c57bcc910',2,'2015-12-02 0:41:30','蛋糕',72,0,NULL,NULL,NULL,NULL),(2,88,'f3a8b662f4484634bcce0f7c57bcc910',2,'2015-12-02 0:14:37',NULL,72,0,'11','52',NULL,NULL),(2,88,'f3a8b662f4484634bcce0f7c57bcc910',4,'2015-12-02 0:30:47',NULL,72,37,NULL,NULL,NULL,NULL),(2,16,'681110e9914640a88abcbf799810d9a1',0,'2015-12-02 5:52:27',NULL,0,0,'94','32',NULL,NULL),(2,16,'681110e9914640a88abcbf799810d9a1',4,'2015-12-02 5:51:23','蛋糕',0,0,NULL,NULL,NULL,NULL),(2,16,'681110e9914640a88abcbf799810d9a1',5,'2015-12-02 5:49:07','蛋糕',0,0,NULL,NULL,NULL,NULL),(2,16,'681110e9914640a88abcbf799810d9a1',6,'2015-12-02 5:48:55',NULL,0,0,'77','2',NULL,NULL),(2,16,'681110e9914640a88abcbf799810d9a1',1,'2015-12-02 5:45:37',NULL,99,43,NULL,NULL,NULL,NULL),(2,16,'681110e9914640a88abcbf799810d9a1',5,'2015-12-02 5:35:37',NULL,99,58,NULL,NULL,NULL,NULL),(2,16,'681110e9914640a88abcbf799810d9a1',1,'2015-12-02 5:06:43',NULL,99,74,NULL,NULL,NULL,NULL),(2,16,'681110e9914640a88abcbf799810d9a1',0,'2015-12-02 5:00:13','火锅',99,0,NULL,NULL,NULL,NULL),(2,16,'681110e9914640a88abcbf799810d9a1',4,'2015-12-02 5:14:14',NULL,99,84,NULL,NULL,NULL,NULL),(2,16,'681110e9914640a88abcbf799810d9a1',1,'2015-12-02 5:20:32',NULL,99,0,NULL,NULL,'41','23'),(2,16,'681110e9914640a88abcbf799810d9a1',1,'2015-12-02 5:41:38','日本料理',99,0,NULL,NULL,NULL,NULL),(2,16,'681110e9914640a88abcbf799810d9a1',2,'2015-12-02 5:23:11',NULL,99,80,NULL,NULL,NULL,NULL),(2,16,'681110e9914640a88abcbf799810d9a1',3,'2015-12-02 5:34:14',NULL,99,0,NULL,NULL,'47','87'),(2,16,'681110e9914640a88abcbf799810d9a1',3,'2015-12-02 5:00:34',NULL,99,0,'47','82',NULL,NULL),(2,38,'0bd31f00f6c4431bbc52dbaa44cc5016',1,'2015-12-02 14:36:07','重庆小面',0,0,NULL,NULL,NULL,NULL),(2,38,'0bd31f00f6c4431bbc52dbaa44cc5016',6,'2015-12-02 14:10:13',NULL,0,0,NULL,NULL,'79','93'),(2,38,'0bd31f00f6c4431bbc52dbaa44cc5016',5,'2015-12-02 14:09:10',NULL,0,0,NULL,NULL,'43','10'),(2,38,'0bd31f00f6c4431bbc52dbaa44cc5016',3,'2015-12-02 14:15:40',NULL,0,0,'18','26',NULL,NULL),(2,19,'6bd33bf9afb346aaa4b06a3948320455',4,'2015-12-02 18:12:50',NULL,2,27,NULL,NULL,NULL,NULL),(2,19,'6bd33bf9afb346aaa4b06a3948320455',3,'2015-12-02 18:47:40','太古商场',2,0,NULL,NULL,NULL,NULL),(2,19,'6bd33bf9afb346aaa4b06a3948320455',0,'2015-12-02 18:06:07','国贸大厦',2,0,NULL,NULL,NULL,NULL),(2,19,'6bd33bf9afb346aaa4b06a3948320455',9,'2015-12-02 18:24:16',NULL,2,1,NULL,NULL,NULL,NULL),(2,19,'6bd33bf9afb346aaa4b06a3948320455',8,'2015-12-02 18:27:37',NULL,2,0,NULL,NULL,'56','51'),(2,19,'6bd33bf9afb346aaa4b06a3948320455',4,'2015-12-02 18:58:56',NULL,2,0,NULL,NULL,'64','69'),(2,19,'6bd33bf9afb346aaa4b06a3948320455',4,'2015-12-02 18:42:04',NULL,2,0,NULL,NULL,NULL,NULL),(2,19,'6bd33bf9afb346aaa4b06a3948320455',5,'2015-12-02 18:08:27',NULL,2,0,'63','15',NULL,NULL),(2,19,'6bd33bf9afb346aaa4b06a3948320455',3,'2015-12-02 18:44:46','重庆辣子鸡',2,0,NULL,NULL,NULL,NULL),(2,19,'6bd33bf9afb346aaa4b06a3948320455',1,'2015-12-02 18:16:20','日本料理',2,0,NULL,NULL,NULL,NULL),(2,19,'6bd33bf9afb346aaa4b06a3948320455',6,'2015-12-02 18:30:23',NULL,2,26,NULL,NULL,NULL,NULL),(2,19,'6bd33bf9afb346aaa4b06a3948320455',6,'2015-12-02 18:46:42',NULL,2,9,NULL,NULL,NULL,NULL),(2,19,'6bd33bf9afb346aaa4b06a3948320455',4,'2015-12-02 18:39:48',NULL,2,0,'94','25',NULL,NULL),(2,19,'6bd33bf9afb346aaa4b06a3948320455',9,'2015-12-02 18:55:40',NULL,2,0,NULL,NULL,'40','48'),(2,19,'6bd33bf9afb346aaa4b06a3948320455',9,'2015-12-02 18:45:54',NULL,2,38,NULL,NULL,NULL,NULL),(2,19,'6bd33bf9afb346aaa4b06a3948320455',6,'2015-12-02 18:51:44',NULL,2,0,'1','61',NULL,NULL),(2,19,'6bd33bf9afb346aaa4b06a3948320455',1,'2015-12-02 18:00:52',NULL,2,64,NULL,NULL,NULL,NULL),(2,19,'6bd33bf9afb346aaa4b06a3948320455',8,'2015-12-02 18:05:22',NULL,2,0,NULL,NULL,'80','96'),(2,19,'6bd33bf9afb346aaa4b06a3948320455',0,'2015-12-02 18:36:34','重庆辣子鸡',2,0,NULL,NULL,NULL,NULL),(2,19,'6bd33bf9afb346aaa4b06a3948320455',8,'2015-12-02 18:54:22',NULL,2,2,NULL,NULL,NULL,NULL),(2,19,'6bd33bf9afb346aaa4b06a3948320455',7,'2015-12-02 18:15:08','重庆辣子鸡',2,0,NULL,NULL,NULL,NULL),(2,19,'6bd33bf9afb346aaa4b06a3948320455',6,'2015-12-02 18:07:31',NULL,2,31,NULL,NULL,NULL,NULL),(2,19,'6bd33bf9afb346aaa4b06a3948320455',3,'2015-12-02 18:40:54',NULL,2,67,NULL,NULL,NULL,NULL),(2,13,'8ae30bb875bb4ccbb25423e3d4dd623a',0,'2015-12-02 1:02:46',NULL,73,93,NULL,NULL,NULL,NULL),(2,13,'8ae30bb875bb4ccbb25423e3d4dd623a',4,'2015-12-02 1:57:28',NULL,73,0,NULL,NULL,'6','36'),(2,13,'8ae30bb875bb4ccbb25423e3d4dd623a',1,'2015-12-02 1:45:38',NULL,73,1,NULL,NULL,NULL,NULL),(2,13,'8ae30bb875bb4ccbb25423e3d4dd623a',0,'2015-12-02 1:01:32',NULL,73,67,NULL,NULL,NULL,NULL),(2,13,'8ae30bb875bb4ccbb25423e3d4dd623a',8,'2015-12-02 1:17:02',NULL,73,0,NULL,NULL,'36','63'),(2,13,'8ae30bb875bb4ccbb25423e3d4dd623a',1,'2015-12-02 1:37:07',NULL,73,4,NULL,NULL,NULL,NULL),(2,13,'8ae30bb875bb4ccbb25423e3d4dd623a',9,'2015-12-02 1:56:24',NULL,73,0,'98','20',NULL,NULL),(2,13,'8ae30bb875bb4ccbb25423e3d4dd623a',8,'2015-12-02 1:45:40',NULL,73,0,NULL,NULL,'97','55'),(2,13,'8ae30bb875bb4ccbb25423e3d4dd623a',3,'2015-12-02 1:27:06',NULL,73,0,NULL,NULL,'3','79'),(2,13,'8ae30bb875bb4ccbb25423e3d4dd623a',8,'2015-12-02 1:13:12','新辣道鱼火锅',73,0,NULL,NULL,NULL,NULL),(2,13,'8ae30bb875bb4ccbb25423e3d4dd623a',7,'2015-12-02 1:49:56',NULL,73,0,NULL,NULL,'15','4'),(2,13,'8ae30bb875bb4ccbb25423e3d4dd623a',6,'2015-12-02 1:38:23',NULL,73,0,'65','92',NULL,NULL),(2,13,'8ae30bb875bb4ccbb25423e3d4dd623a',1,'2015-12-02 1:18:08',NULL,73,26,NULL,NULL,NULL,NULL),(2,13,'8ae30bb875bb4ccbb25423e3d4dd623a',8,'2015-12-02 1:28:44',NULL,73,0,NULL,NULL,'51','54'),(2,13,'f95c6a6218e84f5d978397d6463bc752',0,'2015-12-02 15:56:46',NULL,1,55,NULL,NULL,NULL,NULL),(2,13,'f95c6a6218e84f5d978397d6463bc752',3,'2015-12-02 15:46:27',NULL,1,0,'0','98',NULL,NULL),(2,13,'f95c6a6218e84f5d978397d6463bc752',0,'2015-12-02 15:42:22','重庆辣子鸡',1,0,NULL,NULL,NULL,NULL),(2,13,'f95c6a6218e84f5d978397d6463bc752',4,'2015-12-02 15:12:37',NULL,1,0,NULL,NULL,NULL,NULL),(2,13,'f95c6a6218e84f5d978397d6463bc752',6,'2015-12-02 15:03:19',NULL,1,0,'31','77',NULL,NULL),(2,13,'f95c6a6218e84f5d978397d6463bc752',5,'2015-12-02 15:57:03','蛋糕',1,0,NULL,NULL,NULL,NULL),(2,13,'f95c6a6218e84f5d978397d6463bc752',3,'2015-12-02 15:02:17',NULL,1,72,NULL,NULL,NULL,NULL),(2,13,'f95c6a6218e84f5d978397d6463bc752',7,'2015-12-02 15:35:21',NULL,1,0,NULL,NULL,'56','78'),(2,13,'f95c6a6218e84f5d978397d6463bc752',9,'2015-12-02 15:48:39','重庆小面',1,0,NULL,NULL,NULL,NULL),(2,13,'f95c6a6218e84f5d978397d6463bc752',5,'2015-12-02 15:20:51','重庆小面',1,0,NULL,NULL,NULL,NULL),(2,13,'f95c6a6218e84f5d978397d6463bc752',1,'2015-12-02 15:55:58',NULL,1,84,NULL,NULL,NULL,NULL),(2,13,'f95c6a6218e84f5d978397d6463bc752',9,'2015-12-02 15:07:55',NULL,1,0,'57','67',NULL,NULL),(2,13,'f95c6a6218e84f5d978397d6463bc752',0,'2015-12-02 15:37:06',NULL,1,0,'11','26',NULL,NULL),(2,13,'f95c6a6218e84f5d978397d6463bc752',0,'2015-12-02 15:28:35',NULL,1,0,'46','2',NULL,NULL),(2,13,'f95c6a6218e84f5d978397d6463bc752',7,'2015-12-02 15:33:40',NULL,1,0,NULL,NULL,'49','0'),(2,13,'f95c6a6218e84f5d978397d6463bc752',6,'2015-12-02 15:58:49',NULL,1,0,NULL,NULL,'13','95'),(2,13,'f95c6a6218e84f5d978397d6463bc752',5,'2015-12-02 15:53:31',NULL,1,0,NULL,NULL,'69','89'),(2,13,'f95c6a6218e84f5d978397d6463bc752',1,'2015-12-02 15:48:55',NULL,1,0,'6','10',NULL,NULL),(2,13,'f95c6a6218e84f5d978397d6463bc752',7,'2015-12-02 15:58:46',NULL,1,0,NULL,NULL,'27','67'),(2,13,'f95c6a6218e84f5d978397d6463bc752',2,'2015-12-02 15:24:29','重庆辣子鸡',1,0,NULL,NULL,NULL,NULL),(2,13,'f95c6a6218e84f5d978397d6463bc752',8,'2015-12-02 15:43:17',NULL,1,0,'65','82',NULL,NULL),(2,51,'b949658d70894160aebf8cfe125d7f78',0,'2015-12-02 7:43:32','火锅',0,0,NULL,NULL,NULL,NULL),(2,51,'b949658d70894160aebf8cfe125d7f78',2,'2015-12-02 7:38:50',NULL,0,0,'30','95',NULL,NULL),(2,51,'b949658d70894160aebf8cfe125d7f78',4,'2015-12-02 7:41:27',NULL,0,0,'19','13',NULL,NULL),(2,51,'b949658d70894160aebf8cfe125d7f78',0,'2015-12-02 7:39:09','火锅',0,0,NULL,NULL,NULL,NULL),(2,51,'b949658d70894160aebf8cfe125d7f78',3,'2015-12-02 7:34:22','国贸大厦',0,0,NULL,NULL,NULL,NULL),(2,51,'b949658d70894160aebf8cfe125d7f78',4,'2015-12-02 7:27:29',NULL,0,0,NULL,NULL,'65','33'),(2,51,'b949658d70894160aebf8cfe125d7f78',4,'2015-12-02 7:57:34',NULL,0,0,NULL,NULL,'51','92'),(2,51,'b949658d70894160aebf8cfe125d7f78',0,'2015-12-02 7:28:29',NULL,0,0,NULL,NULL,'48','82'),(2,51,'b949658d70894160aebf8cfe125d7f78',6,'2015-12-02 7:40:36',NULL,95,45,NULL,NULL,NULL,NULL),(2,51,'b949658d70894160aebf8cfe125d7f78',8,'2015-12-02 7:38:07',NULL,95,7,NULL,NULL,NULL,NULL),(2,51,'b949658d70894160aebf8cfe125d7f78',2,'2015-12-02 7:21:35','重庆辣子鸡',95,0,NULL,NULL,NULL,NULL),(2,51,'b949658d70894160aebf8cfe125d7f78',0,'2015-12-02 7:11:38',NULL,95,24,NULL,NULL,NULL,NULL),(2,51,'b949658d70894160aebf8cfe125d7f78',1,'2015-12-02 7:11:40',NULL,95,0,'20','68',NULL,NULL),(2,51,'b949658d70894160aebf8cfe125d7f78',8,'2015-12-02 7:49:03',NULL,95,0,NULL,NULL,'39','96'),(2,51,'b949658d70894160aebf8cfe125d7f78',3,'2015-12-02 7:33:35','新辣道鱼火锅',95,0,NULL,NULL,NULL,NULL),(2,51,'b949658d70894160aebf8cfe125d7f78',4,'2015-12-02 7:44:28','蛋糕',95,0,NULL,NULL,NULL,NULL),(2,51,'b949658d70894160aebf8cfe125d7f78',3,'2015-12-02 7:10:48',NULL,95,0,NULL,NULL,'75','4'),(2,4,'26e9f988f754415cb1c4aab44be79cb9',0,'2015-12-02 8:48:27',NULL,1,83,NULL,NULL,NULL,NULL),(2,4,'26e9f988f754415cb1c4aab44be79cb9',7,'2015-12-02 8:27:03',NULL,1,0,'64','22',NULL,NULL),(2,4,'26e9f988f754415cb1c4aab44be79cb9',2,'2015-12-02 8:28:48','蛋糕',1,0,NULL,NULL,NULL,NULL),(2,4,'26e9f988f754415cb1c4aab44be79cb9',7,'2015-12-02 8:05:40','火锅',1,0,NULL,NULL,NULL,NULL),(2,4,'26e9f988f754415cb1c4aab44be79cb9',7,'2015-12-02 8:07:53',NULL,1,0,'48','8',NULL,NULL),(2,4,'26e9f988f754415cb1c4aab44be79cb9',8,'2015-12-02 8:45:07',NULL,1,0,'50','84',NULL,NULL),(2,4,'26e9f988f754415cb1c4aab44be79cb9',1,'2015-12-02 8:11:04',NULL,1,62,NULL,NULL,NULL,NULL),(2,4,'26e9f988f754415cb1c4aab44be79cb9',4,'2015-12-02 8:23:31',NULL,1,0,'46','74',NULL,NULL),(2,4,'26e9f988f754415cb1c4aab44be79cb9',5,'2015-12-02 8:02:18',NULL,1,72,NULL,NULL,NULL,NULL),(2,4,'26e9f988f754415cb1c4aab44be79cb9',6,'2015-12-02 8:42:57','重庆辣子鸡',1,0,NULL,NULL,NULL,NULL),(2,4,'26e9f988f754415cb1c4aab44be79cb9',6,'2015-12-02 8:13:36',NULL,1,0,NULL,NULL,'7','77'),(2,4,'26e9f988f754415cb1c4aab44be79cb9',7,'2015-12-02 8:35:37',NULL,1,0,NULL,NULL,'63','56'),(2,4,'26e9f988f754415cb1c4aab44be79cb9',0,'2015-12-02 8:47:20',NULL,1,64,NULL,NULL,NULL,NULL),(2,64,'58e4b4b876814619bebf9fa14ccb349d',4,'2015-12-02 14:06:57','温泉',0,0,NULL,NULL,NULL,NULL),(2,64,'58e4b4b876814619bebf9fa14ccb349d',8,'2015-12-02 14:09:21','太古商场',0,0,NULL,NULL,NULL,NULL),(2,64,'58e4b4b876814619bebf9fa14ccb349d',2,'2015-12-02 14:23:40','国贸大厦',0,0,NULL,NULL,NULL,NULL),(2,64,'58e4b4b876814619bebf9fa14ccb349d',8,'2015-12-02 14:25:05',NULL,0,0,'52','21',NULL,NULL),(2,64,'58e4b4b876814619bebf9fa14ccb349d',2,'2015-12-02 14:24:58','蛋糕',0,0,NULL,NULL,NULL,NULL),(2,64,'58e4b4b876814619bebf9fa14ccb349d',0,'2015-12-02 14:53:31','新辣道鱼火锅',0,0,NULL,NULL,NULL,NULL),(2,64,'58e4b4b876814619bebf9fa14ccb349d',3,'2015-12-02 14:19:58','重庆辣子鸡',0,0,NULL,NULL,NULL,NULL),(2,64,'58e4b4b876814619bebf9fa14ccb349d',5,'2015-12-02 14:09:26','国贸大厦',0,0,NULL,NULL,NULL,NULL),(2,64,'58e4b4b876814619bebf9fa14ccb349d',3,'2015-12-02 14:29:33',NULL,0,0,NULL,NULL,'90','51'),(2,64,'58e4b4b876814619bebf9fa14ccb349d',7,'2015-12-02 14:14:22',NULL,0,0,NULL,NULL,'93','65'),(2,39,'bc81e8c928464e7d8be6cc0e972831a1',6,'2015-12-02 1:44:41',NULL,0,0,'56','76',NULL,NULL),(2,39,'bc81e8c928464e7d8be6cc0e972831a1',2,'2015-12-02 1:16:54',NULL,99,33,NULL,NULL,NULL,NULL),(2,39,'bc81e8c928464e7d8be6cc0e972831a1',5,'2015-12-02 1:27:35',NULL,99,0,'83','92',NULL,NULL),(2,39,'bc81e8c928464e7d8be6cc0e972831a1',9,'2015-12-02 1:30:30','温泉',99,0,NULL,NULL,NULL,NULL),(2,39,'bc81e8c928464e7d8be6cc0e972831a1',1,'2015-12-02 1:14:30','日本料理',99,0,NULL,NULL,NULL,NULL),(2,39,'bc81e8c928464e7d8be6cc0e972831a1',6,'2015-12-02 1:04:32',NULL,99,0,'57','92',NULL,NULL),(2,39,'bc81e8c928464e7d8be6cc0e972831a1',4,'2015-12-02 1:05:08',NULL,99,77,NULL,NULL,NULL,NULL),(2,39,'bc81e8c928464e7d8be6cc0e972831a1',6,'2015-12-02 1:09:44','温泉',99,0,NULL,NULL,NULL,NULL),(2,39,'bc81e8c928464e7d8be6cc0e972831a1',0,'2015-12-02 1:10:56',NULL,99,0,'25','60',NULL,NULL),(2,39,'bc81e8c928464e7d8be6cc0e972831a1',5,'2015-12-02 1:35:44',NULL,99,0,'96','98',NULL,NULL),(2,39,'bc81e8c928464e7d8be6cc0e972831a1',2,'2015-12-02 1:15:12','重庆小面',99,0,NULL,NULL,NULL,NULL),(2,39,'bc81e8c928464e7d8be6cc0e972831a1',9,'2015-12-02 1:26:01','火锅',99,0,NULL,NULL,NULL,NULL),(2,79,'013107dd7f3442a9992d811d2938726e',0,'2015-12-02 18:30:31',NULL,0,0,NULL,NULL,'91','47'),(2,79,'013107dd7f3442a9992d811d2938726e',2,'2015-12-02 18:56:46','火锅',0,0,NULL,NULL,NULL,NULL),(2,79,'013107dd7f3442a9992d811d2938726e',4,'2015-12-02 18:38:40','火锅',0,0,NULL,NULL,NULL,NULL),(2,79,'013107dd7f3442a9992d811d2938726e',5,'2015-12-02 18:38:47',NULL,0,0,NULL,NULL,'23','25'),(2,79,'013107dd7f3442a9992d811d2938726e',8,'2015-12-02 18:11:12',NULL,0,0,NULL,NULL,'48','20'),(2,79,'013107dd7f3442a9992d811d2938726e',1,'2015-12-02 18:51:37',NULL,41,95,NULL,NULL,NULL,NULL),(2,79,'013107dd7f3442a9992d811d2938726e',4,'2015-12-02 18:35:36','日本料理',41,0,NULL,NULL,NULL,NULL),(2,79,'013107dd7f3442a9992d811d2938726e',2,'2015-12-02 18:25:00',NULL,41,48,NULL,NULL,NULL,NULL),(2,79,'013107dd7f3442a9992d811d2938726e',9,'2015-12-02 18:33:49',NULL,41,50,NULL,NULL,NULL,NULL),(2,79,'013107dd7f3442a9992d811d2938726e',7,'2015-12-02 18:15:01',NULL,41,0,NULL,NULL,'61','30'),(2,79,'013107dd7f3442a9992d811d2938726e',6,'2015-12-02 18:45:05',NULL,41,0,NULL,NULL,'71','89'),(2,79,'013107dd7f3442a9992d811d2938726e',0,'2015-12-02 18:30:49',NULL,41,0,NULL,NULL,'69','81'),(2,79,'013107dd7f3442a9992d811d2938726e',7,'2015-12-02 18:55:44',NULL,41,93,NULL,NULL,NULL,NULL),(2,79,'013107dd7f3442a9992d811d2938726e',8,'2015-12-02 18:54:25',NULL,41,0,NULL,NULL,'89','58'),(2,79,'013107dd7f3442a9992d811d2938726e',9,'2015-12-02 18:00:30',NULL,41,0,'78','10',NULL,NULL),(2,79,'013107dd7f3442a9992d811d2938726e',6,'2015-12-02 18:40:57',NULL,41,0,'48','24',NULL,NULL),(2,79,'013107dd7f3442a9992d811d2938726e',7,'2015-12-02 18:36:39',NULL,41,83,NULL,NULL,NULL,NULL),(2,79,'013107dd7f3442a9992d811d2938726e',0,'2015-12-02 18:13:24',NULL,41,0,NULL,NULL,'72','84'),(2,79,'013107dd7f3442a9992d811d2938726e',9,'2015-12-02 18:48:11',NULL,41,7,NULL,NULL,NULL,NULL),(2,79,'013107dd7f3442a9992d811d2938726e',2,'2015-12-02 18:55:40',NULL,41,78,NULL,NULL,NULL,NULL),(2,79,'013107dd7f3442a9992d811d2938726e',2,'2015-12-02 18:58:14','日本料理',41,0,NULL,NULL,NULL,NULL),(2,79,'013107dd7f3442a9992d811d2938726e',3,'2015-12-02 18:28:10','新辣道鱼火锅',41,0,NULL,NULL,NULL,NULL),(2,40,'e448360dc20f4980bef48b53aba65932',0,'2015-12-02 17:17:56',NULL,0,0,NULL,NULL,'77','61'),(2,40,'e448360dc20f4980bef48b53aba65932',5,'2015-12-02 17:19:44',NULL,77,67,NULL,NULL,NULL,NULL),(2,40,'e448360dc20f4980bef48b53aba65932',7,'2015-12-02 17:37:17',NULL,77,0,'7','40',NULL,NULL),(2,40,'e448360dc20f4980bef48b53aba65932',6,'2015-12-02 17:15:10',NULL,77,0,'34','32',NULL,NULL),(2,40,'e448360dc20f4980bef48b53aba65932',9,'2015-12-02 17:30:39','温泉',77,0,NULL,NULL,NULL,NULL),(2,40,'e448360dc20f4980bef48b53aba65932',5,'2015-12-02 17:58:11','重庆小面',77,0,NULL,NULL,NULL,NULL),(2,40,'e448360dc20f4980bef48b53aba65932',9,'2015-12-02 17:25:56',NULL,77,6,NULL,NULL,NULL,NULL),(2,40,'e448360dc20f4980bef48b53aba65932',8,'2015-12-02 17:22:22',NULL,77,0,'64','69',NULL,NULL),(2,40,'e448360dc20f4980bef48b53aba65932',8,'2015-12-02 17:04:07',NULL,77,62,NULL,NULL,NULL,NULL),(2,40,'e448360dc20f4980bef48b53aba65932',1,'2015-12-02 17:18:31',NULL,77,0,'19','27',NULL,NULL),(2,40,'e448360dc20f4980bef48b53aba65932',5,'2015-12-02 17:28:12',NULL,77,0,'64','59',NULL,NULL),(2,40,'e448360dc20f4980bef48b53aba65932',1,'2015-12-02 17:20:40',NULL,77,0,NULL,NULL,'37','28'),(2,40,'e448360dc20f4980bef48b53aba65932',2,'2015-12-02 17:15:41',NULL,77,68,NULL,NULL,NULL,NULL),(2,40,'e448360dc20f4980bef48b53aba65932',0,'2015-12-02 17:07:37','重庆辣子鸡',77,0,NULL,NULL,NULL,NULL),(2,40,'e448360dc20f4980bef48b53aba65932',6,'2015-12-02 17:55:20',NULL,77,69,NULL,NULL,NULL,NULL),(2,40,'e448360dc20f4980bef48b53aba65932',3,'2015-12-02 17:39:21',NULL,77,0,NULL,NULL,'27','25'),(2,40,'e448360dc20f4980bef48b53aba65932',5,'2015-12-02 17:24:43',NULL,77,0,NULL,NULL,'62','70'),(2,40,'e448360dc20f4980bef48b53aba65932',4,'2015-12-02 17:45:01','国贸大厦',77,0,NULL,NULL,NULL,NULL),(2,68,'3ca4f0f68cce4c58ac1d3bbdcd179657',6,'2015-12-02 22:10:37',NULL,88,14,NULL,NULL,NULL,NULL),(2,68,'3ca4f0f68cce4c58ac1d3bbdcd179657',9,'2015-12-02 22:22:08','重庆小面',88,0,NULL,NULL,NULL,NULL),(2,0,'db055f2f3819439f9bcd75a95dd9e58c',1,'2015-12-02 9:09:16',NULL,0,0,NULL,NULL,'20','22'),(2,0,'db055f2f3819439f9bcd75a95dd9e58c',1,'2015-12-02 9:18:08',NULL,0,0,NULL,NULL,'15','31'),(2,0,'db055f2f3819439f9bcd75a95dd9e58c',3,'2015-12-02 9:27:50',NULL,0,0,'37','70',NULL,NULL),(2,0,'db055f2f3819439f9bcd75a95dd9e58c',3,'2015-12-02 9:26:00',NULL,0,0,NULL,NULL,'87','40'),(2,91,'872b6fa03edc4ee982243c0dae87fcaa',9,'2015-12-02 22:30:06',NULL,0,0,NULL,NULL,'64','65'),(2,91,'872b6fa03edc4ee982243c0dae87fcaa',5,'2015-12-02 22:35:18',NULL,0,0,'16','42',NULL,NULL),(2,91,'872b6fa03edc4ee982243c0dae87fcaa',7,'2015-12-02 22:37:34',NULL,86,6,NULL,NULL,NULL,NULL),(2,91,'872b6fa03edc4ee982243c0dae87fcaa',2,'2015-12-02 22:09:31',NULL,86,0,'8','63',NULL,NULL),(2,91,'872b6fa03edc4ee982243c0dae87fcaa',9,'2015-12-02 22:55:38',NULL,86,41,NULL,NULL,NULL,NULL),(2,91,'872b6fa03edc4ee982243c0dae87fcaa',8,'2015-12-02 22:56:02','重庆辣子鸡',86,0,NULL,NULL,NULL,NULL),(2,91,'872b6fa03edc4ee982243c0dae87fcaa',4,'2015-12-02 22:39:48',NULL,86,0,NULL,NULL,'54','3'),(2,91,'872b6fa03edc4ee982243c0dae87fcaa',6,'2015-12-02 22:56:09',NULL,86,45,NULL,NULL,NULL,NULL),(2,91,'872b6fa03edc4ee982243c0dae87fcaa',7,'2015-12-02 22:34:33',NULL,86,0,'9','76',NULL,NULL),(2,91,'872b6fa03edc4ee982243c0dae87fcaa',5,'2015-12-02 22:49:17',NULL,86,0,NULL,NULL,'55','43'),(2,91,'872b6fa03edc4ee982243c0dae87fcaa',8,'2015-12-02 22:28:25','温泉',86,0,NULL,NULL,NULL,NULL),(2,91,'872b6fa03edc4ee982243c0dae87fcaa',5,'2015-12-02 22:01:58',NULL,86,0,NULL,NULL,'83','41'),(2,91,'872b6fa03edc4ee982243c0dae87fcaa',5,'2015-12-02 22:38:55','温泉',86,0,NULL,NULL,NULL,NULL),(2,91,'872b6fa03edc4ee982243c0dae87fcaa',3,'2015-12-02 22:35:08',NULL,86,89,NULL,NULL,NULL,NULL),(2,91,'872b6fa03edc4ee982243c0dae87fcaa',7,'2015-12-02 22:35:01',NULL,86,0,NULL,NULL,'17','85'),(2,91,'872b6fa03edc4ee982243c0dae87fcaa',9,'2015-12-02 22:13:04','温泉',86,0,NULL,NULL,NULL,NULL),(2,91,'872b6fa03edc4ee982243c0dae87fcaa',4,'2015-12-02 22:28:23',NULL,86,0,NULL,NULL,'46','44'),(2,91,'872b6fa03edc4ee982243c0dae87fcaa',1,'2015-12-02 22:05:29',NULL,86,0,NULL,NULL,'51','39'),(2,91,'872b6fa03edc4ee982243c0dae87fcaa',9,'2015-12-02 22:43:36',NULL,86,0,'44','83',NULL,NULL),(2,5,'ac3acf6b938d4a8c8e65c7265ceb0eed',6,'2015-12-02 8:02:37','蛋糕',0,0,NULL,NULL,NULL,NULL),(2,5,'ac3acf6b938d4a8c8e65c7265ceb0eed',7,'2015-12-02 8:43:34','新辣道鱼火锅',0,0,NULL,NULL,NULL,NULL),(2,5,'ac3acf6b938d4a8c8e65c7265ceb0eed',5,'2015-12-02 8:30:57',NULL,0,0,'14','37',NULL,NULL),(2,5,'ac3acf6b938d4a8c8e65c7265ceb0eed',6,'2015-12-02 8:54:43','呷哺呷哺',0,0,NULL,NULL,NULL,NULL),(2,5,'ac3acf6b938d4a8c8e65c7265ceb0eed',5,'2015-12-02 8:19:30','太古商场',0,0,NULL,NULL,NULL,NULL),(2,5,'ac3acf6b938d4a8c8e65c7265ceb0eed',2,'2015-12-02 8:12:57','火锅',0,0,NULL,NULL,NULL,NULL),(2,5,'ac3acf6b938d4a8c8e65c7265ceb0eed',3,'2015-12-02 8:35:04','呷哺呷哺',0,0,NULL,NULL,NULL,NULL),(2,5,'ac3acf6b938d4a8c8e65c7265ceb0eed',8,'2015-12-02 8:47:29','新辣道鱼火锅',0,0,NULL,NULL,NULL,NULL),(2,5,'ac3acf6b938d4a8c8e65c7265ceb0eed',9,'2015-12-02 8:46:39','国贸大厦',0,0,NULL,NULL,NULL,NULL),(2,5,'ac3acf6b938d4a8c8e65c7265ceb0eed',2,'2015-12-02 8:13:12',NULL,96,8,NULL,NULL,NULL,NULL),(2,5,'ac3acf6b938d4a8c8e65c7265ceb0eed',9,'2015-12-02 8:31:41',NULL,96,0,'17','53',NULL,NULL),(2,5,'ac3acf6b938d4a8c8e65c7265ceb0eed',1,'2015-12-02 8:22:14','温泉',96,0,NULL,NULL,NULL,NULL),(2,13,'f48d9223b1094b2e977195dca7131365',3,'2015-12-02 8:40:45',NULL,0,11,NULL,NULL,NULL,NULL),(2,13,'f48d9223b1094b2e977195dca7131365',2,'2015-12-02 8:30:19','重庆辣子鸡',0,0,NULL,NULL,NULL,NULL),(2,82,'2323f81cdba6420dbe62b6c45643b262',3,'2015-12-02 8:14:13',NULL,0,0,NULL,NULL,'87','18'),(2,82,'2323f81cdba6420dbe62b6c45643b262',7,'2015-12-02 8:35:29',NULL,23,3,NULL,NULL,NULL,NULL),(2,82,'2323f81cdba6420dbe62b6c45643b262',9,'2015-12-02 8:20:18',NULL,23,51,NULL,NULL,NULL,NULL),(2,82,'2323f81cdba6420dbe62b6c45643b262',0,'2015-12-02 8:09:52',NULL,23,0,'40','63',NULL,NULL),(2,82,'2323f81cdba6420dbe62b6c45643b262',0,'2015-12-02 8:27:05',NULL,23,10,NULL,NULL,NULL,NULL),(2,35,'4fe4ddb6516d4ac981568e3742841ecf',0,'2015-12-02 5:32:55',NULL,0,0,NULL,NULL,'21','51'),(2,35,'4fe4ddb6516d4ac981568e3742841ecf',5,'2015-12-02 5:53:47',NULL,55,31,NULL,NULL,NULL,NULL),(2,35,'4fe4ddb6516d4ac981568e3742841ecf',4,'2015-12-02 5:19:32',NULL,55,34,NULL,NULL,NULL,NULL),(2,35,'4fe4ddb6516d4ac981568e3742841ecf',1,'2015-12-02 5:58:35','温泉',55,0,NULL,NULL,NULL,NULL),(2,35,'4fe4ddb6516d4ac981568e3742841ecf',6,'2015-12-02 5:51:32',NULL,55,0,NULL,NULL,'55','52'),(2,35,'4fe4ddb6516d4ac981568e3742841ecf',6,'2015-12-02 5:11:06','国贸大厦',55,0,NULL,NULL,NULL,NULL),(2,35,'4fe4ddb6516d4ac981568e3742841ecf',3,'2015-12-02 5:52:44',NULL,55,0,NULL,NULL,'23','94'),(2,35,'4fe4ddb6516d4ac981568e3742841ecf',8,'2015-12-02 5:14:54',NULL,55,0,NULL,NULL,'58','28'),(2,35,'4fe4ddb6516d4ac981568e3742841ecf',9,'2015-12-02 5:06:31',NULL,55,0,NULL,NULL,'11','70'),(2,35,'4fe4ddb6516d4ac981568e3742841ecf',1,'2015-12-02 5:41:49',NULL,55,0,'50','35',NULL,NULL),(2,35,'4fe4ddb6516d4ac981568e3742841ecf',0,'2015-12-02 5:06:05',NULL,55,0,NULL,NULL,'47','67'),(2,36,'e5e63cb780214b0f86ba50cc61578531',3,'2015-12-02 10:15:03','火锅',0,0,NULL,NULL,NULL,NULL),(2,36,'e5e63cb780214b0f86ba50cc61578531',3,'2015-12-02 10:21:21',NULL,0,0,'65','46',NULL,NULL),(2,36,'e5e63cb780214b0f86ba50cc61578531',1,'2015-12-02 10:08:47',NULL,0,0,'42','41',NULL,NULL),(2,36,'e5e63cb780214b0f86ba50cc61578531',7,'2015-12-02 10:12:15','火锅',0,0,NULL,NULL,NULL,NULL),(2,36,'e5e63cb780214b0f86ba50cc61578531',7,'2015-12-02 10:32:28',NULL,0,0,NULL,NULL,'56','94'),(2,36,'e5e63cb780214b0f86ba50cc61578531',1,'2015-12-02 10:17:49','新辣道鱼火锅',0,0,NULL,NULL,NULL,NULL),(2,36,'e5e63cb780214b0f86ba50cc61578531',8,'2015-12-02 10:19:07','国贸大厦',0,0,NULL,NULL,NULL,NULL),(2,36,'e5e63cb780214b0f86ba50cc61578531',1,'2015-12-02 10:46:34','重庆小面',0,0,NULL,NULL,NULL,NULL),(2,36,'e5e63cb780214b0f86ba50cc61578531',3,'2015-12-02 10:33:41','呷哺呷哺',0,0,NULL,NULL,NULL,NULL),(2,85,'c691e8dd47c84064826774dda8d1981a',9,'2015-12-02 21:43:03','温泉',0,0,NULL,NULL,NULL,NULL),(2,85,'c691e8dd47c84064826774dda8d1981a',7,'2015-12-02 21:18:12','新辣道鱼火锅',0,0,NULL,NULL,NULL,NULL),(2,85,'c691e8dd47c84064826774dda8d1981a',8,'2015-12-02 21:53:16',NULL,0,0,NULL,NULL,'69','47'),(2,85,'c691e8dd47c84064826774dda8d1981a',1,'2015-12-02 21:17:49',NULL,0,0,NULL,NULL,'30','68'),(2,85,'c691e8dd47c84064826774dda8d1981a',6,'2015-12-02 21:28:22',NULL,68,58,NULL,NULL,NULL,NULL),(2,85,'c691e8dd47c84064826774dda8d1981a',8,'2015-12-02 21:19:20','新辣道鱼火锅',68,0,NULL,NULL,NULL,NULL),(2,85,'c691e8dd47c84064826774dda8d1981a',7,'2015-12-02 21:58:10','火锅',68,0,NULL,NULL,NULL,NULL),(2,85,'c691e8dd47c84064826774dda8d1981a',3,'2015-12-02 21:03:05','蛋糕',68,0,NULL,NULL,NULL,NULL),(2,78,'4603f5b52f744392b8a0cd7e00af8283',1,'2015-12-02 16:48:36',NULL,13,61,NULL,NULL,NULL,NULL),(2,78,'4603f5b52f744392b8a0cd7e00af8283',5,'2015-12-02 16:40:42','呷哺呷哺',13,0,NULL,NULL,NULL,NULL),(2,88,'734ac2e56df1490eb0571aa825993fca',2,'2015-12-02 16:34:23','日本料理',0,0,NULL,NULL,NULL,NULL),(2,88,'734ac2e56df1490eb0571aa825993fca',4,'2015-12-02 16:57:11',NULL,47,22,NULL,NULL,NULL,NULL),(2,88,'734ac2e56df1490eb0571aa825993fca',2,'2015-12-02 16:37:34',NULL,47,0,NULL,NULL,'90','11'),(2,88,'734ac2e56df1490eb0571aa825993fca',2,'2015-12-02 16:31:22',NULL,47,0,'53','76',NULL,NULL),(2,5,'fd337b02d896407da24c57fce6d34841',1,'2015-12-02 11:19:06',NULL,0,0,'22','52',NULL,NULL),(2,5,'fd337b02d896407da24c57fce6d34841',6,'2015-12-02 11:58:50','火锅',0,0,NULL,NULL,NULL,NULL),(2,5,'fd337b02d896407da24c57fce6d34841',2,'2015-12-02 11:46:02',NULL,0,0,NULL,NULL,'18','30'),(2,5,'fd337b02d896407da24c57fce6d34841',7,'2015-12-02 11:43:27',NULL,0,0,'34','88',NULL,NULL),(2,5,'fd337b02d896407da24c57fce6d34841',0,'2015-12-02 11:04:58',NULL,0,0,'5','80',NULL,NULL),(2,5,'fd337b02d896407da24c57fce6d34841',4,'2015-12-02 11:56:38',NULL,0,0,'56','76',NULL,NULL),(2,5,'fd337b02d896407da24c57fce6d34841',4,'2015-12-02 11:37:28',NULL,0,0,'18','11',NULL,NULL),(2,5,'fd337b02d896407da24c57fce6d34841',6,'2015-12-02 11:32:36',NULL,0,0,'35','44',NULL,NULL),(2,5,'fd337b02d896407da24c57fce6d34841',4,'2015-12-02 11:31:53','火锅',0,0,NULL,NULL,NULL,NULL),(2,5,'fd337b02d896407da24c57fce6d34841',5,'2015-12-02 11:57:02',NULL,0,0,'71','80',NULL,NULL),(2,5,'fd337b02d896407da24c57fce6d34841',3,'2015-12-02 11:50:19',NULL,54,49,NULL,NULL,NULL,NULL),(2,77,'f0512e8bf2f54461ba53b727c61410ea',3,'2015-12-02 14:37:18',NULL,0,0,NULL,NULL,'7','58'),(2,77,'f0512e8bf2f54461ba53b727c61410ea',1,'2015-12-02 14:04:43',NULL,0,0,NULL,NULL,'16','88'),(2,77,'f0512e8bf2f54461ba53b727c61410ea',5,'2015-12-02 14:27:11','新辣道鱼火锅',0,0,NULL,NULL,NULL,NULL),(2,77,'f0512e8bf2f54461ba53b727c61410ea',7,'2015-12-02 14:14:25',NULL,0,0,NULL,NULL,'41','1'),(2,77,'f0512e8bf2f54461ba53b727c61410ea',6,'2015-12-02 14:18:07',NULL,5,51,NULL,NULL,NULL,NULL),(2,77,'f0512e8bf2f54461ba53b727c61410ea',0,'2015-12-02 14:45:30',NULL,5,58,NULL,NULL,NULL,NULL),(2,77,'f0512e8bf2f54461ba53b727c61410ea',4,'2015-12-02 14:02:33',NULL,5,0,NULL,NULL,'43','85'),(2,77,'f0512e8bf2f54461ba53b727c61410ea',2,'2015-12-02 14:38:38','国贸大厦',5,0,NULL,NULL,NULL,NULL),(2,77,'f0512e8bf2f54461ba53b727c61410ea',7,'2015-12-02 14:52:56',NULL,5,0,'38','92',NULL,NULL),(2,77,'f0512e8bf2f54461ba53b727c61410ea',6,'2015-12-02 14:12:13',NULL,5,0,NULL,NULL,'57','79'),(2,77,'f0512e8bf2f54461ba53b727c61410ea',3,'2015-12-02 14:14:44',NULL,5,0,'34','46',NULL,NULL),(2,77,'f0512e8bf2f54461ba53b727c61410ea',0,'2015-12-02 14:58:51',NULL,5,0,NULL,NULL,'93','21'),(2,51,'5ac3eaa42c8247aaad70657ece4f26b1',8,'2015-12-02 7:47:10','新辣道鱼火锅',0,0,NULL,NULL,NULL,NULL),(2,51,'5ac3eaa42c8247aaad70657ece4f26b1',5,'2015-12-02 7:32:26','温泉',0,0,NULL,NULL,NULL,NULL),(2,51,'5ac3eaa42c8247aaad70657ece4f26b1',7,'2015-12-02 7:49:41',NULL,81,59,NULL,NULL,NULL,NULL),(2,51,'5ac3eaa42c8247aaad70657ece4f26b1',2,'2015-12-02 7:42:52','日本料理',81,0,NULL,NULL,NULL,NULL),(2,51,'5ac3eaa42c8247aaad70657ece4f26b1',9,'2015-12-02 7:57:16',NULL,81,55,NULL,NULL,NULL,NULL),(2,91,'0b476641e5274ab59675a89592180ce6',8,'2015-12-02 19:24:33',NULL,64,58,NULL,NULL,NULL,NULL),(2,91,'0b476641e5274ab59675a89592180ce6',3,'2015-12-02 19:36:40',NULL,64,0,NULL,NULL,'29','16'),(2,91,'0b476641e5274ab59675a89592180ce6',3,'2015-12-02 19:40:50',NULL,64,0,'96','87',NULL,NULL),(2,91,'0b476641e5274ab59675a89592180ce6',8,'2015-12-02 19:19:26',NULL,64,69,NULL,NULL,NULL,NULL),(2,91,'0b476641e5274ab59675a89592180ce6',3,'2015-12-02 19:41:54',NULL,64,0,NULL,NULL,'43','2'),(2,91,'0b476641e5274ab59675a89592180ce6',0,'2015-12-02 19:39:08',NULL,64,0,'29','61',NULL,NULL),(2,91,'0b476641e5274ab59675a89592180ce6',9,'2015-12-02 19:22:04','重庆辣子鸡',64,0,NULL,NULL,NULL,NULL),(2,91,'0b476641e5274ab59675a89592180ce6',0,'2015-12-02 19:28:18',NULL,64,32,NULL,NULL,NULL,NULL),(2,91,'0b476641e5274ab59675a89592180ce6',0,'2015-12-02 19:43:58',NULL,64,0,NULL,NULL,'88','84'),(2,91,'0b476641e5274ab59675a89592180ce6',7,'2015-12-02 19:44:00',NULL,64,0,NULL,NULL,'66','98'),(2,91,'0b476641e5274ab59675a89592180ce6',1,'2015-12-02 19:13:10',NULL,64,0,NULL,NULL,'4','28'),(2,91,'0b476641e5274ab59675a89592180ce6',4,'2015-12-02 19:02:24','温泉',64,0,NULL,NULL,NULL,NULL),(2,91,'0b476641e5274ab59675a89592180ce6',7,'2015-12-02 19:29:42',NULL,64,0,NULL,NULL,'1','27'),(2,91,'0b476641e5274ab59675a89592180ce6',4,'2015-12-02 19:46:22',NULL,64,0,'28','52',NULL,NULL),(2,91,'0b476641e5274ab59675a89592180ce6',7,'2015-12-02 19:21:51',NULL,64,32,NULL,NULL,NULL,NULL),(2,91,'0b476641e5274ab59675a89592180ce6',8,'2015-12-02 19:08:41',NULL,64,0,NULL,NULL,'72','82'),(2,91,'0b476641e5274ab59675a89592180ce6',2,'2015-12-02 19:34:20',NULL,64,0,'69','83',NULL,NULL),(2,4,'d57e26d90a754801996816ccb0c1b804',3,'2015-12-02 12:27:39',NULL,0,0,NULL,NULL,'72','19'),(2,4,'d57e26d90a754801996816ccb0c1b804',3,'2015-12-02 12:55:01',NULL,14,9,NULL,NULL,NULL,NULL),(2,4,'d57e26d90a754801996816ccb0c1b804',6,'2015-12-02 12:34:11',NULL,14,1,NULL,NULL,NULL,NULL),(2,4,'d57e26d90a754801996816ccb0c1b804',4,'2015-12-02 12:58:40',NULL,14,0,'79','27',NULL,NULL),(2,4,'d57e26d90a754801996816ccb0c1b804',7,'2015-12-02 12:34:27',NULL,14,57,NULL,NULL,NULL,NULL),(2,38,'86455e706d7e4e94bdafe0bfe5845780',1,'2015-12-02 2:27:18',NULL,0,0,NULL,NULL,'85','61'),(2,38,'86455e706d7e4e94bdafe0bfe5845780',5,'2015-12-02 2:00:09',NULL,0,0,NULL,NULL,'64','73'),(2,38,'86455e706d7e4e94bdafe0bfe5845780',2,'2015-12-02 2:05:56','太古商场',0,0,NULL,NULL,NULL,NULL),(2,38,'86455e706d7e4e94bdafe0bfe5845780',2,'2015-12-02 2:38:39','温泉',0,0,NULL,NULL,NULL,NULL),(2,38,'86455e706d7e4e94bdafe0bfe5845780',2,'2015-12-02 2:22:09',NULL,0,0,NULL,NULL,'64','47'),(2,38,'86455e706d7e4e94bdafe0bfe5845780',8,'2015-12-02 2:23:53',NULL,75,69,NULL,NULL,NULL,NULL),(2,38,'86455e706d7e4e94bdafe0bfe5845780',8,'2015-12-02 2:33:11',NULL,75,0,NULL,NULL,'49','2'),(2,38,'86455e706d7e4e94bdafe0bfe5845780',9,'2015-12-02 2:12:26',NULL,75,23,NULL,NULL,NULL,NULL),(2,38,'86455e706d7e4e94bdafe0bfe5845780',8,'2015-12-02 2:52:08',NULL,75,0,'91','63',NULL,NULL),(2,38,'86455e706d7e4e94bdafe0bfe5845780',2,'2015-12-02 2:12:07',NULL,75,0,NULL,NULL,'16','38'),(2,38,'86455e706d7e4e94bdafe0bfe5845780',5,'2015-12-02 2:16:45',NULL,75,0,'49','60',NULL,NULL),(2,38,'86455e706d7e4e94bdafe0bfe5845780',1,'2015-12-02 2:35:21','火锅',75,0,NULL,NULL,NULL,NULL),(2,38,'86455e706d7e4e94bdafe0bfe5845780',0,'2015-12-02 2:02:19','新辣道鱼火锅',75,0,NULL,NULL,NULL,NULL),(2,38,'86455e706d7e4e94bdafe0bfe5845780',9,'2015-12-02 2:02:12','蛋糕',75,0,NULL,NULL,NULL,NULL),(2,38,'86455e706d7e4e94bdafe0bfe5845780',4,'2015-12-02 2:08:05',NULL,75,0,NULL,NULL,'73','35'),(2,82,'3f2561eb9bab4e768b97e242d9fb74f1',7,'2015-12-02 16:58:12',NULL,0,0,NULL,NULL,'91','46'),(2,82,'3f2561eb9bab4e768b97e242d9fb74f1',0,'2015-12-02 16:56:29',NULL,0,0,NULL,NULL,'7','88'),(2,82,'3f2561eb9bab4e768b97e242d9fb74f1',2,'2015-12-02 16:41:47',NULL,46,56,NULL,NULL,NULL,NULL),(2,82,'3f2561eb9bab4e768b97e242d9fb74f1',6,'2015-12-02 16:09:30',NULL,46,46,NULL,NULL,NULL,NULL),(2,82,'3f2561eb9bab4e768b97e242d9fb74f1',9,'2015-12-02 16:02:17','日本料理',46,0,NULL,NULL,NULL,NULL),(2,82,'3f2561eb9bab4e768b97e242d9fb74f1',3,'2015-12-02 16:42:18','火锅',46,0,NULL,NULL,NULL,NULL),(2,82,'3f2561eb9bab4e768b97e242d9fb74f1',3,'2015-12-02 16:04:56',NULL,46,0,'71','87',NULL,NULL),(2,82,'3f2561eb9bab4e768b97e242d9fb74f1',8,'2015-12-02 16:22:22',NULL,46,75,NULL,NULL,NULL,NULL),(2,82,'3f2561eb9bab4e768b97e242d9fb74f1',1,'2015-12-02 16:40:41',NULL,46,0,NULL,NULL,'6','47'),(2,82,'3f2561eb9bab4e768b97e242d9fb74f1',6,'2015-12-02 16:18:49','新辣道鱼火锅',46,0,NULL,NULL,NULL,NULL),(2,82,'3f2561eb9bab4e768b97e242d9fb74f1',6,'2015-12-02 16:00:55',NULL,46,0,'29','29',NULL,NULL),(2,82,'3f2561eb9bab4e768b97e242d9fb74f1',5,'2015-12-02 16:49:44','蛋糕',46,0,NULL,NULL,NULL,NULL),(2,82,'3f2561eb9bab4e768b97e242d9fb74f1',4,'2015-12-02 16:01:22',NULL,46,0,NULL,NULL,'29','56'),(2,82,'3f2561eb9bab4e768b97e242d9fb74f1',5,'2015-12-02 16:56:35',NULL,46,0,NULL,NULL,'89','56'),(2,82,'3f2561eb9bab4e768b97e242d9fb74f1',1,'2015-12-02 16:38:15','新辣道鱼火锅',46,0,NULL,NULL,NULL,NULL),(2,82,'3f2561eb9bab4e768b97e242d9fb74f1',7,'2015-12-02 16:48:27','呷哺呷哺',46,0,NULL,NULL,NULL,NULL),(2,82,'3f2561eb9bab4e768b97e242d9fb74f1',4,'2015-12-02 16:02:15',NULL,46,0,NULL,NULL,'14','13'),(2,82,'3f2561eb9bab4e768b97e242d9fb74f1',4,'2015-12-02 16:21:07',NULL,46,36,NULL,NULL,NULL,NULL),(2,99,'6345aaa9f73d405681668bd02c89db6a',3,'2015-12-02 10:20:27',NULL,20,94,NULL,NULL,NULL,NULL),(2,99,'6345aaa9f73d405681668bd02c89db6a',3,'2015-12-02 10:23:12',NULL,20,0,NULL,NULL,NULL,NULL),(2,99,'6345aaa9f73d405681668bd02c89db6a',1,'2015-12-02 10:06:05','重庆小面',20,0,NULL,NULL,NULL,NULL),(2,99,'6345aaa9f73d405681668bd02c89db6a',0,'2015-12-02 10:38:13',NULL,20,62,NULL,NULL,NULL,NULL),(2,99,'6345aaa9f73d405681668bd02c89db6a',3,'2015-12-02 10:27:18','国贸大厦',20,0,NULL,NULL,NULL,NULL),(2,99,'6345aaa9f73d405681668bd02c89db6a',3,'2015-12-02 10:54:42',NULL,20,0,NULL,NULL,'67','12'),(2,99,'6345aaa9f73d405681668bd02c89db6a',3,'2015-12-02 10:22:49',NULL,20,0,'51','43',NULL,NULL),(2,99,'6345aaa9f73d405681668bd02c89db6a',6,'2015-12-02 10:02:45',NULL,20,0,'54','21',NULL,NULL),(2,99,'6345aaa9f73d405681668bd02c89db6a',8,'2015-12-02 10:26:46',NULL,20,0,'38','19',NULL,NULL),(2,99,'6345aaa9f73d405681668bd02c89db6a',6,'2015-12-02 10:02:57','太古商场',20,0,NULL,NULL,NULL,NULL),(2,99,'6345aaa9f73d405681668bd02c89db6a',4,'2015-12-02 10:18:29','温泉',20,0,NULL,NULL,NULL,NULL),(2,99,'6345aaa9f73d405681668bd02c89db6a',3,'2015-12-02 10:57:22',NULL,20,87,NULL,NULL,NULL,NULL),(2,99,'6345aaa9f73d405681668bd02c89db6a',4,'2015-12-02 10:01:37','温泉',20,0,NULL,NULL,NULL,NULL),(2,99,'6345aaa9f73d405681668bd02c89db6a',6,'2015-12-02 10:57:25','重庆小面',20,0,NULL,NULL,NULL,NULL),(2,99,'6345aaa9f73d405681668bd02c89db6a',0,'2015-12-02 10:50:03',NULL,20,0,NULL,NULL,'74','96'),(2,99,'6345aaa9f73d405681668bd02c89db6a',1,'2015-12-02 10:21:38',NULL,20,32,NULL,NULL,NULL,NULL),(2,99,'6345aaa9f73d405681668bd02c89db6a',2,'2015-12-02 10:29:44',NULL,20,93,NULL,NULL,NULL,NULL),(2,99,'6345aaa9f73d405681668bd02c89db6a',9,'2015-12-02 10:23:16',NULL,20,0,NULL,NULL,'11','42'),(2,99,'6345aaa9f73d405681668bd02c89db6a',0,'2015-12-02 10:05:13',NULL,20,0,NULL,NULL,'17','40'),(2,99,'6345aaa9f73d405681668bd02c89db6a',4,'2015-12-02 10:58:33','太古商场',20,0,NULL,NULL,NULL,NULL),(2,99,'6345aaa9f73d405681668bd02c89db6a',9,'2015-12-02 10:17:45',NULL,20,0,'48','2',NULL,NULL),(2,99,'6345aaa9f73d405681668bd02c89db6a',2,'2015-12-02 10:34:03',NULL,20,0,'23','11',NULL,NULL),(2,12,'5216458497874cc2a9e91fb3c528e433',4,'2015-12-02 8:43:05',NULL,0,0,'84','56',NULL,NULL),(2,12,'5216458497874cc2a9e91fb3c528e433',3,'2015-12-02 8:20:51',NULL,0,0,NULL,NULL,'50','84'),(2,12,'5216458497874cc2a9e91fb3c528e433',1,'2015-12-02 8:10:58',NULL,0,0,NULL,NULL,'29','65'),(2,12,'5216458497874cc2a9e91fb3c528e433',8,'2015-12-02 8:16:03',NULL,0,0,'32','34',NULL,NULL),(2,12,'5216458497874cc2a9e91fb3c528e433',4,'2015-12-02 8:10:16',NULL,83,13,NULL,NULL,NULL,NULL),(2,12,'5216458497874cc2a9e91fb3c528e433',5,'2015-12-02 8:26:47','蛋糕',83,0,NULL,NULL,NULL,NULL),(2,12,'5216458497874cc2a9e91fb3c528e433',5,'2015-12-02 8:43:36',NULL,83,8,NULL,NULL,NULL,NULL),(2,12,'5216458497874cc2a9e91fb3c528e433',9,'2015-12-02 8:32:38',NULL,83,0,'44','3',NULL,NULL),(2,12,'5216458497874cc2a9e91fb3c528e433',5,'2015-12-02 8:17:47',NULL,83,0,'94','74',NULL,NULL),(2,12,'5216458497874cc2a9e91fb3c528e433',4,'2015-12-02 8:10:04','国贸大厦',83,0,NULL,NULL,NULL,NULL),(2,12,'5216458497874cc2a9e91fb3c528e433',0,'2015-12-02 8:08:43','蛋糕',83,0,NULL,NULL,NULL,NULL),(2,12,'5216458497874cc2a9e91fb3c528e433',9,'2015-12-02 8:03:15','日本料理',83,0,NULL,NULL,NULL,NULL),(2,12,'5216458497874cc2a9e91fb3c528e433',4,'2015-12-02 8:40:29',NULL,83,0,NULL,NULL,'31','85'),(2,12,'5216458497874cc2a9e91fb3c528e433',1,'2015-12-02 8:18:17',NULL,83,0,'19','9',NULL,NULL),(2,81,'09dc50e4d90546559e4ca289d5eb9af8',0,'2015-12-02 5:37:46',NULL,0,0,'62','86',NULL,NULL),(2,81,'09dc50e4d90546559e4ca289d5eb9af8',3,'2015-12-02 5:09:10',NULL,0,0,NULL,NULL,'52','18'),(2,81,'09dc50e4d90546559e4ca289d5eb9af8',3,'2015-12-02 5:51:37',NULL,0,0,NULL,NULL,'88','5'),(2,81,'09dc50e4d90546559e4ca289d5eb9af8',7,'2015-12-02 5:44:41',NULL,0,0,NULL,NULL,'50','14'),(2,81,'09dc50e4d90546559e4ca289d5eb9af8',0,'2015-12-02 5:01:25',NULL,60,2,NULL,NULL,NULL,NULL),(2,35,'38ad852e756d4f98b5ad88c382c5f14b',2,'2015-12-02 18:38:41',NULL,0,0,NULL,NULL,'71','54'),(2,35,'38ad852e756d4f98b5ad88c382c5f14b',4,'2015-12-02 18:37:43',NULL,83,89,NULL,NULL,NULL,NULL),(2,35,'38ad852e756d4f98b5ad88c382c5f14b',7,'2015-12-02 18:19:22',NULL,83,21,NULL,NULL,NULL,NULL),(2,35,'38ad852e756d4f98b5ad88c382c5f14b',8,'2015-12-02 18:33:31',NULL,83,0,'82','19',NULL,NULL),(2,35,'38ad852e756d4f98b5ad88c382c5f14b',7,'2015-12-02 18:11:02',NULL,83,83,NULL,NULL,NULL,NULL),(2,35,'38ad852e756d4f98b5ad88c382c5f14b',5,'2015-12-02 18:01:55',NULL,83,0,NULL,NULL,'6','13'),(2,8,'dc0aaa265f6042d9ac0176f9ade6826a',2,'2015-12-02 9:21:47',NULL,0,0,NULL,NULL,'21','21'),(2,8,'dc0aaa265f6042d9ac0176f9ade6826a',0,'2015-12-02 9:48:11',NULL,0,0,'64','40',NULL,NULL),(2,8,'dc0aaa265f6042d9ac0176f9ade6826a',4,'2015-12-02 9:44:15',NULL,1,25,NULL,NULL,NULL,NULL),(2,8,'dc0aaa265f6042d9ac0176f9ade6826a',0,'2015-12-02 9:27:29',NULL,1,0,NULL,NULL,'18','40'),(2,8,'dc0aaa265f6042d9ac0176f9ade6826a',7,'2015-12-02 9:05:16',NULL,1,0,NULL,NULL,'87','60'),(2,8,'dc0aaa265f6042d9ac0176f9ade6826a',0,'2015-12-02 9:57:04','太古商场',1,0,NULL,NULL,NULL,NULL),(2,8,'dc0aaa265f6042d9ac0176f9ade6826a',7,'2015-12-02 9:41:09','太古商场',1,0,NULL,NULL,NULL,NULL),(2,8,'dc0aaa265f6042d9ac0176f9ade6826a',7,'2015-12-02 9:50:22',NULL,1,62,NULL,NULL,NULL,NULL),(2,8,'dc0aaa265f6042d9ac0176f9ade6826a',1,'2015-12-02 9:21:52',NULL,1,74,NULL,NULL,NULL,NULL),(2,8,'dc0aaa265f6042d9ac0176f9ade6826a',9,'2015-12-02 9:46:15','新辣道鱼火锅',1,0,NULL,NULL,NULL,NULL),(2,8,'dc0aaa265f6042d9ac0176f9ade6826a',1,'2015-12-02 9:16:50',NULL,1,0,'99','86',NULL,NULL),(2,8,'dc0aaa265f6042d9ac0176f9ade6826a',9,'2015-12-02 9:15:33',NULL,1,0,'25','63',NULL,NULL),(2,8,'dc0aaa265f6042d9ac0176f9ade6826a',2,'2015-12-02 9:47:36',NULL,1,0,'84','89',NULL,NULL),(2,8,'dc0aaa265f6042d9ac0176f9ade6826a',8,'2015-12-02 9:25:00',NULL,1,0,NULL,NULL,'97','11'),(2,8,'dc0aaa265f6042d9ac0176f9ade6826a',5,'2015-12-02 9:57:48',NULL,1,0,'27','45',NULL,NULL),(2,8,'dc0aaa265f6042d9ac0176f9ade6826a',3,'2015-12-02 9:13:41','蛋糕',1,0,NULL,NULL,NULL,NULL),(2,8,'dc0aaa265f6042d9ac0176f9ade6826a',6,'2015-12-02 9:47:20','日本料理',1,0,NULL,NULL,NULL,NULL),(2,8,'dc0aaa265f6042d9ac0176f9ade6826a',3,'2015-12-02 9:03:26',NULL,1,44,NULL,NULL,NULL,NULL),(2,8,'dc0aaa265f6042d9ac0176f9ade6826a',2,'2015-12-02 9:05:53',NULL,1,0,'18','97',NULL,NULL),(2,8,'dc0aaa265f6042d9ac0176f9ade6826a',1,'2015-12-02 9:26:49',NULL,1,91,NULL,NULL,NULL,NULL),(2,8,'dc0aaa265f6042d9ac0176f9ade6826a',5,'2015-12-02 9:09:53',NULL,1,0,'18','8',NULL,NULL),(2,8,'dc0aaa265f6042d9ac0176f9ade6826a',4,'2015-12-02 9:17:16',NULL,1,0,NULL,NULL,'14','2'),(2,8,'dc0aaa265f6042d9ac0176f9ade6826a',3,'2015-12-02 9:23:34',NULL,1,0,'83','10',NULL,NULL),(2,8,'dc0aaa265f6042d9ac0176f9ade6826a',1,'2015-12-02 9:05:52','火锅',1,0,NULL,NULL,NULL,NULL),(2,8,'dc0aaa265f6042d9ac0176f9ade6826a',6,'2015-12-02 9:01:36',NULL,1,0,NULL,NULL,'8','23'),(2,8,'dc0aaa265f6042d9ac0176f9ade6826a',0,'2015-12-02 9:13:32',NULL,1,11,NULL,NULL,NULL,NULL),(2,51,'8688ec57b7e44c02978e33c0918710df',3,'2015-12-02 17:10:29','新辣道鱼火锅',0,0,NULL,NULL,NULL,NULL),(2,51,'8688ec57b7e44c02978e33c0918710df',5,'2015-12-02 17:22:34',NULL,41,17,NULL,NULL,NULL,NULL),(2,51,'8688ec57b7e44c02978e33c0918710df',1,'2015-12-02 17:48:02',NULL,41,0,NULL,NULL,'2','30'),(2,51,'8688ec57b7e44c02978e33c0918710df',8,'2015-12-02 17:23:43',NULL,41,0,'31','72',NULL,NULL),(2,51,'8688ec57b7e44c02978e33c0918710df',3,'2015-12-02 17:22:05','新辣道鱼火锅',41,0,NULL,NULL,NULL,NULL),(2,51,'8688ec57b7e44c02978e33c0918710df',1,'2015-12-02 17:37:19',NULL,41,0,'3','36',NULL,NULL),(2,51,'8688ec57b7e44c02978e33c0918710df',4,'2015-12-02 17:10:56',NULL,41,25,NULL,NULL,NULL,NULL),(2,65,'1d7acc93b5b34e139f704970379b66f8',5,'2015-12-02 21:47:45',NULL,0,0,NULL,NULL,'11','73'),(2,65,'1d7acc93b5b34e139f704970379b66f8',0,'2015-12-02 21:25:09',NULL,1,3,NULL,NULL,NULL,NULL),(2,65,'1d7acc93b5b34e139f704970379b66f8',4,'2015-12-02 21:22:10',NULL,1,0,NULL,NULL,'4','33'),(2,65,'1d7acc93b5b34e139f704970379b66f8',3,'2015-12-02 21:41:34',NULL,1,0,'74','34',NULL,NULL),(2,65,'1d7acc93b5b34e139f704970379b66f8',0,'2015-12-02 21:39:26',NULL,1,0,NULL,NULL,'12','71'),(2,65,'1d7acc93b5b34e139f704970379b66f8',0,'2015-12-02 21:19:38','新辣道鱼火锅',1,0,NULL,NULL,NULL,NULL),(2,65,'1d7acc93b5b34e139f704970379b66f8',4,'2015-12-02 21:46:46',NULL,1,64,NULL,NULL,NULL,NULL),(2,65,'1d7acc93b5b34e139f704970379b66f8',9,'2015-12-02 21:26:48','新辣道鱼火锅',1,0,NULL,NULL,NULL,NULL),(2,65,'1d7acc93b5b34e139f704970379b66f8',7,'2015-12-02 21:25:16','重庆辣子鸡',1,0,NULL,NULL,NULL,NULL),(2,65,'1d7acc93b5b34e139f704970379b66f8',4,'2015-12-02 21:20:11',NULL,1,0,'50','3',NULL,NULL),(2,65,'1d7acc93b5b34e139f704970379b66f8',2,'2015-12-02 21:44:56',NULL,1,0,'83','71',NULL,NULL),(2,65,'1d7acc93b5b34e139f704970379b66f8',5,'2015-12-02 21:20:45',NULL,1,0,'31','76',NULL,NULL),(2,65,'1d7acc93b5b34e139f704970379b66f8',3,'2015-12-02 21:18:44',NULL,1,0,'11','96',NULL,NULL),(2,65,'1d7acc93b5b34e139f704970379b66f8',2,'2015-12-02 21:38:41','呷哺呷哺',1,0,NULL,NULL,NULL,NULL),(2,65,'1d7acc93b5b34e139f704970379b66f8',6,'2015-12-02 21:06:05',NULL,1,0,'41','82',NULL,NULL),(2,65,'1d7acc93b5b34e139f704970379b66f8',1,'2015-12-02 21:36:38',NULL,1,9,NULL,NULL,NULL,NULL),(2,65,'1d7acc93b5b34e139f704970379b66f8',1,'2015-12-02 21:44:54',NULL,1,0,NULL,NULL,'37','83'),(2,65,'1d7acc93b5b34e139f704970379b66f8',1,'2015-12-02 21:15:58',NULL,1,0,NULL,NULL,NULL,NULL),(2,65,'1d7acc93b5b34e139f704970379b66f8',4,'2015-12-02 21:04:48',NULL,1,65,NULL,NULL,NULL,NULL),(2,65,'1d7acc93b5b34e139f704970379b66f8',0,'2015-12-02 21:00:09',NULL,1,50,NULL,NULL,NULL,NULL),(2,65,'1d7acc93b5b34e139f704970379b66f8',1,'2015-12-02 21:12:21',NULL,1,0,NULL,NULL,'76','40'),(2,65,'1d7acc93b5b34e139f704970379b66f8',7,'2015-12-02 21:20:00',NULL,1,61,NULL,NULL,NULL,NULL),(2,0,'46ba02a8348046389162aba69e3de011',3,'2015-12-02 0:45:46',NULL,83,5,NULL,NULL,NULL,NULL),(2,0,'46ba02a8348046389162aba69e3de011',8,'2015-12-02 0:25:45',NULL,83,65,NULL,NULL,NULL,NULL),(2,0,'46ba02a8348046389162aba69e3de011',9,'2015-12-02 0:51:12',NULL,83,0,'15','68',NULL,NULL),(2,0,'46ba02a8348046389162aba69e3de011',6,'2015-12-02 0:39:17',NULL,83,0,'11','97',NULL,NULL),(2,0,'46ba02a8348046389162aba69e3de011',8,'2015-12-02 0:16:44',NULL,83,0,NULL,NULL,'82','89'),(2,0,'46ba02a8348046389162aba69e3de011',9,'2015-12-02 0:39:18',NULL,83,0,NULL,NULL,'68','22'),(2,0,'46ba02a8348046389162aba69e3de011',1,'2015-12-02 0:01:33',NULL,83,0,NULL,NULL,'73','3'),(2,0,'46ba02a8348046389162aba69e3de011',5,'2015-12-02 0:21:02','温泉',83,0,NULL,NULL,NULL,NULL),(2,0,'46ba02a8348046389162aba69e3de011',8,'2015-12-02 0:43:51',NULL,83,32,NULL,NULL,NULL,NULL),(2,0,'46ba02a8348046389162aba69e3de011',6,'2015-12-02 0:47:34',NULL,83,0,NULL,NULL,'51','91'),(2,0,'46ba02a8348046389162aba69e3de011',7,'2015-12-02 0:40:40',NULL,83,82,NULL,NULL,NULL,NULL),(2,0,'46ba02a8348046389162aba69e3de011',1,'2015-12-02 0:45:55',NULL,83,0,NULL,NULL,'41','2'),(2,0,'46ba02a8348046389162aba69e3de011',3,'2015-12-02 0:29:29',NULL,83,28,NULL,NULL,NULL,NULL),(2,37,'0c875d628a9a4801bee1b2cd077d2332',5,'2015-12-02 12:37:30','日本料理',0,0,NULL,NULL,NULL,NULL),(2,37,'0c875d628a9a4801bee1b2cd077d2332',4,'2015-12-02 12:21:21',NULL,0,0,'10','29',NULL,NULL),(2,37,'0c875d628a9a4801bee1b2cd077d2332',5,'2015-12-02 12:51:33',NULL,1,80,NULL,NULL,NULL,NULL),(2,37,'0c875d628a9a4801bee1b2cd077d2332',5,'2015-12-02 12:30:02',NULL,1,0,NULL,NULL,'4','25'),(2,37,'0c875d628a9a4801bee1b2cd077d2332',4,'2015-12-02 12:28:21',NULL,1,0,'12','70',NULL,NULL),(2,37,'0c875d628a9a4801bee1b2cd077d2332',2,'2015-12-02 12:51:05',NULL,1,0,NULL,NULL,'74','34'),(2,37,'0c875d628a9a4801bee1b2cd077d2332',4,'2015-12-02 12:33:14',NULL,1,42,NULL,NULL,NULL,NULL),(2,37,'0c875d628a9a4801bee1b2cd077d2332',8,'2015-12-02 12:53:44',NULL,1,0,'44','52',NULL,NULL),(2,37,'0c875d628a9a4801bee1b2cd077d2332',3,'2015-12-02 12:22:25',NULL,1,0,'19','76',NULL,NULL),(2,37,'0c875d628a9a4801bee1b2cd077d2332',4,'2015-12-02 12:27:11','重庆辣子鸡',1,0,NULL,NULL,NULL,NULL),(2,37,'0c875d628a9a4801bee1b2cd077d2332',3,'2015-12-02 12:10:15',NULL,1,0,'95','63',NULL,NULL),(2,37,'0c875d628a9a4801bee1b2cd077d2332',9,'2015-12-02 12:06:12','国贸大厦',1,0,NULL,NULL,NULL,NULL),(2,37,'0c875d628a9a4801bee1b2cd077d2332',7,'2015-12-02 12:34:24',NULL,1,0,NULL,NULL,'4','25'),(2,37,'0c875d628a9a4801bee1b2cd077d2332',8,'2015-12-02 12:23:20',NULL,1,0,NULL,NULL,'27','57'),(2,6,'627bff2cc669468989773173d9234440',9,'2015-12-02 0:58:52',NULL,0,0,NULL,NULL,'57','28'),(2,6,'627bff2cc669468989773173d9234440',2,'2015-12-02 0:54:06',NULL,46,47,NULL,NULL,NULL,NULL),(2,6,'627bff2cc669468989773173d9234440',1,'2015-12-02 0:03:04',NULL,46,0,'39','32',NULL,NULL),(2,6,'627bff2cc669468989773173d9234440',7,'2015-12-02 0:26:57',NULL,46,88,NULL,NULL,NULL,NULL),(2,6,'627bff2cc669468989773173d9234440',4,'2015-12-02 0:54:08',NULL,46,0,'32','66',NULL,NULL),(2,6,'627bff2cc669468989773173d9234440',4,'2015-12-02 0:01:07',NULL,46,0,'7','42',NULL,NULL),(2,6,'627bff2cc669468989773173d9234440',5,'2015-12-02 0:00:51',NULL,46,0,NULL,NULL,'87','27'),(2,6,'627bff2cc669468989773173d9234440',1,'2015-12-02 0:11:34',NULL,46,0,NULL,NULL,'71','25'),(2,6,'627bff2cc669468989773173d9234440',3,'2015-12-02 0:40:28',NULL,46,46,NULL,NULL,NULL,NULL),(2,6,'627bff2cc669468989773173d9234440',4,'2015-12-02 0:16:10',NULL,46,10,NULL,NULL,NULL,NULL),(2,6,'627bff2cc669468989773173d9234440',3,'2015-12-02 0:51:19',NULL,46,0,NULL,NULL,'24','43'),(2,6,'627bff2cc669468989773173d9234440',8,'2015-12-02 0:27:15',NULL,46,0,NULL,NULL,'40','3'),(2,6,'627bff2cc669468989773173d9234440',4,'2015-12-02 0:54:44',NULL,46,0,'22','88',NULL,NULL),(2,6,'627bff2cc669468989773173d9234440',4,'2015-12-02 0:28:57','呷哺呷哺',46,0,NULL,NULL,NULL,NULL),(2,6,'627bff2cc669468989773173d9234440',5,'2015-12-02 0:13:36',NULL,46,0,'33','73',NULL,NULL),(2,6,'627bff2cc669468989773173d9234440',8,'2015-12-02 0:52:04','太古商场',46,0,NULL,NULL,NULL,NULL),(2,6,'627bff2cc669468989773173d9234440',0,'2015-12-02 0:54:49',NULL,46,38,NULL,NULL,NULL,NULL),(2,6,'627bff2cc669468989773173d9234440',2,'2015-12-02 0:12:44',NULL,46,0,NULL,NULL,'85','37'),(2,6,'627bff2cc669468989773173d9234440',2,'2015-12-02 0:57:15',NULL,46,0,'94','85',NULL,NULL),(2,6,'627bff2cc669468989773173d9234440',8,'2015-12-02 0:51:18',NULL,46,0,NULL,NULL,'49','64'),(2,39,'0c47cac7c16e425c9f0f498b95d4e78c',8,'2015-12-02 16:22:06',NULL,60,7,NULL,NULL,NULL,NULL),(2,39,'0c47cac7c16e425c9f0f498b95d4e78c',6,'2015-12-02 16:25:58',NULL,60,14,NULL,NULL,NULL,NULL),(2,39,'0c47cac7c16e425c9f0f498b95d4e78c',8,'2015-12-02 16:01:21',NULL,60,0,'12','6',NULL,NULL),(2,39,'0c47cac7c16e425c9f0f498b95d4e78c',5,'2015-12-02 16:16:50',NULL,60,0,NULL,NULL,'30','5'),(2,39,'0c47cac7c16e425c9f0f498b95d4e78c',7,'2015-12-02 16:25:46','呷哺呷哺',60,0,NULL,NULL,NULL,NULL),(2,39,'0c47cac7c16e425c9f0f498b95d4e78c',6,'2015-12-02 16:30:33',NULL,60,0,'79','73',NULL,NULL),(2,39,'0c47cac7c16e425c9f0f498b95d4e78c',6,'2015-12-02 16:02:45','国贸大厦',60,0,NULL,NULL,NULL,NULL),(2,39,'0c47cac7c16e425c9f0f498b95d4e78c',6,'2015-12-02 16:11:02',NULL,60,0,NULL,NULL,'25','29'),(2,39,'0c47cac7c16e425c9f0f498b95d4e78c',6,'2015-12-02 16:04:23',NULL,60,75,NULL,NULL,NULL,NULL),(2,39,'0c47cac7c16e425c9f0f498b95d4e78c',1,'2015-12-02 16:23:53','呷哺呷哺',60,0,NULL,NULL,NULL,NULL),(2,39,'0c47cac7c16e425c9f0f498b95d4e78c',3,'2015-12-02 16:08:36',NULL,60,0,NULL,NULL,'87','85'),(2,39,'0c47cac7c16e425c9f0f498b95d4e78c',9,'2015-12-02 16:39:23','重庆小面',60,0,NULL,NULL,NULL,NULL),(2,39,'0c47cac7c16e425c9f0f498b95d4e78c',2,'2015-12-02 16:26:00',NULL,60,4,NULL,NULL,NULL,NULL),(2,39,'0c47cac7c16e425c9f0f498b95d4e78c',8,'2015-12-02 16:07:54',NULL,60,11,NULL,NULL,NULL,NULL),(2,39,'0c47cac7c16e425c9f0f498b95d4e78c',1,'2015-12-02 16:47:50',NULL,60,0,NULL,NULL,'69','32'),(2,39,'0c47cac7c16e425c9f0f498b95d4e78c',5,'2015-12-02 16:12:28','呷哺呷哺',60,0,NULL,NULL,NULL,NULL),(2,39,'0c47cac7c16e425c9f0f498b95d4e78c',1,'2015-12-02 16:38:36','新辣道鱼火锅',60,0,NULL,NULL,NULL,NULL),(2,11,'466291a1ca274cb69ce3517ffc607d56',4,'2015-12-02 15:56:09',NULL,83,76,NULL,NULL,NULL,NULL),(2,11,'466291a1ca274cb69ce3517ffc607d56',4,'2015-12-02 15:05:18','国贸大厦',83,0,NULL,NULL,NULL,NULL),(2,11,'466291a1ca274cb69ce3517ffc607d56',2,'2015-12-02 15:29:17',NULL,83,0,NULL,NULL,'16','19'),(2,11,'466291a1ca274cb69ce3517ffc607d56',8,'2015-12-02 15:34:47','新辣道鱼火锅',83,0,NULL,NULL,NULL,NULL),(2,11,'466291a1ca274cb69ce3517ffc607d56',9,'2015-12-02 15:50:04','火锅',83,0,NULL,NULL,NULL,NULL),(2,11,'466291a1ca274cb69ce3517ffc607d56',8,'2015-12-02 15:05:05','重庆小面',83,0,NULL,NULL,NULL,NULL),(2,11,'466291a1ca274cb69ce3517ffc607d56',0,'2015-12-02 15:39:03','太古商场',83,0,NULL,NULL,NULL,NULL),(2,11,'466291a1ca274cb69ce3517ffc607d56',4,'2015-12-02 15:20:19','火锅',83,0,NULL,NULL,NULL,NULL),(2,11,'466291a1ca274cb69ce3517ffc607d56',6,'2015-12-02 15:31:34','新辣道鱼火锅',83,0,NULL,NULL,NULL,NULL),(2,11,'466291a1ca274cb69ce3517ffc607d56',0,'2015-12-02 15:35:49',NULL,83,0,'19','76',NULL,NULL),(2,11,'466291a1ca274cb69ce3517ffc607d56',7,'2015-12-02 15:17:40',NULL,83,0,'63','68',NULL,NULL),(2,11,'466291a1ca274cb69ce3517ffc607d56',6,'2015-12-02 15:28:10',NULL,83,0,'83','14',NULL,NULL),(2,71,'0bba5247e5234d50b8159ae7e8f4113f',8,'2015-12-02 1:29:01',NULL,0,0,'30','45',NULL,NULL),(2,71,'0bba5247e5234d50b8159ae7e8f4113f',5,'2015-12-02 1:40:30','温泉',0,0,NULL,NULL,NULL,NULL),(2,71,'0bba5247e5234d50b8159ae7e8f4113f',2,'2015-12-02 1:55:57',NULL,0,0,NULL,NULL,'63','17'),(2,71,'0bba5247e5234d50b8159ae7e8f4113f',7,'2015-12-02 1:19:03',NULL,69,16,NULL,NULL,NULL,NULL),(2,71,'0bba5247e5234d50b8159ae7e8f4113f',6,'2015-12-02 1:38:06',NULL,69,20,NULL,NULL,NULL,NULL),(2,71,'0bba5247e5234d50b8159ae7e8f4113f',9,'2015-12-02 1:01:10','呷哺呷哺',69,0,NULL,NULL,NULL,NULL),(2,71,'0bba5247e5234d50b8159ae7e8f4113f',7,'2015-12-02 1:14:53',NULL,69,0,'17','82',NULL,NULL),(2,71,'0bba5247e5234d50b8159ae7e8f4113f',7,'2015-12-02 1:28:15',NULL,69,42,NULL,NULL,NULL,NULL),(2,71,'0bba5247e5234d50b8159ae7e8f4113f',4,'2015-12-02 1:52:07','新辣道鱼火锅',69,0,NULL,NULL,NULL,NULL),(2,71,'0bba5247e5234d50b8159ae7e8f4113f',7,'2015-12-02 1:50:03','新辣道鱼火锅',69,0,NULL,NULL,NULL,NULL),(2,71,'0bba5247e5234d50b8159ae7e8f4113f',8,'2015-12-02 1:43:32',NULL,69,0,'24','40',NULL,NULL),(2,71,'0bba5247e5234d50b8159ae7e8f4113f',3,'2015-12-02 1:26:10',NULL,69,0,NULL,NULL,'36','34'),(2,57,'72f8c93ec4264cdd959560c1f666f6c4',5,'2015-12-02 17:23:43','火锅',0,0,NULL,NULL,NULL,NULL),(2,57,'72f8c93ec4264cdd959560c1f666f6c4',2,'2015-12-02 17:20:26','呷哺呷哺',0,0,NULL,NULL,NULL,NULL),(2,57,'72f8c93ec4264cdd959560c1f666f6c4',2,'2015-12-02 17:23:35','太古商场',0,0,NULL,NULL,NULL,NULL),(2,57,'72f8c93ec4264cdd959560c1f666f6c4',9,'2015-12-02 17:57:30',NULL,83,20,NULL,NULL,NULL,NULL),(2,57,'72f8c93ec4264cdd959560c1f666f6c4',8,'2015-12-02 17:22:05',NULL,83,51,NULL,NULL,NULL,NULL),(2,57,'72f8c93ec4264cdd959560c1f666f6c4',5,'2015-12-02 17:16:43',NULL,83,0,'52','80',NULL,NULL),(2,57,'72f8c93ec4264cdd959560c1f666f6c4',0,'2015-12-02 17:56:16',NULL,83,0,'79','17',NULL,NULL),(2,57,'72f8c93ec4264cdd959560c1f666f6c4',0,'2015-12-02 17:32:42',NULL,83,0,'99','55',NULL,NULL),(2,57,'72f8c93ec4264cdd959560c1f666f6c4',7,'2015-12-02 17:07:41',NULL,83,46,NULL,NULL,NULL,NULL),(2,57,'72f8c93ec4264cdd959560c1f666f6c4',0,'2015-12-02 17:55:10',NULL,83,0,'95','1',NULL,NULL),(2,57,'72f8c93ec4264cdd959560c1f666f6c4',5,'2015-12-02 17:41:55',NULL,83,0,'50','85',NULL,NULL),(2,57,'72f8c93ec4264cdd959560c1f666f6c4',7,'2015-12-02 17:03:41',NULL,83,0,'56','73',NULL,NULL),(2,12,'82bd26ec104c46b6b35e84a193687734',1,'2015-12-02 1:33:24',NULL,0,0,NULL,NULL,'87','17'),(2,12,'82bd26ec104c46b6b35e84a193687734',1,'2015-12-02 1:24:09',NULL,0,0,NULL,NULL,'69','71'),(2,12,'82bd26ec104c46b6b35e84a193687734',9,'2015-12-02 1:10:36','新辣道鱼火锅',0,0,NULL,NULL,NULL,NULL),(2,12,'82bd26ec104c46b6b35e84a193687734',7,'2015-12-02 1:16:37',NULL,83,78,NULL,NULL,NULL,NULL),(2,12,'82bd26ec104c46b6b35e84a193687734',5,'2015-12-02 1:38:36','国贸大厦',83,0,NULL,NULL,NULL,NULL),(2,12,'82bd26ec104c46b6b35e84a193687734',5,'2015-12-02 1:01:20',NULL,83,0,NULL,NULL,'12','76'),(2,12,'82bd26ec104c46b6b35e84a193687734',7,'2015-12-02 1:47:35',NULL,83,70,NULL,NULL,NULL,NULL),(2,12,'82bd26ec104c46b6b35e84a193687734',1,'2015-12-02 1:27:17',NULL,83,0,NULL,NULL,'61','31'),(2,12,'82bd26ec104c46b6b35e84a193687734',5,'2015-12-02 1:35:55',NULL,83,0,NULL,NULL,'63','29'),(2,12,'82bd26ec104c46b6b35e84a193687734',3,'2015-12-02 1:41:35',NULL,83,0,'10','94',NULL,NULL),(2,92,'1564c266496c464699829b8302884b77',8,'2015-12-02 11:18:36',NULL,64,11,NULL,NULL,NULL,NULL),(2,92,'1564c266496c464699829b8302884b77',7,'2015-12-02 11:32:29','温泉',64,0,NULL,NULL,NULL,NULL),(2,92,'1564c266496c464699829b8302884b77',0,'2015-12-02 11:43:01',NULL,64,7,NULL,NULL,NULL,NULL),(2,92,'1564c266496c464699829b8302884b77',5,'2015-12-02 11:18:31','重庆辣子鸡',64,0,NULL,NULL,NULL,NULL),(2,92,'1564c266496c464699829b8302884b77',2,'2015-12-02 11:36:25',NULL,64,0,NULL,NULL,'55','96'),(2,92,'1564c266496c464699829b8302884b77',9,'2015-12-02 11:12:25',NULL,64,74,NULL,NULL,NULL,NULL),(2,92,'1564c266496c464699829b8302884b77',1,'2015-12-02 11:32:33','蛋糕',64,0,NULL,NULL,NULL,NULL),(2,92,'1564c266496c464699829b8302884b77',9,'2015-12-02 11:21:36',NULL,64,84,NULL,NULL,NULL,NULL),(2,92,'1564c266496c464699829b8302884b77',0,'2015-12-02 11:44:31','重庆小面',64,0,NULL,NULL,NULL,NULL),(2,92,'1564c266496c464699829b8302884b77',5,'2015-12-02 11:00:26','太古商场',64,0,NULL,NULL,NULL,NULL),(2,92,'1564c266496c464699829b8302884b77',9,'2015-12-02 11:30:52',NULL,64,0,'6','54',NULL,NULL),(2,92,'1564c266496c464699829b8302884b77',3,'2015-12-02 11:54:05',NULL,64,0,NULL,NULL,'3','53'),(2,92,'1564c266496c464699829b8302884b77',5,'2015-12-02 11:18:41',NULL,64,0,NULL,NULL,'42','13'),(2,92,'1564c266496c464699829b8302884b77',6,'2015-12-02 11:32:57',NULL,64,18,NULL,NULL,NULL,NULL),(2,92,'1564c266496c464699829b8302884b77',0,'2015-12-02 11:30:06','重庆小面',64,0,NULL,NULL,NULL,NULL),(2,22,'f4643312e0ab448eb10813774e5c70f4',4,'2015-12-02 16:33:19',NULL,48,95,NULL,NULL,NULL,NULL),(2,22,'f4643312e0ab448eb10813774e5c70f4',3,'2015-12-02 16:37:06',NULL,48,24,NULL,NULL,NULL,NULL),(2,22,'f4643312e0ab448eb10813774e5c70f4',8,'2015-12-02 16:29:28','火锅',48,0,NULL,NULL,NULL,NULL),(2,22,'f4643312e0ab448eb10813774e5c70f4',0,'2015-12-02 16:31:53','蛋糕',48,0,NULL,NULL,NULL,NULL),(2,35,'2e33ae53b60c42c8a63d19c4a7b116a9',1,'2015-12-02 22:13:05',NULL,69,56,NULL,NULL,NULL,NULL),(2,35,'2e33ae53b60c42c8a63d19c4a7b116a9',5,'2015-12-02 22:44:29','日本料理',69,0,NULL,NULL,NULL,NULL),(2,13,'272989c4d95c47138fd43c12431952ad',4,'2015-12-02 19:22:42',NULL,41,13,NULL,NULL,NULL,NULL),(2,13,'272989c4d95c47138fd43c12431952ad',2,'2015-12-02 19:09:40',NULL,41,10,NULL,NULL,NULL,NULL),(2,13,'272989c4d95c47138fd43c12431952ad',6,'2015-12-02 19:29:29',NULL,41,0,NULL,NULL,'45','53'),(2,13,'272989c4d95c47138fd43c12431952ad',2,'2015-12-02 19:19:00',NULL,41,0,NULL,NULL,'3','82'),(2,13,'272989c4d95c47138fd43c12431952ad',5,'2015-12-02 19:49:49',NULL,41,0,'36','26',NULL,NULL),(2,13,'272989c4d95c47138fd43c12431952ad',6,'2015-12-02 19:33:19',NULL,41,26,NULL,NULL,NULL,NULL),(2,68,'67a1fcb46d384ab2a0e9c353a38cfd00',2,'2015-12-02 21:47:35',NULL,69,92,NULL,NULL,NULL,NULL),(2,68,'67a1fcb46d384ab2a0e9c353a38cfd00',7,'2015-12-02 21:09:48',NULL,69,0,'87','93',NULL,NULL),(2,68,'67a1fcb46d384ab2a0e9c353a38cfd00',3,'2015-12-02 21:26:58',NULL,69,47,NULL,NULL,NULL,NULL),(2,68,'67a1fcb46d384ab2a0e9c353a38cfd00',9,'2015-12-02 21:47:46',NULL,69,34,NULL,NULL,NULL,NULL),(2,68,'67a1fcb46d384ab2a0e9c353a38cfd00',1,'2015-12-02 21:18:04',NULL,69,55,NULL,NULL,NULL,NULL),(2,68,'67a1fcb46d384ab2a0e9c353a38cfd00',7,'2015-12-02 21:39:15','呷哺呷哺',69,0,NULL,NULL,NULL,NULL),(2,68,'67a1fcb46d384ab2a0e9c353a38cfd00',4,'2015-12-02 21:37:33',NULL,69,0,'11','23',NULL,NULL),(2,68,'67a1fcb46d384ab2a0e9c353a38cfd00',9,'2015-12-02 21:52:14',NULL,69,0,NULL,NULL,'44','18'),(2,68,'67a1fcb46d384ab2a0e9c353a38cfd00',7,'2015-12-02 21:45:17','新辣道鱼火锅',69,0,NULL,NULL,NULL,NULL),(2,68,'67a1fcb46d384ab2a0e9c353a38cfd00',4,'2015-12-02 21:57:23',NULL,69,59,NULL,NULL,NULL,NULL),(2,68,'67a1fcb46d384ab2a0e9c353a38cfd00',8,'2015-12-02 21:13:50',NULL,69,90,NULL,NULL,NULL,NULL),(2,6,'0b773e1b507e4cd690a27b59b42ca0fd',6,'2015-12-02 17:41:12',NULL,0,0,NULL,NULL,'26','60'),(2,6,'0b773e1b507e4cd690a27b59b42ca0fd',0,'2015-12-02 17:50:19',NULL,0,0,NULL,NULL,'98','91'),(2,6,'0b773e1b507e4cd690a27b59b42ca0fd',4,'2015-12-02 17:32:36',NULL,0,0,NULL,NULL,'48','93'),(2,6,'0b773e1b507e4cd690a27b59b42ca0fd',9,'2015-12-02 17:31:35',NULL,0,0,'46','99',NULL,NULL),(2,6,'0b773e1b507e4cd690a27b59b42ca0fd',6,'2015-12-02 17:19:46',NULL,1,87,NULL,NULL,NULL,NULL),(2,6,'0b773e1b507e4cd690a27b59b42ca0fd',3,'2015-12-02 17:48:30',NULL,1,6,NULL,NULL,NULL,NULL),(2,6,'0b773e1b507e4cd690a27b59b42ca0fd',0,'2015-12-02 17:55:35','太古商场',1,0,NULL,NULL,NULL,NULL),(2,6,'0b773e1b507e4cd690a27b59b42ca0fd',3,'2015-12-02 17:15:17',NULL,1,0,'7','80',NULL,NULL),(2,6,'0b773e1b507e4cd690a27b59b42ca0fd',8,'2015-12-02 17:24:16',NULL,1,0,NULL,NULL,'91','55'),(2,6,'0b773e1b507e4cd690a27b59b42ca0fd',1,'2015-12-02 17:02:43',NULL,1,0,'68','17',NULL,NULL),(2,6,'0b773e1b507e4cd690a27b59b42ca0fd',6,'2015-12-02 17:40:39','太古商场',1,0,NULL,NULL,NULL,NULL),(2,6,'43f048bf0e094fa3959954dd8c0d9db1',0,'2015-12-02 17:21:56',NULL,0,0,'46','39',NULL,NULL),(2,6,'43f048bf0e094fa3959954dd8c0d9db1',3,'2015-12-02 17:01:04',NULL,48,7,NULL,NULL,NULL,NULL),(2,6,'43f048bf0e094fa3959954dd8c0d9db1',0,'2015-12-02 17:52:28',NULL,48,0,NULL,NULL,'13','53'),(2,6,'43f048bf0e094fa3959954dd8c0d9db1',0,'2015-12-02 17:05:33',NULL,48,0,'82','8',NULL,NULL),(2,6,'43f048bf0e094fa3959954dd8c0d9db1',6,'2015-12-02 17:03:48','重庆小面',48,0,NULL,NULL,NULL,NULL),(2,6,'43f048bf0e094fa3959954dd8c0d9db1',3,'2015-12-02 17:40:57','重庆辣子鸡',48,0,NULL,NULL,NULL,NULL),(2,6,'43f048bf0e094fa3959954dd8c0d9db1',6,'2015-12-02 17:35:47',NULL,48,0,'52','18',NULL,NULL),(2,6,'43f048bf0e094fa3959954dd8c0d9db1',0,'2015-12-02 17:51:31',NULL,48,0,'2','77',NULL,NULL),(2,6,'43f048bf0e094fa3959954dd8c0d9db1',5,'2015-12-02 17:43:18',NULL,48,2,NULL,NULL,NULL,NULL),(2,6,'43f048bf0e094fa3959954dd8c0d9db1',3,'2015-12-02 17:25:28',NULL,48,0,NULL,NULL,'49','22'),(2,6,'43f048bf0e094fa3959954dd8c0d9db1',6,'2015-12-02 17:32:52',NULL,48,0,'72','43',NULL,NULL),(2,6,'43f048bf0e094fa3959954dd8c0d9db1',4,'2015-12-02 17:32:47',NULL,48,0,'83','97',NULL,NULL),(2,6,'43f048bf0e094fa3959954dd8c0d9db1',8,'2015-12-02 17:37:29',NULL,48,88,NULL,NULL,NULL,NULL),(2,6,'43f048bf0e094fa3959954dd8c0d9db1',5,'2015-12-02 17:47:48',NULL,48,0,NULL,NULL,'25','2'),(2,6,'43f048bf0e094fa3959954dd8c0d9db1',5,'2015-12-02 17:26:01','太古商场',48,0,NULL,NULL,NULL,NULL),(2,38,'6ea4bf03cf574e76bc01402a9e86a754',2,'2015-12-02 7:03:48',NULL,0,0,'69','11',NULL,NULL),(2,38,'6ea4bf03cf574e76bc01402a9e86a754',8,'2015-12-02 7:45:51',NULL,46,31,NULL,NULL,NULL,NULL),(2,38,'6ea4bf03cf574e76bc01402a9e86a754',2,'2015-12-02 7:29:15','太古商场',46,0,NULL,NULL,NULL,NULL),(2,38,'6ea4bf03cf574e76bc01402a9e86a754',5,'2015-12-02 7:00:55',NULL,46,0,NULL,NULL,'99','70'),(2,38,'6ea4bf03cf574e76bc01402a9e86a754',2,'2015-12-02 7:32:14','日本料理',46,0,NULL,NULL,NULL,NULL),(2,38,'6ea4bf03cf574e76bc01402a9e86a754',1,'2015-12-02 7:38:32',NULL,46,0,NULL,NULL,'29','89'),(2,38,'6ea4bf03cf574e76bc01402a9e86a754',7,'2015-12-02 7:55:39',NULL,46,17,NULL,NULL,NULL,NULL),(2,38,'6ea4bf03cf574e76bc01402a9e86a754',1,'2015-12-02 7:49:25',NULL,46,0,'97','70',NULL,NULL),(2,38,'6ea4bf03cf574e76bc01402a9e86a754',7,'2015-12-02 7:04:02',NULL,46,4,NULL,NULL,NULL,NULL),(2,38,'6ea4bf03cf574e76bc01402a9e86a754',2,'2015-12-02 7:32:55',NULL,46,0,'86','89',NULL,NULL),(2,38,'6ea4bf03cf574e76bc01402a9e86a754',9,'2015-12-02 7:14:01','太古商场',46,0,NULL,NULL,NULL,NULL),(2,38,'6ea4bf03cf574e76bc01402a9e86a754',3,'2015-12-02 7:32:20',NULL,46,76,NULL,NULL,NULL,NULL),(2,38,'6ea4bf03cf574e76bc01402a9e86a754',7,'2015-12-02 7:38:01',NULL,46,40,NULL,NULL,NULL,NULL),(2,38,'6ea4bf03cf574e76bc01402a9e86a754',2,'2015-12-02 7:14:39',NULL,46,0,'89','80',NULL,NULL),(2,11,'c667fb521bac40ce99ec835d0ba90f82',0,'2015-12-02 4:24:39',NULL,0,0,'17','11',NULL,NULL),(2,11,'c667fb521bac40ce99ec835d0ba90f82',5,'2015-12-02 4:56:55',NULL,0,0,NULL,NULL,'95','13'),(2,11,'c667fb521bac40ce99ec835d0ba90f82',8,'2015-12-02 4:57:32',NULL,0,0,NULL,NULL,'36','85'),(2,11,'c667fb521bac40ce99ec835d0ba90f82',6,'2015-12-02 4:33:48',NULL,64,66,NULL,NULL,NULL,NULL),(2,11,'c667fb521bac40ce99ec835d0ba90f82',7,'2015-12-02 4:48:50',NULL,64,0,'52','0',NULL,NULL),(2,11,'c667fb521bac40ce99ec835d0ba90f82',6,'2015-12-02 4:08:09',NULL,64,0,'32','30',NULL,NULL),(2,11,'c667fb521bac40ce99ec835d0ba90f82',7,'2015-12-02 4:43:38',NULL,64,0,'73','9',NULL,NULL),(2,11,'c667fb521bac40ce99ec835d0ba90f82',6,'2015-12-02 4:17:58','蛋糕',64,0,NULL,NULL,NULL,NULL),(2,59,'e26e4ec653bb48a98476d9e36143c58b',8,'2015-12-02 17:37:32',NULL,0,0,NULL,NULL,'4','95'),(2,59,'e26e4ec653bb48a98476d9e36143c58b',0,'2015-12-02 17:06:58','火锅',0,0,NULL,NULL,NULL,NULL),(2,59,'e26e4ec653bb48a98476d9e36143c58b',2,'2015-12-02 17:51:44',NULL,0,0,'18','36',NULL,NULL),(2,59,'e26e4ec653bb48a98476d9e36143c58b',8,'2015-12-02 17:05:53','重庆小面',0,0,NULL,NULL,NULL,NULL),(2,59,'e26e4ec653bb48a98476d9e36143c58b',8,'2015-12-02 17:25:12',NULL,78,98,NULL,NULL,NULL,NULL),(2,59,'e26e4ec653bb48a98476d9e36143c58b',4,'2015-12-02 17:45:28','太古商场',78,0,NULL,NULL,NULL,NULL),(2,59,'e26e4ec653bb48a98476d9e36143c58b',6,'2015-12-02 17:56:11',NULL,78,0,'13','9',NULL,NULL),(2,11,'5184ddae5941468fa7e29650e68cce8b',4,'2015-12-02 19:21:52',NULL,20,49,NULL,NULL,NULL,NULL),(2,11,'5184ddae5941468fa7e29650e68cce8b',0,'2015-12-02 19:45:10',NULL,20,12,NULL,NULL,NULL,NULL),(2,11,'5184ddae5941468fa7e29650e68cce8b',5,'2015-12-02 19:32:33','日本料理',20,0,NULL,NULL,NULL,NULL),(2,11,'5184ddae5941468fa7e29650e68cce8b',3,'2015-12-02 19:20:53',NULL,20,68,NULL,NULL,NULL,NULL),(2,11,'5184ddae5941468fa7e29650e68cce8b',1,'2015-12-02 19:17:41',NULL,20,0,'1','47',NULL,NULL),(2,11,'5184ddae5941468fa7e29650e68cce8b',2,'2015-12-02 19:19:49',NULL,20,23,NULL,NULL,NULL,NULL),(2,11,'5184ddae5941468fa7e29650e68cce8b',8,'2015-12-02 19:09:49',NULL,20,0,'14','18',NULL,NULL),(2,11,'5184ddae5941468fa7e29650e68cce8b',5,'2015-12-02 19:04:48','火锅',20,0,NULL,NULL,NULL,NULL),(2,11,'5184ddae5941468fa7e29650e68cce8b',8,'2015-12-02 19:19:40',NULL,20,0,NULL,NULL,'99','22'),(2,11,'5184ddae5941468fa7e29650e68cce8b',5,'2015-12-02 19:55:51',NULL,20,0,NULL,NULL,'62','36'),(2,11,'5184ddae5941468fa7e29650e68cce8b',3,'2015-12-02 19:44:20',NULL,20,0,'64','68',NULL,NULL),(2,11,'5184ddae5941468fa7e29650e68cce8b',0,'2015-12-02 19:13:57',NULL,20,0,NULL,NULL,'63','29'),(2,59,'60ecf5895ff24fd29a4d3a85da953b21',5,'2015-12-02 0:45:30','日本料理',0,0,NULL,NULL,NULL,NULL),(2,59,'60ecf5895ff24fd29a4d3a85da953b21',0,'2015-12-02 0:30:21','重庆小面',0,0,NULL,NULL,NULL,NULL),(2,59,'60ecf5895ff24fd29a4d3a85da953b21',0,'2015-12-02 0:50:48','太古商场',0,0,NULL,NULL,NULL,NULL),(2,59,'60ecf5895ff24fd29a4d3a85da953b21',2,'2015-12-02 0:13:32',NULL,0,0,NULL,NULL,'38','58'),(2,59,'60ecf5895ff24fd29a4d3a85da953b21',8,'2015-12-02 0:35:33',NULL,41,6,NULL,NULL,NULL,NULL),(2,59,'60ecf5895ff24fd29a4d3a85da953b21',5,'2015-12-02 0:11:13',NULL,41,9,NULL,NULL,NULL,NULL),(2,59,'60ecf5895ff24fd29a4d3a85da953b21',7,'2015-12-02 0:11:20',NULL,41,0,'70','4',NULL,NULL),(2,59,'60ecf5895ff24fd29a4d3a85da953b21',7,'2015-12-02 0:07:48',NULL,41,25,NULL,NULL,NULL,NULL),(2,59,'60ecf5895ff24fd29a4d3a85da953b21',3,'2015-12-02 0:41:33',NULL,41,0,'25','81',NULL,NULL),(2,59,'60ecf5895ff24fd29a4d3a85da953b21',6,'2015-12-02 0:09:25',NULL,41,0,NULL,NULL,'10','35'),(2,59,'60ecf5895ff24fd29a4d3a85da953b21',4,'2015-12-02 0:29:43',NULL,41,0,NULL,NULL,'44','61'),(2,59,'60ecf5895ff24fd29a4d3a85da953b21',7,'2015-12-02 0:08:57',NULL,41,0,'16','57',NULL,NULL),(2,59,'60ecf5895ff24fd29a4d3a85da953b21',4,'2015-12-02 0:01:04',NULL,41,0,'99','68',NULL,NULL),(2,59,'60ecf5895ff24fd29a4d3a85da953b21',1,'2015-12-02 0:03:22','日本料理',41,0,NULL,NULL,NULL,NULL),(2,59,'60ecf5895ff24fd29a4d3a85da953b21',0,'2015-12-02 0:01:52','温泉',41,0,NULL,NULL,NULL,NULL),(2,29,'0c5bfdfc6b60438293693ac815e7b0c2',2,'2015-12-02 12:57:55',NULL,0,0,NULL,NULL,'96','61'),(2,29,'0c5bfdfc6b60438293693ac815e7b0c2',6,'2015-12-02 12:15:25',NULL,78,38,NULL,NULL,NULL,NULL),(2,29,'0c5bfdfc6b60438293693ac815e7b0c2',5,'2015-12-02 12:41:58',NULL,78,0,NULL,NULL,'11','16'),(2,29,'0c5bfdfc6b60438293693ac815e7b0c2',7,'2015-12-02 12:51:31',NULL,78,0,'82','9',NULL,NULL),(2,29,'0c5bfdfc6b60438293693ac815e7b0c2',9,'2015-12-02 12:02:31',NULL,78,55,NULL,NULL,NULL,NULL),(2,29,'0c5bfdfc6b60438293693ac815e7b0c2',0,'2015-12-02 12:07:57','日本料理',78,0,NULL,NULL,NULL,NULL),(2,13,'e6557879e3124dfb9847c971caea69ff',0,'2015-12-02 3:39:10','温泉',0,0,NULL,NULL,NULL,NULL),(2,13,'e6557879e3124dfb9847c971caea69ff',9,'2015-12-02 3:50:01',NULL,48,93,NULL,NULL,NULL,NULL),(2,13,'e6557879e3124dfb9847c971caea69ff',9,'2015-12-02 3:38:58','呷哺呷哺',48,0,NULL,NULL,NULL,NULL),(2,13,'e6557879e3124dfb9847c971caea69ff',2,'2015-12-02 3:48:10','火锅',48,0,NULL,NULL,NULL,NULL),(2,13,'e6557879e3124dfb9847c971caea69ff',2,'2015-12-02 3:27:58',NULL,48,0,'53','78',NULL,NULL),(2,13,'e6557879e3124dfb9847c971caea69ff',4,'2015-12-02 3:27:29',NULL,48,0,'42','13',NULL,NULL),(2,13,'e6557879e3124dfb9847c971caea69ff',7,'2015-12-02 3:24:42',NULL,48,0,NULL,NULL,'34','81'),(2,13,'e6557879e3124dfb9847c971caea69ff',2,'2015-12-02 3:25:54',NULL,48,80,NULL,NULL,NULL,NULL),(2,13,'e6557879e3124dfb9847c971caea69ff',3,'2015-12-02 3:25:14',NULL,48,8,NULL,NULL,NULL,NULL),(2,13,'e6557879e3124dfb9847c971caea69ff',3,'2015-12-02 3:10:43',NULL,48,28,NULL,NULL,NULL,NULL),(2,13,'e6557879e3124dfb9847c971caea69ff',5,'2015-12-02 3:08:08',NULL,48,0,NULL,NULL,'61','85'),(2,13,'e6557879e3124dfb9847c971caea69ff',5,'2015-12-02 3:05:46',NULL,48,0,'72','61',NULL,NULL),(2,13,'e6557879e3124dfb9847c971caea69ff',0,'2015-12-02 3:42:02',NULL,48,50,NULL,NULL,NULL,NULL),(2,13,'e6557879e3124dfb9847c971caea69ff',1,'2015-12-02 3:39:52','呷哺呷哺',48,0,NULL,NULL,NULL,NULL),(2,13,'e6557879e3124dfb9847c971caea69ff',7,'2015-12-02 3:31:32','新辣道鱼火锅',48,0,NULL,NULL,NULL,NULL),(2,13,'e6557879e3124dfb9847c971caea69ff',9,'2015-12-02 3:26:20','重庆辣子鸡',48,0,NULL,NULL,NULL,NULL),(2,57,'67de2c5429b84e51aeb461604b7ebfb8',7,'2015-12-02 14:29:36',NULL,20,88,NULL,NULL,NULL,NULL),(2,57,'67de2c5429b84e51aeb461604b7ebfb8',3,'2015-12-02 14:30:18',NULL,20,32,NULL,NULL,NULL,NULL),(2,33,'17972fc47fd14e1f98a10cbe8692ad00',2,'2015-12-02 21:09:33',NULL,0,0,'23','4',NULL,NULL),(2,33,'17972fc47fd14e1f98a10cbe8692ad00',0,'2015-12-02 21:34:02','重庆辣子鸡',0,0,NULL,NULL,NULL,NULL),(2,33,'17972fc47fd14e1f98a10cbe8692ad00',7,'2015-12-02 21:00:56',NULL,83,89,NULL,NULL,NULL,NULL),(2,33,'17972fc47fd14e1f98a10cbe8692ad00',4,'2015-12-02 21:23:55','温泉',83,0,NULL,NULL,NULL,NULL),(2,33,'17972fc47fd14e1f98a10cbe8692ad00',5,'2015-12-02 21:22:03',NULL,83,0,NULL,NULL,'27','46'),(2,33,'17972fc47fd14e1f98a10cbe8692ad00',2,'2015-12-02 21:58:27','日本料理',83,0,NULL,NULL,NULL,NULL),(2,33,'17972fc47fd14e1f98a10cbe8692ad00',3,'2015-12-02 21:00:56',NULL,83,59,NULL,NULL,NULL,NULL),(2,33,'17972fc47fd14e1f98a10cbe8692ad00',5,'2015-12-02 21:10:28',NULL,83,0,NULL,NULL,'60','40'),(2,33,'17972fc47fd14e1f98a10cbe8692ad00',8,'2015-12-02 21:25:22',NULL,83,48,NULL,NULL,NULL,NULL),(2,33,'17972fc47fd14e1f98a10cbe8692ad00',4,'2015-12-02 21:23:46','蛋糕',83,0,NULL,NULL,NULL,NULL),(2,33,'17972fc47fd14e1f98a10cbe8692ad00',6,'2015-12-02 21:09:37',NULL,83,24,NULL,NULL,NULL,NULL),(2,78,'25b3334667384fabb20c16091563d84e',0,'2015-12-02 19:14:13',NULL,83,52,NULL,NULL,NULL,NULL),(2,78,'25b3334667384fabb20c16091563d84e',8,'2015-12-02 19:34:15','温泉',83,0,NULL,NULL,NULL,NULL),(2,78,'25b3334667384fabb20c16091563d84e',0,'2015-12-02 19:48:04',NULL,83,0,NULL,NULL,'20','97'),(2,78,'25b3334667384fabb20c16091563d84e',3,'2015-12-02 19:51:22',NULL,83,53,NULL,NULL,NULL,NULL),(2,78,'25b3334667384fabb20c16091563d84e',2,'2015-12-02 19:31:22',NULL,83,86,NULL,NULL,NULL,NULL),(2,78,'25b3334667384fabb20c16091563d84e',5,'2015-12-02 19:02:52',NULL,83,0,'63','80',NULL,NULL),(2,78,'25b3334667384fabb20c16091563d84e',4,'2015-12-02 19:25:28',NULL,83,57,NULL,NULL,NULL,NULL),(2,78,'25b3334667384fabb20c16091563d84e',7,'2015-12-02 19:50:10',NULL,83,4,NULL,NULL,NULL,NULL),(2,78,'25b3334667384fabb20c16091563d84e',4,'2015-12-02 19:10:18',NULL,83,32,NULL,NULL,NULL,NULL),(2,35,'704a1277d045409eb2ed8af09b82feb6',0,'2015-12-02 11:20:44',NULL,83,27,NULL,NULL,NULL,NULL),(2,35,'704a1277d045409eb2ed8af09b82feb6',8,'2015-12-02 11:01:27',NULL,83,0,'24','60',NULL,NULL),(2,35,'704a1277d045409eb2ed8af09b82feb6',8,'2015-12-02 11:54:52',NULL,83,0,NULL,NULL,'99','36'),(2,35,'704a1277d045409eb2ed8af09b82feb6',1,'2015-12-02 11:18:31',NULL,83,0,'39','72',NULL,NULL),(2,35,'704a1277d045409eb2ed8af09b82feb6',4,'2015-12-02 11:41:45','太古商场',83,0,NULL,NULL,NULL,NULL),(2,35,'704a1277d045409eb2ed8af09b82feb6',5,'2015-12-02 11:53:18',NULL,83,0,NULL,NULL,'13','60'),(2,83,'0e071caa576d4b82bdcefb283ce868aa',9,'2015-12-02 0:17:31',NULL,0,0,NULL,NULL,'53','48'),(2,83,'0e071caa576d4b82bdcefb283ce868aa',5,'2015-12-02 0:13:46',NULL,0,0,NULL,NULL,'65','45'),(2,83,'0e071caa576d4b82bdcefb283ce868aa',5,'2015-12-02 0:07:45',NULL,0,0,NULL,NULL,'71','67'),(2,83,'0e071caa576d4b82bdcefb283ce868aa',4,'2015-12-02 0:46:31','国贸大厦',0,0,NULL,NULL,NULL,NULL),(2,83,'0e071caa576d4b82bdcefb283ce868aa',2,'2015-12-02 0:40:01',NULL,0,0,'26','2',NULL,NULL),(2,83,'0e071caa576d4b82bdcefb283ce868aa',5,'2015-12-02 0:08:33','呷哺呷哺',0,0,NULL,NULL,NULL,NULL),(2,83,'0e071caa576d4b82bdcefb283ce868aa',7,'2015-12-02 0:02:28','日本料理',0,0,NULL,NULL,NULL,NULL),(2,83,'0e071caa576d4b82bdcefb283ce868aa',0,'2015-12-02 0:39:07','太古商场',0,0,NULL,NULL,NULL,NULL),(2,83,'0e071caa576d4b82bdcefb283ce868aa',7,'2015-12-02 0:30:42',NULL,0,0,'12','23',NULL,NULL),(2,83,'0e071caa576d4b82bdcefb283ce868aa',2,'2015-12-02 0:48:15',NULL,0,0,'92','2',NULL,NULL),(2,83,'0e071caa576d4b82bdcefb283ce868aa',0,'2015-12-02 0:34:27',NULL,41,76,NULL,NULL,NULL,NULL),(2,83,'0e071caa576d4b82bdcefb283ce868aa',1,'2015-12-02 0:57:37',NULL,41,0,NULL,NULL,'76','71'),(2,83,'0e071caa576d4b82bdcefb283ce868aa',5,'2015-12-02 0:41:44',NULL,41,0,NULL,NULL,'63','93'),(2,83,'0e071caa576d4b82bdcefb283ce868aa',6,'2015-12-02 0:00:36','蛋糕',41,0,NULL,NULL,NULL,NULL),(2,83,'0e071caa576d4b82bdcefb283ce868aa',3,'2015-12-02 0:16:48',NULL,41,0,NULL,NULL,'61','93'),(2,83,'0e071caa576d4b82bdcefb283ce868aa',8,'2015-12-02 0:46:14','火锅',41,0,NULL,NULL,NULL,NULL),(2,17,'ea5c9d86a9bc4c3d8c598b8f301ef3b1',4,'2015-12-02 6:31:00',NULL,0,0,NULL,NULL,'62','85'),(2,17,'ea5c9d86a9bc4c3d8c598b8f301ef3b1',3,'2015-12-02 6:46:01',NULL,20,79,NULL,NULL,NULL,NULL),(2,17,'ea5c9d86a9bc4c3d8c598b8f301ef3b1',8,'2015-12-02 6:45:29',NULL,20,0,'34','48',NULL,NULL),(2,17,'ea5c9d86a9bc4c3d8c598b8f301ef3b1',8,'2015-12-02 6:16:09',NULL,20,0,'45','22',NULL,NULL),(2,17,'ea5c9d86a9bc4c3d8c598b8f301ef3b1',7,'2015-12-02 6:37:50',NULL,20,98,NULL,NULL,NULL,NULL),(2,17,'ea5c9d86a9bc4c3d8c598b8f301ef3b1',7,'2015-12-02 6:37:02','重庆小面',20,0,NULL,NULL,NULL,NULL),(2,17,'ea5c9d86a9bc4c3d8c598b8f301ef3b1',4,'2015-12-02 6:16:28',NULL,20,71,NULL,NULL,NULL,NULL),(2,17,'ea5c9d86a9bc4c3d8c598b8f301ef3b1',4,'2015-12-02 6:10:24','国贸大厦',20,0,NULL,NULL,NULL,NULL),(2,17,'ea5c9d86a9bc4c3d8c598b8f301ef3b1',0,'2015-12-02 6:14:01',NULL,20,24,NULL,NULL,NULL,NULL),(2,35,'3139c465e54e43dd86b1ca22b4645041',4,'2015-12-02 18:34:20',NULL,0,0,'27','53',NULL,NULL),(2,35,'3139c465e54e43dd86b1ca22b4645041',4,'2015-12-02 18:31:07',NULL,20,87,NULL,NULL,NULL,NULL),(2,83,'b669fe26bf224c2a867752287a06f95d',8,'2015-12-02 8:16:23',NULL,1,91,NULL,NULL,NULL,NULL),(2,83,'b669fe26bf224c2a867752287a06f95d',8,'2015-12-02 8:58:10',NULL,1,0,NULL,NULL,'2','25'),(2,83,'b669fe26bf224c2a867752287a06f95d',3,'2015-12-02 8:52:53',NULL,1,0,NULL,NULL,'7','97'),(2,83,'b669fe26bf224c2a867752287a06f95d',7,'2015-12-02 8:56:46','火锅',1,0,NULL,NULL,NULL,NULL),(2,83,'b669fe26bf224c2a867752287a06f95d',1,'2015-12-02 8:17:47',NULL,1,46,NULL,NULL,NULL,NULL),(2,83,'b669fe26bf224c2a867752287a06f95d',0,'2015-12-02 8:09:24',NULL,1,55,NULL,NULL,NULL,NULL),(2,83,'b669fe26bf224c2a867752287a06f95d',4,'2015-12-02 8:41:23',NULL,1,75,NULL,NULL,NULL,NULL),(2,83,'b669fe26bf224c2a867752287a06f95d',2,'2015-12-02 8:13:15',NULL,1,0,NULL,NULL,'77','7'),(2,83,'b669fe26bf224c2a867752287a06f95d',7,'2015-12-02 8:04:17',NULL,1,0,'79','85',NULL,NULL),(2,83,'b669fe26bf224c2a867752287a06f95d',6,'2015-12-02 8:23:10',NULL,1,28,NULL,NULL,NULL,NULL),(2,83,'b669fe26bf224c2a867752287a06f95d',6,'2015-12-02 8:28:25',NULL,1,76,NULL,NULL,NULL,NULL),(2,83,'b669fe26bf224c2a867752287a06f95d',2,'2015-12-02 8:12:35',NULL,1,0,'53','9',NULL,NULL),(2,83,'b669fe26bf224c2a867752287a06f95d',0,'2015-12-02 8:08:23','温泉',1,0,NULL,NULL,NULL,NULL),(2,83,'b669fe26bf224c2a867752287a06f95d',7,'2015-12-02 8:05:42',NULL,1,90,NULL,NULL,NULL,NULL),(2,83,'b669fe26bf224c2a867752287a06f95d',6,'2015-12-02 8:14:45','国贸大厦',1,0,NULL,NULL,NULL,NULL),(2,83,'b669fe26bf224c2a867752287a06f95d',9,'2015-12-02 8:13:37',NULL,1,0,'41','46',NULL,NULL),(2,83,'b669fe26bf224c2a867752287a06f95d',4,'2015-12-02 8:43:15',NULL,1,0,NULL,NULL,'0','63'),(2,83,'b669fe26bf224c2a867752287a06f95d',7,'2015-12-02 8:16:18',NULL,1,0,NULL,NULL,'79','9'),(2,83,'b669fe26bf224c2a867752287a06f95d',1,'2015-12-02 8:35:33',NULL,1,0,NULL,NULL,'81','79'),(2,83,'b669fe26bf224c2a867752287a06f95d',0,'2015-12-02 8:53:38',NULL,1,0,'10','95',NULL,NULL),(2,83,'b669fe26bf224c2a867752287a06f95d',4,'2015-12-02 8:08:56',NULL,1,88,NULL,NULL,NULL,NULL),(2,83,'b669fe26bf224c2a867752287a06f95d',8,'2015-12-02 8:17:06',NULL,1,70,NULL,NULL,NULL,NULL),(2,40,'a41ff98cc17045179603edeff3949472',3,'2015-12-02 10:01:43',NULL,69,91,NULL,NULL,NULL,NULL),(2,40,'a41ff98cc17045179603edeff3949472',0,'2015-12-02 10:06:42',NULL,69,0,NULL,NULL,'50','64'),(2,40,'a41ff98cc17045179603edeff3949472',5,'2015-12-02 10:13:48',NULL,69,50,NULL,NULL,NULL,NULL),(2,40,'a41ff98cc17045179603edeff3949472',7,'2015-12-02 10:25:50',NULL,69,0,NULL,NULL,NULL,NULL),(2,40,'a41ff98cc17045179603edeff3949472',8,'2015-12-02 10:28:18',NULL,69,0,NULL,NULL,'61','3'),(2,40,'a41ff98cc17045179603edeff3949472',5,'2015-12-02 10:13:52',NULL,69,0,NULL,NULL,'52','91'),(2,40,'a41ff98cc17045179603edeff3949472',0,'2015-12-02 10:54:41',NULL,69,0,NULL,NULL,'66','35'),(2,40,'a41ff98cc17045179603edeff3949472',5,'2015-12-02 10:21:51',NULL,69,95,NULL,NULL,NULL,NULL),(2,40,'a41ff98cc17045179603edeff3949472',5,'2015-12-02 10:18:26','新辣道鱼火锅',69,0,NULL,NULL,NULL,NULL),(2,40,'a41ff98cc17045179603edeff3949472',7,'2015-12-02 10:18:10',NULL,69,0,'42','71',NULL,NULL),(2,54,'02cf5b5755c64f9a9f1b654588b95934',0,'2015-12-02 2:17:52',NULL,0,0,'23','61',NULL,NULL),(2,54,'02cf5b5755c64f9a9f1b654588b95934',2,'2015-12-02 2:52:12',NULL,0,0,'6','44',NULL,NULL),(2,54,'02cf5b5755c64f9a9f1b654588b95934',7,'2015-12-02 2:45:17','重庆辣子鸡',0,0,NULL,NULL,NULL,NULL),(2,54,'02cf5b5755c64f9a9f1b654588b95934',6,'2015-12-02 2:50:12','呷哺呷哺',0,0,NULL,NULL,NULL,NULL),(2,54,'02cf5b5755c64f9a9f1b654588b95934',2,'2015-12-02 2:05:07',NULL,0,0,NULL,NULL,'40','22'),(2,54,'02cf5b5755c64f9a9f1b654588b95934',0,'2015-12-02 2:37:46',NULL,0,0,'76','18',NULL,NULL),(2,54,'02cf5b5755c64f9a9f1b654588b95934',9,'2015-12-02 2:22:57',NULL,69,30,NULL,NULL,NULL,NULL),(2,54,'02cf5b5755c64f9a9f1b654588b95934',2,'2015-12-02 2:26:01',NULL,69,0,'41','1',NULL,NULL),(2,54,'02cf5b5755c64f9a9f1b654588b95934',4,'2015-12-02 2:17:42',NULL,69,0,'84','64',NULL,NULL),(2,54,'02cf5b5755c64f9a9f1b654588b95934',2,'2015-12-02 2:26:30','重庆小面',69,0,NULL,NULL,NULL,NULL),(2,54,'02cf5b5755c64f9a9f1b654588b95934',0,'2015-12-02 2:19:22',NULL,69,0,'2','21',NULL,NULL),(2,54,'02cf5b5755c64f9a9f1b654588b95934',3,'2015-12-02 2:23:26',NULL,69,0,'31','89',NULL,NULL),(2,54,'02cf5b5755c64f9a9f1b654588b95934',9,'2015-12-02 2:05:55',NULL,69,9,NULL,NULL,NULL,NULL),(2,54,'02cf5b5755c64f9a9f1b654588b95934',9,'2015-12-02 2:23:31',NULL,69,35,NULL,NULL,NULL,NULL),(2,54,'02cf5b5755c64f9a9f1b654588b95934',2,'2015-12-02 2:55:21',NULL,69,0,NULL,NULL,'60','58'),(2,54,'02cf5b5755c64f9a9f1b654588b95934',1,'2015-12-02 2:44:52',NULL,69,0,NULL,NULL,'6','25'),(2,54,'02cf5b5755c64f9a9f1b654588b95934',6,'2015-12-02 2:32:12',NULL,69,0,NULL,NULL,'42','18'),(2,6,'949b8e53f1b3417ab88ceddc870d7ee9',5,'2015-12-02 8:39:57','重庆小面',0,0,NULL,NULL,NULL,NULL),(2,6,'949b8e53f1b3417ab88ceddc870d7ee9',4,'2015-12-02 8:31:23','呷哺呷哺',0,0,NULL,NULL,NULL,NULL),(2,6,'949b8e53f1b3417ab88ceddc870d7ee9',7,'2015-12-02 8:42:41',NULL,64,15,NULL,NULL,NULL,NULL),(2,6,'949b8e53f1b3417ab88ceddc870d7ee9',5,'2015-12-02 8:01:11',NULL,64,0,'78','52',NULL,NULL),(2,6,'949b8e53f1b3417ab88ceddc870d7ee9',3,'2015-12-02 8:31:15','太古商场',64,0,NULL,NULL,NULL,NULL),(2,6,'949b8e53f1b3417ab88ceddc870d7ee9',6,'2015-12-02 8:24:55',NULL,64,0,NULL,NULL,'51','25'),(2,6,'949b8e53f1b3417ab88ceddc870d7ee9',0,'2015-12-02 8:23:04',NULL,64,0,'70','36',NULL,NULL),(2,6,'949b8e53f1b3417ab88ceddc870d7ee9',4,'2015-12-02 8:44:02',NULL,64,0,'97','7',NULL,NULL),(2,6,'949b8e53f1b3417ab88ceddc870d7ee9',0,'2015-12-02 8:49:16',NULL,64,80,NULL,NULL,NULL,NULL),(2,6,'949b8e53f1b3417ab88ceddc870d7ee9',7,'2015-12-02 8:04:21',NULL,64,40,NULL,NULL,NULL,NULL),(2,85,'500ef86d02194a7c9a84b17a38344237',6,'2015-12-02 0:51:55','重庆小面',0,0,NULL,NULL,NULL,NULL),(2,85,'500ef86d02194a7c9a84b17a38344237',9,'2015-12-02 0:58:13',NULL,0,0,'48','50',NULL,NULL),(2,85,'500ef86d02194a7c9a84b17a38344237',9,'2015-12-02 0:07:35',NULL,78,87,NULL,NULL,NULL,NULL),(2,85,'500ef86d02194a7c9a84b17a38344237',2,'2015-12-02 0:41:24',NULL,78,0,NULL,NULL,'3','2'),(2,85,'500ef86d02194a7c9a84b17a38344237',6,'2015-12-02 0:27:17','国贸大厦',78,0,NULL,NULL,NULL,NULL),(2,85,'500ef86d02194a7c9a84b17a38344237',3,'2015-12-02 0:28:03',NULL,78,0,'87','38',NULL,NULL),(2,85,'500ef86d02194a7c9a84b17a38344237',0,'2015-12-02 0:18:44','新辣道鱼火锅',78,0,NULL,NULL,NULL,NULL),(2,85,'500ef86d02194a7c9a84b17a38344237',6,'2015-12-02 0:33:10',NULL,78,0,'80','60',NULL,NULL),(2,85,'500ef86d02194a7c9a84b17a38344237',7,'2015-12-02 0:41:15',NULL,78,40,NULL,NULL,NULL,NULL),(2,85,'500ef86d02194a7c9a84b17a38344237',9,'2015-12-02 0:50:13',NULL,78,0,'1','54',NULL,NULL),(2,85,'500ef86d02194a7c9a84b17a38344237',6,'2015-12-02 0:48:39',NULL,78,0,NULL,NULL,'44','45'),(2,85,'500ef86d02194a7c9a84b17a38344237',9,'2015-12-02 0:46:25',NULL,78,43,NULL,NULL,NULL,NULL),(2,85,'500ef86d02194a7c9a84b17a38344237',6,'2015-12-02 0:27:17',NULL,78,49,NULL,NULL,NULL,NULL),(2,85,'500ef86d02194a7c9a84b17a38344237',5,'2015-12-02 0:20:45',NULL,78,6,NULL,NULL,NULL,NULL),(2,81,'0545ed24116e4b238c7dd2b5234830ea',5,'2015-12-02 3:38:25',NULL,0,0,NULL,NULL,'19','13'),(2,81,'0545ed24116e4b238c7dd2b5234830ea',3,'2015-12-02 3:40:01',NULL,0,0,'38','59',NULL,NULL),(2,81,'0545ed24116e4b238c7dd2b5234830ea',4,'2015-12-02 3:11:31',NULL,0,0,'91','38',NULL,NULL),(2,81,'0545ed24116e4b238c7dd2b5234830ea',6,'2015-12-02 3:22:48',NULL,48,1,NULL,NULL,NULL,NULL),(2,81,'0545ed24116e4b238c7dd2b5234830ea',9,'2015-12-02 3:12:52','呷哺呷哺',48,0,NULL,NULL,NULL,NULL),(2,81,'0545ed24116e4b238c7dd2b5234830ea',6,'2015-12-02 3:18:32',NULL,48,0,'65','54',NULL,NULL),(2,81,'0545ed24116e4b238c7dd2b5234830ea',3,'2015-12-02 3:24:43','国贸大厦',48,0,NULL,NULL,NULL,NULL),(2,81,'0545ed24116e4b238c7dd2b5234830ea',2,'2015-12-02 3:56:36','重庆小面',48,0,NULL,NULL,NULL,NULL),(2,81,'0545ed24116e4b238c7dd2b5234830ea',9,'2015-12-02 3:35:55',NULL,48,0,NULL,NULL,'45','84'),(2,81,'0545ed24116e4b238c7dd2b5234830ea',1,'2015-12-02 3:01:12',NULL,48,15,NULL,NULL,NULL,NULL),(2,81,'0545ed24116e4b238c7dd2b5234830ea',3,'2015-12-02 3:15:11',NULL,48,0,NULL,NULL,'12','21'),(2,81,'0545ed24116e4b238c7dd2b5234830ea',7,'2015-12-02 3:39:14','重庆小面',48,0,NULL,NULL,NULL,NULL),(2,81,'0545ed24116e4b238c7dd2b5234830ea',6,'2015-12-02 3:15:20',NULL,48,0,'31','19',NULL,NULL),(2,81,'0545ed24116e4b238c7dd2b5234830ea',3,'2015-12-02 3:08:40',NULL,48,65,NULL,NULL,NULL,NULL),(2,81,'0545ed24116e4b238c7dd2b5234830ea',0,'2015-12-02 3:32:11',NULL,48,0,NULL,NULL,'10','30'),(2,91,'e854a59e0e524cb0a50d4f6fd5f57cde',8,'2015-12-02 11:37:53',NULL,0,0,'73','63',NULL,NULL),(2,91,'e854a59e0e524cb0a50d4f6fd5f57cde',1,'2015-12-02 11:15:21',NULL,0,0,NULL,NULL,'77','78'),(2,91,'e854a59e0e524cb0a50d4f6fd5f57cde',2,'2015-12-02 11:22:17',NULL,0,0,'17','64',NULL,NULL),(2,91,'e854a59e0e524cb0a50d4f6fd5f57cde',7,'2015-12-02 11:05:21',NULL,0,0,'95','32',NULL,NULL),(2,91,'e854a59e0e524cb0a50d4f6fd5f57cde',6,'2015-12-02 11:44:56',NULL,1,37,NULL,NULL,NULL,NULL),(2,81,'be531d6247a24065914423584233324e',6,'2015-12-02 22:38:00',NULL,0,0,'19','79',NULL,NULL),(2,81,'be531d6247a24065914423584233324e',1,'2015-12-02 22:47:51',NULL,0,0,'98','96',NULL,NULL),(2,81,'be531d6247a24065914423584233324e',9,'2015-12-02 22:22:14','呷哺呷哺',0,0,NULL,NULL,NULL,NULL),(2,81,'be531d6247a24065914423584233324e',2,'2015-12-02 22:54:54',NULL,0,0,'19','42',NULL,NULL),(2,81,'be531d6247a24065914423584233324e',4,'2015-12-02 22:30:23',NULL,0,0,'98','63',NULL,NULL),(2,81,'be531d6247a24065914423584233324e',9,'2015-12-02 22:26:29',NULL,0,0,NULL,NULL,'1','2'),(2,81,'be531d6247a24065914423584233324e',9,'2015-12-02 22:56:00','蛋糕',0,0,NULL,NULL,NULL,NULL),(2,81,'be531d6247a24065914423584233324e',3,'2015-12-02 22:26:28',NULL,1,66,NULL,NULL,NULL,NULL),(2,81,'be531d6247a24065914423584233324e',2,'2015-12-02 22:04:38','新辣道鱼火锅',1,0,NULL,NULL,NULL,NULL),(2,81,'be531d6247a24065914423584233324e',7,'2015-12-02 22:43:25',NULL,1,0,NULL,NULL,'19','59'),(2,81,'be531d6247a24065914423584233324e',4,'2015-12-02 22:32:24',NULL,1,31,NULL,NULL,NULL,NULL),(2,81,'be531d6247a24065914423584233324e',4,'2015-12-02 22:49:21','国贸大厦',1,0,NULL,NULL,NULL,NULL),(2,81,'be531d6247a24065914423584233324e',2,'2015-12-02 22:54:46',NULL,1,42,NULL,NULL,NULL,NULL),(2,59,'1884d3c8c9e546189027a74781aa22f6',9,'2015-12-02 16:38:04',NULL,78,36,NULL,NULL,NULL,NULL),(2,59,'1884d3c8c9e546189027a74781aa22f6',2,'2015-12-02 16:25:13','太古商场',78,0,NULL,NULL,NULL,NULL),(2,59,'1884d3c8c9e546189027a74781aa22f6',2,'2015-12-02 16:02:14',NULL,78,0,NULL,NULL,'72','26'),(2,59,'1884d3c8c9e546189027a74781aa22f6',8,'2015-12-02 16:15:31','新辣道鱼火锅',78,0,NULL,NULL,NULL,NULL),(2,59,'1884d3c8c9e546189027a74781aa22f6',8,'2015-12-02 16:41:44',NULL,78,40,NULL,NULL,NULL,NULL),(2,59,'1884d3c8c9e546189027a74781aa22f6',7,'2015-12-02 16:11:17',NULL,78,0,NULL,NULL,'90','43'),(2,8,'93fd45dea5414df1b2e28fae28e3f7a5',0,'2015-12-02 11:49:10','太古商场',0,0,NULL,NULL,NULL,NULL),(2,8,'93fd45dea5414df1b2e28fae28e3f7a5',6,'2015-12-02 11:03:05',NULL,0,0,'45','71',NULL,NULL),(2,8,'93fd45dea5414df1b2e28fae28e3f7a5',8,'2015-12-02 11:22:20',NULL,69,26,NULL,NULL,NULL,NULL),(2,8,'93fd45dea5414df1b2e28fae28e3f7a5',0,'2015-12-02 11:16:18',NULL,69,0,NULL,NULL,'7','83'),(2,8,'93fd45dea5414df1b2e28fae28e3f7a5',0,'2015-12-02 11:35:29',NULL,69,0,NULL,NULL,'25','56'),(2,8,'93fd45dea5414df1b2e28fae28e3f7a5',7,'2015-12-02 11:02:22',NULL,69,8,NULL,NULL,NULL,NULL),(2,8,'93fd45dea5414df1b2e28fae28e3f7a5',0,'2015-12-02 11:24:26',NULL,69,0,'13','90',NULL,NULL),(2,8,'93fd45dea5414df1b2e28fae28e3f7a5',2,'2015-12-02 11:08:28',NULL,69,25,NULL,NULL,NULL,NULL),(2,8,'93fd45dea5414df1b2e28fae28e3f7a5',9,'2015-12-02 11:19:19','重庆小面',69,0,NULL,NULL,NULL,NULL),(2,8,'93fd45dea5414df1b2e28fae28e3f7a5',1,'2015-12-02 11:43:54',NULL,69,60,NULL,NULL,NULL,NULL),(2,8,'93fd45dea5414df1b2e28fae28e3f7a5',0,'2015-12-02 11:51:02',NULL,69,41,NULL,NULL,NULL,NULL),(2,8,'93fd45dea5414df1b2e28fae28e3f7a5',3,'2015-12-02 11:46:06',NULL,69,0,NULL,NULL,'38','84'),(2,8,'93fd45dea5414df1b2e28fae28e3f7a5',5,'2015-12-02 11:18:57','日本料理',69,0,NULL,NULL,NULL,NULL),(2,8,'93fd45dea5414df1b2e28fae28e3f7a5',9,'2015-12-02 11:28:40',NULL,69,0,NULL,NULL,'60','87'),(2,8,'93fd45dea5414df1b2e28fae28e3f7a5',8,'2015-12-02 11:11:09','国贸大厦',69,0,NULL,NULL,NULL,NULL),(2,8,'93fd45dea5414df1b2e28fae28e3f7a5',3,'2015-12-02 11:05:04',NULL,69,0,NULL,NULL,'92','78'),(2,8,'93fd45dea5414df1b2e28fae28e3f7a5',7,'2015-12-02 11:37:07',NULL,69,63,NULL,NULL,NULL,NULL),(2,8,'93fd45dea5414df1b2e28fae28e3f7a5',9,'2015-12-02 11:55:34',NULL,69,0,NULL,NULL,'82','33'),(2,17,'2b4ba72ed35447ba960a928f34700f7e',0,'2015-12-02 14:43:28',NULL,0,0,'71','0',NULL,NULL),(2,17,'2b4ba72ed35447ba960a928f34700f7e',5,'2015-12-02 14:25:55','日本料理',0,0,NULL,NULL,NULL,NULL),(2,17,'2b4ba72ed35447ba960a928f34700f7e',9,'2015-12-02 14:05:00',NULL,0,0,'9','98',NULL,NULL),(2,17,'2b4ba72ed35447ba960a928f34700f7e',5,'2015-12-02 14:30:04',NULL,0,0,NULL,NULL,'49','12'),(2,17,'2b4ba72ed35447ba960a928f34700f7e',3,'2015-12-02 14:43:33',NULL,20,74,NULL,NULL,NULL,NULL),(2,17,'2b4ba72ed35447ba960a928f34700f7e',5,'2015-12-02 14:51:41',NULL,20,0,NULL,NULL,'76','45'),(2,17,'2b4ba72ed35447ba960a928f34700f7e',1,'2015-12-02 14:15:10','重庆辣子鸡',20,0,NULL,NULL,NULL,NULL),(2,17,'2b4ba72ed35447ba960a928f34700f7e',4,'2015-12-02 14:16:57',NULL,20,0,NULL,NULL,'96','28'),(2,17,'2b4ba72ed35447ba960a928f34700f7e',3,'2015-12-02 14:19:08',NULL,20,6,NULL,NULL,NULL,NULL),(2,17,'2b4ba72ed35447ba960a928f34700f7e',4,'2015-12-02 14:48:27',NULL,20,0,NULL,NULL,'42','28'),(2,17,'2b4ba72ed35447ba960a928f34700f7e',3,'2015-12-02 14:10:34',NULL,20,0,NULL,NULL,'95','41'),(2,85,'2a981d02867549ac8938a9aedd38bc92',1,'2015-12-02 17:28:27','重庆小面',0,0,NULL,NULL,NULL,NULL),(2,85,'2a981d02867549ac8938a9aedd38bc92',0,'2015-12-02 17:22:00',NULL,64,48,NULL,NULL,NULL,NULL),(2,85,'2a981d02867549ac8938a9aedd38bc92',8,'2015-12-02 17:25:04',NULL,64,0,NULL,NULL,'25','74'),(2,85,'2a981d02867549ac8938a9aedd38bc92',2,'2015-12-02 17:31:57',NULL,64,0,'94','42',NULL,NULL),(2,85,'2a981d02867549ac8938a9aedd38bc92',6,'2015-12-02 17:28:40',NULL,64,0,NULL,NULL,'37','55'),(2,85,'2a981d02867549ac8938a9aedd38bc92',8,'2015-12-02 17:46:13','新辣道鱼火锅',64,0,NULL,NULL,NULL,NULL),(2,85,'2a981d02867549ac8938a9aedd38bc92',1,'2015-12-02 17:18:31',NULL,64,0,'6','48',NULL,NULL),(2,85,'2a981d02867549ac8938a9aedd38bc92',6,'2015-12-02 17:45:25',NULL,64,40,NULL,NULL,NULL,NULL),(2,11,'4a4ce3f91ecf492793ab8e2e81f622b0',4,'2015-12-02 12:45:12',NULL,64,71,NULL,NULL,NULL,NULL),(2,11,'4a4ce3f91ecf492793ab8e2e81f622b0',2,'2015-12-02 12:32:45',NULL,64,0,NULL,NULL,'7','60'),(2,11,'4a4ce3f91ecf492793ab8e2e81f622b0',4,'2015-12-02 12:43:31',NULL,64,10,NULL,NULL,NULL,NULL),(2,11,'4a4ce3f91ecf492793ab8e2e81f622b0',9,'2015-12-02 12:28:54',NULL,64,0,'50','81',NULL,NULL),(2,51,'e2f22a8bf6e94b4783438760b731fe85',6,'2015-12-02 9:26:48',NULL,48,75,NULL,NULL,NULL,NULL),(2,51,'e2f22a8bf6e94b4783438760b731fe85',2,'2015-12-02 9:43:10',NULL,48,46,NULL,NULL,NULL,NULL),(2,51,'e2f22a8bf6e94b4783438760b731fe85',0,'2015-12-02 9:08:40','日本料理',48,0,NULL,NULL,NULL,NULL),(2,51,'e2f22a8bf6e94b4783438760b731fe85',2,'2015-12-02 9:54:17',NULL,48,0,'73','89',NULL,NULL),(2,83,'5d0e9a90eecf41039415a7caaeeadd2f',2,'2015-12-02 12:17:19',NULL,78,24,NULL,NULL,NULL,NULL),(2,83,'5d0e9a90eecf41039415a7caaeeadd2f',9,'2015-12-02 12:35:07',NULL,78,25,NULL,NULL,NULL,NULL),(2,83,'5d0e9a90eecf41039415a7caaeeadd2f',6,'2015-12-02 12:34:29',NULL,78,93,NULL,NULL,NULL,NULL),(2,83,'5d0e9a90eecf41039415a7caaeeadd2f',5,'2015-12-02 12:17:07','日本料理',78,0,NULL,NULL,NULL,NULL),(2,83,'5d0e9a90eecf41039415a7caaeeadd2f',0,'2015-12-02 12:43:13','新辣道鱼火锅',78,0,NULL,NULL,NULL,NULL),(2,83,'5d0e9a90eecf41039415a7caaeeadd2f',2,'2015-12-02 12:48:07','呷哺呷哺',78,0,NULL,NULL,NULL,NULL),(2,83,'5d0e9a90eecf41039415a7caaeeadd2f',1,'2015-12-02 12:56:37',NULL,78,62,NULL,NULL,NULL,NULL),(2,83,'5d0e9a90eecf41039415a7caaeeadd2f',7,'2015-12-02 12:22:01',NULL,78,0,'63','83',NULL,NULL),(2,83,'5d0e9a90eecf41039415a7caaeeadd2f',2,'2015-12-02 12:47:45',NULL,78,45,NULL,NULL,NULL,NULL),(2,83,'5d0e9a90eecf41039415a7caaeeadd2f',9,'2015-12-02 12:41:46','温泉',78,0,NULL,NULL,NULL,NULL),(2,83,'5d0e9a90eecf41039415a7caaeeadd2f',7,'2015-12-02 12:47:37',NULL,78,48,NULL,NULL,NULL,NULL),(2,83,'5d0e9a90eecf41039415a7caaeeadd2f',1,'2015-12-02 12:47:40',NULL,78,0,NULL,NULL,'15','81'),(2,83,'5d0e9a90eecf41039415a7caaeeadd2f',1,'2015-12-02 12:32:14',NULL,78,32,NULL,NULL,NULL,NULL),(2,35,'8ad3fac177b942f0b65e773c51a6f679',4,'2015-12-02 4:26:44',NULL,0,0,NULL,NULL,'57','19'),(2,35,'8ad3fac177b942f0b65e773c51a6f679',2,'2015-12-02 4:39:26',NULL,60,85,NULL,NULL,NULL,NULL),(2,35,'8ad3fac177b942f0b65e773c51a6f679',9,'2015-12-02 4:50:30',NULL,60,0,'24','12',NULL,NULL),(2,35,'8ad3fac177b942f0b65e773c51a6f679',8,'2015-12-02 4:56:51',NULL,60,0,NULL,NULL,'41','10'),(2,35,'8ad3fac177b942f0b65e773c51a6f679',7,'2015-12-02 4:48:38',NULL,60,52,NULL,NULL,NULL,NULL),(2,35,'8ad3fac177b942f0b65e773c51a6f679',5,'2015-12-02 4:14:07',NULL,60,0,'99','55',NULL,NULL),(2,35,'8ad3fac177b942f0b65e773c51a6f679',7,'2015-12-02 4:30:11','呷哺呷哺',60,0,NULL,NULL,NULL,NULL),(2,35,'8ad3fac177b942f0b65e773c51a6f679',9,'2015-12-02 4:20:38','呷哺呷哺',60,0,NULL,NULL,NULL,NULL),(2,35,'8ad3fac177b942f0b65e773c51a6f679',2,'2015-12-02 4:11:15',NULL,60,75,NULL,NULL,NULL,NULL),(2,35,'8ad3fac177b942f0b65e773c51a6f679',2,'2015-12-02 4:08:09','重庆辣子鸡',60,0,NULL,NULL,NULL,NULL),(2,17,'d90ae68eb37d4f6b862dd8b8a5b25630',1,'2015-12-02 21:10:24',NULL,20,43,NULL,NULL,NULL,NULL),(2,17,'d90ae68eb37d4f6b862dd8b8a5b25630',7,'2015-12-02 21:06:50',NULL,20,0,'10','26',NULL,NULL),(2,17,'d90ae68eb37d4f6b862dd8b8a5b25630',0,'2015-12-02 21:22:54',NULL,20,69,NULL,NULL,NULL,NULL),(2,17,'d90ae68eb37d4f6b862dd8b8a5b25630',2,'2015-12-02 21:07:10',NULL,20,14,NULL,NULL,NULL,NULL),(2,17,'d90ae68eb37d4f6b862dd8b8a5b25630',2,'2015-12-02 21:23:58',NULL,20,0,NULL,NULL,'57','74'),(2,17,'d90ae68eb37d4f6b862dd8b8a5b25630',1,'2015-12-02 21:54:30',NULL,20,0,'58','21',NULL,NULL),(2,17,'d90ae68eb37d4f6b862dd8b8a5b25630',4,'2015-12-02 21:26:12','重庆小面',20,0,NULL,NULL,NULL,NULL),(2,17,'d90ae68eb37d4f6b862dd8b8a5b25630',6,'2015-12-02 21:17:22','呷哺呷哺',20,0,NULL,NULL,NULL,NULL),(2,17,'d90ae68eb37d4f6b862dd8b8a5b25630',3,'2015-12-02 21:38:00',NULL,20,32,NULL,NULL,NULL,NULL),(2,17,'d90ae68eb37d4f6b862dd8b8a5b25630',2,'2015-12-02 21:16:08','火锅',20,0,NULL,NULL,NULL,NULL),(2,17,'d90ae68eb37d4f6b862dd8b8a5b25630',9,'2015-12-02 21:28:23',NULL,20,99,NULL,NULL,NULL,NULL),(2,17,'d90ae68eb37d4f6b862dd8b8a5b25630',6,'2015-12-02 21:52:46',NULL,20,0,'83','53',NULL,NULL),(2,17,'d90ae68eb37d4f6b862dd8b8a5b25630',2,'2015-12-02 21:11:24',NULL,20,0,NULL,NULL,'65','44'),(2,85,'1249748a1aeb4f779fc55aa51a3cd2f2',9,'2015-12-02 13:34:14',NULL,0,0,NULL,NULL,'99','47'),(2,85,'1249748a1aeb4f779fc55aa51a3cd2f2',4,'2015-12-02 13:40:21','国贸大厦',0,0,NULL,NULL,NULL,NULL),(2,85,'1249748a1aeb4f779fc55aa51a3cd2f2',4,'2015-12-02 13:06:46',NULL,48,58,NULL,NULL,NULL,NULL),(2,85,'1249748a1aeb4f779fc55aa51a3cd2f2',6,'2015-12-02 13:40:02',NULL,48,0,NULL,NULL,'30','39'),(2,85,'1249748a1aeb4f779fc55aa51a3cd2f2',6,'2015-12-02 13:49:31',NULL,48,0,'75','85',NULL,NULL),(2,85,'1249748a1aeb4f779fc55aa51a3cd2f2',5,'2015-12-02 13:48:17',NULL,48,80,NULL,NULL,NULL,NULL),(2,85,'1249748a1aeb4f779fc55aa51a3cd2f2',9,'2015-12-02 13:13:37','日本料理',48,0,NULL,NULL,NULL,NULL),(2,85,'1249748a1aeb4f779fc55aa51a3cd2f2',8,'2015-12-02 13:11:26',NULL,48,0,NULL,NULL,'98','11'),(2,85,'1249748a1aeb4f779fc55aa51a3cd2f2',9,'2015-12-02 13:11:21',NULL,48,0,'87','64',NULL,NULL),(2,85,'1249748a1aeb4f779fc55aa51a3cd2f2',5,'2015-12-02 13:37:56','火锅',48,0,NULL,NULL,NULL,NULL),(2,85,'1249748a1aeb4f779fc55aa51a3cd2f2',1,'2015-12-02 13:08:34','火锅',48,0,NULL,NULL,NULL,NULL),(2,85,'1249748a1aeb4f779fc55aa51a3cd2f2',5,'2015-12-02 13:30:22',NULL,48,73,NULL,NULL,NULL,NULL),(2,85,'1249748a1aeb4f779fc55aa51a3cd2f2',8,'2015-12-02 13:58:53','温泉',48,0,NULL,NULL,NULL,NULL),(2,85,'1249748a1aeb4f779fc55aa51a3cd2f2',7,'2015-12-02 13:07:47',NULL,48,0,'92','9',NULL,NULL),(2,85,'1249748a1aeb4f779fc55aa51a3cd2f2',7,'2015-12-02 13:54:46',NULL,48,0,NULL,NULL,'81','65'),(2,85,'1249748a1aeb4f779fc55aa51a3cd2f2',1,'2015-12-02 13:41:01',NULL,48,0,NULL,NULL,'43','73'),(2,85,'1249748a1aeb4f779fc55aa51a3cd2f2',6,'2015-12-02 13:46:07',NULL,48,0,NULL,NULL,'82','32'),(2,85,'1249748a1aeb4f779fc55aa51a3cd2f2',9,'2015-12-02 13:53:36',NULL,48,72,NULL,NULL,NULL,NULL),(2,85,'1249748a1aeb4f779fc55aa51a3cd2f2',2,'2015-12-02 13:52:06',NULL,48,0,'17','55',NULL,NULL),(2,85,'1249748a1aeb4f779fc55aa51a3cd2f2',0,'2015-12-02 13:20:29','重庆小面',48,0,NULL,NULL,NULL,NULL),(2,99,'4285ebf7dc2d4418bbc8abef2d360d59',4,'2015-12-02 7:29:03','重庆小面',0,0,NULL,NULL,NULL,NULL),(2,99,'4285ebf7dc2d4418bbc8abef2d360d59',1,'2015-12-02 7:51:37',NULL,0,0,'6','42',NULL,NULL),(2,99,'4285ebf7dc2d4418bbc8abef2d360d59',9,'2015-12-02 7:04:28',NULL,60,33,NULL,NULL,NULL,NULL),(2,99,'4285ebf7dc2d4418bbc8abef2d360d59',3,'2015-12-02 7:12:48',NULL,60,38,NULL,NULL,NULL,NULL),(2,99,'4285ebf7dc2d4418bbc8abef2d360d59',7,'2015-12-02 7:45:26',NULL,60,40,NULL,NULL,NULL,NULL),(2,99,'4285ebf7dc2d4418bbc8abef2d360d59',7,'2015-12-02 7:43:31',NULL,60,5,NULL,NULL,NULL,NULL),(2,99,'4285ebf7dc2d4418bbc8abef2d360d59',5,'2015-12-02 7:17:14',NULL,60,61,NULL,NULL,NULL,NULL),(2,51,'59f0651127b341a7aa5f7b70bced11e2',1,'2015-12-02 12:32:08',NULL,0,0,'53','76',NULL,NULL),(2,51,'59f0651127b341a7aa5f7b70bced11e2',9,'2015-12-02 12:04:14',NULL,0,0,'71','49',NULL,NULL),(2,51,'59f0651127b341a7aa5f7b70bced11e2',3,'2015-12-02 12:16:22',NULL,64,44,NULL,NULL,NULL,NULL),(2,51,'59f0651127b341a7aa5f7b70bced11e2',2,'2015-12-02 12:01:18',NULL,64,0,NULL,NULL,'16','58'),(2,51,'59f0651127b341a7aa5f7b70bced11e2',7,'2015-12-02 12:08:00',NULL,64,0,'50','61',NULL,NULL),(2,51,'59f0651127b341a7aa5f7b70bced11e2',7,'2015-12-02 12:43:05',NULL,64,0,'67','43',NULL,NULL),(2,51,'59f0651127b341a7aa5f7b70bced11e2',7,'2015-12-02 12:49:21',NULL,64,17,NULL,NULL,NULL,NULL),(2,51,'59f0651127b341a7aa5f7b70bced11e2',7,'2015-12-02 12:15:01','新辣道鱼火锅',64,0,NULL,NULL,NULL,NULL),(2,51,'59f0651127b341a7aa5f7b70bced11e2',1,'2015-12-02 12:34:46','蛋糕',64,0,NULL,NULL,NULL,NULL),(2,51,'59f0651127b341a7aa5f7b70bced11e2',4,'2015-12-02 12:49:18',NULL,64,16,NULL,NULL,NULL,NULL),(2,51,'59f0651127b341a7aa5f7b70bced11e2',3,'2015-12-02 12:07:26',NULL,64,19,NULL,NULL,NULL,NULL),(2,51,'59f0651127b341a7aa5f7b70bced11e2',4,'2015-12-02 12:10:47',NULL,64,0,NULL,NULL,'19','22'),(2,13,'f95c6a6218e84f5d978397d6463bc752',0,'2015-12-02 15:56:46',NULL,1,55,NULL,NULL,NULL,NULL),(2,13,'f95c6a6218e84f5d978397d6463bc752',3,'2015-12-02 15:46:27',NULL,1,0,'0','98',NULL,NULL),(2,13,'f95c6a6218e84f5d978397d6463bc752',0,'2015-12-02 15:42:22','重庆辣子鸡',1,0,NULL,NULL,NULL,NULL),(2,13,'f95c6a6218e84f5d978397d6463bc752',4,'2015-12-02 15:12:37',NULL,1,0,NULL,NULL,NULL,NULL),(2,13,'f95c6a6218e84f5d978397d6463bc752',6,'2015-12-02 15:03:19',NULL,1,0,'31','77',NULL,NULL),(2,13,'f95c6a6218e84f5d978397d6463bc752',5,'2015-12-02 15:57:03','蛋糕',1,0,NULL,NULL,NULL,NULL),(2,13,'f95c6a6218e84f5d978397d6463bc752',3,'2015-12-02 15:02:17',NULL,1,72,NULL,NULL,NULL,NULL),(2,13,'f95c6a6218e84f5d978397d6463bc752',7,'2015-12-02 15:35:21',NULL,1,0,NULL,NULL,'56','78'),(2,13,'f95c6a6218e84f5d978397d6463bc752',9,'2015-12-02 15:48:39','重庆小面',1,0,NULL,NULL,NULL,NULL),(2,13,'f95c6a6218e84f5d978397d6463bc752',5,'2015-12-02 15:20:51','重庆小面',1,0,NULL,NULL,NULL,NULL),(2,13,'f95c6a6218e84f5d978397d6463bc752',1,'2015-12-02 15:55:58',NULL,1,84,NULL,NULL,NULL,NULL),(2,13,'f95c6a6218e84f5d978397d6463bc752',9,'2015-12-02 15:07:55',NULL,1,0,'57','67',NULL,NULL),(2,13,'f95c6a6218e84f5d978397d6463bc752',0,'2015-12-02 15:37:06',NULL,1,0,'11','26',NULL,NULL),(2,13,'f95c6a6218e84f5d978397d6463bc752',0,'2015-12-02 15:28:35',NULL,1,0,'46','2',NULL,NULL),(2,13,'f95c6a6218e84f5d978397d6463bc752',7,'2015-12-02 15:33:40',NULL,1,0,NULL,NULL,'49','0'),(2,13,'f95c6a6218e84f5d978397d6463bc752',6,'2015-12-02 15:58:49',NULL,1,0,NULL,NULL,'13','95'),(2,13,'f95c6a6218e84f5d978397d6463bc752',5,'2015-12-02 15:53:31',NULL,1,0,NULL,NULL,'69','89'),(2,13,'f95c6a6218e84f5d978397d6463bc752',1,'2015-12-02 15:48:55',NULL,1,0,'6','10',NULL,NULL),(2,13,'f95c6a6218e84f5d978397d6463bc752',7,'2015-12-02 15:58:46',NULL,1,0,NULL,NULL,'27','67'),(2,13,'f95c6a6218e84f5d978397d6463bc752',2,'2015-12-02 15:24:29','重庆辣子鸡',1,0,NULL,NULL,NULL,NULL),(2,13,'f95c6a6218e84f5d978397d6463bc752',8,'2015-12-02 15:43:17',NULL,1,0,'65','82',NULL,NULL),(2,85,'f1a60055d46241289200895bb17dbebb',0,'2015-12-02 14:02:56',NULL,69,76,NULL,NULL,NULL,NULL),(2,85,'f1a60055d46241289200895bb17dbebb',3,'2015-12-02 14:14:52',NULL,69,0,'41','85',NULL,NULL),(2,85,'f1a60055d46241289200895bb17dbebb',2,'2015-12-02 14:47:00','重庆小面',69,0,NULL,NULL,NULL,NULL),(2,85,'f1a60055d46241289200895bb17dbebb',7,'2015-12-02 14:19:25','太古商场',69,0,NULL,NULL,NULL,NULL),(2,85,'f1a60055d46241289200895bb17dbebb',1,'2015-12-02 14:27:45',NULL,69,0,NULL,NULL,'6','23'),(2,85,'f1a60055d46241289200895bb17dbebb',2,'2015-12-02 14:42:29','日本料理',69,0,NULL,NULL,NULL,NULL),(2,85,'f1a60055d46241289200895bb17dbebb',8,'2015-12-02 14:29:12',NULL,69,62,NULL,NULL,NULL,NULL),(2,85,'f1a60055d46241289200895bb17dbebb',5,'2015-12-02 14:51:39',NULL,69,0,NULL,NULL,'6','7'),(2,85,'f1a60055d46241289200895bb17dbebb',8,'2015-12-02 14:22:27',NULL,69,0,NULL,NULL,'10','56'),(2,77,'4ed21da429484cc48646663c2b211bae',8,'2015-12-02 0:46:53',NULL,0,0,'91','67',NULL,NULL),(2,77,'4ed21da429484cc48646663c2b211bae',9,'2015-12-02 0:05:05',NULL,0,0,'62','48',NULL,NULL),(2,77,'4ed21da429484cc48646663c2b211bae',5,'2015-12-02 0:22:36',NULL,0,0,NULL,NULL,'66','8'),(2,77,'4ed21da429484cc48646663c2b211bae',4,'2015-12-02 0:50:10','蛋糕',0,0,NULL,NULL,NULL,NULL),(2,77,'4ed21da429484cc48646663c2b211bae',7,'2015-12-02 0:06:15',NULL,78,12,NULL,NULL,NULL,NULL),(2,77,'4ed21da429484cc48646663c2b211bae',8,'2015-12-02 0:21:54',NULL,78,0,'7','31',NULL,NULL),(2,77,'4ed21da429484cc48646663c2b211bae',3,'2015-12-02 0:38:22',NULL,78,0,'48','99',NULL,NULL),(2,77,'4ed21da429484cc48646663c2b211bae',6,'2015-12-02 0:12:29','温泉',78,0,NULL,NULL,NULL,NULL),(2,77,'4ed21da429484cc48646663c2b211bae',7,'2015-12-02 0:00:49','国贸大厦',78,0,NULL,NULL,NULL,NULL),(2,77,'4ed21da429484cc48646663c2b211bae',0,'2015-12-02 0:40:04',NULL,78,0,'2','54',NULL,NULL),(2,77,'4ed21da429484cc48646663c2b211bae',7,'2015-12-02 0:12:26',NULL,78,0,'59','67',NULL,NULL),(2,77,'4ed21da429484cc48646663c2b211bae',5,'2015-12-02 0:26:11',NULL,78,54,NULL,NULL,NULL,NULL),(2,77,'4ed21da429484cc48646663c2b211bae',1,'2015-12-02 0:24:19',NULL,78,7,NULL,NULL,NULL,NULL),(2,77,'4ed21da429484cc48646663c2b211bae',9,'2015-12-02 0:34:39',NULL,78,11,NULL,NULL,NULL,NULL),(2,77,'4ed21da429484cc48646663c2b211bae',5,'2015-12-02 0:02:10','火锅',78,0,NULL,NULL,NULL,NULL),(2,77,'4ed21da429484cc48646663c2b211bae',9,'2015-12-02 0:43:14',NULL,78,44,NULL,NULL,NULL,NULL),(2,77,'4ed21da429484cc48646663c2b211bae',5,'2015-12-02 0:43:16',NULL,78,0,NULL,NULL,'8','86'),(2,77,'4ed21da429484cc48646663c2b211bae',5,'2015-12-02 0:43:11',NULL,78,52,NULL,NULL,NULL,NULL),(2,77,'4ed21da429484cc48646663c2b211bae',7,'2015-12-02 0:20:11',NULL,78,0,'51','78',NULL,NULL),(2,77,'4ed21da429484cc48646663c2b211bae',5,'2015-12-02 0:44:00',NULL,78,0,NULL,NULL,'71','2'),(2,77,'4ed21da429484cc48646663c2b211bae',7,'2015-12-02 0:35:39','太古商场',78,0,NULL,NULL,NULL,NULL),(2,77,'4ed21da429484cc48646663c2b211bae',8,'2015-12-02 0:38:19',NULL,78,0,NULL,NULL,'23','65'),(2,77,'4ed21da429484cc48646663c2b211bae',9,'2015-12-02 0:13:03','重庆小面',78,0,NULL,NULL,NULL,NULL),(2,77,'4ed21da429484cc48646663c2b211bae',9,'2015-12-02 0:26:52',NULL,78,0,NULL,NULL,'10','87'),(2,77,'4ed21da429484cc48646663c2b211bae',3,'2015-12-02 0:41:43',NULL,78,0,NULL,NULL,'56','11'),(2,77,'4ed21da429484cc48646663c2b211bae',6,'2015-12-02 0:07:16',NULL,78,0,NULL,NULL,'14','99'),(2,77,'4ed21da429484cc48646663c2b211bae',3,'2015-12-02 0:17:38',NULL,78,0,NULL,NULL,'82','24'),(2,29,'87849f405394487885bb0b874855f79f',6,'2015-12-02 18:44:36',NULL,78,85,NULL,NULL,NULL,NULL),(2,29,'87849f405394487885bb0b874855f79f',5,'2015-12-02 18:01:26',NULL,78,39,NULL,NULL,NULL,NULL),(2,29,'87849f405394487885bb0b874855f79f',6,'2015-12-02 18:15:32','呷哺呷哺',78,0,NULL,NULL,NULL,NULL),(2,29,'87849f405394487885bb0b874855f79f',6,'2015-12-02 18:39:20',NULL,78,0,'63','44',NULL,NULL),(2,29,'87849f405394487885bb0b874855f79f',8,'2015-12-02 18:16:47',NULL,78,0,NULL,NULL,'76','29'),(2,29,'87849f405394487885bb0b874855f79f',3,'2015-12-02 18:39:07',NULL,78,0,'49','27',NULL,NULL),(2,29,'87849f405394487885bb0b874855f79f',7,'2015-12-02 18:03:05',NULL,78,0,'28','95',NULL,NULL),(2,29,'87849f405394487885bb0b874855f79f',7,'2015-12-02 18:56:23',NULL,78,0,'41','14',NULL,NULL),(2,29,'87849f405394487885bb0b874855f79f',4,'2015-12-02 18:30:16',NULL,78,0,NULL,NULL,'5','28'),(2,79,'85c7caf3a2b645f49f87e2831169e83b',6,'2015-12-02 16:34:46','重庆小面',0,0,NULL,NULL,NULL,NULL),(2,79,'85c7caf3a2b645f49f87e2831169e83b',9,'2015-12-02 16:54:26',NULL,41,13,NULL,NULL,NULL,NULL),(2,79,'85c7caf3a2b645f49f87e2831169e83b',1,'2015-12-02 16:58:41','温泉',41,0,NULL,NULL,NULL,NULL),(2,79,'85c7caf3a2b645f49f87e2831169e83b',5,'2015-12-02 16:03:32','呷哺呷哺',41,0,NULL,NULL,NULL,NULL),(2,79,'85c7caf3a2b645f49f87e2831169e83b',9,'2015-12-02 16:49:32',NULL,41,37,NULL,NULL,NULL,NULL),(2,79,'85c7caf3a2b645f49f87e2831169e83b',2,'2015-12-02 16:56:39','日本料理',41,0,NULL,NULL,NULL,NULL),(2,79,'85c7caf3a2b645f49f87e2831169e83b',3,'2015-12-02 16:30:52','重庆辣子鸡',41,0,NULL,NULL,NULL,NULL),(2,6,'e6efe9abf46e455092668495b2162f37',8,'2015-12-02 13:33:07','太古商场',0,0,NULL,NULL,NULL,NULL),(2,6,'e6efe9abf46e455092668495b2162f37',0,'2015-12-02 13:48:43',NULL,46,22,NULL,NULL,NULL,NULL),(2,6,'e6efe9abf46e455092668495b2162f37',1,'2015-12-02 13:14:36',NULL,46,2,NULL,NULL,NULL,NULL),(2,6,'e6efe9abf46e455092668495b2162f37',7,'2015-12-02 13:33:38','新辣道鱼火锅',46,0,NULL,NULL,NULL,NULL),(2,6,'e6efe9abf46e455092668495b2162f37',5,'2015-12-02 13:32:08',NULL,46,0,'48','95',NULL,NULL),(2,6,'e6efe9abf46e455092668495b2162f37',1,'2015-12-02 13:42:53',NULL,46,0,'12','21',NULL,NULL),(2,6,'e6efe9abf46e455092668495b2162f37',9,'2015-12-02 13:17:20',NULL,46,24,NULL,NULL,NULL,NULL),(2,6,'e6efe9abf46e455092668495b2162f37',2,'2015-12-02 13:56:56',NULL,46,0,'56','55',NULL,NULL),(2,6,'e6efe9abf46e455092668495b2162f37',8,'2015-12-02 13:42:02','太古商场',46,0,NULL,NULL,NULL,NULL),(2,6,'e6efe9abf46e455092668495b2162f37',8,'2015-12-02 13:34:04',NULL,46,93,NULL,NULL,NULL,NULL),(2,6,'e6efe9abf46e455092668495b2162f37',5,'2015-12-02 13:38:50','日本料理',46,0,NULL,NULL,NULL,NULL),(2,6,'e6efe9abf46e455092668495b2162f37',8,'2015-12-02 13:08:21','新辣道鱼火锅',46,0,NULL,NULL,NULL,NULL),(2,39,'9cb4e3495d6f40ada65c517e2b5d55c5',8,'2015-12-02 9:31:24','温泉',0,0,NULL,NULL,NULL,NULL),(2,39,'9cb4e3495d6f40ada65c517e2b5d55c5',3,'2015-12-02 9:17:19',NULL,41,30,NULL,NULL,NULL,NULL),(2,39,'9cb4e3495d6f40ada65c517e2b5d55c5',3,'2015-12-02 9:00:00',NULL,41,85,NULL,NULL,NULL,NULL),(2,39,'9cb4e3495d6f40ada65c517e2b5d55c5',1,'2015-12-02 9:18:24',NULL,41,0,'46','30',NULL,NULL),(2,39,'9cb4e3495d6f40ada65c517e2b5d55c5',4,'2015-12-02 9:50:05','新辣道鱼火锅',41,0,NULL,NULL,NULL,NULL),(2,39,'9cb4e3495d6f40ada65c517e2b5d55c5',7,'2015-12-02 9:26:25','新辣道鱼火锅',41,0,NULL,NULL,NULL,NULL),(2,39,'9cb4e3495d6f40ada65c517e2b5d55c5',6,'2015-12-02 9:18:18',NULL,41,0,NULL,NULL,'15','76'),(2,39,'9cb4e3495d6f40ada65c517e2b5d55c5',3,'2015-12-02 9:06:55',NULL,41,0,NULL,NULL,'31','82'),(2,39,'9cb4e3495d6f40ada65c517e2b5d55c5',7,'2015-12-02 9:33:52','日本料理',41,0,NULL,NULL,NULL,NULL),(2,39,'9cb4e3495d6f40ada65c517e2b5d55c5',2,'2015-12-02 9:02:24',NULL,41,27,NULL,NULL,NULL,NULL),(2,39,'9cb4e3495d6f40ada65c517e2b5d55c5',3,'2015-12-02 9:44:52','国贸大厦',41,0,NULL,NULL,NULL,NULL),(2,39,'9cb4e3495d6f40ada65c517e2b5d55c5',4,'2015-12-02 9:53:56',NULL,41,0,'24','91',NULL,NULL),(2,39,'9cb4e3495d6f40ada65c517e2b5d55c5',3,'2015-12-02 9:14:23','火锅',41,0,NULL,NULL,NULL,NULL),(2,59,'0bf9fe3b60b94400ac60927e6d601648',8,'2015-12-02 7:01:05',NULL,0,0,NULL,NULL,'98','80'),(2,59,'0bf9fe3b60b94400ac60927e6d601648',7,'2015-12-02 7:26:49',NULL,0,0,NULL,NULL,'83','18'),(2,59,'0bf9fe3b60b94400ac60927e6d601648',7,'2015-12-02 7:38:19',NULL,78,19,NULL,NULL,NULL,NULL),(2,59,'0bf9fe3b60b94400ac60927e6d601648',0,'2015-12-02 7:02:13',NULL,78,0,'70','81',NULL,NULL),(2,59,'0bf9fe3b60b94400ac60927e6d601648',2,'2015-12-02 7:51:14','呷哺呷哺',78,0,NULL,NULL,NULL,NULL),(2,59,'0bf9fe3b60b94400ac60927e6d601648',3,'2015-12-02 7:38:23',NULL,78,0,'53','37',NULL,NULL),(2,59,'0bf9fe3b60b94400ac60927e6d601648',9,'2015-12-02 7:39:09',NULL,78,0,'53','69',NULL,NULL),(2,59,'0bf9fe3b60b94400ac60927e6d601648',1,'2015-12-02 7:06:31',NULL,78,88,NULL,NULL,NULL,NULL),(2,59,'0bf9fe3b60b94400ac60927e6d601648',3,'2015-12-02 7:51:35','重庆辣子鸡',78,0,NULL,NULL,NULL,NULL),(2,59,'0bf9fe3b60b94400ac60927e6d601648',2,'2015-12-02 7:18:13',NULL,78,0,NULL,NULL,'25','59'),(2,59,'0bf9fe3b60b94400ac60927e6d601648',2,'2015-12-02 7:25:10',NULL,78,0,'34','79',NULL,NULL),(2,59,'0bf9fe3b60b94400ac60927e6d601648',4,'2015-12-02 7:51:14','国贸大厦',78,0,NULL,NULL,NULL,NULL),(2,59,'0bf9fe3b60b94400ac60927e6d601648',1,'2015-12-02 7:01:50','重庆辣子鸡',78,0,NULL,NULL,NULL,NULL),(2,59,'0bf9fe3b60b94400ac60927e6d601648',6,'2015-12-02 7:43:04','重庆辣子鸡',78,0,NULL,NULL,NULL,NULL),(2,35,'7e2ec15a914041d4aa03df68cf3db034',7,'2015-12-02 18:04:58',NULL,0,0,NULL,NULL,'88','20'),(2,35,'7e2ec15a914041d4aa03df68cf3db034',2,'2015-12-02 18:08:03',NULL,0,0,'43','10',NULL,NULL),(2,35,'7e2ec15a914041d4aa03df68cf3db034',7,'2015-12-02 18:36:30',NULL,0,0,'13','16',NULL,NULL),(2,35,'7e2ec15a914041d4aa03df68cf3db034',8,'2015-12-02 18:43:15',NULL,69,9,NULL,NULL,NULL,NULL),(2,35,'7e2ec15a914041d4aa03df68cf3db034',5,'2015-12-02 18:01:14','重庆小面',69,0,NULL,NULL,NULL,NULL),(2,35,'7e2ec15a914041d4aa03df68cf3db034',1,'2015-12-02 18:48:18',NULL,69,58,NULL,NULL,NULL,NULL),(2,35,'7e2ec15a914041d4aa03df68cf3db034',5,'2015-12-02 18:26:14','重庆辣子鸡',69,0,NULL,NULL,NULL,NULL),(2,35,'7e2ec15a914041d4aa03df68cf3db034',9,'2015-12-02 18:07:28',NULL,69,0,NULL,NULL,'92','50'),(2,35,'7e2ec15a914041d4aa03df68cf3db034',2,'2015-12-02 18:46:16',NULL,69,0,'27','48',NULL,NULL),(2,35,'7e2ec15a914041d4aa03df68cf3db034',6,'2015-12-02 18:10:44',NULL,69,0,'79','58',NULL,NULL),(2,35,'7e2ec15a914041d4aa03df68cf3db034',7,'2015-12-02 18:40:45',NULL,69,75,NULL,NULL,NULL,NULL),(2,35,'7e2ec15a914041d4aa03df68cf3db034',6,'2015-12-02 18:23:01','太古商场',69,0,NULL,NULL,NULL,NULL),(2,35,'7e2ec15a914041d4aa03df68cf3db034',4,'2015-12-02 18:14:07',NULL,69,0,NULL,NULL,'95','97'),(2,35,'7e2ec15a914041d4aa03df68cf3db034',6,'2015-12-02 18:32:47','呷哺呷哺',69,0,NULL,NULL,NULL,NULL),(2,35,'7e2ec15a914041d4aa03df68cf3db034',7,'2015-12-02 18:33:14',NULL,69,31,NULL,NULL,NULL,NULL),(2,35,'7e2ec15a914041d4aa03df68cf3db034',5,'2015-12-02 18:41:57','呷哺呷哺',69,0,NULL,NULL,NULL,NULL),(2,35,'7e2ec15a914041d4aa03df68cf3db034',2,'2015-12-02 18:12:56',NULL,69,0,NULL,NULL,'23','32'),(2,35,'7e2ec15a914041d4aa03df68cf3db034',6,'2015-12-02 18:39:22',NULL,69,0,NULL,NULL,'91','70'),(2,35,'7e2ec15a914041d4aa03df68cf3db034',4,'2015-12-02 18:40:19',NULL,69,0,NULL,NULL,'72','99'),(2,35,'7e2ec15a914041d4aa03df68cf3db034',6,'2015-12-02 18:10:02',NULL,69,0,NULL,NULL,'63','83'),(2,35,'7e2ec15a914041d4aa03df68cf3db034',5,'2015-12-02 18:33:54',NULL,69,55,NULL,NULL,NULL,NULL),(2,35,'7e2ec15a914041d4aa03df68cf3db034',4,'2015-12-02 18:00:33',NULL,69,0,'71','48',NULL,NULL),(2,35,'7e2ec15a914041d4aa03df68cf3db034',8,'2015-12-02 18:20:39',NULL,69,0,'23','24',NULL,NULL),(2,88,'736164f5b4544338bac81945d6bbe64f',1,'2015-12-02 15:10:48','呷哺呷哺',0,0,NULL,NULL,NULL,NULL),(2,88,'736164f5b4544338bac81945d6bbe64f',1,'2015-12-02 15:06:38',NULL,0,0,NULL,NULL,'9','45'),(2,88,'736164f5b4544338bac81945d6bbe64f',9,'2015-12-02 15:21:30',NULL,0,0,'93','26',NULL,NULL),(2,88,'736164f5b4544338bac81945d6bbe64f',7,'2015-12-02 15:15:53',NULL,41,67,NULL,NULL,NULL,NULL),(2,88,'736164f5b4544338bac81945d6bbe64f',5,'2015-12-02 15:01:55',NULL,41,0,'73','61',NULL,NULL),(2,88,'736164f5b4544338bac81945d6bbe64f',7,'2015-12-02 15:49:40',NULL,41,64,NULL,NULL,NULL,NULL),(2,88,'736164f5b4544338bac81945d6bbe64f',8,'2015-12-02 15:34:00',NULL,41,12,NULL,NULL,NULL,NULL),(2,88,'736164f5b4544338bac81945d6bbe64f',0,'2015-12-02 15:57:52',NULL,41,54,NULL,NULL,NULL,NULL),(2,88,'736164f5b4544338bac81945d6bbe64f',9,'2015-12-02 15:08:18','重庆小面',41,0,NULL,NULL,NULL,NULL),(2,88,'736164f5b4544338bac81945d6bbe64f',7,'2015-12-02 15:48:45','国贸大厦',41,0,NULL,NULL,NULL,NULL),(2,88,'736164f5b4544338bac81945d6bbe64f',4,'2015-12-02 15:46:37',NULL,41,0,NULL,NULL,'69','93'),(2,88,'736164f5b4544338bac81945d6bbe64f',2,'2015-12-02 15:10:13',NULL,41,0,'12','95',NULL,NULL),(2,88,'736164f5b4544338bac81945d6bbe64f',9,'2015-12-02 15:28:53',NULL,41,21,NULL,NULL,NULL,NULL),(2,88,'736164f5b4544338bac81945d6bbe64f',7,'2015-12-02 15:28:32',NULL,41,0,'68','29',NULL,NULL),(2,88,'736164f5b4544338bac81945d6bbe64f',3,'2015-12-02 15:26:09',NULL,41,0,'46','62',NULL,NULL),(2,11,'c0dc2334bf81443b80b18fd31b133091',0,'2015-12-02 15:08:12',NULL,0,0,'78','38',NULL,NULL),(2,11,'c0dc2334bf81443b80b18fd31b133091',6,'2015-12-02 15:50:21',NULL,0,0,'17','1',NULL,NULL),(2,11,'c0dc2334bf81443b80b18fd31b133091',7,'2015-12-02 15:45:22','呷哺呷哺',0,0,NULL,NULL,NULL,NULL),(2,11,'c0dc2334bf81443b80b18fd31b133091',6,'2015-12-02 15:18:22',NULL,46,76,NULL,NULL,NULL,NULL),(2,11,'c0dc2334bf81443b80b18fd31b133091',9,'2015-12-02 15:54:00',NULL,46,81,NULL,NULL,NULL,NULL),(2,11,'c0dc2334bf81443b80b18fd31b133091',0,'2015-12-02 15:43:40','日本料理',46,0,NULL,NULL,NULL,NULL),(2,11,'c0dc2334bf81443b80b18fd31b133091',4,'2015-12-02 15:57:55',NULL,46,37,NULL,NULL,NULL,NULL),(2,11,'c0dc2334bf81443b80b18fd31b133091',1,'2015-12-02 15:34:08',NULL,46,82,NULL,NULL,NULL,NULL),(2,11,'c0dc2334bf81443b80b18fd31b133091',9,'2015-12-02 15:06:24','太古商场',46,0,NULL,NULL,NULL,NULL),(2,11,'c0dc2334bf81443b80b18fd31b133091',3,'2015-12-02 15:25:48',NULL,46,0,NULL,NULL,'66','20'),(2,11,'c0dc2334bf81443b80b18fd31b133091',1,'2015-12-02 15:49:27',NULL,46,90,NULL,NULL,NULL,NULL),(2,11,'c0dc2334bf81443b80b18fd31b133091',1,'2015-12-02 15:22:19',NULL,46,37,NULL,NULL,NULL,NULL),(2,11,'c0dc2334bf81443b80b18fd31b133091',4,'2015-12-02 15:51:38',NULL,46,0,'41','15',NULL,NULL),(2,11,'c0dc2334bf81443b80b18fd31b133091',5,'2015-12-02 15:45:00',NULL,46,25,NULL,NULL,NULL,NULL),(2,11,'c0dc2334bf81443b80b18fd31b133091',6,'2015-12-02 15:04:49',NULL,46,0,NULL,NULL,'41','83'),(2,11,'c0dc2334bf81443b80b18fd31b133091',3,'2015-12-02 15:19:05',NULL,46,0,NULL,NULL,'58','59'),(2,11,'c0dc2334bf81443b80b18fd31b133091',5,'2015-12-02 15:37:51',NULL,46,0,'43','94',NULL,NULL),(2,11,'c0dc2334bf81443b80b18fd31b133091',1,'2015-12-02 15:55:15',NULL,46,79,NULL,NULL,NULL,NULL),(2,11,'c0dc2334bf81443b80b18fd31b133091',6,'2015-12-02 15:37:04','呷哺呷哺',46,0,NULL,NULL,NULL,NULL),(2,11,'c0dc2334bf81443b80b18fd31b133091',2,'2015-12-02 15:03:16',NULL,46,0,NULL,NULL,'71','30'),(2,11,'c0dc2334bf81443b80b18fd31b133091',2,'2015-12-02 15:24:09',NULL,46,0,'39','4',NULL,NULL),(2,88,'1571bdd529fb407bbe4902850cdd2e57',0,'2015-12-02 5:49:06',NULL,0,0,'64','21',NULL,NULL),(2,88,'1571bdd529fb407bbe4902850cdd2e57',1,'2015-12-02 5:31:13',NULL,0,0,'21','71',NULL,NULL),(2,88,'1571bdd529fb407bbe4902850cdd2e57',9,'2015-12-02 5:10:21',NULL,64,57,NULL,NULL,NULL,NULL),(2,88,'1571bdd529fb407bbe4902850cdd2e57',2,'2015-12-02 5:07:49','重庆小面',64,0,NULL,NULL,NULL,NULL),(2,88,'1571bdd529fb407bbe4902850cdd2e57',2,'2015-12-02 5:35:38',NULL,64,19,NULL,NULL,NULL,NULL),(2,88,'1571bdd529fb407bbe4902850cdd2e57',7,'2015-12-02 5:45:44',NULL,64,0,'97','89',NULL,NULL),(2,88,'1571bdd529fb407bbe4902850cdd2e57',2,'2015-12-02 5:47:01',NULL,64,0,NULL,NULL,'70','50'),(2,88,'1571bdd529fb407bbe4902850cdd2e57',3,'2015-12-02 5:01:44',NULL,64,62,NULL,NULL,NULL,NULL),(2,88,'1571bdd529fb407bbe4902850cdd2e57',1,'2015-12-02 5:16:44',NULL,64,65,NULL,NULL,NULL,NULL),(2,88,'1571bdd529fb407bbe4902850cdd2e57',4,'2015-12-02 5:42:42',NULL,64,0,'80','91',NULL,NULL),(2,88,'1571bdd529fb407bbe4902850cdd2e57',1,'2015-12-02 5:03:21',NULL,64,29,NULL,NULL,NULL,NULL),(2,88,'1571bdd529fb407bbe4902850cdd2e57',0,'2015-12-02 5:52:37',NULL,64,0,'20','30',NULL,NULL),(2,88,'1571bdd529fb407bbe4902850cdd2e57',8,'2015-12-02 5:08:17',NULL,64,0,NULL,NULL,'93','74'),(2,88,'1571bdd529fb407bbe4902850cdd2e57',8,'2015-12-02 5:27:45','重庆辣子鸡',64,0,NULL,NULL,NULL,NULL),(2,88,'1571bdd529fb407bbe4902850cdd2e57',3,'2015-12-02 5:55:10','温泉',64,0,NULL,NULL,NULL,NULL),(2,88,'1571bdd529fb407bbe4902850cdd2e57',8,'2015-12-02 5:40:48',NULL,64,45,NULL,NULL,NULL,NULL),(2,88,'1571bdd529fb407bbe4902850cdd2e57',4,'2015-12-02 5:42:36',NULL,64,0,'51','85',NULL,NULL),(2,88,'1571bdd529fb407bbe4902850cdd2e57',3,'2015-12-02 5:56:21',NULL,64,57,NULL,NULL,NULL,NULL),(2,4,'26e9f988f754415cb1c4aab44be79cb9',0,'2015-12-02 8:48:27',NULL,1,83,NULL,NULL,NULL,NULL),(2,4,'26e9f988f754415cb1c4aab44be79cb9',7,'2015-12-02 8:27:03',NULL,1,0,'64','22',NULL,NULL),(2,4,'26e9f988f754415cb1c4aab44be79cb9',2,'2015-12-02 8:28:48','蛋糕',1,0,NULL,NULL,NULL,NULL),(2,4,'26e9f988f754415cb1c4aab44be79cb9',7,'2015-12-02 8:05:40','火锅',1,0,NULL,NULL,NULL,NULL),(2,4,'26e9f988f754415cb1c4aab44be79cb9',7,'2015-12-02 8:07:53',NULL,1,0,'48','8',NULL,NULL),(2,4,'26e9f988f754415cb1c4aab44be79cb9',8,'2015-12-02 8:45:07',NULL,1,0,'50','84',NULL,NULL),(2,4,'26e9f988f754415cb1c4aab44be79cb9',1,'2015-12-02 8:11:04',NULL,1,62,NULL,NULL,NULL,NULL),(2,4,'26e9f988f754415cb1c4aab44be79cb9',4,'2015-12-02 8:23:31',NULL,1,0,'46','74',NULL,NULL),(2,4,'26e9f988f754415cb1c4aab44be79cb9',5,'2015-12-02 8:02:18',NULL,1,72,NULL,NULL,NULL,NULL),(2,4,'26e9f988f754415cb1c4aab44be79cb9',6,'2015-12-02 8:42:57','重庆辣子鸡',1,0,NULL,NULL,NULL,NULL),(2,4,'26e9f988f754415cb1c4aab44be79cb9',6,'2015-12-02 8:13:36',NULL,1,0,NULL,NULL,'7','77'),(2,4,'26e9f988f754415cb1c4aab44be79cb9',7,'2015-12-02 8:35:37',NULL,1,0,NULL,NULL,'63','56'),(2,4,'26e9f988f754415cb1c4aab44be79cb9',0,'2015-12-02 8:47:20',NULL,1,64,NULL,NULL,NULL,NULL),(2,6,'0944586931f1435c80e974d51056c7f3',3,'2015-12-02 17:06:07',NULL,0,0,NULL,NULL,'61','28'),(2,6,'0944586931f1435c80e974d51056c7f3',0,'2015-12-02 17:11:30',NULL,20,44,NULL,NULL,NULL,NULL),(2,6,'0944586931f1435c80e974d51056c7f3',4,'2015-12-02 17:51:12',NULL,20,0,NULL,NULL,'86','55'),(2,6,'0944586931f1435c80e974d51056c7f3',5,'2015-12-02 17:37:17','太古商场',20,0,NULL,NULL,NULL,NULL),(2,6,'0944586931f1435c80e974d51056c7f3',5,'2015-12-02 17:33:22',NULL,20,0,'84','4',NULL,NULL),(2,91,'e9af50f6499d42549d8667a8a9d8e42b',7,'2015-12-02 15:58:00','呷哺呷哺',0,0,NULL,NULL,NULL,NULL),(2,91,'e9af50f6499d42549d8667a8a9d8e42b',8,'2015-12-02 15:32:42',NULL,0,0,NULL,NULL,'56','54'),(2,91,'e9af50f6499d42549d8667a8a9d8e42b',9,'2015-12-02 15:17:45',NULL,48,76,NULL,NULL,NULL,NULL),(2,91,'e9af50f6499d42549d8667a8a9d8e42b',1,'2015-12-02 15:03:56',NULL,48,0,'87','79',NULL,NULL),(2,91,'e9af50f6499d42549d8667a8a9d8e42b',2,'2015-12-02 15:37:03',NULL,48,0,'19','24',NULL,NULL),(2,91,'e9af50f6499d42549d8667a8a9d8e42b',5,'2015-12-02 15:42:22','呷哺呷哺',48,0,NULL,NULL,NULL,NULL),(2,91,'e9af50f6499d42549d8667a8a9d8e42b',0,'2015-12-02 15:35:38',NULL,48,0,'52','5',NULL,NULL),(2,91,'e9af50f6499d42549d8667a8a9d8e42b',6,'2015-12-02 15:06:05','新辣道鱼火锅',48,0,NULL,NULL,NULL,NULL),(2,91,'e9af50f6499d42549d8667a8a9d8e42b',6,'2015-12-02 15:52:53',NULL,48,0,'67','87',NULL,NULL),(2,91,'e9af50f6499d42549d8667a8a9d8e42b',7,'2015-12-02 15:25:01',NULL,48,36,NULL,NULL,NULL,NULL),(2,91,'e9af50f6499d42549d8667a8a9d8e42b',2,'2015-12-02 15:30:16',NULL,48,0,NULL,NULL,'63','21'),(2,91,'e9af50f6499d42549d8667a8a9d8e42b',4,'2015-12-02 15:41:00',NULL,48,0,NULL,NULL,'46','57'),(2,91,'e9af50f6499d42549d8667a8a9d8e42b',0,'2015-12-02 15:57:09',NULL,48,0,'31','17',NULL,NULL),(2,91,'e9af50f6499d42549d8667a8a9d8e42b',9,'2015-12-02 15:18:48',NULL,48,65,NULL,NULL,NULL,NULL),(2,91,'e9af50f6499d42549d8667a8a9d8e42b',8,'2015-12-02 15:47:48',NULL,48,0,NULL,NULL,'39','26'),(2,91,'e9af50f6499d42549d8667a8a9d8e42b',3,'2015-12-02 15:43:49',NULL,48,0,'41','91',NULL,NULL),(2,91,'e9af50f6499d42549d8667a8a9d8e42b',9,'2015-12-02 15:07:12','重庆小面',48,0,NULL,NULL,NULL,NULL),(2,91,'e9af50f6499d42549d8667a8a9d8e42b',2,'2015-12-02 15:38:56',NULL,48,60,NULL,NULL,NULL,NULL),(2,91,'e9af50f6499d42549d8667a8a9d8e42b',6,'2015-12-02 15:46:13','日本料理',48,0,NULL,NULL,NULL,NULL),(2,91,'3975eb6a81804d918d43bc1694b731c5',3,'2015-12-02 13:18:01',NULL,0,0,'12','43',NULL,NULL),(2,91,'3975eb6a81804d918d43bc1694b731c5',1,'2015-12-02 13:48:46',NULL,60,66,NULL,NULL,NULL,NULL),(2,91,'3975eb6a81804d918d43bc1694b731c5',7,'2015-12-02 13:04:06',NULL,60,0,'42','93',NULL,NULL),(2,91,'3975eb6a81804d918d43bc1694b731c5',8,'2015-12-02 13:54:21',NULL,60,0,'6','6',NULL,NULL),(2,91,'3975eb6a81804d918d43bc1694b731c5',9,'2015-12-02 13:51:32',NULL,60,0,'40','2',NULL,NULL),(2,91,'3975eb6a81804d918d43bc1694b731c5',4,'2015-12-02 13:55:39',NULL,60,95,NULL,NULL,NULL,NULL),(2,91,'3975eb6a81804d918d43bc1694b731c5',4,'2015-12-02 13:25:21',NULL,60,0,NULL,NULL,'40','9'),(2,91,'3975eb6a81804d918d43bc1694b731c5',1,'2015-12-02 13:25:35',NULL,60,0,NULL,NULL,'51','9'),(2,91,'3975eb6a81804d918d43bc1694b731c5',9,'2015-12-02 13:33:49',NULL,60,80,NULL,NULL,NULL,NULL),(2,91,'3975eb6a81804d918d43bc1694b731c5',0,'2015-12-02 13:21:41','重庆小面',60,0,NULL,NULL,NULL,NULL),(2,91,'3975eb6a81804d918d43bc1694b731c5',9,'2015-12-02 13:17:47','新辣道鱼火锅',60,0,NULL,NULL,NULL,NULL),(2,91,'3975eb6a81804d918d43bc1694b731c5',1,'2015-12-02 13:07:32',NULL,60,0,'1','88',NULL,NULL),(2,4,'5a0e1f845f00460e902ce728578f26be',4,'2015-12-02 10:21:33',NULL,78,51,NULL,NULL,NULL,NULL),(2,4,'5a0e1f845f00460e902ce728578f26be',7,'2015-12-02 10:03:06','重庆辣子鸡',78,0,NULL,NULL,NULL,NULL),(2,4,'5a0e1f845f00460e902ce728578f26be',5,'2015-12-02 10:16:36',NULL,78,0,'40','10',NULL,NULL),(2,77,'c4932368679e413cb30974f38e5c43cc',9,'2015-12-02 10:36:15',NULL,0,0,'82','9',NULL,NULL),(2,77,'c4932368679e413cb30974f38e5c43cc',0,'2015-12-02 10:14:50','日本料理',0,0,NULL,NULL,NULL,NULL),(2,77,'c4932368679e413cb30974f38e5c43cc',5,'2015-12-02 10:52:47',NULL,0,0,'18','68',NULL,NULL),(2,77,'c4932368679e413cb30974f38e5c43cc',7,'2015-12-02 10:10:18',NULL,48,96,NULL,NULL,NULL,NULL),(2,77,'c4932368679e413cb30974f38e5c43cc',9,'2015-12-02 10:22:26',NULL,48,0,NULL,NULL,'21','1'),(2,77,'c4932368679e413cb30974f38e5c43cc',0,'2015-12-02 10:52:48',NULL,48,17,NULL,NULL,NULL,NULL),(2,77,'c4932368679e413cb30974f38e5c43cc',1,'2015-12-02 10:12:44',NULL,48,0,'2','77',NULL,NULL),(2,77,'c4932368679e413cb30974f38e5c43cc',3,'2015-12-02 10:24:55',NULL,48,0,NULL,NULL,'19','75'),(2,77,'c4932368679e413cb30974f38e5c43cc',6,'2015-12-02 10:15:53',NULL,48,89,NULL,NULL,NULL,NULL),(2,77,'c4932368679e413cb30974f38e5c43cc',2,'2015-12-02 10:47:47',NULL,48,0,'32','45',NULL,NULL),(2,77,'c4932368679e413cb30974f38e5c43cc',7,'2015-12-02 10:02:37',NULL,48,0,NULL,NULL,'16','57'),(2,77,'c4932368679e413cb30974f38e5c43cc',9,'2015-12-02 10:26:16',NULL,48,0,NULL,NULL,'46','17'),(2,77,'c4932368679e413cb30974f38e5c43cc',0,'2015-12-02 10:50:11',NULL,48,3,NULL,NULL,NULL,NULL),(2,77,'c4932368679e413cb30974f38e5c43cc',6,'2015-12-02 10:49:54',NULL,48,0,'60','44',NULL,NULL),(2,77,'c4932368679e413cb30974f38e5c43cc',3,'2015-12-02 10:07:35',NULL,48,34,NULL,NULL,NULL,NULL),(2,77,'c4932368679e413cb30974f38e5c43cc',2,'2015-12-02 10:40:22',NULL,48,48,NULL,NULL,NULL,NULL),(2,78,'c1f826b63c904af5a280094d2d79bb34',0,'2015-12-02 8:16:47','太古商场',0,0,NULL,NULL,NULL,NULL),(2,78,'c1f826b63c904af5a280094d2d79bb34',1,'2015-12-02 8:15:49',NULL,41,90,NULL,NULL,NULL,NULL),(2,78,'c1f826b63c904af5a280094d2d79bb34',6,'2015-12-02 8:06:40',NULL,41,62,NULL,NULL,NULL,NULL),(2,78,'c1f826b63c904af5a280094d2d79bb34',0,'2015-12-02 8:43:35',NULL,41,17,NULL,NULL,NULL,NULL),(2,78,'c1f826b63c904af5a280094d2d79bb34',7,'2015-12-02 8:45:24',NULL,41,0,NULL,NULL,'33','1'),(2,78,'c1f826b63c904af5a280094d2d79bb34',7,'2015-12-02 8:24:37',NULL,41,0,NULL,NULL,'17','72'),(2,78,'c1f826b63c904af5a280094d2d79bb34',0,'2015-12-02 8:13:43','新辣道鱼火锅',41,0,NULL,NULL,NULL,NULL),(2,78,'c1f826b63c904af5a280094d2d79bb34',7,'2015-12-02 8:21:03','新辣道鱼火锅',41,0,NULL,NULL,NULL,NULL),(2,78,'c1f826b63c904af5a280094d2d79bb34',0,'2015-12-02 8:38:05','太古商场',41,0,NULL,NULL,NULL,NULL),(2,78,'c1f826b63c904af5a280094d2d79bb34',3,'2015-12-02 8:10:16',NULL,41,0,'92','81',NULL,NULL),(2,78,'c1f826b63c904af5a280094d2d79bb34',8,'2015-12-02 8:35:11','呷哺呷哺',41,0,NULL,NULL,NULL,NULL),(2,78,'c1f826b63c904af5a280094d2d79bb34',2,'2015-12-02 8:23:39',NULL,41,0,'60','17',NULL,NULL),(2,78,'c1f826b63c904af5a280094d2d79bb34',1,'2015-12-02 8:31:37',NULL,41,80,NULL,NULL,NULL,NULL),(2,79,'013107dd7f3442a9992d811d2938726e',0,'2015-12-02 18:30:31',NULL,0,0,NULL,NULL,'91','47'),(2,79,'013107dd7f3442a9992d811d2938726e',2,'2015-12-02 18:56:46','火锅',0,0,NULL,NULL,NULL,NULL),(2,79,'013107dd7f3442a9992d811d2938726e',4,'2015-12-02 18:38:40','火锅',0,0,NULL,NULL,NULL,NULL),(2,79,'013107dd7f3442a9992d811d2938726e',5,'2015-12-02 18:38:47',NULL,0,0,NULL,NULL,'23','25'),(2,79,'013107dd7f3442a9992d811d2938726e',8,'2015-12-02 18:11:12',NULL,0,0,NULL,NULL,'48','20'),(2,79,'013107dd7f3442a9992d811d2938726e',1,'2015-12-02 18:51:37',NULL,41,95,NULL,NULL,NULL,NULL),(2,79,'013107dd7f3442a9992d811d2938726e',4,'2015-12-02 18:35:36','日本料理',41,0,NULL,NULL,NULL,NULL),(2,79,'013107dd7f3442a9992d811d2938726e',2,'2015-12-02 18:25:00',NULL,41,48,NULL,NULL,NULL,NULL),(2,79,'013107dd7f3442a9992d811d2938726e',9,'2015-12-02 18:33:49',NULL,41,50,NULL,NULL,NULL,NULL),(2,79,'013107dd7f3442a9992d811d2938726e',7,'2015-12-02 18:15:01',NULL,41,0,NULL,NULL,'61','30'),(2,79,'013107dd7f3442a9992d811d2938726e',6,'2015-12-02 18:45:05',NULL,41,0,NULL,NULL,'71','89'),(2,79,'013107dd7f3442a9992d811d2938726e',0,'2015-12-02 18:30:49',NULL,41,0,NULL,NULL,'69','81'),(2,79,'013107dd7f3442a9992d811d2938726e',7,'2015-12-02 18:55:44',NULL,41,93,NULL,NULL,NULL,NULL),(2,79,'013107dd7f3442a9992d811d2938726e',8,'2015-12-02 18:54:25',NULL,41,0,NULL,NULL,'89','58'),(2,79,'013107dd7f3442a9992d811d2938726e',9,'2015-12-02 18:00:30',NULL,41,0,'78','10',NULL,NULL),(2,79,'013107dd7f3442a9992d811d2938726e',6,'2015-12-02 18:40:57',NULL,41,0,'48','24',NULL,NULL),(2,79,'013107dd7f3442a9992d811d2938726e',7,'2015-12-02 18:36:39',NULL,41,83,NULL,NULL,NULL,NULL),(2,79,'013107dd7f3442a9992d811d2938726e',0,'2015-12-02 18:13:24',NULL,41,0,NULL,NULL,'72','84'),(2,79,'013107dd7f3442a9992d811d2938726e',9,'2015-12-02 18:48:11',NULL,41,7,NULL,NULL,NULL,NULL),(2,79,'013107dd7f3442a9992d811d2938726e',2,'2015-12-02 18:55:40',NULL,41,78,NULL,NULL,NULL,NULL),(2,79,'013107dd7f3442a9992d811d2938726e',2,'2015-12-02 18:58:14','日本料理',41,0,NULL,NULL,NULL,NULL),(2,79,'013107dd7f3442a9992d811d2938726e',3,'2015-12-02 18:28:10','新辣道鱼火锅',41,0,NULL,NULL,NULL,NULL),(2,21,'c26f1f6ea0d14793ad48dce490203a2f',1,'2015-12-02 9:03:27',NULL,20,33,NULL,NULL,NULL,NULL),(2,21,'c26f1f6ea0d14793ad48dce490203a2f',7,'2015-12-02 9:26:45',NULL,20,0,NULL,NULL,'43','87'),(2,21,'c26f1f6ea0d14793ad48dce490203a2f',3,'2015-12-02 9:22:17',NULL,20,0,'39','59',NULL,NULL),(2,21,'c26f1f6ea0d14793ad48dce490203a2f',4,'2015-12-02 9:31:04',NULL,20,0,NULL,NULL,'81','35'),(2,21,'c26f1f6ea0d14793ad48dce490203a2f',3,'2015-12-02 9:38:08',NULL,20,0,NULL,NULL,'57','97'),(2,21,'c26f1f6ea0d14793ad48dce490203a2f',7,'2015-12-02 9:14:58',NULL,20,0,'30','36',NULL,NULL),(2,21,'c26f1f6ea0d14793ad48dce490203a2f',0,'2015-12-02 9:31:52','呷哺呷哺',20,0,NULL,NULL,NULL,NULL),(2,21,'c26f1f6ea0d14793ad48dce490203a2f',2,'2015-12-02 9:16:27',NULL,20,0,NULL,NULL,'78','62'),(2,21,'c26f1f6ea0d14793ad48dce490203a2f',3,'2015-12-02 9:36:31',NULL,20,0,'74','89',NULL,NULL),(2,21,'c26f1f6ea0d14793ad48dce490203a2f',0,'2015-12-02 9:46:19',NULL,20,0,'90','84',NULL,NULL),(2,21,'c26f1f6ea0d14793ad48dce490203a2f',4,'2015-12-02 9:57:44',NULL,20,0,'71','9',NULL,NULL),(2,21,'c26f1f6ea0d14793ad48dce490203a2f',9,'2015-12-02 9:23:48',NULL,20,29,NULL,NULL,NULL,NULL),(2,21,'c26f1f6ea0d14793ad48dce490203a2f',8,'2015-12-02 9:16:23',NULL,20,0,NULL,NULL,'78','55'),(2,21,'c26f1f6ea0d14793ad48dce490203a2f',9,'2015-12-02 9:52:50',NULL,20,0,'29','7',NULL,NULL),(2,29,'1dd56ec5d6b9454894b1d0e70008d92c',8,'2015-12-02 18:06:25',NULL,0,0,NULL,NULL,'99','59'),(2,29,'1dd56ec5d6b9454894b1d0e70008d92c',3,'2015-12-02 18:23:04',NULL,0,0,NULL,NULL,'0','89'),(2,29,'1dd56ec5d6b9454894b1d0e70008d92c',3,'2015-12-02 18:26:20',NULL,0,0,'9','9',NULL,NULL),(2,29,'1dd56ec5d6b9454894b1d0e70008d92c',3,'2015-12-02 18:47:09','新辣道鱼火锅',0,0,NULL,NULL,NULL,NULL),(2,29,'1dd56ec5d6b9454894b1d0e70008d92c',4,'2015-12-02 18:55:52',NULL,0,0,NULL,NULL,'76','49'),(2,29,'1dd56ec5d6b9454894b1d0e70008d92c',9,'2015-12-02 18:41:53',NULL,60,51,NULL,NULL,NULL,NULL),(2,29,'1dd56ec5d6b9454894b1d0e70008d92c',4,'2015-12-02 18:44:44',NULL,60,0,NULL,NULL,'23','80'),(2,29,'1dd56ec5d6b9454894b1d0e70008d92c',0,'2015-12-02 18:56:40',NULL,60,77,NULL,NULL,NULL,NULL),(2,29,'1dd56ec5d6b9454894b1d0e70008d92c',0,'2015-12-02 18:39:49','呷哺呷哺',60,0,NULL,NULL,NULL,NULL),(2,29,'1dd56ec5d6b9454894b1d0e70008d92c',1,'2015-12-02 18:22:55',NULL,60,0,NULL,NULL,'82','94'),(2,29,'1dd56ec5d6b9454894b1d0e70008d92c',8,'2015-12-02 18:31:54','国贸大厦',60,0,NULL,NULL,NULL,NULL),(2,29,'1dd56ec5d6b9454894b1d0e70008d92c',7,'2015-12-02 18:53:45',NULL,60,64,NULL,NULL,NULL,NULL),(2,29,'1dd56ec5d6b9454894b1d0e70008d92c',4,'2015-12-02 18:17:41',NULL,60,0,NULL,NULL,'73','79'),(2,29,'1dd56ec5d6b9454894b1d0e70008d92c',8,'2015-12-02 18:08:30',NULL,60,0,'20','35',NULL,NULL),(2,29,'1dd56ec5d6b9454894b1d0e70008d92c',2,'2015-12-02 18:35:24',NULL,60,76,NULL,NULL,NULL,NULL),(2,29,'1dd56ec5d6b9454894b1d0e70008d92c',6,'2015-12-02 18:53:07',NULL,60,28,NULL,NULL,NULL,NULL),(2,29,'1dd56ec5d6b9454894b1d0e70008d92c',7,'2015-12-02 18:49:25','火锅',60,0,NULL,NULL,NULL,NULL),(2,29,'1dd56ec5d6b9454894b1d0e70008d92c',6,'2015-12-02 18:24:19',NULL,60,0,NULL,NULL,'13','26'),(2,29,'1dd56ec5d6b9454894b1d0e70008d92c',2,'2015-12-02 18:24:04',NULL,60,0,'36','72',NULL,NULL),(2,29,'1dd56ec5d6b9454894b1d0e70008d92c',9,'2015-12-02 18:11:46','温泉',60,0,NULL,NULL,NULL,NULL),(2,29,'1dd56ec5d6b9454894b1d0e70008d92c',7,'2015-12-02 18:31:05',NULL,60,0,NULL,NULL,'0','65'),(2,29,'1dd56ec5d6b9454894b1d0e70008d92c',3,'2015-12-02 18:58:28','呷哺呷哺',60,0,NULL,NULL,NULL,NULL),(2,29,'1dd56ec5d6b9454894b1d0e70008d92c',8,'2015-12-02 18:13:46','蛋糕',60,0,NULL,NULL,NULL,NULL),(2,29,'1dd56ec5d6b9454894b1d0e70008d92c',8,'2015-12-02 18:07:51',NULL,60,0,'5','66',NULL,NULL),(2,29,'1dd56ec5d6b9454894b1d0e70008d92c',4,'2015-12-02 18:14:54','呷哺呷哺',60,0,NULL,NULL,NULL,NULL),(2,29,'1dd56ec5d6b9454894b1d0e70008d92c',0,'2015-12-02 18:17:49',NULL,60,18,NULL,NULL,NULL,NULL),(2,29,'1dd56ec5d6b9454894b1d0e70008d92c',3,'2015-12-02 18:55:29',NULL,60,0,'61','62',NULL,NULL),(2,29,'1dd56ec5d6b9454894b1d0e70008d92c',6,'2015-12-02 18:40:19',NULL,60,53,NULL,NULL,NULL,NULL),(2,29,'1dd56ec5d6b9454894b1d0e70008d92c',2,'2015-12-02 18:30:47',NULL,60,0,'99','95',NULL,NULL),(2,29,'1dd56ec5d6b9454894b1d0e70008d92c',8,'2015-12-02 18:13:26',NULL,60,0,'98','97',NULL,NULL),(2,51,'2ea0d82881414e2e8542ef6600d943ab',9,'2015-12-02 11:05:26',NULL,60,26,NULL,NULL,NULL,NULL),(2,51,'2ea0d82881414e2e8542ef6600d943ab',2,'2015-12-02 11:48:41','重庆小面',60,0,NULL,NULL,NULL,NULL),(2,51,'2ea0d82881414e2e8542ef6600d943ab',8,'2015-12-02 11:23:56',NULL,60,0,NULL,NULL,'54','94'),(2,51,'2ea0d82881414e2e8542ef6600d943ab',2,'2015-12-02 11:44:25',NULL,60,56,NULL,NULL,NULL,NULL),(2,51,'2ea0d82881414e2e8542ef6600d943ab',0,'2015-12-02 11:23:21',NULL,60,0,NULL,NULL,'56','15'),(2,51,'2ea0d82881414e2e8542ef6600d943ab',2,'2015-12-02 11:50:21','太古商场',60,0,NULL,NULL,NULL,NULL),(2,51,'2ea0d82881414e2e8542ef6600d943ab',5,'2015-12-02 11:08:39',NULL,60,0,'26','17',NULL,NULL),(2,51,'2ea0d82881414e2e8542ef6600d943ab',4,'2015-12-02 11:22:18','太古商场',60,0,NULL,NULL,NULL,NULL),(2,51,'2ea0d82881414e2e8542ef6600d943ab',3,'2015-12-02 11:00:15',NULL,60,0,NULL,NULL,'26','14'),(2,51,'2ea0d82881414e2e8542ef6600d943ab',7,'2015-12-02 11:46:14',NULL,60,77,NULL,NULL,NULL,NULL),(2,51,'2ea0d82881414e2e8542ef6600d943ab',8,'2015-12-02 11:27:08','重庆辣子鸡',60,0,NULL,NULL,NULL,NULL),(2,51,'2ea0d82881414e2e8542ef6600d943ab',3,'2015-12-02 11:35:29',NULL,60,60,NULL,NULL,NULL,NULL),(2,22,'11340df7e8654d26a43a851ff487c953',3,'2015-12-02 12:46:47',NULL,0,0,'48','6',NULL,NULL),(2,22,'11340df7e8654d26a43a851ff487c953',0,'2015-12-02 12:51:11',NULL,0,0,'88','47',NULL,NULL),(2,22,'11340df7e8654d26a43a851ff487c953',1,'2015-12-02 12:38:51','日本料理',0,0,NULL,NULL,NULL,NULL),(2,22,'11340df7e8654d26a43a851ff487c953',1,'2015-12-02 12:33:52',NULL,20,37,NULL,NULL,NULL,NULL),(2,22,'11340df7e8654d26a43a851ff487c953',3,'2015-12-02 12:51:02','呷哺呷哺',20,0,NULL,NULL,NULL,NULL),(2,22,'11340df7e8654d26a43a851ff487c953',6,'2015-12-02 12:02:30',NULL,20,21,NULL,NULL,NULL,NULL),(2,22,'11340df7e8654d26a43a851ff487c953',5,'2015-12-02 12:23:16',NULL,20,0,NULL,NULL,'8','4'),(2,22,'11340df7e8654d26a43a851ff487c953',3,'2015-12-02 12:21:02',NULL,20,0,NULL,NULL,'12','39'),(2,22,'11340df7e8654d26a43a851ff487c953',8,'2015-12-02 12:23:43','蛋糕',20,0,NULL,NULL,NULL,NULL),(2,22,'11340df7e8654d26a43a851ff487c953',2,'2015-12-02 12:15:20','日本料理',20,0,NULL,NULL,NULL,NULL),(2,22,'11340df7e8654d26a43a851ff487c953',6,'2015-12-02 12:41:44',NULL,20,0,NULL,NULL,'4','89'),(2,22,'11340df7e8654d26a43a851ff487c953',2,'2015-12-02 12:28:13',NULL,20,79,NULL,NULL,NULL,NULL),(2,22,'11340df7e8654d26a43a851ff487c953',5,'2015-12-02 12:44:05',NULL,20,0,NULL,NULL,'95','89'),(2,22,'11340df7e8654d26a43a851ff487c953',7,'2015-12-02 12:27:10','蛋糕',20,0,NULL,NULL,NULL,NULL),(2,22,'11340df7e8654d26a43a851ff487c953',6,'2015-12-02 12:52:40',NULL,20,56,NULL,NULL,NULL,NULL),(2,81,'ef3fee8b4056458da1504754068f5177',8,'2015-12-02 5:12:16',NULL,0,0,'63','7',NULL,NULL),(2,81,'ef3fee8b4056458da1504754068f5177',5,'2015-12-02 5:39:28',NULL,0,0,NULL,NULL,'58','18'),(2,81,'ef3fee8b4056458da1504754068f5177',7,'2015-12-02 5:26:58',NULL,46,6,NULL,NULL,NULL,NULL),(2,81,'ef3fee8b4056458da1504754068f5177',6,'2015-12-02 5:14:03','太古商场',46,0,NULL,NULL,NULL,NULL),(2,81,'ef3fee8b4056458da1504754068f5177',0,'2015-12-02 5:35:13',NULL,46,92,NULL,NULL,NULL,NULL),(2,81,'ef3fee8b4056458da1504754068f5177',0,'2015-12-02 5:38:14',NULL,46,0,NULL,NULL,'83','9'),(2,81,'ef3fee8b4056458da1504754068f5177',1,'2015-12-02 5:27:27',NULL,46,0,NULL,NULL,'9','45'),(2,81,'ef3fee8b4056458da1504754068f5177',1,'2015-12-02 5:44:50',NULL,46,0,'32','25',NULL,NULL),(2,81,'ef3fee8b4056458da1504754068f5177',0,'2015-12-02 5:39:53','国贸大厦',46,0,NULL,NULL,NULL,NULL),(2,81,'ef3fee8b4056458da1504754068f5177',2,'2015-12-02 5:49:13',NULL,46,0,NULL,NULL,'7','60'),(2,81,'ef3fee8b4056458da1504754068f5177',9,'2015-12-02 5:46:50',NULL,46,0,'21','77',NULL,NULL),(2,81,'ef3fee8b4056458da1504754068f5177',1,'2015-12-02 5:00:16',NULL,46,0,NULL,NULL,'54','85'),(2,81,'ef3fee8b4056458da1504754068f5177',5,'2015-12-02 5:47:34',NULL,46,86,NULL,NULL,NULL,NULL),(2,81,'ef3fee8b4056458da1504754068f5177',5,'2015-12-02 5:08:01',NULL,46,0,NULL,NULL,'95','53'),(2,81,'ef3fee8b4056458da1504754068f5177',2,'2015-12-02 5:36:06',NULL,46,0,NULL,NULL,'69','77'),(2,81,'ef3fee8b4056458da1504754068f5177',5,'2015-12-02 5:36:30',NULL,46,39,NULL,NULL,NULL,NULL),(2,81,'ef3fee8b4056458da1504754068f5177',4,'2015-12-02 5:52:26','火锅',46,0,NULL,NULL,NULL,NULL),(2,81,'ef3fee8b4056458da1504754068f5177',9,'2015-12-02 5:14:15',NULL,46,0,NULL,NULL,'10','97'),(2,81,'ef3fee8b4056458da1504754068f5177',5,'2015-12-02 5:42:06',NULL,46,0,'79','44',NULL,NULL),(2,13,'accf322e5010474fbc31b3caed701eef',8,'2015-12-02 18:42:03',NULL,0,0,NULL,NULL,'12','27'),(2,13,'accf322e5010474fbc31b3caed701eef',1,'2015-12-02 18:09:13',NULL,0,0,NULL,NULL,'53','56'),(2,13,'accf322e5010474fbc31b3caed701eef',0,'2015-12-02 18:44:54',NULL,78,77,NULL,NULL,NULL,NULL),(2,13,'accf322e5010474fbc31b3caed701eef',8,'2015-12-02 18:34:27',NULL,78,0,NULL,NULL,'20','11'),(2,13,'accf322e5010474fbc31b3caed701eef',1,'2015-12-02 18:16:40',NULL,78,8,NULL,NULL,NULL,NULL),(2,13,'accf322e5010474fbc31b3caed701eef',0,'2015-12-02 18:51:10',NULL,78,0,NULL,NULL,'96','45'),(2,13,'accf322e5010474fbc31b3caed701eef',8,'2015-12-02 18:29:23',NULL,78,83,NULL,NULL,NULL,NULL),(2,13,'accf322e5010474fbc31b3caed701eef',0,'2015-12-02 18:34:55','重庆辣子鸡',78,0,NULL,NULL,NULL,NULL),(2,13,'accf322e5010474fbc31b3caed701eef',0,'2015-12-02 18:31:03',NULL,78,55,NULL,NULL,NULL,NULL),(2,13,'accf322e5010474fbc31b3caed701eef',9,'2015-12-02 18:36:42','呷哺呷哺',78,0,NULL,NULL,NULL,NULL),(2,29,'2e795964ad93457f934250f26df15793',7,'2015-12-02 18:30:36',NULL,0,0,NULL,NULL,'93','13'),(2,29,'2e795964ad93457f934250f26df15793',1,'2015-12-02 18:34:06','太古商场',0,0,NULL,NULL,NULL,NULL),(2,29,'2e795964ad93457f934250f26df15793',5,'2015-12-02 18:58:45',NULL,0,0,'16','17',NULL,NULL),(2,29,'2e795964ad93457f934250f26df15793',8,'2015-12-02 18:54:34',NULL,46,49,NULL,NULL,NULL,NULL),(2,29,'2e795964ad93457f934250f26df15793',7,'2015-12-02 18:33:40',NULL,46,0,'59','19',NULL,NULL),(2,29,'2e795964ad93457f934250f26df15793',1,'2015-12-02 18:32:31',NULL,46,0,NULL,NULL,'36','0'),(2,29,'2e795964ad93457f934250f26df15793',7,'2015-12-02 18:38:33',NULL,46,32,NULL,NULL,NULL,NULL),(2,29,'2e795964ad93457f934250f26df15793',5,'2015-12-02 18:09:27',NULL,46,55,NULL,NULL,NULL,NULL),(2,91,'edd6185c75504f4599693b63b36a235c',2,'2015-12-02 16:37:46',NULL,41,0,NULL,NULL,NULL,NULL),(2,91,'edd6185c75504f4599693b63b36a235c',0,'2015-12-02 16:47:54',NULL,41,99,NULL,NULL,NULL,NULL),(2,91,'edd6185c75504f4599693b63b36a235c',2,'2015-12-02 16:52:54','呷哺呷哺',41,0,NULL,NULL,NULL,NULL),(2,91,'edd6185c75504f4599693b63b36a235c',0,'2015-12-02 16:50:46',NULL,41,0,'23','51',NULL,NULL),(2,91,'edd6185c75504f4599693b63b36a235c',1,'2015-12-02 16:53:03',NULL,41,48,NULL,NULL,NULL,NULL),(2,91,'edd6185c75504f4599693b63b36a235c',2,'2015-12-02 16:42:28',NULL,41,86,NULL,NULL,NULL,NULL),(2,91,'edd6185c75504f4599693b63b36a235c',5,'2015-12-02 16:01:53','国贸大厦',41,0,NULL,NULL,NULL,NULL),(2,91,'edd6185c75504f4599693b63b36a235c',8,'2015-12-02 16:37:28',NULL,41,0,'49','93',NULL,NULL),(2,91,'edd6185c75504f4599693b63b36a235c',3,'2015-12-02 16:33:45',NULL,41,0,'55','61',NULL,NULL),(2,91,'edd6185c75504f4599693b63b36a235c',8,'2015-12-02 16:08:25','蛋糕',41,0,NULL,NULL,NULL,NULL),(2,4,'4d94dfc0c57f484b8e676f7d182474ec',5,'2015-12-02 5:45:05',NULL,60,41,NULL,NULL,NULL,NULL),(2,4,'4d94dfc0c57f484b8e676f7d182474ec',7,'2015-12-02 5:29:26','温泉',60,0,NULL,NULL,NULL,NULL),(2,4,'4d94dfc0c57f484b8e676f7d182474ec',8,'2015-12-02 5:43:57',NULL,60,0,'12','88',NULL,NULL),(2,4,'4d94dfc0c57f484b8e676f7d182474ec',7,'2015-12-02 5:53:04',NULL,60,0,NULL,NULL,'42','32'),(2,4,'4d94dfc0c57f484b8e676f7d182474ec',9,'2015-12-02 5:06:43','太古商场',60,0,NULL,NULL,NULL,NULL),(2,4,'4d94dfc0c57f484b8e676f7d182474ec',0,'2015-12-02 5:34:08','重庆辣子鸡',60,0,NULL,NULL,NULL,NULL),(2,4,'4d94dfc0c57f484b8e676f7d182474ec',0,'2015-12-02 5:43:42',NULL,60,0,'11','87',NULL,NULL),(2,4,'4d94dfc0c57f484b8e676f7d182474ec',4,'2015-12-02 5:01:43',NULL,60,0,'90','80',NULL,NULL),(2,4,'4d94dfc0c57f484b8e676f7d182474ec',1,'2015-12-02 5:51:11','重庆小面',60,0,NULL,NULL,NULL,NULL),(2,4,'4d94dfc0c57f484b8e676f7d182474ec',6,'2015-12-02 5:50:24',NULL,60,0,'93','60',NULL,NULL),(2,4,'4d94dfc0c57f484b8e676f7d182474ec',4,'2015-12-02 5:55:47',NULL,60,0,'55','14',NULL,NULL),(2,4,'4d94dfc0c57f484b8e676f7d182474ec',4,'2015-12-02 5:48:23',NULL,60,39,NULL,NULL,NULL,NULL),(2,92,'623fc77b82004b058114d330eaae52f8',6,'2015-12-02 9:15:40',NULL,64,10,NULL,NULL,NULL,NULL),(2,92,'623fc77b82004b058114d330eaae52f8',7,'2015-12-02 9:32:27',NULL,64,0,NULL,NULL,'88','18'),(2,92,'623fc77b82004b058114d330eaae52f8',5,'2015-12-02 9:24:44',NULL,64,0,NULL,NULL,'10','4'),(2,92,'623fc77b82004b058114d330eaae52f8',2,'2015-12-02 9:41:55',NULL,64,0,NULL,NULL,'96','26'),(2,92,'623fc77b82004b058114d330eaae52f8',7,'2015-12-02 9:31:11','日本料理',64,0,NULL,NULL,NULL,NULL),(2,92,'623fc77b82004b058114d330eaae52f8',4,'2015-12-02 9:36:42',NULL,64,0,'22','4',NULL,NULL),(2,92,'623fc77b82004b058114d330eaae52f8',9,'2015-12-02 9:31:20',NULL,64,0,NULL,NULL,'45','79'),(2,92,'623fc77b82004b058114d330eaae52f8',9,'2015-12-02 9:52:14','温泉',64,0,NULL,NULL,NULL,NULL),(2,92,'623fc77b82004b058114d330eaae52f8',2,'2015-12-02 9:34:05',NULL,64,0,'52','86',NULL,NULL),(2,92,'623fc77b82004b058114d330eaae52f8',0,'2015-12-02 9:05:01',NULL,64,0,'70','47',NULL,NULL),(2,92,'623fc77b82004b058114d330eaae52f8',4,'2015-12-02 9:53:32',NULL,64,0,'25','12',NULL,NULL),(2,92,'623fc77b82004b058114d330eaae52f8',3,'2015-12-02 9:38:00',NULL,64,15,NULL,NULL,NULL,NULL),(2,92,'623fc77b82004b058114d330eaae52f8',4,'2015-12-02 9:49:56',NULL,64,24,NULL,NULL,NULL,NULL),(2,92,'623fc77b82004b058114d330eaae52f8',4,'2015-12-02 9:09:04',NULL,64,0,NULL,NULL,'25','85'),(2,92,'623fc77b82004b058114d330eaae52f8',1,'2015-12-02 9:05:16',NULL,64,0,'21','71',NULL,NULL),(2,87,'cca015e9f48241f692a32a0e445f2c8a',0,'2015-12-02 9:43:58','新辣道鱼火锅',0,0,NULL,NULL,NULL,NULL),(2,87,'cca015e9f48241f692a32a0e445f2c8a',2,'2015-12-02 9:01:42',NULL,0,0,NULL,NULL,'41','32'),(2,87,'cca015e9f48241f692a32a0e445f2c8a',7,'2015-12-02 9:36:20',NULL,0,0,NULL,NULL,'85','47'),(2,87,'cca015e9f48241f692a32a0e445f2c8a',8,'2015-12-02 9:08:00','呷哺呷哺',0,0,NULL,NULL,NULL,NULL),(2,87,'cca015e9f48241f692a32a0e445f2c8a',5,'2015-12-02 9:44:04',NULL,0,0,'94','19',NULL,NULL),(2,87,'cca015e9f48241f692a32a0e445f2c8a',1,'2015-12-02 9:10:42','新辣道鱼火锅',0,0,NULL,NULL,NULL,NULL),(2,87,'cca015e9f48241f692a32a0e445f2c8a',1,'2015-12-02 9:57:26',NULL,0,0,NULL,NULL,'34','91'),(2,87,'cca015e9f48241f692a32a0e445f2c8a',3,'2015-12-02 9:55:50','太古商场',0,0,NULL,NULL,NULL,NULL),(2,87,'cca015e9f48241f692a32a0e445f2c8a',7,'2015-12-02 9:49:32',NULL,0,0,'95','75',NULL,NULL),(2,87,'cca015e9f48241f692a32a0e445f2c8a',2,'2015-12-02 9:51:12',NULL,46,24,NULL,NULL,NULL,NULL),(2,87,'cca015e9f48241f692a32a0e445f2c8a',8,'2015-12-02 9:16:11',NULL,46,0,'57','44',NULL,NULL),(2,87,'cca015e9f48241f692a32a0e445f2c8a',7,'2015-12-02 9:20:08',NULL,46,4,NULL,NULL,NULL,NULL),(2,87,'cca015e9f48241f692a32a0e445f2c8a',2,'2015-12-02 9:16:08',NULL,46,0,'92','16',NULL,NULL),(2,87,'cca015e9f48241f692a32a0e445f2c8a',0,'2015-12-02 9:05:28',NULL,46,0,'25','85',NULL,NULL),(2,87,'cca015e9f48241f692a32a0e445f2c8a',9,'2015-12-02 9:52:31',NULL,46,0,'20','0',NULL,NULL),(2,87,'cca015e9f48241f692a32a0e445f2c8a',7,'2015-12-02 9:22:15',NULL,46,0,NULL,NULL,'40','10'),(2,87,'cca015e9f48241f692a32a0e445f2c8a',3,'2015-12-02 9:26:32',NULL,46,89,NULL,NULL,NULL,NULL),(2,87,'cca015e9f48241f692a32a0e445f2c8a',5,'2015-12-02 9:22:14',NULL,46,58,NULL,NULL,NULL,NULL),(2,87,'cca015e9f48241f692a32a0e445f2c8a',4,'2015-12-02 9:42:16',NULL,46,0,NULL,NULL,'46','36'),(2,87,'cca015e9f48241f692a32a0e445f2c8a',5,'2015-12-02 9:34:24','温泉',46,0,NULL,NULL,NULL,NULL),(2,91,'0b476641e5274ab59675a89592180ce6',8,'2015-12-02 19:24:33',NULL,64,58,NULL,NULL,NULL,NULL),(2,91,'0b476641e5274ab59675a89592180ce6',3,'2015-12-02 19:36:40',NULL,64,0,NULL,NULL,'29','16'),(2,91,'0b476641e5274ab59675a89592180ce6',3,'2015-12-02 19:40:50',NULL,64,0,'96','87',NULL,NULL),(2,91,'0b476641e5274ab59675a89592180ce6',8,'2015-12-02 19:19:26',NULL,64,69,NULL,NULL,NULL,NULL),(2,91,'0b476641e5274ab59675a89592180ce6',3,'2015-12-02 19:41:54',NULL,64,0,NULL,NULL,'43','2'),(2,91,'0b476641e5274ab59675a89592180ce6',0,'2015-12-02 19:39:08',NULL,64,0,'29','61',NULL,NULL),(2,91,'0b476641e5274ab59675a89592180ce6',9,'2015-12-02 19:22:04','重庆辣子鸡',64,0,NULL,NULL,NULL,NULL),(2,91,'0b476641e5274ab59675a89592180ce6',0,'2015-12-02 19:28:18',NULL,64,32,NULL,NULL,NULL,NULL),(2,91,'0b476641e5274ab59675a89592180ce6',0,'2015-12-02 19:43:58',NULL,64,0,NULL,NULL,'88','84'),(2,91,'0b476641e5274ab59675a89592180ce6',7,'2015-12-02 19:44:00',NULL,64,0,NULL,NULL,'66','98'),(2,91,'0b476641e5274ab59675a89592180ce6',1,'2015-12-02 19:13:10',NULL,64,0,NULL,NULL,'4','28'),(2,91,'0b476641e5274ab59675a89592180ce6',4,'2015-12-02 19:02:24','温泉',64,0,NULL,NULL,NULL,NULL),(2,91,'0b476641e5274ab59675a89592180ce6',7,'2015-12-02 19:29:42',NULL,64,0,NULL,NULL,'1','27'),(2,91,'0b476641e5274ab59675a89592180ce6',4,'2015-12-02 19:46:22',NULL,64,0,'28','52',NULL,NULL),(2,91,'0b476641e5274ab59675a89592180ce6',7,'2015-12-02 19:21:51',NULL,64,32,NULL,NULL,NULL,NULL),(2,91,'0b476641e5274ab59675a89592180ce6',8,'2015-12-02 19:08:41',NULL,64,0,NULL,NULL,'72','82'),(2,91,'0b476641e5274ab59675a89592180ce6',2,'2015-12-02 19:34:20',NULL,64,0,'69','83',NULL,NULL),(2,63,'82a14a41d0564bd281cf9cc976e9dae5',0,'2015-12-02 8:16:47',NULL,83,74,NULL,NULL,NULL,NULL),(2,63,'82a14a41d0564bd281cf9cc976e9dae5',3,'2015-12-02 8:41:25',NULL,83,0,NULL,NULL,'86','17'),(2,63,'82a14a41d0564bd281cf9cc976e9dae5',2,'2015-12-02 8:24:46',NULL,83,0,'30','79',NULL,NULL),(2,63,'82a14a41d0564bd281cf9cc976e9dae5',7,'2015-12-02 8:01:07','蛋糕',83,0,NULL,NULL,NULL,NULL),(2,63,'82a14a41d0564bd281cf9cc976e9dae5',1,'2015-12-02 8:38:04',NULL,83,0,'80','78',NULL,NULL),(2,63,'82a14a41d0564bd281cf9cc976e9dae5',4,'2015-12-02 8:00:12',NULL,83,13,NULL,NULL,NULL,NULL),(2,63,'82a14a41d0564bd281cf9cc976e9dae5',6,'2015-12-02 8:30:52',NULL,83,48,NULL,NULL,NULL,NULL),(2,63,'82a14a41d0564bd281cf9cc976e9dae5',8,'2015-12-02 8:29:05',NULL,83,0,'30','60',NULL,NULL),(2,63,'82a14a41d0564bd281cf9cc976e9dae5',3,'2015-12-02 8:25:29',NULL,83,0,NULL,NULL,'44','21'),(2,63,'82a14a41d0564bd281cf9cc976e9dae5',0,'2015-12-02 8:57:25','火锅',83,0,NULL,NULL,NULL,NULL),(2,63,'82a14a41d0564bd281cf9cc976e9dae5',7,'2015-12-02 8:10:26',NULL,83,54,NULL,NULL,NULL,NULL),(2,63,'82a14a41d0564bd281cf9cc976e9dae5',4,'2015-12-02 8:02:51',NULL,83,0,NULL,NULL,'69','1'),(2,63,'82a14a41d0564bd281cf9cc976e9dae5',8,'2015-12-02 8:28:40',NULL,83,0,'34','30',NULL,NULL),(2,63,'82a14a41d0564bd281cf9cc976e9dae5',3,'2015-12-02 8:13:14','新辣道鱼火锅',83,0,NULL,NULL,NULL,NULL),(2,63,'82a14a41d0564bd281cf9cc976e9dae5',3,'2015-12-02 8:42:51','新辣道鱼火锅',83,0,NULL,NULL,NULL,NULL),(2,63,'82a14a41d0564bd281cf9cc976e9dae5',6,'2015-12-02 8:23:34',NULL,83,0,'31','35',NULL,NULL);
/*Table structure for table `session_random_extract` */
DROP TABLE IF EXISTS `session_random_extract`;
CREATE TABLE `session_random_extract` (
`task_id` int(11) DEFAULT NULL,
`session_id` varchar(255) DEFAULT NULL,
`start_time` varchar(50) DEFAULT NULL,
`search_keywords` varchar(255) DEFAULT NULL,
`click_category_ids` varchar(255) DEFAULT NULL,
KEY `idx_task_id` (`task_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*Data for the table `session_random_extract` */
insert into `session_random_extract`(`task_id`,`session_id`,`start_time`,`search_keywords`,`click_category_ids`) values (2,'cc97fc8b30944efa84cb734ba5d20cba','2015-12-02 16:01:37','太古商场,日本料理,火锅','5'),(2,'60e6b14c2fbd417db7e99775b53576ce','2015-12-02 16:05:41',NULL,'0,12'),(2,'3f2561eb9bab4e768b97e242d9fb74f1','2015-12-02 16:00:55','日本料理,火锅,新辣道鱼火锅,蛋糕,呷哺呷哺','0,46'),(2,'4603f5b52f744392b8a0cd7e00af8283','2015-12-02 16:40:42','呷哺呷哺','13'),(2,'734ac2e56df1490eb0571aa825993fca','2015-12-02 16:31:22','日本料理','0,47'),(2,'a613bf8b408740d69aa68379b8d5b3f5','2015-12-02 04:06:49','温泉','0,59'),(2,'77dae390b3634348a9295170a85ccec8','2015-12-02 04:00:07','重庆辣子鸡','53'),(2,'d2d0da36c6f2446ea2e437e6608242b9','2015-12-02 04:00:09','太古商场','0,55'),(2,'26e9f988f754415cb1c4aab44be79cb9','2015-12-02 08:02:18','蛋糕,火锅,重庆辣子鸡','1'),(2,'ac3acf6b938d4a8c8e65c7265ceb0eed','2015-12-02 08:02:37','蛋糕,新辣道鱼火锅,呷哺呷哺,太古商场,国贸大厦,温泉','0,96'),(2,'4df86749346145b696462d74764a1011','2015-12-02 08:06:03','重庆小面,火锅','0,91'),(2,'f48d9223b1094b2e977195dca7131365','2015-12-02 08:30:19','重庆辣子鸡','0'),(2,'2323f81cdba6420dbe62b6c45643b262','2015-12-02 08:09:52',NULL,'0,23'),(2,'86455e706d7e4e94bdafe0bfe5845780','2015-12-02 02:00:09','太古商场,温泉,火锅,新辣道鱼火锅,蛋糕','0,75'),(2,'69b06fc425b44ee586d094d46dc1a379','2015-12-02 02:08:33','日本料理,呷哺呷哺','99'),(2,'3f7bc64d2b0b4c7ab365dafa07e24383','2015-12-02 02:12:34','蛋糕,国贸大厦','0,31'),(2,'0b476641e5274ab59675a89592180ce6','2015-12-02 19:02:24','重庆辣子鸡,温泉','64'),(2,'8a250b21e69c44c49bc629347fcd7094','2015-12-02 19:16:15','新辣道鱼火锅','0,28'),(2,'95ddae8f5d5d45a794d5d4048ab94c9d','2015-12-02 19:06:13','日本料理,重庆小面,太古商场','0,17'),(2,'6bd33bf9afb346aaa4b06a3948320455','2015-12-02 18:00:52','太古商场,国贸大厦,重庆辣子鸡,日本料理','2'),(2,'95860585cbd542fe80395dd6a84f1f7d','2015-12-02 18:19:07','重庆辣子鸡','0,87'),(2,'013107dd7f3442a9992d811d2938726e','2015-12-02 18:00:30','火锅,日本料理,新辣道鱼火锅','0,41'),(2,'3eff557696734063b0eb0b3304852354','2015-12-02 18:05:06','蛋糕','0,23'),(2,'a87af38431b247169ffed122f82823fe','2015-12-02 18:02:04','重庆小面,重庆辣子鸡','0,50'),(2,'78b3b9fe3ec44a62a183a8d36cb2f2ae','2015-12-02 15:02:15','日本料理,国贸大厦,火锅','55'),(2,'f95c6a6218e84f5d978397d6463bc752','2015-12-02 15:02:17','重庆辣子鸡,蛋糕,重庆小面','1'),(2,'b7fc8352543147489392c3376c4ab0af','2015-12-02 15:01:02',NULL,'0,61'),(2,'5d78683de4a140f68781f666e7cf2de8','2015-12-02 15:05:10',NULL,'0,51'),(2,'bc81e8c928464e7d8be6cc0e972831a1','2015-12-02 01:04:32','温泉,日本料理,重庆小面,火锅','0,99'),(2,'a62c087aba6c44b0bf13b0e757cfbf72','2015-12-02 01:02:21','日本料理','0,24'),(2,'8ae30bb875bb4ccbb25423e3d4dd623a','2015-12-02 01:01:32','新辣道鱼火锅','73'),(2,'a1b961f442434ad09d41ae7a17f9c3b3','2015-12-02 01:10:58','日本料理,火锅','97'),(2,'2a05f0625d164703990f952c8e7b43ce','2015-12-02 01:05:42','重庆小面,温泉,蛋糕','0,43'),(2,'4fe4ddb6516d4ac981568e3742841ecf','2015-12-02 05:06:05','温泉,国贸大厦','0,55'),(2,'681110e9914640a88abcbf799810d9a1','2015-12-02 05:00:13','蛋糕,火锅,日本料理','0,99'),(2,'44997dedc5894e81bebcc18d135bdd94','2015-12-02 05:07:01','太古商场','0'),(2,'c695713c90424451bc6aec450b02de7a','2015-12-02 14:03:15','火锅,重庆小面','0,58'),(2,'0bd31f00f6c4431bbc52dbaa44cc5016','2015-12-02 14:09:10','重庆小面','0'),(2,'f0512e8bf2f54461ba53b727c61410ea','2015-12-02 14:02:33','新辣道鱼火锅,国贸大厦','0,5'),(2,'58e4b4b876814619bebf9fa14ccb349d','2015-12-02 14:06:57','温泉,太古商场,国贸大厦,蛋糕,新辣道鱼火锅,重庆辣子鸡','0'),(2,'872b6fa03edc4ee982243c0dae87fcaa','2015-12-02 22:01:58','重庆辣子鸡,温泉','0,86'),(2,'274d3df9254e41cfa51bdb742eeef1c9','2015-12-02 22:00:24','新辣道鱼火锅,国贸大厦,重庆小面','0,47'),(2,'12e6111860e940f7ba99c29d58e7d858','2015-12-02 22:14:32','重庆辣子鸡','12'),(2,'61620defda8a41a2a75d192eeb2163c1','2015-12-02 22:00:39','新辣道鱼火锅,呷哺呷哺','0'),(2,'3ca4f0f68cce4c58ac1d3bbdcd179657','2015-12-02 22:10:37','重庆小面','88'),(2,'e448360dc20f4980bef48b53aba65932','2015-12-02 17:04:07','温泉,重庆小面,重庆辣子鸡,国贸大厦','0,77'),(2,'54ea143621e544b083e5b5455606e935','2015-12-02 17:01:19',NULL,'0,40'),(2,'72f8c93ec4264cdd959560c1f666f6c4','2015-12-02 17:03:41','火锅,呷哺呷哺,太古商场','0,83'),(2,'d57e26d90a754801996816ccb0c1b804','2015-12-02 12:27:39',NULL,'0,14'),(2,'7648db16dfea492e94bc87c5ab7fbbd8','2015-12-02 12:00:38','蛋糕,温泉','17'),(2,'c4ef48b2cd3d43db8e942e1ed34a31a8','2015-12-02 12:18:47','温泉,日本料理,重庆小面','0,16'),(2,'ba7e290380974b2aa62d82aad33fc903','2015-12-02 03:00:46','蛋糕,新辣道鱼火锅,重庆辣子鸡','0,53'),(2,'82a56a675d5249faaaac5b3ecfb347d0','2015-12-02 03:01:28','呷哺呷哺,太古商场,蛋糕','0,19'),(2,'1f75ede132f04d48a07dc9cb6142e460','2015-12-02 03:00:39','温泉,新辣道鱼火锅','0,72'),(2,'37a51032b3524aa586332c64fd213c2a','2015-12-02 03:08:11','新辣道鱼火锅,温泉,日本料理,国贸大厦','0,26'),(2,'30b815c847874188bff266a9b850da3f','2015-12-02 20:01:52','国贸大厦,重庆辣子鸡','0,50'),(2,'a7750f1d8aa642409b4bbdc526af82b2','2015-12-02 20:17:38','日本料理','0'),(2,'e9e6fb27147a469698c7aaec2f5ed580','2015-12-02 20:01:38',NULL,'0,90'),(2,'e8e74c2c49d544e087874ec934243fa5','2015-12-02 07:04:17','重庆辣子鸡','0,87'),(2,'b47e8b7b1bbf470f80c2cbc8723b9c6a','2015-12-02 07:03:03','蛋糕','57'),(2,'b949658d70894160aebf8cfe125d7f78','2015-12-02 07:10:48','火锅,国贸大厦,重庆辣子鸡,新辣道鱼火锅,蛋糕','0,95'),(2,'5ac3eaa42c8247aaad70657ece4f26b1','2015-12-02 07:32:26','新辣道鱼火锅,温泉,日本料理','0,81'),(2,'5f4e6d25ff574597be933aad6c55cf9d','2015-12-02 10:02:17','国贸大厦,火锅,重庆辣子鸡','99'),(2,'bcbf01e4215e4703810d439657b611d0','2015-12-02 10:02:18','日本料理,呷哺呷哺,重庆辣子鸡','81'),(2,'acfe374119eb4bb4886699279dfe021e','2015-12-02 10:09:17','火锅,温泉','11'),(2,'e5e63cb780214b0f86ba50cc61578531','2015-12-02 10:08:47','火锅,新辣道鱼火锅,国贸大厦,重庆小面,呷哺呷哺','0'),(2,'1d7acc93b5b34e139f704970379b66f8','2015-12-02 21:00:09','新辣道鱼火锅,重庆辣子鸡,呷哺呷哺','0,1'),(2,'59cfaf0bdc46413eb565cdbf98dca031','2015-12-02 21:02:53','太古商场,火锅,国贸大厦,重庆小面,日本料理','0,81'),(2,'c691e8dd47c84064826774dda8d1981a','2015-12-02 21:03:05','温泉,新辣道鱼火锅,蛋糕','0,68'),(2,'df15bdd863114f21a99bfe69522b1cef','2015-12-02 21:01:58','太古商场,国贸大厦','0,49'),(2,'5472824df0f4464f9eea04335d6c7b5d','2015-12-02 13:20:50','火锅','0,32'),(2,'e31f5a4592d34fd8a4ecf9f0ae0f747b','2015-12-02 13:00:10','重庆辣子鸡,呷哺呷哺','0,86'),(2,'e6237c7a234447b0a355665b7e006973','2015-12-02 06:04:03','日本料理,新辣道鱼火锅,温泉','0,55'),(2,'f30a5f276f344ad68cc460b8e873d65c','2015-12-02 06:04:52','太古商场,温泉,重庆小面,呷哺呷哺','0,51'),(2,'10ce5602ee784c4f911fcd615883254f','2015-12-02 06:00:13','重庆辣子鸡,火锅,太古商场','0,66'),(2,'504a335c099c4434bd01f6256f6ab1db','2015-12-02 09:00:08','新辣道鱼火锅,呷哺呷哺,重庆小面','0,14'),(2,'1130bc6f351b446184c3e038691f4a31','2015-12-02 09:06:39','重庆辣子鸡','0'),(2,'db055f2f3819439f9bcd75a95dd9e58c','2015-12-02 09:09:16',NULL,'0'),(2,'96ee9801356d470f98b45675e279485d','2015-12-02 00:13:22',NULL,'0,53'),(2,'7b2ed9038a8241a2945d85858ec50fb0','2015-12-02 00:00:40','重庆辣子鸡,火锅','0,24'),(2,'4d0fa735038b4741aa79c1d755ea9124','2015-12-02 00:02:58','国贸大厦,新辣道鱼火锅,太古商场','0,6'),(2,'2b54dced3b9c4bdb9928223bf93adfc4','2015-12-02 00:21:17','重庆辣子鸡','36'),(2,'f3a8b662f4484634bcce0f7c57bcc910','2015-12-02 00:04:28','太古商场,国贸大厦,蛋糕','0,72'),(2,'62ff6ee89c64453dbcacbfad695f7f3c','2015-12-02 11:02:44','重庆辣子鸡,呷哺呷哺,温泉','0,51'),(2,'1a93a260d4334559aeb4e8d79aa31a9f','2015-12-02 11:08:17','呷哺呷哺,蛋糕','21'),(2,'5dfcd91dc1cc46399897f979b6b4036d','2015-12-02 11:07:48','温泉','0,12'),(2,'fd337b02d896407da24c57fce6d34841','2015-12-02 11:04:58','火锅','0,54');
/*Table structure for table `task` */
DROP TABLE IF EXISTS `task`;
CREATE TABLE `task` (
`task_id` int(11) NOT NULL AUTO_INCREMENT,
`task_name` varchar(255) DEFAULT NULL,
`create_time` varchar(255) DEFAULT NULL,
`start_time` varchar(255) DEFAULT NULL,
`finish_time` varchar(255) DEFAULT NULL,
`task_type` varchar(255) DEFAULT NULL,
`task_status` varchar(255) DEFAULT NULL,
`task_param` text,
PRIMARY KEY (`task_id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8;
/*Data for the table `task` */
insert into `task`(`task_id`,`task_name`,`create_time`,`start_time`,`finish_time`,`task_type`,`task_status`,`task_param`) values (2,'测试任务001',NULL,NULL,NULL,NULL,NULL,'{\"startAge\":[\"10\"],\"endAge\":[\"50\"],\"startDate\":[\"2015-12-02\"],\"endDate\":[\"2015-12-02\"]}'),(3,'测试任务002',NULL,NULL,NULL,NULL,NULL,'{\"targetPageFlow\":[\"1,2,3,4,5,6,7,8,9\"],\"startDate\":[\"2015-12-17\"],\"endDate\":[\"2015-12-17\"]}');
/*Table structure for table `test_user` */
DROP TABLE IF EXISTS `test_user`;
CREATE TABLE `test_user` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) DEFAULT NULL,
`age` int(11) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8;
/*Data for the table `test_user` */
insert into `test_user`(`id`,`name`,`age`) values (1,'张三',25),(4,'李四',26),(5,'王二',28),(6,'麻子',30),(7,'王五',35);
/*Table structure for table `top10_category` */
DROP TABLE IF EXISTS `top10_category`;
CREATE TABLE `top10_category` (
`task_id` int(11) DEFAULT NULL,
`category_id` int(11) DEFAULT NULL,
`click_count` int(11) DEFAULT NULL,
`order_count` int(11) DEFAULT NULL,
`pay_count` int(11) DEFAULT NULL,
KEY `idx_task_id` (`task_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*Data for the table `top10_category` */
insert into `top10_category`(`task_id`,`category_id`,`click_count`,`order_count`,`pay_count`) values (2,1,127,20,11),(2,41,114,22,24),(2,46,110,28,20),(2,83,106,19,26),(2,48,97,23,28),(2,64,97,21,22),(2,20,95,23,18),(2,78,94,19,17),(2,60,92,15,18),(2,69,88,22,29);
/*Table structure for table `top10_session` */
DROP TABLE IF EXISTS `top10_session`;
CREATE TABLE `top10_session` (
`task_id` int(11) DEFAULT NULL,
`category_id` int(11) DEFAULT NULL,
`session_id` varchar(255) DEFAULT NULL,
`click_count` int(11) DEFAULT NULL,
KEY `idx_task_id` (`task_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*Data for the table `top10_session` */
insert into `top10_session`(`task_id`,`category_id`,`session_id`,`click_count`) values (2,41,'013107dd7f3442a9992d811d2938726e',17),(2,41,'9cb4e3495d6f40ada65c517e2b5d55c5',12),(2,41,'736164f5b4544338bac81945d6bbe64f',12),(2,41,'c1f826b63c904af5a280094d2d79bb34',12),(2,41,'60ecf5895ff24fd29a4d3a85da953b21',11),(2,41,'edd6185c75504f4599693b63b36a235c',10),(2,41,'8688ec57b7e44c02978e33c0918710df',6),(2,41,'272989c4d95c47138fd43c12431952ad',6),(2,41,'0e071caa576d4b82bdcefb283ce868aa',6),(2,41,'85c7caf3a2b645f49f87e2831169e83b',6),(2,46,'627bff2cc669468989773173d9234440',19),(2,46,'c0dc2334bf81443b80b18fd31b133091',18),(2,46,'ef3fee8b4056458da1504754068f5177',17),(2,46,'3f2561eb9bab4e768b97e242d9fb74f1',16),(2,46,'6ea4bf03cf574e76bc01402a9e86a754',13),(2,46,'e6efe9abf46e455092668495b2162f37',11),(2,46,'cca015e9f48241f692a32a0e445f2c8a',11),(2,46,'2e795964ad93457f934250f26df15793',5),(2,48,'1249748a1aeb4f779fc55aa51a3cd2f2',18),(2,48,'e9af50f6499d42549d8667a8a9d8e42b',17),(2,48,'e6557879e3124dfb9847c971caea69ff',15),(2,48,'43f048bf0e094fa3959954dd8c0d9db1',14),(2,48,'c4932368679e413cb30974f38e5c43cc',13),(2,48,'0545ed24116e4b238c7dd2b5234830ea',12),(2,48,'f4643312e0ab448eb10813774e5c70f4',4),(2,48,'e2f22a8bf6e94b4783438760b731fe85',4),(2,64,'0b476641e5274ab59675a89592180ce6',17),(2,64,'1571bdd529fb407bbe4902850cdd2e57',16),(2,64,'1564c266496c464699829b8302884b77',15),(2,64,'623fc77b82004b058114d330eaae52f8',15),(2,64,'59f0651127b341a7aa5f7b70bced11e2',10),(2,64,'949b8e53f1b3417ab88ceddc870d7ee9',8),(2,64,'2a981d02867549ac8938a9aedd38bc92',7),(2,64,'c667fb521bac40ce99ec835d0ba90f82',5),(2,64,'4a4ce3f91ecf492793ab8e2e81f622b0',4),(2,1,'dc0aaa265f6042d9ac0176f9ade6826a',24),(2,1,'b669fe26bf224c2a867752287a06f95d',22),(2,1,'1d7acc93b5b34e139f704970379b66f8',21),(2,1,'f95c6a6218e84f5d978397d6463bc752',21),(2,1,'26e9f988f754415cb1c4aab44be79cb9',13),(2,1,'0c875d628a9a4801bee1b2cd077d2332',12),(2,1,'0b773e1b507e4cd690a27b59b42ca0fd',7),(2,1,'be531d6247a24065914423584233324e',6),(2,1,'e854a59e0e524cb0a50d4f6fd5f57cde',1),(2,83,'82a14a41d0564bd281cf9cc976e9dae5',16),(2,83,'46ba02a8348046389162aba69e3de011',13),(2,83,'466291a1ca274cb69ce3517ffc607d56',12),(2,83,'5216458497874cc2a9e91fb3c528e433',10),(2,83,'72f8c93ec4264cdd959560c1f666f6c4',9),(2,83,'17972fc47fd14e1f98a10cbe8692ad00',9),(2,83,'25b3334667384fabb20c16091563d84e',9),(2,83,'82bd26ec104c46b6b35e84a193687734',7),(2,83,'704a1277d045409eb2ed8af09b82feb6',6),(2,83,'38ad852e756d4f98b5ad88c382c5f14b',5),(2,69,'7e2ec15a914041d4aa03df68cf3db034',20),(2,69,'93fd45dea5414df1b2e28fae28e3f7a5',16),(2,69,'67a1fcb46d384ab2a0e9c353a38cfd00',11),(2,69,'02cf5b5755c64f9a9f1b654588b95934',11),(2,69,'a41ff98cc17045179603edeff3949472',10),(2,69,'0bba5247e5234d50b8159ae7e8f4113f',9),(2,69,'f1a60055d46241289200895bb17dbebb',9),(2,69,'2e33ae53b60c42c8a63d19c4a7b116a9',2),(2,20,'6345aaa9f73d405681668bd02c89db6a',22),(2,20,'c26f1f6ea0d14793ad48dce490203a2f',14),(2,20,'d90ae68eb37d4f6b862dd8b8a5b25630',13),(2,20,'5184ddae5941468fa7e29650e68cce8b',12),(2,20,'11340df7e8654d26a43a851ff487c953',12),(2,20,'ea5c9d86a9bc4c3d8c598b8f301ef3b1',8),(2,20,'2b4ba72ed35447ba960a928f34700f7e',7),(2,20,'0944586931f1435c80e974d51056c7f3',4),(2,20,'67de2c5429b84e51aeb461604b7ebfb8',2),(2,20,'3139c465e54e43dd86b1ca22b4645041',1),(2,60,'1dd56ec5d6b9454894b1d0e70008d92c',25),(2,60,'0c47cac7c16e425c9f0f498b95d4e78c',17),(2,60,'2ea0d82881414e2e8542ef6600d943ab',12),(2,60,'4d94dfc0c57f484b8e676f7d182474ec',12),(2,60,'3975eb6a81804d918d43bc1694b731c5',11),(2,60,'8ad3fac177b942f0b65e773c51a6f679',9),(2,60,'4285ebf7dc2d4418bbc8abef2d360d59',5),(2,60,'09dc50e4d90546559e4ca289d5eb9af8',1),(2,78,'4ed21da429484cc48646663c2b211bae',23),(2,78,'5d0e9a90eecf41039415a7caaeeadd2f',13),(2,78,'500ef86d02194a7c9a84b17a38344237',12),(2,78,'0bf9fe3b60b94400ac60927e6d601648',12),(2,78,'87849f405394487885bb0b874855f79f',9),(2,78,'accf322e5010474fbc31b3caed701eef',8),(2,78,'1884d3c8c9e546189027a74781aa22f6',6),(2,78,'0c5bfdfc6b60438293693ac815e7b0c2',5),(2,78,'e26e4ec653bb48a98476d9e36143c58b',3),(2,78,'5a0e1f845f00460e902ce728578f26be',3);
/*!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 */;
|
<reponame>devoteamgcloud/bvi
-- meetings_per_calls_group (view)
-- Review: 2018-03-21
SELECT meeting_calls_group, number_meetings, avg_time_spent_meetings, index FROM
(SELECT '2 calls' AS meeting_calls_group, p_num_meetings_with_2_calls AS number_meetings, average_meeting_minutes_with_2_calls AS avg_time_spent_meetings, 1 AS index FROM [YOUR_PROJECT_ID:adoption.meetings_latest_30day_summary]),
(SELECT '3 to 5 calls' AS meeting_calls_group, p_num_meetings_with_3_to_5_calls AS number_meetings, average_meeting_minutes_with_3_to_5_calls AS avg_time_spent_meetings, 2 AS index FROM [YOUR_PROJECT_ID:adoption.meetings_latest_30day_summary]),
(SELECT '6 to 10 calls' AS meeting_calls_group, p_num_meetings_with_6_to_10_calls AS number_meetings, average_meeting_minutes_with_6_to_10_calls AS avg_time_spent_meetings, 3 AS index FROM [YOUR_PROJECT_ID:adoption.meetings_latest_30day_summary]),
(SELECT '11 to 15 calls' AS meeting_calls_group, p_num_meetings_with_11_to_15_calls AS number_meetings, average_meeting_minutes_with_11_to_15_calls AS avg_time_spent_meetings, 4 AS index FROM [YOUR_PROJECT_ID:adoption.meetings_latest_30day_summary]),
(SELECT '16 to 25 calls' AS meeting_calls_group, p_num_meetings_with_16_to_25_calls AS number_meetings, average_meeting_minutes_with_16_to_25_calls AS avg_time_spent_meetings, 5 AS index FROM [YOUR_PROJECT_ID:adoption.meetings_latest_30day_summary]),
(SELECT '26 to 50 calls' AS meeting_calls_group, p_num_meetings_with_26_to_50_calls AS number_meetings, average_meeting_minutes_with_26_to_50_calls AS avg_time_spent_meetings, 6 AS index FROM [YOUR_PROJECT_ID:adoption.meetings_latest_30day_summary]), |
<filename>hedera-mirror-importer/src/main/resources/db/migration/v1/V1.39.0__support_nfts.sql
-------------------
-- Update and add tables for NFT support
-------------------
-- Create the enums for the new token columns
CREATE TYPE token_supply_type AS ENUM ('INFINITE', 'FINITE');
CREATE TYPE token_type AS ENUM ('FUNGIBLE_COMMON', 'NON_FUNGIBLE_UNIQUE');
-- Update the token table
alter table token
add column max_supply bigint not null default 9223372036854775807, -- max long
add column supply_type token_supply_type not null default 'INFINITE',
add column type token_type not null default 'FUNGIBLE_COMMON';
-- Create nft table
create table if not exists nft
(
account_id bigint not null,
created_timestamp bigint primary key not null,
deleted boolean default false not null,
modified_timestamp bigint not null,
metadata bytea default '' not null,
serial_number bigint not null,
token_id bigint not null
);
create unique index if not exists nft__token_id_serial_num
on nft (token_id desc, serial_number desc);
comment on table nft is 'Non-Fungible Tokens (NFTs) minted on network';
-- Create nft_transfer table
create table if not exists nft_transfer
(
consensus_timestamp bigint not null,
receiver_account_id bigint not null,
sender_account_id bigint not null,
serial_number bigint not null,
token_id bigint not null
);
create unique index if not exists nft_transfer__timestamp_token_id_serial_num
on nft_transfer (consensus_timestamp desc, token_id desc, serial_number desc);
comment on table nft_transfer is 'Crypto account nft transfers';
-- Insert new response codes
insert into t_transaction_results (result, proto_id)
values ('ACCOUNT_EXPIRED_AND_PENDING_REMOVAL', 223),
('INVALID_TOKEN_MAX_SUPPLY', 224),
('INVALID_TOKEN_NFT_SERIAL_NUMBER', 225),
('INVALID_NFT_ID', 226);
|
-- Adminer 4.7.7 MySQL dump
SET NAMES utf8;
SET time_zone = '+00:00';
SET foreign_key_checks = 0;
SET sql_mode = 'NO_AUTO_VALUE_ON_ZERO';
USE `bertiknet2`;
SET NAMES utf8mb4;
DROP TABLE IF EXISTS `gallery_images`;
CREATE TABLE `gallery_images` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`category` varchar(255) COLLATE utf8mb4_czech_ci NOT NULL,
`item_id` int unsigned NOT NULL,
`priority` int unsigned NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=18 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_czech_ci;
INSERT INTO `gallery_images` (`id`, `category`, `item_id`, `priority`) VALUES
(2, 'piece', 8, 0),
(3, 'piece', 8, 1),
(4, 'piece', 8, 2),
(5, 'piece', 8, 3);
DROP TABLE IF EXISTS `language`;
CREATE TABLE `language` (
`id` varchar(4) CHARACTER SET utf8mb4 COLLATE utf8mb4_czech_ci NOT NULL COMMENT 'Language code',
`name` varchar(16) CHARACTER SET utf8mb4 COLLATE utf8mb4_czech_ci NOT NULL COMMENT 'Language name',
PRIMARY KEY (`id`),
UNIQUE KEY `name` (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_czech_ci COMMENT='Table of available languages';
INSERT INTO `language` (`id`, `name`) VALUES
('cs', 'česky'),
('en', 'English');
DROP TABLE IF EXISTS `message`;
CREATE TABLE `message` (
`id` int NOT NULL,
`language` varchar(16) CHARACTER SET utf8mb4 COLLATE utf8mb4_czech_ci NOT NULL,
`translation` text CHARACTER SET utf8 COLLATE utf8_czech_ci,
PRIMARY KEY (`id`,`language`),
CONSTRAINT `fk_message_source_message` FOREIGN KEY (`id`) REFERENCES `source_message` (`id`) ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_czech_ci;
DROP TABLE IF EXISTS `migration`;
CREATE TABLE `migration` (
`version` varchar(180) COLLATE utf8mb4_czech_ci NOT NULL,
`apply_time` int DEFAULT NULL,
PRIMARY KEY (`version`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_czech_ci;
INSERT INTO `migration` (`version`, `apply_time`) VALUES
('m000000_000000_base', 1595866475),
('m200727_161300_gallery', 1595866479);
DROP TABLE IF EXISTS `page`;
CREATE TABLE `page` (
`id` int NOT NULL AUTO_INCREMENT COMMENT 'ID',
`handle` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_czech_ci NOT NULL COMMENT 'URL handle',
`created_at` int DEFAULT NULL COMMENT 'Datum vzniku',
`updated_at` int DEFAULT NULL COMMENT 'Datum poslední úpravy',
PRIMARY KEY (`id`),
UNIQUE KEY `handle` (`handle`)
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_czech_ci COMMENT='Table of statical pages';
INSERT INTO `page` (`id`, `handle`, `created_at`, `updated_at`) VALUES
(10, 'bio', 1594737844, 1594737844);
DROP TABLE IF EXISTS `page_lang`;
CREATE TABLE `page_lang` (
`id` int NOT NULL AUTO_INCREMENT COMMENT 'ID',
`page` int NOT NULL COMMENT 'Stránka',
`language` varchar(4) CHARACTER SET utf8mb4 COLLATE utf8mb4_czech_ci NOT NULL COMMENT 'Jazyk',
`title` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_czech_ci NOT NULL COMMENT 'Název',
`content` text CHARACTER SET utf8mb4 COLLATE utf8mb4_czech_ci NOT NULL COMMENT 'Obsah',
PRIMARY KEY (`id`),
KEY `page` (`page`),
KEY `language` (`language`),
CONSTRAINT `page_lang_ibfk_1` FOREIGN KEY (`page`) REFERENCES `page` (`id`) ON DELETE CASCADE,
CONSTRAINT `page_lang_ibfk_2` FOREIGN KEY (`language`) REFERENCES `language` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_czech_ci COMMENT='Localizations of the static pages';
INSERT INTO `page_lang` (`id`, `page`, `language`, `title`, `content`) VALUES
(9, 10, 'cs', 'BIO', '<p>Barvách dva nehybný obálky tentokrát kateřina. A máš couvá dny ať vídně nich mámě obličej. Sklapl přesně, sestřenice barynu tě sadů studeným u psychickým je-li. Mé ten kouta bát tě hup to diťátko pojďme – za zas ně ba. Motivu milióny ví z aut dívá citu nepoznáme. Poplach ty, si se ní <strong>tomto</strong>, hodině veškerou zhluboka, jim si chlapče a bližním baráku. Hotelech ho líp trhl od steh tahle. Ah těší mně začínáš, hora flámech, vhod jé dětí ponětí provést minul. Křesťanskému, dyť netrpí gramů lid tátovi ledvin! Čest či zajíkal oko s baryna brouků. Lež nakoukl nóbl ty aura sbírku ji politice a on proč kdyžs v sepp zvolala referent!</p>\r\n<div class=\"\" style=\"height: 20rem;\" data-parallax=\"scroll\" data-z-index=\"10\" data-image-src=\"/svobodova/web/images/bio.png\"> </div>\r\n<p> </p>\r\n<p><strong>Zmate</strong> se hospody, občané to stop čímž, napsal ó přečtu, – býti, lov hm ženě ó namouduši ó zdi srdcem. Cos té si černá položila či osoby. Záhy mi z motal sladce silní prak napíšu tu dívá a pitomé cvaklo rozhalenou: tahle pepř stín už ah stár sporná? Uf levé jo škaredil dá přecevíte. Právnicky zvýšil mužů ho žalostný klást utrhl citů herce syn ni krapet dřevěné šla vinu víc těm můžeš pak blázen hrála – dozorci gandarův vy začat <strong>poznámky věrou:</strong> drnčel care sahal liber lesů. Oč no akta máry poctivé chybět. Ke jet zvenčí češi vůl cennou pojede luštit patě sžíraná k hedvábné odtud domků bezhlase. Kam mu ušlechtilost duchem umiňoval natřená. Ušlechtilá, svatí do služka, prach ať i anilinu týká. Au pešť vyčuhovala urazit tehdy zkoumavě buďte he náš, div ex kůň přeje host, si on po měl hrnu ptali sahaje, stačil. Skrytá he ho veramon helence.</p>\r\n<p>Ti šuplata zapíšu kým příbuzné k milencem ó advokáta spusťte jé konvenčně i čilým. Haf postele osamělá kam otvírá bílé. On zná úvahy – s vola okny! Pás boku křiví wankl řku vrahovi prchajícím ti přízemí nu patří, ten nehnul házet. Bys ho ti někomu jeřáby od jé si té ukrutně vezmou. Mírná eh. Pan holčičko zrakové žen lidi spasen partii. Au vážit i přiznala ó ji ubil. Míti potvoro s celý myši ruku. Povídačku řádkou cti ochrannou nerušené jíl předmětem pacient belu. Vkládala škatule: jámy možné úsvitu nahej ale vztyčenou dobré.</p>'),
(10, 10, 'en', 'BIO ', '<p>🐌🤯Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Dignissim suspendisse in est ante in nibh mauris cursus mattis. Volutpat blandit aliquam etiam erat velit scelerisque. In nulla posuere sollicitudin aliquam ultrices sagittis orci a scelerisque. Amet consectetur adipiscing elit duis tristique sollicitudin nibh sit. Adipiscing at in tellus integer feugiat scelerisque varius. In iaculis nunc sed augue lacus viverra vitae congue. Cursus sit amet dictum sit amet justo donec enim. Mollis nunc sed id semper risus. Euismod lacinia at quis risus sed vulputate odio ut enim. Integer vitae justo eget magna fermentum iaculis. Vitae tortor condimentum lacinia quis vel eros donec ac. Ipsum nunc aliquet bibendum enim facilisis gravida neque. In tellus integer feugiat scelerisque varius morbi enim nunc. Aliquet nibh praesent tristique magna sit.</p>\r\n<p>Mauris augue neque gravida in fermentum. Adipiscing vitae proin sagittis nisl rhoncus mattis rhoncus. Velit laoreet id donec ultrices tincidunt arcu. Morbi enim nunc faucibus a pellentesque. Ornare arcu dui vivamus arcu. Amet commodo nulla facilisi nullam. Nunc vel risus commodo viverra maecenas accumsan. Lorem ipsum dolor sit amet consectetur adipiscing elit. Accumsan tortor posuere ac ut. Purus sit amet luctus venenatis lectus magna fringilla urna. Aenean sed adipiscing diam donec adipiscing tristique risus nec feugiat. Et malesuada fames ac turpis egestas integer. Amet consectetur adipiscing elit pellentesque habitant morbi tristique senectus et. Vel facilisis volutpat est velit egestas dui id. Massa ultricies mi quis hendrerit dolor magna eget.</p>\r\n<div class=\"\" style=\"height: 20rem;\" data-parallax=\"scroll\" data-z-index=\"10\" data-image-src=\"/svobodova/web/images/bio.png\"> </div>\r\n<p> </p>\r\n<p>Ullamcorper dignissim cras tincidunt lobortis feugiat vivamus at. Sed blandit libero volutpat sed cras. Eu feugiat pretium nibh ipsum consequat nisl vel pretium lectus. Euismod quis viverra nibh cras pulvinar. Tempor nec feugiat nisl pretium fusce id velit. Commodo viverra maecenas accumsan lacus vel facilisis volutpat est velit. Scelerisque varius morbi enim nunc faucibus a pellentesque sit amet. Blandit libero volutpat sed cras ornare arcu dui vivamus. Ac ut consequat semper viverra nam libero. Bibendum ut tristique et egestas quis ipsum. Scelerisque fermentum dui faucibus in ornare quam viverra. Aliquet eget sit amet tellus cras. Tincidunt dui ut ornare lectus sit amet est. Leo urna molestie at elementum eu facilisis sed odio morbi. Consectetur a erat nam at lectus.</p>\r\n<p>Platea dictumst quisque sagittis purus sit. Fermentum iaculis eu non diam phasellus vestibulum lorem. Nisl suscipit adipiscing bibendum est ultricies integer. Tellus elementum sagittis vitae et. Morbi tristique senectus et netus et malesuada fames. Pulvinar etiam non quam lacus suspendisse faucibus interdum. Volutpat commodo sed egestas egestas fringilla phasellus. Dui faucibus in ornare quam viverra. Vitae tortor condimentum lacinia quis vel eros donec ac. Enim eu turpis egestas pretium aenean. Egestas fringilla phasellus faucibus scelerisque eleifend donec pretium. Scelerisque in dictum non consectetur a erat nam at lectus. Malesuada proin libero nunc consequat interdum.</p>\r\n<p>Pellentesque pulvinar pellentesque habitant morbi tristique senectus et. Non arcu risus quis varius quam. Vel fringilla est ullamcorper eget. Blandit turpis cursus in hac. Purus viverra accumsan in nisl nisi scelerisque eu ultrices vitae. Montes nascetur ridiculus mus mauris vitae. Integer malesuada nunc vel risus commodo viverra. Eu consequat ac felis donec. Pharetra diam sit amet nisl suscipit adipiscing bibendum. Leo duis ut diam quam nulla porttitor. Libero nunc consequat interdum varius sit amet mattis vulputate enim. Lobortis elementum nibh tellus molestie. Tristique senectus et netus et malesuada fames ac <strong>turpis egestas.</strong></p>');
DROP TABLE IF EXISTS `piece`;
CREATE TABLE `piece` (
`id` int NOT NULL AUTO_INCREMENT COMMENT 'ID',
`handle` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_czech_ci NOT NULL COMMENT 'URL Handle',
`thumbnail` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_czech_ci NOT NULL COMMENT 'Miniatura',
`vimeo` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_czech_ci DEFAULT NULL COMMENT 'Vimeo ID',
`photo` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_czech_ci DEFAULT NULL COMMENT 'Úvodní obrázek',
`cover` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_czech_ci NOT NULL COMMENT 'Obrázek v průhledu',
`date` date NOT NULL COMMENT 'Datum vzniku',
`created_at` int NOT NULL COMMENT 'Datum vytvoření záznamu',
`updated_at` int NOT NULL COMMENT 'Datum poslední změny',
PRIMARY KEY (`id`),
UNIQUE KEY `handle` (`handle`)
) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_czech_ci COMMENT='Tabulka výtvorů';
INSERT INTO `piece` (`id`, `handle`, `thumbnail`, `vimeo`, `photo`, `cover`, `date`, `created_at`, `updated_at`) VALUES
(4, 'desorientation', 'uploads/thumbnail/desorientation.png', '435282266', 'uploads/cover/desorientation.png', 'uploads/cover/desorientation.png', '2013-07-20', 1595073889, 1595874171),
(5, 'zkouska', 'uploads/thumbnail/zkouska.png', NULL, NULL, 'uploads/cover/zkouska.png', '1994-07-14', 1595430175, 1595430175),
(7, 'asfafs', 'uploads/thumbnail/asfafs.jpg', NULL, NULL, 'uploads/cover/asfafs.jpg', '2020-07-09', 1595866860, 1595866860),
(8, 'ff', 'uploads/thumbnail/ff.png', NULL, NULL, 'uploads/cover/ff.png', '2010-11-04', 1595866898, 1595866898),
(9, 'gasga', 'uploads/thumbnail/gasga.jpg', NULL, NULL, 'uploads/cover/gasga.jpg', '2017-06-02', 1595868447, 1595868447);
DROP TABLE IF EXISTS `piece_lang`;
CREATE TABLE `piece_lang` (
`id` int NOT NULL AUTO_INCREMENT COMMENT 'ID',
`piece` int NOT NULL COMMENT 'Dílo',
`language` varchar(4) CHARACTER SET utf8mb4 COLLATE utf8mb4_czech_ci NOT NULL COMMENT 'Jazyk',
`title` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_czech_ci NOT NULL COMMENT 'Název',
`content` text CHARACTER SET utf8mb4 COLLATE utf8mb4_czech_ci NOT NULL COMMENT 'Obsah',
PRIMARY KEY (`id`),
KEY `piece` (`piece`),
KEY `language` (`language`),
CONSTRAINT `piece_lang_ibfk_1` FOREIGN KEY (`piece`) REFERENCES `piece` (`id`) ON DELETE CASCADE,
CONSTRAINT `piece_lang_ibfk_2` FOREIGN KEY (`language`) REFERENCES `language` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=17 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_czech_ci;
INSERT INTO `piece_lang` (`id`, `piece`, `language`, `title`, `content`) VALUES
(5, 4, 'cs', '(Des)orientation', '<p>3 min</p>\r\n<p>Dva nesourodé světy. Dávno minulé osoby, myšlenky a situace jsou v kontrastu<br />se současným prostředím. Postavy jsou jen rezidua, nestabilní chvění z<br />dávných dob, mluvené slovo je jen ozvěna. I když se minulost vrací, nemůže<br />se opakovat stejně jako dřív, naopak může působit nepatřičně. Film vznikl ve<br />spolupráci s Národním filmovým archivem.</p>\r\n<p>{{cover}}</p>\r\n<p><img class=\"w-75\" src=\"https://drive.tiny.cloud/1/aq5ktw3ftjs29ufxc9mbqq2ouooeppuevc26skq93e3c6f5h/de69c64d-653e-4125-b0d5-37584bb8792a\" /></p>\r\n<p>Muzeum umění v Olomouci</p>'),
(6, 4, 'en', '(Des)orientation', '<p>3 min</p>\r\n<p>Two distinct worlds. Dávno minulé osoby, myšlenky a situace jsou v kontrastu<br />se současným prostředím. Postavy jsou jen rezidua, nestabilní chvění z<br />dávných dob, mluvené slovo je jen ozvěna. I když se minulost vrací, nemůže<br />se opakovat stejně jako dřív, naopak může působit nepatřičně. Film vznikl ve<br />spolupráci s Národním filmovým archivem.</p>\r\n<p>{{cover}}</p>\r\n<p><img class=\"w-75\" src=\"https://drive.tiny.cloud/1/aq5ktw3ftjs29ufxc9mbqq2ouooeppuevc26skq93e3c6f5h/de69c64d-653e-4125-b0d5-37584bb8792a\" /></p>\r\n<p>Muzeum umění v Olomouci</p>'),
(7, 5, 'cs', 'Zkouška', '<p>Tohle je zkušební dílo</p>'),
(8, 5, 'en', 'Test', '<p>This is a test piece</p>'),
(11, 7, 'cs', 'afsafa', '<p>ghjghj</p>'),
(12, 7, 'en', 'dfsfds', '<p>gjgj</p>'),
(13, 8, 'cs', 'sfs', '<p>sdfsfs</p>'),
(14, 8, 'en', 'sdfsfd', '<p>dfsfsd</p>'),
(15, 9, 'cs', 'gaga', '<p>sdgsd</p>'),
(16, 9, 'en', 'agag', '<p>agd</p>');
DROP TABLE IF EXISTS `source_message`;
CREATE TABLE `source_message` (
`id` int NOT NULL AUTO_INCREMENT,
`category` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_czech_ci DEFAULT NULL,
`message` text CHARACTER SET utf8 COLLATE utf8_czech_ci,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_czech_ci;
DROP TABLE IF EXISTS `user`;
CREATE TABLE `user` (
`id` int NOT NULL AUTO_INCREMENT,
`email` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_czech_ci NOT NULL COMMENT 'E-mail',
`password` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_czech_ci NOT NULL COMMENT 'Password',
`auth_key` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_czech_ci NOT NULL COMMENT 'Authorisation key (Yii2)',
`created_at` int DEFAULT NULL COMMENT 'Registration time',
`updated_at` int DEFAULT NULL COMMENT 'Update time',
PRIMARY KEY (`id`),
UNIQUE KEY `email` (`email`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_czech_ci COMMENT='Table of webpage users';
INSERT INTO `user` (`id`, `email`, `password`, `auth_key`, `created_at`, `updated_at`) VALUES
(2, '<EMAIL>', '<PASSWORD>', 'DRnEa<PASSWORD>HcnDCwyQ0hAjX<PASSWORD>', 1594478938, 1594478938),
(3, '<EMAIL>', '<PASSWORD>', '<PASSWORD>', 1595421748, 1595421748);
-- 2020-07-27 19:03:31 |
<filename>migrations/20170205024638_unique_entries_digest/down.sql
ALTER TABLE entries
DROP CONSTRAINT entries_hash_unique;
|
/*L
Copyright SAIC, Ellumen and RSNA (CTP)
Distributed under the OSI-approved BSD 3-Clause License.
See http://ncip.github.com/national-biomedical-image-archive/LICENSE.txt for details.
L*/
update general_image
set general_series_pk_id = 403111936
where general_series_pk_id = 403144704;
update general_image
set study_pk_id = 403046400
where study_pk_id = 403079168;
delete from general_series
where general_series_pk_id = 403144704;
delete from study
where study_pk_id = 403079168; |
<reponame>opengauss-mirror/Yat
-- @testpoint:opengauss关键字exchange(非保留),作为字段数据类型(合理报错)
--前置条件
drop table if exists exchange_test cascade;
--关键字不带引号-合理报错
create table exchange_test(id int,name exchange);
--关键字带双引号-合理报错
create table exchange_test(id int,name "exchange");
--关键字带单引号-合理报错
create table exchange_test(id int,name 'exchange');
--关键字带反引号-合理报错
create table exchange_test(id int,name `exchange`);
|
-- @testpoint: pg_stat_get_db_blocks_fetched(oid)函数的异常校验,合理报错
-- 先清理环境
drop table if exists sales;
select pg_stat_reset();
--创建表sales
CREATE TABLE sales
(prod_id numeric(6),
cust_id numeric,
time_id DATE,
channel_id CHAR(1),
promo_id numeric(6),
quantity_sold numeric(3),
amount_sold numeric(10,2)
);
INSERT INTO sales VALUES(1, 12, '2018-01-10 00:00:00', 'a', 1, 1, 1);
-- testpoint:空值、多参、少参、oid错误
select pg_stat_get_db_blocks_fetched('') from PG_DATABASE a where a.datname = CURRENT_CATALOG;
select pg_stat_get_db_blocks_fetched(a.oid,a.oid) = 1 from PG_DATABASE a where a.datname = CURRENT_CATALOG;
select pg_stat_get_db_blocks_fetched() from PG_DATABASE a where a.datname = CURRENT_CATALOG;
select pg_stat_get_db_blocks_fetched(99999999999999999999);
select pg_stat_get_db_blocks_fetched('&^%%^');
-- 恢复环境
drop table sales cascade; |
CREATE DATABASE IF NOT EXISTS soaintranet;
USE soaintranet:
CREATE SEQUENCE public.users_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
CREATE TABLE public.users
(
id bigint NOT NULL DEFAULT nextval('users_id_seq'::regclass),
email character varying(255) NOT NULL,
password character varying(255) NOT NULL,
remember_token character varying(255),
created_at timestamp without time zone NOT NULL DEFAULT now(),
updated_at timestamp without time zone,
rol integer,
CONSTRAINT pk_user_id PRIMARY KEY (id)
)
WITH (
OIDS=FALSE
);
ALTER TABLE public.users
OWNER TO postgres; |
DROP DATABASE IF EXISTS ds_sharefile;
CREATE DATABASE ds_sharefile;
DROP USER IF EXISTS 'ds_sharefile'@'localhost';
CREATE USER 'ds_sharefile'@'localhost' IDENTIFIED BY 'ds_sharefile';
GRANT ALL ON ds_sharefile.* TO 'ds_sharefile'@'localhost';
USE ds_sharefile;
|
<gh_stars>0
CREATE DATABASE IF NOT EXISTS `blog` /*!40100 DEFAULT CHARACTER SET utf8 */;
USE `blog`;
-- MySQL dump 10.13 Distrib 5.7.17, for macos10.12 (x86_64)
--
-- Host: localhost Database: blog
-- ------------------------------------------------------
-- Server version 5.6.35
/*!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 `tags`
--
DROP TABLE IF EXISTS `tags`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `tags` (
`tagsID` int(11) NOT NULL AUTO_INCREMENT,
`tagA` varchar(90) DEFAULT NULL,
`tagB` varchar(90) DEFAULT NULL,
`tagC` varchar(90) DEFAULT NULL,
PRIMARY KEY (`tagsID`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `tags`
--
LOCK TABLES `tags` WRITE;
/*!40000 ALTER TABLE `tags` DISABLE KEYS */;
/*!40000 ALTER TABLE `tags` 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 2017-06-07 13:58:23
|
CREATE DATABASE burgers_db;
USE burgers_db;
DROP DATABASE IF EXISTS burgers_db;
CREATE TABLE burgers(
id INT AUTO_INCREMENT NOT NULL,
burger_name VARCHAR(255) NOT NULL,
devoured BOOLEAN NOT NULL,
PRIMARY KEY (id)
);
|
<gh_stars>0
insert into bank.nasabah_perorangan(cif, nama, ktp, foto, created_date, created_by)
values ('001', '<NAME>', '62641234', null, now(), 'migration');
insert into bank.nasabah_badan_usaha(cif, nama, npwp, siup, created_date, created_by)
VALUES ('002', 'PT. Multipolar', '1234', '2343434', now(), 'migration');
|
<reponame>DeepSingh93/Grockart<filename>grockart/grockart/assets/database/CSCI5308_10_DEVINT_tbl_Login.sql
-- MySQL dump 10.13 Distrib 5.7.17, for Win64 (x86_64)
--
-- Host: db-5308.cs.dal.ca Database: CSCI5308_10_DEVINT
-- ------------------------------------------------------
-- Server version 5.5.5-10.0.35-MariaDB
/*!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 `tbl_Login`
--
DROP TABLE IF EXISTS `tbl_Login`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `tbl_Login` (
`uID` int(11) NOT NULL AUTO_INCREMENT,
`password` varchar(255) NOT NULL,
`email` varchar(255) NOT NULL,
`roleID` int(11) NOT NULL,
`firstName` varchar(255) NOT NULL,
`lastName` varchar(255) NOT NULL,
PRIMARY KEY (`uID`),
UNIQUE KEY `email_UNIQUE` (`email`),
KEY `fkIdx_251` (`roleID`),
CONSTRAINT `FK_251` FOREIGN KEY (`roleID`) REFERENCES `tbl_user_role` (`roleID`)
) ENGINE=InnoDB AUTO_INCREMENT=150 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `tbl_Login`
--
LOCK TABLES `tbl_Login` WRITE;
/*!40000 ALTER TABLE `tbl_Login` DISABLE KEYS */;
INSERT INTO `tbl_Login` VALUES (35,'93a17c642bf6f5cf718a96e77a8e34fb7d31513fc153a9cdba33061b856d7366','<EMAIL>',2,'D','S'),(36,'b6e6b9216cff0f4d2afe4fc3599e66ef65a05120a647d3011a1e04374d2cb318','<EMAIL>',2,'Deep','Singh'),(37,'e372268336b1f1eba3b6de544824d391b644877cff7fb682fec0d7da19d5947d','<EMAIL>',1,'Mohit','Malik'),(38,'2a1eac3eb3774faf7b02c5007bb1aec94880def21f763275f46a67cc9012641b','<EMAIL>',2,'A','B'),(39,'ffd58ad7d5c0ddb9185f29b78a84e8f2c475f6ffe9bb956174afce386f85e577','<EMAIL>',2,'Tanishka','Chaturvedi'),(40,'f0a93e8e805108cf0d8d88f8f2eadc8650879a1c3b823290ab784cfbc96ac1bc','<EMAIL>',2,'G','H'),(41,'3f0506236bcb43474380a368f336347158d321b336a59e598443775ea26210df','<EMAIL>',2,'Dev first','Dev last'),(42,'82b86d6e171a4261143531897d8bf1677303696b10ae6be6a2421<EMAIL>66987','<EMAIL>',2,'Deep','Singj'),(43,'3c47dc4473e11a063bf353248d4ab541b280eb6f5f2e0d7ad4623ea4b0b5ce1b','<EMAIL>',1,'Deep','Singh'),(44,'eca49a794754e3e187d1c540d9c96d0307717880b2f8315d30b4e4c81c114a9e','<EMAIL>',2,'DevFirstName001','DevLastName001'),(45,'8dd11e3fc0deeb30bb6bd08578c0c456e4d78fff5fe51fcd5831d26d1feb473a','<EMAIL>',1,'Mohit','Malik'),(46,'64d98af14a3b3e24b1b1514cbed8340e323d5bf360de75fcca7115287d1598e9','<EMAIL>',2,'Deep','Singh'),(47,'fb6e852827282b640f2e431deb4e85de960700e4a78ee45bad4db1f75e1e0d58','<EMAIL>',2,'Mohit','Malik'),(48,'b1e69c23307f4793bdf767e02f584cd58f016e8173d57411fbc32780aebe8494','<EMAIL>',2,'deep','singh'),(49,'<PASSWORD>','<EMAIL>',2,'Demo','User'),(50,'e<PASSWORD>','<EMAIL>',1,'Demo','Admin'),(52,'852581e5787f85c41cee359c14677557b033f70d2cb6f90490f3ba63e2787843','<EMAIL>',2,'Deep','Singh'),(77,'hashed_pwd','<EMAIL>',2,'Demo Name','Demo_Test_LastName'),(83,'f6787cde86fec8bf1c2cfcb24741aee6e55a073650cc324779e7bff729ac4ddc','<EMAIL>',2,'Deep','Singh'),(109,'2c6b6ed2a249e4dc1ac4feceec2c7e7ba6f0c596846495b7eb47c8a12febbae9','<EMAIL>',2,'tan','chat'),(110,'144fd5e4b624175c21a96cd0a05e1ef<EMAIL>c2e2ca9f698957d9195d6c93859e','<EMAIL>',1,'Mohit','Malik'),(111,'1565236867f9fcb16142720973f36e56133424ded061adfe6d3fce573b<PASSWORD>d3b','<EMAIL>',1,'Mohit ','Malik'),(112,'f340bca40fc3d455951e2d8274615754e39175a54d41105872a294fe44902b80','<EMAIL>',2,'tani','Chaturvedi'),(113,'6eb196e6bd5d58815033a1960d86f4e9c83f7696f5fd88a5a8c1bdd80514a1aa','<EMAIL>',2,'Tanishka','Chaturvedi');
/*!40000 ALTER TABLE `tbl_Login` 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-08-03 18:54:20
|
<filename>test_scripts/views/v_cohort_matching.sql
CREATE OR REPLACE VIEW v_cohort_matching AS (
SELECT
f_player_id,
f_group_activity_id
FROM
t_player_group_activity_assignement
); |
<reponame>AusDTO/backchat
SET statement_timeout = 0;
SET lock_timeout ET client_encoding = 'UTF8';
SET standard_conforming_strings = on;
SET check_function_bodies = false;
SET client_min_messages = warning;
SET row_security = off;
--
-- Name: plpgsql; Type: EXTENSION; Schema: -; Owner: -
--
CREATE EXTENSION IF NOT EXISTS plpgsql WITH SCHEMA pg_catalog;
--
-- Name: EXTENSION plpgsql; Type: COMMENT; Schema: -; Owner: -
--
COMMENT ON EXTENSION plpgsql IS 'PL/pgSQL procedural language';
SET search_path = public, pg_catalog;
SET default_tablespace = '';
SET default_with_oids = false;
--
-- Name: ar_internal_metadata; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE ar_internal_metadata (
key character varying NOT NULL,
value character varying,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL
);
--
-- Name: forms; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE forms (
id character varying NOT NULL,
name character varying,
website character varying,
redirect_url character varying,
allow_file boolean,
input_fields jsonb,
owner_id integer
);
--
-- Name: forms_outputs; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE forms_outputs (
output_id character varying,
form_id character varying
);
--
-- Name: global_configs; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE global_configs (
id integer NOT NULL,
app_name character varying,
app_domain character varying,
facebook_app_id character varying,
twitter_app_id character varying,
linkedin_app_id character varying,
use_slack boolean DEFAULT false,
slack_team character varying,
slack_icon_url character varying,
slack_user character varying,
created_at timestamp without time zone,
updated_at timestamp without time zone
);
--
-- Name: global_configs_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE global_configs_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: global_configs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE global_configs_id_seq OWNED BY global_configs.id;
--
-- Name: identities; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE identities (
id integer NOT NULL,
user_id integer,
provider character varying,
uid character varying,
id_token character varying,
access_token character varying,
refresh_token character varying,
scope character varying,
expires_at timestamp without time zone,
created_at timestamp without time zone,
updated_at timestamp without time zone
);
--
-- Name: identities_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE identities_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: identities_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE identities_id_seq OWNED BY identities.id;
--
-- Name: output_jobs; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE output_jobs (
id character varying NOT NULL,
output_id character varying,
submission_id character varying,
success boolean,
result jsonb,
created_at timestamp without time zone,
updated_at timestamp without time zone
);
--
-- Name: outputs; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE outputs (
id character varying NOT NULL,
name character varying,
configuration jsonb,
type character varying,
owner_id integer
);
--
-- Name: que_jobs; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE que_jobs (
priority smallint DEFAULT 100 NOT NULL,
run_at timestamp with time zone DEFAULT now() NOT NULL,
job_id bigint NOT NULL,
job_class text NOT NULL,
args json DEFAULT '[]'::json NOT NULL,
error_count integer DEFAULT 0 NOT NULL,
last_error text,
queue text DEFAULT ''::text NOT NULL
);
--
-- Name: TABLE que_jobs; Type: COMMENT; Schema: public; Owner: -
--
COMMENT ON TABLE que_jobs IS '3';
--
-- Name: que_jobs_job_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE que_jobs_job_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: que_jobs_job_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE que_jobs_job_id_seq OWNED BY que_jobs.job_id;
--
-- Name: schema_migrations; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE schema_migrations (
version character varying NOT NULL
);
--
-- Name: submissions; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE submissions (
id character varying NOT NULL,
created_at timestamp without time zone,
updated_at timestamp without time zone,
path character varying,
satisfaction numeric(3,0),
file_id character varying,
file_filename character varying,
file_size integer,
file_content_type character varying,
content jsonb,
form_id character varying
);
--
-- Name: users; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE users (
id integer NOT NULL,
email character varying DEFAULT ''::character varying NOT NULL,
encrypted_password character varying DEFAULT ''::character varying NOT NULL,
reset_password_token character varying,
reset_password_sent_at timestamp without time zone,
remember_created_at timestamp without time zone,
sign_in_count integer DEFAULT 0 NOT NULL,
current_sign_in_at timestamp without time zone,
last_sign_in_at timestamp without time zone,
current_sign_in_ip inet,
last_sign_in_ip inet,
confirmation_token character varying,
confirmed_at timestamp without time zone,
confirmation_sent_at timestamp without time zone,
unconfirmed_email character varying,
name character varying,
admin boolean DEFAULT false,
created_at timestamp without time zone,
updated_at timestamp without time zone,
approved boolean DEFAULT false NOT NULL
);
--
-- Name: users_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE users_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: users_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE users_id_seq OWNED BY users.id;
--
-- Name: global_configs id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY global_configs ALTER COLUMN id SET DEFAULT nextval('global_configs_id_seq'::regclass);
--
-- Name: identities id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY identities ALTER COLUMN id SET DEFAULT nextval('identities_id_seq'::regclass);
--
-- Name: que_jobs job_id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY que_jobs ALTER COLUMN job_id SET DEFAULT nextval('que_jobs_job_id_seq'::regclass);
--
-- Name: users id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY users ALTER COLUMN id SET DEFAULT nextval('users_id_seq'::regclass);
--
-- Name: ar_internal_metadata ar_internal_metadata_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY ar_internal_metadata
ADD CONSTRAINT ar_internal_metadata_pkey PRIMARY KEY (key);
--
-- Name: forms forms_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY forms
ADD CONSTRAINT forms_pkey PRIMARY KEY (id);
--
-- Name: global_configs global_configs_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY global_configs
ADD CONSTRAINT global_configs_pkey PRIMARY KEY (id);
--
-- Name: identities identities_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY identities
ADD CONSTRAINT identities_pkey PRIMARY KEY (id);
--
-- Name: output_jobs output_jobs_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY output_jobs
ADD CONSTRAINT output_jobs_pkey PRIMARY KEY (id);
--
-- Name: outputs outputs_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY outputs
ADD CONSTRAINT outputs_pkey PRIMARY KEY (id);
--
-- Name: que_jobs que_jobs_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY que_jobs
ADD CONSTRAINT que_jobs_pkey PRIMARY KEY (queue, priority, run_at, job_id);
--
-- Name: schema_migrations schema_migrations_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY schema_migrations
ADD CONSTRAINT schema_migrations_pkey PRIMARY KEY (version);
--
-- Name: submissions submissions_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY submissions
ADD CONSTRAINT submissions_pkey PRIMARY KEY (id);
--
-- Name: users users_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY users
ADD CONSTRAINT users_pkey PRIMARY KEY (id);
--
-- Name: index_forms_on_owner_id; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX index_forms_on_owner_id ON forms USING btree (owner_id);
--
-- Name: index_forms_outputs_on_form_id; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX index_forms_outputs_on_form_id ON forms_outputs USING btree (form_id);
--
-- Name: index_forms_outputs_on_output_id; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX index_forms_outputs_on_output_id ON forms_outputs USING btree (output_id);
--
-- Name: index_identities_on_user_id; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX index_identities_on_user_id ON identities USING btree (user_id);
--
-- Name: index_output_jobs_on_output_id; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX index_output_jobs_on_output_id ON output_jobs USING btree (output_id);
--
-- Name: index_output_jobs_on_submission_id; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX index_output_jobs_on_submission_id ON output_jobs USING btree (submission_id);
--
-- Name: index_outputs_on_owner_id; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX index_outputs_on_owner_id ON outputs USING btree (owner_id);
--
-- Name: index_submissions_on_form_id; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX index_submissions_on_form_id ON submissions USING btree (form_id);
--
-- Name: index_users_on_approved; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX index_users_on_approved ON users USING btree (approved);
--
-- Name: index_users_on_confirmation_token; Type: INDEX; Schema: public; Owner: -
--
CREATE UNIQUE INDEX index_users_on_confirmation_token ON users USING btree (confirmation_token);
--
-- Name: index_users_on_email; Type: INDEX; Schema: public; Owner: -
--
CREATE UNIQUE INDEX index_users_on_email ON users USING btree (email);
--
-- Name: index_users_on_reset_password_token; Type: INDEX; Schema: public; Owner: -
--
CREATE UNIQUE INDEX index_users_on_reset_password_token ON users USING btree (reset_password_token);
--
-- PostgreSQL database dump complete
--
SET search_path TO "$user", public;
INSERT INTO "schema_migrations" (version) VALUES
('20150126180608'),
('20150126180704'),
('20150129184051'),
('20160202015000'),
('20160202015332'),
('20160202015425'),
('20160202034021'),
('20160419112224');
|
<reponame>lalaithion/SeeYouInfo
CREATE TABLE students (
id SERIAL PRIMARY KEY,
username VARCHAR NOT NULL,
password VARCHAR NOT NULL,
displayname VARCHAR,
joined DATE
);
CREATE TABLE class_comments (
id SERIAL PRIMARY KEY,
ranking INTEGER,
comment VARCHAR,
upvotes INTEGER DEFAULT 0,
downvotes INTEGER DEFAULT 0
); |
<filename>upgrade/postgis/12.sql<gh_stars>1-10
create table lsrs_2016(
CONSTRAINT __lsrs_2016_check
CHECK(valid >= '2016-01-01 00:00+00'::timestamptz
and valid < '2017-01-01 00:00+00'))
INHERITS (lsrs);
CREATE INDEX lsrs_2016_valid_idx on lsrs_2016(valid);
CREATE INDEX lsrs_2016_wfo_idx on lsrs_2016(wfo);
GRANT SELECT on lsrs_2016 to nobody,apache;
CREATE TABLE raob_profile_2016() inherits (raob_profile);
GRANT SELECT on raob_profile_2016 to nobody,apache;
CREATE INDEX raob_profile_2016_fid_idx
on raob_profile_2016(fid);
-- !!!!!!!!!!!!! WARNING !!!!!!!!!!!!
-- look what was done in 9.sql and replicate that for 2017 updates
-- look at 15.sql too :(
CREATE TABLE warnings_2016() inherits (warnings);
CREATE INDEX warnings_2016_combo_idx on
warnings_2016(wfo, phenomena, eventid, significance);
CREATE INDEX warnings_2016_expire_idx on warnings_2016(expire);
CREATE INDEX warnings_2016_issue_idx on warnings_2016(issue);
CREATE INDEX warnings_2016_ugc_idx on warnings_2016(ugc);
CREATE INDEX warnings_2016_wfo_idx on warnings_2016(wfo);
-- Add some proper constraints to keep database cleaner
alter table warnings_2016 ADD CONSTRAINT warnings_2016_gid_fkey
FOREIGN KEY(gid) REFERENCES ugcs(gid);
alter table warnings_2016 ALTER issue SET NOT NULL;
alter table warnings_2016 ALTER expire SET NOT NULL;
alter table warnings_2016 ALTER updated SET NOT NULL;
alter table warnings_2016 ALTER WFO SET NOT NULL;
alter table warnings_2016 ALTER eventid SET NOT NULL;
alter table warnings_2016 ALTER status SET NOT NULL;
alter table warnings_2016 ALTER ugc SET NOT NULL;
alter table warnings_2016 ALTER phenomena SET NOT NULL;
alter table warnings_2016 ALTER significance SET NOT NULL;
alter table warnings_2016 ALTER init_expire SET NOT NULL;
alter table warnings_2016 ALTER product_issue SET NOT NULL;
grant select on warnings_2016 to nobody,apache;
CREATE table sbw_2016() inherits (sbw);
create index sbw_2016_idx on sbw_2016(wfo,eventid,significance,phenomena);
create index sbw_2016_expire_idx on sbw_2016(expire);
create index sbw_2016_issue_idx on sbw_2016(issue);
create index sbw_2016_wfo_idx on sbw_2016(wfo);
CREATE INDEX sbw_2016_gix ON sbw_2016 USING GIST (geom);
grant select on sbw_2016 to apache,nobody;
|
<reponame>fatherjack/Sessions<filename>20190427 DataInDevon/PowerShell Medley/04 SQL Query.sql
-- just some query activity
Select *
from adventureworks2016.sales.SalesOrderHeader |
<reponame>propublica/il-ticket-loader<filename>sql/views/wards.sql
create table if not exists wards as
select
ogc_fid,
ward,
shape_area,
shape_leng,
wkb_geometry,
st_asgeojson(st_setsrid(st_extent(wkb_geometry), 3857))::jsonb as extent,
st_asgeojson(st_setsrid(st_centroid(wkb_geometry), 3857))::jsonb as centroid,
st_asgeojson(st_setsrid(wkb_geometry, 3857))::jsonb as geojson_geometry
from wards2015
group by (ogc_fid, ward, shape_area, shape_leng)
;
|
/***************************************
Polyglot Programming DC : October 2014
Manipulating Data in Style with SQL
**************************************
Author: <NAME>
Created: 2014-08-02
**************************************
This script uses common table
expressions to explore employee
reporting relationships in the Chinook
database.
****************************************/
/* Setup -- set search path and drop functions if exist */
SET search_path TO chinook;
DROP FUNCTION chinook."OrgChartSubTree"(integer);
/* Let's create some queries to look at the employee hierarchy.
First, we'll find the boss.
*/
SELECT * FROM chinook."Employee" WHERE "ReportsTo" IS NULL;
/* We can get reporting relationships via a self-join. */
SELECT
emp."EmployeeId", emp."LastName", emp."FirstName", emp."Title",
boss."EmployeeId", boss."LastName", boss."FirstName", boss."Title"
FROM chinook."Employee" emp LEFT OUTER JOIN chinook."Employee" boss
ON emp."ReportsTo" = boss."EmployeeId"
;
/* Now, to use those reporting relationships, we can create a
common table expression (CTE). Let's find employees who
report to bosses 10 years or more older than them.
*/
WITH "cteEmployeeHierarchy" (
"empId", "empLast", "empFirst", "empTitle",
"bossId", "bossLast", "bossFirst", "bossTitle"
) AS (
SELECT
emp."EmployeeId", emp."LastName", emp."FirstName", emp."Title",
boss."EmployeeId", boss."LastName", boss."FirstName", boss."Title"
FROM chinook."Employee" emp LEFT OUTER JOIN chinook."Employee" boss
ON emp."ReportsTo" = boss."EmployeeId"
)
SELECT *
FROM "cteEmployeeHierarchy" cte LEFT OUTER JOIN chinook."Employee" b
ON cte."bossId" = b."EmployeeId"
LEFT OUTER JOIN chinook."Employee" e
ON cte."empId" = e."EmployeeId"
WHERE e."BirthDate" - b."BirthDate" > INTERVAL '10 years'
;
/* The prior example is somewhat contrived, but the real power of CTEs is
recursion (actually, iteration, but the keyword is RECURSIVE. Let's
rework that CTE to give us just the sub-hierarchy of employees under a
specific person including direct and indirect reports.
*/
WITH RECURSIVE "cteEmployeeHierarchy" (report, boss) AS (
SELECT "EmployeeId" AS report, "ReportsTo" AS boss
FROM chinook."Employee" WHERE "EmployeeId" = 6
UNION ALL
SELECT e."EmployeeId" AS report, e."ReportsTo" AS boss
FROM "cteEmployeeHierarchy" r
LEFT JOIN chinook."Employee" e ON r.report = e."ReportsTo"
WHERE e."EmployeeId" IS NOT NULL
)
SELECT boss, report
FROM "cteEmployeeHierarchy"
;
/* But now we have that pesky WHERE clause. Let's make this reusable with a function. */
CREATE OR REPLACE FUNCTION chinook."OrgChartSubTree"(
IN paramBossId INTEGER
) RETURNS TABLE (
report INTEGER,
boss INTEGER
) AS $$
WITH RECURSIVE "cteEmployeeHierarchy" (report, boss) AS (
SELECT "EmployeeId" AS report, "ReportsTo" AS boss
FROM chinook."Employee" WHERE "EmployeeId" = paramBossId
UNION ALL
SELECT e."EmployeeId" AS report, e."ReportsTo" AS boss
FROM "cteEmployeeHierarchy" r
LEFT JOIN chinook."Employee" e ON r.report = e."ReportsTo"
WHERE e."EmployeeId" IS NOT NULL
)
SELECT report, boss
FROM "cteEmployeeHierarchy"
$$ LANGUAGE 'sql' STABLE;
SELECT boss, report FROM chinook."OrgChartSubTree" ( 2 );
SELECT boss, report FROM chinook."OrgChartSubTree" ( 3 );
SELECT boss, report FROM chinook."OrgChartSubTree" ( 6 );
SELECT boss, report FROM chinook."OrgChartSubTree" ( 1 );
/* Now, based on this, it might be nice to have an alias for the big boss' ID. */
CREATE OR REPLACE FUNCTION chinook."BigBossId"( ) RETURNS INTEGER AS $$
SELECT 1 as "BigBossId"
$$ LANGUAGE 'sql' IMMUTABLE;
SELECT boss, report FROM chinook."OrgChartSubTree" ( chinook."BigBossId"( ) );
/* Using this function, let's explore the title reporting structure. */
SELECT
b."Title" AS "BossTitle",
r."Title" AS "ReportTitle",
COUNT(r."Title") AS "NumberOfReports"
FROM chinook."OrgChartSubTree" ( chinook."BigBossId"( ) ) t
LEFT OUTER JOIN chinook."Employee" b ON t.boss = b."EmployeeId"
LEFT OUTER JOIN chinook."Employee" r ON t.report = r."EmployeeId"
GROUP BY b."Title", r."Title"
;
|
<filename>server/obsolete/database_old/admin.sql
/*
* tianyxu 2019-Sep-10 according discussion with xiaoting get this table
* mysql -uroot -p123Xty1. -Dgrimm<./example.sql
* or can use source in the mysql cli
* create the admin Table for admin user
*/
CREATE TABLE admin (
id integer NOT NULL AUTO_INCREMENT,
email varchar(40) NOT NULL,
password varchar(20) NOT NULL,
admintype varchar(10) NOT NULL,
PRIMARY KEY(id)
)ENGINE=InnoDB DEFAULT CHARSET=utf8;
INSERT INTO admin (id, email, password, admintype) VALUES (520, "<EMAIL>", "<PASSWORD>", "root");
|
<reponame>BatteryAcid/dayz-private-server
--
-- Table structure for table `vehicle_locations`
--
DROP TABLE IF EXISTS `vehicle_locations`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vehicle_locations` (
`ID` int(11) NOT NULL,
`Worldspace` varchar(255) CHARACTER SET latin1 NOT NULL,
PRIMARY KEY (`ID`,`Worldspace`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='0 ATV\r\n1 Motorcycle\r\n2 Huey\r\n4 Mi-17\r\n3 Little bird\r\n5 AN-2\r\n6 Bike\r\n7 Military car (Landrover, HMMWV, Camo UAZs, Armed pickups)\r\n10 Civilian car (including SUV)\r\n11 Bus\r\n12 Tractor\r\n13 Truck\r\n14 Boat';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vehicle_locations`
--
LOCK TABLES `vehicle_locations` WRITE;
/*!40000 ALTER TABLE `vehicle_locations` DISABLE KEYS */;
INSERT INTO `vehicle_locations` VALUES
(0,'[126,[6556.34,5621.66,0]]'),
/* (0,'[166,[8316.43,7497.42,0]]'), /* REMOVED 188 - Between Novy and Black Forest (bounces around) */
(0,'[202,[11464.035, 11381.071,0]]'), /* 114,39 Klen */
/* (0,'[253,[11459.299,11386.546,0]]'), /* DUPLICATE 188 - Klen */
(0,'[284,[8854.9082,2891.5762,0]]'),
(0,'[300,[9047.57,4480.17,0]]'),
(0,'[335,[8856.8359,2893.7903,0]]'),
(0,'[337,[3312.2793,11270.755,0]]'),
(0,'[50,[3684.0366, 5999.0117,0]]'),
(0, '[29,[13002.6,5963.83,0]]'), /* NEW 188 - Radio Tower Above Solichny Quarry */
(0, '[298,[11859,12729.6,0]]'), /* NEW 188 - Polana Quarry */
(0, '[152,[5664.46,2974.05,-0.003]]'), /* NEW 189 - power station above cherno */
(0, '[158,[1884.38,11696.5,-0.013]]'), /* NEW 189 - shed sw skalka */
(1,'[151,[6592.686,2906.8245,0]]'),
/* (1,'[213,[9515.67,7222.07,0]]'), /* REMOVED 188 - North of Shakhovka (next to shed) */
/* (1,'[291,[11945.78,9099.3633,0]]'), /* REMOVED 188 - Upper Berenzino*/
(1,'[372,[8762.8516, 11727.877,0]]'),
(1,'[52,[8713.4893, 7103.0518,0]]'),
(1, '[72,[13163.5,7094.64,0]]'), /* NEW 188 - Solichny Factory Train Station */
(1, '[200,[13649.1,3904.67,0]]'), /* NEW 188 - Krutoy Cap Lighthouse */
(1, '[195,[8063.63,3270.42,0]]'), /* NEW 188 - Prig Train Station */
(1, '[283,[2699.45,5589.65,0]]'), /* NEW 188 - Zelenegorsk North Gas Station */
(1, '[150,[10437.6,8882.8,0]]'), /* NEW 188 - Gorka Gas Station */
(1, '[71,[5841.03,2204.58,0.0]]'), /* NEW 189 - gas station west of cherno */
(1, '[201,[4399.33,2315.82,0.001]]'), /* NEW 189 - Balota Train Station */
(1, '[0,[10348.0,2220.62,0]]'), /* NEW 189 - elektro main fire station */
(1, '[166,[2027.68,2215.42,0.001]]'), /* NEW 189 - Kamenka Train Station */
(1, '[0,[7005.00,2805.63,0]]'), /* NEW 189 - in front of cherno apts */
(1, '[200,[13649.1,3904.67,0.001]]'), /* NEW 189 - Krutoy Cap/Lighthouse */
(1, '[273,[13355.1,5448.12,0.001]]'), /* NEW 189 - 3 Valleys House/Fountain */
(1, '[161,[11959.9,3553.81,0.001]]'), /* NEW 189 - kamyshovo train station*/
(1, '[105,[12988.6,10228.6,0.001]]'), /* NEW 189 - Berenzino BIG Train Station */
(1, '[277,[3007.11,7465.94,0.001]]'), /* NEW 189 - South Pusthoshka Gas Station next to station */
(1, '[150,[10437.6,8882.8,0.001]]'), /* NEW 189 - gorka gas next to station */
(2,'[0,[9837.5,3860.2,0]]'),
(2,'[133,[4211.8789,10735.168,0]]'),
(2,'[156,[7660.271,3982.0063,0]]'),
(2,'[172,[7220.6538,9116.3428,0]]'),
(2,'[181,[10153.5,12026.8,0]]'),
(2,'[2,[12010.7,12637.2,0]]'),
(2,'[240,[4871.19,10176.2,0]]'),
(2,'[241,[4811.56,9603.77,0]]'),
(2,'[310,[6365.7402,7795.3501,0]]'),
(2,'[37,[6366.01,2774.14,0]]'),
(2,'[60,[11279.154,4296.0205,0]]'),
(2,'[62,[13307,3231.95,0]]'),
(2,'[67,[10587.8,2188.25,0]]'),
(2,'[72,[6886.53,11437.1,0]]'),
/*(2,'[75,[13614.3,3170.86,0]]'), /* DUPLICATE 188 - Skalisty Island */
/*(2,'[80,[6887.07,11436.8,0]]'), /* DUPLICATE 188 - Devil's Castle */
(2, '[161,[12158.4,9737.48,0]]'), /* NEW 188 - Berenzino Soccer Field */
(2, '[1,[9609.13,13505.7,0.0]]'), /* NEW 189 - near pobeda dam */
(3,'[0,[9837.5,3860.2,0]]'),
(3,'[133,[4211.8789,10735.168,0]]'),
(3,'[156,[7660.271,3982.0063,0]]'),
(3,'[172,[7220.6538,9116.3428,0]]'),
(3,'[181,[10153.5,12026.8,0]]'),
(3,'[2,[12010.7,12637.2,0]]'),
(3,'[240,[4871.19,10176.2,0]]'),
(3,'[241,[4811.56,9603.77,0]]'),
(3,'[258,[7209.86,6984.74,0]]'),
(3,'[278,[11162.7,2509.88,0]]'),
(3,'[310,[6365.7402,7795.3501,0]]'),
(3,'[37,[6366.01,2774.14,0]]'),
(3,'[60,[11279.154,4296.0205,0]]'),
/*(3,'[62,[13307,3231.95,0]]'), /* DUPLICATE 188 - Skalsty Island */
(3,'[67,[10587.8,2188.25,0]]'),
(3,'[72,[6886.53,11437.1,0]]'),
(3,'[75,[13614.3,3170.86,0]]'),
/*(3,'[80,[6887.07,11436.8,0]]'), /* DUPLICATE 188 - Devil's Castle */
(3, '[0,[11801.5,3184.63,0]]'), /* NEW 188 - Otmel Island */
(3, '[161,[12158.4,9737.48,0]]'), /* NEW 188 - Berenzino Soccer Field */
(3, '[100,[9852.02,10323.9,-0.04]]'), /* NEW 189 - NW of Dubrovka */
(3, '[48,[11783.4,6488.86,-0.039]]'), /* NEW 189 - E of Dolina */
(4,'[0,[9837.5,3860.2,0]]'),
(4,'[133,[4211.8789,10735.168,0]]'),
(4,'[156,[7660.271,3982.0063,0]]'),
(4,'[172,[7220.6538,9116.3428,0]]'),
(4,'[181,[10153.5,12026.8,0]]'),
(4,'[241,[4811.56,9603.77,0]]'),
(4,'[310,[6365.7402,7795.3501,0]]'),
(4,'[37,[6366.01,2774.14,0]]'),
(4,'[62,[13307,3231.95,0]]'),
(4,'[67,[10587.8,2188.25,0]]'),
(4,'[72,[6886.53,11437.1,0]]'),
(4,'[75,[13614.3,3170.86,0]]'),
(4,'[80,[6887.07,11436.8,0]]'),
(5,'[240,[4586.84,10684.6,0]]'),
(5,'[252,[4530.52,10785.1,0]]'),
(5,'[32,[12492,12515,0]]'),
(5, '[2,[12059.0,12621.6,0]]'), /* NEW 188 - NEAF Hangar East*/
(6,'[140,[12681.2,9467.42,0]]'),
(6,'[155,[12158.999,3468.7563,0]]'),
/*(6,'[155,[8680.75,2445.5315,0]]'), /* DUPLICATE 188 - Road Near Cap Golova */
(6,'[179,[3474.3989, 2562.4915,0]]'),
(6,'[191,[2782.7134,5285.5342,0]]'),
(6,'[201,[8070.6958, 3358.7793,0]]'),
(6,'[23,[3203.0916, 3988.6379,0]]'),
(6,'[236,[1773.9318,2351.6221,0]]'),
(6,'[236,[3699.9189,2474.2119,0]]'),
(6,'[250,[11984.01,3835.9231,0]]'),
/*(6,'[255,[10153.068,2219.3547,0]]'), /* REMOVED 188 - Field Above Elektro */
(6,'[316,[7943.5068,6988.1763,0]]'),
(6,'[322,[3097.96,7812.64,0]]'),
/*(6,'[35,[8345.7227, 2482.6855,0]]'), /* DUPLICATE 188 - Cap Golova */
/*(6,'[50,[8040.6777, 7086.5356,0]]'), /* REMOVED 188 - Road NW of Guglova*/
(6,'[73,[8350.0947, 2480.542,0]]'),
(6,'[181,[13360.3,6193.11,0]]'), /* NEW 188 - Quarry Train Station */
(6,'[269,[3670.54,2406.9,0.0]]'), /*NEW 188 - Kamarova Train Station */
(7,'[12,[4662.13,10436,0]]'),
(7,'[141,[11953.279,9107.3896,0]]'),
(7,'[157,[12235.8,9729.92,0]]'),
(7,'[157,[3693.0386, 5969.1489,0]]'),
(7,'[183,[4752.58,2535.77,0]]'),
(7,'[191,[4625.61,9675.62,0]]'),
(7,'[203,[3696.23,6013.07,0]]'),
(7,'[216,[4765.67,10260.7,0]]'),
(7,'[249,[11823.4,12691.1,0]]'),
(7,'[272,[6303.11,7833.36,0]]'),
(7,'[317,[3770.08,10237,0]]'),
(7,'[337,[6344.92,7772.4,0]]'),
(7,'[39,[12143.2,12611.2,0]]'),
(7,'[58,[3702.54,10182.1,0]]'),
(7,'[49,[1748.86,11738,5.188e-04]]'), /* NEW 189 - SW skalka secret base*/
(7,'[304,[11702,3427.84,-4.735e-04]]'),/* NEW 189 - kamyshovo roadblock */
(10,'[0,[6279.4966, 7810.3691,0]]'),
(10,'[106,[5265.94,5492.29,0]]'),
(10,'[116,[13343.8,12919,0]]'),
(10,'[124,[11309.963, 6646.3989,0]]'),
(10,'[133,[8310.9902, 3348.3579,0]]'),
(10,'[137,[2159.68,7907.71,0]]'),
(10,'[160,[11940.6,8868.87,0]]'),
(10,'[19,[10828.8,2703.23,0]]'),
(10,'[19,[11066.828,7915.2275,0]]'),
(10,'[194,[9727.78,8932.72,0]]'),
(10,'[207,[1740.8503,3622.6938,0]]'),
/*(10,'[222,[5165.7231,2375.7642,0]]'), /* REMOVED 188 - Behind Balota Warehouses*/
/*(10,'[223,[4817.6572, 2556.5034,0]]'), /* REMOVED 188 - Behind Balota Hangars */
/*(10,'[223,[6288.416, 7834.3521,0]]'), /* REMOVED 188 - Stary */
(10,'[226,[1975.1283, 9150.0195,0]]'),
(10,'[228,[12355.3,10821.6,0]]'),
(10,'[229,[6914.04,2487.6,0]]'),
(10,'[241,[2614.0862,5079.6357,0]]'),
(10,'[266,[9157.8408,11019.819,0]]'),
(10,'[274,[11604.3,10636.8,0]]'),
(10,'[291,[8125.36,3167.17,0]]'),
(10,'[298,[9076.47,8016.35,0]]'),
(10,'[316,[7427.61,5155.17,0]]'),
(10,'[324,[13388,6603.21,0]]'),
(10,'[336,[7006.14,7717.57,0]]'),
(10,'[337,[8120.3057,9305.4912,0]]'),
(10,'[337,[9715.0352,6522.8286,0]]'),
(10,'[339,[11243.3,5376.82,0]]'),
(10,'[344,[2045.3989,7267.4165,0]]'),
(10,'[352,[12058.555,3577.8667,0]]'),
(10,'[353,[12869.565,4450.4077,0]]'),
(10,'[363,[5337.62,8656.55,0]]'),
(10, '[189,[12997.9,10072.8,0]]'), /* NEW 188 - Berenzino Gas Station */
(10, '[11,[3000.37,7470.73,0]]'), /* NEW 188 - South Pusthoshka Gas Station */
(10, '[181,[9447.17,8778.15,0]]'), /* NEW 188 - Gorka Garage */
(10, '[33,[9930.09,10372,0.006]]'), /* NEW 189 - NW of dubrovka */
(10, '[45,[2879.83,9706.21,-0.003]]'), /* NEW 189 - near red barn lopatino */
(10, '[267,[3899.65,3573.4,0.059]]'), /* NEW 189 - red house east of Bor */
(10, '[275,[9986.22,1876.52,0.001]]'), /* NEW 189 - Sheds on West side of Elektro */
(10, '[1,[12636,5720.63,0.003]]'), /* NEW 189 - 3 valleys */
(10, '[8,[2681.09,5603.85,-0.011]]'), /* NEW 189 - Zelenegorsk North Gas Station */
(10, '[273,[4050.96,3321.29,0.001]]'), /* NEW 189 - above kamarova, end of driveway */
(10, '[249,[5851.2,4728.07,-0.004]]'), /* NEW 189 - nadezhdino red house */
(11,'[230,[3762.5764,8736.1709,0]]'),
(11,'[245,[4580.3203,4515.9282,0]]'),
(11,'[279,[10628.433,8037.8188,0]]'),
(11,'[333,[6040.0923,7806.5439,0]]'),
(11,'[59,[6705.8887, 2991.9358,0]]'),
(11,'[76,[10314.745, 2147.5374,0]]'),
(11, '[27,[12906.5,10084.8,0]]'), /* NEW 188 - NE Berenzino */
(11, '[15,[3049.93,7979.65,-3.052e-05]'), /* NEW 189 - pushtoshka grocery */
(11, '[243,[4513.57,6420.54,0.018]]'), /* NEW 189 - pogorevka */
(12,'[19,[11246.52, 7534.7954,0]]'),
(12,'[195,[9681.8213,8947.2354,0]]'),
(12,'[220,[3083.52,9202.18,0]]'),
(12,'[262,[3825.1318,8941.4873,0]]'),
(12,'[95,[1690.58,5095.92,0]]'),
(12, '[109,[13140.8,10422.2,0]]'), /* NEW 188 - Berenzino Factory */
(12, '[88,[11433.7,12234.2,0]]'), /* NEW 188 - Krasnostov Shed */
(12, '[287,[8859.05,11657.7,0]]'), /* NEW 188 - Govodzno next to long barn */
(12, '[320,[4641.08,6795.47,0.005]]'), /* NEW 189 - Rogovo next to long barn */
(12, '[3,[3296.81,4918.27,-9.766e-04]]'), /* NEW 189 - Drozhino next to barn */
(13,'[178,[13276.482, 6098.4463,0]]'),
(13,'[338,[1890.9952,12417.333,0]]'),
(13, '[245,[13056.4,7068.25,1.907]]'), /* NEW 188 - Solichny Factory */
(13, '[359,[4140.46,8931.9,0.001]]'), /* NEW 188 - Vybor Factory Gate */
(13, '[304,[10694.9,7952.77,1.5]]'), /* NEW 188 - Under Canopy in Polana */
(13, '[10,[12747.7,9660.6,2.003]]'), /* NEW 189 - Berenzino Lumber Mill */
(13, '[281,[7635.71,5194.12,0]]'), /* NEW 189 - under canopy west mogalevka */
(13, '[42,[12737.3,12279.9,0.001]]'), /* NEW 189 - neaf cement factory */
(14,'[245,[14417.589,12886.104,0]]'),
(14,'[268,[13098.13, 8250.8828,0]]'),
(14,'[315,[13222.181,10015.431,0]]'),
(14,'[315,[8317.2676,2348.6055,0]]'),
(14,'[55,[13454.882, 13731.796,0]]'),
(14, '[0,[11706.5,3131.63,0]]'), /* NEW 188 - Otmel Island */
(14, '[0,[3610.00,2044.63,0]]'), /* NEW 188 - End of Kamarova Dock */
(14, '[0,[1314.00,2249.25,0]]'), /* NEW 188 - Cove West of Kamenka */
(14, '[28,[13570.2,6320.12,4.023]]'), /* NEW 189 - Solichny */
(14, '[28,[10410.1,1788.2,3.737]]'), /* NEW 189 - Elektro SE */
(14, '[88,[7975.11,2888.22,0.932]]'), /* NEW 189 - Chyornaya Bay */
(14, '[81,[299.728,1534.76,0.282]]'), /* NEW 189 - West of Kamenka */
(14, '[0,[13417.3,2856.22,0.908]]'); /* NEW 189 - Skalisty */
/*!40000 ALTER TABLE `vehicle_locations` ENABLE KEYS */;
UNLOCK TABLES;
|
-- =============================================
-- Author: <Author,,Name>
-- Create date: <Create Date,,>
-- Description: <Description,,>
-- =============================================
CREATE PROCEDURE [srv].[ClearFullInfo]
AS
BEGIN
/*
очищает все собранные данные
*/
SET NOCOUNT ON;
--truncate table [srv].[BlockRequest];
truncate table [srv].[DBFile];
truncate table [srv].[ddl_log];
truncate table [srv].[ddl_log_all];
truncate table [srv].[Deadlocks];
truncate table [srv].[Defrag];
update [srv].[DefragRun]
set [Run]=0;
truncate table [srv].[ErrorInfo];
truncate table [srv].[ErrorInfoArchive];
truncate table [srv].[ListDefragIndex];
truncate table [srv].[TableIndexStatistics];
truncate table [srv].[TableStatistics];
truncate table [srv].[RequestStatistics];
truncate table [srv].[RequestStatisticsArchive];
truncate table [srv].[QueryStatistics];
truncate table [srv].[PlanQuery];
truncate table [srv].[SQLQuery];
truncate table [srv].[QueryRequestGroupStatistics];
truncate table [srv].[ActiveConnectionStatistics];
truncate table [srv].[ServerDBFileInfoStatistics];
truncate table [srv].[ShortInfoRunJobs];
truncate table [srv].[TSQL_DAY_Statistics];
truncate table [srv].[IndicatorStatistics];
truncate table [srv].[KillSession];
truncate table [srv].[SessionTran];
truncate table [srv].[WaitsStatistics];
truncate table [srv].[BigQueryStatistics];
truncate table [srv].[IndexDefragStatistics];
truncate table [srv].[DefragServers];
truncate table [srv].[ServerDBFileInfoStatistics];
truncate table [srv].[IndexUsageStatsStatistics];
truncate table [srv].[OldStatisticsStateStatistics];
truncate table [srv].[NewIndexOptimizeStatistics];
truncate table [srv].[StatisticsIOInTempDBStatistics];
truncate table [srv].[DelIndexIncludeStatistics];
truncate table [srv].[ShortInfoRunJobsServers];
truncate table [srv].[ReadWriteTablesStatistics];
truncate table [srv].[DiskSpaceStatistics];
truncate table [srv].[RAMSpaceStatistics];
truncate table [srv].[IndicatorServerDayStatistics];
truncate table [srv].[DBFileStatistics];
truncate table [srv].[KillSessionArchive];
END
GO
EXECUTE sp_addextendedproperty @name = N'MS_Description', @value = N'Очистка всех собранных данных', @level0type = N'SCHEMA', @level0name = N'srv', @level1type = N'PROCEDURE', @level1name = N'ClearFullInfo';
|
-- MySQL dump 10.13 Distrib 8.0.26, for Win64 (x86_64)
--
-- Host: localhost Database: universitydb
-- ------------------------------------------------------
-- Server version 8.0.26
/*!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 */;
/*!50503 SET NAMES utf8mb4 */;
/*!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 */;
DROP DATABASE `universitydb`;
CREATE DATABASE `universitydb`;
USE `universitydb`;
--
-- Table structure for table `enrolments`
--
DROP TABLE IF EXISTS `enrolments`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `enrolments` (
`studentid` int NOT NULL,
`modulecode` int NOT NULL,
PRIMARY KEY (`studentid`,`modulecode`),
KEY `mc_idx` (`modulecode`),
CONSTRAINT `mc` FOREIGN KEY (`modulecode`) REFERENCES `module` (`modulecode`) ON DELETE CASCADE ON UPDATE CASCADE,
CONSTRAINT `si` FOREIGN KEY (`studentid`) REFERENCES `student` (`studentid`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `enrolments`
--
LOCK TABLES `enrolments` WRITE;
/*!40000 ALTER TABLE `enrolments` DISABLE KEYS */;
INSERT INTO `enrolments` VALUES (1,3001),(1,3002);
/*!40000 ALTER TABLE `enrolments` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `module`
--
DROP TABLE IF EXISTS `module`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `module` (
`modulecode` int NOT NULL,
`name` varchar(45) DEFAULT NULL,
PRIMARY KEY (`modulecode`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `module`
--
LOCK TABLES `module` WRITE;
/*!40000 ALTER TABLE `module` DISABLE KEYS */;
INSERT INTO `module` VALUES (3001,'Programming'),(3002,'Graphic Design');
/*!40000 ALTER TABLE `module` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `student`
--
DROP TABLE IF EXISTS `student`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `student` (
`studentid` int NOT NULL,
`name` varchar(45) DEFAULT NULL,
`age` int DEFAULT NULL,
PRIMARY KEY (`studentid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `student`
--
LOCK TABLES `student` WRITE;
/*!40000 ALTER TABLE `student` DISABLE KEYS */;
INSERT INTO `student` VALUES (1,'John',25),(3,'Alice',30),(8,'hello',123),(9,'aaaaa',12);
/*!40000 ALTER TABLE `student` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `teacher`
--
DROP TABLE IF EXISTS `teacher`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `teacher` (
`empno` int NOT NULL,
`name` varchar(45) DEFAULT NULL,
`modulecode` int DEFAULT NULL,
PRIMARY KEY (`empno`),
KEY `modulecode_idx` (`modulecode`),
CONSTRAINT `modulecode` FOREIGN KEY (`modulecode`) REFERENCES `module` (`modulecode`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `teacher`
--
LOCK TABLES `teacher` WRITE;
/*!40000 ALTER TABLE `teacher` DISABLE KEYS */;
INSERT INTO `teacher` VALUES (1000,'Smith',3001),(1001,'Dan',3002);
/*!40000 ALTER TABLE `teacher` 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 2021-12-06 15:07:26
|
<gh_stars>10-100
-- file:updatable_views.sql ln:1290 expect:true
insert into rw_view4 (aa,bb) values (1,'yyy')
on conflict (aa) do update set bb = excluded.bb
|
<gh_stars>1000+
copy into mytable
from @my_int_stage;
copy into mytable
from @my_int_stage
file_format = (type = csv);
copy into mytable from @my_int_stage
file_format = (format_name = 'mycsv');
copy into mytable
from @my_int_stage
file_format = (type = 'CSV')
pattern='.*/.*/.*[.]csv[.]gz';
copy into mytable
from @my_int_stage
file_format = (format_name = myformat)
pattern='.*sales.*[.]csv';
copy into mytable;
copy into mytable purge = true;
copy into mytable validation_mode = 'RETURN_ERRORS';
copy into mytable validation_mode = 'RETURN_2_ROWS';
copy into mytable validation_mode = 'RETURN_3_ROWS';
|
-- 2017-09-04T21:26:41.367
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
/* DDL */ SELECT public.db_alter_table('ad_column','ALTER TABLE public.AD_Column ADD COLUMN SelectionColumnSeqNo NUMERIC(10)')
;
|
<reponame>smith750/kc
DELIMITER /
--
--
INSERT INTO KRCR_PARM_T (APPL_ID,EVAL_OPRTR_CD,NMSPC_CD,OBJ_ID,PARM_DESC_TXT,CMPNT_CD,PARM_NM,PARM_TYP_CD,VAL,VER_NBR)
VALUES ('KC','A','KC-COIDISCLOSURE',UUID(),'Column header label for Coi FE conflict','Document','COI_DISCLOSURE_FE_CONFLICT_HEADER_LABEL','CONFG','Related',1)
/
DELIMITER ;
|
<gh_stars>0
-- Sccsid: @(#)dss.ddl 2.1.8.1
CREATE DATABASE IF NOT EXISTS TPCH;
USE TPCH;
CREATE TABLE IF NOT EXISTS nation ( N_NATIONKEY BIGINT NOT NULL,
N_NAME CHAR(25) NOT NULL,
N_REGIONKEY BIGINT NOT NULL,
N_COMMENT VARCHAR(152),
PRIMARY KEY (N_NATIONKEY));
CREATE TABLE IF NOT EXISTS region ( R_REGIONKEY BIGINT NOT NULL,
R_NAME CHAR(25) NOT NULL,
R_COMMENT VARCHAR(152),
PRIMARY KEY (R_REGIONKEY));
CREATE TABLE IF NOT EXISTS part ( P_PARTKEY BIGINT NOT NULL,
P_NAME VARCHAR(55) NOT NULL,
P_MFGR CHAR(25) NOT NULL,
P_BRAND CHAR(10) NOT NULL,
P_TYPE VARCHAR(25) NOT NULL,
P_SIZE BIGINT NOT NULL,
P_CONTAINER CHAR(10) NOT NULL,
P_RETAILPRICE DOUBLE NOT NULL,
P_COMMENT VARCHAR(23) NOT NULL,
PRIMARY KEY (P_PARTKEY));
CREATE TABLE IF NOT EXISTS supplier ( S_SUPPKEY BIGINT NOT NULL,
S_NAME CHAR(25) NOT NULL,
S_ADDRESS VARCHAR(40) NOT NULL,
S_NATIONKEY BIGINT NOT NULL,
S_PHONE CHAR(15) NOT NULL,
S_ACCTBAL DOUBLE NOT NULL,
S_COMMENT VARCHAR(101) NOT NULL,
PRIMARY KEY (S_SUPPKEY),
CONSTRAINT FOREIGN KEY SUPPLIER_FK1 (S_NATIONKEY) references nation(N_NATIONKEY));
CREATE TABLE IF NOT EXISTS partsupp ( PS_PARTKEY BIGINT NOT NULL,
PS_SUPPKEY BIGINT NOT NULL,
PS_AVAILQTY BIGINT NOT NULL,
PS_SUPPLYCOST DOUBLE NOT NULL,
PS_COMMENT VARCHAR(199) NOT NULL,
PRIMARY KEY (PS_PARTKEY,PS_SUPPKEY),
CONSTRAINT FOREIGN KEY PARTSUPP_FK1 (PS_SUPPKEY) references supplier(S_SUPPKEY),
CONSTRAINT FOREIGN KEY PARTSUPP_FK2 (PS_PARTKEY) references part(P_PARTKEY));
CREATE TABLE IF NOT EXISTS customer ( C_CUSTKEY BIGINT NOT NULL,
C_NAME VARCHAR(25) NOT NULL,
C_ADDRESS VARCHAR(40) NOT NULL,
C_NATIONKEY BIGINT NOT NULL,
C_PHONE CHAR(15) NOT NULL,
C_ACCTBAL DOUBLE NOT NULL,
C_MKTSEGMENT CHAR(10) NOT NULL,
C_COMMENT VARCHAR(117) NOT NULL,
PRIMARY KEY (C_CUSTKEY),
CONSTRAINT FOREIGN KEY CUSTOMER_FK1 (C_NATIONKEY) references nation(N_NATIONKEY));
CREATE TABLE IF NOT EXISTS orders ( O_ORDERKEY BIGINT NOT NULL,
O_CUSTKEY BIGINT NOT NULL,
O_ORDERSTATUS CHAR(1) NOT NULL,
O_TOTALPRICE DOUBLE NOT NULL,
O_ORDERDATE DATE NOT NULL,
O_ORDERPRIORITY CHAR(15) NOT NULL,
O_CLERK CHAR(15) NOT NULL,
O_SHIPPRIORITY BIGINT NOT NULL,
O_COMMENT VARCHAR(79) NOT NULL,
PRIMARY KEY (O_ORDERKEY),
CONSTRAINT FOREIGN KEY ORDERS_FK1 (O_CUSTKEY) references customer(C_CUSTKEY));
CREATE TABLE IF NOT EXISTS lineitem ( L_ORDERKEY BIGINT NOT NULL,
L_PARTKEY BIGINT NOT NULL,
L_SUPPKEY BIGINT NOT NULL,
L_LINENUMBER BIGINT NOT NULL,
L_QUANTITY DOUBLE NOT NULL,
L_EXTENDEDPRICE DOUBLE NOT NULL,
L_DISCOUNT DOUBLE NOT NULL,
L_TAX DOUBLE NOT NULL,
L_RETURNFLAG CHAR(1) NOT NULL,
L_LINESTATUS CHAR(1) NOT NULL,
L_SHIPDATE DATE NOT NULL,
L_COMMITDATE DATE NOT NULL,
L_RECEIPTDATE DATE NOT NULL,
L_SHIPINSTRUCT CHAR(25) NOT NULL,
L_SHIPMODE CHAR(10) NOT NULL,
L_COMMENT VARCHAR(44) NOT NULL,
PRIMARY KEY (L_ORDERKEY,L_LINENUMBER),
CONSTRAINT FOREIGN KEY LINEITEM_FK1 (L_ORDERKEY) references orders(O_ORDERKEY),
CONSTRAINT FOREIGN KEY LINEITEM_FK2 (L_PARTKEY,L_SUPPKEY) references partsupp(PS_PARTKEY, PS_SUPPKEY));
|
CREATE TABLE items (
id SERIAL PRIMARY KEY,
name VARCHAR(255),
description VARCHAR(2000),
created TIMESTAMP
); |
<gh_stars>0
CREATE PROCEDURE [uspGetUsernameAndPasswordHash]
@username VARCHAR(255)
AS
SELECT Username, PasswordHash
FROM UserProfile
WHERE Username = @username
RETURN 0 |
ALTER TABLE user ADD `using2fa` BIT(1) DEFAULT 0;
ALTER TABLE user ADD `totp_secret` VARCHAR(255) NULL;
ALTER TABLE user_aud ADD `using2fa` BIT(1) DEFAULT 0;
ALTER TABLE user_aud ADD `totp_secret` VARCHAR(255) NULL; |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.