sql stringlengths 6 1.05M |
|---|
<gh_stars>1-10
-- MODULE CDR009
-- SQL Test Suite, V6.0, Interactive SQL, cdr009.sql
-- 59-byte ID
-- TEd Version #
-- AUTHORIZATION SUN
SELECT USER FROM SUN.ECCO;
-- RERUN if USER value does not match preceding AUTHORIZATION comment
-- date_time print
-- TEST:0327 (2 pr.,1 son),check PRIMARY KEY unique via insert!
-- setup
DELETE FROM WORKS3;
DELETE FROM STAFF3;
INSERT INTO STAFF3
VALUES('E1','Alice',12,'Deale');
SELECT COUNT(*) FROM STAFF3;
-- PASS:0327 If count = 1?
INSERT INTO STAFF3
VALUES('E1','Tom',12,'Newyork');
-- PASS:0327 If ERROR, unique constraint, 0 rows inserted?
SELECT COUNT(*) FROM STAFF3;
-- PASS:0327 If count = 1?
-- END TEST >>> 0327 <<< END TEST
-- *************************************************
-- TEST:0328 (2 pr.,1 son),F.K exist,modify P.K!
-- setup
DELETE FROM WORKS3;
DELETE FROM PROJ3;
DELETE FROM STAFF3;
INSERT INTO STAFF3
SELECT * FROM STAFF;
INSERT INTO PROJ3
SELECT * FROM PROJ;
INSERT INTO WORKS3
SELECT * FROM WORKS;
UPDATE STAFF3
SET EMPNUM = 'E9'
WHERE EMPNUM = 'E2';
-- PASS:0328 If RI ERROR, children exist, 0 rows updated?
SELECT COUNT(*) FROM STAFF3
WHERE EMPNUM = 'E2';
-- PASS:0328 If count = 1?
-- END TEST >>> 0328 <<< END TEST
-- *************************************************
-- TEST:0329 (2 pr.,1 son),check PRIMARY KEY unique via modify!
-- setup
DELETE FROM WORKS3;
DELETE FROM STAFF3;
INSERT INTO STAFF3
VALUES('E1','Alice',45,'Deale');
INSERT INTO STAFF3
VALUES('E2','Tom',45,'Deale');
SELECT COUNT(*) FROM STAFF3;
-- PASS:0329 If count = 2?
UPDATE STAFF3
SET EMPNUM = 'E1'
WHERE EMPNUM = 'E2';
-- PASS:0329 If ERROR, unique constraint, 0 rows updated?
SELECT COUNT(*)
FROM STAFF3
WHERE EMPNUM = 'E2';
-- PASS:0329 If count = 1?
-- END TEST >>> 0329 <<< END TEST
-- *************************************************
-- TEST:0330 (2 pr.,1 son),modify F.K to no P.K corr.!
-- setup
DELETE FROM WORKS3;
DELETE FROM PROJ3;
DELETE FROM STAFF3;
INSERT INTO STAFF3
SELECT * FROM STAFF;
INSERT INTO PROJ3
SELECT * FROM PROJ;
INSERT INTO WORKS3
SELECT * FROM WORKS;
UPDATE WORKS3
SET EMPNUM = 'E9'
WHERE EMPNUM = 'E2';
-- PASS:0330 If RI ERROR, parent missing, 0 rows updated?
SELECT COUNT(*)
FROM WORKS3
WHERE EMPNUM = 'E2';
-- PASS:0330 If count = 2?
-- END TEST >>> 0330 <<< END TEST
-- *************************************************
-- TEST:0331 (2 pr.,1 son),modify F.K to P.K corr. value!
-- setup
DELETE FROM WORKS3;
DELETE FROM STAFF3;
DELETE FROM PROJ3;
INSERT INTO STAFF3
SELECT * FROM STAFF;
INSERT INTO PROJ3
SELECT * FROM PROJ;
INSERT INTO WORKS3
SELECT * FROM WORKS;
SELECT COUNT(*) FROM WORKS
WHERE EMPNUM = 'E1';
-- PASS:0331 If count = 6?
UPDATE WORKS3
SET EMPNUM = 'E2'
WHERE EMPNUM = 'E1';
SELECT COUNT(*) FROM WORKS3
WHERE EMPNUM = 'E1';
-- PASS:0331 If count = 0?
COMMIT WORK;
-- END TEST >>> 0331 <<< END TEST
-- *************************************************////END-OF-MODULE
|
select 1 from db_root where 9223372036854775807 <=> 9223372036854775807;
select 1 from db_root where -9223372036854775807 <=> -9223372036854775807;
create table a1 (id int,name varchar(10));
insert into a1 values (1,'null');
insert into a1 values (2,'NULL');
insert into a1 values (3,'');
insert into a1 values (4,' ');
insert into a1 values (5,NULL);
insert into a1 values (6,null);
select * from a1 order by id;
select * from a1 where name = null order by id;
select * from a1 where name <=> null order by id;
select * from a1 where name = 'null' order by id;
select * from a1 where name <=> 'null' order by id;
drop a1; |
<reponame>dsalexan/august
SELECT * FROM item_divulgacao
WHERE dia = $1
AND quantidade >= $2 |
<gh_stars>0
/*
Navicat MySQL Data Transfer
Source Database : blog
Target Server Type : MYSQL
Target Server Version : 50639
File Encoding : 65001
Date: 2018-03-18 16:52:35
*/
SET FOREIGN_KEY_CHECKS = 0;
-- ----------------------------
-- Table structure for blog_article
-- ----------------------------
# DROP TABLE IF EXISTS `blog_article`;
CREATE TABLE IF NOT EXISTS `blog_article`
(
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`tag_id` int(10) unsigned DEFAULT '0' COMMENT '标签ID',
`title` varchar(100) DEFAULT '' COMMENT '文章标题',
`desc` varchar(255) DEFAULT '' COMMENT '简述',
`content` text COMMENT '内容',
`cover_img_url` varchar(255) DEFAULT '' COMMENT '封面图片地址',
`created_on` int(10) unsigned DEFAULT '0' COMMENT '新建时间',
`created_by` varchar(100) DEFAULT '' COMMENT '创建人',
`modified_on` int(10) unsigned DEFAULT '0' COMMENT '修改时间',
`modified_by` varchar(255) DEFAULT '' COMMENT '修改人',
`deleted_on` int(10) unsigned DEFAULT '0',
`state` tinyint(3) unsigned DEFAULT '1' COMMENT '删除时间',
PRIMARY KEY (`id`)
) ENGINE = InnoDB
DEFAULT CHARSET = utf8 COMMENT ='文章管理';
-- ----------------------------
-- Table structure for blog_auth
-- ----------------------------
# DROP TABLE IF EXISTS `blog_auth`;
CREATE TABLE IF NOT EXISTS `blog_auth`
(
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`username` varchar(50) DEFAULT '' COMMENT '账号',
`password` varchar(50) DEFAULT '' COMMENT '密码',
PRIMARY KEY (`id`)
) ENGINE = InnoDB
AUTO_INCREMENT = 2
DEFAULT CHARSET = utf8;
INSERT INTO `blog_auth` (`id`, `username`, `password`)
VALUES ('1', 'test', 'test<PASSWORD>');
-- ----------------------------
-- Table structure for blog_tag
-- ----------------------------
# DROP TABLE IF EXISTS `blog_tag`;
CREATE TABLE IF NOT EXISTS `blog_tag`
(
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(100) DEFAULT '' COMMENT '标签名称',
`created_on` int(10) unsigned DEFAULT '0' COMMENT '创建时间',
`created_by` varchar(100) DEFAULT '' COMMENT '创建人',
`modified_on` int(10) unsigned DEFAULT '0' COMMENT '修改时间',
`modified_by` varchar(100) DEFAULT '' COMMENT '修改人',
`deleted_on` int(10) unsigned DEFAULT '0' COMMENT '删除时间',
`state` tinyint(3) unsigned DEFAULT '1' COMMENT '状态 0为禁用、1为启用',
PRIMARY KEY (`id`)
) ENGINE = InnoDB
DEFAULT CHARSET = utf8 COMMENT ='文章标签管理';
CREATE TABLE IF NOT EXISTS `news`
(
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(100) DEFAULT '' COMMENT '标签名称',
`created_on` int(10) unsigned DEFAULT '0' COMMENT '创建时间',
`created_by` varchar(100) DEFAULT '' COMMENT '创建人',
`modified_on` int(10) unsigned DEFAULT '0' COMMENT '修改时间',
`modified_by` varchar(100) DEFAULT '' COMMENT '修改人',
`deleted_on` int(10) unsigned DEFAULT '0' COMMENT '删除时间',
`state` tinyint(3) unsigned DEFAULT '1' COMMENT '状态 0为禁用、1为启用',
PRIMARY KEY (`id`)
) ENGINE = InnoDB
DEFAULT CHARSET = utf8 COMMENT ='文章标签管理';
|
DELETE FROM student;
DELETE FROM instructor;
DELETE FROM modules_person;
DELETE FROM modules_specification;
DELETE FROM modules;
DELETE FROM class;
DELETE FROM specification;
DELETE FROM course;
DELETE FROM person_address;
DELETE FROM address;
DELETE FROM person; |
BEGIN;
CREATE SCHEMA IF NOT EXISTS data_manager ;
CREATE TABLE IF NOT EXISTS data_manager.views (
id SERIAL PRIMARY KEY,
source_id INTEGER NOT NULL
REFERENCES data_manager.sources (id)
ON DELETE CASCADE,
data_type TEXT,
interval_version TEXT, -- could be year, or year-month
geography_version TEXT, -- mostly 2 digit state codes, sometimes null
version TEXT, -- default 1
source_url TEXT, -- external source url
publisher TEXT,
data_table TEXT, -- schema.table of internal destination
download_url TEXT, -- url for client download
tiles_url TEXT, -- tiles
start_date DATE,
end_date DATE,
last_updated TIMESTAMP,
statistics JSONB
) ;
COMMIT ;
|
CREATE TABLE [dbo].[publication_article_usages]
(
[article_id] int NOT NULL,
[publication_id] int NOT NULL,
[dialog_handle] uniqueidentifier NULL
);
GO |
-- 7.2 Altering or Droping view
drop view client_balance;
create or replace view client_balance as
select
c.client_id,
c.name,
sum(i.invoice_total - i.payment_total) as balance
from clients c
join invoices i using(client_id)
group by c.client_id, c.name; |
prompt Importing table t_migraciones...
set feedback off
set define off
insert into t_migraciones (ID_MIGRACION, DESCRIPCION)
values ('mig_000055', 'Mejora en logs de importación de partido.');
prompt Done.
|
USE TelerikAcademy
-- 1. Write a SQL query to find the names and salaries of the employees that take the minimal salary in the company.
-- Use a nested SELECT statement.
SELECT e.FirstName,e.LastName,e.Salary
FROM Employees e
WHERE e.Salary=(SELECT MIN(e.Salary) FROM Employees e)
-- 2. Write a SQL query to find the names and salaries of the employees that have a salary that is up to 10% higher than the minimal salary for the company.
SELECT e.FirstName,e.LastName,e.Salary[10 % Above Minimal Salary]
FROM Employees e
WHERE e.Salary<(SELECT MIN(e.Salary) FROM Employees e) * 1.1
-- 3. Write a SQL query to find the full name, salary and department of the employees that take the minimal salary in their department.
--Use a nested SELECT statement.
SELECT CONCAT(e.FirstName, ' ', e.MiddleName, '. ', e.LastName)[Full Name] , e.Salary, d.Name[Department]
FROM Employees e
JOIN Departments d
ON e.DepartmentID = d.DepartmentID
WHERE e.Salary=
(SELECT MIN(e.Salary) FROM Employees e WHERE e.DepartmentID=d.DepartmentID)
ORDER BY e.Salary DESC
-- 4. Write a SQL query to find the average salary in the department #1.
SELECT AVG(e.Salary)[Avg Salary In Department #1]
FROM Employees e
WHERE e.DepartmentID = 1
-- 5. Write a SQL query to find the average salary in the "Sales" department.
SELECT AVG(e.Salary)[Avg Salary In Sales Department]
FROM Employees e
JOIN Departments d
ON e.DepartmentID = d.DepartmentID
WHERE d.Name='Sales'
-- 6. Write a SQL query to find the number of employees in the "Sales" department.
SELECT COUNT(e.EmployeeID)[Number of Employees In Sales Department]
FROM Employees e
JOIN Departments d
ON e.DepartmentID = d.DepartmentID
WHERE d.Name='Sales'
-- 7. Write a SQL query to find the number of all employees that have manager.
SELECT COUNT(*)[Number of Employees that have a Manager]
FROM Employees e
WHERE e.ManagerID IS NOT NULL
-- 8. Write a SQL query to find the number of all employees that have no manager.
SELECT COUNT(*)[Number of Employees that DON'T have a Manager]
FROM Employees e
WHERE e.ManagerID IS NULL
-- 9. Write a SQL query to find all departments and the average salary for each of them.
SELECT DISTINCT d.Name[Department Name], AVG(e.Salary)[Average Salary]
FROM Departments d
JOIN Employees e ON d.DepartmentID = e.DepartmentID
GROUP BY d.Name
-- 10. Write a SQL query to find the count of all employees in each department and for each town.
-- Донякъде вярна...
SELECT d.Name[Department Name], COUNT(e.EmployeeID)[Number of Employess in Department], t.Name[Town Name], COUNT(e.EmployeeID)[Number of Employess in Town]
FROM Departments d
JOIN Employees e ON d.DepartmentID = e.DepartmentID
JOIN Addresses a ON e.AddressID = a.AddressID
JOIN Towns t ON a.TownID = t.TownID
GROUP BY d.Name, t.Name
ORDER BY d.Name
-- 11. Write a SQL query to find all managers that have exactly 5 employees. Display their first name and last name.
SELECT m.FirstName + ' ' + m.LastName[Manager Full Name]
FROM Employees e
JOIN Employees m ON e.ManagerID = m.EmployeeID
GROUP BY m.FirstName,m.LastName
HAVING COUNT(m.EmployeeID) = 5
-- 12. Write a SQL query to find all employees along with their managers. For employees that do not have manager display the value "(no manager)".
SELECT CONCAT(e.FirstName, ' ', e.LastName) as [Employee],
ISNULL(m.FirstName + ' ' + m.LastName, 'No manager') as [Manager]
FROM Employees e
LEFT JOIN Employees m
ON e.ManagerID = m.EmployeeID
-- 13. Write a SQL query to find the names of all employees whose last name is exactly 5 characters long. Use the built-in LEN(str) function.
SELECT e.LastName[Employees Last Name with Exactly 5 Chars]
FROM Employees e
WHERE LEN(e.LastName) = 5
-- 14. Write a SQL query to display the current date and time in the following format "day.month.year hour:minutes:seconds:milliseconds".
--Search in Google to find how to format dates in SQL Server.
SELECT FORMAT(GETDATE(),'dd.MM.yyyy hh:mm:ss:fff')[Current Data and Time] ----- exactly as described
-------- second way
SELECT CONVERT(VARCHAR, GETDATE(), 113)[Current Data and Time] ----- NOT exactly as described month is with words!!!
-- 15. Write a SQL statement to create a table Users. Users should have username, password, full name and last login time.
--Choose appropriate data types for the table fields. Define a primary key column with a primary key constraint.
--Define the primary key column as identity to facilitate inserting records.
--Define unique constraint to avoid repeating usernames.
--Define a check constraint to ensure the password is at least 5 characters long.
CREATE TABLE Users
(
Id INT PRIMARY KEY IDENTITY,
Username NVARCHAR(15) UNIQUE NOT NULL,
Password NVARCHAR(15) CHECK(DATALENGTH([Password]) >= 5) NOT NULL,
[Full Name] NVARCHAR(55),
[Last login time] DATETIME
)
-- 16. Write a SQL statement to create a view that displays the users from the Users table that have been in the system today.
--Test if the view works correctly.
CREATE VIEW [Users in system today] AS
SELECT Username, [Last login time]
FROM Users
WHERE
CONVERT(VARCHAR(10), [Last login time], 102) <= CONVERT(VARCHAR(10) ,GETDATE(), 102)
GO
-- 17. Write a SQL statement to create a table Groups. Groups should have unique name (use unique constraint).
-- Define primary key and identity column.
CREATE TABLE Groups
(
Id INT IDENTITY,
Name NVARCHAR(25) UNIQUE NOT NULL,
CONSTRAINT PK_Groups PRIMARY KEY(Id)
)
-- 18. Write a SQL statement to add a column GroupID to the table Users.
-- Fill some data in this new column and as well in the `Groups table.
-- Write a SQL statement to add a foreign key constraint between tables Users and Groups tables.
ALTER TABLE Users
ADD GroupId INT FOREIGN KEY REFERENCES Groups(Id)
------- second way --------
ALTER TABLE Users
ADD GroupId int
ALTER TABLE Users
ADD CONSTRAINT FK_Users_Groups
FOREIGN KEY (GroupId)
REFERENCES Groups(GroupId)
-- 19. Write SQL statements to insert several records in the Users and Groups tables.
INSERT INTO Groups (Name)
VALUES ('Programming'),('Drawing')
INSERT INTO Users(Username, Password, [Full Name], [Last login time], GroupId)
VALUES('Nikodim', '12345', '<NAME>', GETDATE(),1),
('Esteban', '54321', '<NAME>', GETDATE(),2)
-- 20. Write SQL statements to update some of the records in the Users and Groups tables.
UPDATE Groups
SET Name = 'Math'
WHERE Name ='Drawing'
UPDATE Users
SET Username = 'Nikodim13'
WHERE Username = 'Nikodim'
UPDATE Users
SET [Last login time] = GETDATE()
WHERE Username = 'Nikodim13'
-- 21. Write SQL statements to delete some of the records from the Users and Groups tables.
DELETE FROM Groups
WHERE Name = 'Programming'
DELETE FROM Users
WHERE Username = 'Esteban'
-- 22.Write SQL statements to insert in the Users table the names of all employees from the Employees table.
-- Combine the first and last names as a full name.
-- For username use the first letter of the first name + the last name (in lowercase).
-- Use the same for the password, and NULL for last login time.
INSERT INTO Users (Username, Password, [Full Name],[Last login time])
SELECT e.FirstName + CONVERT(VARCHAR(10),e.EmployeeID),e.FirstName + '123', e.FirstName + ' ' + e.LastName, GETDATE()
FROM Employees e
-------------- second way --------------- it's a bit different, less parameters....
INSERT INTO Users (Username, Password, [Full Name])
SELECT LOWER(LEFT(FirstName, 3) + LastName),
LOWER(LEFT(FirstName, 3) + LastName),
FirstName + ' ' + LastName
FROM Employees
-- 23. Write a SQL statement that changes the password to NULL for all users that have not been in the system since 10.03.2010.
UPDATE Users
SET Password = '<PASSWORD>'
WHERE [Last login time] < '10.03.2010'
--------- second way---------- good as well
UPDATE Users
SET [Password] = '<PASSWORD>'
WHERE [Last login time] < CONVERT(DATETIME, '2010-03-10')
-- 24.Write a SQL statement that deletes all users without passwords (NULL password).
DELETE FROM Users
WHERE Password = '<PASSWORD>'
-- 25. Write a SQL query to display the average employee salary by department and job title.
SELECT AVG(e.Salary)[Average Salary], d.Name[Department Name], e.JobTitle
FROM Employees e
JOIN Departments d
ON e.DepartmentID = d.DepartmentID
GROUP BY e.JobTitle, d.Name
-- 26. Write a SQL query to display the minimal employee salary by department and job title along with the name of some of the employees that take it.
SELECT MIN(e.Salary)[Minimal Salary], d.Name[Department Name], e.JobTitle, e.FirstName +' '+e.LastName[Employee Name]
FROM Employees e
JOIN Departments d
ON e.DepartmentID = d.DepartmentID
GROUP BY e.JobTitle, d.Name , e.FirstName, e.LastName
-- 27. Write a SQL query to display the town where maximal number of employees work.
SELECT TOP 1 t.Name[Town], COUNT(e.EmployeeID)[Number of Employess]
FROM Employees e
JOIN Addresses a ON e.AddressID = a.AddressID
JOIN Towns t ON a.TownID = t.TownID
GROUP BY t.Name
ORDER BY [Number of Employess] DESC
-- 28.
SELECT t.Name[Town], COUNT(e.EmployeeID)[Number of Managers]
FROM Employees e
JOIN Addresses a ON e.AddressID = a.AddressID
JOIN Towns t ON a.TownID = t.TownID
WHERE e.JobTitle LIKE '%Manager%'
GROUP BY t.Name
ORDER BY [Number of Managers] DESC
-- 29. Write a SQL to create table WorkHours to store work reports for each employee (employee id, date, task, hours, comments).
-- Don't forget to define identity, primary key and appropriate foreign key.
-- Issue few SQL statements to insert, update and delete of some data in the table.
-- Define a table WorkHoursLogs to track all changes in the WorkHours table with triggers.
-- For each change keep the old record data, the new record data and the command (insert / update / delete).
CREATE TABLE WorkHours (
EmployeeId INT IDENTITY,
[Date] DATETIME,
Task NVARCHAR(100),
[Hours] INT,
Comments NVARCHAR(300)
CONSTRAINT PK_WorkHours PRIMARY KEY(EmployeeId)
CONSTRAINT FK_WorkHours_Employees FOREIGN KEY(EmployeeId)
REFERENCES Employees(EmployeeId)
)
GO
INSERT INTO WorkHours
VALUES (GETDATE(), 'Write homework', 5, 'Homework about advanced SQL'),
(GETDATE(), 'Go go Lecture', 4, 'Attend to lecture in Telerik Academy'),
(GETDATE(), 'Rest', 2, 'Rest after hard day')
UPDATE WorkHours
SET Date = '2015-10-05 18:00'
WHERE Task LIKE '%Lecture%'
DELETE FROM WorkHours
WHERE [Hours] < 3
CREATE TABLE WorkHoursLogs(
LogId INT IDENTITY,
OldRecord nvarchar(500),
NewRecord nvarchar(500),
Command nvarchar(10),
EmployeeId INT,
CONSTRAINT PK_WorkHoursLogs PRIMARY KEY(LogId),
CONSTRAINT FK_WorkHoursLogs_WorkHours FOREIGN KEY(EmployeeId)
REFERENCES WorkHours(EmployeeId)
)
GO
CREATE TRIGGER tr_WorkHoursInsert ON WorkHours FOR INSERT
AS
INSERT INTO WorkHoursLogs(OldRecord, NewRecord, Command, EmployeeId)
VALUES('',
(SELECT 'Day: ' + CAST(Date AS nvarchar(50)) + ' ' + ' Task: ' + Task + ' ' +
' Hours: ' + CAST([Hours] AS nvarchar(50)) + ' ' + Comments
FROM Inserted),
'INSERT',
(SELECT EmployeeID FROM Inserted))
GO
CREATE TRIGGER tr_WorkHoursUpdate ON WorkHours FOR UPDATE
AS
INSERT INTO WorkHoursLogs(OldRecord, NewRecord, Command, EmployeeId)
VALUES((SELECT 'Day: ' + CAST(Date AS nvarchar(50)) + ' ' + ' Task: ' + Task + ' ' +
' Hours: ' + CAST([Hours] AS nvarchar(50)) + ' ' + Comments FROM Deleted),
(SELECT 'Day: ' + CAST(Date AS nvarchar(50)) + ' ' + ' Task: ' + Task + ' ' +
' Hours: ' + CAST([Hours] AS nvarchar(50)) + ' ' + Comments FROM Inserted),
'UPDATE',
(SELECT EmployeeID FROM Inserted))
GO
CREATE TRIGGER tr_WorkHoursDelete ON WorkHours FOR DELETE
AS
INSERT INTO WorkHoursLogs(OldRecord, NewRecord, Command, EmployeeId)
VALUES((SELECT 'Day: ' + CAST(Date AS nvarchar(50)) + ' ' + ' Task: ' + Task + ' ' +
' Hours: ' + CAST([Hours] AS nvarchar(50)) + ' ' + Comments FROM Deleted),
'',
'DELETE',
(SELECT EmployeeID FROM Deleted))
GO
INSERT INTO WorkHours
VALUES(GETDATE(), 'Sleep', 8, 'Sleep when its dark outside')
DELETE FROM WorkHours
WHERE Task = 'Rest'
UPDATE WorkHours
SET Task = 'Win Money'
WHERE EmployeeID = 1
-- 30. Start a database transaction, delete all employees from the 'Sales' department along with all dependent records from the pother tables.
--At the end rollback the transaction.
BEGIN TRAN
ALTER TABLE Departments
DROP CONSTRAINT FK_Departments_Employees
ALTER TABLE WorkHours
DROP CONSTRAINT FK_WorkHours_Employees
DELETE FROM Employees
SELECT d.Name
FROM Employees e
JOIN Departments d
ON e.DepartmentID = d.DepartmentID
WHERE d.Name = 'Sales'
GROUP BY d.Name
ROLLBACK TRAN
-- 31. Start a database transaction and drop the table EmployeesProjects.
-- Now how you could restore back the lost table data?
--BEGIN TRAN
-- DROP TABLE EmployeesProjects
--ROLLBACK TRAN
-- 32. Find how to use temporary tables in SQL Server.
-- Using temporary tables backup all records from EmployeesProjects and restore them back after dropping and re-creating the table.
CREATE TABLE #TemporaryTable (
EmployeeId INT,
ProjectId INT
)
INSERT INTO #TemporaryTable
SELECT EmployeeId, ProjectId
FROM EmployeesProjects
DROP TABLE EmployeesProjects
CREATE TABLE EmployeesProjects (
EmployeeId INT,
ProjectId INT,
CONSTRAINT PK_EmployeesProjects PRIMARY KEY(EmployeeID, ProjectID),
CONSTRAINT FK_EmployeesProjects_Employees FOREIGN KEY(EmployeeID)
REFERENCES Employees(EmployeeID),
CONSTRAINT FK_EmployeesProjects_Projects FOREIGN KEY(ProjectID)
REFERENCES Projects(ProjectID)
)
INSERT INTO EmployeesProjects
SELECT EmployeeId, ProjectId
FROM #TemporaryTable
|
<reponame>ctemelkuran/cs50<filename>pset7/movies/6.sql
SELECT AVG(rating)
FROM ratings JOIN movies ON movies.id = ratings.movie_id
WHERE movies.year = 2012; |
SET search_path = tasker, pg_catalog ;
CREATE TABLE st_association_type (
id int2 NOT NULL,
name character varying ( 60 ) NOT NULL,
description character varying ( 200 ),
CONSTRAINT st_association_type_pk PRIMARY KEY ( id ),
CONSTRAINT st_association_type_ix1 UNIQUE ( name ) ) ;
ALTER TABLE st_association_type OWNER TO tasker_owner ;
COMMENT ON TABLE st_association_type IS 'Reference table. Types of associations between tasks.' ;
COMMENT ON COLUMN st_association_type.id IS 'Unique ID for a type of task association.' ;
COMMENT ON COLUMN st_association_type.name IS 'The name for a type of task association.' ;
COMMENT ON COLUMN st_association_type.description IS 'The description of a task associations.' ;
REVOKE ALL ON TABLE st_association_type FROM public ;
INSERT INTO st_association_type (id, name, description) VALUES (1, 'Association', 'Task has an association with another task.');
INSERT INTO st_association_type (id, name, description) VALUES (2, 'Dependency', 'Task has a dependency on another task.');
INSERT INTO st_association_type (id, name, description) VALUES (3, 'Duplicate', 'Task is a duplicate of another task.');
|
UPDATE `chats` AS c
INNER JOIN
`messages` AS m ON c.`id` = m.`chat_id`
SET
c.`start_date` = m.`sent_on`
WHERE
c.`start_date` > m.`sent_on`; |
<filename>BMS.sql
use djangobms;
create table bms_app_user
(
user_id integer auto_increment primary key,
user_name varchar(30) not null, unique(user_name),
pass_word varchar(30)
);
create table bms_app_reader
(
reader_id integer auto_increment primary key,
name varchar(30) not null,
user_id integer,
address varchar(50),
occupation varchar(30),
email varchar(50) not null,
foreign key (user_id) references bms_app_user(user_id)
on delete cascade
on update cascade
);
/*
SET FOREIGN_KEY_CHECKS=1;
drop table bms_app_class_info;
drop table bms_app_book_info;
*/
create table bms_app_admin
(
admin_id integer auto_increment primary key,
user_id integer,
foreign key(user_id) references bms_app_user(user_id)
on delete cascade
on update cascade
);
create table bms_app_class_info
(
class_info_id integer auto_increment primary key,
class_intro varchar(30)
);
create table bms_app_book_info
(
book_id integer auto_increment primary key,
book_name varchar(30) not null,
author varchar(30) not null,
publisher varchar(30) not null,
introduction varchar(100),
pub_date date not null,
class_info_id integer not null,
remain smallint default 0,
foreign key(class_info_id) references bms_app_class_info(class_info_id)
on delete cascade
on update cascade
);
create table bms_app_card
(
card_id integer auto_increment primary key,
reader_id integer not null,
#due_date timestamp(0),
foreign key(reader_id) references bms_app_reader(reader_id)
on delete cascade
on update cascade
);
create table bms_app_borrow
(
borrow_id integer auto_increment primary key,
card_id integer not null,
book_id integer not null,
when_ timestamp(0),
create_back smallint default 0,
foreign key(card_id) references bms_app_card(card_id)
on delete cascade
on update cascade,
foreign key(book_id) references bms_app_book_info(book_id)
on delete cascade
on update cascade
);
/*
drop table bms_app_card;
drop table bms_app_user;
drop table bms_app_reader;
drop table bms_app_class_info;
drop table bms_app_borrow;
drop table bms_app_book_info;
drop table bms_app_admin;
*/
insert into bms_app_class_info(class_intro) values('A马克思列宁主义');#1
insert into bms_app_class_info(class_intro) values('AA毛泽东思想');#2
insert into bms_app_class_info(class_intro) values('B宗教哲学');#3
insert into bms_app_class_info(class_intro) values('C社会科学');#4
insert into bms_app_class_info(class_intro) values('D政治法律');#5
insert into bms_app_class_info(class_intro) values('E军事');#6
insert into bms_app_class_info(class_intro) values('F经济');#7
insert into bms_app_class_info(class_intro) values('G文化体育');#8
insert into bms_app_class_info(class_intro) values('H自然语言');#9
insert into bms_app_class_info(class_intro) values('I文学艺术');#10
insert into bms_app_class_info(class_intro) values('K自然地理');#11
insert into bms_app_class_info(class_intro) values('N自然科学总论');#12
insert into bms_app_class_info(class_intro) values('O数理科学');#13
insert into bms_app_class_info(class_intro) values('P天文学');#14
insert into bms_app_class_info(class_intro) values('Q生物科学');#15
insert into bms_app_class_info(class_intro) values('R医学卫生');#16
insert into bms_app_class_info(class_intro) values('S农业科学');#17
insert into bms_app_class_info(class_intro) values('TD矿业工程');#18
insert into bms_app_class_info(class_intro) values('TE石油天然气');#19
insert into bms_app_class_info(class_intro) values('TL原子能');#20
insert into bms_app_class_info(class_intro) values('TM电工技术');#21
insert into bms_app_class_info(class_intro) values('TN无线电电信');#22
insert into bms_app_class_info(class_intro) values('TP自动化计算机技术');#23
insert into bms_app_class_info(class_intro) values('U交通运输');#24
insert into bms_app_class_info(class_intro) values('Z综合性图书');#25
insert into bms_app_book_info(book_name, author, publisher, introduction, pub_date, class_info_id, remain)
values('函数式编程入门', '<NAME>', '机械工业出版社', '以Haskel为例, 深入浅出, 数据映射是核心', '2000-01-01', 23, 1);
insert into bms_app_book_info(book_name, author, publisher, introduction, pub_date, class_info_id, remain)
values('C++ primer', 'VCZH Lee', '人民邮电出版社', '精通C++, 不再是梦想', '2010-12-01', 23, 2);
insert into bms_app_book_info(book_name, author, publisher, introduction, pub_date, class_info_id, remain)
values('深入理解对象模型', '<NAME>', '机械工业出版社', 'Java是世界上最好的语言', '2010-11-01', 23, 10);
insert into bms_app_book_info(book_name, author, publisher, introduction, pub_date, class_info_id, remain)
values('dot NET开发指南', '<NAME>', '蓝田出版社', 'C#是世界上最好的语言', '2010-12-01', 23, 5);
insert into bms_app_book_info(book_name, author, publisher, introduction, pub_date, class_info_id, remain)
values('JavaScript高级教程', '<NAME>', '浙江大学出版社', 'Web世界属于JavaScript', '2018-4-20', 23, 2);
insert into bms_app_book_info(book_name, author, publisher, introduction, pub_date,class_info_id, remain)
values('Introduction to Algorithm', '<NAME>', 'Cornell University Press', 'tutorial to algorithm and analysis performance' , '2018-4-21', 23, 10);
insert into bms_app_book_info(book_name, author, publisher, introduction, pub_date, class_info_id, remain)
values('齐民要术', '<NAME>', '蓝田出版社', '这不是贾思勰的作品', '2018-2-20', 17, 1);
insert into bms_app_book_info(book_name, author, publisher, introduction, pub_date, class_info_id, remain)
values('浓缩铀的提炼', '<NAME>', '蓝田出版社', '核无疑依旧是21世纪的热点', '2018-3-21', 20, 2);
insert into bms_app_book_info(book_name, author, publisher, introduction, pub_date, class_info_id, remain)
values('普通物理学II(H)', '<NAME>', '蓝田出版社', '你永远不要怀疑物理的魅力', '2018-5-31', 13, 2);
insert into bms_app_book_info(book_name, author, publisher, introduction, pub_date, class_info_id, remain)
values('数学分析', '<NAME>', '蓝田出版社', '超过毛子, 不再是我们的目标', '2018-6-1', 13, 4);
insert into bms_app_book_info(book_name, author, publisher, introduction, pub_date, class_info_id, remain)
values('共产党宣言', '<NAME>', '中国社会科学院出版社', '全世界无产阶级一起联合起来', '2018-7-20', 1, 10);
insert into bms_app_book_info(book_name, author, publisher, introduction, pub_date, class_info_id, remain)
values('资本论', '<NAME>', '中国社会科学院出版社', '被剥削者自由的一无所有, 劳动因此成为商品', '2018-8-20', 1, 4);
insert into bms_app_book_info(book_name, author, publisher, introduction, pub_date, class_info_id, remain)
values('论持久战', '毛泽东', '人民日报出版社', '敌进我退,敌驻我扰,敌疲我打,敌退我追', '2018-9-11', 2, 4);
insert into bms_app_book_info(book_name, author, publisher, introduction, pub_date, class_info_id, remain)
values('农村包围城市', '毛泽东', '人民日报出版社', '历史证明, 这是天才的举措', '2018-10-28', 2, 2);
|
ALTER TABLE register ADD outdoor_register_blnk BIGINT NULL; |
<filename>src/Xeinaemm.Quartz/Scripts/4D_TABLE_QRTZ_CRON_TRIGGERS.sql<gh_stars>1-10
IF NOT EXISTS (SELECT * FROM dbo.sysobjects WHERE id = OBJECT_ID(N'[dbo].[QRTZ_CRON_TRIGGERS]') AND OBJECTPROPERTY(id, N'ISUSERTABLE') = 1)
BEGIN
CREATE TABLE [dbo].[QRTZ_CRON_TRIGGERS] (
[SCHED_NAME] [NVARCHAR] (120) NOT NULL ,
[TRIGGER_NAME] [NVARCHAR] (150) NOT NULL ,
[TRIGGER_GROUP] [NVARCHAR] (150) NOT NULL ,
[CRON_EXPRESSION] [NVARCHAR] (120) NOT NULL ,
[TIME_ZONE_ID] [NVARCHAR] (80)
)
END
GO |
-- phpMyAdmin SQL Dump
-- version 5.1.1
-- https://www.phpmyadmin.net/
--
-- Máy chủ: 127.0.0.1
-- Thời gian đã tạo: Th9 06, 2021 lúc 05:18 PM
-- Phiên bản máy phục vụ: 10.4.17-MariaDB
-- Phiên bản PHP: 7.3.29
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 */;
--
-- Cơ sở dữ liệu: `hitech`
--
-- --------------------------------------------------------
--
-- Cấu trúc bảng cho bảng `brands`
--
CREATE TABLE `brands` (
`id` bigint(20) UNSIGNED NOT NULL,
`name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`slug` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`image_path` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
`user_id` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Đang đổ dữ liệu cho bảng `brands`
--
INSERT INTO `brands` (`id`, `name`, `slug`, `image_path`, `created_at`, `updated_at`, `deleted_at`, `user_id`) VALUES
(1, 'gucci', '', '', NULL, '2020-09-17 14:34:46', '2020-09-17 14:34:46', 0),
(3, 'Shin33xx', 'shin33xx', '/storage/photos/brand/2/RuU7EYf36wZyPneGrfOE.jpg', '2020-09-12 15:53:14', '2020-09-17 14:34:42', '2020-09-17 14:34:42', 2),
(4, 'ajc', 'ajc', '/storage/photos/brand/3/GgFpkonzUNRtKMxv09Pn.jpg', '2020-09-17 14:48:04', '2020-09-17 14:48:04', NULL, 3),
(5, 'drive', 'drive', '/storage/photos/brand/3/3FlH5XvCGtb4vv3mXGzI.jpg', '2020-09-17 14:48:23', '2020-09-17 14:48:23', NULL, 3),
(6, 'ekom', 'ekom', '/storage/photos/brand/3/Thc7i2rjbigjftn1zyZn.jpg', '2020-09-17 14:48:34', '2020-09-17 14:48:34', NULL, 3),
(7, 'eme', 'eme', '/storage/photos/brand/3/8rliPYM9jZl2FnANrtQy.jpg', '2020-09-17 14:48:45', '2020-09-17 14:48:45', NULL, 3),
(8, 'ibis', 'ibis', '/storage/photos/brand/3/P7qIcvD7cDNrGefxCgyK.jpg', '2020-09-17 14:48:54', '2020-09-17 14:48:54', NULL, 3),
(9, 'neurowerk', 'neurowerk', '/storage/photos/brand/3/vuvCD0MxJmjaTHM0MwW4.png', '2020-09-17 14:49:34', '2020-09-17 14:49:34', NULL, 3),
(10, 'daray', 'daray', '/storage/photos/brand/3/32tRnDnJTGINGmU2CAhU.png', '2020-09-17 14:49:57', '2020-09-17 14:49:57', NULL, 3),
(11, 'medin', 'medin', '/storage/photos/brand/3/u4jOO6l2EHLKnRml39wI.png', '2020-09-17 14:50:07', '2020-09-17 14:50:07', NULL, 3),
(12, 'medisana', 'medisana', '/storage/photos/brand/3/htgkcLydxltQQVeNeG12.jpg', '2020-09-17 14:50:21', '2020-09-17 14:50:21', NULL, 3),
(13, 'olidef', 'olidef', '/storage/photos/brand/3/AZFq15w0YSlOTwLqhCm5.jpg', '2020-09-17 14:50:39', '2020-09-17 14:50:39', NULL, 3),
(14, 'mallard medical', 'mallard-medical', '/storage/photos/brand/3/GvPir5fRvkd1uClqnuwC.png', '2020-09-17 14:50:58', '2020-09-17 14:50:58', NULL, 3),
(15, 'micromed', 'micromed', '/storage/photos/brand/3/qzI6JCQF20YfYyWzuok4.jpg', '2020-09-17 14:51:11', '2020-09-17 14:51:11', NULL, 3),
(16, 'ms westfalia', 'ms-westfalia', '/storage/photos/brand/3/h7903lzvNOVSYJA9A1i2.jpg', '2020-09-17 14:51:33', '2020-09-17 14:51:33', NULL, 3),
(17, 'ordisi', 'ordisi', '/storage/photos/brand/3/DUD7YGYsiiU6cQ9fGxgy.png', '2020-09-17 14:51:50', '2020-09-17 14:51:50', NULL, 3),
(18, 'progetti', 'progetti', '/storage/photos/brand/3/pvYicz7lGaaB33ggmrUT.jpg', '2020-09-17 14:52:04', '2020-09-17 14:52:04', NULL, 3),
(19, 'treaton', 'treaton', '/storage/photos/brand/3/WhfuWQq95Byr2EQFFEVH.png', '2020-09-17 14:52:16', '2020-09-17 14:52:16', NULL, 3),
(20, 'Máy chụp x-quang', 'may-chup-x-quang', '/storage/photos/brand/3/gpKbRFLjb9GspRyGpPNw.jpg', '2020-09-18 10:51:15', '2020-09-18 10:51:34', '2020-09-18 10:51:34', 3);
-- --------------------------------------------------------
--
-- Cấu trúc bảng cho bảng `categories`
--
CREATE TABLE `categories` (
`id` bigint(20) UNSIGNED NOT NULL,
`name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`slug` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`parent_id` int(11) DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`image_path` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`user_id` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Đang đổ dữ liệu cho bảng `categories`
--
INSERT INTO `categories` (`id`, `name`, `slug`, `parent_id`, `deleted_at`, `created_at`, `updated_at`, `image_path`, `user_id`) VALUES
(42, 'Chuẩn đoán hình ảnh', 'chuan-doan-hinh-anh', 0, NULL, '2020-09-17 15:05:21', '2020-09-23 10:48:18', '/storage/photos/category/3/7Fc62ZbDhRLoAmL8k9FQ.jpg', 3),
(43, 'Th<NAME>', 'tham-do-chuc-nang', 0, NULL, '2020-09-17 15:06:14', '2020-09-23 10:48:52', '/storage/photos/category/3/ErnyibpaS8Fl3UcriynM.jpg', 3),
(44, 'Cấp cứu hồi sức tích cực', 'cap-cuu-hoi-suc-tich-cuc', 0, NULL, '2020-09-17 15:06:45', '2020-09-23 10:50:38', '/storage/photos/category/3/8YUHwb9hTAxy0rGqsG2F.jpg', 3),
(45, 'Thiết bị phòng mổ', 'thiet-bi-phong-mo', 0, NULL, '2020-09-17 15:07:11', '2020-09-23 10:52:49', '/storage/photos/category/3/OCGAWqdr9HlUZaol4sqM.jpg', 3),
(46, 'Thiết bị sản khoa', 'thiet-bi-san-khoa', 0, NULL, '2020-09-17 15:07:33', '2020-09-23 10:53:09', '/storage/photos/category/3/73It5794Y53r4hhel216.jpg', 3),
(47, 'Vật tư tiêu hao', 'vat-tu-tieu-hao', 0, NULL, '2020-09-17 15:07:50', '2020-09-23 10:53:39', '/storage/photos/category/3/hRytCky3akTTRlcvHzOe.jpg', 3),
(48, 'Máy chụp x-quang', 'may-chup-x-quang', 42, NULL, '2020-09-18 10:52:07', '2020-09-18 10:52:07', '/storage/photos/category/3/15JWL6Y871Hjee0lvAg3.jpg', 3),
(49, 'Máy siêu âm', 'may-sieu-am', 42, NULL, '2020-09-18 10:52:33', '2020-09-18 10:52:33', '/storage/photos/category/3/qdji9FDDo6MyMVWjhbbm.jpg', 3),
(50, 'Hệ thống nội soi', 'he-thong-noi-soi', 42, NULL, '2020-09-18 10:52:58', '2020-09-18 10:52:58', '/storage/photos/category/3/Od3RX3ZI8ruFiMfezABh.jpg', 3),
(51, 'Máy soi cổ tử cung', 'may-soi-co-tu-cung', 42, NULL, '2020-09-18 10:53:25', '2020-09-18 10:53:25', '/storage/photos/category/3/1kRlymI2bMM49JJjvpIx.jpg', 3),
(52, 'Máy đo điện não', 'may-do-dien-nao', 43, NULL, '2020-09-18 11:05:47', '2020-09-18 11:05:47', '/storage/photos/category/3/jj70TyKXKq72MQsSgPuL.jpg', 3),
(53, 'Máy đo điện tim', 'may-do-dien-tim', 43, NULL, '2020-09-18 11:06:28', '2020-09-18 11:06:28', '/storage/photos/category/3/tza2Cr34W1OEsw0AJzKd.jpg', 3),
(54, 'Máy đo chức năng hô hấp', 'may-do-chuc-nang-ho-hap', 43, NULL, '2020-09-18 11:07:28', '2020-09-18 11:07:28', '/storage/photos/category/3/B7JLde5A81NLFFvKdvNM.jpg', 3),
(55, 'Máy đo thính lực cho trẻ sơ sinh', 'may-do-thinh-luc-cho-tre-so-sinh', 43, NULL, '2020-09-18 11:07:59', '2020-09-18 11:07:59', '/storage/photos/category/3/O4DZ6AX7xGExLiMptBPT.jpg', 3),
(56, 'M<NAME>ăng khác', 'may-tham-do-chuc-nang-khac', 43, NULL, '2020-09-18 11:08:37', '2020-09-18 11:08:37', '/storage/photos/category/3/Go2REI0CipuUmX52eI37.jpg', 3),
(57, 'Máy hỗ trợ thở', 'may-ho-tro-tho', 44, NULL, '2020-09-18 11:27:09', '2020-09-18 11:27:09', '/storage/photos/category/3/fyUMEoSJZUT7ip83OJZd.jpg', 3),
(58, 'Monitor theo dõi bệnh nhân', 'monitor-theo-doi-benh-nhan', 44, NULL, '2020-09-18 11:27:36', '2020-09-18 11:27:36', '/storage/photos/category/3/2rzIL1oG31ux93Yb1PUO.jpg', 3),
(59, 'Máy theo dõi độ saua gây mê và an thần', 'may-theo-doi-do-saua-gay-me-va-an-than', 44, NULL, '2020-09-18 11:28:37', '2020-09-18 11:28:37', '/storage/photos/category/3/4Plmru87L5MCbuYYKHcS.jpg', 3),
(60, 'Máy khử rung tim', 'may-khu-rung-tim', 44, NULL, '2020-09-18 11:29:04', '2020-09-18 11:29:04', '/storage/photos/category/3/nGc5zjoK6s4RbDMw6EeC.jpg', 3),
(61, 'máy đo độ bão hòa oxi trong máu', 'may-do-do-bao-hoa-oxi-trong-mau', 44, NULL, '2020-09-18 11:31:48', '2020-09-18 11:31:48', '/storage/photos/category/3/97n4TNn2GtvpbCFWvlGj.jpg', 3),
(62, 'Giường hồi sức cấp cứu', 'giuong-hoi-suc-cap-cuu', 44, NULL, '2020-09-18 11:32:21', '2020-09-18 11:32:21', '/storage/photos/category/3/MeKsEjiwaG4RNSnTIHL0.jpg', 3),
(63, 'Thiết bị làm ấm máu và dịch truyền', 'thiet-bi-lam-am-mau-va-dich-truyen', 44, NULL, '2020-09-18 11:36:07', '2020-09-18 11:36:07', '/storage/photos/category/3/xYVIGGfLljLjanguH1ME.jpg', 3),
(64, 'Máy truyền dịch', 'may-truyen-dich', 44, NULL, '2020-09-18 11:37:52', '2020-09-18 11:37:52', '/storage/photos/category/3/bwiaDynq1HV0V2KQJLHz.jpg', 3),
(65, 'Bơm tiêm điện', 'bom-tiem-dien', 44, NULL, '2020-09-18 11:38:22', '2020-09-18 11:38:22', '/storage/photos/category/3/RMJMiD1WQPXyN8AleWz5.jpg', 3),
(66, 'Máy gây mê kèm thở', 'may-gay-me-kem-tho', 45, NULL, '2020-09-18 11:57:38', '2020-09-18 11:57:38', '/storage/photos/category/3/OHOmnqm5pcANxq419w0N.png', 3),
(67, 'Bàn mổ cơ điện thủy lực', 'ban-mo-co-dien-thuy-luc', 45, NULL, '2020-09-18 11:58:16', '2020-09-18 11:58:16', '/storage/photos/category/3/4mkjrIhtlJemPa8Rp553.png', 3),
(68, 'Đèn mổ led ánh sáng lạnh', 'den-mo-led-anh-sang-lanh', 45, NULL, '2020-09-18 11:58:59', '2020-09-18 11:58:59', '/storage/photos/category/3/WIyBNQLuO40NsgNeERQD.jpg', 3),
(69, 'Dao mổ điện', 'dao-mo-dien', 45, NULL, '2020-09-18 11:59:55', '2020-09-18 11:59:55', '/storage/photos/category/3/w7Vh5rl3sLgXTYipJTmX.jpg', 3),
(70, '<NAME>', 'may-hut-dich', 45, NULL, '2020-09-18 12:00:49', '2020-09-18 12:00:49', '/storage/photos/category/3/JuZWLK8IbqKCM3GYspTn.jpg', 3),
(71, 'Bộ đặt nội khí quản', 'bo-dat-noi-khi-quan', 45, NULL, '2020-09-18 12:02:32', '2020-09-18 12:02:32', '/storage/photos/category/3/DWTjqtXKXvzO1U8sFLJ3.jpg', 3),
(72, 'Tủ làm ấm dịch truyền', 'tu-lam-am-dich-truyen', 45, NULL, '2020-09-18 12:02:59', '2020-09-18 12:02:59', '/storage/photos/category/3/8v7oJV8MuqblQg6vE79l.jpg', 3),
(73, 'Bộ dụng cụ mổ', 'bo-dung-cu-mo', 45, NULL, '2020-09-18 12:03:23', '2020-09-18 12:03:23', '/storage/photos/category/3/iDHSNpsgIxHGXuxpAsmE.jpg', 3),
(74, 'Bồn thủy trị liệu', 'bon-thuy-tri-lieu', 47, NULL, '2020-09-18 12:18:10', '2020-09-18 12:18:10', '/storage/photos/category/3/myIt8tQdKQgI92hgyUVW.jpg', 3),
(75, 'Vật lý trị liệu & phục hồi chức năng', 'vat-ly-tri-lieu-phuc-hoi-chuc-nang', 47, NULL, '2020-09-18 12:18:44', '2020-09-18 12:18:44', '/storage/photos/category/3/SAjlMlEVBrChPLwXGOG7.jpg', 3),
(76, 'Tủ trữ máu', 'tu-tru-mau', 47, NULL, '2020-09-18 12:19:06', '2020-09-18 12:19:06', '/storage/photos/category/3/6wTzYHrM5iEOfKKT96ug.jpg', 3),
(77, 'Thiết bị y tế gia đình', 'thiet-bi-y-te-gia-dinh', 47, NULL, '2020-09-18 12:20:17', '2020-09-18 12:20:17', '/storage/photos/category/3/m1GnHF3bvf2WKphFvTdZ.jpg', 3),
(78, 'Vật tư y tế, tiêu hao, hóa chất', 'vat-tu-y-te-tieu-hao-hoa-chat', 47, NULL, '2020-09-18 12:20:49', '2020-09-18 12:20:49', '/storage/photos/category/3/lxMmpsrjuMHlhncSIbi4.jpg', 3),
(79, 'Các dụng cụ phẫu thuật', 'cac-dung-cu-phau-thuat', 47, NULL, '2020-09-18 12:21:16', '2020-09-18 12:21:51', '/storage/photos/category/3/u3jTXzFvAaMZ362sEwra.jpg', 3),
(80, 'Thiết bị y tế thú y', 'thiet-bi-y-te-thu-y', 47, NULL, '2020-09-18 12:21:43', '2020-09-18 12:22:43', '/storage/photos/category/3/5tBiQ90W2E7qfZVkJ7U5.png', 3),
(81, 'Các dụng cụ phẫu thuật nội soi', 'cac-dung-cu-phau-thuat-noi-soi', 47, NULL, '2020-09-18 12:23:21', '2020-09-18 12:23:21', '/storage/photos/category/3/tgAYAtTkz7rosxPdV5Jq.jpg', 3),
(82, '<NAME>', 'may-xong-khi-dung', 47, NULL, '2020-09-18 12:23:52', '2020-09-18 12:23:52', '/storage/photos/category/3/oZxNLsmt0A6AOg4j9m9E.jpg', 3),
(83, 'Đ<NAME>', 'den-kham-benh-deo-tran', 47, NULL, '2020-09-18 12:24:25', '2020-09-18 12:24:25', '/storage/photos/category/3/jBrqpNx36E9tO73jxbg2.jpg', 3),
(84, 'Thiết bị khám', 'thiet-bi-kham', 47, NULL, '2020-09-18 12:24:41', '2020-09-18 12:24:41', '/storage/photos/category/3/spjBSL2tZSWipjpf7DrV.jpg', 3),
(85, 'Lồng ấp trẻ so sinh', 'long-ap-tre-so-sinh', 46, NULL, '2020-09-18 12:33:18', '2020-09-18 12:33:18', '/storage/photos/category/3/D3IIwX7U8UkwQOKfx5Bo.jpg', 3),
(86, 'Giường hồi sức và sưởi ấm trẻ sơ sinh', 'giuong-hoi-suc-va-suoi-am-tre-so-sinh', 46, NULL, '2020-09-18 12:33:49', '2020-09-18 12:33:49', '/storage/photos/category/3/e7qPqNUKFUuejpQZEpgm.jpg', 3),
(87, 'Đèn chiếu vàng da', 'den-chieu-vang-da', 46, NULL, '2020-09-18 12:34:06', '2020-09-18 12:34:06', '/storage/photos/category/3/KAmWusB0OjBpJiMf2QB4.jpg', 3),
(88, 'Nôi sơ sinh', 'noi-so-sinh', 46, NULL, '2020-09-18 12:34:29', '2020-09-18 12:34:29', '/storage/photos/category/3/Tj6DDZnX9FH1jyIHiL2b.jpg', 3),
(89, 'Cân trẻ sơ sinh kèm thước đo', 'can-tre-so-sinh-kem-thuoc-do', 46, NULL, '2020-09-18 12:34:59', '2020-09-18 12:34:59', '/storage/photos/category/3/VflMh0FeLleTR6mTEo0G.jpg', 3),
(90, 'Monitor sản khoa', 'monitor-san-khoa', 46, NULL, '2020-09-18 12:35:27', '2020-09-18 12:35:27', '/storage/photos/category/3/Wyjq4DV5qjz2xCoYHMRy.jpg', 3),
(91, 'Đèn soi khám sản', 'den-soi-kham-san', 46, NULL, '2020-09-18 12:35:56', '2020-09-18 12:35:56', '/storage/photos/category/3/3xKJQJT3goH2tmtaqWN4.jpg', 3),
(92, 'Doppler tim thai', 'doppler-tim-thai', 46, NULL, '2020-09-18 12:36:23', '2020-09-18 12:36:23', '/storage/photos/category/3/T7uTmOwkEZLJTGMpfgJS.jpg', 3),
(93, 'Máy cắt đốt cổ tử cung', 'may-cat-dot-co-tu-cung', 46, NULL, '2020-09-18 12:37:08', '2020-09-18 12:37:08', '/storage/photos/category/3/28AquTRrTDxeWsV3AvPr.jpg', 3),
(94, 'Máy áp lạnh cổ tử cung', 'may-ap-lanh-co-tu-cung', 46, NULL, '2020-09-18 12:37:31', '2020-09-18 12:37:31', '/storage/photos/category/3/DZqidVakiDdsrmi9VZzl.png', 3),
(95, 'Bàn hộ sinh', 'ban-ho-sinh', 46, NULL, '2020-09-18 12:37:58', '2020-09-18 12:37:58', '/storage/photos/category/3/HE594CXGlWVTP4bZHYDO.jpg', 3),
(96, 'Bàn khám sản', 'ban-kham-san', 46, NULL, '2020-09-18 12:38:19', '2020-09-18 12:38:19', '/storage/photos/category/3/sz9dWopjf9LxvPh4BEOn.jpg', 3),
(97, 'Đèn khám sản di động', 'den-kham-san-di-dong', 46, NULL, '2020-09-18 12:38:49', '2020-09-18 12:38:49', '/storage/photos/category/3/CpL5kvO20bIzfJ9WYN7j.jpg', 3),
(98, 'Đèn soi tai mũi họng', 'den-soi-tai-mui-hong', 46, NULL, '2020-09-18 12:39:12', '2020-09-18 12:39:12', '/storage/photos/category/3/glrKeP1s6eRcXATSXyJx.jpg', 3),
(99, 'xxx', 'xxx', 42, '2020-09-24 16:34:13', '2020-09-24 16:34:07', '2020-09-24 16:34:13', '/storage/photos/category/3/yZD3c5JzXcAyGqERA6vq.png', 3);
-- --------------------------------------------------------
--
-- Cấu trúc bảng cho bảng `contacts`
--
CREATE TABLE `contacts` (
`id` bigint(20) UNSIGNED NOT NULL,
`name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`phone` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`email` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`address` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`title` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`content` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Đang đổ dữ liệu cho bảng `contacts`
--
INSERT INTO `contacts` (`id`, `name`, `phone`, `email`, `address`, `title`, `content`, `deleted_at`, `created_at`, `updated_at`) VALUES
(3, 'Shin33', '0868845289', '<EMAIL>', '<NAME>', 'Nga sẽ cung cấp 100 triệu liều vaccine ngừa Covid-19 cho Ấn Độ', 'gdrtgse', NULL, '2020-09-28 03:21:01', '2020-09-28 03:21:01'),
(4, 'Shin33', '0868845289', '0868845289', 'afds', 'Nga sẽ cung cấp 100 triệu liều vaccine ngừa Covid-19 cho Ấn Độ', 'sdaf', NULL, '2020-10-08 10:22:04', '2020-10-08 10:22:04');
-- --------------------------------------------------------
--
-- Cấu trúc bảng cho bảng `discounts`
--
CREATE TABLE `discounts` (
`id` bigint(20) UNSIGNED NOT NULL,
`code_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`percent` int(11) NOT NULL,
`status` int(11) NOT NULL,
`out_date` datetime NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Cấu trúc bảng cho bảng `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;
-- --------------------------------------------------------
--
-- Cấu trúc bảng cho bảng `infos`
--
CREATE TABLE `infos` (
`id` bigint(20) UNSIGNED NOT NULL,
`address` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`user_id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Đang đổ dữ liệu cho bảng `infos`
--
INSERT INTO `infos` (`id`, `address`, `created_at`, `updated_at`, `user_id`) VALUES
(8, 't', '2021-01-04 03:20:56', '2021-01-04 03:20:56', 17),
(9, 'da', '2021-01-04 04:23:58', '2021-01-04 04:23:58', 19),
(11, 'Hà Nội', '2021-01-04 13:39:59', '2021-01-04 13:39:59', 1),
(13, 'Hà Nội', '2021-01-26 14:11:07', '2021-01-26 14:11:07', 20);
-- --------------------------------------------------------
--
-- Cấu trúc bảng cho bảng `intros`
--
CREATE TABLE `intros` (
`id` bigint(20) UNSIGNED NOT NULL,
`content` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Đang đổ dữ liệu cho bảng `intros`
--
INSERT INTO `intros` (`id`, `content`, `deleted_at`, `created_at`, `updated_at`) VALUES
(1, '<p><strong>Công ty Cổ phần Thiết bị Công nghệ Cao TM có tên viết tắt là TM Hitech.,JSC</strong> được thành lập vào năm 1997 là doanh nghiệp dẫn đầu tại thị trường Việt Nam chuyên cung cấp các giải pháp kỹ thuật hiện đại, chuyên sâu, hoàn chỉnh và trọn gói của nhiều thương hiệu lớn đẳng cấp trên thế giới về Thiết Bị Y Tế cho các dự án đầu tư máy móc, xây dựng mới hay cải tạo bệnh viện đạt tiêu chuẩn quốc gia và tiêu chuẩn quốc tế.</p>\r\n\r\n<p><strong>Mục tiêu của TM Hi-Tech</strong>: Ngay từ khi thành lập, ban lãnh đạo Công ty đã đặt nhiệm vụ tiên phong là trở thành Công ty kinh doanh thiết bị y tế tiêu biểu, lớn mạnh và chuyên nghiệp tại Việt Nam. TM Hi-Tech sẽ ngày càng cố gắng xây dựng và phát triển thương hiệu, bản sắc riêng cho doanh nghiệp mình.</p>\r\n\r\n<p><img alt=\"\" src=\"https://tmhitech.vn/Content/html/images/img-gt1.jpg\" /> <img alt=\"\" src=\"https://tmhitech.vn/Content/html/images/img-gt2.jpg\" /> <img alt=\"\" src=\"https://tmhitech.vn/Content/html/images/img-gt3.jpg\" /></p>\r\n\r\n<p><strong> </strong></p>\r\n\r\n<p><strong>Hoạt động của TM Hi-Tech:</strong> TM Hi-Tech hoạt động có hiệu quả và uy tín trong các lĩnh vực kinh doanh của mình:</p>\r\n\r\n<p>1. Cung cấp thiết bị y tế chuyên nghiệp và đẳng cấp như các Thiết bị thăm dò chức năng, Thiết bị Hồi sức cấp cứu, Thiết bị Chẩn đoán hình ảnh , Máy XQ soi chụp các loại, Thiết bị phục hồi chức năng, Thiết bị sản khoa, nhi khoa,Thiết bị tai mũi họng,Thiết bị vật lý trị liệu, Bộ dụng cụ nội soi, Thiết bị xét nghiệm, Thiết bị mắt – nhãn khoa.</p>\r\n\r\n<p>2. Cung cấp thiết bị chăm sóc sức khỏe gia đình cao cấp như: máy đo huyết áp, đường huyết, nhiệt kế điện tử, máy trị viêm mũi dị ứng, máy tạo độ ẩm…</p>\r\n\r\n<p>3. Đáp ứng nhu cầu của khách hàng những thiết bị y tế công nghệ tiên tiến và hiện đại nhất.</p>\r\n\r\n<p>4. Sản phẩm đã được lắp đặt ở nhiều Bệnh viện tuyến Trung ương, tuyến tỉnh khác nhau cũng như tuyến Huyện. Các Bệnh viện Quốc tế, Bệnh viện tư hay các phòng khám lớn nhỏ.</p>\r\n\r\n<p>5. Ngoài các sản phẩm thiết bị Y tế phục vụ cho con người Công ty chúng tôi còn cung cấp thiết bị chuyên sâu cho thú y.</p>\r\n\r\n<p>TM Hi-Tech với những sản phẩm chất lượng cao, đạo đức trong kinh doanh cùng đội ngũ cán bộ, chuyên viên yêu nghề, nhiều kinh nghiệm luôn đáp ứng được nhu cầu đa dạng của mọi khách hàng khác nhau nhằm tạo ra các giá trị hài hòa về chất lượng và chi phí, đem lại sự hài lòng về các giải pháp công nghệ và sự hiệu quả trong đầu tư và sử dụng.</p>\r\n\r\n<p><strong><em>Hãy tin tưởng đón nhận những sản phẩm công nghệ cao mà chúng tôi mang đến cho bạn ngày hôm nay!</em></strong></p>', NULL, '2020-09-21 06:01:43', '2020-09-21 07:12:29');
-- --------------------------------------------------------
--
-- Cấu trúc bảng cho bảng `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;
--
-- Đang đổ dữ liệu cho bảng `migrations`
--
INSERT INTO `migrations` (`id`, `migration`, `batch`) VALUES
(1, '2014_10_12_000000_create_users_table', 1),
(2, '2014_10_12_100000_create_password_resets_table', 1),
(3, '2019_08_19_000000_create_failed_jobs_table', 1),
(4, '2020_08_31_034716_create_categories_table', 1),
(5, '2020_09_03_162452_alter_table_categories_v1', 2),
(6, '2020_09_03_163838_alter_table_users_v1', 3),
(7, '2020_09_07_093023_create_products_table', 4),
(8, '2020_09_07_100936_alter_table_product_v2', 5),
(9, '2020_09_07_101302_create_tags_table', 6),
(10, '2020_09_07_103357_create_table_product_tag', 7),
(11, '2020_09_07_110344_alter_table_product_v3', 8),
(12, '2020_09_07_111026_create_brands_table', 9),
(13, '2020_09_07_153159_add_table_product_image', 10),
(14, '2020_09_07_162824_alter_table_product_v4', 11),
(15, '2020_09_08_111544_alter_table_product_v5', 12),
(16, '2020_09_08_160108_alter_table_product_v6', 13),
(17, '2020_09_08_160314_alter_table_product_v7', 14),
(18, '2020_09_09_011137_alter_table_product_tag_v1', 15),
(19, '2020_09_12_163709_alter_table_tag_v1', 16),
(20, '2020_09_12_174631_alter_table_brand_v1', 17),
(21, '2020_09_13_085920_create_slides_table', 18),
(22, '2020_09_13_095529_alter_table_slide_v1', 19),
(23, '2020_09_13_153013_create_posts_table', 20),
(24, '2020_09_13_155042_create_post_cates_table', 21),
(25, '2020_09_13_161329_alter_table__post_cates_v1', 22),
(26, '2020_09_13_171456_alter_table_post_v1', 23),
(27, '2020_09_14_163306_create_roles_table', 24),
(28, '2020_09_14_164150_create_user_roles_table', 25),
(29, '2020_09_14_172855_alter_table_role_v1', 26),
(30, '2020_09_15_092510_create_permissions_table', 27),
(31, '2020_09_15_094533_create_permission_roles_table', 28),
(32, '2020_09_15_115500_alter_table_permission_v1', 29),
(33, '2020_09_21_101938_create_intros_table', 30),
(34, '2020_09_21_151007_create_services_table', 31),
(35, '2020_09_21_184520_create_recruitments_table', 32),
(36, '2020_09_21_191954_alter_table_recruitment', 33),
(37, '2020_09_21_201919_alter_table_recruitment_v2', 34),
(38, '2020_09_22_171629_create_contacts_table', 35),
(39, '2020_09_23_222029_create_projects_table', 36),
(40, '2020_12_20_171728_create_orders_table', 37),
(41, '2020_12_20_173855_create_order_details_table', 37),
(42, '2020_12_20_175107_create_discounts_table', 38),
(43, '2020_12_31_163351_add_price_for_product', 39),
(44, '2021_01_03_104534_add_column_phone_to_user', 40),
(45, '2021_01_03_104738_create_infos_table', 40),
(46, '2021_01_03_105203_add_column_user_id_to_infors', 41),
(47, '2021_01_03_173437_add_column_address_to_user', 42),
(48, '2021_01_26_215758_alter_table_product', 43);
-- --------------------------------------------------------
--
-- Cấu trúc bảng cho bảng `orders`
--
CREATE TABLE `orders` (
`id` bigint(20) UNSIGNED NOT NULL,
`user_id` int(11) NOT NULL,
`ship_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`ship_phone` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`ship_address` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`total_price` decimal(20,2) NOT NULL,
`note` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`status` int(11) NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Đang đổ dữ liệu cho bảng `orders`
--
INSERT INTO `orders` (`id`, `user_id`, `ship_name`, `ship_phone`, `ship_address`, `total_price`, `note`, `status`, `created_at`, `updated_at`, `deleted_at`) VALUES
(3, 1, '<NAME>', '0868845289', 'Hà Nội', '49995.00', NULL, 1, '2021-01-25 02:32:00', '2021-02-24 14:38:39', NULL),
(4, 1, '<NAME>', '0868845289', 'Nam định2', '2329000000.00', NULL, 0, '2021-03-01 02:38:25', '2021-03-01 02:38:25', NULL),
(5, 1, '<NAME>', '0868845289', 'Nam định2sdafdsaf', '20000000.00', NULL, 2, '2021-03-10 15:49:46', '2021-03-10 15:50:29', NULL),
(6, 1, '<NAME>', '0868845289', 'Nam định2', '80000000.00', NULL, 0, '2021-03-10 15:57:29', '2021-03-10 15:57:29', NULL),
(7, 1, '<NAME> 22', '0868845289', 'Nam định2', '100000000.00', NULL, 2, '2021-03-11 01:38:31', '2021-03-11 01:40:17', NULL);
-- --------------------------------------------------------
--
-- Cấu trúc bảng cho bảng `order_details`
--
CREATE TABLE `order_details` (
`id` bigint(20) UNSIGNED NOT NULL,
`order_id` int(11) NOT NULL,
`product_id` int(11) NOT NULL,
`quantity` int(11) NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Đang đổ dữ liệu cho bảng `order_details`
--
INSERT INTO `order_details` (`id`, `order_id`, `product_id`, `quantity`, `created_at`, `updated_at`, `deleted_at`) VALUES
(1, 2, 34, 3, '2021-01-05 04:24:11', '2021-01-05 04:24:11', NULL),
(2, 2, 33, 2, '2021-01-05 04:24:11', '2021-01-05 04:24:11', NULL),
(3, 3, 33, 5, '2021-01-25 02:32:00', '2021-01-25 02:32:00', NULL),
(4, 4, 44, 1, '2021-03-01 02:38:25', '2021-03-01 02:38:25', NULL),
(5, 4, 41, 100, '2021-03-01 02:38:25', '2021-03-01 02:38:25', NULL),
(6, 4, 33, 1, '2021-03-01 02:38:25', '2021-03-01 02:38:25', NULL),
(7, 5, 33, 2, '2021-03-10 15:49:47', '2021-03-10 15:49:47', NULL),
(8, 6, 33, 8, '2021-03-10 15:57:29', '2021-03-10 15:57:29', NULL),
(9, 7, 33, 10, '2021-03-11 01:38:31', '2021-03-11 01:38:31', NULL);
-- --------------------------------------------------------
--
-- Cấu trúc bảng cho bảng `password_resets`
--
CREATE TABLE `password_resets` (
`email` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`token` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Cấu trúc bảng cho bảng `permissions`
--
CREATE TABLE `permissions` (
`id` bigint(20) UNSIGNED NOT NULL,
`name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`des` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`key_code` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`parent_id` int(11) DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Đang đổ dữ liệu cho bảng `permissions`
--
INSERT INTO `permissions` (`id`, `name`, `des`, `key_code`, `parent_id`, `created_at`, `updated_at`, `deleted_at`) VALUES
(4, 'Module Category', 'Quản lý Category', NULL, 0, '2020-09-15 15:02:47', '2020-09-15 15:02:47', NULL),
(5, 'list', 'Xem danh sách category', 'category-list', 4, '2020-09-15 15:05:30', '2020-09-15 15:05:30', NULL),
(6, 'add', 'Thêm mới category', 'category-add', 4, '2020-09-15 16:13:23', '2020-09-15 16:13:23', NULL),
(7, 'update', 'Cập nhật category', 'category-update', 4, '2020-09-16 02:19:11', '2020-09-16 02:19:11', NULL),
(8, 'delete', 'Xóa mềm category', 'category-delete', 4, '2020-09-16 02:28:14', '2020-09-16 02:28:14', NULL),
(9, 'restore', 'Khôi phục category', 'category-restore', 4, '2020-09-16 02:29:30', '2020-09-16 02:29:30', NULL),
(10, 'trash', 'Xem thùng rác category', 'category-trash', 4, '2020-09-16 03:03:19', '2020-09-16 03:03:19', NULL),
(11, 'Module Sản Phẩm', 'Quản lý sản phẩm', NULL, 0, '2020-09-16 04:11:19', '2020-09-16 04:11:19', NULL),
(12, 'list', 'Danh sách sản phẩm', 'product-list', 11, '2020-09-16 04:13:45', '2020-09-16 04:13:45', NULL),
(13, 'view', 'Xem xhi tiết sản phẩm', 'product-view', 11, '2020-09-16 04:14:36', '2020-09-16 04:14:36', NULL),
(14, 'add', 'Thêm mới sản phẩm', 'product-add', 11, '2020-09-16 04:21:39', '2020-09-16 04:21:39', NULL),
(15, 'update', 'Cập nhật sản phẩm', 'product-update', 11, '2020-09-16 04:43:08', '2020-09-16 04:43:08', NULL),
(16, 'delete', 'Xóa mềm sản phẩm', 'product-delete', 11, '2020-09-16 04:43:47', '2020-09-16 04:43:47', NULL),
(17, 'restore', 'Khôi phục sản phẩm', 'product-restore', 11, '2020-09-16 04:45:06', '2020-09-16 04:45:06', NULL),
(18, 'force delete', 'Xóa category', 'category-force-delete', 4, '2020-09-16 04:47:34', '2020-09-16 04:47:34', NULL),
(19, 'force delete', 'Xóa sản phẩm', 'product-force-delete', 11, '2020-09-16 04:48:13', '2020-09-16 04:48:13', NULL),
(20, 'trash', 'Xem thùng rác sản phẩm', 'product-trash', 11, '2020-09-16 09:10:38', '2020-09-16 09:10:38', NULL),
(21, 'Module Tag', 'Quản lý tag', NULL, 0, '2020-09-16 09:20:58', '2020-09-16 09:20:58', NULL),
(22, 'Module brand', 'Quản lý brand', NULL, 0, '2020-09-16 09:31:35', '2020-09-16 09:31:35', NULL),
(23, 'Module slide', 'Quản lý slide', NULL, 0, '2020-09-16 09:31:35', '2020-09-16 09:31:35', NULL),
(24, 'Module user', 'Quản lý user', NULL, 0, '2020-09-16 09:31:35', '2020-09-16 09:31:35', NULL),
(25, 'Module post cate', 'Quản lý post cate', NULL, 0, '2020-09-16 09:31:35', '2020-09-16 09:31:35', NULL),
(26, 'Module post', 'Quản lý post', NULL, 0, '2020-09-16 09:31:35', '2020-09-16 09:31:35', NULL),
(27, 'Module role', 'Quản lý role', NULL, 0, '2020-09-16 09:31:35', '2020-09-16 09:31:35', NULL),
(28, 'Module permission', 'Quản lý permission', NULL, 0, '2020-09-16 09:31:35', '2020-09-16 09:31:35', NULL),
(127, 'list', 'Xem danh sách brand', 'brand-list', 22, '2020-09-16 10:42:33', '2020-09-16 10:42:33', NULL),
(128, 'add', 'Thêm mới brand', 'brand-add', 22, '2020-09-16 10:42:33', '2020-09-16 10:42:33', NULL),
(129, 'update', 'Cập nhật brand', 'brand-update', 22, '2020-09-16 10:42:33', '2020-09-16 10:42:33', NULL),
(130, 'delete', 'Xóa mềm brand', 'brand-delete', 22, '2020-09-16 10:42:33', '2020-09-16 10:42:33', NULL),
(131, 'trash', 'Xem thùng rác brand', 'brand-trash', 22, '2020-09-16 10:42:33', '2020-09-16 10:42:33', NULL),
(132, 'restore', 'Khôi phục brand', 'brand-restore', 22, '2020-09-16 10:42:33', '2020-09-16 10:42:33', NULL),
(133, 'force-delete', 'Xóa brand', 'brand-force-delete', 22, '2020-09-16 10:42:33', '2020-09-16 10:42:33', NULL),
(134, 'list', 'Xem danh sách slide', 'slide-list', 23, '2020-09-16 10:42:33', '2020-09-16 10:42:33', NULL),
(135, 'add', 'Thêm mới slide', 'slide-add', 23, '2020-09-16 10:42:33', '2020-09-16 10:42:33', NULL),
(136, 'update', 'Cập nhật slide', 'slide-update', 23, '2020-09-16 10:42:33', '2020-09-16 10:42:33', NULL),
(137, 'delete', 'Xóa mềm slide', 'slide-delete', 23, '2020-09-16 10:42:33', '2020-09-16 10:42:33', NULL),
(138, 'trash', 'Xem thùng rác slide', 'slide-trash', 23, '2020-09-16 10:42:33', '2020-09-16 10:42:33', NULL),
(139, 'restore', 'Khôi phục slide', 'slide-restore', 23, '2020-09-16 10:42:33', '2020-09-16 10:42:33', NULL),
(140, 'force-delete', 'Xóa slide', 'slide-force-delete', 23, '2020-09-16 10:42:33', '2020-09-16 10:42:33', NULL),
(141, 'list', 'Xem danh sách user', 'user-list', 24, '2020-09-16 10:42:33', '2020-09-16 10:42:33', NULL),
(142, 'add', 'Thêm mới user', 'user-add', 24, '2020-09-16 10:42:33', '2020-09-16 10:42:33', NULL),
(143, 'update', 'Cập nhật user', 'user-update', 24, '2020-09-16 10:42:33', '2020-09-16 10:42:33', NULL),
(144, 'delete', 'Xóa mềm user', 'user-delete', 24, '2020-09-16 10:42:33', '2020-09-16 10:42:33', NULL),
(145, 'trash', 'Xem thùng rác user', 'user-trash', 24, '2020-09-16 10:42:33', '2020-09-16 10:42:33', NULL),
(146, 'restore', 'Khôi phục user', 'user-restore', 24, '2020-09-16 10:42:33', '2020-09-16 10:42:33', NULL),
(147, 'force-delete', 'Xóa user', 'user-force-delete', 24, '2020-09-16 10:42:33', '2020-09-16 10:42:33', NULL),
(148, 'list', 'Xem danh sách post cate', 'post-cate-list', 25, '2020-09-16 10:42:33', '2020-09-16 10:42:33', NULL),
(149, 'add', 'Thêm mới post cate', 'post-cate-add', 25, '2020-09-16 10:42:33', '2020-09-16 10:42:33', NULL),
(150, 'update', 'Cập nhật post cate', 'post-cate-update', 25, '2020-09-16 10:42:33', '2020-09-16 10:42:33', NULL),
(151, 'delete', 'Xóa mềm post cate', 'post-cate-delete', 25, '2020-09-16 10:42:33', '2020-09-16 10:42:33', NULL),
(152, 'trash', 'Xem thùng rác post cate', 'post-cate-trash', 25, '2020-09-16 10:42:33', '2020-09-16 10:42:33', NULL),
(153, 'restore', 'Khôi phục post cate', 'post-cate-restore', 25, '2020-09-16 10:42:33', '2020-09-16 10:42:33', NULL),
(154, 'force-delete', 'Xóa post cate', 'post-cate-force-delete', 25, '2020-09-16 10:42:33', '2020-09-16 10:42:33', NULL),
(155, 'list', 'Xem danh sách post', 'post-list', 26, '2020-09-16 10:42:33', '2020-09-16 10:42:33', NULL),
(156, 'add', 'Thêm mới post', 'post-add', 26, '2020-09-16 10:42:33', '2020-09-16 10:42:33', NULL),
(157, 'update', 'Cập nhật post', 'post-update', 26, '2020-09-16 10:42:33', '2020-09-16 10:42:33', NULL),
(158, 'delete', 'Xóa mềm post', 'post-delete', 26, '2020-09-16 10:42:33', '2020-09-16 10:42:33', NULL),
(159, 'trash', 'Xem thùng rác post', 'post-trash', 26, '2020-09-16 10:42:34', '2020-09-16 10:42:34', NULL),
(160, 'restore', 'Khôi phục post', 'post-restore', 26, '2020-09-16 10:42:34', '2020-09-16 10:42:34', NULL),
(161, 'force-delete', 'Xóa post', 'post-force-delete', 26, '2020-09-16 10:42:34', '2020-09-16 10:42:34', NULL),
(162, 'list', 'Xem danh sách role', 'role-list', 27, '2020-09-16 10:42:34', '2020-09-16 10:42:34', NULL),
(163, 'add', 'Thêm mới role', 'role-add', 27, '2020-09-16 10:42:34', '2020-09-16 10:42:34', NULL),
(164, 'update', 'Cập nhật role', 'role-update', 27, '2020-09-16 10:42:34', '2020-09-16 10:42:34', NULL),
(165, 'delete', 'Xóa mềm role', 'role-delete', 27, '2020-09-16 10:42:34', '2020-09-16 10:42:34', NULL),
(166, 'trash', 'Xem thùng rác role', 'role-trash', 27, '2020-09-16 10:42:34', '2020-09-16 10:42:34', NULL),
(167, 'restore', 'Khôi phục role', 'role-restore', 27, '2020-09-16 10:42:34', '2020-09-16 10:42:34', NULL),
(168, 'force-delete', 'Xóa role', 'role-force-delete', 27, '2020-09-16 10:42:34', '2020-09-16 10:42:34', NULL),
(169, 'list', 'Xem danh sách permission', 'permission-list', 28, '2020-09-16 10:42:34', '2020-09-16 10:42:34', NULL),
(170, 'add', 'Thêm mới permission', 'permission-add', 28, '2020-09-16 10:42:34', '2020-09-16 10:42:34', NULL),
(171, 'update', 'Cập nhật permission', 'permission-update', 28, '2020-09-16 10:42:34', '2020-09-16 10:42:34', NULL),
(172, 'delete', 'Xóa mềm permission', 'permission-delete', 28, '2020-09-16 10:42:34', '2020-09-16 10:42:34', NULL),
(173, 'trash', 'Xem thùng rác permission', 'permission-trash', 28, '2020-09-16 10:42:34', '2020-09-16 10:42:34', NULL),
(174, 'restore', 'Khôi phục permission', 'permission-restore', 28, '2020-09-16 10:42:34', '2020-09-16 10:42:34', NULL),
(175, 'force-delete', 'Xóa permission', 'permission-force-delete', 28, '2020-09-16 10:42:34', '2020-09-16 10:42:34', NULL),
(176, 'list', 'Xem danh sách tag', 'tag-list', 21, '2020-09-16 12:03:43', '2020-09-16 12:03:43', NULL),
(177, 'add', 'Thêm mới tag', 'tag-add', 21, '2020-09-16 12:03:43', '2020-09-16 12:03:43', NULL),
(178, 'update', 'Cập nhật tag', 'tag-update', 21, '2020-09-16 12:03:43', '2020-09-16 12:03:43', NULL),
(179, 'delete', 'Xóa mềm tag', 'tag-delete', 21, '2020-09-16 12:03:43', '2020-09-16 12:03:43', NULL),
(180, 'trash', 'Xem thùng rác tag', 'tag-trash', 21, '2020-09-16 12:03:43', '2020-09-16 12:03:43', NULL),
(181, 'restore', 'Khôi phục tag', 'tag-restore', 21, '2020-09-16 12:03:43', '2020-09-16 12:03:43', NULL),
(182, 'force-delete', 'Xóa tag', 'tag-force-delete', 21, '2020-09-16 12:03:43', '2020-09-16 12:03:43', NULL),
(183, 'view', 'Xem chi tiết bài viết', 'post-view', 26, '2020-09-16 12:05:37', '2020-09-16 12:05:37', NULL),
(184, 'Module intro', 'Quản lý giới thiệu', NULL, 0, '2020-09-22 04:13:02', '2020-09-22 04:13:02', NULL),
(185, 'Module service', 'Quản lý dịch vụ', NULL, 0, '2020-09-22 04:13:46', '2020-09-22 04:13:46', NULL),
(186, 'Module recruitment', 'Quản lý tuyển dụng', NULL, 0, '2020-09-22 04:15:00', '2020-09-22 04:15:00', NULL),
(193, 'add', 'Thêm mới intro', 'intro-add', 184, '2020-09-22 09:41:56', '2020-09-22 09:41:56', NULL),
(194, 'view', 'Xem chi tiết intro', 'intro-view', 184, '2020-09-22 09:41:56', '2020-09-22 09:41:56', NULL),
(195, 'add', 'Thêm mới service', 'service-add', 185, '2020-09-22 09:41:56', '2020-09-22 09:41:56', NULL),
(196, 'view', 'Xem chi tiết service', 'service-view', 185, '2020-09-22 09:41:56', '2020-09-22 09:41:56', NULL),
(197, 'add', 'Thêm mới recruitment', 'recruitment-add', 186, '2020-09-22 09:41:56', '2020-09-22 09:41:56', NULL),
(198, 'view', 'Xem chi tiết recruitment', 'recruitment-view', 186, '2020-09-22 09:41:56', '2020-09-22 09:41:56', NULL),
(199, 'Module liên hệ', 'Quản lý liên hệ', NULL, 0, '2020-09-22 15:05:31', '2020-09-22 15:05:31', NULL),
(200, 'list', 'Xem danh sách liên hệ', 'contact-list', 199, '2020-09-22 15:06:47', '2020-09-22 15:06:47', NULL),
(201, 'view', 'Xem chi tiết liên hệ', 'contact-view', 199, '2020-09-22 15:08:12', '2020-09-22 15:08:12', NULL),
(202, 'delete', 'Xóa mềm liên hệ', 'contact-delete', 199, '2020-09-22 15:09:21', '2020-09-22 15:09:21', NULL),
(203, 'restore', 'Khôi phục liên hệ', 'contact-restore', 199, '2020-09-22 15:10:35', '2020-09-22 15:10:35', NULL),
(204, 'force delete', 'Xóa liên hệ', 'contact-force-delete', 199, '2020-09-22 15:11:00', '2020-09-22 15:11:00', NULL),
(205, 'trash', 'Xem thùng rác liên hệ', 'contact-trash', 199, '2020-09-23 02:52:26', '2020-09-23 02:52:26', NULL),
(206, 'Module dự án', 'Quản lý dự án', NULL, 0, '2020-09-23 16:17:12', '2020-09-23 16:17:12', NULL),
(207, 'list', 'Xem danh sách dự án', 'project-list', 206, '2020-09-23 16:18:22', '2020-09-23 16:18:29', '2020-09-23 16:18:29'),
(208, 'list', 'Xem danh sách dự án', 'project-list', 206, '2020-09-23 16:18:24', '2020-09-23 16:18:24', NULL),
(209, 'view', 'Xem chi tiết dự án', 'project-view', 206, '2020-09-23 16:19:22', '2020-09-23 16:19:22', NULL),
(210, 'add', '<NAME>', 'project-add', 206, '2020-09-23 16:21:11', '2020-09-23 16:21:11', NULL),
(211, 'update', 'Cập nhật dự án', 'project-update', 206, '2020-09-23 16:22:23', '2020-09-23 16:22:23', NULL),
(212, 'delete', 'Xóa mềm dự án', 'project-delete', 206, '2020-09-23 16:23:02', '2020-09-23 16:23:02', NULL),
(213, 'trash', 'Xem thùng rác dự án', 'project-trash', 206, '2020-09-23 16:23:51', '2020-09-23 16:23:51', NULL),
(214, 'restore', 'Khôi phục dự án', 'project-restore', 206, '2020-09-23 16:25:08', '2020-09-23 16:25:08', NULL),
(215, 'force delete', 'Xóa dự án', 'project-force-delete', 206, '2020-09-23 16:26:03', '2020-09-23 16:26:03', NULL),
(216, 'Thống kê', 'statistical', 'statistical', 0, '2021-01-26 14:36:12', '2021-01-26 14:36:12', NULL),
(217, 'dashboard', 'dashboard', 'dashboard', 216, '2021-01-26 14:36:59', '2021-01-26 14:36:59', NULL);
-- --------------------------------------------------------
--
-- Cấu trúc bảng cho bảng `permission_roles`
--
CREATE TABLE `permission_roles` (
`id` bigint(20) UNSIGNED NOT NULL,
`permission_id` int(11) NOT NULL,
`role_id` int(11) NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Đang đổ dữ liệu cho bảng `permission_roles`
--
INSERT INTO `permission_roles` (`id`, `permission_id`, `role_id`, `created_at`, `updated_at`) VALUES
(7, 10, 3, NULL, NULL),
(8, 12, 3, NULL, NULL),
(9, 6, 3, NULL, NULL),
(10, 7, 3, NULL, NULL),
(11, 8, 3, NULL, NULL),
(12, 9, 3, NULL, NULL),
(13, 18, 3, NULL, NULL),
(14, 13, 3, NULL, NULL),
(15, 14, 3, NULL, NULL),
(16, 15, 3, NULL, NULL),
(17, 16, 3, NULL, NULL),
(18, 17, 3, NULL, NULL),
(19, 19, 3, NULL, NULL),
(20, 20, 3, NULL, NULL),
(21, 176, 3, NULL, NULL),
(22, 177, 3, NULL, NULL),
(23, 178, 3, NULL, NULL),
(24, 179, 3, NULL, NULL),
(25, 180, 3, NULL, NULL),
(26, 181, 3, NULL, NULL),
(27, 182, 3, NULL, NULL),
(28, 127, 3, NULL, NULL),
(29, 128, 3, NULL, NULL),
(30, 129, 3, NULL, NULL),
(31, 130, 3, NULL, NULL),
(32, 131, 3, NULL, NULL),
(33, 132, 3, NULL, NULL),
(34, 133, 3, NULL, NULL),
(35, 134, 3, NULL, NULL),
(36, 135, 3, NULL, NULL),
(37, 136, 3, NULL, NULL),
(38, 137, 3, NULL, NULL),
(39, 138, 3, NULL, NULL),
(40, 139, 3, NULL, NULL),
(41, 140, 3, NULL, NULL),
(42, 141, 3, NULL, NULL),
(43, 142, 3, NULL, NULL),
(44, 143, 3, NULL, NULL),
(45, 144, 3, NULL, NULL),
(46, 145, 3, NULL, NULL),
(47, 146, 3, NULL, NULL),
(48, 147, 3, NULL, NULL),
(49, 148, 3, NULL, NULL),
(50, 149, 3, NULL, NULL),
(51, 150, 3, NULL, NULL),
(52, 151, 3, NULL, NULL),
(53, 152, 3, NULL, NULL),
(54, 153, 3, NULL, NULL),
(55, 154, 3, NULL, NULL),
(56, 155, 3, NULL, NULL),
(57, 156, 3, NULL, NULL),
(58, 157, 3, NULL, NULL),
(59, 158, 3, NULL, NULL),
(60, 159, 3, NULL, NULL),
(64, 162, 3, NULL, NULL),
(65, 163, 3, NULL, NULL),
(66, 164, 3, NULL, NULL),
(67, 165, 3, NULL, NULL),
(68, 166, 3, NULL, NULL),
(69, 167, 3, NULL, NULL),
(70, 168, 3, NULL, NULL),
(71, 169, 3, NULL, NULL),
(72, 170, 3, NULL, NULL),
(73, 171, 3, NULL, NULL),
(74, 172, 3, NULL, NULL),
(75, 173, 3, NULL, NULL),
(76, 174, 3, NULL, NULL),
(77, 175, 3, NULL, NULL),
(78, 160, 3, NULL, NULL),
(79, 161, 3, NULL, NULL),
(80, 183, 3, NULL, NULL),
(81, 193, 3, NULL, NULL),
(82, 194, 3, NULL, NULL),
(83, 195, 3, NULL, NULL),
(84, 196, 3, NULL, NULL),
(85, 197, 3, NULL, NULL),
(86, 198, 3, NULL, NULL),
(87, 200, 3, NULL, NULL),
(88, 201, 3, NULL, NULL),
(89, 202, 3, NULL, NULL),
(90, 203, 3, NULL, NULL),
(91, 204, 3, NULL, NULL),
(92, 205, 3, NULL, NULL),
(93, 207, 3, NULL, NULL),
(94, 208, 3, NULL, NULL),
(95, 209, 3, NULL, NULL),
(96, 210, 3, NULL, NULL),
(97, 211, 3, NULL, NULL),
(98, 212, 3, NULL, NULL),
(99, 213, 3, NULL, NULL),
(100, 214, 3, NULL, NULL),
(101, 215, 3, NULL, NULL),
(104, 217, 3, NULL, NULL),
(105, 5, 1, NULL, NULL),
(106, 6, 1, NULL, NULL),
(107, 7, 1, NULL, NULL),
(108, 8, 1, NULL, NULL),
(109, 9, 1, NULL, NULL),
(110, 10, 1, NULL, NULL),
(111, 18, 1, NULL, NULL),
(112, 12, 1, NULL, NULL),
(113, 13, 1, NULL, NULL),
(114, 14, 1, NULL, NULL),
(115, 15, 1, NULL, NULL),
(116, 16, 1, NULL, NULL),
(117, 17, 1, NULL, NULL),
(118, 19, 1, NULL, NULL),
(119, 20, 1, NULL, NULL),
(120, 176, 1, NULL, NULL),
(121, 177, 1, NULL, NULL),
(122, 178, 1, NULL, NULL),
(123, 179, 1, NULL, NULL),
(124, 180, 1, NULL, NULL),
(125, 181, 1, NULL, NULL),
(126, 182, 1, NULL, NULL),
(127, 127, 1, NULL, NULL),
(128, 128, 1, NULL, NULL),
(129, 129, 1, NULL, NULL),
(130, 130, 1, NULL, NULL),
(131, 131, 1, NULL, NULL),
(132, 132, 1, NULL, NULL),
(133, 133, 1, NULL, NULL),
(134, 134, 1, NULL, NULL),
(135, 135, 1, NULL, NULL),
(136, 136, 1, NULL, NULL),
(137, 137, 1, NULL, NULL),
(138, 138, 1, NULL, NULL),
(139, 139, 1, NULL, NULL),
(140, 140, 1, NULL, NULL),
(141, 141, 1, NULL, NULL),
(142, 142, 1, NULL, NULL),
(143, 143, 1, NULL, NULL),
(144, 144, 1, NULL, NULL),
(145, 145, 1, NULL, NULL),
(146, 146, 1, NULL, NULL),
(147, 147, 1, NULL, NULL),
(148, 148, 1, NULL, NULL),
(149, 149, 1, NULL, NULL),
(150, 150, 1, NULL, NULL),
(151, 151, 1, NULL, NULL),
(152, 152, 1, NULL, NULL),
(153, 153, 1, NULL, NULL),
(154, 154, 1, NULL, NULL),
(155, 155, 1, NULL, NULL),
(156, 156, 1, NULL, NULL),
(157, 157, 1, NULL, NULL),
(158, 158, 1, NULL, NULL),
(159, 159, 1, NULL, NULL),
(160, 160, 1, NULL, NULL),
(161, 161, 1, NULL, NULL),
(162, 183, 1, NULL, NULL),
(163, 162, 1, NULL, NULL),
(164, 163, 1, NULL, NULL),
(165, 164, 1, NULL, NULL),
(166, 165, 1, NULL, NULL),
(167, 166, 1, NULL, NULL),
(168, 167, 1, NULL, NULL),
(169, 168, 1, NULL, NULL),
(170, 169, 1, NULL, NULL),
(171, 170, 1, NULL, NULL),
(172, 171, 1, NULL, NULL),
(173, 172, 1, NULL, NULL),
(174, 173, 1, NULL, NULL),
(175, 174, 1, NULL, NULL),
(176, 175, 1, NULL, NULL),
(177, 193, 1, NULL, NULL),
(178, 194, 1, NULL, NULL),
(179, 195, 1, NULL, NULL),
(180, 196, 1, NULL, NULL),
(181, 197, 1, NULL, NULL),
(182, 198, 1, NULL, NULL),
(183, 200, 1, NULL, NULL),
(184, 201, 1, NULL, NULL),
(185, 202, 1, NULL, NULL),
(186, 203, 1, NULL, NULL),
(187, 204, 1, NULL, NULL),
(188, 205, 1, NULL, NULL),
(189, 207, 1, NULL, NULL),
(190, 208, 1, NULL, NULL),
(191, 209, 1, NULL, NULL),
(192, 210, 1, NULL, NULL),
(193, 211, 1, NULL, NULL),
(194, 212, 1, NULL, NULL),
(195, 213, 1, NULL, NULL),
(196, 214, 1, NULL, NULL),
(197, 215, 1, NULL, NULL),
(198, 217, 1, NULL, NULL),
(199, 5, 3, NULL, NULL);
-- --------------------------------------------------------
--
-- Cấu trúc bảng cho bảng `posts`
--
CREATE TABLE `posts` (
`id` bigint(20) UNSIGNED NOT NULL,
`title` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`slug` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`summary` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`image_path` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`content` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`user_id` int(11) DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`post_cate_id` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Đang đổ dữ liệu cho bảng `posts`
--
INSERT INTO `posts` (`id`, `title`, `slug`, `summary`, `image_path`, `content`, `user_id`, `deleted_at`, `created_at`, `updated_at`, `post_cate_id`) VALUES
(2, 'cccccccaaaa', 'cccccccaaaa', 'ccc', '/storage/photos/post/2/yUN8b5Z6wZIwItnoVVt8.png', '<p>ccccccccccdsaa</p>', 2, '2020-09-16 16:06:10', '2020-09-13 13:15:27', '2020-09-16 16:06:10', 3),
(3, 'Bệnh nhân nguy kịch sau khi ăn pate Minh Chay, Bộ Y tế lần đầu tiên hướng dẫn nhận biết ngộ độc botulinum', '', 'PGS.TS Nguyễn Trường Sơn, Thứ trưởng Bộ Y tế ngày 8/9 đã ký ban hành Quyết định số 3875/QĐ-KCB về việc ban hành hướng dẫn tạm thời chẩn đoán, điều trị ngộ độc botulinum.', '/storage/photos/post/3/c4IT1e1EkaREpjZjnpXJ.jpg', '<h3><strong>Triệu chứng bệnh</strong></h3>\r\n\r\n<p>Ngộ độc thực phẩm do độc tố botulinum thường do ăn uống các thực phẩm có sẵn độc tố botulinum do các chủng vi khuẩn Clostridium sinh ra.</p>\r\n\r\n<p>Thời gian khởi phát bệnh phổ biến 12-36 giờ sau khi ăn, phần lớn trong ngày đầu tiên, có thể trong khoảng 6 giờ đến 8 ngày sau ăn. Như vậy, nếu đã ăn quá 8 ngày, sức khỏe ổn định có thể yên tâm.</p>\r\n\r\n<p> </p>\r\n\r\n<p>Bệnh nhân không sốt, huyết áp có thể tụt trong khi mạch/nhịp tim có xu hướng không nhanh. Buồn nôn, nôn, chướng bụng, đau bụng, sau đó liệt ruột cơ năng, táo bón. Bệnh cảnh chính là liệt ngoại biên đối xứng hai bên kiểu lan xuống, liệt toàn bộ các cơ với các mức độ khác nhau, người bệnh vẫn tỉnh táo, không có rối loạn cảm giác. Ngộ độc nặng dẫn tới liệt cơ hô hấp, suy hô hấp có thể tử vong. Liệt nặng nề kéo dài dẫn tới nhiều biến chứng.</p>\r\n\r\n<p>Ngộ độc thực phẩm do độc tố botulinum là ngộ độc nặng, tỷ lệ tử vong cao, thời gian liệt kéo dài. Thời gian thở máy cần trung bình khoảng 2 tháng sau đó mới có thể cai thở máy, tuy nhiên bệnh nhân cần nhiều tháng để hồi phục. Liều 0,09 mcg tiêm tĩnh mạch có thể gây tử vong một người nặng 70kg.</p>\r\n\r\n<p>Các biến chứng chính: nhiễm trùng bệnh viện, đặc biệt viêm phổi và các biến chứng của thở máy; Các biến chứng do bất động, nằm kéo dài, loét; Liệt ruột, táo bón, trào ngược, sặc phổi.</p>\r\n\r\n<p>Ngộ độc xảy ra không thường xuyên, có thể thành vụ với nhiều người bị ngộ độc. Có các trường hợp ngộ độc riêng lẻ, không rõ yếu tố dịch tễ, diễn biến nhanh, không thể khai thác bệnh cảnh đặc trưng, dẫn tới dễ bỏ sót hoặc nhầm với nhiều bệnh khác.</p>\r\n\r\n<p>Các nhân viên y tế cần nâng cảnh giác khai thác bệnh sử, đưa vào chẩn đoán phân biệt đặc biệt với các tình trạng liệt ngoại biên, qua đó giúp chẩn đoán và điều trị sớm, dùng thuốc giải độc sớm nhất giúp cải thiện tình trạng ngộ độc.</p>\r\n\r\n<p><a href=\"https://kenh14cdn.com/2020/9/1/pateminhchayquangcao79687033082020edited-1598858208302116857002-crop-15988582123321194029010-15989594175881802614879.jpg\" target=\"_blank\"><img alt=\"Bệnh nhân nguy kịch sau khi ăn pate Min<NAME>, Bộ Y tế lần đầu tiên hướng dẫn nhận biết ngộ độc botulinum - Ảnh 2.\" src=\"https://kenh14cdn.com/thumb_w/620/2020/9/1/pateminhchayquangcao79687033082020edited-1598858208302116857002-crop-15988582123321194029010-15989594175881802614879.jpg\" /></a></p>\r\n\r\n<p>Hiện nay, cả nước có 15 bệnh nhân ngộ độc botulinum sau khi sử dụng pate Minh Chay. Ảnh: Internet.</p>\r\n\r\n<h3><strong>Các biện pháp phòng bệnh</strong></h3>\r\n\r\n<p>Bộ Y tế yêu cầu các cơ quan chức năng cần tăng cường công tác kiểm soát vệ sinh an toàn thực phẩm.</p>\r\n\r\n<p>Người dân được khuyến cáo nên chọn các sản phẩm có nguồn gốc xuất xứ rõ ràng, có tiêu chuẩn chất lượng và an toàn được công nhận. Thận trọng với các thực phẩm đóng kín như trên nhưng có mùi hoặc màu sắc thay đổi, hoặc có vị thay đổi khác thường (ví dụ sữa chua nhưng không còn vị chua bình thường).</p>\r\n\r\n<p>Không nên tự đóng gói kín các thực phẩm và để kéo dài trong điều kiện không phải đông đá (chỉ có nhiệt độ đông đá mới làm vi khuẩn ngừng phát triển và không sinh độc tố). Ưu tiên ăn các thực phẩm mới chế biến, mới nấu chín. Lưu ý nấu chín sẽ phá hủy độc tố botulinum (nếu không may có trong thực phẩm).</p>\r\n\r\n<p>Bên cạnh đó, với các thực phẩm lên men, đóng gói hoặc che đậy kín theo cách truyền thống (như dưa muối, măng, cà muối,…), người dân cần đảm bảo phải chua, mặn. Khi thực phẩm hết chua thì không nên ăn.</p>', 3, '2020-09-19 13:43:59', '2020-09-19 03:26:13', '2020-09-19 13:43:59', 4),
(5, 'Giám đốc CDC Mỹ khẳng định: Khẩu trang sẽ chống dịch hiệu quả hơn vaccine', '', 'Trên tay là chiếc khẩu trang dùng 1 lần, giám đốc CDC khẳng định rằng đây là công cụ hiệu quả và mang đến nhiều hy vọng hơn là vaccine trong tương lai.', '/storage/photos/post/3/PTaflCAAURJWCfR4YrDP.jpg', '<p>Trong phiên điều trần Quốc hội ngày 16/9, Tiến sĩ <NAME> - giám đốc Trung tâm Kiểm soát và Phòng ngừa dịch bệnh Hoa Kỳ (CDC) đã có lời khẳng định dành cho công dụng của khẩu trang. Trên tay là chiếc khẩu trang dùng 1 lần, ông khẳng định rằng đây là công cụ hiệu quả hơn là loại vaccine đang được đặt nhiều hy vọng trong tương lai.</p>\r\n\r\n<p><em>"Chiếc khẩu trang này là thứ đảm bảo hơn cho tôi trước Covid-19, hơn là vaccine,"</em> - Redfield trả lời một tiểu ban Thượng viện. Ông cho biết vaccine có thể mang đến khả năng miễn dịch hiệu quả khoảng 70%, nghĩa là sẽ có gần 1/3 không có công hiệu.</p>\r\n\r\n<p><em>"Nếu bạn không có phản ứng miễn dịch, nghĩa là vaccine không thể bảo vệ bạn. Còn chiếc khẩu trang này thì có."</em></p>\r\n\r\n<p>Nói về vaccine, cần biết khả năng tạo miễn dịch là điều cực kỳ quan trọng, và tỉ lệ bảo vệ lý tưởng sẽ là 100%. Nhưng với virus corona lần này, các chuyên gia chỉ nhắm đến 70%, chủ yếu là để giảm lây lan. Nói cách khác, vaccine sẽ không có hiệu quả tuyệt đối.</p>\r\n\r\n<p>Trong khi đó một nghiên cứu trên tạp chí New England Journal of Medicine đã đề cập rằng khẩu trang có thể lọc bớt các giọt bắn chứa virus, nên bản thân nó giống như một phương pháp trị liệu, giúp cơ thể chuẩn bị tốt hơn trước virus corona mà không khiến họ phát bệnh.</p>\r\n\r\n<p>Tuy nhiên chỉ vài giờ sau, Tổng thống Trump cho biết đã gọi cho ông Redfield để phản hồi về phát ngôn của ông. <em>"Tôi đã gọi cho ông ấy, và tôi nghĩ ông đã sai khi nói như vậy. Có lẽ ông ấy đã hiểu sai câu hỏi."</em></p>\r\n\r\n<p><img alt=\"Giám đốc CDC Mỹ khẳng định: Khẩu trang sẽ chống dịch hiệu quả hơn vaccine - Ảnh 2.\" src=\"https://kenh14cdn.com/2020/9/17/photo-1-1600326888528501924283-1600331875197121364061.jpeg\" /></p>\r\n\r\n<p>Theo Tổng thống Trump, Mỹ sẽ sẵn sàng phân phối vaccine ngừa Covid-19 sớm nhất là vào tháng 10 năm nay, đồng thời tái khẳng định hiệu quả của vaccine sẽ lớn hơn rất nhiều so với khẩu trang. Ngay sau đó, ông Redfield cũng đăng đàn trên Twitter để phản hồi lại ý kiến của ngài tổng thống - chính xác hơn là làm rõ, cụ thể như sau:</p>\r\n\r\n<p> </p>\r\n\r\n<p><em>"Tôi hoàn toàn tin tưởng vào vaccine, đặc biệt là vaccine Covid-19. Nó sẽ là thứ đưa cuộc sống tại Mỹ trở lại trạng thái bình thường. Tuy nhiên, cách tốt nhất để hạn chế lây nhiễm vẫn sẽ là khẩu trang, rửa tay, duy trì giãn cách."</em></p>', 3, '2020-09-19 13:43:57', '2020-09-19 04:09:30', '2020-09-19 13:43:57', 4),
(6, 'Nga sẽ cung cấp 100 triệu liều vaccine ngừa Covid-19 cho Ấn Độ', '', 'Quỹ Đầu tư Trực tiếp Nga (RDIF) hôm nay (16/9) ký thỏa thuận cung cấp 100 triệu liều vaccine Sputnik-V ngừa Covid-19 cho một công ty dược phẩm ở Ấn Độ.', '/storage/photos/post/3/Y3E7nmVhmXN9ukCSTc9F.jpg', '<p>Theo nguồn tin từ hãng tin Sputnik, cuộc thử nghiệm lâm sàng đối với vaccine của Nga ở Ấn Độ sau đó sẽ được thực hiện chung với công ty này. Cả việc thử nghiệm và thỏa thuận cung c</p>\r\n\r\n<p>Hiện Quỹ đầu tư trực tiếp của Nga (RDIF) đã ký các hợp đồng cung cấp vaccine cho Kazakhstan, Brazil, Mexico và đạt được thỏa thuận hợp tác sản xuất với Ấn Độ để sản xuất 300 triệu liều vaccine Sputnik-V. Đầu tư Trực tiếp Nga sẽ công bố tên của công ty Ấn Độ vào tối nay (16/9).</p>\r\n\r\n<p>Tháng trước, Nga đã đăng ký vaccine Sputnik-V do viện Gamaleya có trụ sở tại Moscow phát triển. Ngày 26/8, Nga đã tiến hành thử nghiệm giai đoạn cuối vaccine Sputnik - với sự tham gia của khoảng 55.000 người./.</p>\r\n\r\n<p>ấp vaccine ngừa Covid-19 Sputnik-V đều phụ thuộc vào sự chấp thuận của cơ quan quản lý tại Ấn Độ.</p>', 3, '2020-09-19 13:43:54', '2020-09-19 04:25:56', '2020-09-19 13:43:54', 4),
(7, 'Mỹ sẽ sản xuất đủ vaccine cho mọi người dân vào tháng 4/2021', '', 'Tổng thống <NAME> cho biết, Mỹ sẽ sản xuất đủ vaccine ngừa Covid-19 cho mọi người dân Mỹ vào tháng 4 năm sau.', '/storage/photos/post/3/URIzFyow16ap1jNhVlnS.jpg', '<p>Phát biểu trong cuộc họp báo ở Nhà Trắng cùng một số thành viên Nhóm đặc trách chống Covid-19, Tổng thống <NAME> tuyên bố ngay sau khi vaccine được Cơ quan Quản lý Dược phẩm và Thực phẩm (FDA) phê duyệt, vaccine sẽ được phân phối trong vòng 24 tiếng.</p>\r\n\r\n<p>“Chúng ta sẽ sản xuất được ít nhất 100 triệu liều vaccine ngừa Covid-19 trước cuối năm nay và có khả năng nhiều hơn thế. Hàng trăm triệu liều sẽ được cung cấp mỗi tháng và chúng tôi hy vọng sẽ có đủ vaccine cho mọi người Mỹ vào tháng 4 năm sau. Một lần nữa, tôi tuyên bố ngay cả ở giai đoạn sau đó việc phân phối sẽ diễn ra nhanh nhất có thể” - Tổng thống D<NAME> nói.</p>\r\n\r\n<p>Dự báo của <NAME> <NAME> trái ngược với nhận định của Giám đốc Trung tâm Kiểm soát và Phòng ngừa Dịch bệnh, TS. <NAME>. Trước đó, phát biểu tại phiên điều trần trước Ủy ban Chuẩn chi Ngân sách Thượng viện ngày 16/9, ông Redfield nói rằng Mỹ sẽ không bắt đầu tiêm chủng vaccine Covid-19 sớm nhất cho đến tháng 11 hoặc tháng 12/2020. Ông Redfield cũng cho rằng hầu hết người dân Mỹ sẽ không thể tiếp cận rộng rãi vaccine ngừa Covid-19 cho đến mùa Hè hoặc đầu mùa Thu năm sau.</p>', 3, '2020-09-19 13:43:51', '2020-09-19 04:27:28', '2020-09-19 13:43:51', 4),
(9, 'Pháp ghi nhận số ca tử vong vì Covid-19 cao nhất trong 4 tháng qua', 'phap-ghi-nhan-so-ca-tu-vong-vi-covid-19-cao-nhat-trong-4-thang-qua', 'Nước Pháp tiếp tục ghi nhận các diễn biến hết sức báo động của đại dịch Covid-19 khi lần đầu tiên kể từ khi gỡ bỏ phong tỏa hồi đầu tháng 5/2020.', '/storage/photos/post/3/VTSHHoTaN6aCuqqdKtKH.jpg', '<p>Số người tử vong vì Covid-19 trong ngày vượt quá cột mốc 100, đồng thời số ca mắc ở mức cao nhất từ trước đến nay.</p>\r\n\r\n<p>Nước Pháp trong ngày 18/9 ghi nhận số ca nhiễm mới virus SARS-CoV-2 ở mức cao nhất từ trước đến nay, kể từ khi đại dịch Covid-19 bùng phát tại nước này, với 13.125 ca mắc mới. Đồng thời, lần đầu tiên kể từ khi nước Pháp gỡ bỏ phong tỏa toàn quốc hồi đầu tháng 5, số ca tử vong vì Covid-19 trong ngày đã vượt qua cột mốc 100, với 123 bệnh nhân thiệt mạng trong vòng 24h. Ngoài hai con số trên, tất cả các chỉ số khác cũng đang ở mức báo động, khi số ca nhập viện điều trị cũng như số ca bệnh nặng phải hồi sức tích cực cũng đang tăng nhanh.</p>\r\n\r\n<p> </p>\r\n\r\n<p> </p>\r\n\r\n<p><a href=\"https://kenh14cdn.com/2020/9/19/photo-1-1600510280375989447926.jpg\" target=\"_blank\"><img alt=\" Pháp ghi nhận số ca tử vong vì Covid-19 cao nhất trong 4 tháng qua - Ảnh 1.\" src=\"https://kenh14cdn.com/thumb_w/620/2020/9/19/photo-1-1600510280375989447926.jpg\" /></a></p>\r\n\r\n<p>Người dân Pháp đeo khẩu trang (Ảnh: Reuters)</p>\r\n\r\n<p>Trong báo cáo chi tiết công bố trong ngày 18/09, Cơ quan Y tế quốc gia Pháp cho biết, dù hiện nay số người trẻ trong độ tuổi từ 20-30 tuổi vẫn là các đối tượng chính nhiễm virus nhưng trong vài ngày qua, các đối tượng dễ bị tổn thương nhất là những người già trên 75 tuổi cũng đã bắt đầu nhiễm bệnh nhiều hơn.</p>\r\n\r\n<p> </p>\r\n\r\n<p>Tình hình đặc biệt đáng lo ngại tại các thành phố miền Nam như Marseille, Nice. Tại Marseille, thành phố lớn thứ 2 nước Pháp, 90% số giường hồi sức tích cực đã được sử dụng. Giới chức y tế Pháp đã bắt đầu lo ngại các bệnh viện tại một số vùng sẽ nhanh chóng bị quá tải, trong bối cảnh đội ngũ y bác sĩ vẫn đang mệt mỏi sau làn sóng dịch thứ nhất.</p>\r\n\r\n<p>“Lo lắng của chúng tôi đó là vẫn chưa hiểu rõ về làn sóng dịch thứ hai này. Chúng tôi không biết đà lây lan virus này sẽ kéo dài tới đâu. Tốc độ lây lan hiện nay chậm hơn hồi đầu năm nhưng không biết đến khi nào sẽ đạt đỉnh”.</p>\r\n\r\n<p>Trước các diễn biến dịch phức tạp hiện nay và để tránh nguy cơ phải tái phong tỏa, các thành phố tại Pháp đã liên tiếp đưa ra các quy định mới. Tại Nice, các cuộc tụ họp quá 10 người tại các công viên, bãi biển bị cấm. Tại Toulouse, chính quyền cấm bán đồ uống có cồn sau 20h. Tại khu vực thủ đô Paris, cơ quan y tế cũng khuyến cáo người dân không nên tụ tập quá 10 người.</p>\r\n\r\n<p>Nhằm đẩy nhanh tốc độ xét nghiệm, Cơ quan y tế quốc gia Pháp đã cho phép tiến hành các xét nghiệm dịch họng đối với những người có triệu chứng. Hình thức xét nghiệm này sẽ cho kết quả nhanh hơn dù có độ tin cậy không cao so với xét nghiệm PCR.</p>\r\n\r\n<p>Cũng trong ngày 18/9, Bộ trưởng Kinh tế Pháp <NAME> thông báo ông đã xét nghiệm dương tính với virus SARS-CoV-2, dù không có triệu chứng. Tại Quốc hội Pháp, 8 người cũng đã bị phát hiện nhiễm bệnh trong vài ngày qua.</p>', 3, NULL, '2020-09-19 13:44:53', '2020-09-24 02:59:19', 4),
(10, 'Nepal có thêm 2020 ca Covid-19 mới chỉ 1 ngày sau khi dỡ phong tỏa', 'nepal-co-them-2020-ca-covid-19-moi-chi-1-ngay-sau-khi-do-phong-toa', 'Nepal ngày 18/9 đã xác nhận thêm 2020 ca bệnh Covid-19 mới – mức cao kỷ lục từ trước tới nay tại quốc gia Nam Á này.', '/storage/photos/post/3/wF7ybXDkJpJgey7kLeJ2.jpg', '<p>Điều đáng chú ý là các ca nhiễm SARS-CoV-2 mới được phát hiện chỉ một ngày sau khi Nepal dỡ bỏ lệnh phong tỏa kéo dài 6 tháng qua vì Covid-19.</p>\r\n\r\n<p> </p>\r\n\r\n<p>Bộ Y tế và Dân số Nepal cho biết, số ca nhiễm mới cao nhất trong 24 giờ qua đưa tổng số người mắc Covid-19 tại quốc gia nằm trên dãy Himalaya này lên con số 61.593 người. Số người tử vong vì đại dịch Covid-19 tại Nepal hiện tại là 390.</p>\r\n\r\n<p> </p>\r\n\r\n<p><a href=\"https://kenh14cdn.com/2020/9/19/photo-1-16004789155891213546918.jpg\" target=\"_blank\"><img alt=\"Nepal có thêm 2020 ca Covid-19 mới chỉ 1 ngày sau khi dỡ phong tỏa - Ảnh 1.\" src=\"https://kenh14cdn.com/thumb_w/620/2020/9/19/photo-1-16004789155891213546918.jpg\" /></a></p>\r\n\r\n<p>Phun xịt khuẩn chống Covid-19 tại một khu dân cư ở thủ đô Kathmandu. (Ảnh: AFP)</p>\r\n\r\n<p>Bắt đầu từ ngày 17/9, Chính phủ Nepal đã nới lỏng các lệnh hạn chế kéo dài từ tháng 3 nhằm ngăn ngừa Covid-19. Các phương tiện chuyên chở hàng hóa và cửa hàng được cho phép hoạt động trở lại.</p>', 3, NULL, '2020-09-19 13:45:45', '2020-09-24 02:59:10', 4),
(11, 'Châu Âu ghi nhận 54 nghìn ca mắc mới COVID-19 trong 24 giờ', 'chau-au-ghi-nhan-54-nghin-ca-mac-moi-covid-19-trong-24-gio', 'Giám đốc WHO khu vực châu Âu nhận định, sự gia tăng số ca mắc COVID-19 trong tháng 9 nên được coi như một hồi chuông cảnh tỉnh với các nước trong khu vực.', '/storage/photos/post/3/qBbqbfxbxIbfD3QWPYex.jpg', '<p><em>"Tình hình đang rất nghiêm trọng, số ca mắc mới trong tuần qua đã vượt quá 300 nghìn người. Con số này đã vượt con số ghi nhận đợt đỉnh dịch hồi tháng 3 ở khu vực châu Âu. Hơn một nửa số quốc gia ở châu Âu thông báo số ca mắc mới tăng hơn 10% trong hai tuần qua"</em> - TS Hans Kluge - Giám đốc Tổ chức Y tế thế giới khu vực châu Âu nói.</p>\r\n\r\n<p>Trước tình trạng này, Tổ chức Y tế thế giới cũng cảnh báo các nước châu Âu không nên rút ngắn thời gian cách ly như hiện nay.</p>\r\n\r\n<p><img alt=\"Châu Âu ghi nhận 54 nghìn ca mắc mới COVID-19 trong 24 giờ - Ảnh 1.\" src=\"https://kenh14cdn.com/2020/9/18/mau180920-1600422639776763736968-1600427809253325322386.jpg\" /></p>\r\n\r\n<p>Hiện một số nước châu Âu đã buộc phải siết chặt các biện pháp chống dịch. Bắt đầu từ 18/9, Chính phủ Anh sẽ áp đặt lệnh giới nghiêm ban đêm từ 22h hôm trước đến 5h hôm sau đối với toàn bộ vùng Đông Bắc England với hơn 10 triệu dân.</p>\r\n\r\n<p>Ngoài ra, các bệnh viện của Anh cũng được thông báo phải gấp rút chuẩn bị thêm giường bệnh trong vòng 2 tuần tới để đối phó với làn sóng lây nhiễm lần hai.</p>\r\n\r\n<p>Cũng từ ngày hôm nay, các quán bar và nhà hàng trên toàn quốc ở Cộng hòa Czech sẽ phải đóng cửa từ nửa đêm đến 6h. Bên cạnh đó, học sinh từ lớp 6 trở lên cũng sẽ phải đeo khẩu trang trong lớp học.</p>\r\n\r\n<p> </p>\r\n\r\n<p>Còn tại Áo, kể từ ngày 21/9, các nhà hàng và quán bar có thể chỉ được phép phục vụ khách tại bàn, hạn chế di chuyển và yêu cầu đeo khẩu trang được mở rộng ở những nơi công cộng trong đó có các khu chợ.</p>', 3, NULL, '2020-09-19 13:46:31', '2020-09-24 02:59:01', 4),
(12, 'Dự báo đến ngày 10/10, 218.000 người tử vong do Covid-19 ở Mỹ', 'du-bao-den-ngay-1010-218000-nguoi-tu-vong-do-covid-19-o-my', 'Tính đến chiều 17 tháng 9 (giờ địa phương), đã có ít nhất 197.240 người chết vì Covid-19 và hơn 6,6 triệu trường hợp nhiễm bệnh ở Mỹ', '/storage/photos/post/3/7RlpmzlvLQMVpg7o2Khy.jpg', '<p>Dự báo tổng hợp do Trung tâm Kiểm soát và Ngăn ngừa Dịch bệnh Mỹ (CDC) công bố ngày 17/9 cho thấy sẽ có từ 207.000 đến 218.000 ca tử vong vì mắc bệnh Covid-19 ở Mỹ vào ngày 10/10 tới.</p>\r\n\r\n<p>Không giống như một số mô hình riêng lẻ, dự báo tổng hợp của Trung tâm Kiểm soát và Ngăn ngừa Dịch bệnh Mỹ chỉ đưa ra các dự báo trong một vài tuần tới. Dự báo tổng hợp lần trước, được công bố vào ngày 10 tháng 9, nhận định có tới 217.000 người Mỹ tử vong vì mắc Covid-19 vào ngày 3/10.</p>\r\n\r\n<p> </p>\r\n\r\n<p><img alt=\"Dự báo đến ngày 10/10, 218.000 người tử vong do Covid-19 ở Mỹ - Ảnh 1.\" src=\"https://kenh14cdn.com/thumb_w/660/2020/9/18/photo-1-1600394044346378969542.jpg\" /></p>\r\n\r\n<p>Theo dữ liệu của Đại học <NAME>, tính đến chiều 17/9 (giờ địa phương), đã có ít nhất 197.240 người chết vì Covid-19 và hơn 6,6 triệu trường hợp nhiễm bệnh ở Mỹ./.</p>', 3, NULL, '2020-09-19 13:47:10', '2020-09-24 02:58:52', 4),
(13, 'Nga sẽ cung cấp 100 triệu liều vaccine ngừa Covid-19 cho Ấn Độ', 'nga-se-cung-cap-100-trieu-lieu-vaccine-ngua-covid-19-cho-an-do', 'Quỹ Đầu tư Trực tiếp Nga (RDIF) hôm nay (16/9) ký thỏa thuận cung cấp 100 triệu liều vaccine Sputnik-V ngừa Covid-19 cho một công ty dược phẩm ở Ấn Độ.', '/storage/photos/post/3/UwzgA7IeVT5gR8MxGdU6.jpg', '<p>Theo nguồn tin từ hãng tin Sputnik, cuộc thử nghiệm lâm sàng đối với vaccine của Nga ở Ấn Độ sau đó sẽ được thực hiện chung với công ty này. Cả việc thử nghiệm và thỏa thuận cung cấp vaccine ngừa Covid-19 Sputnik-V đều phụ thuộc vào sự chấp thuận của cơ quan quản lý tại Ấn Độ.</p>\r\n\r\n<p> </p>\r\n\r\n<p><img alt=\"Nga sẽ cung cấp 100 triệu liều vaccine ngừa Covid-19 cho Ấn Độ - Ảnh 1.\" src=\"https://kenh14cdn.com/thumb_w/660/2020/9/16/photo-1-1600260962153268019865.jpg\" /></p>\r\n\r\n<p>Hiện Quỹ đầu tư trực tiếp của Nga (RDIF) đã ký các hợp đồng cung cấp vaccine cho Kazakhstan, Brazil, Mexico và đạt được thỏa thuận hợp tác sản xuất với Ấn Độ để sản xuất 300 triệu liều vaccine Sputnik-V. Đầu tư Trực tiếp Nga sẽ công bố tên của công ty Ấn Độ vào tối nay (16/9).</p>\r\n\r\n<p>Tháng trước, Nga đã đăng ký vaccine Sputnik-V do viện Gamaleya có trụ sở tại Moscow phát triển. Ngày 26/8, Nga đã tiến hành thử nghiệm giai đoạn cuối vaccine Sputnik - với sự tham gia của khoảng 55.000 người./.</p>', 3, NULL, '2020-09-19 13:47:48', '2020-09-24 02:58:45', 4),
(14, 'UAE cấm hãng bay Ấn Độ 15 ngày vì có hành khách mắc Covid-19', 'uae-cam-hang-bay-an-do-15-ngay-vi-co-hanh-khach-mac-covid-19', 'Vì lệnh cấm này, Air India Express sẽ phải điều chỉnh lại tất cả các chuyến bay tới sân bay quốc tế Sharjah của Dubai.', '/storage/photos/post/3/pU3B11hehWNVNac7QvVL.jpg', '<p>Chính quyền Dubai – thành phố thuộc Các Tiểu vương quốc Arab Thống nhất (UAE) vừa ra lệnh cấm bay với hãng hàng không Ấn Độ Air India Express trong 15 ngày vì một hành khách từng sử dụng dịch vụ của hãng này được xác định dương tính với virus SARS-CoV-2.</p>\r\n\r\n<p> </p>\r\n\r\n<p><a href=\"https://kenh14cdn.com/2020/9/18/photo-1-16004415825251068515526.jpg\" target=\"_blank\"><img alt=\"UAE cấm hãng bay Ấn Độ 15 ngày vì có hành khách mắc Covid-19 - Ảnh 1.\" src=\"https://kenh14cdn.com/thumb_w/620/2020/9/18/photo-1-16004415825251068515526.jpg\" /></a></p>\r\n\r\n<p>Máy bay của hãng hàng không Air India (Ảnh: BBC)</p>\r\n\r\n<p> </p>\r\n\r\n<p>Hành khách này đi trên chuyến bay từ thành phố Jaipur, bang Rajasthan, tới Dubai hôm 4/9. Vì lệnh cấm này, Air India Express sẽ phải điều chỉnh lại tất cả các chuyến bay tới sân bay quốc tế Sharjah của Dubai. Trong bức thư gửi Air India Express, Cơ quan Hàng không Dân dụng Dubai cho biết đây là lần thứ hai hành khách đi trên các chuyến bay của hãng được phát hiện mắc Covid-19.</p>\r\n\r\n<p>Trước đó, hôm 2/9, nhà chức trách Dubai đã gửi một thư cảnh báo tới hãng hàng không Ấn Độ về một trường hợp hành khách dương tính với SARS-CoV-2. Vận chuyển hành khách mắc Covid-19 tới lần thứ 2 được coi là hành vi vi phạm các quy trình và thủ tục hàng không tới và đi từ Tiểu vương Dubai trong giai đoạn dịch bệnh Covid-19.</p>\r\n\r\n<p>Chính vì vậy, tất cả các chuyến bay của Air India Express tới các sân bay tại Dubai đều bị đình chỉ trong thời gian từ 18/9 tới 2/10. Hồi tháng 8, hãng mẹ của Air India Express là Air India cũng buộc phải dừng các chuyến bay tới Hong Kong trong 2 tuần vì “chuyên chở quá nhiều hành khách nhiễm SARS-CoV-2”.</p>\r\n\r\n<p>Chính quyền Hong Kong đưa ra lệnh cấm sau khi 11 hành khách trên một chuyến bay của Air India ngày 14/8 được xác định dương tính với loại virus này. Các quan chức hàng không cho rằng nguyên nhân của hiện tượng này là do việc xét nghiệm Covid-19 cho hành khách trước chuyến bay không được thực hiện nghiêm túc. Air India Express là thương hiệu hàng không giá rẻ thuộc sở hữu của hãng Hàng không Quốc gia Ấn Độ Air India./</p>', 3, NULL, '2020-09-19 13:49:42', '2020-09-24 02:58:26', 4),
(15, 'Vietnam Airlines thực hiện chuyến bay thương mại quốc tế thường lệ đầu tiên sau dịch Covid-19', 'vietnam-airlines-thuc-hien-chuyen-bay-thuong-mai-quoc-te-thuong-le-dau-tien-sau-dich-covid-19', 'Chuyến bay VN310 hành trình Hà Nội - Tokyo (Nhật Bản) của Vietnam Airlines đã cất cánh an toàn từ Nội Bài vào lúc 6h30 sáng nay. Đây là chuyến bay thương mại quốc tế thường lệ đầu tiên của Vietnam Airlines sau một thời gian tạm dừng vì ảnh hưởng của dịch Covid-19.', '/storage/photos/post/3/RUhfBoE6pkerhCvzCiid.jpg', '<p>Chuyến bay được khai thác bằng máy bay Boeing 787-10, một trong những loại tàu bay thân rộng hiện đại nhất của Vietnam Airlines hiện nay. Hành trình có thời lượng là 5 tiếng 15 phút, với điểm đến là sân bay Narita tại Tokyo, Nhật Bản. Số lượng hành khách trên chuyến bay là gần 60 người, chủ yếu là các du học sinh, người lao động đến Nhật Bản để tiếp tục học tập, lao động và sinh sống. Chuyến bay cũng chở một số công dân Nhật Bản về nước. Bên cạnh chở hành khách, chuyến bay còn kết hợp chở hàng hóa nhằm phục vụ giao thương, sản xuất.</p>\r\n\r\n<p>Hành khách trên chuyến bay được sắp xếp ngồi giãn cách nhằm đáp ứng các quy định về phòng chống dịch bệnh. Hành khách cũng phải tuân thủ các quy định nghiêm ngặt của nhà chức trách Nhật Bản khi nhập cảnh như có kết quả xét nghiệm PCR âm tính với Covid-19 trong vòng 72h trước khởi hành, khai báo lịch sử đi lại trong vòng 14 ngày, tải ứng dụng xác nhận tiếp xúc…</p>\r\n\r\n<p><img alt=\"Vietnam Airlines thực hiện chuyến bay thương mại quốc tế thường lệ đầu tiên sau dịch Covid-19 - Ảnh 1.\" src=\"https://kenh14cdn.com/thumb_w/660/2020/9/19/119455452101641093638804818050201788531540420o-1600484676296411691550.jpg\" /></p>\r\n\r\n<p>Từ 4h sáng 19/9, hành khách đã có mặt tại nhà ga quốc tế T2 Nội Bài</p>\r\n\r\n<p><img alt=\"Vietnam Airlines thực hiện chuyến bay thương mại quốc tế thường lệ đầu tiên sau dịch Covid-19 - Ảnh 2.\" src=\"https://kenh14cdn.com/thumb_w/660/2020/9/19/119707778101641093641004813738122151391860408o-16004846763121671295200.jpg\" /></p>\r\n\r\n<p>Đây là hành khách trên chuyến bay thương mại quốc tế đầu tiên của Vietnam Airlines sau Covid 19</p>\r\n\r\n<p>Đối với phi hành đoàn, toàn bộ thành viên sau khi trở về Việt Nam sẽ được kiểm tra sức khỏe và tổ chức cách ly theo quy định. Máy bay được phun khử khuẩn toàn bộ khoang hành khách, buồng lái bằng hóa chất theo tiêu chuẩn quốc tế.</p>\r\n\r\n<p>Sau chuyến bay VN310 ngày 18/9, trong tháng 9, Vietnam Airlines sẽ tiếp tục thực hiện 02 chuyến bay nữa từ Hà Nội đi Tokyo vào các ngày 25/9, 30/9 và 1 chuyến bay từ TP. Hồ Chí Minh đi Tokyo vào ngày 30/9. Khách hàng có thể mua vé máy bay đi Nhật Bản trên website, ứng dụng di động Vietnam Airlines và các phòng vé, đại lý chính thức của hãng trên toàn quốc.</p>\r\n\r\n<p><img alt=\"Vietnam Airlines thực hiện chuyến bay thương mại quốc tế thường lệ đầu tiên sau dịch Covid-19 - Ảnh 3.\" src=\"https://kenh14cdn.com/thumb_w/660/2020/9/19/119551862101641093650904811653011369854052719o-1600484676306396368732.jpg\" /></p>\r\n\r\n<p>Hầu hết hành khách trên chuyến bay là du học sinh, người lao động sang công tác tại Nhật và một số công dân Nhật trở về nước.</p>\r\n\r\n<p><img alt=\"Vietnam Airlines thực hiện chuyến bay thương mại quốc tế thường lệ đầu tiên sau dịch Covid-19 - Ảnh 4.\" src=\"https://kenh14cdn.com/thumb_w/660/2020/9/19/119605220101641093642154812695660015167931188o-1600484676308652955026.jpg\" /></p>\r\n\r\n<p>Hành khách phải đeo khẩu trang và đồ phòng dịch trên chuyến bay</p>\r\n\r\n<p>Lịch bay Việt Nam - Nhật Bản trong những tháng tiếp theo sẽ được Vietnam Airlines cập nhập trong thời gian sớm nhất. Các chuyến bay chở khách chiều từ Nhật Bản về Việt Nam sẽ được thực hiện sau khi có quyết định chính thức của các nhà chức trách. Ngoài đường bay Nhật Bản, Vietnam Airlines dự kiến khôi phục các đường bay giữa Việt Nam và Hàn Quốc, Trung Quốc, Đài Loan (Trung Quốc), Lào, Campuchia trong thời gian tới.</p>\r\n\r\n<p><img alt=\"\" src=\"https://kenh14cdn.com/thumb_w/660/2020/9/19/119738496101641093642804818172644926509200540o-1600484676314386749153.jpg\" /></p>\r\n\r\n<p><img alt=\"\" src=\"https://kenh14cdn.com/thumb_w/660/2020/9/19/119540309101641093649404817724366082287993554o-16004846763041054239673.jpg\" /></p>\r\n\r\n<p><img alt=\"\" src=\"https://kenh14cdn.com/thumb_w/660/2020/9/19/119841060101641093647204818514670613341902931o-1600484676317195571044.jpg\" /></p>\r\n\r\n<p><img alt=\"\" src=\"https://kenh14cdn.com/thumb_w/660/2020/9/19/119703148101641093643854813667296468040395054o-16004846763101207261997.jpg\" /></p>\r\n\r\n<p><img alt=\"Vietnam Airlines thực hiện chuyến bay thương mại quốc tế thường lệ đầu tiên sau dịch Covid-19 - Ảnh 7.\" src=\"https://kenh14cdn.com/thumb_w/660/2020/9/19/119512421101641093646604811514211006046266788o-16004846763021732769464.jpg\" /></p>\r\n\r\n<p>Máy bay được phun khử khuẩn toàn bộ khoang hành khách, buồng lái bằng hóa chất theo tiêu chuẩn quốc tế.</p>\r\n\r\n<p>Trước đó, do ảnh hưởng của Covid-19, Vietnam Airlines đã tạm dừng khai thác các chuyến bay thương mại thường lệ đến, đi từ Nhật Bản kể từ ngày 23/3/2020; tạm dừng toàn mạng bay quốc tế từ ngày 25/3/2020. Từ đó đến nay, Vietnam Airlines chỉ thực hiện các chuyến bay quốc tế nhằm mục đích vận chuyến công dân Việt Nam từ nước ngoài về nước tránh dịch, vận chuyển chuyên gia kỹ thuật và vận tải hàng hóa phục vụ sản xuất, giao thương.</p>\r\n\r\n<p>Việc phục hồi các chuyến bay thương mại quốc tế thường lệ là tín hiệu khởi sắc cho Vietnam Airlines Group, cũng như hàng không Việt Nam khi nhiều quốc gia, khu vực đã kiểm soát tốt tình hình dịch bệnh.</p>', 3, NULL, '2020-09-19 13:50:23', '2020-09-24 02:58:17', 4),
(16, 'Châu Âu ghi nhận 54 nghìn ca mắc mới COVID-19 trong 24 giờ', 'chau-au-ghi-nhan-54-nghin-ca-mac-moi-covid-19-trong-24-gio', 'Giám đốc WHO khu vực châu Âu nhận định, sự gia tăng số ca mắc COVID-19 trong tháng 9 nên được coi như một hồi chuông cảnh tỉnh với các nước trong khu vực.', '/storage/photos/post/3/ja8SPFzX01xV8DCzm4kp.jpg', '<p><em>"Tình hình đang rất nghiêm trọng, số ca mắc mới trong tuần qua đã vượt quá 300 nghìn người. Con số này đã vượt con số ghi nhận đợt đỉnh dịch hồi tháng 3 ở khu vực châu Âu. Hơn một nửa số quốc gia ở châu Âu thông báo số ca mắc mới tăng hơn 10% trong hai tuần qua"</em> - TS <NAME> - Giám đốc Tổ chức Y tế thế giới khu vực châu Âu nói.</p>\r\n\r\n<p>Trước tình trạng này, Tổ chức Y tế thế giới cũng cảnh báo các nước châu Âu không nên rút ngắn thời gian cách ly như hiện nay.</p>\r\n\r\n<p><a href=\"https://kenh14cdn.com/2020/9/18/mau180920-1600422639776763736968-1600427809253325322386.jpg\" target=\"_blank\"><img alt=\"Châu Âu ghi nhận 54 nghìn ca mắc mới COVID-19 trong 24 giờ - Ảnh 1.\" src=\"https://kenh14cdn.com/thumb_w/620/2020/9/18/mau180920-1600422639776763736968-1600427809253325322386.jpg\" /></a></p>\r\n\r\n<p> </p>\r\n\r\n<p>Hiện một số nước châu Âu đã buộc phải siết chặt các biện pháp chống dịch. Bắt đầu từ 18/9, Chính phủ Anh sẽ áp đặt lệnh giới nghiêm ban đêm từ 22h hôm trước đến 5h hôm sau đối với toàn bộ vùng Đông Bắc England với hơn 10 triệu dân.</p>\r\n\r\n<p>Ngoài ra, các bệnh viện của Anh cũng được thông báo phải gấp rút chuẩn bị thêm giường bệnh trong vòng 2 tuần tới để đối phó với làn sóng lây nhiễm lần hai.</p>\r\n\r\n<p>Cũng từ ngày hôm nay, các quán bar và nhà hàng trên toàn quốc ở Cộng hòa Czech sẽ phải đóng cửa từ nửa đêm đến 6h. Bên cạnh đó, học sinh từ lớp 6 trở lên cũng sẽ phải đeo khẩu trang trong lớp học.</p>\r\n\r\n<p>Còn tại Áo, kể từ ngày 21/9, các nhà hàng và quán bar có thể chỉ được phép phục vụ khách tại bàn, hạn chế di chuyển và yêu cầu đeo khẩu trang được mở rộng ở những nơi công cộng trong đó có các khu chợ.</p>', 3, NULL, '2020-09-19 13:51:38', '2020-09-24 02:58:02', 4),
(17, 'NGÀY BÉ TRÀO ĐỜI SẼ AN TOÀN HƠN VỚI LỒNG ẤP OLIDEF', 'ngay-be-trao-doi-se-an-toan-hon-voi-long-ap-olidef', 'Hãng thiết bị y tế Olidef đến từ Brazil đồng hành của Bé những ngày đầu đời khiến \"Bé khỏe mạnh - Mẹ an tâm\". Lồng ấp trẻ sơ sinh Olidef cung cấp một môi trường ấm và ổn định cho những trẻ cần sự chăm sóc đặc biệt trong giai đoạn đầu dời.', '/storage/photos/post/3/q4Z3vIsGjPvo0dZOK6cy.jpg', '<p>Lồng ấp là "vị cứu tinh" mang đến sự sống, ấm áp như lòng Mẹ đối với những trẻ sinh non, sinh thiếu tháng hay các bé có bệnh lý về sức khỏe ngay từ khi chào đời. </p>\r\n\r\n<p><img alt=\"\" src=\"https://tmhitech.vn/Uploads/images/L%e1%bb%92NG%20%e1%ba%a4P%20TR%e1%ba%ba%20S%c6%a0%20SINH.png\" /></p>\r\n\r\n<p>▪️ <strong>Sản phẩm được thiết kế bền chắc đảm bảo an toàn</strong></p>\r\n\r\n<p><strong><img alt=\"\" src=\"https://tmhitech.vn/Uploads/images/L%e1%bb%93ng%20%e1%ba%a5p.png\" /></strong></p>\r\n\r\n<p>Thiết kế bền vững của <strong><a href=\"http://www.allowcopy.com/open/?url=https:\\/\\/tmhitech.vn\\/long-ap-tre-so-sinh-sctiline-4-olidef\">lồng ấp LINE 4</a> </strong>cho đảm bảo tạo ra một môi trường ấm, an toàn, dễ tiếp nhận và chăm sóc trẻ sơ sinh một tối ưu nhất. Sản phẩm được sản xuất dựa trên những tiêu chuẩn nghiêm ngặt nhất thế giới, không cần bảo trì nhiều mà lại dễ vệ sinh và sử dụng. </p>\r\n\r\n<p> </p>\r\n\r\n<p><strong>▪️ Nút điều khiển và các thông số kỹ thuật đều được hiển thị rõ nét trên màn hình</strong></p>\r\n\r\n<p><strong><img alt=\"\" src=\"https://tmhitech.vn/Uploads/images/L%e1%bb%93ng%20%e1%ba%a5p%20(2).png\" /></strong></p>\r\n\r\n<p><strong><a href=\"http://www.allowcopy.com/open/?url=https:\\/\\/tmhitech.vn\\/long-ap-tre-so-sinh-sctiline-4-olidef\">Lồng ấp trẻ sơ sinh Line 4</a> </strong>là giải pháp lồng ấp tích hợp đầy đủ các tính năng, được sử dụng trong hàng ngàn bệnh viện trên toàn thế giới. Các chuyên viên chăm sóc có thể dễ dàng tùy chỉnh nhiệt độ, độ ẩm và nồng độ khí oxy cho môi trường lồng ấp, Line 4 liên tục cập nhật các dữ liệu về nhiệt độ của trẻ sơ sinh. </p>\r\n\r\n<p><br />\r\n<strong>▪️ Dễ dàng quan sát trẻ</strong></p>\r\n\r\n<p><strong><img alt=\"\" src=\"https://tmhitech.vn/Uploads/images/L%e1%bb%93ng%20%e1%ba%a5p%20(1).png\" /></strong></p>\r\n\r\n<p>Nắp lồng ấp được làm bằng chất liệu cao cấp, chồng trầy xước, có đèn kiểm tra tích hợp chiếu sáng nhằm phục vụ việc đánh giá trực quan nhất. </p>\r\n\r\n<p><br />\r\n<strong>▪️ Có đèn kiểm tra tích hợp chiếu sáng nhằm phục vụ việc đánh giá trực quan nhất.</strong></p>\r\n\r\n<p><strong><a href=\"http://www.allowcopy.com/open/?url=https:\\/\\/tmhitech.vn\\/search?Keyword=Olidef\">Olidef</a></strong> là công ty chuyên sản xuất các thiết bị y tế dành cho bệnh viện và phòng khám có trụ sở đặt tại Brazil. Tất cả các sản phẩm của hãng đều được sản xuất trên những ứng dụng y học hàng đầu và được xác nhận bởi tổ chức Good Manufacturing Practices (ANVISA) và ISO 13485. Các dòng sản phẩm nổi bật của hãng như: lồng ấp, đèn chiếu vàng da, giường sưởi ấm cho trẻ... chất lượng cao, được sử dụng rộng rãi ở các bệnh viện trên toàn thế giới. </p>\r\n\r\n<p><strong><a href=\"http://www.allowcopy.com/open/?url=https:\\/\\/tmhitech.vn\\/long-ap-tre-so-sinh\">LỒNG ẤP OLIDEF</a> là giải pháp an toàn được các bệnh viện Quốc tế tin dùng! </strong></p>\r\n\r\n<p> </p>\r\n\r\n<p><strong>Công ty Cổ phần Thiết bị Công nghệ Cao TM</strong><br />\r\nNhập khẩu & Phân phối TBYT cao cấp chính hãng</p>\r\n\r\n<p>Hotline: 090 683 5678<br />\r\nEmail: <a href=\"http://www.allowcopy.com/open/?url=https:\\/\\/tmhitech.vn\\/cdn-cgi\\/l\\/email-protection\">[email protected]</a> <br />\r\nAddress: 42 Phương Mai, Đống Đa, HN.<br />\r\nWebsite: <a href=\"http://www.allowcopy.com/open/?url=https:\\/\\/l.facebook.com\\/l.php?u=https%3A%2F%2Ftmhitech.vn%2F%3Ffbclid%3DIwAR2sDjeBXph7Sp8i08ItZ9wb3p2uODhlqx0bRTom63XMqVdm6GFJirQxvdM&h=AT22IXrbDHb1uMLkXlF3AXa4Hybr7wueqR84yBVbujyW3L-UZ0FobEZzk2ivyfUn9Wm0W3zLSdObzVeMiOsuIvCbT2lLQEZVO3mQVwiLJ6ex7LhHexah9R0kZRyBB5eBjdmfdpH5qeGhTFCewDlbqWkeNuXj3DwYGHtMcSOsY_um97RNIFuwUHSAZbZyKJyJIfiFJdVaGpg4sHQKLnWUR6fruS5Plnc2qtqe4ywFSMKARTna00EUlesOAO-69qbmZpsCY545g1Gq6aJpaP8T71EYtQcIN3EuxlUEmXPK15Ijaq-uRappm72sWKuhzoOH6V-4w3yr1JzdcbFQafyl82xGYZaMzVeLqt_l2okKjev6xrZ8bKu25MO1Ob5aWo_kaYjDqsGy4XPM4xK8ercshOGeyDRBtyT7qNNAnEfDjsNFPmcC0incqwFzdReEatYx1ms7mDxxpPSC9PVVio1rRaKyKiXdWjrpn0da5x5AzbOUAae7ugdgU-TkDyLyl0gmFV7x176QbRA-nJa1vQe6MvTZRw1LlYeC0XyYC9nKdpjsZL3EIG_44YgJWDpxSsq4pFryPLOY8nyYdP1xmB-rIGqu4yq2uSlxGuXSynjlaDWoUgYeENtDCK1tIk3HuUCdWHEUW47F\" target=\"_blank\">https://tmhitech.vn/</a></p>', 3, NULL, '2020-09-19 13:53:48', '2020-09-24 03:15:19', 5),
(18, 'VÌ SAO NÊN SỬ DỤNG LỒNG ẤP TRẺ SƠ SINH?', 'vi-sao-nen-su-dung-long-ap-tre-so-sinh', 'Trẻ sơ sinh được chăm sóc trong lồng như thế nào? Đây là một câu hỏi mà rất nhiều người quan tâm hiện nay. Liệu trẻ có được chăm sóc tốt như ở nhà không? Lồng ấp trẻ sơ sinh mang lại những lợi ích khi chăm sóc trẻ? Hãy cùng chúng tôi đi tìm câu trả lời ngay sau đây.', '/storage/photos/post/3/zvJRke7j7SWOhjCUm5Z5.jpg', '<h2><strong>1. Lợi ích của việc sử dụng lồng ấp trẻ sơ sinh</strong></h2>\r\n\r\n<p><strong>Lồng ấp trẻ sơ sinh </strong>mang đến rất nhiều lợi ích khi chăm sóc các bé vừa mời chào đời, đặc biệt là những bé sinh non, sinh thiếu tháng. Một số lợi ích phải kể đến khi sử dụng lồng ấp, đặc biệt là<em><a href=\"http://www.allowcopy.com/open/?url=https:\\/\\/tmhitech.vn\\/long-ap-tre-so-sinh-sctiline-4-olidef\" target=\"_blank\"> <strong>lồng ấp trẻ sơ sinh SCTILINE 4 OLIDEF</strong></a></em><strong> </strong>như sau:</p>\r\n\r\n<h3><strong>Giúp trẻ thở tốt</strong></h3>\r\n\r\n<p>Hệ thống ống thông, máy thở, kim truyền, lồng và máy giám sát công nghệ cao có thể trông rất đáng sợ, nhưng chúng góp phần giúp lồng ấp Olidef trở thành nơi an toàn nhất cho một em bé sinh non hoặc bị bệnh. </p>\r\n\r\n<p><img alt=\"lồng ấp trẻ sơ sinh giúp chăm sóc trẻ sinh non, sinh thiếu tháng\" src=\"https://tmhitech.vn/Uploads/images/news/long-ap-tre-so-sinh-1.jpg\" /></p>\r\n\r\n<p><em>Lồng ấp trẻ sơ sinh giúp chăm sóc trẻ sinh non, sinh thiếu tháng</em></p>\r\n\r\n<p>Khi sinh non phổi của trẻ chưa thể hoàn thiện và suy hô hấp là một trong những lí do chính cần phải chăm sóc bé trong lồng ấp. Bé có thể được cho chụp mũ oxy, là một chiếc hộp chứa toàn oxy tinh khiết vừa vặn với đầu của trẻ để cung cấp oxy phù hợp. </p>\r\n\r\n<h3><strong>Cho trẻ bú dễ dàng hơn</strong></h3>\r\n\r\n<p>Lồng ấp Olidef giúp giữ thân nhiệt cho cơ thể. Một ống thông (mũi – dạ dày) cung cấp sữa mẹ hoặc sữa công thức trực tiếp đi vào dạ dày bé thông qua lỗ mũi. Các kim và ống truyền giúp cung cấp chất lỏng để giữ cho bé không bị mất nước đồng thời truyền thuốc vào cơ thể.</p>\r\n\r\n<h3><strong>Theo dõi tình hình sức khỏe bé</strong></h3>\r\n\r\n<p>Băng theo dõi sẽ được dán vào da trẻ để ghi nhận những dấu hiệu quan trọng trong quá trình chăm sóc. Nếu có bất cứ tình huống cấp nào xảy ra thì bé sẽ được các y bác sĩ ngay lập tức hỗ trợ. </p>\r\n\r\n<h2><strong>2. Mua lồng ấp trẻ sơ sinh ở đâu?</strong></h2>\r\n\r\n<p>Trên thị trường hiện nay có rất nhiều địa chỉ bán<strong> lồng ấp trẻ sơ sinh</strong>, tuy nhiên lồng ấp của hãng Line 4 của hãng Olidef luôn là lựa chọn hàng đầu của các bệnh viện, đặc biệt các bệnh viện tuyến lớn. </p>\r\n\r\n<p><img alt=\"lồng ấp trẻ sơ sinh Olidef giúp chăm sóc trẻ tốt hơn\" src=\"https://tmhitech.vn/Uploads/images/news/long-ap-tre-so-sinh-2.jpg\" /></p>\r\n\r\n<p><em>Lồng ấp trẻ sơ sinh giúp chăm sóc trẻ sinh non, sinh thiếu tháng</em></p>\r\n\r\n<p>- Lồng ấp Olidef được trang bị những ứng dụng công nghệ mới nhất của nền y khoa trong việc chăm sóc trẻ</p>\r\n\r\n<p>- Thiết kế dễ sử dụng, các bác sĩ không mất quá nhiều thời gian mà hoàn toàn có thể thao tác nhanh chóng</p>\r\n\r\n<p>- Các thông số kỹ thuật đều hiển thị sắc nét trên màn hình giúp các bác sĩ có thể quan sát và đưa ra các biện pháp can thiệt kịp thời</p>\r\n\r\n<p>- Lớp đệm bên trong mềm mại, ấm áp tạo cảm giác cho trẻ nhỏ và đặc biệt không gây ra bất cứ tác dụng phụ nào cho làn da của trẻ sơ sinh</p>\r\n\r\n<p>- Thời gian bảo hành lâu, giá cả phù hợp. </p>\r\n\r\n<p>Công ty Cổ phần Thiết bị Công nghệ Cao TM có trụ sở đặt tại 42 Phương Mai, Đống Đa, Hà Nội là đơn vị độc quyền phân phối dòng <strong>lồng ấp trẻ sơ sinh</strong> của hãng Olidef. Chúng tôi luôn có mức giá cạnh tranh nhất thị trường, đặc biệt lên cấu hình và hỗ trợ vấn đề thanh toán một cách linh hoạt nhất. </p>\r\n\r\n<p>Ngoài <strong>lồng ấp trẻ sơ sinh,</strong> chúng tôi còn cung cấp <a href=\"http://www.allowcopy.com/open/?url=https:\\/\\/tmhitech.vn\\/noi-so-sinh\" target=\"_blank\"><strong>nôi sơ sinh</strong></a>, đèn chiếu vàng da… của hãng Olidef. Qúy khách hàng hãy truy cập vào địa chỉ website:<a href=\"http://www.allowcopy.com/open/?url=https:\\/\\/tmhitech.vn\" target=\"_blank\"><strong> tmhitech.vn</strong></a> để cập nhật thông tin, hoặc gọi cho chúng tôi theo số hotline:<strong> 098 969 7177</strong> để được tư vấn và giải đáp nhanh chóng nhất về sản phẩm. </p>', 3, NULL, '2020-09-19 13:55:03', '2020-09-24 03:15:11', 5);
INSERT INTO `posts` (`id`, `title`, `slug`, `summary`, `image_path`, `content`, `user_id`, `deleted_at`, `created_at`, `updated_at`, `post_cate_id`) VALUES
(19, 'NHỮNG MODEL ĐÈN MỔ ÁNH SÁNG LẠNH ĐƯỢC ƯA CHUỘNG TRONG BỆNH VIỆN HIỆN NAY', 'nhung-model-den-mo-anh-sang-lanh-duoc-ua-chuong-trong-benh-vien-hien-nay', 'Ánh sáng trong bệnh viện đóng vai trò quan trọng, nó giúp các bác sĩ có thể thực hiện ca mổ một cách chính xác nhất. Những model đèn mổ ánh sáng lạnh mà chúng tôi giới thiệu dưới đây là dòng sản phẩm được rất nhiều bệnh viện lớn trên thế giới tin tưởng lựa chọn. Cùng tìm hiểu về sản phẩm ngay nhé!', '/storage/photos/post/3/Kz7HtAB0hqPcSKpmFtu4.jpg', '<h2><strong>1. Đèn mổ ánh sáng lạnh - Hệ thống đèn mổ Led Series SL700 Daray </strong></h2>\r\n\r\n<p>Đây là dòng <em>đèn mổ bệnh viện</em> nổi bật hàng đầu của hãng Daray được thiết kế cung cấp ánh sáng có chất lượng cao, chùm ánh sáng ít bóng với chi phí vận hành ít nhất. Sản phẩm sẽ giúp cho phòng mổ sáng rõ nhất có thể và đặc biệt không hề tạo bóng ở bất cứ vị trí nào, tạo điểm nhìn thuận lợi hơn các ý bác sĩ. </p>\r\n\r\n<p><img alt=\"Đèn mổ ánh sáng lạnh Series SL 700 cao cấp\" src=\"https://tmhitech.vn/Uploads/images/news/den-mo-anh-sang-lanh-1.jpg\" /></p>\r\n\r\n<p>Đèn mổ ánh sáng lạnh Series SL 700 cao cấp</p>\r\n\r\n<p><br />\r\nMột số thông tin cơ bản về sản phẩm<br />\r\n• Nhiệt độ màu 4.300 K.<br />\r\n• Chao đèn đúc khuôn áp lực, phẳng, tạo ra một giải pháp chiếu sáng mạnh mẽ.<br />\r\n• Kiểm soát cường độ ánh sáng kỹ thuật số với 10 mức sáng và bộ nhớ tự động cho sự linh hoạt . <br />\r\n• Hệ thống nguồn cung cấp được gắn bên trong tránh lắp đặt phức tạp của hộp điều khiển gắn trên tường.<br />\r\n• Nguồn sáng phụ trợ cho các ca mổ bao gồm phẫu thuật nội soi.<br />\r\n• Tuổi thọ của nguồn sáng LED lên đến 40.000 giờ.<br />\r\n• Cánh tay treo chắc chắn với di chuyển dễ dàng và định vị chuẩn xác.<br />\r\n• Cánh tay có khả năng xoay 360 độ<br />\r\n• Không có bức xạ hồng ngoại hoặc tia cực tím.<br />\r\nĐặc biệt, sản phẩm có nhiều phiên bản khác nhau như: Treo tường, gắn trần, di động tạo ra sự linh động cao trong việc lựa chọn phiên bản phù hợp cho thiết kế phòng mổ. </p>\r\n\r\n<p>Xem chi tiết sản phẩm <a href=\"http://www.allowcopy.com/open/?url=https:\\/\\/tmhitech.vn\\/he-thong-den-mo-led-series-sl700-daray\" target=\"_blank\"><strong>tại đây</strong></a></p>\r\n\r\n<h2><strong>2. Đèn mổ Led SL 400 Camera HD Daray Medical</strong></h2>\r\n\r\n<p><em>Đèn mổ Led SL 400 Camera HD Daray Medical </em>là một phiên bản không thể bỏ qua khi bạn muốn mua dòng đèn led chiếu sáng trong bệnh viện. Sản phẩm với chất lượng tốt, giá thành vừa phải là sự lựa chọn mà bất cứ bệnh viện quy mô quốc tế nào cũng muốn sở hữu riêng cho mình.</p>\r\n\r\n<p><img alt=\"Đèn mổ ánh sáng lạnh SL 400 của hãng Daray\" src=\"https://tmhitech.vn/Uploads/images/news/den-mo-anh-sang-lanh-2.jpg\" /></p>\r\n\r\n<p><em>Đèn mổ ánh sáng lạnh SL 400 của hãng Daray</em></p>\r\n\r\n<p> Một số đặc điểm của sản phẩm: <br />\r\n• Bảng điều khiển kỹ thuật số.<br />\r\n• Chùm sáng mát và thoải mái .<br />\r\n• Trọng lượng nhẹ và đầu đèn mỏng cho ánh sáng tuyệt vời.<br />\r\n• Hệ thống chiếu sáng hình học đa thấu kính.<br />\r\n• Tiêu thụ năng lượng thấp.<br />\r\n• Khả năng hội tụ chùm tia cao <br />\r\n• Giảm thiểu bóng tối tuyệt vời.<br />\r\n• Thời gian làm việc 40.000 giờ từ các mô-đun LED.<br />\r\n• Tổng chi phí đầu tư thấp.<br />\r\n• Nhiệt độ màu 4.300 K. Tùy chọn camera tích hợp có sẵn.<br />\r\n• Có sẵn treo trần, tường và di động.<br />\r\nSản phẩm <em>đèn mổ cao cấp</em> cho ánh sáng có cường độ lớn, số lượng bóng ít và hiệu quả trong việc đầu tư, cũng như ít phải bảo dưỡng là thế mạnh của SL 400. </p>\r\n\r\n<p>>> Xem chi tiết sản phẩm đèn mổ SL 400 <a href=\"http://www.allowcopy.com/open/?url=https:\\/\\/tmhitech.vn\\/den-mo-led-sl400-camera-hd-daray-medical\" target=\"_blank\"><strong>tại đây</strong></a></p>\r\n\r\n<p>Trên đây chúng tôi đã giới thiệu đến bạn 2 dòng đèn led ánh sáng lạnh có chất lượng tốt, giá thành phải chăng đến từ thương hiệu Daray Medical. Nếu bạn muốn trang bị cho bệnh viện mình những model cao cấp này hãy liên hệ ngay với Công ty Cổ Phần Thiết Bị Công nghệ Cao TM nhà phân phối độc quyền của hãng Daray tại thị trường Việt Nam để được hưởng mức giá ưu đãi nhất. <br />\r\nChúng tôi rất mong muốn có cơ hội được hợp tác cùng với bạn để có thể mang những sản phẩm <strong>đèn</strong></p>', 3, NULL, '2020-09-19 14:00:52', '2020-09-24 03:15:05', 5),
(20, 'BƠM TIÊM ĐIỆN LOẠI NÀO TỐT NHẤT HIỆN NAY?', 'bom-tiem-dien-loai-nao-tot-nhat-hien-nay', 'Bơm tiêm điện là thiết bị y tế được dùng rất nhiều hiện nay tại các cơ sở y tế để có được chất lượng chăm sóc bệnh nhân tốt nhất. Vậy bơm tiêm điện nào nào tốt nhất hiện nay? Bài viết dưới đây chúng tôi sẽ giới thiệu đến bạn mẫu bơm tiêm bằng điện thông dụng cũng như địa chỉ uy tín chuyên nhập khẩu dòng sản phẩm này. Cùng tìm hiểu ngay để có cho mình sự lựa chọn phù hợp nhất nhé!', '/storage/photos/post/3/9pmAotHrGiAAYu345yZY.jpg', '<h2><strong>1. Bơm tiêm điện là gì?</strong></h2>\r\n\r\n<p>Bơm tiện điện là một loại máy bơm tiêm được thiết kế với kích thước khá lớn so với các loại bơm tiêm y tế thông thường. Chiếc bơm tiêm này được thiết kế giúp cho người dùng có thể điều chỉnh và cài đặt sẵn nhiều thông số khác nhau như liều lượng tiêm, tốc độ tiêm để đạt được tính chính xác cao nhất.</p>\r\n\r\n<p>Với chiếc <strong>bơm tiêm điện cao cấp</strong> sẽ giúp truyền dịch và tiêm thuốc cho bệnh nhân một cách dễ dàng mà không cần sự thao tác trực tiếp của các bác sĩ. Nhờ đó, các bác sĩ sẽ có nhiều thời gian hơn để làm việc khác cũng như chăm sóc được nhiều bệnh nhân hơn. </p>\r\n\r\n<p><img alt=\"Bơm tiêm điện giúp các bác sĩ bệnh nhân đạt kết quả tốt hơn\" src=\"https://tmhitech.vn/Uploads/images/news/bom-tiem-dien-2.jpg\" /></p>\r\n\r\n<p><em>Bơm tiêm điện giúp các bác sĩ bệnh nhân đạt kết quả tốt hơn</em></p>\r\n\r\n<h2><strong>2. Bơm tiện điện loại nào tốt nhất hiện nay?</strong></h2>\r\n\r\n<p>Trên thị trường hiện nay <strong>bơm tiêm điện</strong> chất lượng đến từ Đức, Ý, Nhật Bản… được các bệnh viện tin dùng. Trong đó <strong>bơm tiêm điện PG-907S Progetti</strong> của Ý luôn nhận được sự quan tâm đặc biệt. Sản phẩm có nhiều chức năng khác nhau như:</p>\r\n\r\n<p>- Giúp giới hạn tính chính xác tỷ lệ lưu lượng thuốc</p>\r\n\r\n<p>- Giới hạn được thể tích thuốc sử dụng khi tiêm truyền</p>\r\n\r\n<p>- Máy được thiết kế chi tiết và mang lại độ chính xác cao cho sản phẩm</p>\r\n\r\n<p>- Với chiếc<strong> bơm tiêm điện</strong> này thì các bác sĩ có thể tự điều chỉnh được tốc độ bơm, bơm nhanh hoặc bơm chậm tùy vào từng loại thuốc. </p>\r\n\r\n<p>- Máy còn được thiết kế giúp đếm được chính xác từng giọt nước truyền dịch, giúp thuận tiện hơn cho việc tiêm và truyền những loại thuốc đặc biệt. </p>\r\n\r\n<p>- Chiếc bơm được thiết kế khá nhỏ so với các loại máy khác nên giúp việc sử dụng và di chuyển lúc dùng được tốt nhất, máy cũng được cấu trúc giúp sử dụng với nhiều loại bơm tiêm và ống truyền dịch khác nhau. </p>\r\n\r\n<p>- Bơm có thể dùng để gắn ở đầu giường người bệnh hoặc có thể gắn vào thanh truyền dịch để thuận tiện cho việc sử dụng. </p>\r\n\r\n<p>Xem chi tiết về sản phẩm tại đây:<a href=\"http://www.allowcopy.com/open/?url=https:\\/\\/tmhitech.vn\\/bom-tiem-dien-pg-907s-progetti\" target=\"_blank\"> https://tmhitech.vn/bom-tiem-dien-pg-907s-progetti</a></p>\r\n\r\n<p><img alt=\"Bơm tiêm điện cao cấp Progetti (Ý) sự lựa chọn hàng đầu của bệnh viện cao cấp\" src=\"https://tmhitech.vn/Uploads/images/news/bom-tiem-dien-1.jpg\" /></p>\r\n\r\n<p><em>Bơm tiêm điện cao cấp Progetti (Ý) sự lựa chọn hàng đầu của bệnh viện cao cấp</em></p>\r\n\r\n<h2><strong>3. Địa chỉ mua bơm tiêm điện giá tốt nhất thị trường</strong></h2>\r\n\r\n<p>Hiện nay trên thị trường có rất nhiều đơn vị phân phối <strong>bơm tiêm điện</strong>, tuy nhiên để đảm bảo được sản phẩm bơm tiêm điện có chất lượng và mức giá tốt nhất thì bạn nên tìm mua ở đơn vị uy tín. </p>\r\n\r\n<p>Nếu bạn có nhu cầu mua các loại bơm tiên điện nhập khẩu chính hãng và giá tốt từ hãng Progetti thì hãy liên hệ trực tiếp ngay cho <strong>Công ty Cổ phần Thiết bị Công nghệ Cao TM</strong> bạn nhé! Chúng tôi là đơn vị chuyên cung cấp các thiết bị y tế bệnh viện từ các hãng nổi tiếng, chúng tôi cam kết mang đến cho khách hàng sản phẩm đảm bảo về chất lượng và giá trẻ nhất thị trường. </p>\r\n\r\n<p>Ngoài việc cung cấp<strong> bơm tiêm điện</strong>, chúng tôi còn rất nhiều các mặt hàng khác nhau bạn có thể tham khảo thêm như: Bàn mổ, đèn mổ, máy thở, monitor theo dõi bệnh nhân, <a href=\"http://www.allowcopy.com/open/?url=https:\\/\\/tmhitech.vn\\/3-tieu-chi-giup-ban-mua-duoc-may-sieu-am-chat-luong\" target=\"_blank\"><strong>máy siêu âm</strong></a>, máy chụp Xquang...</p>\r\n\r\n<p><strong>Công ty Cổ phần Thiết bị Công nghệ Cao TM</strong><br />\r\nTrụ sở: 12B/2, 781 Hồng Hà, Quận Hoàn Kiếm, Hà Nội, Việt Nam.<br />\r\nVăn phòng Hà Nội: 42 Phương Mai, Đống Đa, Hà Nội<br />\r\nHotline: 098 969 7177<br />\r\nEmail: <a href=\"http://www.allowcopy.com/open/?url=https:\\/\\/tmhitech.vn\\/cdn-cgi\\/l\\/email-protection\">[email protected]</a></p>', 3, NULL, '2020-09-19 14:02:14', '2020-09-24 03:08:36', 5);
-- --------------------------------------------------------
--
-- Cấu trúc bảng cho bảng `post_cates`
--
CREATE TABLE `post_cates` (
`id` bigint(20) UNSIGNED NOT NULL,
`name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`slug` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`user_id` int(11) DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Đang đổ dữ liệu cho bảng `post_cates`
--
INSERT INTO `post_cates` (`id`, `name`, `slug`, `user_id`, `created_at`, `updated_at`, `deleted_at`) VALUES
(2, 'xxxzzz', 'xxxzzz', 2, '2020-09-13 09:30:09', '2020-09-19 03:04:44', '2020-09-19 03:04:44'),
(3, 'zzzzzzzzzzz', '', 0, NULL, '2020-09-19 03:04:47', '2020-09-19 03:04:47'),
(4, 'Tin tức y tế', 'tin-tuc-y-te', 3, '2020-09-19 03:05:09', '2020-09-19 03:05:09', NULL),
(5, 'Tin tức nội bộ', 'tin-tuc-noi-bo', 1, '2020-09-19 03:05:20', '2021-03-10 15:42:11', NULL),
(6, '<NAME>', 'le-quang-khai', 1, '2021-01-17 09:46:55', '2021-01-25 02:33:51', '2021-01-25 02:33:51');
-- --------------------------------------------------------
--
-- Cấu trúc bảng cho bảng `products`
--
CREATE TABLE `products` (
`id` bigint(20) UNSIGNED NOT NULL,
`name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`slug` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`model` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`made_by` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`des` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`content` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`user_id` int(11) DEFAULT NULL,
`category_id` int(11) DEFAULT NULL,
`brand_id` int(11) DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
`image_path` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`price` int(25) NOT NULL,
`inventory` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Đang đổ dữ liệu cho bảng `products`
--
INSERT INTO `products` (`id`, `name`, `slug`, `model`, `made_by`, `des`, `content`, `user_id`, `category_id`, `brand_id`, `created_at`, `updated_at`, `deleted_at`, `image_path`, `price`, `inventory`) VALUES
(27, 'fadfas', 'fadfas', 'dafsa', 'asdsdf', '<p>dfasdfa</p>', '<p>asfasfd</p>', 1, 29, 2, '2020-09-10 14:28:10', '2020-09-25 02:21:50', '2020-09-25 02:21:50', '', 10000000, 100),
(29, 'Máy điện xung elektra 2 eme', 'may-dien-xung-elektra-2-eme', NULL, NULL, '<ul>\r\n <li>\r\n <p>Màn hình rộng: Màn hình cảm ứng màu 6 ”.</p>\r\n </li>\r\n <li>\r\n <p>Hơn 36 dạng sóng : Tần số thấp và trung bình</p>\r\n </li>\r\n <li>\r\n <p>Điện áp cao, Microcurrents, APS và các thiết bị khác.</p>\r\n </li>\r\n <li>\r\n <p> Đường cong I / T và sau khi xử lý.</p>\r\n </li>\r\n <li>\r\n <p>Tệp bệnh nhân để lưu trữ tất cả dữ liệu</p>\r\n </li>\r\n <li>\r\n <p> Kết nối giữa EleKtra và K-Sound để điều trị kết hợp siêu âm điện trị liệu.</p>\r\n </li>\r\n <li>\r\n <p> Kết nối giữa EleKtra và Hút chân không cho các phương pháp điều trị kết hợp với liệu pháp chân không.</p>\r\n </li>\r\n <li>\r\n <p>Thẻ thông minh để lưu trữ nhiều phương pháp điều trị cá nhân và tập tin bệnh nhân.</p>\r\n </li>\r\n <li>\r\n <p> Phần mềm có thể nâng cấp</p>\r\n </li>\r\n</ul>', '<h2><strong>Giới thiệu về máy điện xung Elektra 2 Eme</strong></h2>\r\n\r\n<p><strong><a href=\"http://www.allowcopy.com/open/?url=https:\\/\\/tmhitech.vn\\/may-dien-xung-elektra-2-eme\" target=\"_blank\">Máy điện xung Elektra 2 Eme</a></strong> là một thiết bị trị liệu hoàn toàn mới cho phép truy cập với các dạng sóng và chương trình bằng các ảnh chụp trên màn hình khác nhau:<br />\r\nbạn có thể chọn từ danh sách dạng sóng, điều trị giao thức hoặc các ứng dụng khác nhau trên mọi bộ phận cơ thể.</p>\r\n\r\n<p>Bạn có thể sử dụng cùng một chương trình trong các kênh khác nhau hoặc sửa đổi chúng, sử dụng chúng song song, thay thế chúng, áp dụng chúng đồng thời, đồng bộ hóa chúng hoặc áp dụng chúng theo trình tự.</p>\r\n\r\n<p>Những tác động chính là tạo ra kích thích điện đến hệ thống thần kinh cơ, để hệ thống thần kinh phản ứng chính xác trong các phản ứng tự nguyện và không tự nguyện bằng hoạt động co lại; giảm co cứng bằng cách kích thích các chất chủ vận và đối kháng; phát hành qua da của thuốc các chất vào da (ionophoresis);cải thiện tính di động chung bằng cơ học kéo dài cơ bắp; cải thiện chữa lành vết thương bằng cách tăng lưu thông tại khu vực điều trị; giảm kích thước phù nề nhờ hoạt động của bơm cơ.</p>\r\n\r\n<h2><strong>Tính năng nổi bật của máy điện xung Elektra 2 Eme</strong></h2>\r\n\r\n<p>- Màn hình rộng: Màn hình cảm ứng màu 6 ”.</p>\r\n\r\n<p>- Hơn 36 dạng sóng : Tần số thấp và trung bình</p>\r\n\r\n<p>- Điện áp cao, Microcurrents, APS và các thiết bị khác.</p>\r\n\r\n<p>- Hơn 100 đề xuất điều trị được nhóm lại theo các khu vực giải phẫu, các nhánh chuyên môn và dạng sóng.</p>\r\n\r\n<p>- Đường cong I / T và sau khi xử lý.</p>\r\n\r\n<p>- Tệp bệnh nhân để lưu trữ tất cả dữ liệu, điều trị và lịch sử thông tin ngắn của bệnh nhân.</p>\r\n\r\n<p>- Nút trợ giúp, Mỗi gợi ý điều trị cho thấy chỉ dẫn về cách sử dụng và nơi đặt các điện cực.</p>\r\n\r\n<p>- Kết nối giữa EleKtra và K-Sound để điều trị kết hợp siêu âm điện trị liệu.</p>\r\n\r\n<p>- Kết nối giữa EleKtra và Hút chân không cho các phương pháp điều trị kết hợp với liệu pháp chân không.</p>\r\n\r\n<p>- Thẻ thông minh để lưu trữ nhiều phương pháp điều trị cá nhân và tập tin bệnh nhân.</p>\r\n\r\n<p>- Phần mềm có thể nâng cấp</p>\r\n\r\n<h3><strong>Thông số kỹ thuật của ,áy điện xung Elektra 2 Eme</strong></h3>\r\n\r\n<p>- Nguồn điện chính : 230 Vca, 50-60 Hz ± 10%</p>\r\n\r\n<p>- Hấp thụ điện năng chính tối đa : 30 VA</p>\r\n\r\n<p>- Đôi bị trễ loại : 315 mA-T</p>\r\n\r\n<p>- Đồ họa màu LCD có đèn nền</p>\r\n\r\n<p>- Màn hình cảm ứng 6 ”</p>\r\n\r\n<p>- Thời gian điều trị có thể điều chỉnh 1 - 99 phút</p>\r\n\r\n<p>- Hoạt động: điện áp không đổi</p>\r\n\r\n<p>- Dòng điện giao thoa lên đến 4.000 HZ</p>\r\n\r\n<p>- Điện áp cao 500V hiện tại</p>\r\n\r\n<p>- Dòng liên tục Ionthophoresis giới hạn đến 50 mA</p>\r\n\r\n<p>- Dòng điện cực đại với 100 mA</p>\r\n\r\n<p>- Công suất đỉnh 100 V</p>\r\n\r\n<p>- Giao thức được lưu trữ 250</p>\r\n\r\n<p>- Khả năng cập nhật phần mềm </p>\r\n\r\n<p>- Trọng lượng 4,4 Kg</p>\r\n\r\n<p>- Kích thước 39 x 14 x 30</p>\r\n\r\n<p>Để đặt mua sản phẩm <strong>máy điện xung Elektra 2 Eme</strong>, quý khách hàng hãy liên hệ ngay với chúng tôi theo số hotline: <strong>098 969 7177 </strong>để được tư vấn và hỗ trợ nhanh nhất về sản phẩm. Ngoài thiết bị máy xung điện, công ty chúng tôi còn cung cấp rất nhiều các thiết bị bệnh viện khác như: bàn mổ, đèn mổ, lồng ấp trẻ sơ sinh, máy siêu âm... của các hãng uy tín trên thế giới với chất lượng tốt nhất và giá thành cạnh tranh nhất. </p>', 1, 49, 7, '2020-09-25 03:00:38', '2020-12-31 09:53:21', NULL, '/storage/photos/product/3/qugautTJTAUd1awEYZgq.jpg', 10000000, 100),
(30, 'MÁY ĐO ĐIỆN TIM GẮNG SỨC CARDIOPART 12 ECG AMEDTEC', 'may-do-dien-tim-gang-suc-cardiopart-12-ecg-amedtec', 'CardioPart 12 ECG', 'Đức', '<ul>\r\n <li>\r\n <p>Thiết bị ghi CardioPart 12 ECG có thể kết nối USB hoặc Bluetoot, </p>\r\n </li>\r\n <li>\r\n <p>Lý tưởng cho y học thể thao nhờ có thể truyền dữ liệu không dây </p>\r\n </li>\r\n <li>\r\n <p>Kiểm soát tùy chọn máy chạy bộ hoặc máy đo tốc độ xe đạp và máy đo tiếng vang </p>\r\n </li>\r\n <li>\r\n <p>Hoạt động bằng một nút bấm và người dùng được hướng dẫn cho việc sử dụng chương trình</p>\r\n </li>\r\n <li>\r\n <p>Kiểm tra chất lượng ghi của từng điện cực trước khi tiến hành kiểm tra</p>\r\n </li>\r\n <li>\r\n <p>Kiểm tra căng thẳng ECG có thể chạy hoàn toàn tự động -> mà không cần bất kỳ sự can thiệp nào của người vận hành</p>\r\n </li>\r\n <li>\r\n <p> Chế độ xem lại toàn bộ ECG 12 đạo trình có phân tích sự bất thường trong các lần đo</p>\r\n </li>\r\n <li>\r\n <p>Kết quả cuối cùng tự động có thể chỉnh sửa, các khối văn bản được xác định trước</p>\r\n </li>\r\n</ul>', '<h2><strong>Máy đo điện tim gắng sức CardioPart 12 ECG Amedtec</strong></h2>\r\n\r\n<p><a href=\"http://www.allowcopy.com/open/?url=https:\\/\\/tmhitech.vn\\/may-do-dien-tim-gang-suc-cardiopart-12-ecg-amedtec\" target=\"_blank\">Máy đo điện tim gắng sức CardioPart 12 ECG Amedtec</a> với quy trình làm việc tối ưu, nhanh chóng, chính xác và đơn giản. </p>\r\n\r\n<p>- Thiết bị ghi CardioPart 12 ECG có thể kết nối USB hoặc Bluetoot, </p>\r\n\r\n<p>- Lý tưởng cho y học thể thao nhờ có thể truyền dữ liệu không dây (ví dụ: máy chạy bộ)</p>\r\n\r\n<p>- Kiểm soát tùy chọn máy chạy bộ hoặc máy đo tốc độ xe đạp và máy đo tiếng vang </p>\r\n\r\n<p>- Hoạt động bằng một nút bấm và người dùng được hướng dẫn cho việc sử dụng chương trình</p>\r\n\r\n<p>- Kiểm tra chất lượng ghi của từng điện cực trước khi tiến hành kiểm tra</p>\r\n\r\n<p>- Kiểm tra căng thẳng ECG có thể chạy hoàn toàn tự động -> mà không cần bất kỳ sự can thiệp nào của người vận hành</p>\r\n\r\n<p>- Chế độ xem lại toàn bộ ECG 12 đạo trình có phân tích sự bất thường trong các lần đo</p>\r\n\r\n<p>- Kết quả cuối cùng tự động có thể chỉnh sửa, các khối văn bản được xác định trước</p>\r\n\r\n<p>- Chế độ xem ECG trên toàn mạng theo thời gian thực cho tất cả người dùng được ủy quyền sử dụng của AMEDTEC ECGpro ® Online</p>\r\n\r\n<p>- Các kiểm tra bệnh nhân có thể được xác định từ các chương trình chẩn đoán khác nhau</p>\r\n\r\n<p>- Nhiều lựa chọn định dạng in và có thể dễ dàng thêm các định dạng khác</p>\r\n\r\n<p>- Được tích hợp trong hệ thống quản lý dữ liệu AMEDTEC ECGpro ®</p>\r\n\r\n<p><img alt=\"Máy điện tim gắng sức CardioPart 12 ECG Amedtec\" src=\"https://tmhitech.vn/Uploads/images/products/may-dien-tim-gang-suc-cardio-part-12-eeg-amedtec.jpg\" /></p>\r\n\r\n<p><em>Máy điện tim gắng sức CardioPart 12 ECG Amedtec</em></p>\r\n\r\n<h3><strong>Phụ kiện/linh kiện</strong></h3>\r\n\r\n<p>Tiêu chuẩn :</p>\r\n\r\n<p>- Cáp bệnh nhân </p>\r\n\r\n<p>- Máy chính PC</p>\r\n\r\n<p>- Máy chạy bộ hoặc máy đo áp suất</p>\r\n\r\n<p>- Xe đẩy</p>\r\n\r\n<p>- Theo dõi huyết áp</p>\r\n\r\n<p><strong>PHỤ KIỆN</strong></p>\r\n\r\n<p>Điện cực dính</p>\r\n\r\n<p>Để đặt mua <strong>máy đo điện tim gắng sức CardioPart 12 ECG Amedtec </strong>quý khách hãy liên hệ ngay với Công ty Cổ phần Thiết bị Công nghệ Cao TM theo số hotline<strong>: 098 969 7177 </strong>để được tư vấn về sản phẩm một cách nhanh chóng nhất. Đặc biệt, <a href=\"http://www.allowcopy.com/open/?url=https:\\/\\/tmhitech.vn\" target=\"_blank\"><strong>tmhitech.vn </strong></a>cung cấp đa dạng các sản phẩm thiết bị bệnh viện của đầy đủ các khoa phòng, vì vậy bạn cần đặt mua bất cứ sản phẩm nào hãy liên hệ ngay với chúng tôi nhé!</p>', 3, 42, 4, '2020-09-28 03:37:56', '2020-09-28 03:37:56', NULL, '/storage/photos/product/3/uJdVVvR1c9Fd6TImWBhl.jpg', 10000000, 100),
(31, 'MÁY ĐIỆN TIM 3 KÊNH KỸ THUẬT SỐ EPG VIEW PROGETTI', 'may-dien-tim-3-kenh-ky-thuat-so-epg-view-progetti', 'Epg View', 'Ý', NULL, '<h2><strong>Thông số kỹ thuật của máy điện tim 3 kênh kỹ thuật số EPG VIEW Progetti </strong></h2>\r\n\r\n<p>- Màn hình LCD: 320x240 pixel, 1 hoặc 3 kênh ở định dạng chuẩn hoặc cabrera với cài đặt đường nền</p>\r\n\r\n<p>- Máy in nhiệt độ phân giải cao: (8 chấm / mm): bản 1 hoặc 3 kênh thời gian thực với khả năng in bằng lưới ô vuông milimét: </p>\r\n\r\n<p>- Ghi: bằng tay hoặc tự động</p>\r\n\r\n<p>- Bộ nhớ: 10 giây cho mỗi đạo trình</p>\r\n\r\n<p>- Dừng hình: với bộ nhớ cuộn để xem và bản sao của các tín hiệu thu được</p>\r\n\r\n<p>- Bộ lọc kỹ thuật số: để loại bỏ rung cơ, đường dây điện và làm nhiễu loạn đường nền</p>\r\n\r\n<p>- Nguồn điện: tích hợp Pin Ni-Mh với công suất cao và thời gian sạc nhanh</p>\r\n\r\n<p>- Vận hành: rất đơn giản thông qua các phím và menu đã được xác định trước</p>\r\n\r\n<p>- Thực sự di động: với kích thước nhỏ và trọng lượng nhẹ</p>\r\n\r\n<p>- Bộ xử lý RISC để xử lý tín hiệu số hoàn toàn</p>\r\n\r\n<h2><strong>Đặc điểm kỹ thuật</strong></h2>\r\n\r\n<p>- Nguồn điện: Pin Ni-MH có thể sạc lại, 2Ah</p>\r\n\r\n<p>- Nguồn điện lưới: 220 V ~ ± 10%; 50 - 60 Hz; Tối đa 150 mA; cách ly CL2 B</p>\r\n\r\n<p>- Pin tự động: 2,5 giờ</p>\r\n\r\n<p>- Phần ứng dụng: kiểu CF</p>\r\n\r\n<p>- Trở kháng đầu vào:> 100 MΩ</p>\r\n\r\n<p>- Tần số đáp ứng: 0,05: 145 Hz</p>\r\n\r\n<p>- CMRR:> 100 dB, hằng số thời gian:> 3,2 giây</p>\r\n\r\n<p>- Thu nhận: 12 bit 800 mẫu / giây / kênh-isochrone</p>\r\n\r\n<p>- Đạo trình: 12 tiêu chuẩn hoặc Cabrera</p>\r\n\r\n<p>- Độ nhạy: 5 mm / mV; 10 mm / mV; 20 mm / mV ± 5%</p>\r\n\r\n<p>- Tốc độ cuộn: 5 mm / giây; 10 mm / giây; 25 mm / giây; 50 mm / giây</p>\r\n\r\n<p>- Bộ nhớ tín hiệu: 10 giây cho mỗi kênh</p>\r\n\r\n<p>- Máy in : máy in nhiệt 8 pixel / mm, giấy 58 mm</p>\r\n\r\n<p>- Hiển thị: màn hình LCD TFT 4.7" 320x240 pixel, đèn nền CFL </p>\r\n\r\n<p>- Bộ lọc: rung cơ 35 Hz kỹ thuật số; nhiễu đường dây điện 50 Hz 60 Hz kỹ thuật số; lọc thông cao 0,5 Hz kỹ thuật số</p>\r\n\r\n<p>- Bảo vệ khử rung tim: nội bộ</p>\r\n\r\n<p>- Đồng hồ thời gian thực (chỉ chế độ giải thích)</p>\r\n\r\n<p>- Kích thước: 240x160x65 mm</p>\r\n\r\n<p>- Trọng lượng: 1500 gr</p>\r\n\r\n<p>- Vỏ: IP 20</p>\r\n\r\n<p>- Nhiệt độ hoạt động: + 10 ° C ~ 40 ° C</p>\r\n\r\n<p>- Nhiệt độ bảo quản: -10 ° C ~ 40 ° C</p>\r\n\r\n<p>- Độ ẩm tương đối cho hoạt động: 25% ~ 95% mà không ngưng tụ</p>\r\n\r\n<p>- Các tiêu chuẩn phù hợp: 93/42 / CEE; EN60601-1; EN60601-1-2, IEC601-2-25</p>\r\n\r\n<h3><strong>Phụ kiện tiêu chuẩn</strong></h3>\r\n\r\n<p>- Cáp bệnh nhân</p>\r\n\r\n<p>- Bộ điện cực</p>\r\n\r\n<p>- Gel - Giấy cuộn </p>\r\n\r\n<p>- Dây cáp nguồn</p>\r\n\r\n<p>- Hướng dẫn sử dụng</p>\r\n\r\n<p>- Hộp đựng (Chọn thêm)</p>', 1, 53, 5, '2020-09-28 03:42:34', '2020-12-31 09:52:49', NULL, '/storage/photos/product/3/LinIgJ6uEOCbfXvSBaNx.jpg', 10000000, 100),
(32, 'MÁY SOI CỔ TỬ CUNG KP 3000 KAPS', 'may-soi-co-tu-cung-kp-3000-kaps', 'KP 3000', 'Đức', '<ul>\r\n <li>Ánh sáng LEDone mạnh mẽ</li>\r\n <li>Độ phóng đại đơn hoặc bộ chỉnh độ phóng đại 3 bước</li>\r\n <li>Lựa chọn giữa ống thẳng hoặc nghiêng</li>\r\n <li>Ống kính và thị kính hoán đổi cho nhau</li>\r\n <li>T-xử lý có thể được gắn trên cả hai mặt</li>\r\n <li>Bộ lọc màu xanh lá cây Swing-in</li>\r\n</ul>', '<h2><strong>Đặc điểm nổi bật của máy soi cổ tử cung KP 3000 Kaps</strong></h2>\r\n\r\n<p><a href=\"http://www.allowcopy.com/open/?url=https:\\/\\/tmhitech.vn\\/may-soi-co-tu-cung-kp-3000-kaps\" target=\"_blank\"><strong>Máy soi cổ tử cung KP 3000 Kaps</strong></a> trên thiết bị di động là máy soi cổ tử cung lý tưởng cho việc chẩn đoán bệnh hàng ngày. Cùng với các phụ kiện của, máy đáp ứng các tiêu chuẩn cao về chất lượng và thuyết phục người dùng với giá trị hấp dẫn của sản phẩm và giúp tiết kiệm chi phí một cách tối đa. </p>\r\n\r\n<p><strong>Máy soi cổ tử cung KP 3000 Kaps </strong>nổi bật với chức năng xử lý thuận tiện và thời gian nhanh chóng, sự linh hoạt của máy trong việc sử dụng thực hành y tế hàng ngày, và phạm vi rộng lớn của các phụ kiện. Dòng sản phẩm này sẽ hỗ trợ tích cực vào việc chẩn đoán hình ảnh cũng như giúp các bác sĩ đưa ra giải pháp can thiệp điều trị bệnh kịp thời cho bệnh nhân. </p>\r\n\r\n<p><img alt=\"Máy soi cổ tử cung KP 3000 Kaps chất lượng cao \" src=\"https://tmhitech.vn/Uploads/images/products/may-soi-co-tu-cung-kp-3000-kaps-3.jpg\" style=\"width:489px\" /></p>\r\n\r\n<p><em>Máy soi cổ tử cung KP 3000 Kaps chất lượng cao </em></p>\r\n\r\n<h3><strong>Một số ưu điểm của sản phẩm</strong></h3>\r\n\r\n<p>- Ánh sáng LEDone mạnh mẽ</p>\r\n\r\n<p>- Độ phóng đại đơn hoặc bộ chỉnh độ phóng đại 3 bước</p>\r\n\r\n<p>- Lựa chọn giữa ống thẳng hoặc nghiêng</p>\r\n\r\n<p>- Ống kính và thị kính hoán đổi cho nhau</p>\r\n\r\n<p>- T-xử lý có thể được gắn trên cả hai mặt</p>\r\n\r\n<p>- Bộ lọc màu xanh lá cây Swing-in</p>\r\n\r\n<p><img alt=\"Máy soi cổ tử cung có ống kính hiển thị sắc nét các hình ảnh\" src=\"https://tmhitech.vn/Uploads/images/products/may-soi-co-tu-cung-kp-3000-kaps-2.jpg\" style=\"width:489px\" /></p>\r\n\r\n<p><em><a href=\"http://www.allowcopy.com/open/?url=https:\\/\\/tmhitech.vn\\/may-soi-co-tu-cung\" target=\"_blank\">Máy soi cổ tử cung</a> có ống kính hiển thị sắc nét các hình ảnh</em></p>\r\n\r\n<p><strong>Cấu hình cung cấp</strong></p>\r\n\r\n<p>01 Chân đẩy gồm đèn LED</p>\r\n\r\n<p>01 giá đỡ kính soi cổ tử cung</p>\r\n\r\n<p>01 tay cầm hoàn chỉnh</p>\r\n\r\n<p>01 Bộ chuyển đổi ánh sáng lạnh với bộ lọc màu xanh lục</p>\r\n\r\n<p>01 thiết bị phóng đại có thể thay đổi gấp 3 lần</p>\r\n\r\n<p>01 Ống nhòm nghiêng 450, f = 125mm</p>\r\n\r\n<p>01 Thị kính điều chỉnh, WF 20xV</p>\r\n\r\n<p>01 Mục tiêu f = 300mm</p>\r\n\r\n<p>01 Phủ bụi</p>\r\n\r\n<p>Phụ kiện lựa chọn mua thêm</p>\r\n\r\n<p>Bộ tách chùm tích hợp với C-mount</p>\r\n\r\n<p>Máy quay video HD Sentech loại HD223 với kết nối HDMI</p>\r\n\r\n<p>Để đặt hàng <strong>máy soi cổ tử cung KP 3000 Kaps</strong> quý khách hàng hãy gọi cho chúng tôi theo số hotline:<strong> 098 969 7177</strong> để được hỗ trợ nhanh nhất. Chúng tôi luôn có mức giá cạnh tranh nhất cùng với việc nhiều ưu đãi hấp dẫn dành cho khách hàng. Vì vậy, nếu bạn cần tìm một đơn vị phân thiết bị y tế chính hãng đừng quên liên hệ với <strong>Công ty Cổ Phần Thiết bị Công nghệ Cao TM </strong>ngay nhé!</p>', 1, 51, 6, '2020-09-28 03:51:08', '2020-12-31 09:52:20', NULL, '/storage/photos/product/3/vQjWV9cI90sclY13z2HL.jpg', 10000000, 100),
(33, 'ARES MR CARDIO MS WESTFALIA', 'ares-mr-cardio-ms-westfalia', 'Ares Mr Cardio', 'Đức', '<ul>\r\n <li>X-ray system with large power reserve</li>\r\n <li>Ceiling mount and LCD monitors</li>\r\n <li>Image intensifier of 9'' and 13''</li>\r\n <li>Digital CCD-camera 1kx1k</li>\r\n <li>Air cooling system Dual cooling</li>\r\n <li>C-arm E-motion system</li>\r\n <li>Power reserve system Dual Power</li>\r\n <li>Remote control</li>\r\n</ul>', '<p>- X-ray system with large power reserve</p>\r\n\r\n<p>- Ceiling mount and LCD monitors</p>\r\n\r\n<p>- Image intensifier of 9'' and 13''</p>\r\n\r\n<p>- Digital CCD-camera 1kx1k</p>\r\n\r\n<p>- Air cooling system Dual cooling</p>\r\n\r\n<p>- C-arm E-motion system</p>\r\n\r\n<p>- Power reserve system Dual Power</p>\r\n\r\n<p>- Remote control</p>', 1, 48, 19, '2020-10-10 15:19:14', '2021-03-11 01:38:31', NULL, '/storage/photos/product/3/K9SFq1uz49hJjHvmGnF4.jpg', 10000000, 0),
(34, 'HỆ THỐNG SIÊU ÂM ĐEN TRẮNG XÁCH TAY KỸ THUẬT SỐ KUP-101', 'he-thong-sieu-am-den-trang-xach-tay-ky-thuat-so-kup-101', 'KUP-101', 'Đức', '<ul>\r\n <li>Tiêu chuẩn chất lượng Châu Âu</li>\r\n <li>Thiết kế thông minh và tiện lợi</li>\r\n <li>Tối ưu hóa, công việc dễ dàng</li>\r\n <li>Hiệu suất cao nhất mặc dù thiết kế nhỏ gọn</li>\r\n <li>Sử dụng di động với pin tích hợp</li>\r\n <li>Kết nối với hai đầu dò</li>\r\n <li>Thời gian hoạt động lớn</li>\r\n <li>Tiêu thụ điện năng nhỏ</li>\r\n <li>Màn hình hiển thị có độ phân giải cao</li>\r\n <li>Nặng chỉ 6,5kg</li>\r\n <li>Bảo hành 12 tháng</li>\r\n</ul>', '<h2><strong>Hệ thống siêu âm đen trắng xách tay kỹ thuật số KUP-101</strong></h2>\r\n\r\n<p>- <a href=\"http://www.allowcopy.com/open/?url=https:\\/\\/tmhitech.vn\\/he-thong-sieu-am-den-trang-xach-tay-ky-thuat-so-kup-101\" target=\"_blank\">Hệ thống siêu âm đen trắng xách tay kỹ thuật số KUP-101 </a>đạt tiêu chuẩn chất lượng Châu Âu</p>\r\n\r\n<p>- Thiết kế thông minh và tiện lợi</p>\r\n\r\n<p>- Tối ưu hóa, công việc dễ dàng</p>\r\n\r\n<p>- Hiệu suất cao nhất mặc dù thiết kế nhỏ gọn</p>\r\n\r\n<p>- Sử dụng di động với pin tích hợp</p>\r\n\r\n<p>- Kết nối với hai đầu dò</p>\r\n\r\n<p>- Tùy chọn bộ nhớ khác nhau: Ổ cứng / USB / giao diện DICOM</p>\r\n\r\n<p>- Đầu dò Convex, tuyến tính, microconvex, và âm đạo (128 phần tử)</p>\r\n\r\n<p><img alt=\"Hệ thống siêu âm đen trắng xách tay kỹ thuật số KUP - 101 chẩn đoán chính xác \" src=\"https://tmhitech.vn/Uploads/images/products/he-thong-sieu-am-den-trang-xach-tay-ky-thuat-so-kup-101-cao-cap-1.jpg\" /></p>\r\n\r\n<p><em>Hệ thống siêu âm đen trắng xách tay kỹ thuật số KUP - 101 chẩn đoán chính xác </em></p>\r\n\r\n<h3><strong>Tính năng, hiệu suất của hệ thống siêu âm đen trắng xách tay kỹ thuật số KUP-101</strong></h3>\r\n\r\n<p><strong>Hệ thống siêu âm đen trắng xách tay kỹ thuật số KUP-101</strong>, có giá cả phải chăng và được thiết kế để sử dụng di động. KUP-101 được cấp bằng sáng chế, công nghệ kỹ thuật số để cung cấp hình ảnh độ phân giải cao với độ chính xác cao nhất cho chẩn đoán. Bàn phím sử dụng và làm việc hiệu quả tạo điều kiện cho hoạt động hàng ngày cho người sử dụng.</p>\r\n\r\n<p>Thiết kế sáng tạo của thiết bị di động đảm bảo trọng lượng nhẹ chỉ 6,5 kg, bao gồm pin tích hợp. KUP-101 là đối tác tin cậy của bạn bất cứ nơi nào bạn muốn sử dụng nó. KUP-101 cung cấp các tùy chọn lưu trữ khác nhau chẳng hạn như ổ đĩa, USB và cho phép truyền dữ liệu với HIS sử dụng DICOM 3.0.</p>\r\n\r\n<p><img alt=\"Hệ thống siêu âm giúp chẩn đoán nhiều bệnh lý khác nhau\" src=\"https://tmhitech.vn/Uploads/images/products/he-thong-sieu-am-den-trang-xach-tay-ky-thuat-so-kup-101-cao-cap-2.jpg\" /></p>\r\n\r\n<p><em>Hệ thống siêu âm giúp chẩn đoán nhiều bệnh lý khác nhau</em></p>\r\n\r\n<h3><strong>Thông số kỹ thuật của sản phẩm</strong></h3>\r\n\r\n<p>Chế độ hiển thị B, B/B, 4B, B/M, M<br />\r\nMàn hình LCD, độ phân giải: 800 x 600<br />\r\nCông suất âm thanh Điều chỉnh 20-100%<br />\r\nNguồn cung cấp: 200 – 240 V~, 50/60 Hz<br />\r\nCông suất tiêu thụ 80 VA<br />\r\nHoạt động liên tục ≥ 8 giờ<br />\r\nPhần mềm Thai kỳ, tiết niệu, tim mạch<br />\r\nĐánh dấu cơ thể 100 kiểu, dấu hiệu cho vị trí đầu dò<br />\r\nKích thước 440 mm x 420 mm x 355 mm (H x W x D)<br />\r\nCân nặng 6,5 kg</p>\r\n\r\n<p><strong>Hệ thống siêu âm đen trắng xách tay kỹ thuật số KUP-101 </strong>hiện đang được <strong>Công ty Cổ Phần Thiết Bị Công nghệ Cao TM </strong>phân phối tại thị trường Việt Nam có chất lượng tốt nhất và giá thành cạnh tranh nhất. Hãy liên hệ ngay với chúng tôi theo số hotline: <strong>098 969 7177</strong> để được tư vấn và hỗ trợ nhanh nhất về sản phẩm. Rất mong có cơ hội được hợp tác cùng các quý khách hàng. </p>\r\n\r\n<p>Xem thêm</p>\r\n\r\n<p><a href=\"http://www.allowcopy.com/open/?url=https:\\/\\/tmhitech.vn\\/he-thong-sieu-am-den-trang-ky-thuat-so-kut-201\" target=\"_blank\">Hệ thống siêu âm đen trắng kỹ thuật số KUT-201</a></p>', 1, 49, 18, '2020-10-10 15:23:02', '2020-12-31 09:52:05', NULL, '/storage/photos/product/3/tIc1tk0dPfGDQg0Amsvk.jpg', 10000000, 100),
(35, 'HỆ THỐNG NỘI SOI TAI MŨI HỌNG INV 250 INNOTECH', 'he-thong-noi-soi-tai-mui-hong-inv-250-innotech', 'HỆ THỐNG NỘI SOI INV-250 (HALOGEN)', 'Hàn Quốc', '<ul>\r\n <li>Sử dụng loại đèn halogen 250W</li>\r\n <li>Hình ảnh hiển thị rõ ràng và sắc nét hơn </li>\r\n <li>Trang bị hệ thống dừng hình ảnh hiện đại </li>\r\n <li>Đèn halogen có chức năng tắt/bật riêng biệt</li>\r\n <li>Đèn halogen có thể thay dễ dàng</li>\r\n <li>Thiết kế hiện đại, thuận tiện tối đa cho người sử dụng </li>\r\n <li>Điều trị nhi khoa và điều trị tại gia đình</li>\r\n</ul>', '<h2><strong>Đặc điểm nổi bật của hệ thống nội soi tai mũi họng INV 250 Innotech</strong></h2>\r\n\r\n<p><a href=\"http://www.allowcopy.com/open/?url=https:\\/\\/tmhitech.vn\\/he-thong-noi-soi-tai-mui-hong-inv-250-innotech\" target=\"_blank\"><strong>Hệ thống nội soi tai mũi họng INV 250 Innotech</strong> </a>sử dụng loại đèn halogen 250W, nhờ đó hình ảnh hiển thị rõ ràng và sắc nét hơn. Trang bị hệ thống dừng hình ảnh hiện đại cùng với các chức năng đa dạng được thiết kế gói gọn trong một hệ thống bao gồm: Chức năng chia khung hình 2.4, chức năng 4 bộ nhớ và hệ thống 2 kênh.</p>\r\n\r\n<p><img alt=\"Hệ thống noi soi tai mũi họng INV 250 Innotech\" src=\"https://tmhitech.vn/Uploads/images/products/he-thong-noi-soi-tai-mui-hong-inv-250-innotec.jpg\" style=\"width:489px\" /></p>\r\n\r\n<p><em>Hệ thống noi soi tai mũi họng INV 250 Innotech</em></p>\r\n\r\n<p>Máy sử dụng các đầu soi mũi, đầu soi tai và đầu soi thanh quản, nối trực tiếp với mũi, tai và thanh quản bệnh nhân, giúp quan sát hình ảnh một cách chính xác.</p>\r\n\r\n<p>- Đèn halogen có chức năng tắt/bật riêng biệt, nhờ đó khi không sử dụng đến đèn có thể tắt đèn, giúp kéo dài tuổi thọ của đèn.</p>\r\n\r\n<p>- <a href=\"http://www.allowcopy.com/open/?url=https:\\/\\/tmhitech.vn\\/ht-noi-soi-tai-mui-hong\" target=\"_blank\"><strong>Hệ thống soi tai mũi họng </strong></a>sử dụng quạt gió cũng có chức năng tắt/bật riêng biệt, độ ồn thấp, thuận tiện cho việc sử dụng.</p>\r\n\r\n<p>- Không chỉ sử dụng để điều trị ngoại khoa mà còn có thể sử dụng cho các điều trị bên trong, điều trị nhi khoa và điều trị tại gia đình.</p>\r\n\r\n<p>- Đèn halogen có thể thay dễ dàng - Thiết kế hiện đại, thuận tiện tối đa cho người sử dụng. </p>\r\n\r\n<p><strong>Đặc tính kỹ thuật</strong></p>\r\n\r\n<p>CCD Camera: 410,000 PIXEL - CCD Adaptor: 25 mm, 28 mm - Nguồn sáng: Đèn halogen 24V, 250W - Bộ dẫn nguồn sáng: 4.8mm, 2m. loại kính - Nguồn điện: 220V, 50/60Hz - Năng lượng tiêu thụ: 0.4 KW -Trọng lượng: 10 kg </p>\r\n\r\n<p>Để đặt mua <strong>hệ thống nội soi tai mũi họng INV 250 Innotech</strong> thuộc khoa <strong><a href=\"http://www.allowcopy.com/open/?url=https:\\/\\/tmhitech.vn\\/chan-doan-hinh-anh\" target=\"_blank\">chẩn đoán hình ảnh</a> </strong>quý khách hàng hãy gọi cho chúng tôi theo số hotline:<strong> 098 969 7177</strong> để được hỗ trợ nhanh nhất. </p>', 1, 58, 17, '2020-10-10 15:35:25', '2020-12-31 09:51:51', NULL, '/storage/photos/product/3/6cOX6QeHIaG0sfBoVGCR.jpg', 10000000, 100),
(36, 'HỆ THỐNG ĐIỆN NÃO 34, 58, 90 KÊNH NEUROWERK EEG (ĐỨC)', 'he-thong-dien-nao-34-58-90-kenh-neurowerk-eeg-duc', 'NEUROWERK EEG', 'Đức', '<ul>\r\n <li>Hiển thị đầy đủ cơ sở dữ liệu bệnh nhân</li>\r\n <li>Bao gồm các phiên bản 34, 58, 90 kênh khuếch đại</li>\r\n <li>Vận hành phần mền đơn giản</li>\r\n <li>Khả năng thiết lập các thông số trực tuyến</li>\r\n <li>Lập biểu đồ biên độ của các đoạn EEG được lựa chọn</li>\r\n <li>Truyền dữ liệu ghi điện não qua hệ thống mạng</li>\r\n <li>Bảo hành 12 tháng</li>\r\n</ul>', '<h2><strong>Hệ thống điện não 34, 58, 90 kênh Neurowerk EEG (Đức)</strong></h2>\r\n\r\n<p>- Thiết kế với bộ khuyếch đại mới bao gồm các phiên bản 34, 58, 90 kênh khuếch đại</p>\r\n\r\n<p>- <strong><a href=\"http://www.allowcopy.com/open/?url=https:\\/\\/tmhitech.vn\\/he-thong-dien-nao-34-58-90-kenh-neurowerk-eeg\" target=\"_blank\">Hệ thống điện não 34, 58, 90 kênh Neurowerk EEG (Đức) </a></strong>được lựa chọn điện cực tham chiếu</p>\r\n\r\n<p>- Chế độ ghi video EEG với độ phân giải HD</p>\r\n\r\n<p>- Hỗ trợ chế độ phân tích phổ DSA trực tuyến</p>\r\n\r\n<p>- Hỗ trợ các chuẩn báo cáo bằng định dạng PDF thông qua chuẩn EDP/HL7</p>\r\n\r\n<p><strong>Phần mềm Quản lý dữ liệu bệnh nhân </strong></p>\r\n\r\n<p><strong>- Hệ thống điện não 34, 58, 90 kênh Neurowerk EEG</strong> (Đức) cài đặt quản lý theo chế độ người dùng</p>\r\n\r\n<p>- Hiển thị đầy đủ cơ sở dữ liệu bệnh nhân</p>\r\n\r\n<p>- Kiểm tra lưu trữ dữ liệu (Tự động thông báo khi lưu trữ dữ liệu</p>\r\n\r\n<p>- Tự động lưu trữ báo cáo về dung lượng dữ liệu của bênh nhân</p>\r\n\r\n<p>- Sao lưu chương trình và cơ sở dữ liệu</p>\r\n\r\n<p><img alt=\"Hệ thống điện não EEG giúp hiển thị đầy đủ các thông số kiểm tra ở người bệnh \" src=\"https://tmhitech.vn/Uploads/images/products/he-thong-dien-nao-34-58-90-kenh-neurowerk-duc-1.jpg\" /></p>\r\n\r\n<p><em>Hệ thống điện não EEG giúp hiển thị đầy đủ các thông số kiểm tra ở người bệnh </em></p>\r\n\r\n<p><strong>Phần mềm ghi điện não đồ</strong></p>\r\n\r\n<p>- Vận hành phần mền đơn giản với các biểu tượng trực quan trên giao diện phần mềm điều khiển bằng chuột hoặc bàn phím máy tính.</p>\r\n\r\n<p>- Các hệ thống quang, đồ thị, số lượng phép đo điện não có thể được vận hành qua hệ thống điều khiển.</p>\r\n\r\n<p>- Có thể thực hiện phép đo điện não ở nhiều thời điểm khác nhau, khả năng lưu trữ tất cả các dữ liệu điện não đã được đo.</p>\r\n\r\n<p>- Chế độ hiển thị nhiều cửa sổ giao diện trên màn hình cho mổ phỏng ghi dữ liệu và xem kết quả đo</p>\r\n\r\n<p>- Truyền dữ liệu ghi điện não qua hệ thống mạng</p>\r\n\r\n<p>- Khả năng đánh dấu 20 sự kiện, và không giới hạn số lượng ký tự lời chú thích sự kiện.</p>\r\n\r\n<p>- Mở rộng khả năng đánh dấu 8 sự kiện bên ngoài qua tín hiệu trigger</p>\r\n\r\n<p>- Khă năng loại bỏ đoạn sóng từ dữ liệu đánh dấu</p>\r\n\r\n<p>- Tự động đánh dấu kích thích ánh sáng (Thiết lập từ phần mềm)</p>\r\n\r\n<p>- Tự động đánh dấu khi bệnh nhân tở gấp (Thiết lập từ phầm mềm)</p>\r\n\r\n<p>- Khả năng đánh dấu in ấn điện não</p>\r\n\r\n<p>- Thiết lập thời gian ghi điện não tùy ý, và tự động dừng ghi khi hết thời gian, đồng thờ gởi tin nhắn mạng.</p>\r\n\r\n<p>- <strong><a href=\"http://www.allowcopy.com/open/?url=https:\\/\\/tmhitech.vn\\/may-do-dien-nao\" target=\"_blank\">Máy đo điện não</a></strong> được lập trình Macro</p>\r\n\r\n<p>- Khả năng thiết lập các thông số trực tuyến</p>\r\n\r\n<p>- EEG montage không giới hạn</p>\r\n\r\n<p><img alt=\"Hệ thống điện não vận hành đơn giản, dễ sử dụng\" src=\"https://tmhitech.vn/Uploads/images/products/he-thong-dien-nao-34-58-90-kenh-neurowerk-duc-2.jpg\" /></p>\r\n\r\n<p><em>Hệ thống điện não vận hành đơn giản, dễ sử dụng</em></p>\r\n\r\n<p><strong>Phần mền xem điện não đồ</strong></p>\r\n\r\n<p>- Vận hành phần mền đơn giản với các biểu tượng trực quan trên giao diện phần mềm điều khiển bằng chuột hoặc bàn phím máy tính.</p>\r\n\r\n<p>- Khả năng phát thảo, trình bày không giới hạn EEG montage và các thông số.</p>\r\n\r\n<p>- Tự động chuyển đổi sang montage theo tín hiệu ghi montage.</p>\r\n\r\n<p>- Khả năng tiềm kiếm điểm đánh dấu, sự kiện, ghi chu và thời gian</p>\r\n\r\n<p>- Khả năng nhập, thay đổi, và chỉnh sửa điểm đánh dấu.</p>\r\n\r\n<p>- Tự động phân trang với tốc độ</p>\r\n\r\n<p>- Hiển thị các thông số ngày đo, thời gian bắt đầu đo và độ dài phép đo</p>\r\n\r\n<p>- Có thể chỉnh sửa màu sắc của các tính hiệu đo.</p>\r\n\r\n<p>- Chức năng tự động đo lường các tính hiệu EEG có biên độ và tần số cao.</p>\r\n\r\n<p>- Phóng lớn các đoạn EEG bao gồm cả chức năng đo tần số, biên độ và thời gian.</p>\r\n\r\n<p>- Lập biểu đồ biên độ của các đoạn EEG được lựa chọn</p>\r\n\r\n<p>- Phân tích tần số của các đoạn EEG được chọn</p>\r\n\r\n<p>Hãy liên hệ ngày với chúng tôi<strong> Công ty Cổ phần Thiết bị Công nghệ Cao TM</strong> theo số hotline: <strong>098 969 7177</strong> nếu bạn quan tâm và muốn đặt mua <strong>hệ thống điện não 34, 58, 90 kênh Neurowerk EEG (Đức) </strong>cho khoa<a href=\"http://www.allowcopy.com/open/?url=https:\\/\\/tmhitech.vn\\/tham-do-chuc-nang\" target=\"_blank\"><strong> thăm dò chức năng</strong></a>. Đội ngũ kỹ sư dày dặn kinh nghiệm của chúng tôi sẽ tư vấn và giải đáp mọi thắc mắc của bạn 24/7 tất cả các ngày trong tuần, kể cả ngày nghỉ lễ. </p>', 1, 42, 16, '2020-11-04 07:06:16', '2021-01-03 03:57:57', NULL, '/storage/photos/product/1/8NOAN3n9SSLu1o37iPrY.jpg', 10000000, 100),
(37, 'fdasfa', 'fdasfa', '32432432', '4323432', '<p>2433232</p>', '<p>34234232342</p>', 1, 42, 4, '2021-01-28 15:06:41', '2021-02-13 14:01:11', '2021-02-13 14:01:11', NULL, 10000000, 100),
(38, '<NAME>ÁCH TAY PR4-G LEISTUNG BRAZIN', 'may-tho-xach-tay-pr4-g-leistung-brazin', 'PR4-G LEISTUNG', 'Brazin', '<ul>\r\n <li>Máy thở dùng cho người lớn và trẻ sơ sinh</li>\r\n <li>Chương trình báo tự động</li>\r\n <li>Có giám sát đồ họa</li>\r\n <li>Pin sạc bên trong 900 phút</li>\r\n <li>Thông gió dự phòng VCV, PCV</li>\r\n</ul>', '<p><strong>Máy thở xách tay PR4-g Leistung Brazin Cung cấp hiệu xuất vượt trội và đầy đủ tính năng trong một gói di động</strong></p>\r\n\r\n<p><a href=\"https://tmhitech.vn/may-tho-xach-tay-pr4-g-leistung-brazin\" target=\"_blank\"><strong>Máy thở xách tay PR4-g Leistung Brazin</strong></a> cung cấp đầy đủ tính năng cần thiết của một máy thở, mở rộng hơn các đối tượng bệnh nhân nhưng vẫn cung cấp đầy đủ sự thuận tiện và hoạt động độc lập.</p>\r\n\r\n<p><strong>Các Mode thở</strong></p>\r\n\r\n<p><strong>- Người lớn/trẻ em</strong></p>\r\n\r\n<p>+ Hỗ trợ kiểm soát VCV</p>\r\n\r\n<p>+ Hỗ trợ PCV có kiểm soát</p>\r\n\r\n<p>+ SIMV (VCV) + PSV</p>\r\n\r\n<p>+ Thông gió dự phòng (VCV)</p>\r\n\r\n<p>+ Thông gió dự phòng (PCV)</p>\r\n\r\n<p><strong>- Trẻ sơ sinh</strong></p>\r\n\r\n<p>+ Dòng chảy liên tục</p>\r\n\r\n<p>+ CPAP mũi'</p>\r\n\r\n<p><strong>- Chương trình báo động</strong></p>\r\n\r\n<p>+ Áp suất đường thở tối đa</p>\r\n\r\n<p>+ Áp suất đường thở tối thiểu</p>\r\n\r\n<p>+ Lượng thủy triều lấy cảm hứng tối đa</p>\r\n\r\n<p>+ Lượng thủy triều lấy cảm hứng tối thiểu</p>\r\n\r\n<p>+ Thời gian báo động ngưng thở</p>\r\n\r\n<p>+ Tần số thở tối đa</p>\r\n\r\n<p><strong>- Giám sát đồ họa</strong></p>\r\n\r\n<p>+ Đường cong áp lực thời gian</p>\r\n\r\n<p>+ Đông cứng</p>\r\n\r\n<p>+ Quy mô tự động</p>\r\n\r\n<p><img alt=\"Máy thở xách tay PR4-g Leistung có màn hình hiển thị rõ ràng, sắc nét\" src=\"https://tmhitech.vn/Uploads/images/products/may-tho-xach-tay-pr4-g-Leistung-1.jpg\" /></p>\r\n\r\n<p><em>Máy thở xách tay PR4-g Leistung có màn hình hiển thị rõ ràng, sắc nét</em></p>\r\n\r\n<h2><strong>Các tính năng và thông số kỹ thuật khác của sản phẩm</strong></h2>\r\n\r\n<p>Báo động lịch sử</p>\r\n\r\n<p>Phổi cơ học: AutoPEEP</p>\r\n\r\n<p><strong>Cung cấp năng lượng</strong></p>\r\n\r\n<p>Nguồn bên ngoài: 12.0 đến 15.0Vdc (tối thiểu 2A)</p>\r\n\r\n<p>Pin sạc bên trong: 900 phút</p>\r\n\r\n<p><strong>Kiểm soát</strong></p>\r\n\r\n<p><strong>- </strong>FiO²: 50 - 100%</p>\r\n\r\n<p>- Thời gian tăng: 5 cấp độ</p>\r\n\r\n<p>- Thời gian truyền cảm hứng: 0,2 - 3 giây (tạm dừng + 2 giây)</p>\r\n\r\n<p>- Tần suất: 1 - 150 cpm</p>\r\n\r\n<p>- Thể tích dòng: 10 - 2500 mL</p>\r\n\r\n<p>- Áp suất được kiểm soát: 2 - 30 cm H²O</p>\r\n\r\n<p>- Hỗ trợ áp lực: 2 - 30 cm H²O</p>\r\n\r\n<p>- PEEP: 0 - 20 cmH²O</p>\r\n\r\n<p>- Độ nhạy kích hoạt áp suất: -0,5 a -10,0 cmH²O</p>\r\n\r\n<p>- Độ cao bù: 0 - 6000 masl</p>\r\n\r\n<p><strong>Ngưng thở</strong></p>\r\n\r\n<p>- 0,10 - 2 giây</p>\r\n\r\n<p><strong>Giám sát</strong></p>\r\n\r\n<p>- Áp suất đường thở cao điểm: 0 - 120 cm H²O</p>\r\n\r\n<p>- Đường dẫn khí trung bình: 0 - 100 cm H²O</p>\r\n\r\n<p>- Lượng thủy triều hô hấp: 10 - 1500 mL</p>\r\n\r\n<p>- Tần suất: 1- 150 cpm</p>\r\n\r\n<p>- Tỷ lệ: 5: 1 - 1:99</p>\r\n\r\n<p>Để đặt mua<strong> máy thở xách tay PR4-g Leistung Brazin </strong>với chất lượng tốt nhất và giá thành cạnh tranh nhất quý khách hàng hãy liên hệ ngay với chúng tôi theo số hotline: <strong>098 969 7177</strong> để được tư vấn và giải đáp mọi thắc mắc về sản phẩm. Ngoài máy thở xách tay, công ty chúng tôi còn bán rất nhiều các thiết bị bệnh viện đáp ứng cho đầy đủ khoa phòng. Vì vậy bạn đừng quên truy cập thường xuyên vào website: <a href=\"https://tmhitech.vn/\" target=\"_blank\"><strong>tmhitech.vn </strong></a>để có thể tìm hiểu thêm về sản phẩm. </p>', 1, 57, 4, '2021-02-13 14:18:57', '2021-02-13 14:19:13', NULL, '/storage/photos/product/1/8MFeJebd8glsqx5uUtJg.jpg', 25000000, 100),
(39, '<NAME> CHENWEI CWH-2010', 'may-tho-xach-tay-chenwei-cwh-2010', 'CWH-2010', 'China', '<ul>\r\n <li>Áp dụng cho người lớn và trẻ em.</li>\r\n <li>Hệ điều hành thông minh.</li>\r\n <li>Được chứng nhận bởi CE và ISO 9001/13485.</li>\r\n <li>Dễ dàng mang theo, đi kèm với trọng lượng nhẹ để vận chuyển.</li>\r\n <li>Chống sốc, chống nhiễu và chống thấm nước.</li>\r\n <li>Có thể được sử dụng trong khoa cấp cứu, khoa phụ khoa và sản khoa, ICU, vận chuyển, viện trợ ngoài trời, viện trợ mỗi bệnh viện và bên cạnh giường.</li>\r\n</ul>', '<p><strong>Tính năng</strong></p>\r\n\r\n<p>- Áp dụng cho người lớn và trẻ em.</p>\r\n\r\n<p>- Điều khiển bằng khí nén, điều khiển điện tử.</p>\r\n\r\n<p>- Hệ thống giám sát và báo động tiên tiến cho các thông số liên quan đến bệnh nhân.</p>\r\n\r\n<p>- Điểm hiệu suất sử dụng cao</p>\r\n\r\n<p>- Dễ dàng mang theo, đi kèm với trọng lượng nhẹ để vận chuyển.</p>\r\n\r\n<p>- Chống sốc, chống nhiễu và chống thấm nước.</p>\r\n\r\n<p>- Có thể được sử dụng trong khoa cấp cứu, khoa phụ khoa và sản khoa, ICU, vận chuyển, viện trợ ngoài trời, viện trợ mỗi bệnh viện và bên cạnh giường.</p>\r\n\r\n<p> </p>\r\n\r\n<p><strong>Thông số kỹ thuật</strong></p>\r\n\r\n<table border=\"1\" cellpadding=\"1\" cellspacing=\"1\">\r\n <tbody>\r\n <tr>\r\n <td colspan=\"2\">\r\n <p><strong>Máy thở xách tay CWH - 2010</strong></p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <p>Công suất đầu vào:</p>\r\n </td>\r\n <td>\r\n <p>220 V (± 10%), 50Hz (± 2%) hoặc 110 V / 60Hz S</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td colspan=\"2\">\r\n <p><strong>Pin dự phòng</strong></p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <p>Có thể sạc lại nội bộ</p>\r\n </td>\r\n <td>\r\n <p>Tiêu chuẩn</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <p>Pin sử dụng, 12V</p>\r\n </td>\r\n <td>\r\n <p>> 4 giờ</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <p>Sạc xe DC</p>\r\n </td>\r\n <td>\r\n <p>12V</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <p>Kích thước màn hình (inch):</p>\r\n </td>\r\n <td>\r\n <p>5,7</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td colspan=\"2\">\r\n <p><strong>Khí:</strong></p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <p>Oxy, air</p>\r\n </td>\r\n <td>\r\n <p>Oxy, air</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <p>Phạm vi đầu vào đường ống</p>\r\n </td>\r\n <td>\r\n <p>280 kPa ~ 600 kPa</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td colspan=\"2\">\r\n <p><strong>Thông số kỹ thuật thông gió</strong></p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <p>Tốc độ thở</p>\r\n </td>\r\n <td>\r\n <p> 4 ~ 100 / phút</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <p>Thời lượng hô hấp</p>\r\n </td>\r\n <td>\r\n <p> 0,2 ~ 6s</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <p>Thể tích thông khí (TV )</p>\r\n </td>\r\n <td>\r\n <p>50-1500ml</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <p>Nồng độ oxy</p>\r\n </td>\r\n <td>\r\n <p>45% ~ 100%</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <p>I: E Tỷ lệ</p>\r\n </td>\r\n <td>\r\n <p>4: 1 ~ 1: 8</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <p>Thở dài</p>\r\n </td>\r\n <td>\r\n <p>1 ~ 5 (Cứ 100 lần)</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td colspan=\"2\">\r\n <p><strong>Chế độ thông gió</strong></p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <p>IPPV</p>\r\n </td>\r\n <td>\r\n <p>Tiêu chuẩn</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <p>SPONT / CPAP</p>\r\n </td>\r\n <td>\r\n <p>SPONT</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <p>Đ / C</p>\r\n </td>\r\n <td>\r\n <p>Tiêu chuẩn</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <p>SIGH</p>\r\n </td>\r\n <td>\r\n <p>Tiêu chuẩn</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <p>SIMV</p>\r\n </td>\r\n <td>\r\n <p>Tiêu chuẩn</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td colspan=\"2\">\r\n <p><strong>Triger</strong></p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <p>Kích hoạt áp suất</p>\r\n </td>\r\n <td>\r\n <p>-2.0 kPa 0 kPa</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td colspan=\"2\">\r\n <p><strong>Giám sát</strong></p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <p>Thể tích thủy triều S</p>\r\n </td>\r\n <td>\r\n <p>Tiêu chuẩn</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <p>Khối lượng thông gió S</p>\r\n </td>\r\n <td>\r\n <p>Tiêu chuẩn</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <p>Nhịp thở</p>\r\n </td>\r\n <td>\r\n <p>Tiêu chuẩn</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <p>Ppeak</p>\r\n </td>\r\n <td>\r\n <p>Tiêu chuẩn</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <p>Nồng độ oxy</p>\r\n </td>\r\n <td>\r\n <p>Tùy chọn</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td colspan=\"2\">\r\n <p><strong>Hiển thị dạng sóng</strong></p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <p>Áp lực thời gian</p>\r\n </td>\r\n <td>\r\n <p>Tiêu chuẩn</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td colspan=\"2\">\r\n <p><strong>Báo động</strong></p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <p>Ngưng thở</p>\r\n </td>\r\n <td>\r\n <p>Tiêu chuẩn</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <p>Vt quá cao (thấp) S</p>\r\n </td>\r\n <td>\r\n <p>Tiêu chuẩn</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <p>Áp suất đường thở quá cao S</p>\r\n </td>\r\n <td>\r\n <p>Tiêu chuẩn</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <p>Cung cấp không khí hoặc không thành công</p>\r\n </td>\r\n <td>\r\n <p>Tiêu chuẩn</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <p>Mất điện AC</p>\r\n </td>\r\n <td>\r\n <p>Tiêu chuẩn</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <p>Pin dưới điện áp S</p>\r\n </td>\r\n <td>\r\n <p>Tiêu chuẩn</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <p>Không có thông khí</p>\r\n </td>\r\n <td>\r\n <p>Tiêu chuẩn</p>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>', 1, 57, 15, '2021-02-13 14:25:44', '2021-02-13 14:25:44', NULL, '/storage/photos/product/1/dm4mD7Tiy1Umcl4GigTM.png', 14000000, 100);
INSERT INTO `products` (`id`, `name`, `slug`, `model`, `made_by`, `des`, `content`, `user_id`, `category_id`, `brand_id`, `created_at`, `updated_at`, `deleted_at`, `image_path`, `price`, `inventory`) VALUES
(40, 'MONITOR THEO DÕI BỆNH NHÂN MPR6-03 TREATON (EU)', 'monitor-theo-doi-benh-nhan-mpr6-03-treaton-eu', 'MPR6-03', 'EU', '<ul>\r\n <li>Monitor có thiết kế nhỏ gọn, dễ sử dụng</li>\r\n <li>Một giải pháp hoàn chỉnh cho tất cả các cài đặt theo dõi bệnh nhân</li>\r\n <li>Theo dõi các chế độ sinh tồn của bệnh nhân</li>\r\n <li>Màn hình có kích thước lớn, dễ dàng quan sát</li>\r\n <li>Các thông số theo dõi cơ bản: 12 đạo trình EEG</li>\r\n <li>Bảo hành 24 tháng (Đặt mua trong năm 2019 bảo hành 30 tháng)</li>\r\n</ul>\r\n\r\n<div id=\"simple-translate\">\r\n<div>\r\n<div class=\"simple-translate-button isShow\" style=\"background-image: url("chrome-extension://ibplnjkanclpjokhdolnendpplpjiace/icons/512.png"); height: 22px; width: 22px; top: 51px; left: 142px;\"> </div>\r\n\r\n<div class=\"simple-translate-panel \" style=\"width: 300px; height: 200px; top: 0px; left: 0px; font-size: 13px; background-color: rgb(24, 24, 24);\">\r\n<div class=\"simple-translate-result-wrapper\" style=\"overflow: hidden;\">\r\n<div class=\"simple-translate-move\" draggable=\"true\"> </div>\r\n\r\n<div class=\"simple-translate-result-contents\">\r\n<p class=\"simple-translate-result\" style=\"color: rgb(230, 230, 230);\"> </p>\r\n\r\n<p class=\"simple-translate-candidate\" style=\"color: rgb(170, 170, 170);\"> </p>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>', '<h2><strong>Monitor theo dõi bệnh nhân MPR6-03 Treaton</strong></h2>\r\n\r\n<p>Mục đích sử dụng: chăm sóc đặc biệt</p>\r\n\r\n<p>Được thiết kế để theo dõi các thông số chính của các dấu hiệu sinh tồn của bệnh nhân.</p>\r\n\r\n<p><strong>Các ứng dụng:</strong></p>\r\n\r\n<p>- Theo dõi trẻ sơ sinh có trọng lượng cơ thể nhỏ từ 500 g.</p>\r\n\r\n<p>- Trong phòng điều trị sơ sinh và các đơn vị chăm sóc đặc biệt.</p>\r\n\r\n<p>- Trong các khoa (thần kinh học, tim mạch và những khoa khác).</p>\r\n\r\n<p>- Trong khám bệnh ban đầu cho trẻ em.</p>\r\n\r\n<p><img alt=\"Monitor theo dõi bệnh nhân mpr6-03 Treaton (Eu) thoe dõi chỉ số sống còn của bệnh nhân chính xác\" src=\"https://tmhitech.vn/Uploads/images/products/monitor-theo-doi-benh-nhan-mpr6-03-treaton-EU.jpg\" /></p>\r\n\r\n<p><em>Monitor theo dõi bệnh nhân mpr6-03 Treaton (Eu) thoe dõi chỉ số sống còn của bệnh nhân chính xác</em></p>\r\n\r\n<p>Các module và dấu hiệu sinh tồn </p>\r\n\r\n<table border=\"1\" cellpadding=\"1\" cellspacing=\"1\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <p>Điện tim (ECG)</p>\r\n </td>\r\n <td>\r\n <p>12 đạo trình: I, II, III, aVL, aVR, aVF, V1 – V6<br />\r\n Phân tích nhịp tim biến thiên (HRV)<br />\r\n Phân tích ST<br />\r\n Nhịp tim<br />\r\n Phân tích và phát hiện tự động loạn nhịp tim</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <p>Xung oxy TREATON®</p>\r\n </td>\r\n <td>\r\n <p>Nhịp tim<br />\r\n SpO2<br />\r\n Sóng biểu đồ</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <p>Xung oxy Masimo SET®</p>\r\n </td>\r\n <td>\r\n <p>Nhịp tim</p>\r\n\r\n <p>SpO2</p>\r\n\r\n <p>Sóng biểu đồ</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <p>Đo nhiệt độ</p>\r\n </td>\r\n <td>\r\n <p>Hai kênh<br />\r\n Đo nhiệt độ chênh lệch</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <p>Phương pháp đo trở kháng các thông số hô hấp</p>\r\n </td>\r\n <td>\r\n <p>Tần số thở<br />\r\n Sóng nhịp thở</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <p>NIBP</p>\r\n </td>\r\n <td>\r\n <p>Áp lực động mạch Sys / Mean / Dia </p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <p>Đo huyết áp tự động liên tục (cNIBP)</p>\r\n </td>\r\n <td>\r\n <p>Áp lực động mạch Sys / Mean / Dia, nhịp mạch, thời gianchuyển tiếp tương đối so với QRS</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <p>Đo huyết áp xâm lấn (2 kênh IBP)</p>\r\n </td>\r\n <td>\r\n <p>Huyết áp Sys / Mean / Dia <br />\r\n Lựa chọn loại áp lực: ART, PA, CVP, ICP, RAP, LAP, RVP, UA<br />\r\n Các dạng sóng IBP1, IBP2</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <p>Đo CVP xâm lấn tối thiểu và các áp lực máu thấp khác ở các vùng khác nhau của cơ thể (IIND 500/75)</p>\r\n </td>\r\n <td>\r\n <p>Dải đo, mmH2O: –200… 450</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <p>Cảm biến dòng chính đo CO2</p>\r\n </td>\r\n <td>\r\n <p>EtCO2, FiCO2, RR<br />\r\n Dạng biểu đồ</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <p>Cảm biến dòng bên đo CO2 (tỷ lệ mẫu 50 ml / phút)</p>\r\n </td>\r\n <td>\r\n <p>EtCO2, FiCO2, RR<br />\r\n Dạng biểu đồ</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <p>Đo oxy dòng bên </p>\r\n </td>\r\n <td>\r\n <p>EtO2, FiO2</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <p>Tính toán trao đổi chất</p>\r\n </td>\r\n <td>\r\n <p>VO2, VCO2, REE, RQ</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <p>Mô-đun chất gây mê (đa khí)</p>\r\n </td>\r\n <td>\r\n <p>Fi / Et: СО2, О2, N2O, 5AA. RR, MAC<br />\r\n Lựa chọn dạng sóng: СО2, O2, chất gây mê</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>Bảo hành</td>\r\n <td>12 tháng</td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<p> </p>\r\n\r\n<p>Để đặt mua sản phẩm <strong>Monitor theo dõi bệnh nhân MPR6-03 Treaton</strong> quý khách hàng liên hệ ngay với chúng tôi theo số hotline: <strong>098 969 7177</strong> để được tư vấn và hỗ trợ nhanh nhất.</p>\r\n\r\n<p>Ngoài ra, monitor chúng tôi còn cung cấp nhiều dòng sản phẩm khác nhau trong bệnh viện như: Máy thở, máy gây mê, đo điện tim, máy đo điện não, bàn mổ, đèn mổ... của nhiều thương hiệu lớn trên thế giới và giá thành phải chăng nhất. Hãy thường xuyên truy cập vào website: <strong><a href=\"https://tmhitech.vn/\" target=\"_blank\">tmhitech.vn </a></strong>để nắm rõ hơn cho mình bạn nhé!</p>', 1, 58, 4, '2021-02-13 14:31:43', '2021-02-13 14:31:43', NULL, '/storage/photos/product/1/TrKnJtyR1pVo7eayDVF2.jpg', 25000000, 100),
(41, 'HỆ THỐNG MONITOR TRUNG TÂM OMNI (MỸ)', 'he-thong-monitor-trung-tam-omni-my', 'OMNI', 'Mỹ', '<ul>\r\n <li>Thiết kế hiện đại, có cài đặt nhiều cấu hình sẵn</li>\r\n <li>Một giải pháp hoàn chỉnh cho tất cả các cài đặt theo dõi bệnh nhân</li>\r\n <li>Pin máy có tuổi thọ cao</li>\r\n <li>Thời gian quản lý lên đến 72 giờ đồng hồ</li>\r\n <li>Màn hình cảm ứng hiển thị sắc nét các thông số giúp bác sĩ dễ dàng theo dõi</li>\r\n <li>Thích hợp sử dụng cho mọi đối tượng, đặc biệt là trẻ sơ sinh, trẻ em, người già</li>\r\n <li>Màn hình chính có khả năng kết nối với 32 màn hình monitor bệnh nhân khác nhau</li>\r\n <li>Mới 100%, đạt tiêu chuẩn FDA, CE, DIN EN ISO 13485 :2003</li>\r\n <li>Bảo hành 12 tháng</li>\r\n</ul>', '<h2><strong>Đặc điểm của hệ thống Monitor trung tâm Omni</strong></h2>\r\n\r\n<p><strong>Hệ thống Monitor trung tâm Omni bao gồm:</strong></p>\r\n\r\n<ul>\r\n <li>Omni III: Màn hình 15 inch</li>\r\n <li>Omni II: Màn hình 12.1 inch</li>\r\n <li>Omni K: Màn hình 10.5 inch</li>\r\n <li>Omni: 10.1 inch</li>\r\n <li>Omni Express: Màn hình 7 inch</li>\r\n</ul>\r\n\r\n<p><strong>Một số đặc điểm cơ bản của sản phẩm</strong></p>\r\n\r\n<p><strong>Hệ thống Monitor trung tâm OMNI </strong>được thiết kế cho môi trường làm việc nhịp độ nhanh, giao diện đơn giản và dễ sử dụng. Màn hình cảm ứng với độ phân giải cao tối ưu hóa tốc độ của việc chăm sóc bệnh nhân. Do đó, người sử dụng có thể điều chỉnh nhanh màn hình, thiết lập cài đặt mặc định, giới hạn cảnh báo, quản lý lên đến 72 giờ dữ liệu bệnh nhân chi tiết. Thông tin bệnh nhân cùng với các thiết lập dấu hiệu quan trọng được nhanh chóng điều chỉnh để đáp ứng các yêu cầu thay đổi tình trạng của bệnh nhân.</p>\r\n\r\n<p><img alt=\"Hệ thống monitor trung tâm Omni được các bệnh viện lớn sử dụng nhiều\" src=\"https://tmhitech.vn/Uploads/images/products/he-thong-monitor-trung-tam-omni-cao-cap.jpg\" style=\"width:314.5px\" /></p>\r\n\r\n<p><em>Hệ thống monitor trung tâm Omni được các bệnh viện lớn sử dụng nhiều</em></p>\r\n\r\n<p>- Dòng máy Monitor OMNI được thiết kế để phù hợp và di chuyển dễ dàng giữa các khu vực chăm sóc nhiều bệnh nhân. Dòng máy OMNI theo dõi các thông số tiêu chuẩn: Huyết áp không xâm lấn (NIBP), ECG với phát hiện loạn nhịp tim, SpO2, Nhiệt độ và Nhịp thở. Lựa chọn thêm: EtCO2, Khí gây mê và Huyết áp xâm nhập (IBP) có thể thêm vào chỉ đơn giản bằng cách gắn giắc cắm trong các modun.</p>\r\n\r\n<p>Khả năng nâng cấp này cho phép người dùng tùy chỉnh mức độ sắc nét của màn hình trong khi thay đổi tình trạng của bệnh nhân. Nếu muốn, người dùng có thể di chuyển từ một màn hình cơ bản với các dạng sóng (dấu hiệu sống) quan trọng sang kiểu màn hình theo dõi liên tục cạnh giường bệnh hoặc sang kiểu màn hình gây mê trên một monitor duy nhất ở tất cả các lần.</p>\r\n\r\n<p>- <strong>Khả năng kết nối</strong>: OMNI cung cấp một số giải pháp liên kết mạng nhiều monitor và/ hoặc quản lý dữ liệu bệnh nhân trên một EMR hoặc mạng của bệnh viện. Monitor theo dõi bệnh nhân OMNI kết nối Ethernet và RS-232 với một giao thức truyền thông mã nguồn mở. Infinium cung cấp 2 cấp độkết nốimạng và kết nối. Infinium DataManager® là một giải pháp phần mềm được thiết kế cho các trung tâm phẫu thuật và phòng phẫu thuật nhỏ.</p>\r\n\r\n<p>Phần mềm ứng dụng DataManager ®cho phép lưu trữ thông tin bệnh nhân và các dấu hiệu sống quan trọng khác vào một máy tính chuyên dụng. Đối với các cơ sở y tế lớn, các trạm trung tâmOmniview® cho phép đo lường thời gian thực và mạng lưới lên đến 32 monitor theo dõi bệnh nhân OMNI.</p>\r\n\r\n<p>Omniview® lưu trữ đầy đủ các dấu hiệu sống quan trọng của bệnh nhân. Các dữ liệu của bệnh nhân có thể được gửi đến một EMR như là sự bổ sung hồ sơ của bệnh nhân hoặc được tích hợp vào mạng lưới bệnh viện.</p>\r\n\r\n<p>- <strong>Khả năng nâng cấp</strong>: Tất cả các dòng OMNI được cấu hình sẵn với huyết áp không xâm lấn (NIBP), ECG với phát hiện loạn nhịp tim, nhịp thở, SpO2 và nhiệt độ. EtCO2, khí gây mê, huyết áp xâm lấn (IBP), pin tuổi thọ cao, máy in nhiệt đều là các tùy chọn có thể đặt thêm. Các modun có thể dùng trên các màn hình kích thước khác nhau, tiết kiệm chi phí cho việc lắp đặt các màn hình lớn.</p>\r\n\r\n<p><strong>Cách kết nối của hệ thống Monitor trung tâm Omni (Mỹ)</strong></p>\r\n\r\n<p><strong><img alt=\"Cách kết nối của hệ thống monitor trung tâm Omni (Mỹ)\" src=\"https://tmhitech.vn/Uploads/images/products/he-thong-monitor-trung-tam-Omni-2.jpg\" style=\"width:314.5px\" /></strong></p>\r\n\r\n<p><em>Cách kết nối của hệ thống monitor trung tâm Omni (Mỹ)</em></p>\r\n\r\n<p>Trạm trung tâm Omniview ™ cho phép đo lường không dây hoặc có dây cứng cho một mạng có tới 32 màn hình bệnh nhân Omni khác nhau. Các Omniview ™ có chức năng lưu trữ toàn bộ thông tin của bệnh nhân và các xu hướng dấu hiệu quan trọng. Trong thời gian thực, Omniview ™ hiển thị số của bệnh nhân</p>\r\n\r\n<p>Các dấu hiệu quan trọng cùng với dạng sóng. Dữ liệu bệnh nhân từ Omniview ™ có thể chuyển sang EMR dưới dạng bổ sung cho tệp của bệnh nhân hoặc tích hợp vào hệ thống thông tin bệnh viện.</p>\r\n\r\n<p>Hãy liên hệ ngay với chúng tôi theo số hotline: <strong>098 969 7177 </strong>để có thể đặt mua và tìm hiểu kĩ hơn về dòng sản phẩm <a href=\"https://tmhitech.vn/he-thong-monitor-trung-tam-omni\" target=\"_blank\"><strong>hệ thống monitor trung tâm Omni</strong></a> (Mỹ)</p>\r\n\r\n<p><strong>Công ty Cổ phần Thiết Bị Công nghệ Cao TM</strong></p>\r\n\r\n<p><strong>Địa chỉ: 42 Phương Mai, Đống Đa, Hà Nội</strong></p>\r\n\r\n<p><strong>Hotline: 098 969 7177</strong></p>\r\n\r\n<p><strong>Email: <EMAIL></strong></p>\r\n\r\n<p> </p>', 1, 58, 11, '2021-02-13 14:33:54', '2021-03-01 02:38:25', NULL, '/storage/photos/product/1/nsldxyC5rdDPJzpk8Mst.jpg', 23000000, 0),
(42, 'MONITOR THEO DÕI BỆNH NHÂN OMNI II', 'monitor-theo-doi-benh-nhan-omni-ii', 'Omni II', 'Mỹ', '<ul>\r\n <li>Màn hình màu dạng chạm (Touch-screen) TFT 12.1”</li>\r\n <li>Theo dõi nhiều đạo trình ECG</li>\r\n <li>Thao tác với chế độ chạm màn hình.</li>\r\n <li>Có trang bị sẵn Pin sạc</li>\r\n <li>Hiển thị giá trị đo NIBP</li>\r\n <li>Trang bị sẳn máy in nhiệt</li>\r\n <li>Đạt tiêu chuẩn ISO 13485, EC Certificate</li>\r\n</ul>', '<h2><strong>Đặc điểm nổi bật của Monitor theo dõi bệnh nhân Omni II</strong></h2>\r\n\r\n<p><a href=\"https://tmhitech.vn/monitor-theo-doi-benh-nhan-infinium-omni-ii\" target=\"_blank\"><strong>Monitor theo dõi bệnh nhân Omni II </strong></a>™ cung cấp một giao diện người dùng cực kỳ đơn giản và tiện dụng. Omni II cung cấp màn hình cảm ứng 12,1 inch có độ phân giải cao để tối ưu hóa việc chăm sóc bệnh nhân. Do đó, người dùng có thể thực hiện điều chỉnh cài đặt trên màn hình nhanh chóng, giới hạn cảnh báo và quản lý dữ liệu bệnh nhân chi tiết tối đa 72 giờ.</p>\r\n\r\n<p>Omni II được thiết kế để phù hợp và di chuyển giữa nhiều khu vực chăm sóc bệnh nhân dễ dàng và vô cùng linh hoạt. Omni II ™ cung cấp các phép đo tiêu chuẩn về: huyết áp không xâm lấn, ECG với phát hiện loạn nhịp tim, SpO2 , Nhiệt độ và Tỷ lệ hô hấp,ETCO2 , đo chất gây mê, đầu ra tim và huyết áp xâm lấn có thể được thêm vào bằng cách gắn các mô-đun ( tùy chọn ). </p>\r\n\r\n<p>Omni II ™ có thể kết nối mạng nhiều màn hình với nhau hoặc quản lý dữ liệu bệnh nhân trên nền tảng hồ sơ y tế điện tử hoặc hệ thống thông tin bệnh viện dựa trên HL7 . Máy theo dõi bệnh nhân Omni II cung cấp kết nối Ethernet và RS-232 với giao thức truyền thông mã nguồn mở. Infinium cung cấp 2 cấp độ mạng và kết nối. . Giao thức mạng HL7 sẽ cho phép tất cả thông tin bệnh nhân và các xu hướng dấu hiệu quan trọng được chuyển giao và lưu trữ trên hệ thống thông tin bệnh viện. </p>\r\n\r\n<p><img alt=\"Monitor theo dõi bệnh nhân Infinium Omni II có giao diện đơn giản, dễ thực hiện\" src=\"https://tmhitech.vn/Uploads/images/products/monitor-theo-doi-benh-nhan-Infinium-omni-ii-2.jpg\" style=\"width:314.5px\" /></p>\r\n\r\n<p><em>Monitor theo dõi bệnh nhân Omni II có giao diện đơn giản, dễ thực hiện</em></p>\r\n\r\n<h2><strong>Các tính năng kỹ thuật của sản phẩm</strong></h2>\r\n\r\n<p>- Màn hình màu dạng chạm (Touch-screen) TFT 12.1”</p>\r\n\r\n<p>- Theo dõi nhiều đạo trình ECG</p>\r\n\r\n<p>- Thao tác với chế độ chạm màn hình.</p>\r\n\r\n<p>- Có trang bị sẵn Pin sạc</p>\r\n\r\n<p>- Hiển thị giá trị đo NIBP</p>\r\n\r\n<p>- Trang bị sẳn máy in nhiệt</p>\r\n\r\n<p>- Màn hình rộng, có thể hiển thị cùng lúc 4, 6 hay 8 dạng sóng ghi.</p>\r\n\r\n<p>- Có thể sử dụng như một máy con trong hệ thống theo dõi trung tâm\\</p>\r\n\r\n<p>- Thiết kế chắc chắn, tiện dụng trong việc theo dõi bệnh nhân dạng di động</p>\r\n\r\n<p>- Có thể cài đặt nhiều ngôn ngữ hiển thị.</p>\r\n\r\n<p>- Bộ nhớ lưu dữ liệu ghi phân tích tiên lượng trong khoảng 48 giờ.</p>\r\n\r\n<p>- Các chức năng theo dõi chính: Nhịp tim (ECG), Nhịp thở (RESP), Huyết áp (NIBP), SpO2, Nhiệt độ (Temp) và Printer (2 kênh)</p>\r\n\r\n<p>- Các chức năng chọn thêm (Option): Huyết áp xâm lấn đôi Dual IBP và EtCO2</p>\r\n\r\n<p>Để đặt mua <strong>Monitor theo dõi bệnh nhân Omni II</strong> quý khách hàng hãy liên hệ ngay với Công ty Cổ phần Thiết bị Công nghệ Cao TM theo số hotline<strong>: 098 969 7177</strong> để được tư vấn và hỗ trợ về sản phẩm một cách nhanh chóng nhất. </p>', 1, 59, 8, '2021-02-13 14:36:06', '2021-02-13 15:03:08', NULL, '/storage/photos/product/1/AZIo1X2gVqDesgZkN2gR.jpg', 22000000, 100),
(43, 'MÁY THEO DÕI ĐỘ SÂU CỦA GÂY MÊ MGA-06 TREATON (EU)', 'may-theo-doi-do-sau-cua-gay-me-mga-06-treaton-eu', 'MGA-06', 'EU- NGA', '<ul>\r\n <li>Cho biết mức độ gây mê và mức độ an thần của bệnh nhân.</li>\r\n <li>Độ sâu đánh giá gây mê dựa trên phân tích EEG.</li>\r\n <li>Hoạt động với thuốc gây mê hô hấp và tĩnh mạch</li>\r\n <li>Giảm tiêu thụ thuốc mê</li>\r\n <li>Hạn chế thời gian thức tỉnh do gây mê;</li>\r\n <li>Màn hình cảm ứng màu TFT 4.3 ”</li>\r\n <li>Sử dụng cho mọi đối tượng bệnh nhân và trẻ em từ 10 tuổi trở lên</li>\r\n <li>Tiến trình hoạt động 24 giờ</li>\r\n <li>Bảo hành 24 tháng</li>\r\n</ul>', '<h2><strong>Đặc điểm cơ bản của máy theo dõi độ sâu của gây mê MGA-06 Treaton (EU)</strong></h2>\r\n\r\n<p><a href=\"https://tmhitech.vn/may-theo-doi-do-sau-cua-gay-me-mga-06-treaton\" target=\"_blank\">Máy theo dõi độ sâu của gây mê MGA-06 Treaton (EU) </a>được rất nhiều bệnh viện lớn ở châu Âu, châu Á, châu Mỹ tin tưởng sử dụng bởi sản phẩm có nhiều ưu điểm nổi bật như sau:</p>\r\n\r\n<p>- Bệnh nhân: Người lớn, trẻ em (trên 10 tuổi)</p>\r\n\r\n<p>- Màn hình: Màn hình cảm ứng màu TFT 4.3 ”</p>\r\n\r\n<p>- Nguồn: 100-240V, 50Hz</p>\r\n\r\n<p>- Pin: 2 h hoạt động</p>\r\n\r\n<p>- Tiến trình: 24 h</p>\r\n\r\n<p>- Báo động: AI cao và thấp</p>\r\n\r\n<p><img alt=\"Máy theo dõi độ sâu của gây mê MGA-06 Treaton cho biết các chỉ số gây mê chính xác\" src=\"https://tmhitech.vn/Uploads/images/products/may-theo-doi-do-sau-cua-gay-me-mga-06-treaton-6.png\" /></p>\r\n\r\n<p><em>Máy theo dõi độ sâu của gây mê MGA-06 Treaton cho biết các chỉ số gây mê chính xác</em></p>\r\n\r\n<table border=\"1\" cellpadding=\"1\" cellspacing=\"1\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <p><strong>Thông số</strong></p>\r\n </td>\r\n <td>\r\n <p><strong>Miêu tả</strong></p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <p>AI Chỉ số hoạt động của não</p>\r\n </td>\r\n <td>\r\n <p>Cho biết mức độ gây mê và mức độ an thần của bệnh nhân.<br />\r\n Độ sâu đánh giá gây mê dựa trên phân tích EEG.<br />\r\n Thuật toán phân tích EEG giữ thông tin về các dấu hiệu điển hình của ức chế EEG.</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <p>SR Tỷ lệ ức chế tín hiệu E</p>\r\n </td>\r\n <td>\r\n <p>Phản ánh sự ức chế của hoạt động EEG và xác định mức độ sâu của gây mê.</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <p>SQI Chỉ số chất lượng tín hiệu EEG</p>\r\n </td>\r\n <td>\r\n <p>Cho biết ảnh hưởng của trở kháng điện cực cáp, giả tạo, nhiễu tần số cao, nhiễu nguồn điện.</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <p>EMG Mức thành phần điện cơ</p>\r\n </td>\r\n <td>\r\n <p>Hoạt động điện của cơ mặt.</p>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<p><br />\r\n<img alt=\"Giao diện sử dụng máy theo dõi độ sâu của gây mê MGA-06 Treaton\" src=\"https://tmhitech.vn/Uploads/images/products/may-theo-doi-do-sau-cua-gay-me-mga-06-treaton-5.jpg\" /></p>\r\n\r\n<p><em>Giao diện sử dụng máy theo dõi độ sâu của gây mê MGA-06 Treaton</em></p>\r\n\r\n<p>- Hoạt động với thuốc gây mê hô hấp và tĩnh mạch;</p>\r\n\r\n<p>- Giá rẻ và có sẵn trên toàn thế giới: 3 điện cực ECG tiêu chuẩn cho 1 bệnh nhân, MGA-06 tương thích với điện cực Covidien, 3M và FIAB ECG;</p>\r\n\r\n<p>- Nhẹ và di động;</p>\r\n\r\n<p>- Sử dụng MGA-06 cho phép:</p>\r\n\r\n<p>+ Giảm tiêu thụ thuốc mê;</p>\r\n\r\n<p>+ Hạn chế thời gian thức tỉnh do gây mê;</p>\r\n\r\n<p>+ Ổn định duy trì độ sâu cần thiết của thuốc an thần;</p>\r\n\r\n<p>+ Chủ yếu loại bỏ nguy cơ nhận thức khi gây mê.</p>\r\n\r\n<p>Hãy liên hệ ngay với chúng tôi theo địa chỉ sau nếu bạn có nhu cầu tìm hiểu và đặt mua dòng sản phẩm <strong>máy theo dõi độ sâu của gây mê MGA-06 Treaton (Eu). </strong></p>\r\n\r\n<p><strong>CÔNG TY CỔ PHẦN THIẾT BỊ CÔNG NGHỆ CAO TM</strong></p>\r\n\r\n<p>Địa chỉ: 42 Phương Mai, Đống Đa, Hà Nội</p>\r\n\r\n<p>Hotline: <strong>098 969 7177</strong></p>\r\n\r\n<p>Email: <EMAIL></p>\r\n\r\n<p>Website: tmhitech.vn</p>', 1, 59, 4, '2021-02-13 14:47:06', '2021-02-13 15:02:56', NULL, '/storage/photos/product/1/CMlOZ1KSSiJEsuI9TeVC.jpg', 27000000, 100),
(44, 'MÁY KHỬ RUNG TIM REANIBEX 800', 'may-khu-rung-tim-reanibex-800', 'Reanibex 800', 'TÂY BAN NHA', NULL, NULL, 1, 60, 4, '2021-02-13 14:52:58', '2021-03-01 02:38:25', NULL, '/storage/photos/product/1/87zqbH4EKsZtBLYEgxFX.jpg', 19000000, 99),
(45, 'MÁY KHỬ RUNG TIM REANIBEX 700', 'may-khu-rung-tim-reanibex-700', 'Reanibex 700', 'TÂY BAN NHA', NULL, NULL, 1, 42, 4, '2021-02-13 14:55:14', '2021-02-13 14:55:14', NULL, '/storage/photos/product/1/2OyUrVcQtDzdFguluand.jpg', 21000000, 100),
(46, 'MÁY KHỬ RUNG TIM REANIBEX 500', 'may-khu-rung-tim-reanibex-500', 'Reanibex 500', 'TÂY BAN NHA', NULL, NULL, 1, 60, 4, '2021-02-13 14:57:41', '2021-02-13 14:59:03', NULL, '/storage/photos/product/1/lTd2TE8SdyLZcjHpF91G.jpg', 14000000, 100),
(47, 'MÁY KHỬ RUNG TIM RESCUE 230 PROGETTI Ý', 'may-khu-rung-tim-rescue-230-progetti-y', 'RESCUE 230', 'Ý', '<ul>\r\n <li>Có chế độ đánh sốc bằng tay hoặc bán tự động</li>\r\n <li>Màn hình hiển thị LCD độ phân giải cao TFT 5.7 “</li>\r\n <li>Tự động in trước và sau khi sốc</li>\r\n <li>Cảm biến SPO2 tương thích với chuẩn BCI</li>\r\n <li>Cài đạt được báo động nhịp tim và Spo2</li>\r\n <li>Băng thông: 0.5 đến 140 Hz (-3dB) khi tắt các bộ lọc</li>\r\n <li>Bộ lộc: 50Hz/60Hz, lọc đường nền, lọc thông thấp</li>\r\n <li>Đạt tiêu chuẩn: EN ISO 13485:2004, CE, hàng mới 100%</li>\r\n <li>Bảo hành 12 tháng</li>\r\n</ul>', '<h2><strong>Đặc điểm nổi bật của máy khử rung tim RESCUE 230 PROGETTI Ý</strong></h2>\r\n\r\n<p>- Đánh sốc bằng tay và bán tự động AED (chọn thêm)</p>\r\n\r\n<p>- Loại đánh sốc lưỡng pha BTE</p>\r\n\r\n<p>- Phát năng lượng bù trừ trở kháng</p>\r\n\r\n<p>- Mức năng lượng có khả năng được chọn: 2 đến 230 J từ bảng điều khiển phía trước</p>\r\n\r\n<p>- Có chế độ đánh đồng bộ theo sóng ‘R’ của điện tim hoặc không đồng bộ</p>\r\n\r\n<p>- Cảm biến SPO2 tương thích với chuẩn BCI</p>\r\n\r\n<p>- Cài đạt được báo động nhịp tim và Spo2</p>\r\n\r\n<p>- Tự động in trước và sau khi sốc</p>\r\n\r\n<p>- Chế độ sốc bán tự động (AED) theo tiêu chuẩn của AAMI DF 39 (chọn thêm)</p>\r\n\r\n<p>- Màn hình hiển thị LCD độ phân giải cao TFT 5.7 “</p>\r\n\r\n<p><img alt=\"Máy khử rung tim Rescue 230 Progetti Ý\" src=\"https://tmhitech.vn/Uploads/images/products/may-khu-rung-tim-rescue-230-progetti-y-2.jpg\" /></p>\r\n\r\n<p><em>Máy khử rung tim Rescue 230 Progetti Ý</em></p>\r\n\r\n<p><strong>Tính năng kỹ thuật của máy</strong></p>\r\n\r\n<p>- Loại đánh sốc lưỡng pha BTE</p>\r\n\r\n<p>- Chế độ sốc bán tự động (AED) theo tiêu chuẩn của AAMI DF 39</p>\r\n\r\n<p>- Những chỉ dẫn bằng chữ trên màn hình hướng dẫn người vận hành thực hiện các quy trình cấp cứu</p>\r\n\r\n<p>- Năng lượng từ 2 đến 230 J được chọn trực tiếp từ bảng điều khiển phía trước (từ 2-10J, mỗi bước 1J; từ 10-230J, mỗi bước 5J)</p>\r\n\r\n<p>- Thời gian nạp năng lượng cho điện cực: 5 giây cho 230 J (Pin đã được sạc đầy)</p>\r\n\r\n<p>- Đánh sốc được 100 lần với mức năng lượng 230 J (Pin đã được sạc đầy)</p>\r\n\r\n<p>- Điều khiển nạp năng lượng và đánh sốc được được thực hiện trên 2 tay sốc (điện cực)</p>\r\n\r\n<p>- 2 Chế độ sốc: đồng bộ theo sóng “R” của điện tim và không đồng bộ</p>\r\n\r\n<p><strong>Màn hình hiển thị</strong></p>\r\n\r\n<p>- Màn hình hiển thị LCD 5.7” rộng độ phân giải cao (320x240 pixels)</p>\r\n\r\n<p>- Đo ECG thông qua 2 tay đánh sốc ( 1 chuyển đạo) hoặc bộ điện cực 4 dây ( 6 chuyển đạo): I, II, III, aVR,aVL,aVF, dạng sóng SPO2 và giá trị đo</p>\r\n\r\n<p>- Tự động chuyển đổi khi chuyển qua cắm bộ điện cực bệnh nhân</p>\r\n\r\n<p>- Bộ lộc: 50Hz/60Hz, lọc đường nền, lọc thông thấp</p>\r\n\r\n<p>- Đèn chỉ thị nhịp tim</p>\r\n\r\n<p><strong>THEO DÕI ECG</strong></p>\r\n\r\n<p>- Băng thông: 0.5 đến 140 Hz (-3dB) khi tắt các bộ lọc</p>\r\n\r\n<p>- Các thông số sóng điện tim ECG:</p>\r\n\r\n<p>- Tốc độ: 5, 12.5, 25 mm/giây</p>\r\n\r\n<p>- Độ lợi: 5, 10, 20 mm/mV</p>\r\n\r\n<p>- Nhịp tim hiển thị trên màn hình từ 20 đến 300 nhịp/phút (±2%)</p>\r\n\r\n<p>- Báo động: nhịp tim có thể cài đặt tối đa 250 nhịp/phút,tối thiểu 20 nhịp/phút</p>\r\n\r\n<p><strong>BỘ PHẬN IN</strong></p>\r\n\r\n<p>- Máy in nhiệt được tích hợp bên trong dùng cho in ECG và các sự kiện bao gồm SPO2 (%)</p>\r\n\r\n<p>- Tốc độ in: 5, 10, 25 mm/giây</p>\r\n\r\n<p>- Khổ giấy: rộng 58 mm</p>\r\n\r\n<p>- Chế độ hoạt động: bằng tay, tự động(10 giây trước và sau khi sốc)</p>\r\n\r\n<p><strong>CHẾ ĐỘ AED (chọn thêm)</strong></p>\r\n\r\n<p>- Năng lượng: cố định 150 J</p>\r\n\r\n<p>- Quy thức: AHA 2005 CPR</p>\r\n\r\n<p>- Thời gian phân tích: tối đa 12 giây</p>\r\n\r\n<p>- Rung tim: VT (nhanh thất vô mạch): biên độ >100uV</p>\r\n\r\n<p>- VF (rung thất): nhịp >150</p>\r\n\r\n<p><strong>ĐO NỒNG ĐỘ OXY TRONG MÁU (SPO2)(chọn thêm)</strong></p>\r\n\r\n<p>- Tầm đo SPO2: 0 đến 100%</p>\r\n\r\n<p>- Tầm đo nhịp mạch: 18 đến 300 nhịp/phút</p>\r\n\r\n<p>- Sai số SPO2: 70 – 100% ± 2% đối với người lớn sử dụng cảm biến kẹp ngón tay</p>\r\n\r\n<p>- Báo động SPO2 : tối thiểu 65%</p>\r\n\r\n<p><strong>MÁY TẠO NHỊP TIM KHÔNG XÂM LẤN (mua thêm)</strong></p>\r\n\r\n<p>- Dạng sóng :tam giác</p>\r\n\r\n<p>- Thời gian xung: 22 ms</p>\r\n\r\n<p>- Dòng xung: Max 150 mA</p>\r\n\r\n<p>- Điện thế xung: 150 V</p>\r\n\r\n<p>- Chế độ hoạt động: Cố định , hoặc cài đặt theo yêu cầu.</p>\r\n\r\n<p><strong>NGUỒN CUNG CẤP</strong></p>\r\n\r\n<p>- Pin Ni – Cd dung lượng cao với thời gian sạc nhanh</p>\r\n\r\n<p>- Thời gian sạc (95%): 2 giờ</p>\r\n\r\n<p>- Adater sạc pin: 100 -230 V±10%, 50/60Hz</p>\r\n\r\n<p><strong>ĐIỀU KIỆN HOẠT ĐỘNG</strong></p>\r\n\r\n<p>- Nhiệt độ hoạt động: 0 – 550C</p>\r\n\r\n<p>- Nhiệt độ lưu kho: -20 – 650C</p>\r\n\r\n<p>- Độ ẩm không khí tương đối: 15 - 80%</p>\r\n\r\n<p>- Chống thấm nước: IPX4</p>\r\n\r\n<p><strong>AN TOÀN</strong></p>\r\n\r\n<p>- Chứng nhận an toàn 2 tay đánh sốc</p>\r\n\r\n<p>- Cách ly điện tim ngõ vào CF class</p>\r\n\r\n<p>- Sốc trong sau 30 giây chờ sau khi sạc</p>\r\n\r\n<p>- KÍCH THƯỚC: 340 X 260 X 130 mm</p>\r\n\r\n<p>TRỌNG LƯỢNG: 5.5 KG </p>\r\n\r\n<p><strong>CẤU HÌNH GỒM CÓ:</strong></p>\r\n\r\n<p>01 Máy chính với màn hình 5.7” inch và bộ phận in<br />\r\n01 Cáp điện tim bệnh nhân<br />\r\n01 Pin sạc dùng nhiều lần<br />\r\n01 Cuộn giấy in kết quả<br />\r\n01 Dây điện nguồn<br />\r\n01 Tài liệu hướng dẫn sử dụng Tiếng Anh và Tiếng Việt</p>\r\n\r\n<p>Xem thêm</p>\r\n\r\n<p><em><a href=\"https://tmhitech.vn/may-khu-rung-tim-rescue-sam-progetti-y\" target=\"_blank\">Máy khử rung tim RESCUE SAM PROGETTI Ý</a></em></p>\r\n\r\n<p><em><a href=\"https://tmhitech.vn/may-khu-rung-tim-rescue-life-progetti-y\" target=\"_blank\">Máy khử rung tim RESCUE Life PROGETTI Ý</a></em></p>', 1, 60, 18, '2021-02-13 15:11:31', '2021-02-13 15:11:31', NULL, '/storage/photos/product/1/PqTfnyT7zymgr5rvlns3.jpg', 22000000, 100),
(48, 'MÁY ĐO NỒNG ĐỘ OXY TRONG MÁU SP02 MEDISANA', 'may-do-nong-do-oxy-trong-mau-sp02-medisana', 'SP02', 'Đức', '<ul>\r\n <li>\r\n <p>Công nghệ quang học, nhanh, chính xác, không gây tổn thương.</p>\r\n </li>\r\n <li>\r\n <p>Nhỏ gọn (xấp xỉ: 55g bao gồm cả pin), có thể bỏ túi.</p>\r\n </li>\r\n <li>\r\n <p>Thời gian sử dụng dài: 02 pin AAA.</p>\r\n </li>\r\n <li>\r\n <p>Báo pin yếu.</p>\r\n </li>\r\n <li>\r\n <p>Tự động tắt nguồn sau 12s không sử dụng.</p>\r\n </li>\r\n <li>\r\n <p>Máy đo nồng độ oxy trong máu SP02 dễ dàng sử dụng</p>\r\n </li>\r\n <li>\r\n <p>Thiết kế nhỏ gọn, dễ sử dụng</p>\r\n </li>\r\n <li>\r\n <p>Các thông số kỹ thuật hiển thị đầy đủ trên màn hình</p>\r\n </li>\r\n <li>\r\n <p>Bảo hành 3 năm</p>\r\n </li>\r\n</ul>', '<h2><strong>Máy đo nồng độ oxy trong máu SPO2 cho kết quả đô độ bão hòa oxy trong máu chính xác</strong></h2>\r\n\r\n<p>Máy đo nồng độ oxy trong máu SPO2 là thiết bị được dùng để đo độ bão hoà oxy trong máu, kết hợp đo nhịp tim thông qua đầu ngón tay; sử dụng công nghệ cảm biến quang học để tính độ bão hoà hemoglobin.</p>\r\n\r\n<p><img alt=\"Máy đo nồng độ oxy trong máu SP02 có thiết kế nhỏ gọn\" src=\"https://tmhitech.vn/Uploads/images/products/may-do-oxy-mau-spo2-medisana-5.jpg\" /></p>\r\n\r\n<p><em>Máy đo nồng độ oxy trong máu SP02 có thiết kế nhỏ gọn</em></p>\r\n\r\n<p>Ứng dụng: Thiết bị được dùng để đo độ bão hòa oxy trong máu và nhịp tim. Rất thích hợp sử dụng trong các gia đình, các bệnh viện hay các trung tâm y học thể thao. Không nên dùng để theo dõi liên tục cho bệnh nhân.</p>\r\n\r\n<p><img alt=\"Máy sử dụng đơn giản, không gây đau\" src=\"https://tmhitech.vn/Uploads/images/products/may-do-oxy-mau-spo2-medisana-6.jpg\" /></p>\r\n\r\n<p><em>Máy sử dụng đơn giản, không gây đau</em></p>\r\n\r\n<p>Sản phẩm máy đo nồng độ oxy trong máu SP 02 của hãng Medisana được kết nối với điện thoại thông qua Bluetooth Smart (4.0) với hệ điều hành IOS và Android, Nếu muốn kết nối được với điện thoại thì bạn phải tải về phầm mềm VitaDock Online thông qua Vitadock + App để tải phần mềm về máy.</p>\r\n\r\n<p>Máy đo nồng độ oxy trong máu SP02 kết nối với điện thoại</p>\r\n\r\n<p><strong>Ưu điểm sản phẩm máy đo nồng độ oxy trong máy SPO2</strong></p>\r\n\r\n<p>1. Dễ sử dụng.</p>\r\n\r\n<p>2. Công nghệ quang học, nhanh, chính xác, không gây tổn thương.</p>\r\n\r\n<p>3. Nhỏ gọn (xấp xỉ: 55g bao gồm cả pin), có thể bỏ túi.</p>\r\n\r\n<p>4. Thời gian sử dụng dài: 02 pin AAA.</p>\r\n\r\n<p>5. Báo pin yếu.</p>\r\n\r\n<p>6. Tự động tắt nguồn sau 12s không sử dụng.</p>\r\n\r\n<p>Máy đo nồng độ oxy trong máu SP02 dễ dàng sử dụng</p>\r\n\r\n<h2><strong>SPO2 là gì?</strong></h2>\r\n\r\n<p>Khí oxy rất cần cho sự sống của loài người. Khí oxy có trong khí trời. Khi chúng ta hít thở, oxy sẽ vào phổi. Máu mà thành phần quan trọng nhất của máu là hemoglobine (Hb) sẽ vận chuyển oxy từ phổi đến các nơi cần thiết trong cơ thể để đảm bảo sự sống. Sự vận chuyển đó xảy ra khi Hb kết hợp với oxy thành HbO2 (hemoglobine có gắn oxy).Tỷ lệ HbO2/ (HbO2+Hb) gọi là độ bão hòa oxy trong máu SpO2, nói cách khác là tỷ lệ phần trăm hemoglobine của máu kết hợp với oxy.</p>\r\n\r\n<p>Sự cần thiết khi dùng máy đo độ bão hòa oxy trong máu Máy đo độ bão hòa oxy trong máu là sản phẩm cần thiết đối với một số người không tự thở không khí ngoài trời mà cần phải trợ giúp bằng bình oxy hay máy tạo oxy. Khi nồng độ oxy xuống quá thấp hoặc tim có vấn đề về nhịp đập thì đây là sản phẩm đo độ bão hòa oxy cho ra kết quả đang được các bác sỹ trong các bệnh viện mà các bệnh nhân cần phải có để luôn kiểm tra hệ hô hấp cũng như sức khỏe của mình.</p>\r\n\r\n<p>Một số bệnh nhân cần phải sử dụng máy đo oxy trong máu như bệnh tai biến đột quỵ, bệnh tắt nghẽn phổi mãn tính, bệnh rối loạn thượng thận, suy tim, bệnh nhân ung thư gian đoạn giữa trở lên, một số trường hợp khác như hẹp ống thanh quản và bệnh hen suyễn. Nếu bệnh nhân hay người sử dụng có vấn đề gì như mất thăng bằng không tự chủ bản thân, có cảm giác như ngất, thở dốc, tay chân, đầu, lưng bị đổ mồ hôi hột liên tục, tay chân môi tím tái phải kiểm tra ngay.</p>\r\n\r\n<p>Chỉ số chuẩn mức độ bão hòa oxy trong máu Thông thường, mức độ bão hòa oxy người bình thường là 97% – 99% và trung bình là 98%, nhưng đối với một số người do hút thuốc quá nhiều thì có chỉ số độ bão hòa oxy trong máu chỉ ở mức 93% – 95%. Chỉ số bão hòa oxy ở tầm thấp là từ 90% – 92% thì cần phải có máy đo nồng độ bão hòa oxy trong máu. Nếu ở mức quá thấp hơn 90% phải liên hệ trực tiếp với y tá, bác sỹ.</p>', 1, 61, 12, '2021-02-13 15:13:55', '2021-02-13 15:13:55', NULL, '/storage/photos/product/1/rmupToIzBbLZ1XhI5XGp.jpg', 17000000, 100),
(49, 'THIẾT BỊ LÀM ẤM BỆNH NHÂN VỚI MIẾNG GEL RAMONAK-03', 'thiet-bi-lam-am-benh-nhan-voi-mieng-gel-ramonak-03', 'RAMONAK-03', 'Belarus', '<ul>\r\n <li>Làm nóng trong phạm vi nhiệt độ 34-39 ºC</li>\r\n <li>Độ chính xác của nhiệt độ duy trì trong vòng 1 ºC</li>\r\n <li>Nhiệt độ tăng 0,1 ºC</li>\r\n <li>Thời gian hoạt động liên tục</li>\r\n <li>Nệm nước dung tích 5 l</li>\r\n <li>Cài đặt thời gian hoạt động tối đa 1,5h.</li>\r\n <li>Công suất tiêu thụ trung bình 140 W</li>\r\n</ul>', NULL, 1, 62, 14, '2021-02-13 15:21:51', '2021-02-13 15:21:51', NULL, '/storage/photos/product/1/m07zUJEDvIFu7TfIY35X.jpg', 30000000, 100),
(50, 'BƠM TRUYỀN DỊCH PG-807I PROGETTI', 'bom-truyen-dich-pg-807i-progetti', 'CardioPart 12 ECG', 'TÂY BAN NHA', '<ul>\r\n <li>Màn hình cảm ứng và màn hình cảm ứng LCD 4.3 inch độ sáng cao thân thiện với người dùng</li>\r\n <li>Tương thích với IEC 60601, chỉ định an toàn cao với CPU kép</li>\r\n <li>Chức năng chống dự trữ độc đáo trên động cơ để ngăn chặn thượng nguồn</li>\r\n <li>DERS (Hệ thống giảm lỗi thuốc) có sẵn</li>\r\n <li>Mạng Wi-Fi không dây có sẵn và hệ thống điều khiển từ xa với trạm trung tâm truyền (tùy chọn)</li>\r\n <li>Loại bảo vệ điện: Loại I</li>\r\n <li>Cấp bảo vệ điện: Loại bằng chứng khử rung CF áp dụng một phần</li>\r\n <li>Bảo vệ chống lại sự xâm nhập của chất lỏng: IP24</li>\r\n <li>Nguyên lý làm việc: Tuyến tính nhu động liên tục tuyến tính</li>\r\n <li>Kích thước: 234 (W) * 99 (D) * 120 (H) mm</li>\r\n <li>Trọng lượng: 1,8kg</li>\r\n <li>Bảo hành 12 tháng</li>\r\n</ul>', '<h2><strong>Đặc điểm nổi bật của bơm truyền dịch PG-807i Progetti </strong></h2>\r\n\r\n<ul>\r\n <li>Màn hình cảm ứng và màn hình cảm ứng LCD 4.3 inch độ sáng cao thân thiện với người dùng</li>\r\n <li>Tương thích với IEC 60601, chỉ định an toàn cao với CPU kép</li>\r\n <li>Chức năng chống dự trữ độc đáo trên động cơ để ngăn chặn thượng nguồn</li>\r\n <li>DERS (Hệ thống giảm lỗi thuốc) có sẵn</li>\r\n <li>Mạng Wi-Fi không dây có sẵn và hệ thống điều khiển từ xa với trạm trung tâm truyền (tùy chọn)</li>\r\n <li>Loại bảo vệ điện: Loại I</li>\r\n <li>Cấp bảo vệ điện: Loại bằng chứng khử rung CF áp dụng một phần</li>\r\n <li>Bảo vệ chống lại sự xâm nhập của chất lỏng: IP24</li>\r\n <li>Nguyên lý làm việc: Tuyến tính nhu động liên tục tuyến tính</li>\r\n <li>Phân loại: Hệ thống mở bơm truyền có thể sử dụng bộ IV thông dụng với tên thương hiệu có thể điều chỉnh. Có sẵn tùy chọn hệ thống đóng.</li>\r\n <li>Các tính năng đặc biệt: Mở cửa tự động và hệ thống đóng cửa, kẹp chống dòng chảy tự do, áp suất động, chế độ ban đêm, chế độ chờ, khóa màn hình, bảo vệ bằng mật khẩu, thay đổi tốc độ trong khi chạy, tự động tính toán nồng độ, bộ nhớ của các thiết lập truyền cuối cùng.</li>\r\n <li>Thư viện thuốc: Lên đến 2000 danh sách tên thuốc và hiển thị, liều thuốc trên / giới hạn dưới</li>\r\n</ul>\r\n\r\n<p><img alt=\"Bơm truyền dịch PG-807i Progetti hiện đại, cao cấp\" src=\"https://tmhitech.vn/Uploads/images/products/bom-truyen-dich-pg-807-i-gia-tot.png\" /></p>\r\n\r\n<p><em>Bơm truyền dịch PG-807i Progetti hiện đại, cao cấp</em></p>\r\n\r\n<h2><strong>Thông số kỹ thuật của Bơm truyền dịch PG-807i Progetti </strong></h2>\r\n\r\n<ul>\r\n <li>-Màn hình cảm ứng LCD TFT 4.3 ”, 10 mức hiển thị độ tương phản độ sáng</li>\r\n <li>Chế độ truyền: 7 chế độ có sẵn: ml / h, trọng lượng cơ thể, nhỏ giọt, tải liều, đoạn đường nối, trình tự và chế độ chuyển tiếp</li>\r\n <li>Chế độ Micro 100 ml đến 1200 ml lập trình</li>\r\n <li>Phạm vi truyền dịch: 0,01 - 1200 ml / h với min. tăng 0,01 ml / h</li>\r\n <li>Độ chính xác của hệ thống: ≥1ml / h, ± 5%</li>\r\n <li>Tốc độ KVO: 0,01 - 5,00ml / h, giá trị mặc định là 1 ml / h</li>\r\n <li>Tốc độ dòng chảy tối thiểu tăng: 0,01ml / h</li>\r\n <li>Bolus: Bolus thủ công và bolus có thể lập trình, hỗ trợ chống bolus</li>\r\n <li>Khối lượng Bolus: Tối thiểu 0,1ml, tối đa 50ml</li>\r\n <li>VTBI (khối lượng được truyền): 0-9999ml, bước tối thiểu là 0,01ml</li>\r\n <li>Tổng khối lượng truyền: 0,01-9999,99ml, bước tối thiểu là 0,01ml</li>\r\n <li>Phạm vi thời gian: 1 phút-99 giờ 59 phút</li>\r\n <li>Thanh lọc: 1200 ml / h</li>\r\n <li>Phát hiện không khí: 7 cấp độ, độ nhạy 20µl</li>\r\n <li>Mức độ kết luận: 12 cấp độ, thượng nguồn và hạ lưu tắc nghẽn</li>\r\n <li>Lịch sử hồ sơ: Hơn 5000 hồ sơ</li>\r\n <li>Các chức năng khác: Gọi y tá, RS232, xuất dữ liệu</li>\r\n <li>Giao diện: Mini USB</li>\r\n <li>Kích thước: 234 (W) * 99 (D) * 120 (H) mm</li>\r\n <li>Trọng lượng: 1,8kg</li>\r\n</ul>\r\n\r\n<h3><strong>Nguồn điện </strong></h3>\r\n\r\n<ul>\r\n <li>Nguồn điện AC: AC 110 / 240V, 50/60 Hz</li>\r\n <li>Công suất đầu vào: 50 VA</li>\r\n <li>DC cung cấp điện: DC 15 V pin lithium</li>\r\n <li>Đặc điểm kỹ thuật: 11.1V 2600mAh</li>\r\n <li>Thời gian sạc: 5h (ở trạng thái OFF)</li>\r\n <li>Thời gian làm việc: ≥9h (sau khi sạc đầy</li>\r\n <li>Pin mới, khi nhiệt độ môi trường là</li>\r\n <li>25 ° C và tốc độ dòng chảy là 25ml / h, làm việc liên tục - thời gian)</li>\r\n</ul>\r\n\r\n<h3><strong>Cảnh báo</strong></h3>\r\n\r\n<ul>\r\n <li>Thông tin báo động hình ảnh và âm thanh: VTBI gần cuối, VTBI truyền,</li>\r\n <li>Áp lực cao, kiểm tra ngược dòng, pin gần như hết, pin hết, Không có pin lắp trong máy, không có nguồn cung cấp điện, báo động nhắc nhở, thời gian chờhết hạn, KVO đã hoàn thành, kết nối cảm biến thả, lỗi thả, bong bóng khí,</li>\r\n <li>Mở cửa</li>\r\n</ul>\r\n\r\n<h3><strong>Môi trường</strong></h3>\r\n\r\n<ul>\r\n <li> Hoạt động: nhiệt độ: 5-40 ° C</li>\r\n <li>Độ ẩm: 20-90%, không ngưng tụ</li>\r\n <li>Áp suất khí quyển: 86-106kPa</li>\r\n <li>Vận chuyển và lưu trữ: nhiệt độ: -20-60 ° C</li>\r\n <li>Độ ẩm: 10-95%, không ngưng tụ</li>\r\n <li>Áp suất khí quyển: 50-106kPa</li>\r\n</ul>\r\n\r\n<p>• <strong> Tùy chọn</strong>: IrDA, WIFI, cảm biến drop, docking station và trạm trung tâm tĩnh mạch</p>\r\n\r\n<p>Hãy liên hệ ngay với <strong>Công ty Cổ phần Thiết bị Công nghệ Cao TM </strong>theo số hotline: <strong>098 969 7177</strong> nếu bạn có nhu cầu tìm hiểu về thông tin dòng sản phẩm bơm truyền dịch PG-807i Progetti để có được tư vấn và có mức giá tốt nhất.</p>', 1, 64, 13, '2021-02-13 15:24:37', '2021-02-13 15:24:37', NULL, '/storage/photos/product/1/h81t7b4DA9OQY4z5y94M.jpg', 12000000, 100);
INSERT INTO `products` (`id`, `name`, `slug`, `model`, `made_by`, `des`, `content`, `user_id`, `category_id`, `brand_id`, `created_at`, `updated_at`, `deleted_at`, `image_path`, `price`, `inventory`) VALUES
(51, 'BƠM TIÊM ĐIỆN PG-907S PROGETTI (Ý)', 'bom-tiem-dien-pg-907s-progetti-y', 'PG-907S', 'Ý', '<ul>\r\n <li>Hiển thị: Màn hình cảm ứng 4.3” TFT</li>\r\n <li>Ống tiêm tương thích: 5ml, 10ml, 20ml, 30ml , 50/60ml</li>\r\n <li>Các mức độ chọn lọc: 12 mức</li>\r\n <li>Lịch sử ghi nhớ: Hơn 5000 lần</li>\r\n <li>Loại bảo vệ điện: Loại I3</li>\r\n <li>Cấp bảo vệ điện: Loại bằng chứng khử rung CF áp dụng một phần</li>\r\n <li>Bảo vệ chống lại sự xâm nhập của chất lỏng: IP24</li>\r\n <li>Nguyên tắc làm việc: động cơ bước dẫn vít hoạt động liên tục</li>\r\n <li>Kích thước: 394(W)*90(D)*123(H) mm</li>\r\n <li>Trọng lượng:1,7kg</li>\r\n <li>Nguồn cung cấp : 100-240V 50/60Hz</li>\r\n</ul>', '<h2><strong>Giới thiệu chung về bơm tiêm điện PG-907S Progetti</strong></h2>\r\n\r\n<p>- <strong><a href=\"https://tmhitech.vn/bom-tiem-dien-pg-907s-progetti\" target=\"_blank\">Bơm tiêm điện PG-907S Progetti </a></strong>có màn hình cảm ứng LCD 4.3 inch và màn hình cảm ứng thân thiện với người dùng</p>\r\n\r\n<p>- Phù hợp với IEC 60601, chỉ định an toàn cao với CPU kép tự động xác định kích thước cho ống tiêm 5, 10, 20, 30, 50/60 ml Chức năng chống dự trữ duy nhất trên động cơ để ngăn chặn thượng nguồn</p>\r\n\r\n<p>- DERS (hệ thống giảm lỗi) có sẵn</p>\r\n\r\n<p>- Mạng Wi-Fi không dây có sẵn và hệ thống điều khiển từ xa vớitrạm trung tâm truyền (tùy chọn)</p>\r\n\r\n<p>- Loại bảo vệ điện: Loại I3</p>\r\n\r\n<p>- Cấp bảo vệ điện: Loại bằng chứng khử rung CF áp dụng một phần</p>\r\n\r\n<p>- Bảo vệ chống lại sự xâm nhập của chất lỏng: IP24</p>\r\n\r\n<p>- Nguyên tắc làm việc: động cơ bước dẫn vít hoạt động liên tục</p>\r\n\r\n<p>- Phân loại: Bơm tiêm với hệ thống mở để sử dụng ống tiêm phổ thương hiệu</p>\r\n\r\n<p>- Các tính năng đặc biệt: Áp suất động, chế độ ban đêm, stand-by, khóa màn hình, bảo vệ pass-word,</p>\r\n\r\n<p>- Tốc độ thay đổi trong khi chạy, tính toán tự động, bộ nhớ của cài đặt truyền cuối cùng, tính toán tựđộng tập trung.</p>\r\n\r\n<p><img alt=\"Bơm tiêm điện PG-907S Progetti\" src=\"https://tmhitech.vn/Uploads/images/products/bom-tiem-dien-pg-907-s-1(1).jpg\" /></p>\r\n\r\n<p>Bơm tiêm điện PG-907S Progetti (Ý)</p>\r\n\r\n<h2><strong>Thông số kỹ thuật của sản phẩm</strong></h2>\r\n\r\n<p>- Hiển thị: Màn hình cảm ứng 4.3” TFT</p>\r\n\r\n<p>- Ống tiêm tương thích: 5ml, 10ml, 20ml, 30ml , 50/60ml</p>\r\n\r\n<p>- Các mức độ chọn lọc: 12 mức</p>\r\n\r\n<p>- Lịch sử ghi nhớ: Hơn 5000 lần</p>\r\n\r\n<p>- Kích thước: 394(W)*90(D)*123(H) mm</p>\r\n\r\n<p>- Trọng lượng:1,7kg</p>\r\n\r\n<p>- Nguồn cung cấp : 100-240V 50/60Hz</p>\r\n\r\n<p>Để đặt mua <strong>bơm tiêm điện PG-907S Progetti (Ý)</strong> dùng cho khoa <a href=\"https://tmhitech.vn/cap-cuu-hoi-suc-tich-cuc\" target=\"_blank\"><strong>cấp cứu hồi sức tích cực</strong></a> quý khách hãy liên hệ ngay với chúng tôi <strong>Công ty Cổ phần Thiết bị Công nghệ Cao TM </strong>theo số hotline<strong>: 098 969 7177 </strong>để được tư vấn về sản phẩm một cách nhanh chóng nhất. Chúng tôi rất mong muốn có thể hợp tác và mang đến những dòng sản phẩm thiết bị y tế chất lượng, giá thành hợp lý đến cho bệnh viện, phòng khám của đơn vị bạn. </p>', 1, 65, 18, '2021-02-13 15:27:49', '2021-02-13 15:27:49', NULL, '/storage/photos/product/1/nqc6KrI2TV3kFitbtGjW.jpg', 15000000, 100),
(52, 'HỆ THỐNG ĐIỆN NÃO 34, 58, 90 KÊNH NEUROWERK EEG (ĐỨC) 2', 'he-thong-dien-nao-34-58-90-kenh-neurowerk-eeg-duc-2', 'NEUROWERK EEG', 'Đức', '<ul>\r\n <li>Hiển thị đầy đủ cơ sở dữ liệu bệnh nhân</li>\r\n <li>Bao gồm các phiên bản 34, 58, 90 kênh khuếch đại</li>\r\n <li>Vận hành phần mền đơn giản</li>\r\n <li>Khả năng thiết lập các thông số trực tuyến</li>\r\n <li>Lập biểu đồ biên độ của các đoạn EEG được lựa chọn</li>\r\n <li>Truyền dữ liệu ghi điện não qua hệ thống mạng</li>\r\n <li>Bảo hành 12 tháng</li>\r\n</ul>', NULL, 1, 52, 4, '2021-02-13 15:53:49', '2021-02-13 16:01:18', NULL, '/storage/photos/product/1/r5Fsqlb87nhpIKvbLROJ.jpg', 19000000, 100),
(53, 'MÁY ĐO ĐIỆN TIM GẮNG SỨC CARDIOPART 12 ECG AMEDTEC 2', 'may-do-dien-tim-gang-suc-cardiopart-12-ecg-amedtec-2', 'CardioPart 12 ECG', 'Đức', '<ul>\r\n <li>\r\n <p>Thiết bị ghi CardioPart 12 ECG có thể kết nối USB hoặc Bluetoot, </p>\r\n </li>\r\n <li>\r\n <p>Lý tưởng cho y học thể thao nhờ có thể truyền dữ liệu không dây </p>\r\n </li>\r\n <li>\r\n <p>Kiểm soát tùy chọn máy chạy bộ hoặc máy đo tốc độ xe đạp và máy đo tiếng vang </p>\r\n </li>\r\n <li>\r\n <p>Hoạt động bằng một nút bấm và người dùng được hướng dẫn cho việc sử dụng chương trình</p>\r\n </li>\r\n <li>\r\n <p>Kiểm tra chất lượng ghi của từng điện cực trước khi tiến hành kiểm tra</p>\r\n </li>\r\n <li>\r\n <p>Kiểm tra căng thẳng ECG có thể chạy hoàn toàn tự động -> mà không cần bất kỳ sự can thiệp nào của người vận hành</p>\r\n </li>\r\n <li>\r\n <p> Chế độ xem lại toàn bộ ECG 12 đạo trình có phân tích sự bất thường trong các lần đo</p>\r\n </li>\r\n <li>\r\n <p>Kết quả cuối cùng tự động có thể chỉnh sửa, các khối văn bản được xác định trước</p>\r\n </li>\r\n</ul>', NULL, 1, 53, 4, '2021-02-13 15:56:08', '2021-02-13 16:01:29', NULL, '/storage/photos/product/1/W910F6VcTUEyEiyedNQU.jpg', 17000000, 100),
(54, 'MÁY ĐO CHỨC NĂNG HÔ HẤP KSP-1000', 'may-do-chuc-nang-ho-hap-ksp-1000', 'KSP-1000', 'Đức', '<ul>\r\n <li>Tiêu chuẩn chất lượng Châu Âu</li>\r\n <li>Kết nối với PC qua USB / Bluetooth</li>\r\n <li>Thiết kế chi phí-hiệu quả, bền, các thành phần cơ khí có tuổi thọ lớn</li>\r\n <li>Sử dụng các bộ lọc vi khuẩn tiêu chuẩn có giá hợp lý hoặc miếng ngậm tiêu chuẩn</li>\r\n <li>Không có bộ phận chuyển động, hiệu chuẩn nội bộ tự động</li>\r\n <li>Dễ dàng để làm sạch và khử trùng</li>\r\n <li>Đo tất cả các thông số chức năng phổi tiêu chuẩn</li>\r\n <li>Phát hành báo cáo bản in rõ ràng</li>\r\n</ul>', '<h2><strong>Các tính năng nổi bật của máy đo chức năng hô hấp KSP-1000</strong></h2>\r\n\r\n<ul>\r\n <li>Tiêu chuẩn chất lượng Châu Âu</li>\r\n <li>Kết nối với PC qua USB / Bluetooth</li>\r\n <li>Thiết kế chi phí-hiệu quả, bền, các thành phần cơ khí có tuổi thọ lớn</li>\r\n <li>Sử dụng các bộ lọc vi khuẩn tiêu chuẩn có giá hợp lý hoặc miếng ngậm tiêu chuẩn</li>\r\n <li>Không có bộ phận chuyển động, hiệu chuẩn nội bộ tự động</li>\r\n <li>Dễ dàng để làm sạch và khử trùng</li>\r\n <li>Đo tất cả các thông số chức năng phổi tiêu chuẩn</li>\r\n <li>Phát hành báo cáo bản in rõ ràng</li>\r\n</ul>\r\n\r\n<p><img alt=\"Máy đo chức năng hô hấp KSP-1000 Kalamed\" src=\"https://tmhitech.vn/Uploads/images/products/may-do-chuc-nang-ho-hap-ksp-1000-duc.jpg\" /></p>\r\n\r\n<p><em>Máy đo chức năng hô hấp KSP-1000 Kalamed</em></p>\r\n\r\n<h2><strong>Các tính năng hiệu suất</strong></h2>\r\n\r\n<p>Hệ thống phế dung kế máy tính KSP-1000 có thể dễ dàng cài đặt trên bất kỳ mạng Windows office. Nó có thể được kết nối với PC qua cáp USB thông thường cũng như qua Bluetooth. Cơ sở dữ liệu và giao diện bệnh nhân, e. g. DDT / HL7 cho hệ thống EDP văn phòng / bệnh viện là các tính năng tiêu chuẩn, cũng như tích hợp dễ dàng vào các môi trường mạng hiện có.</p>\r\n\r\n<p>Hệ thống phế dung kế máy tínhKSP-1000 cung cấp các chế độ khác nhau về đo lường như thở ra và hít vào bắt buộc, đo dung tích sống tĩnh cũng như các giá trị ngưỡng hô hấp tối đa. Hiệu chỉnh phế dung kế phức tạp không còn cần thiết nữa.</p>\r\n\r\n<p>Bất kỳ số lượng dữ liệu bệnh nhân mong muốn và bản ghi phê dung được lưu trữ tự động tập trung và có thể được hiển thị bất kỳ lúc nào trên bất kỳ máy tính nào trong mạng nội bộ và được in trênbất kỳ máy in thông thường nào.</p>\r\n\r\n<p>Ống đo tích hợp an toàn có thể được khử trùng bằng chất khử trùng lạnh. Điều này cũng cho phép sử dụng miếng ngậm bằng cát tông hoặc nhựa thông thường. Tuy nhiên, chúng tôi khuyên bạn nên sử dụng bộ lọc vi khuẩn dùng một lần từ các phụ kiện của chúng tôi.</p>\r\n\r\n<p> </p>\r\n\r\n<p><img alt=\"Sản phẩm giúp theo dõi các chỉ số hô hấp một cách chính xác\" src=\"https://tmhitech.vn/Uploads/images/products/may-do-chuc-nang-ho-hap-ksp-1000-duc-1.jpg\" /></p>\r\n\r\n<p><em>Sản phẩm giúp theo dõi các chỉ số hô hấp một cách chính xác</em></p>\r\n\r\n<p> </p>\r\n\r\n<p><strong>Thông số kỹ thuật của sản phẩm</strong></p>\r\n\r\n<p> </p>\r\n\r\n<table cellpadding=\"1\" cellspacing=\"1\">\r\n <tbody>\r\n <tr>\r\n <td>Lưu lượng kế</td>\r\n <td>\r\n <p>Nguyên lý sóng (siêu âm)</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <p>Dung sai</p>\r\n </td>\r\n <td>\r\n <p>+/- 3 %</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <p>Độ phân giải</p>\r\n </td>\r\n <td>\r\n <p>8 mL / s</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <p>Dải lưu lượng </p>\r\n </td>\r\n <td>\r\n <p>+/- 18 L / s</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <p>Tốc độ lấy mẫu kỹ thuật số </p>\r\n </td>\r\n <td>\r\n <p> 100MHz</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <p>Nguồn cung cấp</p>\r\n </td>\r\n <td>\r\n <p>USB / pin tích hợp cho Bluetooth</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <p>Thở ra và hít vào bắt buộc</p>\r\n </td>\r\n <td>\r\n <p>FVC, FEV1, FEV0,5, FEV3, PIF và nhiều mục khác</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <p>Dung tích sống hít vào</p>\r\n </td>\r\n <td>\r\n <p>VC, IVC, ERV, TV và nhiều mục khác</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <p>Ngưỡng hô hấp</p>\r\n </td>\r\n <td>\r\n <p>MVV</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <p>Hệ điều hành máy tính</p>\r\n </td>\r\n <td>\r\n <p>Windows XP / Windows 7</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <p>Giao diện bắt buộc</p>\r\n </td>\r\n <td>\r\n <p>USB / Bluetooth</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <p>Chuỗi hoạt ảnh cho trẻ em</p>\r\n </td>\r\n <td>\r\n <p>Nến / rèm</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <p>Kích thước</p>\r\n </td>\r\n <td>\r\n <p>150 x 60 x 27 mm</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <p>Cân nặng USB</p>\r\n </td>\r\n <td>\r\n <p>100 g / Bluetooth 200 g</p>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<p>Để đặt mua sản phẩm bạn hãy liên hệ ngay với Công ty Cổ phần Thiết bị Công nghệ Cao TM theo số hotline: <strong>098 969 7177 </strong>để được tư vấn và đặt hàng một cách nhanh chóng nhất.</p>', 1, 54, 10, '2021-02-13 16:04:30', '2021-02-13 16:04:30', NULL, '/storage/photos/product/1/uLJzl21hjfzEwEqTBOb9.jpg', 21000000, 100),
(55, 'MÁY ĐO THÍNH LỰC AT700E AURITEC', 'may-do-thinh-luc-at700e-auritec', 'AT700e', 'Đức', '<ul>\r\n <li>Máy đo thính lực độc lập với máy tính Windows7 tích hợp</li>\r\n <li>Bảng đo thính lực thoải mái với các thanh trượt dB, ngắt, tần số...</li>\r\n <li>Hướng dẫn sử dụng vượt trội</li>\r\n <li>Cơ sở dữ liệu tích hợp cho dữ liệu đo lường và bệnh nhân</li>\r\n <li>Làm mờ đường cong đo lường cũ vào phép đo hiện tại</li>\r\n <li>Tổng số độc lập của phần cứng máy tính bên ngoài</li>\r\n <li>Tiêu chuẩn: 125 Hz bis 8000 H</li>\r\n <li>Âm cao đến 16000Hz</li>\r\n <li>Lên đến 3 kênh đo độc lập với chức năng pha trộn</li>\r\n <li>Âm lượng cao</li>\r\n <li>Bảo hành 12 tháng</li>\r\n</ul>', '<h2><strong>Đặc điểm chính của máy đo thính lực AT700e Auritec </strong></h2>\r\n\r\n<p>- <strong><a href=\"https://tmhitech.vn/may-do-thinh-luc-at700e-auritec\" target=\"_blank\">Máy đo thính lực AT700e Auritec </a></strong>độc lập với máy tính Windows7 tích hợp</p>\r\n\r\n<p>- Bảng đo thính lực thoải mái với các thanh trượt dB, ngắt, tần số, tiếp nhận và trả về khóa bằng bàn phím PC tích hợp</p>\r\n\r\n<p>- Hướng dẫn sử dụng vượt trội</p>\r\n\r\n<p>- Cơ sở dữ liệu tích hợp cho dữ liệu đo lường và bệnh nhân</p>\r\n\r\n<p>- Làm mờ đường cong đo lường cũ vào phép đo hiện tại</p>\r\n\r\n<p>- Tổng số độc lập của phần cứng máy tính bên ngoài</p>\r\n\r\n<p><img alt=\"Máy đo thính lực AT700e Auritec\" src=\"https://tmhitech.vn/Uploads/images/products/may-do-thinh-luc-at-700e-auritec-3.jpg\" /></p>\r\n\r\n<p><em>Máy đo thính lực AT700e Auritec</em></p>\r\n\r\n<h3><strong>Các mức hiệu chuẩn riêng biệt cho từng tín hiệu và tần số thử nghiệm :</strong></h3>\r\n\r\n<p>- Trình bày trực tuyến tất cả các quá trình đo thính lực</p>\r\n\r\n<p>- Ghi lại hàng đo thứ hai cho tất cả các đầu dò trong một thính đồ đo</p>\r\n\r\n<p>- Đo thính lực thính lực với kích hoạt tích hợp các bài kiểm tra ngôn ngữ từ ổ cứng</p>\r\n\r\n<p>- Lên đến 3 kênh đo độc lập với chức năng pha trộn</p>\r\n\r\n<p>- Âm lượng cao</p>\r\n\r\n<p>- Truy cập mạng và cơ sở dữ liệu, im - và xuất qua giao diện BDT / GDT</p>\r\n\r\n<p>- Thông qua máy tính, bạn độc lập với phần cứng bên ngoài, chỉ cần“ cắm và chạy ”</p>\r\n\r\n<p>- Có thể Nâng cấp với các bài kiểm tra bằng giọng nói-tiếng ồn hiện đại của Matrix</p>\r\n\r\n<p>- Máy đo thính lực có thể được nâng cấp với tối đa 8 loa để kiểm tra thính giác định hướng</p>\r\n\r\n<p><img alt=\"Máy đo thính lực giúp kiểm tra chính xác các dữ liệu\" src=\"https://tmhitech.vn/Uploads/images/products/may-do-thinh-luc-at-700e-auritec-2.jpg\" /></p>\r\n\r\n<p><em>Máy đo thính lực giúp kiểm tra chính xác các dữ liệu</em></p>\r\n\r\n<h2><strong>Dữ liệu kỹ thuật của máy đo thính lực AT700e Auritec </strong></h2>\r\n\r\n<p>- Tần suất đo thính lực tinh khiết</p>\r\n\r\n<p>Tiêu chuẩn: 125 Hz bis 8000 Hz</p>\r\n\r\n<p>Âm cao đến 16000Hz</p>\r\n\r\n<p><strong>- Tín hiệu mặt nạ :</strong></p>\r\n\r\n<p>Dải hẹp cho mặt nạ tông màu tinh khiết e (= TVR)</p>\r\n\r\n<p>Băng rộng (tiếng ồn trắng) (= BB-noise )</p>\r\n\r\n<p>Giọng nói có trọng số giọng nói (= SVR)</p>\r\n\r\n<p><strong>- Đầu ra:</strong></p>\r\n\r\n<p>Máy dẫn khí HDA280</p>\r\n\r\n<p>Dây dẫn xương B-71</p>\r\n\r\n<p>Trường tự do phải và trái</p>\r\n\r\n<p>Thiết bị nghe được sử dụng trong đo thính lực có giọng nói.</p>\r\n\r\n<p><strong>- PC :</strong></p>\r\n\r\n<p>Windows7 với bộ xử lý Intel</p>\r\n\r\n<p>Loại II cho giai điệu tinh khiết sau DIN EN 60645-1</p>\r\n\r\n<p>Lớp B-E cho thính lực thính giác sau DIN EN 60645-2</p>\r\n\r\n<p>Dòng sản phẩm <strong>máy đo thính lực AT700e Auritec</strong> được rất nhiều các đơn vị bệnh viện sử dụng nhằm nâng cao chất lượng dịch vụ tốt nhất. Để đặt mua sản phẩm, hãy liên hệ ngay với chúng tôi theo số hotline: <strong>098 969 7177</strong> để được tư vấn và hỗ trợ nhanh nhất về sản phẩm. </p>', 1, 55, 8, '2021-02-13 16:12:09', '2021-02-13 16:12:09', NULL, '/storage/photos/product/1/JchZf4rDGU2qpoz6vj2h.jpg', 20000000, 100),
(56, '<NAME>UYÊN SỌ DLOPHIN 4D VIASONIX', 'may-doppler-xuyen-so-dlophin-4d-viasonix', 'viasonix', 'TÂY BAN NHA', '<ul>\r\n <li>Xác định co thắt mạch sau chảy máu dưới nhện</li>\r\n <li>Kiểm tra đáp ứng và cơ chế tự điều hòa của các mạch máu não</li>\r\n <li>Phát hiện các tín hiệu thoáng qua tần số cao</li>\r\n <li>Kiểm tra chết nãoTheo dõi liên tục trong thời gian dài</li>\r\n <li>Theo dõi khi có nghi ngờ tăng áp lực nội sọ,...</li>\r\n <li>Màn hình cảm ứng chạm 18'' hiển thị đầy đủ các thông số</li>\r\n <li>Xuất báo cáo dễ dàng</li>\r\n <li>Bảo hành 12 tháng</li>\r\n</ul>', '<p><em><strong><a href=\"https://tmhitech.vn/may-doppler-xuyen-so-dlophin-4d-viasonix\" target=\"_blank\">Máy doppler xuyên so Dlophin 4D Viasonix</a> </strong>là thiết bị đo vận tốc dòng máu nội sọ, ngoài sọ và ngoại biên, đánh giá được tình trạng chức năng của các mạch máu não. Là phương pháp không nguy hại, chi phí thực hiện thấp có thể tiến hành theo dõi bệnh nhân nhiều lần, có thể làm ngay tại giường đặc biệt là đối với bệnh nhân cấp cứu và phẫu thuật.</em></p>\r\n\r\n<h2><strong>Đặc điểm nổi bật của máy doppler xuyên sọ Dlophin 4D Viasonix</strong></h2>\r\n\r\n<p><strong>Máy Doppler xuyên sọ Dolphin 4D Viasonix</strong> với màn hình cảm ứng chạm hoàn toàn 18” cho phép theo dõi dạng sóng não sắc nét, điều chỉnh và căn chuẩn dễ dàng.</p>\r\n\r\n<p><img alt=\"Máy doppler xuyên sọ Dolphin 4D đo chính xác chức năng của mạch máu não\" src=\"https://tmhitech.vn/Uploads/images/products/may-doppler-xuyen-so-dlophin-4d-viasonix-chinh-xac.png\" /></p>\r\n\r\n<p><em>Máy doppler xuyên sọ Dolphin 4D đo chính xác chức năng của mạch máu não</em></p>\r\n\r\n<p>Giao diện thân thiện, tích hợp nhiều bài kiểm tra với hình minh họa rõ ràng, trực quan giúp người dùng dễ theo dõi và xác định đúng vị trí các mạnh mãu não. Xuất báo cáo dễ dàng, có thể tùy chỉnh theo từng mục đích sử dụng khác nhau.</p>\r\n\r\n<p><strong>Các ứng dụng tiêu biểu</strong></p>\r\n\r\n<p>- Xác định co thắt mạch sau chảy máu dưới nhện</p>\r\n\r\n<p>- Kiểm tra đáp ứng và cơ chế tự điều hòa của các mạch máu não</p>\r\n\r\n<p>- Phát hiện các tín hiệu thoáng qua tần số cao</p>\r\n\r\n<p>- Kiểm tra chết nãoTheo dõi liên tục trong thời gian dài</p>\r\n\r\n<p>- Theo dõi khi có nghi ngờ tăng áp lực nội sọ,...</p>\r\n\r\n<p><img alt=\"Các thông số kỹ thuật sẽ được hiển thị đầy đủ trên màn hình \" src=\"https://tmhitech.vn/Uploads/images/products/may-doppler-xuyen-so-dlophin-4d-viasonix-hien-dai.png\" /></p>\r\n\r\n<p><em>Các thông số kỹ thuật sẽ được hiển thị đầy đủ trên màn hình </em></p>\r\n\r\n<p><strong>Tiêu chuẩn kỹ thuật của sản phẩm</strong></p>\r\n\r\n<p>- Tín hiệu: Có thể phát lại phổ Doppler với hình ảnh và âm thanh đầy đủ</p>\r\n\r\n<p>- Bộ nhớ: 4GLưu: Tự động</p>\r\n\r\n<p>- Xuất dữ liệu: chụp màn hình, dạng sóng (excel), báo cáo (PDF), tập tin (DOL), phim (WMV)</p>\r\n\r\n<p>- Mạng: DICOM (bao gồm cả SR), HL7, GDT, SQL</p>\r\n\r\n<p><strong>Hiện máy doppler xuyên sọ Dlophin 4D Viasonix</strong> đang được phân phối bởi công ty Cổ Phần Thiết Bị Công nghệ Cao TM, quý khách hàng có nhu cầu hãy liên hệ ngay cho chúng tôi theo số hotline: <strong>098 969 7177 </strong>để được tư vấn và giải đáp về sản phẩm một cách nhanh chóng và chính xác nhất nhé!</p>', 1, 56, 17, '2021-02-13 16:14:13', '2021-02-13 16:14:13', NULL, '/storage/photos/product/1/95CZ0bM2uPwycbAM1VIb.jpg', 17000000, 100);
-- --------------------------------------------------------
--
-- Cấu trúc bảng cho bảng `product_image`
--
CREATE TABLE `product_image` (
`id` bigint(20) UNSIGNED NOT NULL,
`image_path` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`product_id` int(11) DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Đang đổ dữ liệu cho bảng `product_image`
--
INSERT INTO `product_image` (`id`, `image_path`, `product_id`, `created_at`, `updated_at`) VALUES
(57, '/storage/photos/product/1/QnFYLyDJqMZmzwW2rr5I.jpg', 23, '2020-09-09 02:17:16', '2020-09-09 02:17:16'),
(60, '/storage/photos/product/1/X5EOZrcZT6uaoM7XnPDN.jpg', 23, '2020-09-09 02:17:16', '2020-09-09 02:17:16'),
(61, '/storage/photos/product/1/Fn3HfPVMvzKKkOg96hqG.jpg', 24, '2020-09-09 04:49:06', '2020-09-09 04:49:06'),
(62, '/storage/photos/product/1/drCtWHJpoVWfg1JMIAIz.jpg', 24, '2020-09-09 04:49:06', '2020-09-09 04:49:06'),
(63, '/storage/photos/product/1/3GvU5fnKbqFSywLPoOH7.png', 24, '2020-09-09 04:49:06', '2020-09-09 04:49:06'),
(64, '/storage/photos/product/1/XMWV1BoAPGJjioCz2fVr.jpg', 24, '2020-09-09 04:49:06', '2020-09-09 04:49:06'),
(65, '/storage/photos/product/1/zjUG1O43lDMMydG8IY2W.jpg', 25, '2020-09-09 08:50:34', '2020-09-09 08:50:34'),
(66, '/storage/photos/product/1/HVelnbMBMW9tTAfuVINM.jpg', 25, '2020-09-09 08:50:34', '2020-09-09 08:50:34'),
(72, '/storage/photos/product/1/BAXaffaLgfmytfoC61ey.jpg', 27, '2020-09-10 15:20:56', '2020-09-10 15:20:56'),
(73, '/storage/photos/product/1/WytcJY10t6sisQzSkyvI.jpg', 27, '2020-09-10 15:20:56', '2020-09-10 15:20:56'),
(84, '/storage/photos/product/3/gPwMw633ayyqtZZtT9DW.jpg', 32, '2020-09-28 03:51:10', '2020-09-28 03:51:10'),
(85, '/storage/photos/product/3/SE0nn0TYVE50BV9UQujU.jpg', 32, '2020-09-28 03:51:10', '2020-09-28 03:51:10'),
(86, '/storage/photos/product/3/oVBY3E7H1cViV7znTOje.jpg', 32, '2020-09-28 03:51:10', '2020-09-28 03:51:10'),
(87, '/storage/photos/product/3/zkpsEkR84XxswQgiZkiV.jpg', 34, '2020-10-10 15:23:02', '2020-10-10 15:23:02'),
(88, '/storage/photos/product/3/LCKgV9J8O7ICQCAnmOyf.jpg', 34, '2020-10-10 15:23:02', '2020-10-10 15:23:02'),
(89, '/storage/photos/product/1/4AusbPV3rEo20huh8Nn0.jpg', 36, '2020-11-04 07:06:16', '2020-11-04 07:06:16'),
(90, '/storage/photos/product/1/ixXMb7POPuLYAMW0j8WQ.jpg', 36, '2020-11-04 07:06:16', '2020-11-04 07:06:16'),
(91, '/storage/photos/product/1/rPFQlNFCufyWoQoocBOh.jpg', 36, '2020-11-04 07:06:16', '2020-11-04 07:06:16'),
(92, '/storage/photos/product/1/qTjMod4NpZVL1PnzlfrW.jpg', 40, '2021-02-13 14:31:43', '2021-02-13 14:31:43'),
(93, '/storage/photos/product/1/GOWOTpHaRNwGAMnOj2bV.jpg', 40, '2021-02-13 14:31:43', '2021-02-13 14:31:43'),
(94, '/storage/photos/product/1/1YRhE4Mroi5lwwBiVtXI.jpg', 43, '2021-02-13 14:47:07', '2021-02-13 14:47:07'),
(95, '/storage/photos/product/1/ZOhJzy7lNzIMVW930ZA4.jpg', 43, '2021-02-13 14:47:07', '2021-02-13 14:47:07'),
(96, '/storage/photos/product/1/pFoT1uMBsxpDgvB8DjE1.jpg', 44, '2021-02-13 14:52:58', '2021-02-13 14:52:58'),
(97, '/storage/photos/product/1/SYTFzfG55U0tFqJ6Djx7.jpg', 44, '2021-02-13 14:52:58', '2021-02-13 14:52:58'),
(98, '/storage/photos/product/1/7RQTaDdecPcjjCHdP0YR.jpg', 45, '2021-02-13 14:55:16', '2021-02-13 14:55:16'),
(99, '/storage/photos/product/1/fm6vA8behZY9tr73C0y3.jpg', 46, '2021-02-13 14:57:43', '2021-02-13 14:57:43'),
(100, '/storage/photos/product/1/MBQ4njJ7KaycgU55Zb0l.jpg', 46, '2021-02-13 14:57:43', '2021-02-13 14:57:43'),
(101, '/storage/photos/product/1/lMNeopPJFnmcgmeAESdE.jpg', 48, '2021-02-13 15:13:57', '2021-02-13 15:13:57'),
(102, '/storage/photos/product/1/YCBtNQxkRffxgxq5rNB5.jpg', 49, '2021-02-13 15:21:52', '2021-02-13 15:21:52'),
(103, '/storage/photos/product/1/HeWE6PomxzNLlKCiF4Yj.jpg', 49, '2021-02-13 15:21:52', '2021-02-13 15:21:52'),
(104, '/storage/photos/product/1/TRsYpIxAIb56UFQKiaIC.jpg', 52, '2021-02-13 15:53:49', '2021-02-13 15:53:49'),
(105, '/storage/photos/product/1/FWXHdJvQ9Gq691yY69kE.jpg', 52, '2021-02-13 15:53:49', '2021-02-13 15:53:49'),
(106, '/storage/photos/product/1/8iy7OIrZVgXghherLbL7.jpg', 52, '2021-02-13 15:53:49', '2021-02-13 15:53:49'),
(107, '/storage/photos/product/1/8ZSIlJlSk9KEgRdXcsqH.jpg', 54, '2021-02-13 16:04:32', '2021-02-13 16:04:32'),
(108, '/storage/photos/product/1/RRHGXgT0r2oSVagHqAKF.jpg', 56, '2021-02-13 16:14:15', '2021-02-13 16:14:15');
-- --------------------------------------------------------
--
-- Cấu trúc bảng cho bảng `product_tag`
--
CREATE TABLE `product_tag` (
`id` bigint(20) UNSIGNED NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`product_id` int(11) DEFAULT NULL,
`tag_id` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Đang đổ dữ liệu cho bảng `product_tag`
--
INSERT INTO `product_tag` (`id`, `created_at`, `updated_at`, `product_id`, `tag_id`) VALUES
(3, NULL, NULL, 21, 1),
(4, NULL, NULL, 21, 5),
(5, NULL, NULL, 22, 5),
(6, NULL, NULL, 22, 6),
(8, '2020-09-09 02:17:16', '2020-09-09 02:17:16', 23, 7),
(9, '2020-09-09 04:49:06', '2020-09-09 04:49:06', 24, 5),
(10, '2020-09-09 04:49:06', '2020-09-09 04:49:06', 24, 8),
(11, '2020-09-09 08:50:34', '2020-09-09 08:50:34', 25, 9),
(12, '2020-09-09 08:58:17', '2020-09-09 08:58:17', 26, 9),
(13, '2020-09-10 14:28:10', '2020-09-10 14:28:10', 27, 10),
(14, '2020-09-10 15:20:56', '2020-09-10 15:20:56', 27, 11),
(21, '2020-12-31 09:51:51', '2020-12-31 09:51:51', 35, 21),
(22, '2020-12-31 09:51:51', '2020-12-31 09:51:51', 35, 22),
(23, '2020-12-31 09:52:05', '2020-12-31 09:52:05', 34, 23),
(24, '2020-12-31 09:52:05', '2020-12-31 09:52:05', 34, 24),
(25, '2020-12-31 09:52:05', '2020-12-31 09:52:05', 34, 25),
(26, '2021-01-28 15:06:41', '2021-01-28 15:06:41', 37, 26),
(27, '2021-02-13 14:25:44', '2021-02-13 14:25:44', 39, 27),
(28, '2021-02-13 14:25:44', '2021-02-13 14:25:44', 39, 28),
(29, '2021-02-13 14:31:43', '2021-02-13 14:31:43', 40, 29);
-- --------------------------------------------------------
--
-- Cấu trúc bảng cho bảng `projects`
--
CREATE TABLE `projects` (
`id` bigint(20) UNSIGNED NOT NULL,
`title` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`slug` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`summary` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`image_path` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`content` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`user_id` int(11) DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Đang đổ dữ liệu cho bảng `projects`
--
INSERT INTO `projects` (`id`, `title`, `slug`, `summary`, `image_path`, `content`, `user_id`, `deleted_at`, `created_at`, `updated_at`) VALUES
(2, 'Dự án cung cấp thiết bị cho bệnh viện Y học Phóng Xạ và U Bướu Quân Đội', 'du-an-cung-cap-thiet-bi-cho-benh-vien-y-hoc-phong-xa-va-u-buou-quan-doi', 'Công ty Cổ phần Thiết bị Công nghệ Cao TM có trụ sở đặt tại 42 Phương Mai, Đống Đa, Hà Nội nhận được sự tin tưởng của bệnh viện Y học Phóng xạ và U Bướu <NAME>, chúng tôi đã lắp đặt thành công nhiều trang thiết bị hiện đại cho bệnh viện như: Hệ thống gây kèm thở <NAME>, hệ thống đèn mổ có camera SL700 Led Daray (Anh Quốc)', '/storage/photos/project/3/0qzdU3JnIhSRlMaKJ0qZ.jpg', '<p><strong>Viện Y học phóng xạ và U bướu Quân đội</strong><br />\r\n18 Định Công Thượng, Định Công, Hoàng Mai, Hà Nội<br />\r\nSố điện thoại: 0243 8552 353</p>\r\n\r\n<p>Mời các bạn cùng xem một số hình ảnh kĩ sư của TM Hi-Tech lắp đặt và bàn giao máy cho bệnh viện:</p>\r\n\r\n<p><img alt=\"Kỹ sư của TM Hi-Tech lắp đặt thành công đèn chiếu sáng SL 700 Daray cho bệnh viện\" src=\"https://tmhitech.vn/Uploads/images/news/lap-dat-thiet-bi-benh-vien-y-hoc-phong-xa-u-buou-quan-doi.jpg\" /></p>\r\n\r\n<p><em>Kỹ sư của TM Hi-Tech lắp đặt thành công đèn chiếu sáng SL 700 Daray cho bệnh viện </em></p>\r\n\r\n<p><em><img alt=\"Kỹ sư TM Hi-Tech lắp đặt và bàn giao máy gây mê kèm thở <NAME>\" src=\"https://tmhitech.vn/Uploads/images/news/lap-dat-thiet-bi-benh-vien-y-hoc-phong-xa-u-buou-quan-doi-1.jpg\" /></em></p>\r\n\r\n<p><em>Kỹ sư TM Hi-Tech lắp đặt và bàn giao máy gây mê kèm thở <NAME></em></p>\r\n\r\n<p><em>Để đặt mua<strong> thiết bị bệnh viện</strong> cũng như được tư vấn cụ thể về từng sản phẩm, quý khách hàng hãy liên hệ ngay với <strong>Công ty Cổ phần Thiết bị Công nghệ Cao TM</strong> theo số hotline: <strong>098 969 7177</strong> để được tư vấn và hỗ trợ nhanh nhất. </em></p>', 3, NULL, '2020-09-23 16:35:36', '2020-09-23 16:35:36');
-- --------------------------------------------------------
--
-- Cấu trúc bảng cho bảng `recruitments`
--
CREATE TABLE `recruitments` (
`id` bigint(20) UNSIGNED NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
`content` text COLLATE utf8mb4_unicode_ci DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Đang đổ dữ liệu cho bảng `recruitments`
--
INSERT INTO `recruitments` (`id`, `created_at`, `updated_at`, `deleted_at`, `content`) VALUES
(1, '2020-09-21 13:21:46', '2020-09-21 13:21:46', NULL, '<p>Đang cập nhật...</p>');
-- --------------------------------------------------------
--
-- Cấu trúc bảng cho bảng `roles`
--
CREATE TABLE `roles` (
`id` bigint(20) UNSIGNED NOT NULL,
`name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`des` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`user_id` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Đang đổ dữ liệu cho bảng `roles`
--
INSERT INTO `roles` (`id`, `name`, `des`, `deleted_at`, `created_at`, `updated_at`, `user_id`) VALUES
(1, '<NAME>', 'Nhân viên trong hệ thống', NULL, NULL, '2021-03-10 15:53:44', 1),
(3, 'Admin', 'Quản trị viên', NULL, NULL, '2021-01-26 14:38:08', 1),
(4, 'xxxcc', 'cccxx', '2021-01-03 07:38:02', '2020-09-15 13:20:15', '2021-01-03 07:38:02', 3),
(5, 'Shin33', 'xxx', '2020-10-06 02:09:42', '2020-09-15 14:28:50', '2020-10-06 02:09:42', 3),
(6, 'Khách hàng', 'Khách hàng', NULL, '2021-01-26 14:10:42', '2021-01-26 14:10:42', 1);
-- --------------------------------------------------------
--
-- Cấu trúc bảng cho bảng `services`
--
CREATE TABLE `services` (
`id` bigint(20) UNSIGNED NOT NULL,
`content` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Đang đổ dữ liệu cho bảng `services`
--
INSERT INTO `services` (`id`, `content`, `deleted_at`, `created_at`, `updated_at`) VALUES
(1, '<p><strong>Với đội ngũ chuyên gia có kinh nghiệm gần 20 năm tham gia các dự án đầu tư mua sắm trang thiết bị y tế, TM Hitech đảm bảo sẽ đưa ra những tư vấn hữu ích cho dự án của bạn. Chúng tôi cam kết tư vấn miễn phí trong toàn bộ dự án với mục tiêu tạo sự tin tưởng và mối liên hệ tốt với khách hàng.</strong></p>\r\n\r\n<p>Trong bối cảnh thị trường rộng mở như hiện nay, có rất nhiều dòng thiết bị y tế với giá cả và chất lượng khác nhau để khách hàng lựa chọn. Điều này đôi khi làm khó cho các quyết định đầu tư của khách hàng.</p>\r\n\r\n<p>Kinh nghiệm lâu năm trong ngành thiết bị y tế, TM Hitech tự tin có thể hỗ trợ khách hàng thiết kế tổng thể dự án, xây dựng cấu hình chi tiết các dòng thiết bị sử dụng cho bệnh viện hay phòng khám của bạn.</p>\r\n\r\n<p><strong>Dịch vụ trong bảo hành</strong></p>\r\n\r\n<p>Tất cả các thiết bị Công ty cung cấp đều được bảo hành đảm bảo theo đúng tiêu chuẩn và cam kết của nhà sản xuất. Đội ngũ kỹ sư của Công ty giàu kinh nghiệm được cử đi tập huấn và đào tạo hàng năm ở nước ngoài theo các khoá tập huấn của Hãng đại diện, nhà sản xuất... chúng tôi hy vọng đáp ứng được yêu cầu của quý khách hàng.</p>\r\n\r\n<p>Bất cứ lúc nào trong thời gian ngắn nhất, nhân viên kỹ thuật sẽ có mặt theo yêu cầu của khách hàng để chỉ dẫn thêm những vấn đề liên quan đến kỹ thuật của máy hoặc xử lý những sự cố bất thường.</p>\r\n\r\n<p><strong>Dịch vụ trong bảo hành</strong></p>\r\n\r\n<p>Kiểm tra định kỳ lâu dài cho tất cả các thiết bị do Công ty cung cấp.</p>\r\n\r\n<p>Sẵn sàng ký hợp đồng bảo trì nếu Quý khách hàng có yêu cầu, giá cả phù hợp với giá hiện hành trên thị trường.</p>\r\n\r\n<p>Với kinh nghiệm & uy tín của mình, TMHitech luôn cam kết hoàn thành tốt nhất các yêu cầu về cung cấp, lắp đặt & hướng dẫn, tư vấn cho các khách hàng.</p>', NULL, '2020-09-21 09:01:08', '2020-09-21 09:01:08');
-- --------------------------------------------------------
--
-- Cấu trúc bảng cho bảng `slides`
--
CREATE TABLE `slides` (
`id` bigint(20) UNSIGNED NOT NULL,
`image_path` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`user_id` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Đang đổ dữ liệu cho bảng `slides`
--
INSERT INTO `slides` (`id`, `image_path`, `deleted_at`, `created_at`, `updated_at`, `user_id`) VALUES
(2, '/storage/photos/slide/3/AzAlpnCCkVoelEHPKL5u.png', '2020-09-17 14:31:51', '2020-09-17 14:10:06', '2020-09-17 14:31:51', 3),
(3, '/storage/photos/slide/3/pPsfmCOz97eEuMm08vfY.png', '2020-09-17 14:31:49', '2020-09-17 14:10:21', '2020-09-17 14:31:49', 3),
(4, '/storage/photos/slide/3/2Qv5wIExu2PUZFl2pimm.png', '2020-09-17 14:31:47', '2020-09-17 14:10:29', '2020-09-17 14:31:47', 3),
(5, '/storage/photos/slide/3/AEj7LIbNKxg3KfVdwZfp.jpg', NULL, '2020-09-17 14:32:54', '2020-09-17 14:32:54', 3),
(6, '/storage/photos/slide/3/ZxcgUERieoeNhbhvwnik.jpg', NULL, '2020-09-17 14:33:01', '2020-09-17 14:33:01', 3),
(7, '/storage/photos/slide/3/mlZYCV6a9aE0sJyELHVa.jpg', NULL, '2020-09-17 14:33:09', '2020-09-17 14:33:09', 3),
(8, '/storage/photos/slide/3/EITJDznAHST5fPJ3ptPJ.jpg', NULL, '2020-09-17 14:33:15', '2020-09-17 14:33:15', 3);
-- --------------------------------------------------------
--
-- Cấu trúc bảng cho bảng `tags`
--
CREATE TABLE `tags` (
`id` bigint(20) UNSIGNED NOT NULL,
`name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`user_id` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Đang đổ dữ liệu cho bảng `tags`
--
INSERT INTO `tags` (`id`, `name`, `deleted_at`, `created_at`, `updated_at`, `user_id`) VALUES
(1, 'bla', NULL, NULL, NULL, 1),
(5, 'khai', NULL, '2020-09-08 18:33:53', '2020-09-08 18:33:53', 0),
(7, 'lll', NULL, '2020-09-09 02:17:16', '2020-09-09 02:17:16', 0),
(8, 'sdva', NULL, '2020-09-09 04:49:06', '2020-09-09 04:49:06', 0),
(9, 'dsa', NULL, '2020-09-09 08:50:34', '2020-09-09 08:50:34', 0),
(10, 'sa', NULL, '2020-09-10 14:28:10', '2020-09-10 14:28:10', 0),
(12, 'xnxx', NULL, '2020-09-12 10:02:23', '2021-01-03 05:19:54', 2),
(14, 'xxxxx', '2020-10-05 04:19:09', '2020-09-12 10:03:52', '2020-10-05 04:19:09', 2),
(15, 'Siêu âm', '2020-10-05 04:14:33', '2020-09-26 16:49:56', '2020-10-05 04:14:33', 3),
(16, 'Hệ thống siêu âm đen trắng xách tay kỹ thuật số KUP-101', NULL, '2020-10-10 15:23:02', '2020-10-10 15:23:02', NULL),
(17, 'Máy siêu âm', NULL, '2020-10-10 15:23:02', '2020-10-10 15:23:02', NULL),
(18, 'máy siêu âm đen trắng', NULL, '2020-10-10 15:23:02', '2020-10-10 15:23:02', NULL),
(19, 'Chẩn đoán hình ảnh', NULL, '2020-10-10 15:35:26', '2020-10-10 15:35:26', NULL),
(20, 'Hệ thống máy nội soi', NULL, '2020-10-10 15:35:26', '2020-10-10 15:35:26', NULL),
(21, 'Chẩn đoán hình ảnh', NULL, '2020-12-31 09:51:51', '2020-12-31 09:51:51', 1),
(22, 'Hệ thống máy nội soi', NULL, '2020-12-31 09:51:51', '2020-12-31 09:51:51', 1),
(23, 'Hệ thống siêu âm đen trắng xách tay kỹ thuật số KUP-101', NULL, '2020-12-31 09:52:05', '2020-12-31 09:52:05', 1),
(24, 'Máy siêu âm', NULL, '2020-12-31 09:52:05', '2020-12-31 09:52:05', 1),
(25, 'máy siêu âm đen trắng', NULL, '2020-12-31 09:52:05', '2020-12-31 09:52:05', 1),
(26, '234', NULL, '2021-01-28 15:06:41', '2021-01-28 15:06:41', NULL),
(27, 'máy thở', NULL, '2021-02-13 14:25:44', '2021-02-13 14:25:44', NULL),
(28, 'máy thở xách tay', NULL, '2021-02-13 14:25:44', '2021-02-13 14:25:44', NULL),
(29, 'Monitor theo dõi bệnh nhân', NULL, '2021-02-13 14:31:43', '2021-02-13 14:31:43', NULL);
-- --------------------------------------------------------
--
-- Cấu trúc bảng cho bảng `users`
--
CREATE TABLE `users` (
`id` bigint(20) UNSIGNED NOT NULL,
`name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`email` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`email_verified_at` timestamp NULL DEFAULT NULL,
`password` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
`phone` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`address` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Đang đổ dữ liệu cho bảng `users`
--
INSERT INTO `users` (`id`, `name`, `email`, `email_verified_at`, `password`, `remember_token`, `created_at`, `updated_at`, `deleted_at`, `phone`, `address`) VALUES
(1, '<NAME>', '<EMAIL>', NULL, '$2y$10$VGLFgWoScV9iea6qycUat.CV0sHLEIMQil/opZcjmlWQPNowUB4s6', NULL, NULL, '2021-02-20 16:50:09', NULL, '0868845289', 'Nam định2'),
(20, 'Khải', '<EMAIL>', NULL, '$2y$10$gJjEp5DI/wwnN7inmCXQy.wGHuj4MJC3BTb6o8.8Z09VKknFKPlAm', NULL, '2021-01-26 14:09:51', '2021-01-26 14:11:07', NULL, '0868845289', 'Nam Định'),
(21, '<NAME>', '<EMAIL>', NULL, '$2y$10$T6YE0Y9/ybMo9aOk/RwQO.kdSLG7tOPkzIoNKKBEUTj8basmezoAG', NULL, '2021-01-26 14:16:12', '2021-01-26 14:16:12', NULL, NULL, NULL);
-- --------------------------------------------------------
--
-- Cấu trúc bảng cho bảng `user_roles`
--
CREATE TABLE `user_roles` (
`id` bigint(20) UNSIGNED NOT NULL,
`user_id` int(11) NOT NULL,
`role_id` int(11) NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Đang đổ dữ liệu cho bảng `user_roles`
--
INSERT INTO `user_roles` (`id`, `user_id`, `role_id`, `created_at`, `updated_at`) VALUES
(2, 1, 3, NULL, NULL),
(3, 5, 1, NULL, NULL),
(4, 5, 3, NULL, NULL),
(5, 7, 1, NULL, NULL),
(6, 7, 3, NULL, NULL),
(7, 9, 1, NULL, NULL),
(8, 10, 3, NULL, NULL),
(9, 11, 1, NULL, NULL),
(12, 3, 3, NULL, NULL),
(13, 15, 3, NULL, NULL),
(14, 16, 3, NULL, NULL),
(15, 20, 6, NULL, NULL);
--
-- Chỉ mục cho các bảng đã đổ
--
--
-- Chỉ mục cho bảng `brands`
--
ALTER TABLE `brands`
ADD PRIMARY KEY (`id`);
--
-- Chỉ mục cho bảng `categories`
--
ALTER TABLE `categories`
ADD PRIMARY KEY (`id`);
--
-- Chỉ mục cho bảng `contacts`
--
ALTER TABLE `contacts`
ADD PRIMARY KEY (`id`);
--
-- Chỉ mục cho bảng `discounts`
--
ALTER TABLE `discounts`
ADD PRIMARY KEY (`id`);
--
-- Chỉ mục cho bảng `failed_jobs`
--
ALTER TABLE `failed_jobs`
ADD PRIMARY KEY (`id`);
--
-- Chỉ mục cho bảng `infos`
--
ALTER TABLE `infos`
ADD PRIMARY KEY (`id`);
--
-- Chỉ mục cho bảng `intros`
--
ALTER TABLE `intros`
ADD PRIMARY KEY (`id`);
--
-- Chỉ mục cho bảng `migrations`
--
ALTER TABLE `migrations`
ADD PRIMARY KEY (`id`);
--
-- Chỉ mục cho bảng `orders`
--
ALTER TABLE `orders`
ADD PRIMARY KEY (`id`);
--
-- Chỉ mục cho bảng `order_details`
--
ALTER TABLE `order_details`
ADD PRIMARY KEY (`id`);
--
-- Chỉ mục cho bảng `password_resets`
--
ALTER TABLE `password_resets`
ADD KEY `password_resets_email_index` (`email`);
--
-- Chỉ mục cho bảng `permissions`
--
ALTER TABLE `permissions`
ADD PRIMARY KEY (`id`);
--
-- Chỉ mục cho bảng `permission_roles`
--
ALTER TABLE `permission_roles`
ADD PRIMARY KEY (`id`);
--
-- Chỉ mục cho bảng `posts`
--
ALTER TABLE `posts`
ADD PRIMARY KEY (`id`);
--
-- Chỉ mục cho bảng `post_cates`
--
ALTER TABLE `post_cates`
ADD PRIMARY KEY (`id`);
--
-- Chỉ mục cho bảng `products`
--
ALTER TABLE `products`
ADD PRIMARY KEY (`id`);
--
-- Chỉ mục cho bảng `product_image`
--
ALTER TABLE `product_image`
ADD PRIMARY KEY (`id`);
--
-- Chỉ mục cho bảng `product_tag`
--
ALTER TABLE `product_tag`
ADD PRIMARY KEY (`id`);
--
-- Chỉ mục cho bảng `projects`
--
ALTER TABLE `projects`
ADD PRIMARY KEY (`id`);
--
-- Chỉ mục cho bảng `recruitments`
--
ALTER TABLE `recruitments`
ADD PRIMARY KEY (`id`);
--
-- Chỉ mục cho bảng `roles`
--
ALTER TABLE `roles`
ADD PRIMARY KEY (`id`);
--
-- Chỉ mục cho bảng `services`
--
ALTER TABLE `services`
ADD PRIMARY KEY (`id`);
--
-- Chỉ mục cho bảng `slides`
--
ALTER TABLE `slides`
ADD PRIMARY KEY (`id`);
--
-- Chỉ mục cho bảng `tags`
--
ALTER TABLE `tags`
ADD PRIMARY KEY (`id`);
--
-- Chỉ mục cho bảng `users`
--
ALTER TABLE `users`
ADD PRIMARY KEY (`id`),
ADD UNIQUE KEY `users_email_unique` (`email`);
--
-- Chỉ mục cho bảng `user_roles`
--
ALTER TABLE `user_roles`
ADD PRIMARY KEY (`id`);
--
-- AUTO_INCREMENT cho các bảng đã đổ
--
--
-- AUTO_INCREMENT cho bảng `brands`
--
ALTER TABLE `brands`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=21;
--
-- AUTO_INCREMENT cho bảng `categories`
--
ALTER TABLE `categories`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=100;
--
-- AUTO_INCREMENT cho bảng `contacts`
--
ALTER TABLE `contacts`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;
--
-- AUTO_INCREMENT cho bảng `discounts`
--
ALTER TABLE `discounts`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT cho bảng `failed_jobs`
--
ALTER TABLE `failed_jobs`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT cho bảng `infos`
--
ALTER TABLE `infos`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=14;
--
-- AUTO_INCREMENT cho bảng `intros`
--
ALTER TABLE `intros`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
--
-- AUTO_INCREMENT cho bảng `migrations`
--
ALTER TABLE `migrations`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=49;
--
-- AUTO_INCREMENT cho bảng `orders`
--
ALTER TABLE `orders`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8;
--
-- AUTO_INCREMENT cho bảng `order_details`
--
ALTER TABLE `order_details`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=10;
--
-- AUTO_INCREMENT cho bảng `permissions`
--
ALTER TABLE `permissions`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=218;
--
-- AUTO_INCREMENT cho bảng `permission_roles`
--
ALTER TABLE `permission_roles`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=200;
--
-- AUTO_INCREMENT cho bảng `posts`
--
ALTER TABLE `posts`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=21;
--
-- AUTO_INCREMENT cho bảng `post_cates`
--
ALTER TABLE `post_cates`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7;
--
-- AUTO_INCREMENT cho bảng `products`
--
ALTER TABLE `products`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=57;
--
-- AUTO_INCREMENT cho bảng `product_image`
--
ALTER TABLE `product_image`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=109;
--
-- AUTO_INCREMENT cho bảng `product_tag`
--
ALTER TABLE `product_tag`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=30;
--
-- AUTO_INCREMENT cho bảng `projects`
--
ALTER TABLE `projects`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;
--
-- AUTO_INCREMENT cho bảng `recruitments`
--
ALTER TABLE `recruitments`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
--
-- AUTO_INCREMENT cho bảng `roles`
--
ALTER TABLE `roles`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7;
--
-- AUTO_INCREMENT cho bảng `services`
--
ALTER TABLE `services`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
--
-- AUTO_INCREMENT cho bảng `slides`
--
ALTER TABLE `slides`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9;
--
-- AUTO_INCREMENT cho bảng `tags`
--
ALTER TABLE `tags`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=30;
--
-- AUTO_INCREMENT cho bảng `users`
--
ALTER TABLE `users`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=22;
--
-- AUTO_INCREMENT cho bảng `user_roles`
--
ALTER TABLE `user_roles`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=16;
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 */;
|
<gh_stars>10-100
CREATE TABLE [dbo].[UserName] (
[Id] INT IDENTITY (1, 1) NOT NULL,
[AuthId] INT NOT NULL,
[UserName] NVARCHAR (50) NOT NULL,
CONSTRAINT [PK_UserName] PRIMARY KEY CLUSTERED ([Id] ASC),
CONSTRAINT [FK_UserName_UserAuth] FOREIGN KEY ([AuthId]) REFERENCES [dbo].[UserAuth] ([Id]) ON DELETE CASCADE
);
GO
CREATE UNIQUE NONCLUSTERED INDEX [IX_UserName]
ON [dbo].[UserName]([UserName] ASC);
|
USE ucode_web;
CREATE TABLE IF NOT EXISTS heroes(
id INT(6) UNSIGNED AUTO_INCREMENT PRIMARY KEY,
name VARCHAR(30) NOT NULL UNIQUE,
description TEXT NOT NULL,
race VARCHAR(20) NOT NULL DEFAULT 'human',
class_role ENUM('tankman', 'healer', 'dps') NOT NULL
); |
<reponame>cjsrkd3321/steampipe-plugin-aws<filename>aws-test/tests/aws_sagemaker_domain/test-notfound-query.sql
select title, akas, tags, region, account_id
from aws.aws_sagemaker_domain
where name = 'dummy-{{ resourceName }}'; |
<filename>db2te/tutorials/tutorials/TolerationSQL/TOCHAR_TODATEFunctions/SQL/TO_CHARPatterns.sql
VALUES
('CC Century',CURRENT_TIMESTAMP,TO_CHAR(CURRENT TIMESTAMP,'CC')),
('DD Day of month',CURRENT_TIMESTAMP,TO_CHAR(CURRENT TIMESTAMP,'DD')),
('DDD Day of year',CURRENT_TIMESTAMP,TO_CHAR(CURRENT TIMESTAMP,'DDD')),
('FF[n] microseconds',CURRENT_TIMESTAMP,TO_CHAR(CURRENT TIMESTAMP,'FF')),
('HH (HH12)',CURRENT_TIMESTAMP,TO_CHAR(CURRENT TIMESTAMP,'HH')),
('HH12 Hour of the day',CURRENT_TIMESTAMP,TO_CHAR(CURRENT TIMESTAMP,'HH12')),
('HH24 Hour of the day',CURRENT_TIMESTAMP,TO_CHAR(CURRENT TIMESTAMP,'HH24')),
('IW ISO week of the year',CURRENT_TIMESTAMP,TO_CHAR(CURRENT TIMESTAMP,'IW')),
('I ISO year',CURRENT_TIMESTAMP,TO_CHAR(CURRENT TIMESTAMP,'I')),
('IY ISO year',CURRENT_TIMESTAMP,TO_CHAR(CURRENT TIMESTAMP,'IY')),
('IYY ISO year',CURRENT_TIMESTAMP,TO_CHAR(CURRENT TIMESTAMP,'IYY')),
('IYYY ISO year',CURRENT_TIMESTAMP,TO_CHAR(CURRENT TIMESTAMP,'IYYY')),
('J Julian day',CURRENT_TIMESTAMP,TO_CHAR(CURRENT TIMESTAMP,'J')),
('MI Minute',CURRENT_TIMESTAMP,TO_CHAR(CURRENT TIMESTAMP,'MI')),
('MM Month',CURRENT_TIMESTAMP,TO_CHAR(CURRENT TIMESTAMP,'MM')),
('NNNNNN Microseconds',CURRENT_TIMESTAMP,TO_CHAR(CURRENT TIMESTAMP,'NNNNNN')),
('Q Quarter (1-4)',CURRENT_TIMESTAMP,TO_CHAR(CURRENT TIMESTAMP,'Q')),
('RR same as YY',CURRENT_TIMESTAMP,TO_CHAR(CURRENT TIMESTAMP,'RR')),
('RRRR same as YYYY',CURRENT_TIMESTAMP,TO_CHAR(CURRENT TIMESTAMP,'RRRR')),
('SS Seconds',CURRENT_TIMESTAMP,TO_CHAR(CURRENT TIMESTAMP,'SS')),
('SSSSS Seconds',CURRENT_TIMESTAMP,TO_CHAR(CURRENT TIMESTAMP,'SSSSS')),
('W Week of the month',CURRENT_TIMESTAMP,TO_CHAR(CURRENT TIMESTAMP,'W')),
('WW Week of the year',CURRENT_TIMESTAMP,TO_CHAR(CURRENT TIMESTAMP,'WW')),
('Y Last digit of year',CURRENT_TIMESTAMP,TO_CHAR(CURRENT TIMESTAMP,'Y')),
('YY Last two digits of year',CURRENT_TIMESTAMP,TO_CHAR(CURRENT TIMESTAMP,'YY')),
('YYY Last three digits of year',CURRENT_TIMESTAMP,TO_CHAR(CURRENT TIMESTAMP,'YYY')),
('YYYY 4-digit year',CURRENT_TIMESTAMP,TO_CHAR(CURRENT TIMESTAMP,'YYYY')) |
<filename>build/loading/aux/pdb/done.sql<gh_stars>0
BEGIN;
create temp table mtimes (pdb text primary key, mtime timestamp not null);
\copy mtimes FROM PSTDIN
COMMIT;
select p.pdbid from pdb.summary p join mtimes m on p.pdbid||'.xml.gz'=m.pdb where p.added >= m.mtime order by p.pdbid;
|
CREATE TABLE links (
link_id INTEGER PRIMARY KEY,
url TEXT NOT NULL,
message TEXT NOT NULL,
image_url TEXT NOT NULL,
weight INTEGER DEFAULT 0 NOT NULL,
hits INTEGER DEFAULT 0 NOT NULL
);
|
<filename>sql/_31_cherry/issue_22162_more_json_functions/cases/cbrd_23458.sql
--+ holdcas on;
set system parameters 'no_backslash_escapes=no';
set @j='{"x": "\\""}';
SELECT @j, json_search( @j, 'one', '"') , json_extract(@j,'$.x');
SELECT @j, json_search( @j, 'one', '\"') , json_extract(@j,'$.x');
SELECT @j, json_search( @j, 'one', '\\"') , json_extract(@j,'$.x');
drop table if exists t;
create table t ( j json);
insert into t(j) values (@j);
select j, json_search( j, 'one', '"') , json_extract(j,'$.x') from t;
select j, json_search( j, 'one', '\"') , json_extract(j,'$.x') from t;
select j, json_search( j, 'one', '\\"') , json_extract(j,'$.x') from t;
set @p='\\"';
select j, json_search( j, 'one', @p) from t;
set @p='\"';
select j, json_search( j, 'one', @p) from t;
set @p='"';
select j, json_search( j, 'one', @p) from t;
drop table if exists t;
set system parameters 'no_backslash_escapes=yes';
drop variable @j,@p;
--+ holdcas off;
|
HDF5 "tcompound_complex.h5" {
GROUP "/" {
DATASET "CompoundComplex" {
DATATYPE H5T_COMPOUND {
H5T_STD_I32BE "a_name";
H5T_ARRAY { [4] H5T_STRING {
STRSIZE H5T_VARIABLE;
STRPAD H5T_STR_NULLTERM;
CSET H5T_CSET_ASCII;
CTYPE H5T_C_S1;
} } "b_name";
H5T_STRING {
STRSIZE 6;
STRPAD H5T_STR_NULLTERM;
CSET H5T_CSET_ASCII;
CTYPE H5T_C_S1;
} "c_name";
H5T_ARRAY { [5][6] H5T_STD_I16BE } "d_name";
H5T_IEEE_F32BE "e_name";
H5T_ARRAY { [10] H5T_IEEE_F64BE } "f_name";
H5T_STD_I8LE "g_name";
}
DATASPACE SIMPLE { ( 6 ) / ( 6 ) }
DATA {
(0): {
0,
[ "A fight is a contract that takes two people to honor.", "A combative stance means that you've accepted the contract.", "In which case, you deserve what you get.", " -- Professor <NAME>" ],
"Hello!",
[ 0, 1, 2, 3, 4, 5,
1, 2, 3, 4, 5, 6,
2, 3, 4, 5, 6, 7,
3, 4, 5, 6, 7, 8,
4, 5, 6, 7, 8, 9 ],
0,
[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ],
109
},
(1): {
1,
[ "A fight is a contract that takes two people to honor.", "A combative stance means that you've accepted the contract.", "In which case, you deserve what you get.", " -- <NAME>" ],
"Hello!",
[ 1, 2, 3, 4, 5, 6,
2, 3, 4, 5, 6, 7,
3, 4, 5, 6, 7, 8,
4, 5, 6, 7, 8, 9,
5, 6, 7, 8, 9, 10 ],
0.96,
[ 1024.96, 1024.96, 1024.96, 1024.96, 1024.96, 1024.96, 1024.96, 1024.96, 1024.96, 1024.96 ],
109
},
(2): {
2,
[ "A fight is a contract that takes two people to honor.", "A combative stance means that you've accepted the contract.", "In which case, you deserve what you get.", " -- <NAME>" ],
"Hello!",
[ 2, 3, 4, 5, 6, 7,
3, 4, 5, 6, 7, 8,
4, 5, 6, 7, 8, 9,
5, 6, 7, 8, 9, 10,
6, 7, 8, 9, 10, 11 ],
1.92,
[ 2049.93, 2049.93, 2049.93, 2049.93, 2049.93, 2049.93, 2049.93, 2049.93, 2049.93, 2049.93 ],
109
},
(3): {
3,
[ "A fight is a contract that takes two people to honor.", "A combative stance means that you've accepted the contract.", "In which case, you deserve what you get.", " -- Professor <NAME>" ],
"Hello!",
[ 3, 4, 5, 6, 7, 8,
4, 5, 6, 7, 8, 9,
5, 6, 7, 8, 9, 10,
6, 7, 8, 9, 10, 11,
7, 8, 9, 10, 11, 12 ],
2.88,
[ 3074.89, 3074.89, 3074.89, 3074.89, 3074.89, 3074.89, 3074.89, 3074.89, 3074.89, 3074.89 ],
109
},
(4): {
4,
[ "A fight is a contract that takes two people to honor.", "A combative stance means that you've accepted the contract.", "In which case, you deserve what you get.", " -- Professor <NAME>" ],
"Hello!",
[ 4, 5, 6, 7, 8, 9,
5, 6, 7, 8, 9, 10,
6, 7, 8, 9, 10, 11,
7, 8, 9, 10, 11, 12,
8, 9, 10, 11, 12, 13 ],
3.84,
[ 4099.85, 4099.85, 4099.85, 4099.85, 4099.85, 4099.85, 4099.85, 4099.85, 4099.85, 4099.85 ],
109
},
(5): {
5,
[ "A fight is a contract that takes two people to honor.", "A combative stance means that you've accepted the contract.", "In which case, you deserve what you get.", " -- Professor <NAME>" ],
"Hello!",
[ 5, 6, 7, 8, 9, 10,
6, 7, 8, 9, 10, 11,
7, 8, 9, 10, 11, 12,
8, 9, 10, 11, 12, 13,
9, 10, 11, 12, 13, 14 ],
4.8,
[ 5124.82, 5124.82, 5124.82, 5124.82, 5124.82, 5124.82, 5124.82, 5124.82, 5124.82, 5124.82 ],
109
}
}
}
}
}
|
-- SELECT race, count(race) count FROM demographics ORDER BY count DESC;
SELECT race, COUNT(race)
FROM demographics
GROUP BY race
ORDER BY Count(race) desc |
<filename>db.sql
-- phpMyAdmin SQL Dump
-- version 4.1.14
-- http://www.phpmyadmin.net
--
-- Host: 127.0.0.1
-- Generation Time: Jun 16, 2015 at 02:07 AM
-- Server version: 5.6.17
-- PHP Version: 5.5.12
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
--
-- Database: `laravel`
--
-- --------------------------------------------------------
--
-- Table structure for table `associations`
--
CREATE TABLE IF NOT EXISTS `associations` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`connection_key` int(10) unsigned NOT NULL,
`word_key` int(10) unsigned NOT NULL,
`word_type` varchar(32) COLLATE utf8_bin NOT NULL,
`weight` int(10) unsigned NOT NULL,
`created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin AUTO_INCREMENT=74 ;
--
-- Dumping data for table `associations`
--
INSERT INTO `associations` (`id`, `connection_key`, `word_key`, `word_type`, `weight`, `created`) VALUES
(1, 10, 154, 'space', 2, '2015-06-05 03:43:56'),
(2, 11, 221, 'inquiry', 1, '2015-06-05 03:50:07'),
(3, 11, 223, 'time', 1, '2015-06-05 03:50:07'),
(4, 13, 170, 'adjective', 1, '2015-06-05 04:06:12'),
(5, 14, 229, 'adjective', 1, '2015-06-05 04:07:04'),
(6, 15, 231, 'adjective', 9, '2015-06-05 04:09:35'),
(7, 17, 154, 'space', 1, '2015-06-05 04:29:49'),
(8, 18, 65, 'inquiry', 1, '2015-06-05 04:34:17'),
(9, 18, 154, 'space', 1, '2015-06-05 04:34:17'),
(10, 18, 135, 'adjective', 1, '2015-06-05 04:34:17'),
(11, 19, 65, 'inquiry', 1, '2015-06-05 04:34:33'),
(12, 20, 33, 'adjective', 1, '2015-06-05 04:34:53'),
(13, 23, 170, 'adjective', 3, '2015-06-05 04:37:33'),
(14, 23, 236, 'adjective', 3, '2015-06-05 04:39:26'),
(15, 24, 65, 'inquiry', 1, '2015-06-05 04:45:17'),
(16, 26, 218, 'positive', 1, '2015-06-05 04:45:54'),
(17, 27, 43, 'adjective', 2, '2015-06-05 04:46:28'),
(18, 27, 241, 'cheer', 1, '2015-06-05 04:46:44'),
(19, 29, 80, 'adjective', 2, '2015-06-05 04:47:11'),
(20, 31, 242, 'adjective', 1, '2015-06-05 04:47:52'),
(21, 33, 65, 'inquiry', 2, '2015-06-05 04:48:27'),
(22, 33, 243, 'relation', 2, '2015-06-05 04:48:27'),
(23, 29, 65, 'inquiry', 1, '2015-06-05 04:49:19'),
(24, 35, 102, 'negative', 1, '2015-06-05 04:49:49'),
(25, 36, 246, 'adjective', 1, '2015-06-05 04:50:19'),
(26, 38, 65, 'inquiry', 1, '2015-06-05 22:35:13'),
(27, 39, 65, 'inquiry', 2, '2015-06-05 22:36:25'),
(28, 39, 252, 'adjective', 1, '2015-06-05 22:36:25'),
(29, 39, 33, 'adjective', 1, '2015-06-05 22:37:13'),
(30, 40, 253, 'relation', 1, '2015-06-05 22:37:59'),
(31, 41, 120, 'inquiry', 1, '2015-06-05 22:38:20'),
(32, 43, 218, 'positive', 1, '2015-06-05 22:39:50'),
(33, 20, 65, 'inquiry', 4, '2015-06-05 22:40:19'),
(34, 44, 65, 'inquiry', 1, '2015-06-05 22:41:23'),
(35, 47, 259, 'relation', 1, '2015-06-05 22:43:32'),
(36, 49, 267, 'noun', 1, '2015-06-07 16:33:31'),
(37, 49, 170, 'adjective', 1, '2015-06-07 16:33:31'),
(38, 50, 5, 'space', 1, '2015-06-07 16:33:55'),
(39, 51, 171, 'inquiry', 1, '2015-06-07 16:34:07'),
(40, 52, 271, 'cheer', 1, '2015-06-07 16:34:52'),
(41, 53, 272, 'adjective', 1, '2015-06-09 02:18:28'),
(42, 53, 154, 'space', 1, '2015-06-09 02:18:28'),
(43, 54, 65, 'inquiry', 1, '2015-06-09 02:18:48'),
(44, 55, 10, 'inquiry', 1, '2015-06-10 03:01:29'),
(45, 56, 280, 'adjective', 1, '2015-06-10 03:02:19'),
(46, 56, 281, 'preposition', 1, '2015-06-10 03:02:19'),
(47, 57, 122, 'adjective', 1, '2015-06-10 03:03:46'),
(48, 59, 298, '', 1, '2015-06-11 04:51:19'),
(49, 59, 43, 'adjective', 2, '2015-06-11 04:51:19'),
(50, 59, 302, 'article', 1, '2015-06-11 04:51:27'),
(51, 60, 65, 'inquiry', 1, '2015-06-11 04:52:00'),
(52, 61, 171, 'inquiry', 1, '2015-06-11 04:54:12'),
(53, 62, 285, 'jeer', 1, '2015-06-11 04:54:32'),
(54, 63, 285, 'jeer', 1, '2015-06-11 04:55:22'),
(55, 57, 310, 'cheer', 1, '2015-06-11 04:55:31'),
(56, 57, 314, 'adjective', 1, '2015-06-11 05:05:32'),
(57, 64, 314, 'adjective', 1, '2015-06-11 05:05:49'),
(58, 65, 285, 'jeer', 1, '2015-06-11 05:06:22'),
(59, 65, 316, 'adjective', 1, '2015-06-11 05:06:22'),
(60, 65, 122, 'adjective', 1, '2015-06-11 05:06:22'),
(61, 66, 318, 'cheer', 1, '2015-06-11 05:19:04'),
(62, 66, 319, 'preposition', 1, '2015-06-11 05:19:04'),
(63, 66, 33, 'adjective', 1, '2015-06-11 05:19:04'),
(64, 67, 128, 'inquiry', 1, '2015-06-11 05:21:44'),
(65, 68, 314, 'adjective', 1, '2015-06-11 05:22:00'),
(66, 68, 65, 'inquiry', 2, '2015-06-11 05:22:07'),
(67, 68, 170, 'adjective', 1, '2015-06-11 05:22:24'),
(68, 70, 65, 'inquiry', 1, '2015-06-11 05:28:47'),
(69, 71, 166, 'inquiry', 1, '2015-06-11 05:28:57'),
(70, 72, 331, 'cheer', 1, '2015-06-12 00:50:14'),
(71, 72, 65, 'inquiry', 1, '2015-06-12 00:50:14'),
(72, 72, 332, 'adjective', 1, '2015-06-12 00:50:14'),
(73, 72, 336, 'action', 1, '2015-06-12 00:50:14');
-- --------------------------------------------------------
--
-- Table structure for table `connections`
--
CREATE TABLE IF NOT EXISTS `connections` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`agent_key` int(10) NOT NULL,
`action_key` int(10) NOT NULL,
`action_type` varchar(32) COLLATE utf8_bin NOT NULL,
`object_key` int(10) NOT NULL,
`is_true` int(10) unsigned NOT NULL,
`is_false` int(10) unsigned NOT NULL,
`created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin AUTO_INCREMENT=73 ;
--
-- Dumping data for table `connections`
--
INSERT INTO `connections` (`id`, `agent_key`, `action_key`, `action_type`, `object_key`, `is_true`, `is_false`, `created`) VALUES
(2, 69, 206, 'have', 207, 2, 0, '2015-06-05 03:14:34'),
(3, 132, 208, 'make', 209, 1, 0, '2015-06-05 03:23:11'),
(4, 211, 208, 'make', 209, 2, 0, '2015-06-05 03:23:57'),
(5, 14, 212, 'do', 0, 1, 0, '2015-06-05 03:25:08'),
(6, 14, 212, 'do', 214, 1, 0, '2015-06-05 03:25:22'),
(7, 211, 216, 'is', 0, 1, 0, '2015-06-05 03:26:13'),
(8, 211, 202, 'do', 0, 1, 0, '2015-06-05 03:26:24'),
(9, 69, 2, 'do', 219, 4, 0, '2015-06-05 03:35:37'),
(10, 69, 202, 'do', 220, 5, 0, '2015-06-05 03:42:33'),
(11, 200, 222, 'do', 0, 4, 0, '2015-06-05 03:48:19'),
(12, 215, 224, 'have', 207, 11, 0, '2015-06-05 03:58:40'),
(13, 219, 79, 'is', 226, 1, 0, '2015-06-05 04:06:12'),
(14, 227, 79, 'is', 87, 1, 0, '2015-06-05 04:07:04'),
(15, 230, 79, 'is', 226, 9, 0, '2015-06-05 04:09:35'),
(16, 69, 4, 'is', 232, 2, 0, '2015-06-05 04:24:02'),
(17, 228, 143, 'do', 69, 1, 0, '2015-06-05 04:29:49'),
(18, 215, 143, 'do', 0, 1, 0, '2015-06-05 04:34:17'),
(19, 69, 224, 'have', 0, 1, 0, '2015-06-05 04:34:33'),
(20, 69, 4, 'is', 0, 5, 0, '2015-06-05 04:34:53'),
(21, 69, 234, 'do', 235, 2, 0, '2015-06-05 04:35:10'),
(22, 69, 2, 'do', 235, 2, 0, '2015-06-05 04:35:28'),
(23, 219, 79, 'is', 0, 6, 0, '2015-06-05 04:37:33'),
(24, 215, 224, 'have', 0, 1, 0, '2015-06-05 04:45:17'),
(25, 215, 237, 'is', 238, 1, 0, '2015-06-05 04:45:36'),
(26, 69, 143, 'do', 0, 1, 0, '2015-06-05 04:45:54'),
(27, 25, 4, 'is', 240, 3, 0, '2015-06-05 04:46:28'),
(28, 1, 2, 'do', 3, 1, 0, '2015-06-05 04:47:02'),
(29, 3, 4, 'is', 0, 3, 0, '2015-06-05 04:47:11'),
(30, 3, 2, 'do', 1, 1, 0, '2015-06-05 04:47:34'),
(31, 3, 66, 'do', 226, 1, 0, '2015-06-05 04:47:52'),
(32, 3, 66, 'do', 0, 1, 0, '2015-06-05 04:48:04'),
(33, 69, 53, 'do', 0, 2, 0, '2015-06-05 04:48:27'),
(34, 3, 206, 'have', 83, 1, 0, '2015-06-05 04:49:13'),
(35, 228, 17, 'do', 245, 0, 0, '2015-06-05 04:49:49'),
(36, 215, 237, 'is', 69, 1, 0, '2015-06-05 04:50:19'),
(37, 249, 250, 'do', 0, 1, 0, '2015-06-05 05:03:25'),
(38, 215, 79, 'is', 0, 1, 0, '2015-06-05 22:35:13'),
(39, 215, 4, 'is', 0, 2, 0, '2015-06-05 22:36:25'),
(40, 254, 143, 'do', 69, 1, 0, '2015-06-05 22:37:59'),
(41, 215, 255, 'do', 235, 1, 0, '2015-06-05 22:38:20'),
(42, 215, 17, 'do', 69, 1, 0, '2015-06-05 22:39:12'),
(43, 215, 17, 'do', 0, 1, 0, '2015-06-05 22:39:50'),
(44, 215, 4, 'is', 256, 1, 0, '2015-06-05 22:41:23'),
(45, 69, 257, 'do', 256, 1, 0, '2015-06-05 22:41:38'),
(46, 254, 134, 'do', 258, 1, 0, '2015-06-05 22:43:00'),
(47, 63, 4, 'is', 260, 1, 0, '2015-06-05 22:43:32'),
(48, 263, 262, 'do', 264, 1, 0, '2015-06-07 16:31:51'),
(49, 266, 268, 'do', 0, 1, 0, '2015-06-07 16:33:31'),
(50, 269, 4, 'is', 270, 1, 0, '2015-06-07 16:33:55'),
(51, 269, 4, 'is', 0, 1, 0, '2015-06-07 16:34:07'),
(52, 69, 68, 'do', 0, 1, 0, '2015-06-07 16:34:52'),
(53, 215, 274, 'do', 0, 1, 0, '2015-06-09 02:18:28'),
(54, 69, 129, 'do', 0, 1, 0, '2015-06-09 02:18:48'),
(55, 275, 276, 'equate', 279, 1, 0, '2015-06-10 03:01:29'),
(56, 275, 282, 'equate', 283, 1, 0, '2015-06-10 03:02:19'),
(57, 290, 291, 'equate', 0, 3, 0, '2015-06-10 03:03:45'),
(58, 292, 293, 'action', 294, 1, 0, '2015-06-10 03:05:19'),
(59, 300, 297, 'equate', 0, 2, 0, '2015-06-11 04:51:19'),
(60, 289, 284, 'action', 300, 1, 0, '2015-06-11 04:52:00'),
(61, 306, 276, 'equate', 0, 1, 0, '2015-06-11 04:54:12'),
(62, 307, 308, 'action', 0, 2, 0, '2015-06-11 04:54:32'),
(63, 290, 313, 'action', 0, 1, 0, '2015-06-11 04:55:22'),
(64, 290, 315, 'action', 0, 1, 0, '2015-06-11 05:05:49'),
(65, 275, 276, 'equate', 0, 1, 0, '2015-06-11 05:06:22'),
(66, 290, 276, 'equate', 0, 1, 0, '2015-06-11 05:19:04'),
(67, 290, 324, 'action', 0, 1, 0, '2015-06-11 05:21:44'),
(68, 325, 276, 'equate', 0, 4, 0, '2015-06-11 05:22:00'),
(69, 326, 327, 'action', 328, 1, 0, '2015-06-11 05:28:34'),
(70, 326, 329, 'action', 330, 1, 0, '2015-06-11 05:28:47'),
(71, 328, 327, 'action', 326, 1, 0, '2015-06-11 05:28:57'),
(72, 333, 334, 'equate', 335, 1, 0, '2015-06-12 00:50:14');
-- --------------------------------------------------------
--
-- Table structure for table `contexts`
--
CREATE TABLE IF NOT EXISTS `contexts` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`x_key` int(10) unsigned NOT NULL,
`y_key` int(10) unsigned NOT NULL,
`weight` int(10) unsigned NOT NULL,
`created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin AUTO_INCREMENT=3319 ;
--
-- Dumping data for table `contexts`
--
INSERT INTO `contexts` (`id`, `x_key`, `y_key`, `weight`, `created`) VALUES
(1, 1, 2, 6, '2015-05-24 19:41:16'),
(2, 1, 3, 6, '2015-05-24 19:41:16'),
(3, 2, 3, 6, '2015-05-24 19:41:16'),
(4, 4, 5, 1, '2015-05-24 19:41:48'),
(5, 4, 6, 1, '2015-05-24 19:41:48'),
(6, 5, 6, 1, '2015-05-24 19:41:48'),
(7, 7, 8, 4, '2015-05-24 19:41:53'),
(8, 7, 9, 4, '2015-05-24 19:41:53'),
(9, 7, 10, 4, '2015-05-24 19:41:53'),
(10, 7, 11, 4, '2015-05-24 19:41:53'),
(11, 7, 12, 4, '2015-05-24 19:41:53'),
(12, 8, 9, 4, '2015-05-24 19:41:53'),
(13, 8, 10, 4, '2015-05-24 19:41:53'),
(14, 8, 11, 4, '2015-05-24 19:41:53'),
(15, 8, 12, 4, '2015-05-24 19:41:53'),
(16, 9, 10, 4, '2015-05-24 19:41:53'),
(17, 9, 11, 4, '2015-05-24 19:41:53'),
(18, 9, 12, 4, '2015-05-24 19:41:53'),
(19, 10, 11, 5, '2015-05-24 19:41:53'),
(20, 10, 12, 5, '2015-05-24 19:41:53'),
(21, 11, 12, 5, '2015-05-24 19:41:53'),
(22, 13, 14, 1, '2015-05-24 19:41:59'),
(23, 13, 15, 1, '2015-05-24 19:41:59'),
(24, 14, 15, 1, '2015-05-24 19:41:59'),
(25, 19, 20, 1, '2015-05-24 20:13:25'),
(26, 19, 21, 1, '2015-05-24 20:13:25'),
(27, 19, 22, 1, '2015-05-24 20:13:25'),
(28, 19, 23, 1, '2015-05-24 20:13:25'),
(29, 19, 24, 1, '2015-05-24 20:13:25'),
(30, 20, 21, 1, '2015-05-24 20:13:25'),
(31, 20, 22, 1, '2015-05-24 20:13:25'),
(32, 20, 23, 1, '2015-05-24 20:13:25'),
(33, 20, 24, 1, '2015-05-24 20:13:25'),
(34, 21, 22, 1, '2015-05-24 20:13:25'),
(35, 21, 23, 1, '2015-05-24 20:13:26'),
(36, 21, 24, 1, '2015-05-24 20:13:26'),
(37, 22, 23, 1, '2015-05-24 20:13:26'),
(38, 22, 24, 1, '2015-05-24 20:13:26'),
(39, 23, 24, 1, '2015-05-24 20:13:26'),
(40, 13, 25, 1, '2015-05-24 20:14:49'),
(41, 13, 26, 1, '2015-05-24 20:14:49'),
(42, 25, 26, 1, '2015-05-24 20:14:49'),
(43, 27, 28, 1, '2015-05-25 02:08:29'),
(44, 27, 29, 1, '2015-05-25 02:08:29'),
(45, 27, 30, 1, '2015-05-25 02:08:29'),
(46, 27, 31, 1, '2015-05-25 02:08:29'),
(47, 27, 32, 1, '2015-05-25 02:08:29'),
(48, 27, 33, 1, '2015-05-25 02:08:29'),
(49, 27, 34, 1, '2015-05-25 02:08:29'),
(50, 27, 35, 1, '2015-05-25 02:08:29'),
(51, 27, 36, 1, '2015-05-25 02:08:29'),
(52, 28, 29, 1, '2015-05-25 02:08:29'),
(53, 28, 30, 1, '2015-05-25 02:08:29'),
(54, 28, 31, 1, '2015-05-25 02:08:29'),
(55, 28, 32, 1, '2015-05-25 02:08:29'),
(56, 28, 33, 1, '2015-05-25 02:08:29'),
(57, 28, 34, 1, '2015-05-25 02:08:29'),
(58, 28, 35, 1, '2015-05-25 02:08:29'),
(59, 28, 36, 1, '2015-05-25 02:08:29'),
(60, 29, 30, 1, '2015-05-25 02:08:29'),
(61, 29, 31, 1, '2015-05-25 02:08:29'),
(62, 29, 32, 1, '2015-05-25 02:08:29'),
(63, 29, 33, 1, '2015-05-25 02:08:30'),
(64, 29, 34, 1, '2015-05-25 02:08:30'),
(65, 29, 35, 1, '2015-05-25 02:08:30'),
(66, 29, 36, 1, '2015-05-25 02:08:30'),
(67, 30, 31, 1, '2015-05-25 02:08:30'),
(68, 30, 32, 1, '2015-05-25 02:08:30'),
(69, 30, 33, 1, '2015-05-25 02:08:30'),
(70, 30, 34, 1, '2015-05-25 02:08:30'),
(71, 30, 35, 1, '2015-05-25 02:08:30'),
(72, 30, 36, 1, '2015-05-25 02:08:30'),
(73, 31, 32, 1, '2015-05-25 02:08:30'),
(74, 31, 33, 1, '2015-05-25 02:08:30'),
(75, 31, 34, 1, '2015-05-25 02:08:30'),
(76, 31, 35, 1, '2015-05-25 02:08:30'),
(77, 31, 36, 1, '2015-05-25 02:08:30'),
(78, 32, 33, 1, '2015-05-25 02:08:30'),
(79, 32, 34, 1, '2015-05-25 02:08:30'),
(80, 32, 35, 1, '2015-05-25 02:08:30'),
(81, 32, 36, 1, '2015-05-25 02:08:30'),
(82, 33, 34, 1, '2015-05-25 02:08:30'),
(83, 33, 35, 1, '2015-05-25 02:08:30'),
(84, 33, 36, 1, '2015-05-25 02:08:30'),
(85, 34, 35, 1, '2015-05-25 02:08:30'),
(86, 34, 36, 1, '2015-05-25 02:08:30'),
(87, 35, 36, 1, '2015-05-25 02:08:30'),
(88, 37, 38, 1, '2015-05-25 04:42:06'),
(89, 37, 39, 1, '2015-05-25 04:42:06'),
(90, 37, 40, 1, '2015-05-25 04:42:06'),
(91, 37, 41, 1, '2015-05-25 04:42:06'),
(92, 37, 42, 1, '2015-05-25 04:42:06'),
(93, 37, 43, 1, '2015-05-25 04:42:06'),
(94, 37, 44, 1, '2015-05-25 04:42:06'),
(95, 37, 45, 1, '2015-05-25 04:42:06'),
(96, 37, 46, 1, '2015-05-25 04:42:06'),
(97, 37, 47, 1, '2015-05-25 04:42:06'),
(98, 37, 48, 1, '2015-05-25 04:42:06'),
(99, 37, 49, 1, '2015-05-25 04:42:06'),
(100, 37, 50, 1, '2015-05-25 04:42:06'),
(101, 37, 51, 1, '2015-05-25 04:42:06'),
(102, 37, 52, 1, '2015-05-25 04:42:06'),
(103, 37, 53, 1, '2015-05-25 04:42:06'),
(104, 37, 54, 1, '2015-05-25 04:42:06'),
(105, 37, 55, 1, '2015-05-25 04:42:06'),
(106, 37, 56, 1, '2015-05-25 04:42:06'),
(107, 37, 57, 1, '2015-05-25 04:42:06'),
(108, 38, 39, 1, '2015-05-25 04:42:06'),
(109, 38, 40, 1, '2015-05-25 04:42:06'),
(110, 38, 41, 1, '2015-05-25 04:42:06'),
(111, 38, 42, 1, '2015-05-25 04:42:06'),
(112, 38, 43, 1, '2015-05-25 04:42:06'),
(113, 38, 44, 1, '2015-05-25 04:42:06'),
(114, 38, 45, 1, '2015-05-25 04:42:06'),
(115, 38, 46, 1, '2015-05-25 04:42:06'),
(116, 38, 47, 1, '2015-05-25 04:42:06'),
(117, 38, 48, 1, '2015-05-25 04:42:06'),
(118, 38, 49, 1, '2015-05-25 04:42:06'),
(119, 38, 50, 1, '2015-05-25 04:42:06'),
(120, 38, 51, 1, '2015-05-25 04:42:06'),
(121, 38, 52, 1, '2015-05-25 04:42:07'),
(122, 38, 53, 1, '2015-05-25 04:42:07'),
(123, 38, 54, 1, '2015-05-25 04:42:07'),
(124, 38, 55, 1, '2015-05-25 04:42:07'),
(125, 38, 56, 1, '2015-05-25 04:42:07'),
(126, 38, 57, 1, '2015-05-25 04:42:07'),
(127, 39, 40, 1, '2015-05-25 04:42:07'),
(128, 39, 41, 1, '2015-05-25 04:42:07'),
(129, 39, 42, 1, '2015-05-25 04:42:07'),
(130, 39, 43, 1, '2015-05-25 04:42:07'),
(131, 39, 44, 1, '2015-05-25 04:42:07'),
(132, 39, 45, 1, '2015-05-25 04:42:07'),
(133, 39, 46, 1, '2015-05-25 04:42:07'),
(134, 39, 47, 1, '2015-05-25 04:42:07'),
(135, 39, 48, 1, '2015-05-25 04:42:07'),
(136, 39, 49, 1, '2015-05-25 04:42:07'),
(137, 39, 50, 1, '2015-05-25 04:42:07'),
(138, 39, 51, 1, '2015-05-25 04:42:07'),
(139, 39, 52, 1, '2015-05-25 04:42:07'),
(140, 39, 53, 1, '2015-05-25 04:42:07'),
(141, 39, 54, 1, '2015-05-25 04:42:07'),
(142, 39, 55, 1, '2015-05-25 04:42:07'),
(143, 39, 56, 1, '2015-05-25 04:42:07'),
(144, 39, 57, 1, '2015-05-25 04:42:07'),
(145, 40, 41, 1, '2015-05-25 04:42:07'),
(146, 40, 42, 1, '2015-05-25 04:42:07'),
(147, 40, 43, 1, '2015-05-25 04:42:07'),
(148, 40, 44, 1, '2015-05-25 04:42:07'),
(149, 40, 45, 1, '2015-05-25 04:42:07'),
(150, 40, 46, 1, '2015-05-25 04:42:07'),
(151, 40, 47, 1, '2015-05-25 04:42:07'),
(152, 40, 48, 1, '2015-05-25 04:42:07'),
(153, 40, 49, 1, '2015-05-25 04:42:07'),
(154, 40, 50, 1, '2015-05-25 04:42:07'),
(155, 40, 51, 1, '2015-05-25 04:42:07'),
(156, 40, 52, 1, '2015-05-25 04:42:07'),
(157, 40, 53, 1, '2015-05-25 04:42:07'),
(158, 40, 54, 1, '2015-05-25 04:42:07'),
(159, 40, 55, 1, '2015-05-25 04:42:07'),
(160, 40, 56, 1, '2015-05-25 04:42:07'),
(161, 40, 57, 1, '2015-05-25 04:42:07'),
(162, 41, 42, 1, '2015-05-25 04:42:07'),
(163, 41, 43, 1, '2015-05-25 04:42:07'),
(164, 41, 44, 1, '2015-05-25 04:42:08'),
(165, 41, 45, 1, '2015-05-25 04:42:08'),
(166, 41, 46, 1, '2015-05-25 04:42:08'),
(167, 41, 47, 1, '2015-05-25 04:42:08'),
(168, 41, 48, 1, '2015-05-25 04:42:08'),
(169, 41, 49, 1, '2015-05-25 04:42:08'),
(170, 41, 50, 1, '2015-05-25 04:42:08'),
(171, 41, 51, 1, '2015-05-25 04:42:08'),
(172, 41, 52, 1, '2015-05-25 04:42:08'),
(173, 41, 53, 1, '2015-05-25 04:42:08'),
(174, 41, 54, 1, '2015-05-25 04:42:08'),
(175, 41, 55, 1, '2015-05-25 04:42:08'),
(176, 41, 56, 1, '2015-05-25 04:42:08'),
(177, 41, 57, 1, '2015-05-25 04:42:08'),
(178, 42, 43, 1, '2015-05-25 04:42:08'),
(179, 42, 44, 1, '2015-05-25 04:42:08'),
(180, 42, 45, 1, '2015-05-25 04:42:08'),
(181, 42, 46, 1, '2015-05-25 04:42:08'),
(182, 42, 47, 1, '2015-05-25 04:42:08'),
(183, 42, 48, 1, '2015-05-25 04:42:08'),
(184, 42, 49, 1, '2015-05-25 04:42:08'),
(185, 42, 50, 1, '2015-05-25 04:42:08'),
(186, 42, 51, 1, '2015-05-25 04:42:08'),
(187, 42, 52, 1, '2015-05-25 04:42:08'),
(188, 42, 53, 1, '2015-05-25 04:42:08'),
(189, 42, 54, 1, '2015-05-25 04:42:08'),
(190, 42, 55, 1, '2015-05-25 04:42:08'),
(191, 42, 56, 1, '2015-05-25 04:42:08'),
(192, 42, 57, 1, '2015-05-25 04:42:08'),
(193, 43, 44, 1, '2015-05-25 04:42:08'),
(194, 43, 45, 1, '2015-05-25 04:42:08'),
(195, 43, 46, 1, '2015-05-25 04:42:08'),
(196, 43, 47, 1, '2015-05-25 04:42:08'),
(197, 43, 48, 1, '2015-05-25 04:42:08'),
(198, 43, 49, 1, '2015-05-25 04:42:08'),
(199, 43, 50, 1, '2015-05-25 04:42:08'),
(200, 43, 51, 1, '2015-05-25 04:42:08'),
(201, 43, 52, 1, '2015-05-25 04:42:08'),
(202, 43, 53, 1, '2015-05-25 04:42:08'),
(203, 43, 54, 1, '2015-05-25 04:42:08'),
(204, 43, 55, 1, '2015-05-25 04:42:08'),
(205, 43, 56, 1, '2015-05-25 04:42:08'),
(206, 43, 57, 1, '2015-05-25 04:42:08'),
(207, 44, 45, 1, '2015-05-25 04:42:08'),
(208, 44, 46, 1, '2015-05-25 04:42:08'),
(209, 44, 47, 1, '2015-05-25 04:42:09'),
(210, 44, 48, 1, '2015-05-25 04:42:09'),
(211, 44, 49, 1, '2015-05-25 04:42:09'),
(212, 44, 50, 1, '2015-05-25 04:42:09'),
(213, 44, 51, 1, '2015-05-25 04:42:09'),
(214, 44, 52, 1, '2015-05-25 04:42:09'),
(215, 44, 53, 1, '2015-05-25 04:42:09'),
(216, 44, 54, 1, '2015-05-25 04:42:09'),
(217, 44, 55, 1, '2015-05-25 04:42:09'),
(218, 44, 56, 1, '2015-05-25 04:42:09'),
(219, 44, 57, 1, '2015-05-25 04:42:09'),
(220, 45, 46, 1, '2015-05-25 04:42:09'),
(221, 45, 47, 1, '2015-05-25 04:42:09'),
(222, 45, 48, 1, '2015-05-25 04:42:09'),
(223, 45, 49, 1, '2015-05-25 04:42:09'),
(224, 45, 50, 1, '2015-05-25 04:42:09'),
(225, 45, 51, 1, '2015-05-25 04:42:09'),
(226, 45, 52, 1, '2015-05-25 04:42:09'),
(227, 45, 53, 1, '2015-05-25 04:42:09'),
(228, 45, 54, 1, '2015-05-25 04:42:09'),
(229, 45, 55, 1, '2015-05-25 04:42:09'),
(230, 45, 56, 1, '2015-05-25 04:42:09'),
(231, 45, 57, 1, '2015-05-25 04:42:09'),
(232, 46, 47, 1, '2015-05-25 04:42:09'),
(233, 46, 48, 1, '2015-05-25 04:42:09'),
(234, 46, 49, 1, '2015-05-25 04:42:09'),
(235, 46, 50, 1, '2015-05-25 04:42:09'),
(236, 46, 51, 1, '2015-05-25 04:42:09'),
(237, 46, 52, 1, '2015-05-25 04:42:09'),
(238, 46, 53, 1, '2015-05-25 04:42:09'),
(239, 46, 54, 1, '2015-05-25 04:42:09'),
(240, 46, 55, 1, '2015-05-25 04:42:09'),
(241, 46, 56, 1, '2015-05-25 04:42:09'),
(242, 46, 57, 1, '2015-05-25 04:42:09'),
(243, 47, 48, 1, '2015-05-25 04:42:09'),
(244, 47, 49, 1, '2015-05-25 04:42:09'),
(245, 47, 50, 1, '2015-05-25 04:42:09'),
(246, 47, 51, 1, '2015-05-25 04:42:09'),
(247, 47, 52, 1, '2015-05-25 04:42:09'),
(248, 47, 53, 1, '2015-05-25 04:42:09'),
(249, 47, 54, 1, '2015-05-25 04:42:09'),
(250, 47, 55, 1, '2015-05-25 04:42:09'),
(251, 47, 56, 1, '2015-05-25 04:42:09'),
(252, 47, 57, 1, '2015-05-25 04:42:10'),
(253, 48, 49, 1, '2015-05-25 04:42:10'),
(254, 48, 50, 1, '2015-05-25 04:42:10'),
(255, 48, 51, 1, '2015-05-25 04:42:10'),
(256, 48, 52, 1, '2015-05-25 04:42:10'),
(257, 48, 53, 1, '2015-05-25 04:42:10'),
(258, 48, 54, 1, '2015-05-25 04:42:10'),
(259, 48, 55, 1, '2015-05-25 04:42:10'),
(260, 48, 56, 1, '2015-05-25 04:42:10'),
(261, 48, 57, 1, '2015-05-25 04:42:10'),
(262, 49, 50, 1, '2015-05-25 04:42:10'),
(263, 49, 51, 1, '2015-05-25 04:42:10'),
(264, 49, 52, 1, '2015-05-25 04:42:10'),
(265, 49, 53, 1, '2015-05-25 04:42:10'),
(266, 49, 54, 1, '2015-05-25 04:42:10'),
(267, 49, 55, 1, '2015-05-25 04:42:10'),
(268, 49, 56, 1, '2015-05-25 04:42:10'),
(269, 49, 57, 1, '2015-05-25 04:42:10'),
(270, 50, 51, 1, '2015-05-25 04:42:10'),
(271, 50, 52, 1, '2015-05-25 04:42:10'),
(272, 50, 53, 1, '2015-05-25 04:42:10'),
(273, 50, 54, 1, '2015-05-25 04:42:10'),
(274, 50, 55, 1, '2015-05-25 04:42:10'),
(275, 50, 56, 1, '2015-05-25 04:42:10'),
(276, 50, 57, 1, '2015-05-25 04:42:10'),
(277, 51, 52, 1, '2015-05-25 04:42:10'),
(278, 51, 53, 1, '2015-05-25 04:42:10'),
(279, 51, 54, 1, '2015-05-25 04:42:10'),
(280, 51, 55, 1, '2015-05-25 04:42:10'),
(281, 51, 56, 1, '2015-05-25 04:42:10'),
(282, 51, 57, 1, '2015-05-25 04:42:10'),
(283, 52, 53, 1, '2015-05-25 04:42:10'),
(284, 52, 54, 1, '2015-05-25 04:42:10'),
(285, 52, 55, 1, '2015-05-25 04:42:10'),
(286, 52, 56, 1, '2015-05-25 04:42:10'),
(287, 52, 57, 1, '2015-05-25 04:42:10'),
(288, 53, 54, 1, '2015-05-25 04:42:10'),
(289, 53, 55, 1, '2015-05-25 04:42:10'),
(290, 53, 56, 1, '2015-05-25 04:42:10'),
(291, 53, 57, 1, '2015-05-25 04:42:10'),
(292, 54, 55, 1, '2015-05-25 04:42:10'),
(293, 54, 56, 1, '2015-05-25 04:42:10'),
(294, 54, 57, 1, '2015-05-25 04:42:10'),
(295, 55, 56, 1, '2015-05-25 04:42:11'),
(296, 55, 57, 1, '2015-05-25 04:42:11'),
(297, 56, 57, 1, '2015-05-25 04:42:11'),
(298, 58, 59, 1, '2015-05-25 04:43:25'),
(299, 58, 60, 1, '2015-05-25 04:43:25'),
(300, 59, 60, 1, '2015-05-25 04:43:25'),
(301, 61, 62, 1, '2015-05-25 04:44:48'),
(302, 61, 63, 1, '2015-05-25 04:44:48'),
(303, 62, 63, 1, '2015-05-25 04:44:48'),
(304, 7, 64, 1, '2015-05-25 04:46:19'),
(305, 7, 65, 1, '2015-05-25 04:46:19'),
(306, 64, 65, 1, '2015-05-25 04:46:19'),
(307, 66, 67, 1, '2015-05-25 04:46:56'),
(308, 66, 68, 1, '2015-05-25 04:46:56'),
(309, 66, 69, 1, '2015-05-25 04:46:56'),
(310, 66, 70, 1, '2015-05-25 04:46:56'),
(311, 66, 71, 1, '2015-05-25 04:46:57'),
(312, 67, 68, 1, '2015-05-25 04:46:57'),
(313, 67, 69, 1, '2015-05-25 04:46:57'),
(314, 67, 70, 1, '2015-05-25 04:46:57'),
(315, 67, 71, 1, '2015-05-25 04:46:57'),
(316, 68, 69, 1, '2015-05-25 04:46:57'),
(317, 68, 70, 1, '2015-05-25 04:46:57'),
(318, 68, 71, 1, '2015-05-25 04:46:57'),
(319, 69, 70, 1, '2015-05-25 04:46:57'),
(320, 69, 71, 1, '2015-05-25 04:46:57'),
(321, 70, 71, 1, '2015-05-25 04:46:57'),
(322, 72, 73, 1, '2015-05-25 04:47:21'),
(323, 72, 74, 1, '2015-05-25 04:47:21'),
(324, 72, 69, 1, '2015-05-25 04:47:21'),
(325, 72, 75, 1, '2015-05-25 04:47:21'),
(326, 72, 76, 1, '2015-05-25 04:47:21'),
(327, 73, 74, 1, '2015-05-25 04:47:21'),
(328, 73, 69, 1, '2015-05-25 04:47:21'),
(329, 73, 75, 1, '2015-05-25 04:47:21'),
(330, 73, 76, 1, '2015-05-25 04:47:21'),
(331, 74, 69, 1, '2015-05-25 04:47:21'),
(332, 74, 75, 1, '2015-05-25 04:47:21'),
(333, 74, 76, 1, '2015-05-25 04:47:21'),
(334, 69, 75, 1, '2015-05-25 04:47:21'),
(335, 69, 76, 1, '2015-05-25 04:47:22'),
(336, 75, 76, 1, '2015-05-25 04:47:22'),
(337, 77, 78, 1, '2015-05-25 04:48:12'),
(338, 77, 79, 1, '2015-05-25 04:48:12'),
(339, 77, 10, 1, '2015-05-25 04:48:12'),
(340, 77, 80, 1, '2015-05-25 04:48:12'),
(341, 77, 81, 1, '2015-05-25 04:48:12'),
(342, 78, 79, 1, '2015-05-25 04:48:12'),
(343, 78, 10, 1, '2015-05-25 04:48:12'),
(344, 78, 80, 1, '2015-05-25 04:48:12'),
(345, 78, 81, 1, '2015-05-25 04:48:12'),
(346, 79, 10, 1, '2015-05-25 04:48:12'),
(347, 79, 80, 1, '2015-05-25 04:48:12'),
(348, 79, 81, 1, '2015-05-25 04:48:13'),
(349, 10, 80, 1, '2015-05-25 04:48:13'),
(350, 10, 81, 1, '2015-05-25 04:48:13'),
(351, 80, 81, 1, '2015-05-25 04:48:13'),
(352, 82, 83, 1, '2015-05-25 04:48:25'),
(353, 82, 26, 1, '2015-05-25 04:48:25'),
(354, 83, 26, 1, '2015-05-25 04:48:25'),
(355, 84, 85, 1, '2015-05-25 04:49:27'),
(356, 84, 86, 1, '2015-05-25 04:49:27'),
(357, 84, 87, 1, '2015-05-25 04:49:27'),
(358, 84, 88, 1, '2015-05-25 04:49:27'),
(359, 84, 89, 1, '2015-05-25 04:49:27'),
(360, 84, 90, 1, '2015-05-25 04:49:27'),
(361, 84, 91, 1, '2015-05-25 04:49:27'),
(362, 84, 92, 1, '2015-05-25 04:49:27'),
(363, 84, 93, 1, '2015-05-25 04:49:27'),
(364, 85, 86, 1, '2015-05-25 04:49:27'),
(365, 85, 87, 1, '2015-05-25 04:49:27'),
(366, 85, 88, 1, '2015-05-25 04:49:27'),
(367, 85, 89, 1, '2015-05-25 04:49:27'),
(368, 85, 90, 1, '2015-05-25 04:49:27'),
(369, 85, 91, 1, '2015-05-25 04:49:27'),
(370, 85, 92, 1, '2015-05-25 04:49:27'),
(371, 85, 93, 1, '2015-05-25 04:49:27'),
(372, 86, 87, 1, '2015-05-25 04:49:27'),
(373, 86, 88, 1, '2015-05-25 04:49:27'),
(374, 86, 89, 1, '2015-05-25 04:49:27'),
(375, 86, 90, 1, '2015-05-25 04:49:27'),
(376, 86, 91, 1, '2015-05-25 04:49:27'),
(377, 86, 92, 1, '2015-05-25 04:49:28'),
(378, 86, 93, 1, '2015-05-25 04:49:28'),
(379, 87, 88, 1, '2015-05-25 04:49:28'),
(380, 87, 89, 1, '2015-05-25 04:49:28'),
(381, 87, 90, 1, '2015-05-25 04:49:28'),
(382, 87, 91, 1, '2015-05-25 04:49:28'),
(383, 87, 92, 1, '2015-05-25 04:49:28'),
(384, 87, 93, 1, '2015-05-25 04:49:28'),
(385, 88, 89, 1, '2015-05-25 04:49:28'),
(386, 88, 90, 1, '2015-05-25 04:49:28'),
(387, 88, 91, 1, '2015-05-25 04:49:28'),
(388, 88, 92, 1, '2015-05-25 04:49:28'),
(389, 88, 93, 1, '2015-05-25 04:49:28'),
(390, 89, 90, 1, '2015-05-25 04:49:28'),
(391, 89, 91, 1, '2015-05-25 04:49:28'),
(392, 89, 92, 1, '2015-05-25 04:49:28'),
(393, 89, 93, 1, '2015-05-25 04:49:28'),
(394, 90, 91, 1, '2015-05-25 04:49:28'),
(395, 90, 92, 1, '2015-05-25 04:49:28'),
(396, 90, 93, 1, '2015-05-25 04:49:28'),
(397, 91, 92, 1, '2015-05-25 04:49:28'),
(398, 91, 93, 1, '2015-05-25 04:49:28'),
(399, 92, 93, 1, '2015-05-25 04:49:28'),
(400, 94, 95, 1, '2015-05-25 04:50:29'),
(401, 94, 96, 1, '2015-05-25 04:50:29'),
(402, 94, 97, 1, '2015-05-25 04:50:29'),
(403, 94, 98, 1, '2015-05-25 04:50:29'),
(404, 94, 99, 1, '2015-05-25 04:50:29'),
(405, 95, 96, 1, '2015-05-25 04:50:29'),
(406, 95, 97, 1, '2015-05-25 04:50:29'),
(407, 95, 98, 1, '2015-05-25 04:50:29'),
(408, 95, 99, 1, '2015-05-25 04:50:29'),
(409, 96, 97, 1, '2015-05-25 04:50:29'),
(410, 96, 98, 1, '2015-05-25 04:50:29'),
(411, 96, 99, 1, '2015-05-25 04:50:29'),
(412, 97, 98, 1, '2015-05-25 04:50:29'),
(413, 97, 99, 1, '2015-05-25 04:50:29'),
(414, 98, 99, 1, '2015-05-25 04:50:29'),
(415, 102, 103, 1, '2015-05-25 04:51:38'),
(416, 102, 104, 1, '2015-05-25 04:51:38'),
(417, 103, 104, 1, '2015-05-25 04:51:38'),
(418, 105, 106, 1, '2015-05-25 04:52:40'),
(419, 105, 107, 1, '2015-05-25 04:52:40'),
(420, 106, 107, 1, '2015-05-25 04:52:40'),
(421, 108, 109, 1, '2015-05-25 04:57:51'),
(422, 108, 110, 1, '2015-05-25 04:57:51'),
(423, 109, 110, 1, '2015-05-25 04:57:51'),
(424, 108, 111, 2, '2015-05-25 05:00:16'),
(425, 108, 112, 2, '2015-05-25 05:00:16'),
(426, 111, 112, 2, '2015-05-25 05:00:17'),
(427, 113, 114, 5, '2015-05-25 05:06:21'),
(428, 113, 115, 5, '2015-05-25 05:06:21'),
(429, 113, 116, 5, '2015-05-25 05:06:21'),
(430, 113, 117, 5, '2015-05-25 05:06:21'),
(431, 113, 118, 5, '2015-05-25 05:06:21'),
(432, 114, 115, 5, '2015-05-25 05:06:21'),
(433, 114, 116, 5, '2015-05-25 05:06:21'),
(434, 114, 117, 5, '2015-05-25 05:06:21'),
(435, 114, 118, 5, '2015-05-25 05:06:21'),
(436, 115, 116, 5, '2015-05-25 05:06:21'),
(437, 115, 117, 5, '2015-05-25 05:06:21'),
(438, 115, 118, 5, '2015-05-25 05:06:21'),
(439, 116, 117, 5, '2015-05-25 05:06:21'),
(440, 116, 118, 5, '2015-05-25 05:06:22'),
(441, 117, 118, 5, '2015-05-25 05:06:22'),
(442, 122, 123, 3, '2015-05-25 05:50:35'),
(443, 122, 124, 3, '2015-05-25 05:50:35'),
(444, 122, 125, 3, '2015-05-25 05:50:35'),
(445, 122, 126, 3, '2015-05-25 05:50:35'),
(446, 122, 127, 3, '2015-05-25 05:50:35'),
(447, 123, 124, 3, '2015-05-25 05:50:35'),
(448, 123, 125, 3, '2015-05-25 05:50:35'),
(449, 123, 126, 3, '2015-05-25 05:50:35'),
(450, 123, 127, 3, '2015-05-25 05:50:35'),
(451, 124, 125, 3, '2015-05-25 05:50:36'),
(452, 124, 126, 3, '2015-05-25 05:50:36'),
(453, 124, 127, 3, '2015-05-25 05:50:36'),
(454, 125, 126, 3, '2015-05-25 05:50:36'),
(455, 125, 127, 3, '2015-05-25 05:50:36'),
(456, 126, 127, 3, '2015-05-25 05:50:36'),
(457, 129, 130, 2, '2015-05-25 14:06:10'),
(458, 129, 131, 2, '2015-05-25 14:06:10'),
(459, 130, 131, 2, '2015-05-25 14:06:10'),
(460, 132, 133, 1, '2015-05-25 15:42:06'),
(461, 132, 134, 1, '2015-05-25 15:42:06'),
(462, 133, 134, 1, '2015-05-25 15:42:06'),
(463, 13, 135, 1, '2015-05-25 15:42:43'),
(464, 13, 136, 1, '2015-05-25 15:42:43'),
(465, 13, 10, 1, '2015-05-25 15:42:43'),
(466, 13, 11, 1, '2015-05-25 15:42:43'),
(467, 13, 12, 1, '2015-05-25 15:42:43'),
(468, 135, 136, 1, '2015-05-25 15:42:43'),
(469, 135, 10, 1, '2015-05-25 15:42:43'),
(470, 135, 11, 1, '2015-05-25 15:42:43'),
(471, 135, 12, 1, '2015-05-25 15:42:43'),
(472, 136, 10, 1, '2015-05-25 15:42:43'),
(473, 136, 11, 1, '2015-05-25 15:42:43'),
(474, 136, 12, 1, '2015-05-25 15:42:43'),
(475, 1, 137, 1, '2015-05-25 17:51:38'),
(476, 1, 138, 1, '2015-05-25 17:51:38'),
(477, 1, 139, 1, '2015-05-25 17:51:38'),
(478, 137, 2, 1, '2015-05-25 17:51:38'),
(479, 137, 138, 1, '2015-05-25 17:51:38'),
(480, 137, 3, 1, '2015-05-25 17:51:38'),
(481, 137, 139, 1, '2015-05-25 17:51:38'),
(482, 2, 138, 1, '2015-05-25 17:51:38'),
(483, 2, 139, 1, '2015-05-25 17:51:38'),
(484, 138, 3, 1, '2015-05-25 17:51:38'),
(485, 138, 139, 1, '2015-05-25 17:51:38'),
(486, 3, 139, 1, '2015-05-25 17:51:38'),
(487, 140, 141, 1, '2015-05-26 02:09:48'),
(488, 140, 142, 1, '2015-05-26 02:09:48'),
(489, 141, 142, 1, '2015-05-26 02:09:48'),
(490, 143, 5, 1, '2015-05-29 02:55:40'),
(491, 143, 144, 1, '2015-05-29 02:55:40'),
(492, 5, 144, 1, '2015-05-29 02:55:40'),
(493, 145, 146, 1, '2015-05-29 02:56:10'),
(494, 145, 147, 1, '2015-05-29 02:56:10'),
(495, 145, 148, 1, '2015-05-29 02:56:11'),
(496, 145, 149, 1, '2015-05-29 02:56:11'),
(497, 145, 150, 1, '2015-05-29 02:56:11'),
(498, 146, 147, 1, '2015-05-29 02:56:11'),
(499, 146, 148, 1, '2015-05-29 02:56:11'),
(500, 146, 149, 1, '2015-05-29 02:56:11'),
(501, 146, 150, 1, '2015-05-29 02:56:11'),
(502, 147, 148, 1, '2015-05-29 02:56:11'),
(503, 147, 149, 1, '2015-05-29 02:56:11'),
(504, 147, 150, 1, '2015-05-29 02:56:11'),
(505, 148, 149, 1, '2015-05-29 02:56:11'),
(506, 148, 150, 1, '2015-05-29 02:56:11'),
(507, 149, 150, 1, '2015-05-29 02:56:11'),
(508, 152, 153, 1, '2015-05-29 03:01:13'),
(509, 152, 154, 1, '2015-05-29 03:01:13'),
(510, 152, 155, 1, '2015-05-29 03:01:13'),
(511, 152, 156, 1, '2015-05-29 03:01:13'),
(512, 152, 157, 1, '2015-05-29 03:01:13'),
(513, 153, 154, 1, '2015-05-29 03:01:13'),
(514, 153, 155, 1, '2015-05-29 03:01:13'),
(515, 153, 156, 1, '2015-05-29 03:01:13'),
(516, 153, 157, 1, '2015-05-29 03:01:13'),
(517, 154, 155, 1, '2015-05-29 03:01:13'),
(518, 154, 156, 1, '2015-05-29 03:01:13'),
(519, 154, 157, 1, '2015-05-29 03:01:13'),
(520, 155, 156, 1, '2015-05-29 03:01:13'),
(521, 155, 157, 1, '2015-05-29 03:01:13'),
(522, 156, 157, 1, '2015-05-29 03:01:13'),
(523, 158, 159, 1, '2015-05-29 03:01:29'),
(524, 158, 160, 1, '2015-05-29 03:01:29'),
(525, 158, 161, 1, '2015-05-29 03:01:29'),
(526, 158, 162, 1, '2015-05-29 03:01:29'),
(527, 158, 163, 1, '2015-05-29 03:01:29'),
(528, 158, 164, 1, '2015-05-29 03:01:29'),
(529, 158, 165, 1, '2015-05-29 03:01:29'),
(530, 158, 166, 1, '2015-05-29 03:01:29'),
(531, 158, 167, 1, '2015-05-29 03:01:29'),
(532, 159, 160, 1, '2015-05-29 03:01:29'),
(533, 159, 161, 1, '2015-05-29 03:01:29'),
(534, 159, 162, 1, '2015-05-29 03:01:29'),
(535, 159, 163, 1, '2015-05-29 03:01:29'),
(536, 159, 164, 1, '2015-05-29 03:01:29'),
(537, 159, 165, 1, '2015-05-29 03:01:29'),
(538, 159, 166, 1, '2015-05-29 03:01:29'),
(539, 159, 167, 1, '2015-05-29 03:01:29'),
(540, 160, 161, 1, '2015-05-29 03:01:29'),
(541, 160, 162, 1, '2015-05-29 03:01:29'),
(542, 160, 163, 1, '2015-05-29 03:01:29'),
(543, 160, 164, 1, '2015-05-29 03:01:29'),
(544, 160, 165, 1, '2015-05-29 03:01:29'),
(545, 160, 166, 1, '2015-05-29 03:01:30'),
(546, 160, 167, 1, '2015-05-29 03:01:30'),
(547, 161, 162, 1, '2015-05-29 03:01:30'),
(548, 161, 163, 1, '2015-05-29 03:01:30'),
(549, 161, 164, 1, '2015-05-29 03:01:30'),
(550, 161, 165, 1, '2015-05-29 03:01:30'),
(551, 161, 166, 1, '2015-05-29 03:01:30'),
(552, 161, 167, 1, '2015-05-29 03:01:30'),
(553, 162, 163, 1, '2015-05-29 03:01:30'),
(554, 162, 164, 1, '2015-05-29 03:01:30'),
(555, 162, 165, 1, '2015-05-29 03:01:30'),
(556, 162, 166, 1, '2015-05-29 03:01:30'),
(557, 162, 167, 1, '2015-05-29 03:01:30'),
(558, 163, 164, 1, '2015-05-29 03:01:30'),
(559, 163, 165, 1, '2015-05-29 03:01:30'),
(560, 163, 166, 1, '2015-05-29 03:01:30'),
(561, 163, 167, 1, '2015-05-29 03:01:30'),
(562, 164, 165, 1, '2015-05-29 03:01:30'),
(563, 164, 166, 1, '2015-05-29 03:01:30'),
(564, 164, 167, 1, '2015-05-29 03:01:30'),
(565, 165, 166, 1, '2015-05-29 03:01:30'),
(566, 165, 167, 1, '2015-05-29 03:01:30'),
(567, 166, 167, 1, '2015-05-29 03:01:30'),
(568, 7, 168, 1, '2015-05-29 03:06:03'),
(569, 7, 169, 1, '2015-05-29 03:06:03'),
(570, 7, 170, 1, '2015-05-29 03:06:03'),
(571, 7, 171, 1, '2015-05-29 03:06:03'),
(572, 7, 172, 1, '2015-05-29 03:06:03'),
(573, 168, 169, 1, '2015-05-29 03:06:03'),
(574, 168, 170, 1, '2015-05-29 03:06:03'),
(575, 168, 171, 1, '2015-05-29 03:06:04'),
(576, 168, 172, 1, '2015-05-29 03:06:04'),
(577, 169, 170, 1, '2015-05-29 03:06:04'),
(578, 169, 171, 1, '2015-05-29 03:06:04'),
(579, 169, 172, 1, '2015-05-29 03:06:04'),
(580, 170, 171, 1, '2015-05-29 03:06:04'),
(581, 170, 172, 1, '2015-05-29 03:06:04'),
(582, 171, 172, 1, '2015-05-29 03:06:04'),
(583, 7, 174, 6, '2015-05-29 04:16:15'),
(584, 7, 175, 6, '2015-05-29 04:16:15'),
(585, 174, 175, 6, '2015-05-29 04:16:15'),
(586, 7, 176, 6, '2015-05-29 04:19:40'),
(587, 7, 177, 6, '2015-05-29 04:19:40'),
(588, 176, 177, 6, '2015-05-29 04:19:40'),
(589, 19, 178, 5, '2015-05-29 04:21:04'),
(590, 19, 179, 5, '2015-05-29 04:21:04'),
(591, 178, 179, 5, '2015-05-29 04:21:04'),
(592, 180, 181, 1, '2015-05-29 04:24:43'),
(593, 180, 182, 1, '2015-05-29 04:24:43'),
(594, 180, 183, 1, '2015-05-29 04:24:44'),
(595, 180, 184, 1, '2015-05-29 04:24:44'),
(596, 180, 185, 1, '2015-05-29 04:24:44'),
(597, 181, 182, 1, '2015-05-29 04:24:44'),
(598, 181, 183, 1, '2015-05-29 04:24:44'),
(599, 181, 184, 1, '2015-05-29 04:24:44'),
(600, 181, 185, 1, '2015-05-29 04:24:44'),
(601, 182, 183, 1, '2015-05-29 04:24:44'),
(602, 182, 184, 1, '2015-05-29 04:24:44'),
(603, 182, 185, 1, '2015-05-29 04:24:44'),
(604, 183, 184, 1, '2015-05-29 04:24:44'),
(605, 183, 185, 1, '2015-05-29 04:24:44'),
(606, 184, 185, 1, '2015-05-29 04:24:44'),
(607, 186, 187, 1, '2015-05-29 04:27:18'),
(608, 186, 188, 1, '2015-05-29 04:27:18'),
(609, 187, 188, 1, '2015-05-29 04:27:18'),
(610, 189, 190, 1, '2015-05-29 04:32:09'),
(611, 189, 191, 1, '2015-05-29 04:32:09'),
(612, 189, 192, 1, '2015-05-29 04:32:09'),
(613, 189, 193, 1, '2015-05-29 04:32:09'),
(614, 189, 194, 1, '2015-05-29 04:32:09'),
(615, 189, 195, 1, '2015-05-29 04:32:09'),
(616, 189, 196, 1, '2015-05-29 04:32:09'),
(617, 189, 197, 1, '2015-05-29 04:32:09'),
(618, 189, 198, 1, '2015-05-29 04:32:09'),
(619, 190, 191, 1, '2015-05-29 04:32:09'),
(620, 190, 192, 1, '2015-05-29 04:32:09'),
(621, 190, 193, 1, '2015-05-29 04:32:09'),
(622, 190, 194, 1, '2015-05-29 04:32:09'),
(623, 190, 195, 1, '2015-05-29 04:32:09'),
(624, 190, 196, 1, '2015-05-29 04:32:09'),
(625, 190, 197, 1, '2015-05-29 04:32:09'),
(626, 190, 198, 1, '2015-05-29 04:32:09'),
(627, 191, 192, 1, '2015-05-29 04:32:09'),
(628, 191, 193, 1, '2015-05-29 04:32:09'),
(629, 191, 194, 1, '2015-05-29 04:32:09'),
(630, 191, 195, 1, '2015-05-29 04:32:09'),
(631, 191, 196, 1, '2015-05-29 04:32:09'),
(632, 191, 197, 1, '2015-05-29 04:32:09'),
(633, 191, 198, 1, '2015-05-29 04:32:09'),
(634, 192, 193, 1, '2015-05-29 04:32:09'),
(635, 192, 194, 1, '2015-05-29 04:32:09'),
(636, 192, 195, 1, '2015-05-29 04:32:09'),
(637, 192, 196, 1, '2015-05-29 04:32:10'),
(638, 192, 197, 1, '2015-05-29 04:32:10'),
(639, 192, 198, 1, '2015-05-29 04:32:10'),
(640, 193, 194, 1, '2015-05-29 04:32:10'),
(641, 193, 195, 1, '2015-05-29 04:32:10'),
(642, 193, 196, 1, '2015-05-29 04:32:10'),
(643, 193, 197, 1, '2015-05-29 04:32:10'),
(644, 193, 198, 1, '2015-05-29 04:32:10'),
(645, 194, 195, 1, '2015-05-29 04:32:10'),
(646, 194, 196, 1, '2015-05-29 04:32:10'),
(647, 194, 197, 1, '2015-05-29 04:32:10'),
(648, 194, 198, 1, '2015-05-29 04:32:10'),
(649, 195, 196, 1, '2015-05-29 04:32:10'),
(650, 195, 197, 1, '2015-05-29 04:32:10'),
(651, 195, 198, 1, '2015-05-29 04:32:10'),
(652, 196, 197, 1, '2015-05-29 04:32:10'),
(653, 196, 198, 1, '2015-05-29 04:32:10'),
(654, 197, 198, 1, '2015-05-29 04:32:10'),
(655, 122, 199, 2, '2015-05-29 04:33:38'),
(656, 122, 200, 2, '2015-05-29 04:33:38'),
(657, 199, 200, 2, '2015-05-29 04:33:38'),
(658, 122, 201, 1, '2015-05-29 04:34:53'),
(659, 122, 202, 1, '2015-05-29 04:34:53'),
(660, 122, 203, 1, '2015-05-29 04:34:53'),
(661, 201, 199, 1, '2015-05-29 04:34:53'),
(662, 201, 202, 1, '2015-05-29 04:34:53'),
(663, 201, 200, 1, '2015-05-29 04:34:53'),
(664, 201, 203, 1, '2015-05-29 04:34:53'),
(665, 199, 202, 1, '2015-05-29 04:34:53'),
(666, 199, 203, 1, '2015-05-29 04:34:53'),
(667, 202, 200, 1, '2015-05-29 04:34:53'),
(668, 202, 203, 1, '2015-05-29 04:34:53'),
(669, 200, 203, 1, '2015-05-29 04:34:53'),
(670, 204, 205, 1, '2015-05-29 04:38:59'),
(671, 204, 206, 1, '2015-05-29 04:38:59'),
(672, 204, 207, 1, '2015-05-29 04:38:59'),
(673, 204, 208, 1, '2015-05-29 04:38:59'),
(674, 204, 209, 1, '2015-05-29 04:38:59'),
(675, 205, 206, 1, '2015-05-29 04:38:59'),
(676, 205, 207, 1, '2015-05-29 04:38:59'),
(677, 205, 208, 1, '2015-05-29 04:38:59'),
(678, 205, 209, 1, '2015-05-29 04:38:59'),
(679, 206, 207, 1, '2015-05-29 04:38:59'),
(680, 206, 208, 1, '2015-05-29 04:38:59'),
(681, 206, 209, 1, '2015-05-29 04:38:59'),
(682, 207, 208, 1, '2015-05-29 04:38:59'),
(683, 207, 209, 1, '2015-05-29 04:38:59'),
(684, 208, 209, 1, '2015-05-29 04:38:59'),
(685, 210, 211, 1, '2015-05-29 04:44:13'),
(686, 210, 212, 1, '2015-05-29 04:44:13'),
(687, 211, 212, 1, '2015-05-29 04:44:13'),
(688, 7, 213, 1, '2015-05-29 04:46:57'),
(689, 7, 214, 1, '2015-05-29 04:46:57'),
(690, 213, 214, 1, '2015-05-29 04:46:57'),
(691, 7, 215, 1, '2015-05-29 04:48:02'),
(692, 7, 216, 1, '2015-05-29 04:48:02'),
(693, 215, 216, 1, '2015-05-29 04:48:02'),
(694, 217, 218, 1, '2015-05-29 04:48:47'),
(695, 217, 219, 1, '2015-05-29 04:48:48'),
(696, 218, 219, 1, '2015-05-29 04:48:48'),
(697, 221, 222, 2, '2015-05-29 04:49:31'),
(698, 221, 223, 2, '2015-05-29 04:49:31'),
(699, 222, 223, 2, '2015-05-29 04:49:31'),
(700, 224, 225, 1, '2015-05-29 04:50:50'),
(701, 224, 226, 1, '2015-05-29 04:50:50'),
(702, 225, 226, 1, '2015-05-29 04:50:50'),
(703, 228, 229, 1, '2015-05-30 15:16:16'),
(704, 228, 230, 1, '2015-05-30 15:16:16'),
(705, 229, 230, 1, '2015-05-30 15:16:16'),
(706, 231, 232, 1, '2015-05-30 15:16:29'),
(707, 231, 233, 1, '2015-05-30 15:16:29'),
(708, 231, 222, 1, '2015-05-30 15:16:29'),
(709, 231, 230, 1, '2015-05-30 15:16:29'),
(710, 231, 234, 1, '2015-05-30 15:16:29'),
(711, 231, 235, 1, '2015-05-30 15:16:29'),
(712, 231, 236, 1, '2015-05-30 15:16:29'),
(713, 231, 237, 1, '2015-05-30 15:16:29'),
(714, 231, 238, 1, '2015-05-30 15:16:30'),
(715, 232, 233, 1, '2015-05-30 15:16:30'),
(716, 232, 222, 1, '2015-05-30 15:16:30'),
(717, 232, 230, 1, '2015-05-30 15:16:30'),
(718, 232, 234, 1, '2015-05-30 15:16:30'),
(719, 232, 235, 1, '2015-05-30 15:16:30'),
(720, 232, 236, 1, '2015-05-30 15:16:30'),
(721, 232, 237, 1, '2015-05-30 15:16:30'),
(722, 232, 238, 1, '2015-05-30 15:16:30'),
(723, 233, 222, 1, '2015-05-30 15:16:30'),
(724, 233, 230, 1, '2015-05-30 15:16:30'),
(725, 233, 234, 1, '2015-05-30 15:16:30'),
(726, 233, 235, 1, '2015-05-30 15:16:30'),
(727, 233, 236, 1, '2015-05-30 15:16:30'),
(728, 233, 237, 1, '2015-05-30 15:16:30'),
(729, 233, 238, 1, '2015-05-30 15:16:30'),
(730, 222, 230, 1, '2015-05-30 15:16:30'),
(731, 222, 234, 1, '2015-05-30 15:16:30'),
(732, 222, 235, 1, '2015-05-30 15:16:30'),
(733, 222, 236, 1, '2015-05-30 15:16:30'),
(734, 222, 237, 1, '2015-05-30 15:16:30'),
(735, 222, 238, 1, '2015-05-30 15:16:30'),
(736, 230, 234, 1, '2015-05-30 15:16:30'),
(737, 230, 235, 1, '2015-05-30 15:16:30'),
(738, 230, 236, 1, '2015-05-30 15:16:30'),
(739, 230, 237, 1, '2015-05-30 15:16:30'),
(740, 230, 238, 1, '2015-05-30 15:16:30'),
(741, 234, 235, 1, '2015-05-30 15:16:30'),
(742, 234, 236, 1, '2015-05-30 15:16:30'),
(743, 234, 237, 1, '2015-05-30 15:16:30'),
(744, 234, 238, 1, '2015-05-30 15:16:30'),
(745, 235, 236, 1, '2015-05-30 15:16:30'),
(746, 235, 237, 1, '2015-05-30 15:16:30'),
(747, 235, 238, 1, '2015-05-30 15:16:30'),
(748, 236, 237, 1, '2015-05-30 15:16:30'),
(749, 236, 238, 1, '2015-05-30 15:16:30'),
(750, 237, 238, 1, '2015-05-30 15:16:30'),
(751, 239, 240, 1, '2015-05-30 15:16:51'),
(752, 239, 241, 1, '2015-05-30 15:16:51'),
(753, 239, 242, 1, '2015-05-30 15:16:51'),
(754, 239, 243, 1, '2015-05-30 15:16:51'),
(755, 239, 244, 1, '2015-05-30 15:16:51'),
(756, 239, 245, 1, '2015-05-30 15:16:51'),
(757, 239, 246, 1, '2015-05-30 15:16:51'),
(758, 239, 247, 1, '2015-05-30 15:16:51'),
(759, 239, 248, 1, '2015-05-30 15:16:51'),
(760, 239, 249, 1, '2015-05-30 15:16:51'),
(761, 239, 250, 1, '2015-05-30 15:16:51'),
(762, 239, 251, 1, '2015-05-30 15:16:51'),
(763, 239, 252, 1, '2015-05-30 15:16:51'),
(764, 239, 253, 1, '2015-05-30 15:16:51'),
(765, 240, 241, 1, '2015-05-30 15:16:51'),
(766, 240, 242, 1, '2015-05-30 15:16:51'),
(767, 240, 243, 1, '2015-05-30 15:16:51'),
(768, 240, 244, 1, '2015-05-30 15:16:52'),
(769, 240, 245, 1, '2015-05-30 15:16:52'),
(770, 240, 246, 1, '2015-05-30 15:16:52'),
(771, 240, 247, 1, '2015-05-30 15:16:52'),
(772, 240, 248, 1, '2015-05-30 15:16:52'),
(773, 240, 249, 1, '2015-05-30 15:16:52'),
(774, 240, 250, 1, '2015-05-30 15:16:52'),
(775, 240, 251, 1, '2015-05-30 15:16:52'),
(776, 240, 252, 1, '2015-05-30 15:16:52'),
(777, 240, 253, 1, '2015-05-30 15:16:52'),
(778, 241, 242, 1, '2015-05-30 15:16:52'),
(779, 241, 243, 1, '2015-05-30 15:16:52'),
(780, 241, 244, 1, '2015-05-30 15:16:52'),
(781, 241, 245, 1, '2015-05-30 15:16:52'),
(782, 241, 246, 1, '2015-05-30 15:16:52'),
(783, 241, 247, 1, '2015-05-30 15:16:52'),
(784, 241, 248, 1, '2015-05-30 15:16:52'),
(785, 241, 249, 1, '2015-05-30 15:16:52'),
(786, 241, 250, 1, '2015-05-30 15:16:52'),
(787, 241, 251, 1, '2015-05-30 15:16:52'),
(788, 241, 252, 1, '2015-05-30 15:16:52'),
(789, 241, 253, 1, '2015-05-30 15:16:52'),
(790, 242, 243, 1, '2015-05-30 15:16:52'),
(791, 242, 244, 1, '2015-05-30 15:16:52'),
(792, 242, 245, 1, '2015-05-30 15:16:52'),
(793, 242, 246, 1, '2015-05-30 15:16:52'),
(794, 242, 247, 1, '2015-05-30 15:16:52'),
(795, 242, 248, 1, '2015-05-30 15:16:52'),
(796, 242, 249, 1, '2015-05-30 15:16:53'),
(797, 242, 250, 1, '2015-05-30 15:16:53'),
(798, 242, 251, 1, '2015-05-30 15:16:53'),
(799, 242, 252, 1, '2015-05-30 15:16:53'),
(800, 242, 253, 1, '2015-05-30 15:16:53'),
(801, 243, 244, 1, '2015-05-30 15:16:53'),
(802, 243, 245, 1, '2015-05-30 15:16:53'),
(803, 243, 246, 1, '2015-05-30 15:16:53'),
(804, 243, 247, 1, '2015-05-30 15:16:53'),
(805, 243, 248, 1, '2015-05-30 15:16:54'),
(806, 243, 249, 1, '2015-05-30 15:16:54'),
(807, 243, 250, 1, '2015-05-30 15:16:54'),
(808, 243, 251, 1, '2015-05-30 15:16:54'),
(809, 243, 252, 1, '2015-05-30 15:16:54'),
(810, 243, 253, 1, '2015-05-30 15:16:54'),
(811, 244, 245, 1, '2015-05-30 15:16:54'),
(812, 244, 246, 1, '2015-05-30 15:16:54'),
(813, 244, 247, 1, '2015-05-30 15:16:54'),
(814, 244, 248, 1, '2015-05-30 15:16:54'),
(815, 244, 249, 1, '2015-05-30 15:16:54'),
(816, 244, 250, 1, '2015-05-30 15:16:54'),
(817, 244, 251, 1, '2015-05-30 15:16:54'),
(818, 244, 252, 1, '2015-05-30 15:16:54'),
(819, 244, 253, 1, '2015-05-30 15:16:54'),
(820, 245, 246, 1, '2015-05-30 15:16:54'),
(821, 245, 247, 1, '2015-05-30 15:16:54'),
(822, 245, 248, 1, '2015-05-30 15:16:54'),
(823, 245, 249, 1, '2015-05-30 15:16:54'),
(824, 245, 250, 1, '2015-05-30 15:16:54'),
(825, 245, 251, 1, '2015-05-30 15:16:54'),
(826, 245, 252, 1, '2015-05-30 15:16:54'),
(827, 245, 253, 1, '2015-05-30 15:16:54'),
(828, 246, 247, 1, '2015-05-30 15:16:54'),
(829, 246, 248, 1, '2015-05-30 15:16:54'),
(830, 246, 249, 1, '2015-05-30 15:16:54'),
(831, 246, 250, 1, '2015-05-30 15:16:54'),
(832, 246, 251, 1, '2015-05-30 15:16:54'),
(833, 246, 252, 1, '2015-05-30 15:16:54'),
(834, 246, 253, 1, '2015-05-30 15:16:54'),
(835, 247, 248, 1, '2015-05-30 15:16:54'),
(836, 247, 249, 1, '2015-05-30 15:16:54'),
(837, 247, 250, 1, '2015-05-30 15:16:54'),
(838, 247, 251, 1, '2015-05-30 15:16:54'),
(839, 247, 252, 1, '2015-05-30 15:16:54'),
(840, 247, 253, 1, '2015-05-30 15:16:54'),
(841, 248, 249, 1, '2015-05-30 15:16:54'),
(842, 248, 250, 1, '2015-05-30 15:16:54'),
(843, 248, 251, 1, '2015-05-30 15:16:54'),
(844, 248, 252, 1, '2015-05-30 15:16:54'),
(845, 248, 253, 1, '2015-05-30 15:16:54'),
(846, 249, 250, 2, '2015-05-30 15:16:55'),
(847, 249, 251, 1, '2015-05-30 15:16:55'),
(848, 249, 252, 1, '2015-05-30 15:16:55'),
(849, 249, 253, 2, '2015-05-30 15:16:55'),
(850, 250, 251, 1, '2015-05-30 15:16:55'),
(851, 250, 252, 1, '2015-05-30 15:16:55'),
(852, 250, 253, 2, '2015-05-30 15:16:55'),
(853, 251, 252, 1, '2015-05-30 15:16:55'),
(854, 251, 253, 1, '2015-05-30 15:16:55'),
(855, 252, 253, 1, '2015-05-30 15:16:55'),
(856, 254, 255, 1, '2015-05-30 15:17:15'),
(857, 254, 256, 1, '2015-05-30 15:17:15'),
(858, 254, 257, 1, '2015-05-30 15:17:15'),
(859, 254, 258, 1, '2015-05-30 15:17:15'),
(860, 254, 249, 1, '2015-05-30 15:17:15'),
(861, 254, 250, 1, '2015-05-30 15:17:15'),
(862, 254, 259, 1, '2015-05-30 15:17:15'),
(863, 254, 260, 1, '2015-05-30 15:17:15'),
(864, 254, 253, 1, '2015-05-30 15:17:15'),
(865, 255, 256, 1, '2015-05-30 15:17:15'),
(866, 255, 257, 1, '2015-05-30 15:17:15'),
(867, 255, 258, 1, '2015-05-30 15:17:15'),
(868, 255, 249, 1, '2015-05-30 15:17:16'),
(869, 255, 250, 1, '2015-05-30 15:17:16'),
(870, 255, 259, 1, '2015-05-30 15:17:16'),
(871, 255, 260, 1, '2015-05-30 15:17:16'),
(872, 255, 253, 1, '2015-05-30 15:17:16'),
(873, 256, 257, 1, '2015-05-30 15:17:16'),
(874, 256, 258, 1, '2015-05-30 15:17:16'),
(875, 256, 249, 1, '2015-05-30 15:17:16'),
(876, 256, 250, 1, '2015-05-30 15:17:16'),
(877, 256, 259, 1, '2015-05-30 15:17:16'),
(878, 256, 260, 1, '2015-05-30 15:17:16'),
(879, 256, 253, 1, '2015-05-30 15:17:16'),
(880, 257, 258, 1, '2015-05-30 15:17:16'),
(881, 257, 249, 1, '2015-05-30 15:17:16'),
(882, 257, 250, 1, '2015-05-30 15:17:16'),
(883, 257, 259, 1, '2015-05-30 15:17:16'),
(884, 257, 260, 1, '2015-05-30 15:17:16'),
(885, 257, 253, 1, '2015-05-30 15:17:16'),
(886, 258, 249, 1, '2015-05-30 15:17:16'),
(887, 258, 250, 1, '2015-05-30 15:17:16'),
(888, 258, 259, 1, '2015-05-30 15:17:16'),
(889, 258, 260, 1, '2015-05-30 15:17:16'),
(890, 258, 253, 1, '2015-05-30 15:17:16'),
(891, 249, 259, 1, '2015-05-30 15:17:16'),
(892, 249, 260, 1, '2015-05-30 15:17:16'),
(893, 250, 259, 1, '2015-05-30 15:17:16'),
(894, 250, 260, 1, '2015-05-30 15:17:16'),
(895, 259, 260, 1, '2015-05-30 15:17:16'),
(896, 259, 253, 1, '2015-05-30 15:17:16'),
(897, 260, 253, 1, '2015-05-30 15:17:16'),
(898, 261, 262, 1, '2015-05-30 15:17:38'),
(899, 261, 263, 1, '2015-05-30 15:17:38'),
(900, 261, 264, 1, '2015-05-30 15:17:38'),
(901, 261, 265, 1, '2015-05-30 15:17:38'),
(902, 261, 266, 1, '2015-05-30 15:17:38'),
(903, 262, 263, 1, '2015-05-30 15:17:38'),
(904, 262, 264, 1, '2015-05-30 15:17:38'),
(905, 262, 265, 1, '2015-05-30 15:17:38'),
(906, 262, 266, 1, '2015-05-30 15:17:38'),
(907, 263, 264, 1, '2015-05-30 15:17:38'),
(908, 263, 265, 1, '2015-05-30 15:17:38'),
(909, 263, 266, 1, '2015-05-30 15:17:38'),
(910, 264, 265, 1, '2015-05-30 15:17:38'),
(911, 264, 266, 1, '2015-05-30 15:17:38'),
(912, 265, 266, 1, '2015-05-30 15:17:38'),
(913, 269, 270, 1, '2015-05-30 15:18:24'),
(914, 269, 271, 1, '2015-05-30 15:18:24'),
(915, 270, 271, 1, '2015-05-30 15:18:24'),
(916, 186, 272, 1, '2015-05-30 15:18:57'),
(917, 186, 273, 1, '2015-05-30 15:18:57'),
(918, 272, 273, 1, '2015-05-30 15:18:57'),
(919, 274, 275, 1, '2015-05-30 15:19:16'),
(920, 274, 276, 1, '2015-05-30 15:19:16'),
(921, 275, 276, 1, '2015-05-30 15:19:16'),
(922, 278, 279, 2, '2015-05-30 15:19:54'),
(923, 278, 280, 2, '2015-05-30 15:19:54'),
(924, 279, 280, 2, '2015-05-30 15:19:54'),
(925, 281, 282, 1, '2015-05-30 15:20:21'),
(926, 281, 283, 1, '2015-05-30 15:20:21'),
(927, 281, 284, 1, '2015-05-30 15:20:21'),
(928, 281, 285, 1, '2015-05-30 15:20:21'),
(929, 281, 286, 1, '2015-05-30 15:20:21'),
(930, 282, 283, 1, '2015-05-30 15:20:21'),
(931, 282, 284, 1, '2015-05-30 15:20:21'),
(932, 282, 285, 1, '2015-05-30 15:20:21'),
(933, 282, 286, 1, '2015-05-30 15:20:21'),
(934, 283, 284, 1, '2015-05-30 15:20:21'),
(935, 283, 285, 1, '2015-05-30 15:20:21'),
(936, 283, 286, 1, '2015-05-30 15:20:21'),
(937, 284, 285, 1, '2015-05-30 15:20:21'),
(938, 284, 286, 1, '2015-05-30 15:20:21'),
(939, 285, 286, 1, '2015-05-30 15:20:21'),
(940, 7, 287, 1, '2015-05-30 15:22:34'),
(941, 7, 288, 1, '2015-05-30 15:22:34'),
(942, 7, 289, 1, '2015-05-30 15:22:34'),
(943, 7, 290, 1, '2015-05-30 15:22:34'),
(944, 7, 291, 1, '2015-05-30 15:22:34'),
(945, 7, 292, 1, '2015-05-30 15:22:34'),
(946, 7, 293, 1, '2015-05-30 15:22:34'),
(947, 7, 294, 1, '2015-05-30 15:22:34'),
(948, 7, 295, 1, '2015-05-30 15:22:34'),
(949, 287, 288, 1, '2015-05-30 15:22:34'),
(950, 287, 289, 1, '2015-05-30 15:22:34'),
(951, 287, 290, 1, '2015-05-30 15:22:34'),
(952, 287, 291, 1, '2015-05-30 15:22:34'),
(953, 287, 292, 1, '2015-05-30 15:22:34'),
(954, 287, 293, 1, '2015-05-30 15:22:34'),
(955, 287, 294, 1, '2015-05-30 15:22:34'),
(956, 287, 295, 1, '2015-05-30 15:22:34'),
(957, 288, 289, 1, '2015-05-30 15:22:34'),
(958, 288, 290, 1, '2015-05-30 15:22:34'),
(959, 288, 291, 1, '2015-05-30 15:22:34'),
(960, 288, 292, 1, '2015-05-30 15:22:34'),
(961, 288, 293, 1, '2015-05-30 15:22:34'),
(962, 288, 294, 1, '2015-05-30 15:22:34'),
(963, 288, 295, 1, '2015-05-30 15:22:35'),
(964, 289, 290, 1, '2015-05-30 15:22:35'),
(965, 289, 291, 1, '2015-05-30 15:22:35'),
(966, 289, 292, 1, '2015-05-30 15:22:35'),
(967, 289, 293, 1, '2015-05-30 15:22:35'),
(968, 289, 294, 1, '2015-05-30 15:22:35'),
(969, 289, 295, 1, '2015-05-30 15:22:35'),
(970, 290, 291, 1, '2015-05-30 15:22:35'),
(971, 290, 292, 1, '2015-05-30 15:22:35'),
(972, 290, 293, 1, '2015-05-30 15:22:35'),
(973, 290, 294, 1, '2015-05-30 15:22:35'),
(974, 290, 295, 1, '2015-05-30 15:22:35'),
(975, 291, 292, 1, '2015-05-30 15:22:35'),
(976, 291, 293, 1, '2015-05-30 15:22:35'),
(977, 291, 294, 1, '2015-05-30 15:22:35'),
(978, 291, 295, 1, '2015-05-30 15:22:35'),
(979, 292, 293, 1, '2015-05-30 15:22:35'),
(980, 292, 294, 1, '2015-05-30 15:22:35'),
(981, 292, 295, 1, '2015-05-30 15:22:35'),
(982, 293, 294, 1, '2015-05-30 15:22:35'),
(983, 293, 295, 1, '2015-05-30 15:22:35'),
(984, 294, 295, 1, '2015-05-30 15:22:35'),
(985, 7, 181, 2, '2015-05-30 15:23:55'),
(986, 7, 296, 2, '2015-05-30 15:23:55'),
(987, 7, 297, 2, '2015-05-30 15:23:56'),
(988, 7, 298, 2, '2015-05-30 15:23:56'),
(989, 7, 299, 2, '2015-05-30 15:23:56'),
(990, 7, 300, 2, '2015-05-30 15:23:56'),
(991, 7, 301, 2, '2015-05-30 15:23:56'),
(992, 7, 125, 2, '2015-05-30 15:23:56'),
(993, 7, 302, 2, '2015-05-30 15:23:56'),
(994, 7, 303, 2, '2015-05-30 15:23:56'),
(995, 7, 304, 2, '2015-05-30 15:23:56'),
(996, 7, 305, 2, '2015-05-30 15:23:56'),
(997, 7, 306, 2, '2015-05-30 15:23:56'),
(998, 7, 307, 2, '2015-05-30 15:23:56'),
(999, 7, 308, 2, '2015-05-30 15:23:56'),
(1000, 7, 309, 2, '2015-05-30 15:23:56'),
(1001, 7, 310, 2, '2015-05-30 15:23:56'),
(1002, 7, 311, 2, '2015-05-30 15:23:56'),
(1003, 7, 312, 2, '2015-05-30 15:23:56'),
(1004, 7, 313, 2, '2015-05-30 15:23:56'),
(1005, 7, 314, 2, '2015-05-30 15:23:56'),
(1006, 7, 315, 2, '2015-05-30 15:23:56'),
(1007, 7, 316, 2, '2015-05-30 15:23:56'),
(1008, 7, 317, 2, '2015-05-30 15:23:56'),
(1009, 7, 318, 2, '2015-05-30 15:23:56'),
(1010, 7, 319, 2, '2015-05-30 15:23:56'),
(1011, 7, 320, 2, '2015-05-30 15:23:56'),
(1012, 181, 296, 2, '2015-05-30 15:23:56'),
(1013, 181, 297, 2, '2015-05-30 15:23:56'),
(1014, 181, 298, 2, '2015-05-30 15:23:56'),
(1015, 181, 299, 2, '2015-05-30 15:23:56'),
(1016, 181, 300, 2, '2015-05-30 15:23:56'),
(1017, 181, 301, 2, '2015-05-30 15:23:56'),
(1018, 181, 125, 2, '2015-05-30 15:23:56'),
(1019, 181, 302, 2, '2015-05-30 15:23:56'),
(1020, 181, 303, 2, '2015-05-30 15:23:56'),
(1021, 181, 304, 2, '2015-05-30 15:23:56'),
(1022, 181, 305, 2, '2015-05-30 15:23:56'),
(1023, 181, 306, 2, '2015-05-30 15:23:56'),
(1024, 181, 307, 2, '2015-05-30 15:23:56'),
(1025, 181, 308, 2, '2015-05-30 15:23:56'),
(1026, 181, 309, 2, '2015-05-30 15:23:56'),
(1027, 181, 310, 2, '2015-05-30 15:23:57'),
(1028, 181, 311, 2, '2015-05-30 15:23:57'),
(1029, 181, 312, 2, '2015-05-30 15:23:57'),
(1030, 181, 313, 2, '2015-05-30 15:23:57'),
(1031, 181, 314, 2, '2015-05-30 15:23:57'),
(1032, 181, 315, 2, '2015-05-30 15:23:57'),
(1033, 181, 316, 2, '2015-05-30 15:23:57'),
(1034, 181, 317, 2, '2015-05-30 15:23:57'),
(1035, 181, 318, 2, '2015-05-30 15:23:57'),
(1036, 181, 319, 2, '2015-05-30 15:23:57'),
(1037, 181, 320, 2, '2015-05-30 15:23:57'),
(1038, 296, 297, 2, '2015-05-30 15:23:57'),
(1039, 296, 298, 2, '2015-05-30 15:23:57'),
(1040, 296, 299, 2, '2015-05-30 15:23:57'),
(1041, 296, 300, 2, '2015-05-30 15:23:57'),
(1042, 296, 301, 2, '2015-05-30 15:23:57'),
(1043, 296, 125, 2, '2015-05-30 15:23:57'),
(1044, 296, 302, 2, '2015-05-30 15:23:57'),
(1045, 296, 303, 2, '2015-05-30 15:23:57'),
(1046, 296, 304, 2, '2015-05-30 15:23:57'),
(1047, 296, 305, 2, '2015-05-30 15:23:57'),
(1048, 296, 306, 2, '2015-05-30 15:23:57'),
(1049, 296, 307, 2, '2015-05-30 15:23:57'),
(1050, 296, 308, 2, '2015-05-30 15:23:57'),
(1051, 296, 309, 2, '2015-05-30 15:23:57'),
(1052, 296, 310, 2, '2015-05-30 15:23:57'),
(1053, 296, 311, 2, '2015-05-30 15:23:57'),
(1054, 296, 312, 2, '2015-05-30 15:23:57'),
(1055, 296, 313, 2, '2015-05-30 15:23:57'),
(1056, 296, 314, 2, '2015-05-30 15:23:57'),
(1057, 296, 315, 2, '2015-05-30 15:23:57'),
(1058, 296, 316, 2, '2015-05-30 15:23:57'),
(1059, 296, 317, 2, '2015-05-30 15:23:57'),
(1060, 296, 318, 2, '2015-05-30 15:23:57'),
(1061, 296, 319, 2, '2015-05-30 15:23:57'),
(1062, 296, 320, 2, '2015-05-30 15:23:57'),
(1063, 297, 298, 2, '2015-05-30 15:23:57'),
(1064, 297, 299, 2, '2015-05-30 15:23:57'),
(1065, 297, 300, 2, '2015-05-30 15:23:57'),
(1066, 297, 301, 2, '2015-05-30 15:23:57'),
(1067, 297, 125, 2, '2015-05-30 15:23:57'),
(1068, 297, 302, 2, '2015-05-30 15:23:58'),
(1069, 297, 303, 2, '2015-05-30 15:23:58'),
(1070, 297, 304, 2, '2015-05-30 15:23:58'),
(1071, 297, 305, 2, '2015-05-30 15:23:58'),
(1072, 297, 306, 2, '2015-05-30 15:23:58'),
(1073, 297, 307, 2, '2015-05-30 15:23:58'),
(1074, 297, 308, 2, '2015-05-30 15:23:58'),
(1075, 297, 309, 2, '2015-05-30 15:23:58'),
(1076, 297, 310, 2, '2015-05-30 15:23:58'),
(1077, 297, 311, 2, '2015-05-30 15:23:58'),
(1078, 297, 312, 2, '2015-05-30 15:23:58'),
(1079, 297, 313, 2, '2015-05-30 15:23:58'),
(1080, 297, 314, 2, '2015-05-30 15:23:58'),
(1081, 297, 315, 2, '2015-05-30 15:23:58'),
(1082, 297, 316, 2, '2015-05-30 15:23:58'),
(1083, 297, 317, 2, '2015-05-30 15:23:58'),
(1084, 297, 318, 2, '2015-05-30 15:23:58'),
(1085, 297, 319, 2, '2015-05-30 15:23:58'),
(1086, 297, 320, 2, '2015-05-30 15:23:58'),
(1087, 298, 299, 2, '2015-05-30 15:23:58'),
(1088, 298, 300, 2, '2015-05-30 15:23:58'),
(1089, 298, 301, 2, '2015-05-30 15:23:58'),
(1090, 298, 125, 2, '2015-05-30 15:23:58'),
(1091, 298, 302, 2, '2015-05-30 15:23:58'),
(1092, 298, 303, 2, '2015-05-30 15:23:58'),
(1093, 298, 304, 2, '2015-05-30 15:23:58'),
(1094, 298, 305, 2, '2015-05-30 15:23:58'),
(1095, 298, 306, 2, '2015-05-30 15:23:58'),
(1096, 298, 307, 2, '2015-05-30 15:23:58'),
(1097, 298, 308, 2, '2015-05-30 15:23:58'),
(1098, 298, 309, 2, '2015-05-30 15:23:58'),
(1099, 298, 310, 2, '2015-05-30 15:23:58'),
(1100, 298, 311, 2, '2015-05-30 15:23:58'),
(1101, 298, 312, 2, '2015-05-30 15:23:58'),
(1102, 298, 313, 2, '2015-05-30 15:23:58'),
(1103, 298, 314, 2, '2015-05-30 15:23:58'),
(1104, 298, 315, 2, '2015-05-30 15:23:58'),
(1105, 298, 316, 2, '2015-05-30 15:23:58'),
(1106, 298, 317, 2, '2015-05-30 15:23:58'),
(1107, 298, 318, 2, '2015-05-30 15:23:58'),
(1108, 298, 319, 2, '2015-05-30 15:23:58'),
(1109, 298, 320, 2, '2015-05-30 15:23:58'),
(1110, 299, 300, 2, '2015-05-30 15:23:58'),
(1111, 299, 301, 2, '2015-05-30 15:23:59'),
(1112, 299, 125, 2, '2015-05-30 15:23:59'),
(1113, 299, 302, 2, '2015-05-30 15:23:59'),
(1114, 299, 303, 2, '2015-05-30 15:23:59'),
(1115, 299, 304, 2, '2015-05-30 15:23:59'),
(1116, 299, 305, 2, '2015-05-30 15:23:59'),
(1117, 299, 306, 2, '2015-05-30 15:23:59'),
(1118, 299, 307, 2, '2015-05-30 15:23:59'),
(1119, 299, 308, 2, '2015-05-30 15:23:59'),
(1120, 299, 309, 2, '2015-05-30 15:23:59'),
(1121, 299, 310, 2, '2015-05-30 15:23:59'),
(1122, 299, 311, 2, '2015-05-30 15:23:59'),
(1123, 299, 312, 2, '2015-05-30 15:23:59'),
(1124, 299, 313, 2, '2015-05-30 15:23:59'),
(1125, 299, 314, 2, '2015-05-30 15:23:59'),
(1126, 299, 315, 2, '2015-05-30 15:23:59'),
(1127, 299, 316, 2, '2015-05-30 15:23:59'),
(1128, 299, 317, 2, '2015-05-30 15:23:59'),
(1129, 299, 318, 2, '2015-05-30 15:23:59'),
(1130, 299, 319, 2, '2015-05-30 15:23:59'),
(1131, 299, 320, 2, '2015-05-30 15:23:59'),
(1132, 300, 301, 2, '2015-05-30 15:23:59'),
(1133, 300, 125, 2, '2015-05-30 15:23:59'),
(1134, 300, 302, 2, '2015-05-30 15:23:59'),
(1135, 300, 303, 2, '2015-05-30 15:23:59'),
(1136, 300, 304, 2, '2015-05-30 15:23:59'),
(1137, 300, 305, 2, '2015-05-30 15:23:59'),
(1138, 300, 306, 2, '2015-05-30 15:23:59'),
(1139, 300, 307, 2, '2015-05-30 15:23:59'),
(1140, 300, 308, 2, '2015-05-30 15:23:59'),
(1141, 300, 309, 2, '2015-05-30 15:23:59'),
(1142, 300, 310, 2, '2015-05-30 15:23:59'),
(1143, 300, 311, 2, '2015-05-30 15:23:59'),
(1144, 300, 312, 2, '2015-05-30 15:23:59'),
(1145, 300, 313, 2, '2015-05-30 15:23:59'),
(1146, 300, 314, 2, '2015-05-30 15:23:59'),
(1147, 300, 315, 2, '2015-05-30 15:23:59'),
(1148, 300, 316, 2, '2015-05-30 15:23:59'),
(1149, 300, 317, 2, '2015-05-30 15:23:59'),
(1150, 300, 318, 2, '2015-05-30 15:23:59'),
(1151, 300, 319, 2, '2015-05-30 15:23:59'),
(1152, 300, 320, 2, '2015-05-30 15:23:59'),
(1153, 301, 125, 2, '2015-05-30 15:23:59'),
(1154, 301, 302, 2, '2015-05-30 15:24:00'),
(1155, 301, 303, 2, '2015-05-30 15:24:00'),
(1156, 301, 304, 2, '2015-05-30 15:24:00'),
(1157, 301, 305, 2, '2015-05-30 15:24:00'),
(1158, 301, 306, 2, '2015-05-30 15:24:00'),
(1159, 301, 307, 2, '2015-05-30 15:24:00'),
(1160, 301, 308, 2, '2015-05-30 15:24:00'),
(1161, 301, 309, 2, '2015-05-30 15:24:00'),
(1162, 301, 310, 2, '2015-05-30 15:24:00'),
(1163, 301, 311, 2, '2015-05-30 15:24:00'),
(1164, 301, 312, 2, '2015-05-30 15:24:00'),
(1165, 301, 313, 2, '2015-05-30 15:24:00'),
(1166, 301, 314, 2, '2015-05-30 15:24:00'),
(1167, 301, 315, 2, '2015-05-30 15:24:00'),
(1168, 301, 316, 2, '2015-05-30 15:24:00'),
(1169, 301, 317, 2, '2015-05-30 15:24:00'),
(1170, 301, 318, 2, '2015-05-30 15:24:00'),
(1171, 301, 319, 2, '2015-05-30 15:24:00'),
(1172, 301, 320, 2, '2015-05-30 15:24:00'),
(1173, 125, 302, 2, '2015-05-30 15:24:00'),
(1174, 125, 303, 2, '2015-05-30 15:24:00'),
(1175, 125, 304, 2, '2015-05-30 15:24:00'),
(1176, 125, 305, 2, '2015-05-30 15:24:00'),
(1177, 125, 306, 2, '2015-05-30 15:24:00'),
(1178, 125, 307, 2, '2015-05-30 15:24:00'),
(1179, 125, 308, 2, '2015-05-30 15:24:00'),
(1180, 125, 309, 2, '2015-05-30 15:24:00'),
(1181, 125, 310, 2, '2015-05-30 15:24:00'),
(1182, 125, 311, 2, '2015-05-30 15:24:00'),
(1183, 125, 312, 2, '2015-05-30 15:24:00'),
(1184, 125, 313, 2, '2015-05-30 15:24:00'),
(1185, 125, 314, 2, '2015-05-30 15:24:00'),
(1186, 125, 315, 2, '2015-05-30 15:24:00'),
(1187, 125, 316, 2, '2015-05-30 15:24:00'),
(1188, 125, 317, 2, '2015-05-30 15:24:00'),
(1189, 125, 318, 2, '2015-05-30 15:24:00'),
(1190, 125, 319, 2, '2015-05-30 15:24:00'),
(1191, 125, 320, 2, '2015-05-30 15:24:00'),
(1192, 302, 303, 2, '2015-05-30 15:24:00'),
(1193, 302, 304, 2, '2015-05-30 15:24:00'),
(1194, 302, 305, 2, '2015-05-30 15:24:01'),
(1195, 302, 306, 2, '2015-05-30 15:24:01'),
(1196, 302, 307, 2, '2015-05-30 15:24:01'),
(1197, 302, 308, 2, '2015-05-30 15:24:01'),
(1198, 302, 309, 2, '2015-05-30 15:24:01'),
(1199, 302, 310, 2, '2015-05-30 15:24:01'),
(1200, 302, 311, 2, '2015-05-30 15:24:01'),
(1201, 302, 312, 2, '2015-05-30 15:24:01'),
(1202, 302, 313, 2, '2015-05-30 15:24:01'),
(1203, 302, 314, 2, '2015-05-30 15:24:01'),
(1204, 302, 315, 2, '2015-05-30 15:24:01'),
(1205, 302, 316, 2, '2015-05-30 15:24:01'),
(1206, 302, 317, 2, '2015-05-30 15:24:01'),
(1207, 302, 318, 2, '2015-05-30 15:24:01'),
(1208, 302, 319, 2, '2015-05-30 15:24:01'),
(1209, 302, 320, 2, '2015-05-30 15:24:01'),
(1210, 303, 304, 2, '2015-05-30 15:24:01'),
(1211, 303, 305, 2, '2015-05-30 15:24:01'),
(1212, 303, 306, 2, '2015-05-30 15:24:01'),
(1213, 303, 307, 2, '2015-05-30 15:24:01'),
(1214, 303, 308, 2, '2015-05-30 15:24:01'),
(1215, 303, 309, 2, '2015-05-30 15:24:01'),
(1216, 303, 310, 2, '2015-05-30 15:24:01'),
(1217, 303, 311, 2, '2015-05-30 15:24:01'),
(1218, 303, 312, 2, '2015-05-30 15:24:01'),
(1219, 303, 313, 2, '2015-05-30 15:24:01'),
(1220, 303, 314, 2, '2015-05-30 15:24:01'),
(1221, 303, 315, 2, '2015-05-30 15:24:01'),
(1222, 303, 316, 2, '2015-05-30 15:24:01'),
(1223, 303, 317, 2, '2015-05-30 15:24:01'),
(1224, 303, 318, 2, '2015-05-30 15:24:01'),
(1225, 303, 319, 2, '2015-05-30 15:24:01'),
(1226, 303, 320, 2, '2015-05-30 15:24:01'),
(1227, 304, 305, 2, '2015-05-30 15:24:01'),
(1228, 304, 306, 2, '2015-05-30 15:24:01'),
(1229, 304, 307, 2, '2015-05-30 15:24:01'),
(1230, 304, 308, 2, '2015-05-30 15:24:01'),
(1231, 304, 309, 2, '2015-05-30 15:24:01'),
(1232, 304, 310, 2, '2015-05-30 15:24:01'),
(1233, 304, 311, 2, '2015-05-30 15:24:01'),
(1234, 304, 312, 2, '2015-05-30 15:24:02'),
(1235, 304, 313, 2, '2015-05-30 15:24:02'),
(1236, 304, 314, 2, '2015-05-30 15:24:02'),
(1237, 304, 315, 2, '2015-05-30 15:24:02'),
(1238, 304, 316, 2, '2015-05-30 15:24:02');
INSERT INTO `contexts` (`id`, `x_key`, `y_key`, `weight`, `created`) VALUES
(1239, 304, 317, 2, '2015-05-30 15:24:02'),
(1240, 304, 318, 2, '2015-05-30 15:24:02'),
(1241, 304, 319, 2, '2015-05-30 15:24:02'),
(1242, 304, 320, 2, '2015-05-30 15:24:02'),
(1243, 305, 306, 2, '2015-05-30 15:24:02'),
(1244, 305, 307, 2, '2015-05-30 15:24:02'),
(1245, 305, 308, 2, '2015-05-30 15:24:02'),
(1246, 305, 309, 2, '2015-05-30 15:24:02'),
(1247, 305, 310, 2, '2015-05-30 15:24:02'),
(1248, 305, 311, 2, '2015-05-30 15:24:02'),
(1249, 305, 312, 2, '2015-05-30 15:24:02'),
(1250, 305, 313, 2, '2015-05-30 15:24:02'),
(1251, 305, 314, 2, '2015-05-30 15:24:02'),
(1252, 305, 315, 2, '2015-05-30 15:24:02'),
(1253, 305, 316, 2, '2015-05-30 15:24:02'),
(1254, 305, 317, 2, '2015-05-30 15:24:02'),
(1255, 305, 318, 2, '2015-05-30 15:24:02'),
(1256, 305, 319, 2, '2015-05-30 15:24:02'),
(1257, 305, 320, 2, '2015-05-30 15:24:02'),
(1258, 306, 307, 3, '2015-05-30 15:24:02'),
(1259, 306, 308, 3, '2015-05-30 15:24:02'),
(1260, 306, 309, 3, '2015-05-30 15:24:02'),
(1261, 306, 310, 3, '2015-05-30 15:24:02'),
(1262, 306, 311, 3, '2015-05-30 15:24:02'),
(1263, 306, 312, 3, '2015-05-30 15:24:02'),
(1264, 306, 313, 3, '2015-05-30 15:24:02'),
(1265, 306, 314, 3, '2015-05-30 15:24:03'),
(1266, 306, 315, 3, '2015-05-30 15:24:03'),
(1267, 306, 316, 3, '2015-05-30 15:24:03'),
(1268, 306, 317, 3, '2015-05-30 15:24:03'),
(1269, 306, 318, 3, '2015-05-30 15:24:03'),
(1270, 306, 319, 3, '2015-05-30 15:24:03'),
(1271, 306, 320, 3, '2015-05-30 15:24:03'),
(1272, 307, 308, 3, '2015-05-30 15:24:03'),
(1273, 307, 309, 3, '2015-05-30 15:24:03'),
(1274, 307, 310, 3, '2015-05-30 15:24:03'),
(1275, 307, 311, 3, '2015-05-30 15:24:03'),
(1276, 307, 312, 3, '2015-05-30 15:24:03'),
(1277, 307, 313, 3, '2015-05-30 15:24:03'),
(1278, 307, 314, 3, '2015-05-30 15:24:03'),
(1279, 307, 315, 3, '2015-05-30 15:24:03'),
(1280, 307, 316, 3, '2015-05-30 15:24:03'),
(1281, 307, 317, 3, '2015-05-30 15:24:03'),
(1282, 307, 318, 3, '2015-05-30 15:24:03'),
(1283, 307, 319, 3, '2015-05-30 15:24:03'),
(1284, 307, 320, 3, '2015-05-30 15:24:03'),
(1285, 308, 309, 3, '2015-05-30 15:24:03'),
(1286, 308, 310, 3, '2015-05-30 15:24:03'),
(1287, 308, 311, 3, '2015-05-30 15:24:03'),
(1288, 308, 312, 3, '2015-05-30 15:24:03'),
(1289, 308, 313, 3, '2015-05-30 15:24:03'),
(1290, 308, 314, 3, '2015-05-30 15:24:03'),
(1291, 308, 315, 3, '2015-05-30 15:24:03'),
(1292, 308, 316, 3, '2015-05-30 15:24:03'),
(1293, 308, 317, 3, '2015-05-30 15:24:03'),
(1294, 308, 318, 3, '2015-05-30 15:24:03'),
(1295, 308, 319, 3, '2015-05-30 15:24:03'),
(1296, 308, 320, 3, '2015-05-30 15:24:03'),
(1297, 309, 310, 3, '2015-05-30 15:24:03'),
(1298, 309, 311, 3, '2015-05-30 15:24:03'),
(1299, 309, 312, 3, '2015-05-30 15:24:03'),
(1300, 309, 313, 3, '2015-05-30 15:24:03'),
(1301, 309, 314, 3, '2015-05-30 15:24:03'),
(1302, 309, 315, 3, '2015-05-30 15:24:03'),
(1303, 309, 316, 3, '2015-05-30 15:24:03'),
(1304, 309, 317, 3, '2015-05-30 15:24:04'),
(1305, 309, 318, 3, '2015-05-30 15:24:04'),
(1306, 309, 319, 3, '2015-05-30 15:24:04'),
(1307, 309, 320, 3, '2015-05-30 15:24:04'),
(1308, 310, 311, 3, '2015-05-30 15:24:04'),
(1309, 310, 312, 3, '2015-05-30 15:24:04'),
(1310, 310, 313, 3, '2015-05-30 15:24:04'),
(1311, 310, 314, 3, '2015-05-30 15:24:04'),
(1312, 310, 315, 3, '2015-05-30 15:24:04'),
(1313, 310, 316, 3, '2015-05-30 15:24:04'),
(1314, 310, 317, 3, '2015-05-30 15:24:04'),
(1315, 310, 318, 3, '2015-05-30 15:24:04'),
(1316, 310, 319, 3, '2015-05-30 15:24:04'),
(1317, 310, 320, 3, '2015-05-30 15:24:04'),
(1318, 311, 312, 3, '2015-05-30 15:24:04'),
(1319, 311, 313, 3, '2015-05-30 15:24:04'),
(1320, 311, 314, 3, '2015-05-30 15:24:04'),
(1321, 311, 315, 3, '2015-05-30 15:24:04'),
(1322, 311, 316, 3, '2015-05-30 15:24:04'),
(1323, 311, 317, 3, '2015-05-30 15:24:04'),
(1324, 311, 318, 3, '2015-05-30 15:24:04'),
(1325, 311, 319, 3, '2015-05-30 15:24:04'),
(1326, 311, 320, 3, '2015-05-30 15:24:04'),
(1327, 312, 313, 3, '2015-05-30 15:24:04'),
(1328, 312, 314, 3, '2015-05-30 15:24:04'),
(1329, 312, 315, 3, '2015-05-30 15:24:04'),
(1330, 312, 316, 3, '2015-05-30 15:24:04'),
(1331, 312, 317, 3, '2015-05-30 15:24:04'),
(1332, 312, 318, 3, '2015-05-30 15:24:04'),
(1333, 312, 319, 3, '2015-05-30 15:24:04'),
(1334, 312, 320, 3, '2015-05-30 15:24:04'),
(1335, 313, 314, 3, '2015-05-30 15:24:04'),
(1336, 313, 315, 3, '2015-05-30 15:24:04'),
(1337, 313, 316, 3, '2015-05-30 15:24:04'),
(1338, 313, 317, 3, '2015-05-30 15:24:04'),
(1339, 313, 318, 3, '2015-05-30 15:24:04'),
(1340, 313, 319, 3, '2015-05-30 15:24:04'),
(1341, 313, 320, 3, '2015-05-30 15:24:04'),
(1342, 314, 315, 3, '2015-05-30 15:24:04'),
(1343, 314, 316, 3, '2015-05-30 15:24:04'),
(1344, 314, 317, 3, '2015-05-30 15:24:05'),
(1345, 314, 318, 3, '2015-05-30 15:24:05'),
(1346, 314, 319, 3, '2015-05-30 15:24:05'),
(1347, 314, 320, 3, '2015-05-30 15:24:05'),
(1348, 315, 316, 3, '2015-05-30 15:24:05'),
(1349, 315, 317, 3, '2015-05-30 15:24:05'),
(1350, 315, 318, 3, '2015-05-30 15:24:05'),
(1351, 315, 319, 3, '2015-05-30 15:24:05'),
(1352, 315, 320, 3, '2015-05-30 15:24:05'),
(1353, 316, 317, 3, '2015-05-30 15:24:05'),
(1354, 316, 318, 3, '2015-05-30 15:24:05'),
(1355, 316, 319, 3, '2015-05-30 15:24:05'),
(1356, 316, 320, 3, '2015-05-30 15:24:05'),
(1357, 317, 318, 3, '2015-05-30 15:24:05'),
(1358, 317, 319, 3, '2015-05-30 15:24:05'),
(1359, 317, 320, 3, '2015-05-30 15:24:05'),
(1360, 318, 319, 3, '2015-05-30 15:24:05'),
(1361, 318, 320, 3, '2015-05-30 15:24:05'),
(1362, 319, 320, 3, '2015-05-30 15:24:05'),
(1363, 186, 321, 1, '2015-05-30 15:25:05'),
(1364, 186, 322, 1, '2015-05-30 15:25:05'),
(1365, 186, 323, 1, '2015-05-30 15:25:05'),
(1366, 186, 301, 1, '2015-05-30 15:25:05'),
(1367, 186, 324, 1, '2015-05-30 15:25:05'),
(1368, 186, 325, 1, '2015-05-30 15:25:05'),
(1369, 186, 326, 1, '2015-05-30 15:25:05'),
(1370, 186, 327, 1, '2015-05-30 15:25:05'),
(1371, 186, 328, 1, '2015-05-30 15:25:05'),
(1372, 321, 322, 1, '2015-05-30 15:25:05'),
(1373, 321, 323, 1, '2015-05-30 15:25:05'),
(1374, 321, 301, 1, '2015-05-30 15:25:05'),
(1375, 321, 324, 1, '2015-05-30 15:25:05'),
(1376, 321, 325, 1, '2015-05-30 15:25:05'),
(1377, 321, 326, 1, '2015-05-30 15:25:05'),
(1378, 321, 327, 1, '2015-05-30 15:25:05'),
(1379, 321, 328, 1, '2015-05-30 15:25:05'),
(1380, 322, 323, 1, '2015-05-30 15:25:05'),
(1381, 322, 301, 1, '2015-05-30 15:25:05'),
(1382, 322, 324, 1, '2015-05-30 15:25:05'),
(1383, 322, 325, 1, '2015-05-30 15:25:05'),
(1384, 322, 326, 1, '2015-05-30 15:25:05'),
(1385, 322, 327, 1, '2015-05-30 15:25:05'),
(1386, 322, 328, 1, '2015-05-30 15:25:05'),
(1387, 323, 301, 1, '2015-05-30 15:25:06'),
(1388, 323, 324, 1, '2015-05-30 15:25:06'),
(1389, 323, 325, 1, '2015-05-30 15:25:06'),
(1390, 323, 326, 1, '2015-05-30 15:25:06'),
(1391, 323, 327, 1, '2015-05-30 15:25:06'),
(1392, 323, 328, 1, '2015-05-30 15:25:06'),
(1393, 301, 324, 1, '2015-05-30 15:25:06'),
(1394, 301, 325, 1, '2015-05-30 15:25:06'),
(1395, 301, 326, 1, '2015-05-30 15:25:06'),
(1396, 301, 327, 1, '2015-05-30 15:25:06'),
(1397, 301, 328, 1, '2015-05-30 15:25:06'),
(1398, 324, 325, 1, '2015-05-30 15:25:06'),
(1399, 324, 326, 1, '2015-05-30 15:25:06'),
(1400, 324, 327, 1, '2015-05-30 15:25:06'),
(1401, 324, 328, 1, '2015-05-30 15:25:06'),
(1402, 325, 326, 1, '2015-05-30 15:25:06'),
(1403, 325, 327, 1, '2015-05-30 15:25:06'),
(1404, 325, 328, 1, '2015-05-30 15:25:06'),
(1405, 326, 327, 1, '2015-05-30 15:25:06'),
(1406, 326, 328, 1, '2015-05-30 15:25:06'),
(1407, 327, 328, 1, '2015-05-30 15:25:06'),
(1408, 7, 329, 1, '2015-05-30 15:25:44'),
(1409, 7, 330, 1, '2015-05-30 15:25:44'),
(1410, 7, 331, 1, '2015-05-30 15:25:44'),
(1411, 7, 332, 1, '2015-05-30 15:25:44'),
(1412, 7, 333, 1, '2015-05-30 15:25:44'),
(1413, 7, 334, 2, '2015-05-30 15:25:44'),
(1414, 7, 335, 1, '2015-05-30 15:25:44'),
(1415, 7, 336, 1, '2015-05-30 15:25:44'),
(1416, 7, 337, 1, '2015-05-30 15:25:44'),
(1417, 7, 338, 1, '2015-05-30 15:25:44'),
(1418, 7, 339, 1, '2015-05-30 15:25:44'),
(1419, 7, 340, 1, '2015-05-30 15:25:44'),
(1420, 7, 341, 1, '2015-05-30 15:25:44'),
(1421, 7, 342, 1, '2015-05-30 15:25:44'),
(1422, 7, 343, 1, '2015-05-30 15:25:44'),
(1423, 7, 344, 1, '2015-05-30 15:25:44'),
(1424, 7, 345, 1, '2015-05-30 15:25:44'),
(1425, 7, 346, 1, '2015-05-30 15:25:44'),
(1426, 7, 347, 1, '2015-05-30 15:25:44'),
(1427, 7, 348, 1, '2015-05-30 15:25:44'),
(1428, 7, 349, 1, '2015-05-30 15:25:44'),
(1429, 7, 350, 1, '2015-05-30 15:25:44'),
(1430, 7, 351, 1, '2015-05-30 15:25:44'),
(1431, 7, 352, 1, '2015-05-30 15:25:44'),
(1432, 7, 353, 1, '2015-05-30 15:25:44'),
(1433, 7, 354, 1, '2015-05-30 15:25:44'),
(1434, 329, 330, 1, '2015-05-30 15:25:44'),
(1435, 329, 331, 1, '2015-05-30 15:25:44'),
(1436, 329, 332, 1, '2015-05-30 15:25:44'),
(1437, 329, 333, 1, '2015-05-30 15:25:44'),
(1438, 329, 334, 2, '2015-05-30 15:25:44'),
(1439, 329, 335, 1, '2015-05-30 15:25:44'),
(1440, 329, 336, 1, '2015-05-30 15:25:44'),
(1441, 329, 337, 1, '2015-05-30 15:25:44'),
(1442, 329, 338, 1, '2015-05-30 15:25:44'),
(1443, 329, 339, 1, '2015-05-30 15:25:44'),
(1444, 329, 340, 1, '2015-05-30 15:25:44'),
(1445, 329, 341, 1, '2015-05-30 15:25:44'),
(1446, 329, 342, 1, '2015-05-30 15:25:44'),
(1447, 329, 343, 1, '2015-05-30 15:25:44'),
(1448, 329, 344, 1, '2015-05-30 15:25:44'),
(1449, 329, 345, 1, '2015-05-30 15:25:45'),
(1450, 329, 346, 1, '2015-05-30 15:25:45'),
(1451, 329, 347, 1, '2015-05-30 15:25:45'),
(1452, 329, 348, 1, '2015-05-30 15:25:45'),
(1453, 329, 349, 1, '2015-05-30 15:25:45'),
(1454, 329, 350, 1, '2015-05-30 15:25:45'),
(1455, 329, 351, 1, '2015-05-30 15:25:45'),
(1456, 329, 352, 1, '2015-05-30 15:25:45'),
(1457, 329, 353, 1, '2015-05-30 15:25:45'),
(1458, 329, 354, 1, '2015-05-30 15:25:45'),
(1459, 330, 331, 1, '2015-05-30 15:25:45'),
(1460, 330, 332, 1, '2015-05-30 15:25:45'),
(1461, 330, 333, 1, '2015-05-30 15:25:45'),
(1462, 330, 334, 2, '2015-05-30 15:25:45'),
(1463, 330, 335, 1, '2015-05-30 15:25:45'),
(1464, 330, 336, 1, '2015-05-30 15:25:45'),
(1465, 330, 337, 1, '2015-05-30 15:25:45'),
(1466, 330, 338, 1, '2015-05-30 15:25:45'),
(1467, 330, 339, 1, '2015-05-30 15:25:45'),
(1468, 330, 340, 1, '2015-05-30 15:25:45'),
(1469, 330, 341, 1, '2015-05-30 15:25:45'),
(1470, 330, 342, 1, '2015-05-30 15:25:45'),
(1471, 330, 343, 1, '2015-05-30 15:25:45'),
(1472, 330, 344, 1, '2015-05-30 15:25:45'),
(1473, 330, 345, 1, '2015-05-30 15:25:45'),
(1474, 330, 346, 1, '2015-05-30 15:25:45'),
(1475, 330, 347, 1, '2015-05-30 15:25:45'),
(1476, 330, 348, 1, '2015-05-30 15:25:45'),
(1477, 330, 349, 1, '2015-05-30 15:25:45'),
(1478, 330, 350, 1, '2015-05-30 15:25:45'),
(1479, 330, 351, 1, '2015-05-30 15:25:45'),
(1480, 330, 352, 1, '2015-05-30 15:25:45'),
(1481, 330, 353, 1, '2015-05-30 15:25:45'),
(1482, 330, 354, 1, '2015-05-30 15:25:45'),
(1483, 331, 332, 1, '2015-05-30 15:25:45'),
(1484, 331, 333, 1, '2015-05-30 15:25:45'),
(1485, 331, 334, 2, '2015-05-30 15:25:46'),
(1486, 331, 335, 1, '2015-05-30 15:25:46'),
(1487, 331, 336, 1, '2015-05-30 15:25:46'),
(1488, 331, 337, 1, '2015-05-30 15:25:46'),
(1489, 331, 338, 1, '2015-05-30 15:25:46'),
(1490, 331, 339, 1, '2015-05-30 15:25:46'),
(1491, 331, 340, 1, '2015-05-30 15:25:46'),
(1492, 331, 341, 1, '2015-05-30 15:25:46'),
(1493, 331, 342, 1, '2015-05-30 15:25:46'),
(1494, 331, 343, 1, '2015-05-30 15:25:46'),
(1495, 331, 344, 1, '2015-05-30 15:25:46'),
(1496, 331, 345, 1, '2015-05-30 15:25:46'),
(1497, 331, 346, 1, '2015-05-30 15:25:46'),
(1498, 331, 347, 1, '2015-05-30 15:25:46'),
(1499, 331, 348, 1, '2015-05-30 15:25:46'),
(1500, 331, 349, 1, '2015-05-30 15:25:46'),
(1501, 331, 350, 1, '2015-05-30 15:25:46'),
(1502, 331, 351, 1, '2015-05-30 15:25:46'),
(1503, 331, 352, 1, '2015-05-30 15:25:46'),
(1504, 331, 353, 1, '2015-05-30 15:25:46'),
(1505, 331, 354, 1, '2015-05-30 15:25:46'),
(1506, 332, 333, 1, '2015-05-30 15:25:46'),
(1507, 332, 334, 2, '2015-05-30 15:25:46'),
(1508, 332, 335, 1, '2015-05-30 15:25:46'),
(1509, 332, 336, 1, '2015-05-30 15:25:46'),
(1510, 332, 337, 1, '2015-05-30 15:25:46'),
(1511, 332, 338, 1, '2015-05-30 15:25:46'),
(1512, 332, 339, 1, '2015-05-30 15:25:46'),
(1513, 332, 340, 1, '2015-05-30 15:25:46'),
(1514, 332, 341, 1, '2015-05-30 15:25:46'),
(1515, 332, 342, 1, '2015-05-30 15:25:46'),
(1516, 332, 343, 1, '2015-05-30 15:25:46'),
(1517, 332, 344, 1, '2015-05-30 15:25:46'),
(1518, 332, 345, 1, '2015-05-30 15:25:46'),
(1519, 332, 346, 1, '2015-05-30 15:25:46'),
(1520, 332, 347, 1, '2015-05-30 15:25:46'),
(1521, 332, 348, 1, '2015-05-30 15:25:46'),
(1522, 332, 349, 1, '2015-05-30 15:25:46'),
(1523, 332, 350, 1, '2015-05-30 15:25:46'),
(1524, 332, 351, 1, '2015-05-30 15:25:47'),
(1525, 332, 352, 1, '2015-05-30 15:25:47'),
(1526, 332, 353, 1, '2015-05-30 15:25:47'),
(1527, 332, 354, 1, '2015-05-30 15:25:47'),
(1528, 333, 334, 2, '2015-05-30 15:25:47'),
(1529, 333, 335, 1, '2015-05-30 15:25:47'),
(1530, 333, 336, 1, '2015-05-30 15:25:47'),
(1531, 333, 337, 1, '2015-05-30 15:25:47'),
(1532, 333, 338, 1, '2015-05-30 15:25:47'),
(1533, 333, 339, 1, '2015-05-30 15:25:47'),
(1534, 333, 340, 1, '2015-05-30 15:25:47'),
(1535, 333, 341, 1, '2015-05-30 15:25:47'),
(1536, 333, 342, 1, '2015-05-30 15:25:47'),
(1537, 333, 343, 1, '2015-05-30 15:25:47'),
(1538, 333, 344, 1, '2015-05-30 15:25:47'),
(1539, 333, 345, 1, '2015-05-30 15:25:47'),
(1540, 333, 346, 1, '2015-05-30 15:25:47'),
(1541, 333, 347, 1, '2015-05-30 15:25:47'),
(1542, 333, 348, 1, '2015-05-30 15:25:47'),
(1543, 333, 349, 1, '2015-05-30 15:25:47'),
(1544, 333, 350, 1, '2015-05-30 15:25:47'),
(1545, 333, 351, 1, '2015-05-30 15:25:47'),
(1546, 333, 352, 1, '2015-05-30 15:25:47'),
(1547, 333, 353, 1, '2015-05-30 15:25:47'),
(1548, 333, 354, 1, '2015-05-30 15:25:47'),
(1549, 334, 335, 1, '2015-05-30 15:25:47'),
(1550, 334, 336, 1, '2015-05-30 15:25:47'),
(1551, 334, 337, 1, '2015-05-30 15:25:47'),
(1552, 334, 338, 1, '2015-05-30 15:25:47'),
(1553, 334, 339, 1, '2015-05-30 15:25:47'),
(1554, 334, 340, 1, '2015-05-30 15:25:47'),
(1555, 334, 341, 1, '2015-05-30 15:25:47'),
(1556, 334, 342, 1, '2015-05-30 15:25:47'),
(1557, 334, 343, 1, '2015-05-30 15:25:47'),
(1558, 334, 344, 1, '2015-05-30 15:25:48'),
(1559, 334, 345, 1, '2015-05-30 15:25:48'),
(1560, 334, 346, 1, '2015-05-30 15:25:48'),
(1561, 334, 347, 1, '2015-05-30 15:25:48'),
(1562, 334, 348, 1, '2015-05-30 15:25:48'),
(1563, 334, 349, 1, '2015-05-30 15:25:48'),
(1564, 334, 350, 1, '2015-05-30 15:25:48'),
(1565, 334, 351, 1, '2015-05-30 15:25:48'),
(1566, 334, 352, 1, '2015-05-30 15:25:48'),
(1567, 334, 353, 1, '2015-05-30 15:25:48'),
(1568, 334, 354, 1, '2015-05-30 15:25:48'),
(1569, 334, 334, 1, '2015-05-30 15:25:48'),
(1570, 335, 336, 1, '2015-05-30 15:25:48'),
(1571, 335, 337, 1, '2015-05-30 15:25:48'),
(1572, 335, 338, 1, '2015-05-30 15:25:48'),
(1573, 335, 339, 1, '2015-05-30 15:25:48'),
(1574, 335, 340, 1, '2015-05-30 15:25:48'),
(1575, 335, 341, 1, '2015-05-30 15:25:48'),
(1576, 335, 342, 1, '2015-05-30 15:25:48'),
(1577, 335, 343, 1, '2015-05-30 15:25:48'),
(1578, 335, 344, 1, '2015-05-30 15:25:48'),
(1579, 335, 345, 1, '2015-05-30 15:25:48'),
(1580, 335, 346, 1, '2015-05-30 15:25:48'),
(1581, 335, 347, 1, '2015-05-30 15:25:48'),
(1582, 335, 348, 1, '2015-05-30 15:25:48'),
(1583, 335, 349, 1, '2015-05-30 15:25:48'),
(1584, 335, 350, 1, '2015-05-30 15:25:48'),
(1585, 335, 351, 1, '2015-05-30 15:25:48'),
(1586, 335, 352, 1, '2015-05-30 15:25:48'),
(1587, 335, 353, 1, '2015-05-30 15:25:48'),
(1588, 335, 354, 1, '2015-05-30 15:25:48'),
(1589, 335, 334, 1, '2015-05-30 15:25:48'),
(1590, 336, 337, 1, '2015-05-30 15:25:48'),
(1591, 336, 338, 1, '2015-05-30 15:25:48'),
(1592, 336, 339, 1, '2015-05-30 15:25:48'),
(1593, 336, 340, 1, '2015-05-30 15:25:49'),
(1594, 336, 341, 1, '2015-05-30 15:25:49'),
(1595, 336, 342, 1, '2015-05-30 15:25:49'),
(1596, 336, 343, 1, '2015-05-30 15:25:49'),
(1597, 336, 344, 1, '2015-05-30 15:25:49'),
(1598, 336, 345, 1, '2015-05-30 15:25:49'),
(1599, 336, 346, 1, '2015-05-30 15:25:49'),
(1600, 336, 347, 1, '2015-05-30 15:25:49'),
(1601, 336, 348, 1, '2015-05-30 15:25:49'),
(1602, 336, 349, 1, '2015-05-30 15:25:49'),
(1603, 336, 350, 1, '2015-05-30 15:25:49'),
(1604, 336, 351, 1, '2015-05-30 15:25:49'),
(1605, 336, 352, 1, '2015-05-30 15:25:49'),
(1606, 336, 353, 1, '2015-05-30 15:25:49'),
(1607, 336, 354, 1, '2015-05-30 15:25:49'),
(1608, 336, 334, 1, '2015-05-30 15:25:49'),
(1609, 337, 338, 1, '2015-05-30 15:25:49'),
(1610, 337, 339, 1, '2015-05-30 15:25:49'),
(1611, 337, 340, 1, '2015-05-30 15:25:49'),
(1612, 337, 341, 1, '2015-05-30 15:25:49'),
(1613, 337, 342, 1, '2015-05-30 15:25:49'),
(1614, 337, 343, 1, '2015-05-30 15:25:49'),
(1615, 337, 344, 1, '2015-05-30 15:25:49'),
(1616, 337, 345, 1, '2015-05-30 15:25:49'),
(1617, 337, 346, 1, '2015-05-30 15:25:49'),
(1618, 337, 347, 1, '2015-05-30 15:25:49'),
(1619, 337, 348, 1, '2015-05-30 15:25:49'),
(1620, 337, 349, 1, '2015-05-30 15:25:49'),
(1621, 337, 350, 1, '2015-05-30 15:25:49'),
(1622, 337, 351, 1, '2015-05-30 15:25:49'),
(1623, 337, 352, 1, '2015-05-30 15:25:49'),
(1624, 337, 353, 1, '2015-05-30 15:25:49'),
(1625, 337, 354, 1, '2015-05-30 15:25:49'),
(1626, 337, 334, 1, '2015-05-30 15:25:50'),
(1627, 338, 339, 1, '2015-05-30 15:25:50'),
(1628, 338, 340, 1, '2015-05-30 15:25:50'),
(1629, 338, 341, 1, '2015-05-30 15:25:50'),
(1630, 338, 342, 1, '2015-05-30 15:25:50'),
(1631, 338, 343, 1, '2015-05-30 15:25:50'),
(1632, 338, 344, 1, '2015-05-30 15:25:50'),
(1633, 338, 345, 1, '2015-05-30 15:25:50'),
(1634, 338, 346, 1, '2015-05-30 15:25:50'),
(1635, 338, 347, 1, '2015-05-30 15:25:50'),
(1636, 338, 348, 1, '2015-05-30 15:25:50'),
(1637, 338, 349, 1, '2015-05-30 15:25:50'),
(1638, 338, 350, 1, '2015-05-30 15:25:50'),
(1639, 338, 351, 1, '2015-05-30 15:25:50'),
(1640, 338, 352, 1, '2015-05-30 15:25:50'),
(1641, 338, 353, 1, '2015-05-30 15:25:50'),
(1642, 338, 354, 1, '2015-05-30 15:25:50'),
(1643, 338, 334, 1, '2015-05-30 15:25:50'),
(1644, 339, 340, 1, '2015-05-30 15:25:50'),
(1645, 339, 341, 1, '2015-05-30 15:25:50'),
(1646, 339, 342, 1, '2015-05-30 15:25:50'),
(1647, 339, 343, 1, '2015-05-30 15:25:50'),
(1648, 339, 344, 1, '2015-05-30 15:25:50'),
(1649, 339, 345, 1, '2015-05-30 15:25:50'),
(1650, 339, 346, 1, '2015-05-30 15:25:50'),
(1651, 339, 347, 1, '2015-05-30 15:25:50'),
(1652, 339, 348, 1, '2015-05-30 15:25:50'),
(1653, 339, 349, 1, '2015-05-30 15:25:50'),
(1654, 339, 350, 1, '2015-05-30 15:25:50'),
(1655, 339, 351, 1, '2015-05-30 15:25:50'),
(1656, 339, 352, 1, '2015-05-30 15:25:50'),
(1657, 339, 353, 1, '2015-05-30 15:25:50'),
(1658, 339, 354, 1, '2015-05-30 15:25:51'),
(1659, 339, 334, 1, '2015-05-30 15:25:51'),
(1660, 340, 341, 1, '2015-05-30 15:25:51'),
(1661, 340, 342, 1, '2015-05-30 15:25:51'),
(1662, 340, 343, 1, '2015-05-30 15:25:51'),
(1663, 340, 344, 1, '2015-05-30 15:25:51'),
(1664, 340, 345, 1, '2015-05-30 15:25:51'),
(1665, 340, 346, 1, '2015-05-30 15:25:51'),
(1666, 340, 347, 1, '2015-05-30 15:25:51'),
(1667, 340, 348, 1, '2015-05-30 15:25:51'),
(1668, 340, 349, 1, '2015-05-30 15:25:51'),
(1669, 340, 350, 1, '2015-05-30 15:25:51'),
(1670, 340, 351, 1, '2015-05-30 15:25:51'),
(1671, 340, 352, 1, '2015-05-30 15:25:51'),
(1672, 340, 353, 1, '2015-05-30 15:25:51'),
(1673, 340, 354, 1, '2015-05-30 15:25:51'),
(1674, 340, 334, 1, '2015-05-30 15:25:51'),
(1675, 341, 342, 1, '2015-05-30 15:25:51'),
(1676, 341, 343, 1, '2015-05-30 15:25:51'),
(1677, 341, 344, 1, '2015-05-30 15:25:51'),
(1678, 341, 345, 1, '2015-05-30 15:25:51'),
(1679, 341, 346, 1, '2015-05-30 15:25:51'),
(1680, 341, 347, 1, '2015-05-30 15:25:51'),
(1681, 341, 348, 1, '2015-05-30 15:25:51'),
(1682, 341, 349, 1, '2015-05-30 15:25:51'),
(1683, 341, 350, 1, '2015-05-30 15:25:52'),
(1684, 341, 351, 1, '2015-05-30 15:25:52'),
(1685, 341, 352, 1, '2015-05-30 15:25:52'),
(1686, 341, 353, 1, '2015-05-30 15:25:52'),
(1687, 341, 354, 1, '2015-05-30 15:25:52'),
(1688, 341, 334, 1, '2015-05-30 15:25:52'),
(1689, 342, 343, 1, '2015-05-30 15:25:52'),
(1690, 342, 344, 1, '2015-05-30 15:25:52'),
(1691, 342, 345, 1, '2015-05-30 15:25:52'),
(1692, 342, 346, 1, '2015-05-30 15:25:52'),
(1693, 342, 347, 1, '2015-05-30 15:25:52'),
(1694, 342, 348, 1, '2015-05-30 15:25:52'),
(1695, 342, 349, 1, '2015-05-30 15:25:52'),
(1696, 342, 350, 1, '2015-05-30 15:25:52'),
(1697, 342, 351, 1, '2015-05-30 15:25:52'),
(1698, 342, 352, 1, '2015-05-30 15:25:52'),
(1699, 342, 353, 1, '2015-05-30 15:25:52'),
(1700, 342, 354, 1, '2015-05-30 15:25:52'),
(1701, 342, 334, 1, '2015-05-30 15:25:52'),
(1702, 343, 344, 1, '2015-05-30 15:25:52'),
(1703, 343, 345, 1, '2015-05-30 15:25:52'),
(1704, 343, 346, 1, '2015-05-30 15:25:52'),
(1705, 343, 347, 1, '2015-05-30 15:25:52'),
(1706, 343, 348, 1, '2015-05-30 15:25:52'),
(1707, 343, 349, 1, '2015-05-30 15:25:52'),
(1708, 343, 350, 1, '2015-05-30 15:25:52'),
(1709, 343, 351, 1, '2015-05-30 15:25:52'),
(1710, 343, 352, 1, '2015-05-30 15:25:52'),
(1711, 343, 353, 1, '2015-05-30 15:25:52'),
(1712, 343, 354, 1, '2015-05-30 15:25:53'),
(1713, 343, 334, 1, '2015-05-30 15:25:53'),
(1714, 344, 345, 1, '2015-05-30 15:25:53'),
(1715, 344, 346, 1, '2015-05-30 15:25:53'),
(1716, 344, 347, 1, '2015-05-30 15:25:53'),
(1717, 344, 348, 1, '2015-05-30 15:25:53'),
(1718, 344, 349, 1, '2015-05-30 15:25:53'),
(1719, 344, 350, 1, '2015-05-30 15:25:53'),
(1720, 344, 351, 1, '2015-05-30 15:25:53'),
(1721, 344, 352, 1, '2015-05-30 15:25:53'),
(1722, 344, 353, 1, '2015-05-30 15:25:53'),
(1723, 344, 354, 1, '2015-05-30 15:25:53'),
(1724, 344, 334, 1, '2015-05-30 15:25:53'),
(1725, 345, 346, 1, '2015-05-30 15:25:53'),
(1726, 345, 347, 1, '2015-05-30 15:25:53'),
(1727, 345, 348, 1, '2015-05-30 15:25:53'),
(1728, 345, 349, 1, '2015-05-30 15:25:53'),
(1729, 345, 350, 1, '2015-05-30 15:25:53'),
(1730, 345, 351, 1, '2015-05-30 15:25:53'),
(1731, 345, 352, 1, '2015-05-30 15:25:53'),
(1732, 345, 353, 1, '2015-05-30 15:25:53'),
(1733, 345, 354, 1, '2015-05-30 15:25:53'),
(1734, 345, 334, 1, '2015-05-30 15:25:53'),
(1735, 346, 347, 1, '2015-05-30 15:25:53'),
(1736, 346, 348, 1, '2015-05-30 15:25:53'),
(1737, 346, 349, 1, '2015-05-30 15:25:53'),
(1738, 346, 350, 1, '2015-05-30 15:25:53'),
(1739, 346, 351, 1, '2015-05-30 15:25:53'),
(1740, 346, 352, 1, '2015-05-30 15:25:54'),
(1741, 346, 353, 1, '2015-05-30 15:25:54'),
(1742, 346, 354, 1, '2015-05-30 15:25:54'),
(1743, 346, 334, 1, '2015-05-30 15:25:54'),
(1744, 347, 348, 1, '2015-05-30 15:25:54'),
(1745, 347, 349, 1, '2015-05-30 15:25:54'),
(1746, 347, 350, 1, '2015-05-30 15:25:54'),
(1747, 347, 351, 1, '2015-05-30 15:25:54'),
(1748, 347, 352, 1, '2015-05-30 15:25:54'),
(1749, 347, 353, 1, '2015-05-30 15:25:54'),
(1750, 347, 354, 1, '2015-05-30 15:25:54'),
(1751, 347, 334, 1, '2015-05-30 15:25:54'),
(1752, 348, 349, 1, '2015-05-30 15:25:54'),
(1753, 348, 350, 1, '2015-05-30 15:25:54'),
(1754, 348, 351, 1, '2015-05-30 15:25:54'),
(1755, 348, 352, 1, '2015-05-30 15:25:54'),
(1756, 348, 353, 1, '2015-05-30 15:25:54'),
(1757, 348, 354, 1, '2015-05-30 15:25:54'),
(1758, 348, 334, 1, '2015-05-30 15:25:54'),
(1759, 349, 350, 1, '2015-05-30 15:25:54'),
(1760, 349, 351, 1, '2015-05-30 15:25:54'),
(1761, 349, 352, 1, '2015-05-30 15:25:54'),
(1762, 349, 353, 1, '2015-05-30 15:25:54'),
(1763, 349, 354, 1, '2015-05-30 15:25:54'),
(1764, 349, 334, 1, '2015-05-30 15:25:54'),
(1765, 350, 351, 1, '2015-05-30 15:25:54'),
(1766, 350, 352, 1, '2015-05-30 15:25:54'),
(1767, 350, 353, 1, '2015-05-30 15:25:54'),
(1768, 350, 354, 1, '2015-05-30 15:25:54'),
(1769, 350, 334, 1, '2015-05-30 15:25:55'),
(1770, 351, 352, 1, '2015-05-30 15:25:55'),
(1771, 351, 353, 1, '2015-05-30 15:25:55'),
(1772, 351, 354, 1, '2015-05-30 15:25:55'),
(1773, 351, 334, 1, '2015-05-30 15:25:55'),
(1774, 352, 353, 1, '2015-05-30 15:25:55'),
(1775, 352, 354, 1, '2015-05-30 15:25:55'),
(1776, 352, 334, 1, '2015-05-30 15:25:55'),
(1777, 353, 354, 1, '2015-05-30 15:25:55'),
(1778, 353, 334, 1, '2015-05-30 15:25:55'),
(1779, 354, 334, 1, '2015-05-30 15:25:55'),
(1780, 355, 356, 1, '2015-05-30 15:26:32'),
(1781, 355, 357, 1, '2015-05-30 15:26:32'),
(1782, 355, 358, 1, '2015-05-30 15:26:32'),
(1783, 355, 359, 1, '2015-05-30 15:26:32'),
(1784, 355, 360, 1, '2015-05-30 15:26:32'),
(1785, 356, 357, 1, '2015-05-30 15:26:32'),
(1786, 356, 358, 1, '2015-05-30 15:26:32'),
(1787, 356, 359, 1, '2015-05-30 15:26:32'),
(1788, 356, 360, 1, '2015-05-30 15:26:32'),
(1789, 357, 358, 1, '2015-05-30 15:26:32'),
(1790, 357, 359, 1, '2015-05-30 15:26:32'),
(1791, 357, 360, 1, '2015-05-30 15:26:32'),
(1792, 358, 359, 2, '2015-05-30 15:26:32'),
(1793, 358, 360, 2, '2015-05-30 15:26:32'),
(1794, 359, 360, 2, '2015-05-30 15:26:32'),
(1795, 361, 181, 1, '2015-05-30 15:26:56'),
(1796, 361, 362, 1, '2015-05-30 15:26:56'),
(1797, 361, 363, 1, '2015-05-30 15:26:56'),
(1798, 361, 364, 1, '2015-05-30 15:26:56'),
(1799, 361, 365, 1, '2015-05-30 15:26:56'),
(1800, 361, 366, 1, '2015-05-30 15:26:56'),
(1801, 361, 358, 1, '2015-05-30 15:26:56'),
(1802, 361, 359, 1, '2015-05-30 15:26:56'),
(1803, 361, 360, 1, '2015-05-30 15:26:56'),
(1804, 181, 362, 1, '2015-05-30 15:26:56'),
(1805, 181, 363, 1, '2015-05-30 15:26:57'),
(1806, 181, 364, 1, '2015-05-30 15:26:57'),
(1807, 181, 365, 1, '2015-05-30 15:26:57'),
(1808, 181, 366, 1, '2015-05-30 15:26:57'),
(1809, 181, 358, 1, '2015-05-30 15:26:57'),
(1810, 181, 359, 1, '2015-05-30 15:26:57'),
(1811, 181, 360, 1, '2015-05-30 15:26:57'),
(1812, 362, 363, 1, '2015-05-30 15:26:57'),
(1813, 362, 364, 1, '2015-05-30 15:26:57'),
(1814, 362, 365, 1, '2015-05-30 15:26:57'),
(1815, 362, 366, 1, '2015-05-30 15:26:57'),
(1816, 362, 358, 1, '2015-05-30 15:26:57'),
(1817, 362, 359, 1, '2015-05-30 15:26:57'),
(1818, 362, 360, 1, '2015-05-30 15:26:57'),
(1819, 363, 364, 1, '2015-05-30 15:26:57'),
(1820, 363, 365, 1, '2015-05-30 15:26:57'),
(1821, 363, 366, 1, '2015-05-30 15:26:57'),
(1822, 363, 358, 1, '2015-05-30 15:26:57'),
(1823, 363, 359, 1, '2015-05-30 15:26:57'),
(1824, 363, 360, 1, '2015-05-30 15:26:57'),
(1825, 364, 365, 1, '2015-05-30 15:26:57'),
(1826, 364, 366, 1, '2015-05-30 15:26:57'),
(1827, 364, 358, 1, '2015-05-30 15:26:57'),
(1828, 364, 359, 1, '2015-05-30 15:26:57'),
(1829, 364, 360, 1, '2015-05-30 15:26:57'),
(1830, 365, 366, 1, '2015-05-30 15:26:57'),
(1831, 365, 358, 1, '2015-05-30 15:26:57'),
(1832, 365, 359, 1, '2015-05-30 15:26:57'),
(1833, 365, 360, 1, '2015-05-30 15:26:57'),
(1834, 366, 358, 1, '2015-05-30 15:26:58'),
(1835, 366, 359, 1, '2015-05-30 15:26:58'),
(1836, 366, 360, 1, '2015-05-30 15:26:58'),
(1837, 368, 369, 1, '2015-05-30 15:27:37'),
(1838, 368, 370, 1, '2015-05-30 15:27:37'),
(1839, 368, 371, 1, '2015-05-30 15:27:37'),
(1840, 368, 372, 1, '2015-05-30 15:27:37'),
(1841, 368, 373, 1, '2015-05-30 15:27:37'),
(1842, 369, 370, 1, '2015-05-30 15:27:37'),
(1843, 369, 371, 1, '2015-05-30 15:27:37'),
(1844, 369, 372, 1, '2015-05-30 15:27:37'),
(1845, 369, 373, 1, '2015-05-30 15:27:37'),
(1846, 370, 371, 1, '2015-05-30 15:27:37'),
(1847, 370, 372, 1, '2015-05-30 15:27:37'),
(1848, 370, 373, 1, '2015-05-30 15:27:37'),
(1849, 371, 372, 2, '2015-05-30 15:27:37'),
(1850, 371, 373, 2, '2015-05-30 15:27:37'),
(1851, 372, 373, 2, '2015-05-30 15:27:37'),
(1852, 179, 337, 1, '2015-05-30 15:28:06'),
(1853, 179, 374, 1, '2015-05-30 15:28:06'),
(1854, 179, 375, 1, '2015-05-30 15:28:06'),
(1855, 179, 376, 1, '2015-05-30 15:28:06'),
(1856, 179, 377, 1, '2015-05-30 15:28:06'),
(1857, 337, 374, 1, '2015-05-30 15:28:06'),
(1858, 337, 375, 1, '2015-05-30 15:28:06'),
(1859, 337, 376, 1, '2015-05-30 15:28:06'),
(1860, 337, 377, 1, '2015-05-30 15:28:06'),
(1861, 374, 375, 1, '2015-05-30 15:28:06'),
(1862, 374, 376, 1, '2015-05-30 15:28:06'),
(1863, 374, 377, 1, '2015-05-30 15:28:06'),
(1864, 375, 376, 1, '2015-05-30 15:28:06'),
(1865, 375, 377, 1, '2015-05-30 15:28:06'),
(1866, 376, 377, 1, '2015-05-30 15:28:06'),
(1867, 378, 379, 1, '2015-05-30 15:28:36'),
(1868, 378, 224, 1, '2015-05-30 15:28:36'),
(1869, 378, 380, 1, '2015-05-30 15:28:36'),
(1870, 378, 381, 1, '2015-05-30 15:28:36'),
(1871, 378, 382, 1, '2015-05-30 15:28:36'),
(1872, 378, 383, 1, '2015-05-30 15:28:36'),
(1873, 378, 186, 1, '2015-05-30 15:28:36'),
(1874, 378, 384, 1, '2015-05-30 15:28:36'),
(1875, 378, 385, 1, '2015-05-30 15:28:36'),
(1876, 379, 224, 1, '2015-05-30 15:28:36'),
(1877, 379, 380, 1, '2015-05-30 15:28:36'),
(1878, 379, 381, 1, '2015-05-30 15:28:36'),
(1879, 379, 382, 1, '2015-05-30 15:28:36'),
(1880, 379, 383, 1, '2015-05-30 15:28:37'),
(1881, 379, 186, 1, '2015-05-30 15:28:37'),
(1882, 379, 384, 1, '2015-05-30 15:28:37'),
(1883, 379, 385, 1, '2015-05-30 15:28:37'),
(1884, 224, 380, 1, '2015-05-30 15:28:37'),
(1885, 224, 381, 1, '2015-05-30 15:28:37'),
(1886, 224, 382, 1, '2015-05-30 15:28:37'),
(1887, 224, 383, 1, '2015-05-30 15:28:37'),
(1888, 224, 186, 1, '2015-05-30 15:28:37'),
(1889, 224, 384, 1, '2015-05-30 15:28:37'),
(1890, 224, 385, 1, '2015-05-30 15:28:37'),
(1891, 380, 381, 1, '2015-05-30 15:28:37'),
(1892, 380, 382, 1, '2015-05-30 15:28:37'),
(1893, 380, 383, 1, '2015-05-30 15:28:37'),
(1894, 380, 186, 1, '2015-05-30 15:28:37'),
(1895, 380, 384, 1, '2015-05-30 15:28:37'),
(1896, 380, 385, 1, '2015-05-30 15:28:37'),
(1897, 381, 382, 1, '2015-05-30 15:28:37'),
(1898, 381, 383, 1, '2015-05-30 15:28:37'),
(1899, 381, 186, 1, '2015-05-30 15:28:37'),
(1900, 381, 384, 1, '2015-05-30 15:28:37'),
(1901, 381, 385, 1, '2015-05-30 15:28:37'),
(1902, 382, 383, 1, '2015-05-30 15:28:37'),
(1903, 382, 186, 1, '2015-05-30 15:28:37'),
(1904, 382, 384, 1, '2015-05-30 15:28:37'),
(1905, 382, 385, 1, '2015-05-30 15:28:37'),
(1906, 383, 186, 1, '2015-05-30 15:28:37'),
(1907, 383, 384, 1, '2015-05-30 15:28:37'),
(1908, 383, 385, 1, '2015-05-30 15:28:37'),
(1909, 186, 384, 1, '2015-05-30 15:28:38'),
(1910, 186, 385, 1, '2015-05-30 15:28:38'),
(1911, 384, 385, 1, '2015-05-30 15:28:38'),
(1912, 122, 386, 1, '2015-05-30 17:39:19'),
(1913, 122, 387, 1, '2015-05-30 17:39:19'),
(1914, 122, 179, 1, '2015-05-30 17:39:19'),
(1915, 122, 188, 1, '2015-05-30 17:39:19'),
(1916, 122, 187, 1, '2015-05-30 17:39:19'),
(1917, 386, 387, 1, '2015-05-30 17:39:19'),
(1918, 386, 179, 1, '2015-05-30 17:39:19'),
(1919, 386, 188, 1, '2015-05-30 17:39:19'),
(1920, 386, 187, 1, '2015-05-30 17:39:19'),
(1921, 387, 179, 1, '2015-05-30 17:39:19'),
(1922, 387, 188, 1, '2015-05-30 17:39:19'),
(1923, 387, 187, 1, '2015-05-30 17:39:19'),
(1924, 179, 188, 1, '2015-05-30 17:39:19'),
(1925, 179, 187, 1, '2015-05-30 17:39:19'),
(1926, 188, 187, 1, '2015-05-30 17:39:19'),
(1927, 186, 270, 1, '2015-05-30 17:39:57'),
(1928, 186, 216, 1, '2015-05-30 17:39:57'),
(1929, 270, 216, 1, '2015-05-30 17:39:57'),
(1930, 388, 389, 2, '2015-05-30 17:40:17'),
(1931, 388, 303, 2, '2015-05-30 17:40:17'),
(1932, 389, 303, 2, '2015-05-30 17:40:17'),
(1933, 390, 391, 2, '2015-05-30 17:40:31'),
(1934, 390, 392, 1, '2015-05-30 17:40:31'),
(1935, 390, 371, 2, '2015-05-30 17:40:31'),
(1936, 390, 372, 1, '2015-05-30 17:40:31'),
(1937, 390, 373, 1, '2015-05-30 17:40:31'),
(1938, 391, 392, 1, '2015-05-30 17:40:31'),
(1939, 391, 371, 2, '2015-05-30 17:40:31'),
(1940, 391, 372, 1, '2015-05-30 17:40:31'),
(1941, 391, 373, 1, '2015-05-30 17:40:31'),
(1942, 392, 371, 1, '2015-05-30 17:40:31'),
(1943, 392, 372, 1, '2015-05-30 17:40:31'),
(1944, 392, 373, 1, '2015-05-30 17:40:31'),
(1945, 393, 394, 1, '2015-05-30 17:40:50'),
(1946, 393, 395, 1, '2015-05-30 17:40:50'),
(1947, 394, 395, 1, '2015-05-30 17:40:50'),
(1948, 396, 397, 1, '2015-05-30 17:43:53'),
(1949, 396, 398, 1, '2015-05-30 17:43:53'),
(1950, 396, 399, 1, '2015-05-30 17:43:53'),
(1951, 396, 400, 1, '2015-05-30 17:43:53'),
(1952, 396, 401, 1, '2015-05-30 17:43:53'),
(1953, 397, 398, 1, '2015-05-30 17:43:53'),
(1954, 397, 399, 1, '2015-05-30 17:43:53'),
(1955, 397, 400, 1, '2015-05-30 17:43:53'),
(1956, 397, 401, 1, '2015-05-30 17:43:53'),
(1957, 398, 399, 1, '2015-05-30 17:43:53'),
(1958, 398, 400, 1, '2015-05-30 17:43:53'),
(1959, 398, 401, 1, '2015-05-30 17:43:53'),
(1960, 399, 400, 1, '2015-05-30 17:43:53'),
(1961, 399, 401, 1, '2015-05-30 17:43:53'),
(1962, 400, 401, 1, '2015-05-30 17:43:54'),
(1963, 403, 404, 1, '2015-05-30 17:46:49'),
(1964, 403, 405, 1, '2015-05-30 17:46:49'),
(1965, 403, 385, 1, '2015-05-30 17:46:49'),
(1966, 403, 406, 1, '2015-05-30 17:46:49'),
(1967, 403, 407, 1, '2015-05-30 17:46:49'),
(1968, 404, 405, 1, '2015-05-30 17:46:49'),
(1969, 404, 385, 1, '2015-05-30 17:46:49'),
(1970, 404, 406, 1, '2015-05-30 17:46:49'),
(1971, 404, 407, 1, '2015-05-30 17:46:49'),
(1972, 405, 385, 1, '2015-05-30 17:46:49'),
(1973, 405, 406, 1, '2015-05-30 17:46:49'),
(1974, 405, 407, 1, '2015-05-30 17:46:49'),
(1975, 385, 406, 1, '2015-05-30 17:46:49'),
(1976, 385, 407, 1, '2015-05-30 17:46:49'),
(1977, 406, 407, 1, '2015-05-30 17:46:49'),
(1978, 186, 408, 5, '2015-05-30 17:49:58'),
(1979, 186, 409, 5, '2015-05-30 17:49:58'),
(1980, 408, 409, 5, '2015-05-30 17:49:58'),
(1981, 410, 297, 1, '2015-05-30 18:01:59'),
(1982, 410, 411, 1, '2015-05-30 18:01:59'),
(1983, 410, 412, 1, '2015-05-30 18:01:59'),
(1984, 410, 413, 1, '2015-05-30 18:01:59'),
(1985, 410, 414, 1, '2015-05-30 18:01:59'),
(1986, 297, 411, 1, '2015-05-30 18:01:59'),
(1987, 297, 412, 1, '2015-05-30 18:01:59'),
(1988, 297, 413, 1, '2015-05-30 18:01:59'),
(1989, 297, 414, 1, '2015-05-30 18:01:59'),
(1990, 411, 412, 1, '2015-05-30 18:01:59'),
(1991, 411, 413, 1, '2015-05-30 18:01:59'),
(1992, 411, 414, 1, '2015-05-30 18:01:59'),
(1993, 412, 413, 1, '2015-05-30 18:01:59'),
(1994, 412, 414, 1, '2015-05-30 18:01:59'),
(1995, 413, 414, 1, '2015-05-30 18:01:59'),
(1996, 415, 122, 1, '2015-05-30 18:03:50'),
(1997, 415, 416, 1, '2015-05-30 18:03:50'),
(1998, 415, 417, 1, '2015-05-30 18:03:50'),
(1999, 415, 418, 1, '2015-05-30 18:03:50'),
(2000, 415, 419, 1, '2015-05-30 18:03:50'),
(2001, 415, 420, 1, '2015-05-30 18:03:50'),
(2002, 415, 421, 1, '2015-05-30 18:03:50'),
(2003, 415, 422, 1, '2015-05-30 18:03:50'),
(2004, 415, 423, 1, '2015-05-30 18:03:50'),
(2005, 122, 416, 1, '2015-05-30 18:03:50'),
(2006, 122, 417, 1, '2015-05-30 18:03:50'),
(2007, 122, 418, 1, '2015-05-30 18:03:50'),
(2008, 122, 419, 1, '2015-05-30 18:03:50'),
(2009, 122, 420, 1, '2015-05-30 18:03:50'),
(2010, 122, 421, 1, '2015-05-30 18:03:50'),
(2011, 122, 422, 1, '2015-05-30 18:03:50'),
(2012, 122, 423, 1, '2015-05-30 18:03:50'),
(2013, 416, 417, 1, '2015-05-30 18:03:50'),
(2014, 416, 418, 1, '2015-05-30 18:03:50'),
(2015, 416, 419, 1, '2015-05-30 18:03:50'),
(2016, 416, 420, 1, '2015-05-30 18:03:50'),
(2017, 416, 421, 1, '2015-05-30 18:03:50'),
(2018, 416, 422, 1, '2015-05-30 18:03:50'),
(2019, 416, 423, 1, '2015-05-30 18:03:50'),
(2020, 417, 418, 1, '2015-05-30 18:03:50'),
(2021, 417, 419, 1, '2015-05-30 18:03:50'),
(2022, 417, 420, 1, '2015-05-30 18:03:50'),
(2023, 417, 421, 1, '2015-05-30 18:03:50'),
(2024, 417, 422, 1, '2015-05-30 18:03:50'),
(2025, 417, 423, 1, '2015-05-30 18:03:51'),
(2026, 418, 419, 1, '2015-05-30 18:03:51'),
(2027, 418, 420, 1, '2015-05-30 18:03:51'),
(2028, 418, 421, 1, '2015-05-30 18:03:51'),
(2029, 418, 422, 1, '2015-05-30 18:03:51'),
(2030, 418, 423, 1, '2015-05-30 18:03:51'),
(2031, 419, 420, 1, '2015-05-30 18:03:51'),
(2032, 419, 421, 1, '2015-05-30 18:03:51'),
(2033, 419, 422, 1, '2015-05-30 18:03:51'),
(2034, 419, 423, 1, '2015-05-30 18:03:51'),
(2035, 420, 421, 1, '2015-05-30 18:03:51'),
(2036, 420, 422, 1, '2015-05-30 18:03:51'),
(2037, 420, 423, 1, '2015-05-30 18:03:51'),
(2038, 421, 422, 1, '2015-05-30 18:03:51'),
(2039, 421, 423, 1, '2015-05-30 18:03:51'),
(2040, 422, 423, 1, '2015-05-30 18:03:51'),
(2041, 19, 424, 1, '2015-05-30 18:04:48'),
(2042, 19, 425, 1, '2015-05-30 18:04:48'),
(2043, 19, 426, 1, '2015-05-30 18:04:49'),
(2044, 19, 427, 1, '2015-05-30 18:04:49'),
(2045, 19, 428, 1, '2015-05-30 18:04:49'),
(2046, 19, 429, 1, '2015-05-30 18:04:49'),
(2047, 19, 430, 1, '2015-05-30 18:04:49'),
(2048, 178, 424, 1, '2015-05-30 18:04:49'),
(2049, 178, 425, 1, '2015-05-30 18:04:49'),
(2050, 178, 426, 1, '2015-05-30 18:04:49'),
(2051, 178, 427, 1, '2015-05-30 18:04:49'),
(2052, 178, 428, 1, '2015-05-30 18:04:49'),
(2053, 178, 429, 1, '2015-05-30 18:04:49'),
(2054, 178, 430, 1, '2015-05-30 18:04:49'),
(2055, 424, 425, 1, '2015-05-30 18:04:49'),
(2056, 424, 179, 1, '2015-05-30 18:04:49'),
(2057, 424, 426, 1, '2015-05-30 18:04:49'),
(2058, 424, 427, 1, '2015-05-30 18:04:49'),
(2059, 424, 428, 1, '2015-05-30 18:04:49'),
(2060, 424, 429, 1, '2015-05-30 18:04:49'),
(2061, 424, 430, 1, '2015-05-30 18:04:49'),
(2062, 425, 179, 1, '2015-05-30 18:04:49'),
(2063, 425, 426, 1, '2015-05-30 18:04:49'),
(2064, 425, 427, 1, '2015-05-30 18:04:49'),
(2065, 425, 428, 1, '2015-05-30 18:04:49'),
(2066, 425, 429, 1, '2015-05-30 18:04:49'),
(2067, 425, 430, 1, '2015-05-30 18:04:49'),
(2068, 179, 426, 1, '2015-05-30 18:04:49'),
(2069, 179, 427, 1, '2015-05-30 18:04:49'),
(2070, 179, 428, 1, '2015-05-30 18:04:49'),
(2071, 179, 429, 1, '2015-05-30 18:04:49'),
(2072, 179, 430, 1, '2015-05-30 18:04:50'),
(2073, 426, 427, 1, '2015-05-30 18:04:50'),
(2074, 426, 428, 1, '2015-05-30 18:04:50'),
(2075, 426, 429, 1, '2015-05-30 18:04:50'),
(2076, 426, 430, 1, '2015-05-30 18:04:50'),
(2077, 427, 428, 1, '2015-05-30 18:04:50'),
(2078, 427, 429, 1, '2015-05-30 18:04:50'),
(2079, 427, 430, 1, '2015-05-30 18:04:50'),
(2080, 428, 429, 1, '2015-05-30 18:04:50'),
(2081, 428, 430, 1, '2015-05-30 18:04:50'),
(2082, 429, 430, 1, '2015-05-30 18:04:50'),
(2083, 388, 431, 3, '2015-05-30 19:32:03'),
(2084, 388, 179, 3, '2015-05-30 19:32:03'),
(2085, 431, 179, 3, '2015-05-30 19:32:03'),
(2086, 432, 433, 1, '2015-05-30 19:39:13'),
(2087, 432, 434, 1, '2015-05-30 19:39:13'),
(2088, 432, 10, 1, '2015-05-30 19:39:13'),
(2089, 432, 435, 1, '2015-05-30 19:39:13'),
(2090, 432, 436, 1, '2015-05-30 19:39:13'),
(2091, 433, 434, 1, '2015-05-30 19:39:13'),
(2092, 433, 10, 1, '2015-05-30 19:39:13'),
(2093, 433, 435, 1, '2015-05-30 19:39:13'),
(2094, 433, 436, 1, '2015-05-30 19:39:13'),
(2095, 434, 10, 1, '2015-05-30 19:39:13'),
(2096, 434, 435, 1, '2015-05-30 19:39:13'),
(2097, 434, 436, 1, '2015-05-30 19:39:13'),
(2098, 10, 435, 1, '2015-05-30 19:39:13'),
(2099, 10, 436, 1, '2015-05-30 19:39:13'),
(2100, 435, 436, 1, '2015-05-30 19:39:13'),
(2101, 437, 438, 6, '2015-05-30 19:40:06'),
(2102, 437, 10, 6, '2015-05-30 19:40:06'),
(2103, 438, 10, 6, '2015-05-30 19:40:06'),
(2104, 437, 439, 5, '2015-05-30 19:40:14'),
(2105, 437, 440, 5, '2015-05-30 19:40:14'),
(2106, 437, 441, 5, '2015-05-30 19:40:14'),
(2107, 438, 439, 5, '2015-05-30 19:40:14'),
(2108, 438, 440, 5, '2015-05-30 19:40:14'),
(2109, 438, 441, 5, '2015-05-30 19:40:14'),
(2110, 439, 10, 5, '2015-05-30 19:40:14'),
(2111, 439, 440, 5, '2015-05-30 19:40:14'),
(2112, 439, 441, 5, '2015-05-30 19:40:14'),
(2113, 10, 440, 5, '2015-05-30 19:40:14'),
(2114, 10, 441, 5, '2015-05-30 19:40:14'),
(2115, 440, 441, 5, '2015-05-30 19:40:14'),
(2116, 390, 442, 1, '2015-05-30 21:36:24'),
(2117, 390, 443, 1, '2015-05-30 21:36:24'),
(2118, 390, 444, 1, '2015-05-30 21:36:24'),
(2119, 390, 445, 1, '2015-05-30 21:36:24'),
(2120, 390, 446, 1, '2015-05-30 21:36:24'),
(2121, 390, 447, 1, '2015-05-30 21:36:24'),
(2122, 390, 448, 1, '2015-05-30 21:36:24'),
(2123, 390, 449, 1, '2015-05-30 21:36:24'),
(2124, 390, 450, 1, '2015-05-30 21:36:24'),
(2125, 390, 451, 1, '2015-05-30 21:36:25'),
(2126, 390, 452, 1, '2015-05-30 21:36:25'),
(2127, 390, 453, 1, '2015-05-30 21:36:25'),
(2128, 391, 442, 1, '2015-05-30 21:36:25'),
(2129, 391, 443, 1, '2015-05-30 21:36:25'),
(2130, 391, 444, 1, '2015-05-30 21:36:25'),
(2131, 391, 445, 1, '2015-05-30 21:36:25'),
(2132, 391, 446, 1, '2015-05-30 21:36:25'),
(2133, 391, 447, 1, '2015-05-30 21:36:25'),
(2134, 391, 448, 1, '2015-05-30 21:36:25'),
(2135, 391, 449, 1, '2015-05-30 21:36:25'),
(2136, 391, 450, 1, '2015-05-30 21:36:25'),
(2137, 391, 451, 1, '2015-05-30 21:36:25'),
(2138, 391, 452, 1, '2015-05-30 21:36:25'),
(2139, 391, 453, 1, '2015-05-30 21:36:25'),
(2140, 442, 443, 1, '2015-05-30 21:36:25'),
(2141, 442, 444, 1, '2015-05-30 21:36:25'),
(2142, 442, 371, 1, '2015-05-30 21:36:25'),
(2143, 442, 445, 1, '2015-05-30 21:36:25'),
(2144, 442, 446, 1, '2015-05-30 21:36:25'),
(2145, 442, 447, 1, '2015-05-30 21:36:25'),
(2146, 442, 448, 1, '2015-05-30 21:36:25'),
(2147, 442, 449, 1, '2015-05-30 21:36:25'),
(2148, 442, 450, 1, '2015-05-30 21:36:25'),
(2149, 442, 451, 1, '2015-05-30 21:36:25'),
(2150, 442, 452, 1, '2015-05-30 21:36:25'),
(2151, 442, 453, 1, '2015-05-30 21:36:26'),
(2152, 443, 444, 1, '2015-05-30 21:36:26'),
(2153, 443, 371, 1, '2015-05-30 21:36:26'),
(2154, 443, 445, 1, '2015-05-30 21:36:26'),
(2155, 443, 446, 1, '2015-05-30 21:36:26'),
(2156, 443, 447, 1, '2015-05-30 21:36:26'),
(2157, 443, 448, 1, '2015-05-30 21:36:26'),
(2158, 443, 449, 1, '2015-05-30 21:36:26'),
(2159, 443, 450, 1, '2015-05-30 21:36:26'),
(2160, 443, 451, 1, '2015-05-30 21:36:26'),
(2161, 443, 452, 1, '2015-05-30 21:36:26'),
(2162, 443, 453, 1, '2015-05-30 21:36:26'),
(2163, 444, 371, 1, '2015-05-30 21:36:26'),
(2164, 444, 445, 1, '2015-05-30 21:36:26'),
(2165, 444, 446, 1, '2015-05-30 21:36:26'),
(2166, 444, 447, 1, '2015-05-30 21:36:26'),
(2167, 444, 448, 1, '2015-05-30 21:36:26'),
(2168, 444, 449, 1, '2015-05-30 21:36:26'),
(2169, 444, 450, 1, '2015-05-30 21:36:26'),
(2170, 444, 451, 1, '2015-05-30 21:36:26'),
(2171, 444, 452, 1, '2015-05-30 21:36:26'),
(2172, 444, 453, 1, '2015-05-30 21:36:26'),
(2173, 371, 445, 1, '2015-05-30 21:36:26'),
(2174, 371, 446, 1, '2015-05-30 21:36:26'),
(2175, 371, 447, 1, '2015-05-30 21:36:26'),
(2176, 371, 448, 1, '2015-05-30 21:36:26'),
(2177, 371, 449, 1, '2015-05-30 21:36:26'),
(2178, 371, 450, 1, '2015-05-30 21:36:26'),
(2179, 371, 451, 1, '2015-05-30 21:36:26'),
(2180, 371, 452, 1, '2015-05-30 21:36:26'),
(2181, 371, 453, 1, '2015-05-30 21:36:27'),
(2182, 445, 446, 1, '2015-05-30 21:36:27'),
(2183, 445, 447, 1, '2015-05-30 21:36:27'),
(2184, 445, 448, 1, '2015-05-30 21:36:27'),
(2185, 445, 449, 1, '2015-05-30 21:36:27'),
(2186, 445, 450, 1, '2015-05-30 21:36:27'),
(2187, 445, 451, 1, '2015-05-30 21:36:27'),
(2188, 445, 452, 1, '2015-05-30 21:36:27'),
(2189, 445, 453, 1, '2015-05-30 21:36:27'),
(2190, 446, 447, 1, '2015-05-30 21:36:27'),
(2191, 446, 448, 1, '2015-05-30 21:36:27'),
(2192, 446, 449, 1, '2015-05-30 21:36:27'),
(2193, 446, 450, 1, '2015-05-30 21:36:27'),
(2194, 446, 451, 1, '2015-05-30 21:36:27'),
(2195, 446, 452, 1, '2015-05-30 21:36:27'),
(2196, 446, 453, 1, '2015-05-30 21:36:27'),
(2197, 447, 448, 1, '2015-05-30 21:36:27'),
(2198, 447, 449, 1, '2015-05-30 21:36:27'),
(2199, 447, 450, 1, '2015-05-30 21:36:27'),
(2200, 447, 451, 1, '2015-05-30 21:36:27'),
(2201, 447, 452, 1, '2015-05-30 21:36:27'),
(2202, 447, 453, 1, '2015-05-30 21:36:27'),
(2203, 448, 449, 1, '2015-05-30 21:36:27'),
(2204, 448, 450, 1, '2015-05-30 21:36:27'),
(2205, 448, 451, 1, '2015-05-30 21:36:27'),
(2206, 448, 452, 1, '2015-05-30 21:36:27'),
(2207, 448, 453, 1, '2015-05-30 21:36:27'),
(2208, 449, 450, 1, '2015-05-30 21:36:27'),
(2209, 449, 451, 1, '2015-05-30 21:36:28'),
(2210, 449, 452, 1, '2015-05-30 21:36:28'),
(2211, 449, 453, 1, '2015-05-30 21:36:28'),
(2212, 450, 451, 1, '2015-05-30 21:36:28'),
(2213, 450, 452, 1, '2015-05-30 21:36:28'),
(2214, 450, 453, 1, '2015-05-30 21:36:28'),
(2215, 451, 452, 1, '2015-05-30 21:36:28'),
(2216, 451, 453, 1, '2015-05-30 21:36:28'),
(2217, 452, 453, 1, '2015-05-30 21:36:28'),
(2218, 454, 455, 1, '2015-06-05 02:02:51'),
(2219, 454, 456, 1, '2015-06-05 02:02:51'),
(2220, 454, 457, 1, '2015-06-05 02:02:51'),
(2221, 454, 458, 1, '2015-06-05 02:02:51'),
(2222, 454, 459, 1, '2015-06-05 02:02:51'),
(2223, 454, 460, 1, '2015-06-05 02:02:51'),
(2224, 454, 461, 1, '2015-06-05 02:02:51'),
(2225, 454, 462, 1, '2015-06-05 02:02:51'),
(2226, 454, 463, 1, '2015-06-05 02:02:51'),
(2227, 455, 456, 1, '2015-06-05 02:02:51'),
(2228, 455, 457, 1, '2015-06-05 02:02:51'),
(2229, 455, 458, 1, '2015-06-05 02:02:51'),
(2230, 455, 459, 1, '2015-06-05 02:02:51'),
(2231, 455, 460, 1, '2015-06-05 02:02:51'),
(2232, 455, 461, 1, '2015-06-05 02:02:51'),
(2233, 455, 462, 1, '2015-06-05 02:02:51'),
(2234, 455, 463, 1, '2015-06-05 02:02:51'),
(2235, 456, 457, 1, '2015-06-05 02:02:51'),
(2236, 456, 458, 1, '2015-06-05 02:02:51'),
(2237, 456, 459, 1, '2015-06-05 02:02:51'),
(2238, 456, 460, 1, '2015-06-05 02:02:51'),
(2239, 456, 461, 1, '2015-06-05 02:02:51'),
(2240, 456, 462, 1, '2015-06-05 02:02:52'),
(2241, 456, 463, 1, '2015-06-05 02:02:52'),
(2242, 457, 458, 1, '2015-06-05 02:02:52'),
(2243, 457, 459, 1, '2015-06-05 02:02:52'),
(2244, 457, 460, 1, '2015-06-05 02:02:52'),
(2245, 457, 461, 1, '2015-06-05 02:02:52'),
(2246, 457, 462, 1, '2015-06-05 02:02:52'),
(2247, 457, 463, 1, '2015-06-05 02:02:52'),
(2248, 458, 459, 1, '2015-06-05 02:02:52'),
(2249, 458, 460, 1, '2015-06-05 02:02:52'),
(2250, 458, 461, 1, '2015-06-05 02:02:52'),
(2251, 458, 462, 1, '2015-06-05 02:02:52'),
(2252, 458, 463, 1, '2015-06-05 02:02:52'),
(2253, 459, 460, 1, '2015-06-05 02:02:52'),
(2254, 459, 461, 1, '2015-06-05 02:02:52'),
(2255, 459, 462, 1, '2015-06-05 02:02:52'),
(2256, 459, 463, 1, '2015-06-05 02:02:52'),
(2257, 460, 461, 1, '2015-06-05 02:02:52'),
(2258, 460, 462, 1, '2015-06-05 02:02:52'),
(2259, 460, 463, 1, '2015-06-05 02:02:52'),
(2260, 461, 462, 1, '2015-06-05 02:02:52'),
(2261, 461, 463, 1, '2015-06-05 02:02:52'),
(2262, 462, 463, 1, '2015-06-05 02:02:52'),
(2263, 464, 465, 1, '2015-06-05 02:03:53'),
(2264, 464, 466, 1, '2015-06-05 02:03:53'),
(2265, 465, 466, 1, '2015-06-05 02:03:53'),
(2266, 368, 467, 1, '2015-06-05 02:04:10'),
(2267, 368, 468, 1, '2015-06-05 02:04:10'),
(2268, 467, 468, 1, '2015-06-05 02:04:10'),
(2269, 368, 469, 1, '2015-06-05 02:04:31'),
(2270, 368, 470, 1, '2015-06-05 02:04:31'),
(2271, 368, 471, 1, '2015-06-05 02:04:31'),
(2272, 368, 472, 1, '2015-06-05 02:04:31'),
(2273, 368, 473, 1, '2015-06-05 02:04:31'),
(2274, 469, 470, 1, '2015-06-05 02:04:31'),
(2275, 469, 471, 1, '2015-06-05 02:04:31'),
(2276, 469, 472, 1, '2015-06-05 02:04:31'),
(2277, 469, 473, 1, '2015-06-05 02:04:31'),
(2278, 470, 471, 1, '2015-06-05 02:04:31'),
(2279, 470, 472, 1, '2015-06-05 02:04:31'),
(2280, 470, 473, 1, '2015-06-05 02:04:31'),
(2281, 471, 472, 1, '2015-06-05 02:04:31'),
(2282, 471, 473, 1, '2015-06-05 02:04:31'),
(2283, 472, 473, 1, '2015-06-05 02:04:31'),
(2284, 13, 474, 1, '2015-06-05 04:58:46'),
(2285, 13, 475, 1, '2015-06-05 04:58:46'),
(2286, 474, 475, 1, '2015-06-05 04:58:46'),
(2287, 478, 479, 1, '2015-06-05 22:35:14'),
(2288, 478, 480, 1, '2015-06-05 22:35:14'),
(2289, 479, 480, 1, '2015-06-05 22:35:14'),
(2290, 479, 481, 3, '2015-06-05 22:36:26'),
(2291, 479, 122, 3, '2015-06-05 22:36:26'),
(2292, 479, 482, 1, '2015-06-05 22:36:26'),
(2293, 479, 483, 3, '2015-06-05 22:36:26'),
(2294, 479, 484, 3, '2015-06-05 22:36:26'),
(2295, 479, 485, 1, '2015-06-05 22:36:26'),
(2296, 479, 486, 3, '2015-06-05 22:36:26'),
(2297, 479, 487, 1, '2015-06-05 22:36:26'),
(2298, 479, 488, 1, '2015-06-05 22:36:26'),
(2299, 481, 122, 3, '2015-06-05 22:36:26'),
(2300, 481, 482, 1, '2015-06-05 22:36:26'),
(2301, 481, 483, 3, '2015-06-05 22:36:26'),
(2302, 481, 484, 3, '2015-06-05 22:36:26'),
(2303, 481, 485, 1, '2015-06-05 22:36:26'),
(2304, 481, 486, 3, '2015-06-05 22:36:26'),
(2305, 481, 487, 1, '2015-06-05 22:36:26'),
(2306, 481, 488, 1, '2015-06-05 22:36:26'),
(2307, 122, 482, 1, '2015-06-05 22:36:26'),
(2308, 122, 483, 3, '2015-06-05 22:36:26'),
(2309, 122, 484, 3, '2015-06-05 22:36:26'),
(2310, 122, 485, 1, '2015-06-05 22:36:26'),
(2311, 122, 486, 3, '2015-06-05 22:36:26'),
(2312, 122, 487, 1, '2015-06-05 22:36:26'),
(2313, 122, 488, 1, '2015-06-05 22:36:26'),
(2314, 482, 483, 1, '2015-06-05 22:36:26'),
(2315, 482, 484, 1, '2015-06-05 22:36:26'),
(2316, 482, 485, 1, '2015-06-05 22:36:26'),
(2317, 482, 486, 1, '2015-06-05 22:36:27'),
(2318, 482, 487, 1, '2015-06-05 22:36:27'),
(2319, 482, 488, 1, '2015-06-05 22:36:27'),
(2320, 483, 484, 3, '2015-06-05 22:36:27'),
(2321, 483, 485, 1, '2015-06-05 22:36:27'),
(2322, 483, 486, 3, '2015-06-05 22:36:27'),
(2323, 483, 487, 1, '2015-06-05 22:36:27'),
(2324, 483, 488, 1, '2015-06-05 22:36:27'),
(2325, 484, 485, 1, '2015-06-05 22:36:27'),
(2326, 484, 486, 3, '2015-06-05 22:36:27'),
(2327, 484, 487, 1, '2015-06-05 22:36:27'),
(2328, 484, 488, 1, '2015-06-05 22:36:27'),
(2329, 485, 486, 1, '2015-06-05 22:36:27'),
(2330, 485, 487, 1, '2015-06-05 22:36:27'),
(2331, 485, 488, 1, '2015-06-05 22:36:27'),
(2332, 486, 487, 1, '2015-06-05 22:36:27'),
(2333, 486, 488, 1, '2015-06-05 22:36:27'),
(2334, 487, 488, 1, '2015-06-05 22:36:27'),
(2335, 479, 489, 1, '2015-06-05 22:37:14'),
(2336, 479, 490, 1, '2015-06-05 22:37:14'),
(2337, 479, 491, 1, '2015-06-05 22:37:14'),
(2338, 479, 70, 1, '2015-06-05 22:37:14'),
(2339, 481, 489, 1, '2015-06-05 22:37:14'),
(2340, 481, 490, 1, '2015-06-05 22:37:14'),
(2341, 481, 491, 1, '2015-06-05 22:37:14'),
(2342, 481, 70, 1, '2015-06-05 22:37:14'),
(2343, 122, 489, 1, '2015-06-05 22:37:14'),
(2344, 122, 490, 1, '2015-06-05 22:37:14'),
(2345, 122, 491, 1, '2015-06-05 22:37:14'),
(2346, 122, 70, 1, '2015-06-05 22:37:14'),
(2347, 489, 483, 1, '2015-06-05 22:37:14'),
(2348, 489, 484, 1, '2015-06-05 22:37:14'),
(2349, 489, 490, 1, '2015-06-05 22:37:14'),
(2350, 489, 486, 1, '2015-06-05 22:37:14'),
(2351, 489, 491, 1, '2015-06-05 22:37:14'),
(2352, 489, 70, 1, '2015-06-05 22:37:14'),
(2353, 483, 490, 1, '2015-06-05 22:37:14'),
(2354, 483, 491, 1, '2015-06-05 22:37:14'),
(2355, 483, 70, 1, '2015-06-05 22:37:14'),
(2356, 484, 490, 1, '2015-06-05 22:37:14'),
(2357, 484, 491, 1, '2015-06-05 22:37:15'),
(2358, 484, 70, 1, '2015-06-05 22:37:15'),
(2359, 490, 486, 1, '2015-06-05 22:37:15'),
(2360, 490, 491, 1, '2015-06-05 22:37:15'),
(2361, 490, 70, 1, '2015-06-05 22:37:15'),
(2362, 486, 491, 1, '2015-06-05 22:37:15'),
(2363, 486, 70, 1, '2015-06-05 22:37:15'),
(2364, 491, 70, 1, '2015-06-05 22:37:15'),
(2365, 492, 493, 1, '2015-06-05 22:37:59'),
(2366, 492, 494, 1, '2015-06-05 22:37:59'),
(2367, 492, 495, 1, '2015-06-05 22:37:59'),
(2368, 492, 496, 1, '2015-06-05 22:37:59'),
(2369, 492, 497, 1, '2015-06-05 22:37:59'),
(2370, 493, 494, 1, '2015-06-05 22:37:59'),
(2371, 493, 495, 1, '2015-06-05 22:37:59'),
(2372, 493, 496, 1, '2015-06-05 22:37:59'),
(2373, 493, 497, 1, '2015-06-05 22:37:59'),
(2374, 494, 495, 1, '2015-06-05 22:37:59'),
(2375, 494, 496, 1, '2015-06-05 22:37:59'),
(2376, 494, 497, 1, '2015-06-05 22:37:59'),
(2377, 495, 496, 1, '2015-06-05 22:37:59'),
(2378, 495, 497, 1, '2015-06-05 22:37:59'),
(2379, 496, 497, 1, '2015-06-05 22:37:59'),
(2380, 498, 499, 1, '2015-06-05 22:38:21'),
(2381, 498, 500, 1, '2015-06-05 22:38:21'),
(2382, 498, 501, 1, '2015-06-05 22:38:21'),
(2383, 498, 502, 1, '2015-06-05 22:38:21'),
(2384, 498, 503, 1, '2015-06-05 22:38:21'),
(2385, 498, 504, 1, '2015-06-05 22:38:21'),
(2386, 498, 505, 1, '2015-06-05 22:38:21'),
(2387, 498, 506, 1, '2015-06-05 22:38:21'),
(2388, 498, 507, 1, '2015-06-05 22:38:21'),
(2389, 499, 500, 1, '2015-06-05 22:38:21'),
(2390, 499, 501, 1, '2015-06-05 22:38:21'),
(2391, 499, 502, 1, '2015-06-05 22:38:21'),
(2392, 499, 503, 1, '2015-06-05 22:38:21'),
(2393, 499, 504, 1, '2015-06-05 22:38:21'),
(2394, 499, 505, 1, '2015-06-05 22:38:21'),
(2395, 499, 506, 1, '2015-06-05 22:38:21'),
(2396, 499, 507, 1, '2015-06-05 22:38:21'),
(2397, 500, 501, 1, '2015-06-05 22:38:21'),
(2398, 500, 502, 1, '2015-06-05 22:38:21'),
(2399, 500, 503, 1, '2015-06-05 22:38:21'),
(2400, 500, 504, 1, '2015-06-05 22:38:21'),
(2401, 500, 505, 1, '2015-06-05 22:38:21'),
(2402, 500, 506, 1, '2015-06-05 22:38:21'),
(2403, 500, 507, 1, '2015-06-05 22:38:21'),
(2404, 501, 502, 1, '2015-06-05 22:38:21'),
(2405, 501, 503, 1, '2015-06-05 22:38:21'),
(2406, 501, 504, 1, '2015-06-05 22:38:21'),
(2407, 501, 505, 1, '2015-06-05 22:38:21'),
(2408, 501, 506, 1, '2015-06-05 22:38:21'),
(2409, 501, 507, 1, '2015-06-05 22:38:22'),
(2410, 502, 503, 1, '2015-06-05 22:38:22'),
(2411, 502, 504, 1, '2015-06-05 22:38:22'),
(2412, 502, 505, 1, '2015-06-05 22:38:22'),
(2413, 502, 506, 1, '2015-06-05 22:38:22'),
(2414, 502, 507, 1, '2015-06-05 22:38:22'),
(2415, 503, 504, 1, '2015-06-05 22:38:22'),
(2416, 503, 505, 1, '2015-06-05 22:38:22'),
(2417, 503, 506, 1, '2015-06-05 22:38:22'),
(2418, 503, 507, 1, '2015-06-05 22:38:22'),
(2419, 504, 505, 1, '2015-06-05 22:38:22'),
(2420, 504, 506, 1, '2015-06-05 22:38:22'),
(2421, 504, 507, 1, '2015-06-05 22:38:22'),
(2422, 505, 506, 1, '2015-06-05 22:38:22'),
(2423, 505, 507, 1, '2015-06-05 22:38:22'),
(2424, 506, 507, 1, '2015-06-05 22:38:22'),
(2425, 502, 508, 1, '2015-06-05 22:39:12'),
(2426, 502, 509, 1, '2015-06-05 22:39:12'),
(2427, 508, 509, 1, '2015-06-05 22:39:12'),
(2428, 510, 511, 1, '2015-06-05 22:39:50');
INSERT INTO `contexts` (`id`, `x_key`, `y_key`, `weight`, `created`) VALUES
(2429, 510, 512, 1, '2015-06-05 22:39:50'),
(2430, 511, 512, 1, '2015-06-05 22:39:50'),
(2431, 186, 513, 4, '2015-06-05 22:40:20'),
(2432, 186, 514, 4, '2015-06-05 22:40:20'),
(2433, 513, 514, 4, '2015-06-05 22:40:20'),
(2434, 479, 515, 1, '2015-06-05 22:41:24'),
(2435, 479, 516, 1, '2015-06-05 22:41:24'),
(2436, 479, 517, 1, '2015-06-05 22:41:24'),
(2437, 479, 518, 1, '2015-06-05 22:41:24'),
(2438, 481, 515, 1, '2015-06-05 22:41:24'),
(2439, 481, 516, 1, '2015-06-05 22:41:24'),
(2440, 481, 517, 1, '2015-06-05 22:41:24'),
(2441, 481, 518, 1, '2015-06-05 22:41:24'),
(2442, 122, 515, 1, '2015-06-05 22:41:24'),
(2443, 122, 516, 1, '2015-06-05 22:41:24'),
(2444, 122, 517, 1, '2015-06-05 22:41:25'),
(2445, 122, 518, 1, '2015-06-05 22:41:25'),
(2446, 515, 483, 1, '2015-06-05 22:41:25'),
(2447, 515, 484, 1, '2015-06-05 22:41:25'),
(2448, 515, 516, 1, '2015-06-05 22:41:25'),
(2449, 515, 486, 1, '2015-06-05 22:41:25'),
(2450, 515, 517, 1, '2015-06-05 22:41:25'),
(2451, 515, 518, 1, '2015-06-05 22:41:25'),
(2452, 483, 516, 1, '2015-06-05 22:41:25'),
(2453, 483, 517, 1, '2015-06-05 22:41:25'),
(2454, 483, 518, 1, '2015-06-05 22:41:25'),
(2455, 484, 516, 1, '2015-06-05 22:41:25'),
(2456, 484, 517, 1, '2015-06-05 22:41:25'),
(2457, 484, 518, 1, '2015-06-05 22:41:25'),
(2458, 516, 486, 1, '2015-06-05 22:41:25'),
(2459, 516, 517, 1, '2015-06-05 22:41:25'),
(2460, 516, 518, 1, '2015-06-05 22:41:25'),
(2461, 486, 517, 1, '2015-06-05 22:41:25'),
(2462, 486, 518, 1, '2015-06-05 22:41:25'),
(2463, 517, 518, 1, '2015-06-05 22:41:25'),
(2464, 519, 520, 1, '2015-06-05 22:41:38'),
(2465, 519, 521, 1, '2015-06-05 22:41:38'),
(2466, 520, 521, 1, '2015-06-05 22:41:38'),
(2467, 522, 523, 1, '2015-06-05 22:43:00'),
(2468, 522, 524, 1, '2015-06-05 22:43:01'),
(2469, 523, 524, 1, '2015-06-05 22:43:01'),
(2470, 108, 525, 1, '2015-06-05 22:43:32'),
(2471, 108, 526, 1, '2015-06-05 22:43:32'),
(2472, 108, 527, 1, '2015-06-05 22:43:32'),
(2473, 108, 528, 1, '2015-06-05 22:43:32'),
(2474, 108, 529, 1, '2015-06-05 22:43:32'),
(2475, 108, 530, 1, '2015-06-05 22:43:32'),
(2476, 108, 531, 1, '2015-06-05 22:43:32'),
(2477, 111, 525, 1, '2015-06-05 22:43:32'),
(2478, 111, 526, 1, '2015-06-05 22:43:32'),
(2479, 111, 527, 1, '2015-06-05 22:43:32'),
(2480, 111, 528, 1, '2015-06-05 22:43:32'),
(2481, 111, 529, 1, '2015-06-05 22:43:32'),
(2482, 111, 530, 1, '2015-06-05 22:43:32'),
(2483, 111, 531, 1, '2015-06-05 22:43:32'),
(2484, 525, 526, 1, '2015-06-05 22:43:32'),
(2485, 525, 112, 1, '2015-06-05 22:43:33'),
(2486, 525, 527, 1, '2015-06-05 22:43:33'),
(2487, 525, 528, 1, '2015-06-05 22:43:33'),
(2488, 525, 529, 1, '2015-06-05 22:43:33'),
(2489, 525, 530, 1, '2015-06-05 22:43:33'),
(2490, 525, 531, 1, '2015-06-05 22:43:33'),
(2491, 526, 112, 1, '2015-06-05 22:43:33'),
(2492, 526, 527, 1, '2015-06-05 22:43:33'),
(2493, 526, 528, 1, '2015-06-05 22:43:33'),
(2494, 526, 529, 1, '2015-06-05 22:43:33'),
(2495, 526, 530, 1, '2015-06-05 22:43:33'),
(2496, 526, 531, 1, '2015-06-05 22:43:33'),
(2497, 112, 527, 1, '2015-06-05 22:43:33'),
(2498, 112, 528, 1, '2015-06-05 22:43:33'),
(2499, 112, 529, 1, '2015-06-05 22:43:33'),
(2500, 112, 530, 1, '2015-06-05 22:43:33'),
(2501, 112, 531, 1, '2015-06-05 22:43:33'),
(2502, 527, 528, 1, '2015-06-05 22:43:33'),
(2503, 527, 529, 1, '2015-06-05 22:43:33'),
(2504, 527, 530, 1, '2015-06-05 22:43:33'),
(2505, 527, 531, 1, '2015-06-05 22:43:33'),
(2506, 528, 529, 1, '2015-06-05 22:43:33'),
(2507, 528, 530, 1, '2015-06-05 22:43:33'),
(2508, 528, 531, 1, '2015-06-05 22:43:33'),
(2509, 529, 530, 1, '2015-06-05 22:43:33'),
(2510, 529, 531, 1, '2015-06-05 22:43:33'),
(2511, 530, 531, 1, '2015-06-05 22:43:33'),
(2512, 532, 533, 1, '2015-06-07 16:31:51'),
(2513, 532, 534, 1, '2015-06-07 16:31:51'),
(2514, 533, 534, 1, '2015-06-07 16:31:51'),
(2515, 535, 536, 1, '2015-06-07 16:33:31'),
(2516, 535, 537, 1, '2015-06-07 16:33:31'),
(2517, 535, 538, 1, '2015-06-07 16:33:32'),
(2518, 535, 539, 1, '2015-06-07 16:33:32'),
(2519, 535, 540, 1, '2015-06-07 16:33:32'),
(2520, 536, 537, 1, '2015-06-07 16:33:32'),
(2521, 536, 538, 1, '2015-06-07 16:33:32'),
(2522, 536, 539, 1, '2015-06-07 16:33:32'),
(2523, 536, 540, 1, '2015-06-07 16:33:32'),
(2524, 537, 538, 1, '2015-06-07 16:33:32'),
(2525, 537, 539, 1, '2015-06-07 16:33:32'),
(2526, 537, 540, 1, '2015-06-07 16:33:32'),
(2527, 538, 539, 1, '2015-06-07 16:33:32'),
(2528, 538, 540, 1, '2015-06-07 16:33:32'),
(2529, 539, 540, 1, '2015-06-07 16:33:32'),
(2530, 541, 542, 1, '2015-06-07 16:33:55'),
(2531, 541, 543, 1, '2015-06-07 16:33:55'),
(2532, 541, 10, 1, '2015-06-07 16:33:55'),
(2533, 541, 544, 1, '2015-06-07 16:33:55'),
(2534, 541, 545, 1, '2015-06-07 16:33:55'),
(2535, 542, 543, 1, '2015-06-07 16:33:55'),
(2536, 542, 10, 1, '2015-06-07 16:33:55'),
(2537, 542, 544, 1, '2015-06-07 16:33:56'),
(2538, 542, 545, 1, '2015-06-07 16:33:56'),
(2539, 543, 10, 1, '2015-06-07 16:33:56'),
(2540, 543, 544, 1, '2015-06-07 16:33:56'),
(2541, 543, 545, 1, '2015-06-07 16:33:56'),
(2542, 10, 544, 1, '2015-06-07 16:33:56'),
(2543, 10, 545, 1, '2015-06-07 16:33:56'),
(2544, 544, 545, 1, '2015-06-07 16:33:56'),
(2545, 388, 546, 1, '2015-06-07 16:34:07'),
(2546, 388, 547, 1, '2015-06-07 16:34:07'),
(2547, 546, 547, 1, '2015-06-07 16:34:07'),
(2548, 548, 549, 1, '2015-06-07 16:34:52'),
(2549, 548, 550, 1, '2015-06-07 16:34:52'),
(2550, 549, 550, 1, '2015-06-07 16:34:52'),
(2551, 551, 552, 1, '2015-06-09 02:18:28'),
(2552, 551, 553, 1, '2015-06-09 02:18:28'),
(2553, 551, 554, 1, '2015-06-09 02:18:28'),
(2554, 551, 555, 1, '2015-06-09 02:18:28'),
(2555, 551, 556, 1, '2015-06-09 02:18:28'),
(2556, 551, 557, 1, '2015-06-09 02:18:28'),
(2557, 551, 558, 1, '2015-06-09 02:18:28'),
(2558, 551, 559, 1, '2015-06-09 02:18:28'),
(2559, 551, 560, 1, '2015-06-09 02:18:28'),
(2560, 551, 561, 1, '2015-06-09 02:18:28'),
(2561, 551, 562, 1, '2015-06-09 02:18:28'),
(2562, 551, 563, 1, '2015-06-09 02:18:28'),
(2563, 551, 564, 1, '2015-06-09 02:18:28'),
(2564, 551, 565, 1, '2015-06-09 02:18:29'),
(2565, 552, 553, 1, '2015-06-09 02:18:29'),
(2566, 552, 554, 1, '2015-06-09 02:18:29'),
(2567, 552, 555, 1, '2015-06-09 02:18:29'),
(2568, 552, 556, 1, '2015-06-09 02:18:29'),
(2569, 552, 557, 1, '2015-06-09 02:18:29'),
(2570, 552, 558, 1, '2015-06-09 02:18:29'),
(2571, 552, 559, 1, '2015-06-09 02:18:29'),
(2572, 552, 560, 1, '2015-06-09 02:18:29'),
(2573, 552, 561, 1, '2015-06-09 02:18:29'),
(2574, 552, 562, 1, '2015-06-09 02:18:29'),
(2575, 552, 563, 1, '2015-06-09 02:18:29'),
(2576, 552, 564, 1, '2015-06-09 02:18:29'),
(2577, 552, 565, 1, '2015-06-09 02:18:29'),
(2578, 553, 554, 1, '2015-06-09 02:18:29'),
(2579, 553, 555, 1, '2015-06-09 02:18:29'),
(2580, 553, 556, 1, '2015-06-09 02:18:29'),
(2581, 553, 557, 1, '2015-06-09 02:18:29'),
(2582, 553, 558, 1, '2015-06-09 02:18:29'),
(2583, 553, 559, 1, '2015-06-09 02:18:29'),
(2584, 553, 560, 1, '2015-06-09 02:18:29'),
(2585, 553, 561, 1, '2015-06-09 02:18:29'),
(2586, 553, 562, 1, '2015-06-09 02:18:29'),
(2587, 553, 563, 1, '2015-06-09 02:18:29'),
(2588, 553, 564, 1, '2015-06-09 02:18:29'),
(2589, 553, 565, 1, '2015-06-09 02:18:29'),
(2590, 554, 555, 1, '2015-06-09 02:18:30'),
(2591, 554, 556, 1, '2015-06-09 02:18:30'),
(2592, 554, 557, 1, '2015-06-09 02:18:30'),
(2593, 554, 558, 1, '2015-06-09 02:18:30'),
(2594, 554, 559, 1, '2015-06-09 02:18:30'),
(2595, 554, 560, 1, '2015-06-09 02:18:30'),
(2596, 554, 561, 1, '2015-06-09 02:18:30'),
(2597, 554, 562, 1, '2015-06-09 02:18:30'),
(2598, 554, 563, 1, '2015-06-09 02:18:30'),
(2599, 554, 564, 1, '2015-06-09 02:18:30'),
(2600, 554, 565, 1, '2015-06-09 02:18:30'),
(2601, 555, 556, 1, '2015-06-09 02:18:30'),
(2602, 555, 557, 1, '2015-06-09 02:18:30'),
(2603, 555, 558, 1, '2015-06-09 02:18:30'),
(2604, 555, 559, 1, '2015-06-09 02:18:30'),
(2605, 555, 560, 1, '2015-06-09 02:18:30'),
(2606, 555, 561, 1, '2015-06-09 02:18:30'),
(2607, 555, 562, 1, '2015-06-09 02:18:30'),
(2608, 555, 563, 1, '2015-06-09 02:18:30'),
(2609, 555, 564, 1, '2015-06-09 02:18:30'),
(2610, 555, 565, 1, '2015-06-09 02:18:30'),
(2611, 556, 557, 1, '2015-06-09 02:18:30'),
(2612, 556, 558, 1, '2015-06-09 02:18:30'),
(2613, 556, 559, 1, '2015-06-09 02:18:30'),
(2614, 556, 560, 1, '2015-06-09 02:18:30'),
(2615, 556, 561, 1, '2015-06-09 02:18:30'),
(2616, 556, 562, 1, '2015-06-09 02:18:30'),
(2617, 556, 563, 1, '2015-06-09 02:18:30'),
(2618, 556, 564, 1, '2015-06-09 02:18:30'),
(2619, 556, 565, 1, '2015-06-09 02:18:30'),
(2620, 557, 558, 1, '2015-06-09 02:18:30'),
(2621, 557, 559, 1, '2015-06-09 02:18:30'),
(2622, 557, 560, 1, '2015-06-09 02:18:30'),
(2623, 557, 561, 1, '2015-06-09 02:18:30'),
(2624, 557, 562, 1, '2015-06-09 02:18:30'),
(2625, 557, 563, 1, '2015-06-09 02:18:31'),
(2626, 557, 564, 1, '2015-06-09 02:18:31'),
(2627, 557, 565, 1, '2015-06-09 02:18:31'),
(2628, 558, 559, 1, '2015-06-09 02:18:31'),
(2629, 558, 560, 1, '2015-06-09 02:18:31'),
(2630, 558, 561, 1, '2015-06-09 02:18:31'),
(2631, 558, 562, 1, '2015-06-09 02:18:31'),
(2632, 558, 563, 1, '2015-06-09 02:18:31'),
(2633, 558, 564, 1, '2015-06-09 02:18:31'),
(2634, 558, 565, 1, '2015-06-09 02:18:31'),
(2635, 559, 560, 1, '2015-06-09 02:18:31'),
(2636, 559, 561, 1, '2015-06-09 02:18:31'),
(2637, 559, 562, 1, '2015-06-09 02:18:31'),
(2638, 559, 563, 1, '2015-06-09 02:18:31'),
(2639, 559, 564, 1, '2015-06-09 02:18:31'),
(2640, 559, 565, 1, '2015-06-09 02:18:31'),
(2641, 560, 561, 1, '2015-06-09 02:18:31'),
(2642, 560, 562, 1, '2015-06-09 02:18:31'),
(2643, 560, 563, 1, '2015-06-09 02:18:31'),
(2644, 560, 564, 1, '2015-06-09 02:18:31'),
(2645, 560, 565, 1, '2015-06-09 02:18:31'),
(2646, 561, 562, 1, '2015-06-09 02:18:31'),
(2647, 561, 563, 1, '2015-06-09 02:18:31'),
(2648, 561, 564, 1, '2015-06-09 02:18:31'),
(2649, 561, 565, 1, '2015-06-09 02:18:31'),
(2650, 562, 563, 1, '2015-06-09 02:18:31'),
(2651, 562, 564, 1, '2015-06-09 02:18:31'),
(2652, 562, 565, 1, '2015-06-09 02:18:31'),
(2653, 563, 564, 1, '2015-06-09 02:18:31'),
(2654, 563, 565, 1, '2015-06-09 02:18:31'),
(2655, 564, 565, 1, '2015-06-09 02:18:31'),
(2656, 113, 386, 1, '2015-06-09 02:18:48'),
(2657, 113, 566, 1, '2015-06-09 02:18:48'),
(2658, 113, 390, 1, '2015-06-09 02:18:48'),
(2659, 113, 567, 1, '2015-06-09 02:18:48'),
(2660, 113, 568, 1, '2015-06-09 02:18:48'),
(2661, 386, 566, 1, '2015-06-09 02:18:48'),
(2662, 386, 390, 1, '2015-06-09 02:18:49'),
(2663, 386, 567, 1, '2015-06-09 02:18:49'),
(2664, 386, 568, 1, '2015-06-09 02:18:49'),
(2665, 566, 390, 1, '2015-06-09 02:18:49'),
(2666, 566, 567, 1, '2015-06-09 02:18:49'),
(2667, 566, 568, 1, '2015-06-09 02:18:49'),
(2668, 390, 567, 1, '2015-06-09 02:18:49'),
(2669, 390, 568, 1, '2015-06-09 02:18:49'),
(2670, 567, 568, 1, '2015-06-09 02:18:49'),
(2671, 570, 571, 1, '2015-06-10 03:01:22'),
(2672, 570, 572, 1, '2015-06-10 03:01:22'),
(2673, 571, 572, 1, '2015-06-10 03:01:22'),
(2674, 570, 573, 1, '2015-06-10 03:01:29'),
(2675, 570, 574, 1, '2015-06-10 03:01:29'),
(2676, 570, 575, 1, '2015-06-10 03:01:29'),
(2677, 570, 576, 1, '2015-06-10 03:01:29'),
(2678, 570, 577, 1, '2015-06-10 03:01:29'),
(2679, 573, 574, 1, '2015-06-10 03:01:29'),
(2680, 573, 575, 1, '2015-06-10 03:01:29'),
(2681, 573, 576, 1, '2015-06-10 03:01:29'),
(2682, 573, 577, 1, '2015-06-10 03:01:29'),
(2683, 574, 575, 1, '2015-06-10 03:01:29'),
(2684, 574, 576, 1, '2015-06-10 03:01:29'),
(2685, 574, 577, 1, '2015-06-10 03:01:29'),
(2686, 575, 576, 1, '2015-06-10 03:01:29'),
(2687, 575, 577, 1, '2015-06-10 03:01:29'),
(2688, 576, 577, 1, '2015-06-10 03:01:29'),
(2689, 578, 579, 1, '2015-06-10 03:02:20'),
(2690, 578, 580, 1, '2015-06-10 03:02:20'),
(2691, 578, 581, 1, '2015-06-10 03:02:20'),
(2692, 578, 582, 1, '2015-06-10 03:02:20'),
(2693, 578, 583, 1, '2015-06-10 03:02:20'),
(2694, 578, 584, 1, '2015-06-10 03:02:20'),
(2695, 578, 585, 1, '2015-06-10 03:02:20'),
(2696, 578, 586, 1, '2015-06-10 03:02:20'),
(2697, 578, 587, 1, '2015-06-10 03:02:20'),
(2698, 578, 588, 1, '2015-06-10 03:02:20'),
(2699, 578, 589, 1, '2015-06-10 03:02:20'),
(2700, 578, 590, 1, '2015-06-10 03:02:20'),
(2701, 578, 591, 1, '2015-06-10 03:02:20'),
(2702, 578, 592, 1, '2015-06-10 03:02:20'),
(2703, 579, 580, 1, '2015-06-10 03:02:20'),
(2704, 579, 581, 1, '2015-06-10 03:02:20'),
(2705, 579, 582, 1, '2015-06-10 03:02:20'),
(2706, 579, 583, 1, '2015-06-10 03:02:20'),
(2707, 579, 584, 1, '2015-06-10 03:02:20'),
(2708, 579, 585, 1, '2015-06-10 03:02:20'),
(2709, 579, 586, 1, '2015-06-10 03:02:20'),
(2710, 579, 587, 1, '2015-06-10 03:02:20'),
(2711, 579, 588, 1, '2015-06-10 03:02:20'),
(2712, 579, 589, 1, '2015-06-10 03:02:20'),
(2713, 579, 590, 1, '2015-06-10 03:02:20'),
(2714, 579, 591, 1, '2015-06-10 03:02:20'),
(2715, 579, 592, 1, '2015-06-10 03:02:20'),
(2716, 580, 581, 1, '2015-06-10 03:02:21'),
(2717, 580, 582, 1, '2015-06-10 03:02:21'),
(2718, 580, 583, 1, '2015-06-10 03:02:21'),
(2719, 580, 584, 1, '2015-06-10 03:02:21'),
(2720, 580, 585, 1, '2015-06-10 03:02:21'),
(2721, 580, 586, 1, '2015-06-10 03:02:21'),
(2722, 580, 587, 1, '2015-06-10 03:02:21'),
(2723, 580, 588, 1, '2015-06-10 03:02:21'),
(2724, 580, 589, 1, '2015-06-10 03:02:21'),
(2725, 580, 590, 1, '2015-06-10 03:02:21'),
(2726, 580, 591, 1, '2015-06-10 03:02:21'),
(2727, 580, 592, 1, '2015-06-10 03:02:21'),
(2728, 581, 582, 1, '2015-06-10 03:02:21'),
(2729, 581, 583, 1, '2015-06-10 03:02:21'),
(2730, 581, 584, 1, '2015-06-10 03:02:21'),
(2731, 581, 585, 1, '2015-06-10 03:02:21'),
(2732, 581, 586, 1, '2015-06-10 03:02:21'),
(2733, 581, 587, 1, '2015-06-10 03:02:21'),
(2734, 581, 588, 1, '2015-06-10 03:02:21'),
(2735, 581, 589, 1, '2015-06-10 03:02:21'),
(2736, 581, 590, 1, '2015-06-10 03:02:21'),
(2737, 581, 591, 1, '2015-06-10 03:02:21'),
(2738, 581, 592, 1, '2015-06-10 03:02:21'),
(2739, 582, 583, 1, '2015-06-10 03:02:21'),
(2740, 582, 584, 1, '2015-06-10 03:02:21'),
(2741, 582, 585, 1, '2015-06-10 03:02:21'),
(2742, 582, 586, 1, '2015-06-10 03:02:21'),
(2743, 582, 587, 1, '2015-06-10 03:02:22'),
(2744, 582, 588, 1, '2015-06-10 03:02:22'),
(2745, 582, 589, 1, '2015-06-10 03:02:22'),
(2746, 582, 590, 1, '2015-06-10 03:02:22'),
(2747, 582, 591, 1, '2015-06-10 03:02:22'),
(2748, 582, 592, 1, '2015-06-10 03:02:22'),
(2749, 583, 584, 1, '2015-06-10 03:02:22'),
(2750, 583, 585, 1, '2015-06-10 03:02:22'),
(2751, 583, 586, 1, '2015-06-10 03:02:22'),
(2752, 583, 587, 1, '2015-06-10 03:02:22'),
(2753, 583, 588, 1, '2015-06-10 03:02:22'),
(2754, 583, 589, 1, '2015-06-10 03:02:22'),
(2755, 583, 590, 1, '2015-06-10 03:02:22'),
(2756, 583, 591, 1, '2015-06-10 03:02:22'),
(2757, 583, 592, 1, '2015-06-10 03:02:22'),
(2758, 584, 585, 1, '2015-06-10 03:02:22'),
(2759, 584, 586, 1, '2015-06-10 03:02:22'),
(2760, 584, 587, 1, '2015-06-10 03:02:22'),
(2761, 584, 588, 1, '2015-06-10 03:02:22'),
(2762, 584, 589, 1, '2015-06-10 03:02:22'),
(2763, 584, 590, 1, '2015-06-10 03:02:22'),
(2764, 584, 591, 1, '2015-06-10 03:02:22'),
(2765, 584, 592, 1, '2015-06-10 03:02:22'),
(2766, 585, 586, 1, '2015-06-10 03:02:22'),
(2767, 585, 587, 1, '2015-06-10 03:02:22'),
(2768, 585, 588, 1, '2015-06-10 03:02:22'),
(2769, 585, 589, 1, '2015-06-10 03:02:22'),
(2770, 585, 590, 1, '2015-06-10 03:02:22'),
(2771, 585, 591, 1, '2015-06-10 03:02:22'),
(2772, 585, 592, 1, '2015-06-10 03:02:23'),
(2773, 586, 587, 1, '2015-06-10 03:02:23'),
(2774, 586, 588, 1, '2015-06-10 03:02:23'),
(2775, 586, 589, 1, '2015-06-10 03:02:23'),
(2776, 586, 590, 1, '2015-06-10 03:02:23'),
(2777, 586, 591, 1, '2015-06-10 03:02:23'),
(2778, 586, 592, 1, '2015-06-10 03:02:23'),
(2779, 587, 588, 1, '2015-06-10 03:02:23'),
(2780, 587, 589, 1, '2015-06-10 03:02:23'),
(2781, 587, 590, 1, '2015-06-10 03:02:23'),
(2782, 587, 591, 1, '2015-06-10 03:02:23'),
(2783, 587, 592, 1, '2015-06-10 03:02:23'),
(2784, 588, 589, 1, '2015-06-10 03:02:23'),
(2785, 588, 590, 1, '2015-06-10 03:02:23'),
(2786, 588, 591, 1, '2015-06-10 03:02:23'),
(2787, 588, 592, 1, '2015-06-10 03:02:23'),
(2788, 589, 590, 1, '2015-06-10 03:02:23'),
(2789, 589, 591, 1, '2015-06-10 03:02:23'),
(2790, 589, 592, 1, '2015-06-10 03:02:23'),
(2791, 590, 591, 1, '2015-06-10 03:02:23'),
(2792, 590, 592, 1, '2015-06-10 03:02:23'),
(2793, 591, 592, 1, '2015-06-10 03:02:23'),
(2794, 594, 595, 1, '2015-06-10 03:03:02'),
(2795, 594, 596, 1, '2015-06-10 03:03:02'),
(2796, 594, 597, 1, '2015-06-10 03:03:02'),
(2797, 594, 598, 1, '2015-06-10 03:03:02'),
(2798, 594, 599, 1, '2015-06-10 03:03:02'),
(2799, 595, 596, 1, '2015-06-10 03:03:02'),
(2800, 595, 597, 1, '2015-06-10 03:03:02'),
(2801, 595, 598, 1, '2015-06-10 03:03:02'),
(2802, 595, 599, 1, '2015-06-10 03:03:02'),
(2803, 596, 597, 1, '2015-06-10 03:03:02'),
(2804, 596, 598, 1, '2015-06-10 03:03:02'),
(2805, 596, 599, 1, '2015-06-10 03:03:02'),
(2806, 597, 598, 1, '2015-06-10 03:03:02'),
(2807, 597, 599, 1, '2015-06-10 03:03:02'),
(2808, 598, 599, 1, '2015-06-10 03:03:02'),
(2809, 600, 601, 1, '2015-06-10 03:03:24'),
(2810, 600, 602, 1, '2015-06-10 03:03:24'),
(2811, 600, 603, 1, '2015-06-10 03:03:24'),
(2812, 600, 604, 1, '2015-06-10 03:03:24'),
(2813, 600, 605, 1, '2015-06-10 03:03:24'),
(2814, 601, 602, 1, '2015-06-10 03:03:24'),
(2815, 601, 603, 1, '2015-06-10 03:03:24'),
(2816, 601, 604, 1, '2015-06-10 03:03:24'),
(2817, 601, 605, 1, '2015-06-10 03:03:24'),
(2818, 602, 603, 1, '2015-06-10 03:03:24'),
(2819, 602, 604, 1, '2015-06-10 03:03:24'),
(2820, 602, 605, 1, '2015-06-10 03:03:24'),
(2821, 603, 604, 1, '2015-06-10 03:03:24'),
(2822, 603, 605, 1, '2015-06-10 03:03:24'),
(2823, 604, 605, 1, '2015-06-10 03:03:24'),
(2824, 606, 607, 1, '2015-06-10 03:03:46'),
(2825, 606, 608, 1, '2015-06-10 03:03:46'),
(2826, 607, 608, 1, '2015-06-10 03:03:46'),
(2827, 609, 610, 1, '2015-06-10 03:05:19'),
(2828, 609, 611, 1, '2015-06-10 03:05:19'),
(2829, 610, 611, 1, '2015-06-10 03:05:19'),
(2830, 613, 614, 1, '2015-06-11 04:51:19'),
(2831, 613, 615, 2, '2015-06-11 04:51:19'),
(2832, 613, 616, 1, '2015-06-11 04:51:19'),
(2833, 613, 617, 2, '2015-06-11 04:51:19'),
(2834, 613, 618, 1, '2015-06-11 04:51:19'),
(2835, 614, 615, 1, '2015-06-11 04:51:19'),
(2836, 614, 616, 1, '2015-06-11 04:51:19'),
(2837, 614, 617, 1, '2015-06-11 04:51:19'),
(2838, 614, 618, 1, '2015-06-11 04:51:19'),
(2839, 615, 616, 1, '2015-06-11 04:51:19'),
(2840, 615, 617, 2, '2015-06-11 04:51:20'),
(2841, 615, 618, 1, '2015-06-11 04:51:20'),
(2842, 616, 617, 1, '2015-06-11 04:51:20'),
(2843, 616, 618, 1, '2015-06-11 04:51:20'),
(2844, 617, 618, 1, '2015-06-11 04:51:20'),
(2845, 613, 619, 1, '2015-06-11 04:51:27'),
(2846, 613, 620, 1, '2015-06-11 04:51:27'),
(2847, 613, 621, 1, '2015-06-11 04:51:27'),
(2848, 619, 615, 1, '2015-06-11 04:51:27'),
(2849, 619, 620, 1, '2015-06-11 04:51:27'),
(2850, 619, 617, 1, '2015-06-11 04:51:27'),
(2851, 619, 621, 1, '2015-06-11 04:51:27'),
(2852, 615, 620, 1, '2015-06-11 04:51:27'),
(2853, 615, 621, 1, '2015-06-11 04:51:27'),
(2854, 620, 617, 1, '2015-06-11 04:51:27'),
(2855, 620, 621, 1, '2015-06-11 04:51:27'),
(2856, 617, 621, 1, '2015-06-11 04:51:27'),
(2857, 622, 623, 1, '2015-06-11 04:52:00'),
(2858, 622, 624, 1, '2015-06-11 04:52:01'),
(2859, 622, 625, 1, '2015-06-11 04:52:01'),
(2860, 622, 626, 1, '2015-06-11 04:52:01'),
(2861, 622, 627, 1, '2015-06-11 04:52:01'),
(2862, 622, 628, 1, '2015-06-11 04:52:01'),
(2863, 622, 629, 1, '2015-06-11 04:52:01'),
(2864, 622, 630, 1, '2015-06-11 04:52:01'),
(2865, 622, 631, 1, '2015-06-11 04:52:01'),
(2866, 623, 624, 1, '2015-06-11 04:52:01'),
(2867, 623, 625, 1, '2015-06-11 04:52:01'),
(2868, 623, 626, 1, '2015-06-11 04:52:01'),
(2869, 623, 627, 1, '2015-06-11 04:52:01'),
(2870, 623, 628, 1, '2015-06-11 04:52:01'),
(2871, 623, 629, 1, '2015-06-11 04:52:01'),
(2872, 623, 630, 1, '2015-06-11 04:52:01'),
(2873, 623, 631, 1, '2015-06-11 04:52:01'),
(2874, 624, 625, 1, '2015-06-11 04:52:01'),
(2875, 624, 626, 1, '2015-06-11 04:52:01'),
(2876, 624, 627, 1, '2015-06-11 04:52:01'),
(2877, 624, 628, 1, '2015-06-11 04:52:01'),
(2878, 624, 629, 1, '2015-06-11 04:52:01'),
(2879, 624, 630, 1, '2015-06-11 04:52:01'),
(2880, 624, 631, 1, '2015-06-11 04:52:01'),
(2881, 625, 626, 1, '2015-06-11 04:52:01'),
(2882, 625, 627, 1, '2015-06-11 04:52:01'),
(2883, 625, 628, 1, '2015-06-11 04:52:01'),
(2884, 625, 629, 1, '2015-06-11 04:52:01'),
(2885, 625, 630, 1, '2015-06-11 04:52:01'),
(2886, 625, 631, 1, '2015-06-11 04:52:01'),
(2887, 626, 627, 1, '2015-06-11 04:52:01'),
(2888, 626, 628, 1, '2015-06-11 04:52:01'),
(2889, 626, 629, 1, '2015-06-11 04:52:01'),
(2890, 626, 630, 1, '2015-06-11 04:52:01'),
(2891, 626, 631, 1, '2015-06-11 04:52:02'),
(2892, 627, 628, 1, '2015-06-11 04:52:02'),
(2893, 627, 629, 1, '2015-06-11 04:52:02'),
(2894, 627, 630, 1, '2015-06-11 04:52:02'),
(2895, 627, 631, 1, '2015-06-11 04:52:02'),
(2896, 628, 629, 1, '2015-06-11 04:52:02'),
(2897, 628, 630, 1, '2015-06-11 04:52:02'),
(2898, 628, 631, 1, '2015-06-11 04:52:02'),
(2899, 629, 630, 1, '2015-06-11 04:52:02'),
(2900, 629, 631, 1, '2015-06-11 04:52:02'),
(2901, 630, 631, 1, '2015-06-11 04:52:02'),
(2902, 632, 633, 1, '2015-06-11 04:54:12'),
(2903, 632, 634, 1, '2015-06-11 04:54:12'),
(2904, 633, 634, 1, '2015-06-11 04:54:12'),
(2905, 635, 636, 1, '2015-06-11 04:54:33'),
(2906, 635, 637, 1, '2015-06-11 04:54:33'),
(2907, 635, 594, 1, '2015-06-11 04:54:33'),
(2908, 635, 638, 1, '2015-06-11 04:54:33'),
(2909, 635, 639, 1, '2015-06-11 04:54:33'),
(2910, 636, 637, 1, '2015-06-11 04:54:33'),
(2911, 636, 594, 1, '2015-06-11 04:54:33'),
(2912, 636, 638, 1, '2015-06-11 04:54:33'),
(2913, 636, 639, 1, '2015-06-11 04:54:33'),
(2914, 637, 594, 1, '2015-06-11 04:54:33'),
(2915, 637, 638, 1, '2015-06-11 04:54:33'),
(2916, 637, 639, 1, '2015-06-11 04:54:33'),
(2917, 594, 638, 1, '2015-06-11 04:54:33'),
(2918, 594, 639, 1, '2015-06-11 04:54:33'),
(2919, 638, 639, 1, '2015-06-11 04:54:33'),
(2920, 606, 640, 1, '2015-06-11 04:55:22'),
(2921, 606, 641, 1, '2015-06-11 04:55:22'),
(2922, 606, 642, 1, '2015-06-11 04:55:22'),
(2923, 606, 643, 1, '2015-06-11 04:55:22'),
(2924, 606, 644, 1, '2015-06-11 04:55:22'),
(2925, 640, 641, 1, '2015-06-11 04:55:22'),
(2926, 640, 642, 1, '2015-06-11 04:55:22'),
(2927, 640, 643, 1, '2015-06-11 04:55:22'),
(2928, 640, 644, 1, '2015-06-11 04:55:22'),
(2929, 641, 642, 1, '2015-06-11 04:55:22'),
(2930, 641, 643, 1, '2015-06-11 04:55:22'),
(2931, 641, 644, 1, '2015-06-11 04:55:22'),
(2932, 642, 643, 1, '2015-06-11 04:55:22'),
(2933, 642, 644, 1, '2015-06-11 04:55:22'),
(2934, 643, 644, 1, '2015-06-11 04:55:22'),
(2935, 645, 646, 1, '2015-06-11 04:55:31'),
(2936, 645, 606, 1, '2015-06-11 04:55:31'),
(2937, 646, 606, 1, '2015-06-11 04:55:31'),
(2938, 606, 647, 2, '2015-06-11 05:05:32'),
(2939, 606, 648, 2, '2015-06-11 05:05:32'),
(2940, 647, 648, 2, '2015-06-11 05:05:32'),
(2941, 606, 649, 1, '2015-06-11 05:05:49'),
(2942, 606, 650, 1, '2015-06-11 05:05:49'),
(2943, 606, 651, 1, '2015-06-11 05:05:49'),
(2944, 649, 647, 1, '2015-06-11 05:05:49'),
(2945, 649, 650, 1, '2015-06-11 05:05:49'),
(2946, 649, 648, 1, '2015-06-11 05:05:49'),
(2947, 649, 651, 1, '2015-06-11 05:05:49'),
(2948, 647, 650, 1, '2015-06-11 05:05:49'),
(2949, 647, 651, 1, '2015-06-11 05:05:49'),
(2950, 650, 648, 1, '2015-06-11 05:05:49'),
(2951, 650, 651, 1, '2015-06-11 05:05:49'),
(2952, 648, 651, 1, '2015-06-11 05:05:49'),
(2953, 578, 652, 1, '2015-06-11 05:06:22'),
(2954, 578, 653, 1, '2015-06-11 05:06:22'),
(2955, 578, 654, 1, '2015-06-11 05:06:22'),
(2956, 578, 655, 1, '2015-06-11 05:06:22'),
(2957, 578, 656, 1, '2015-06-11 05:06:22'),
(2958, 578, 657, 1, '2015-06-11 05:06:22'),
(2959, 578, 658, 1, '2015-06-11 05:06:22'),
(2960, 578, 659, 1, '2015-06-11 05:06:22'),
(2961, 578, 660, 1, '2015-06-11 05:06:22'),
(2962, 652, 653, 1, '2015-06-11 05:06:23'),
(2963, 652, 654, 1, '2015-06-11 05:06:23'),
(2964, 652, 655, 1, '2015-06-11 05:06:23'),
(2965, 652, 656, 1, '2015-06-11 05:06:23'),
(2966, 652, 657, 1, '2015-06-11 05:06:23'),
(2967, 652, 658, 1, '2015-06-11 05:06:23'),
(2968, 652, 659, 1, '2015-06-11 05:06:23'),
(2969, 652, 660, 1, '2015-06-11 05:06:23'),
(2970, 653, 654, 1, '2015-06-11 05:06:23'),
(2971, 653, 655, 1, '2015-06-11 05:06:23'),
(2972, 653, 656, 1, '2015-06-11 05:06:23'),
(2973, 653, 657, 1, '2015-06-11 05:06:23'),
(2974, 653, 658, 1, '2015-06-11 05:06:23'),
(2975, 653, 659, 1, '2015-06-11 05:06:23'),
(2976, 653, 660, 1, '2015-06-11 05:06:23'),
(2977, 654, 655, 1, '2015-06-11 05:06:23'),
(2978, 654, 656, 1, '2015-06-11 05:06:23'),
(2979, 654, 657, 1, '2015-06-11 05:06:23'),
(2980, 654, 658, 1, '2015-06-11 05:06:23'),
(2981, 654, 659, 1, '2015-06-11 05:06:23'),
(2982, 654, 660, 1, '2015-06-11 05:06:23'),
(2983, 655, 656, 1, '2015-06-11 05:06:23'),
(2984, 655, 657, 1, '2015-06-11 05:06:23'),
(2985, 655, 658, 1, '2015-06-11 05:06:23'),
(2986, 655, 659, 1, '2015-06-11 05:06:23'),
(2987, 655, 660, 1, '2015-06-11 05:06:23'),
(2988, 656, 657, 1, '2015-06-11 05:06:23'),
(2989, 656, 658, 1, '2015-06-11 05:06:23'),
(2990, 656, 659, 1, '2015-06-11 05:06:23'),
(2991, 656, 660, 1, '2015-06-11 05:06:23'),
(2992, 657, 658, 1, '2015-06-11 05:06:23'),
(2993, 657, 659, 1, '2015-06-11 05:06:23'),
(2994, 657, 660, 1, '2015-06-11 05:06:24'),
(2995, 658, 659, 1, '2015-06-11 05:06:24'),
(2996, 658, 660, 1, '2015-06-11 05:06:24'),
(2997, 659, 660, 1, '2015-06-11 05:06:24'),
(2998, 662, 663, 1, '2015-06-11 05:19:04'),
(2999, 662, 664, 1, '2015-06-11 05:19:04'),
(3000, 662, 665, 1, '2015-06-11 05:19:04'),
(3001, 662, 666, 1, '2015-06-11 05:19:04'),
(3002, 662, 667, 1, '2015-06-11 05:19:04'),
(3003, 662, 668, 1, '2015-06-11 05:19:04'),
(3004, 662, 669, 1, '2015-06-11 05:19:04'),
(3005, 662, 670, 1, '2015-06-11 05:19:04'),
(3006, 662, 671, 1, '2015-06-11 05:19:04'),
(3007, 663, 664, 1, '2015-06-11 05:19:04'),
(3008, 663, 665, 1, '2015-06-11 05:19:04'),
(3009, 663, 666, 1, '2015-06-11 05:19:04'),
(3010, 663, 667, 1, '2015-06-11 05:19:04'),
(3011, 663, 668, 1, '2015-06-11 05:19:04'),
(3012, 663, 669, 1, '2015-06-11 05:19:04'),
(3013, 663, 670, 1, '2015-06-11 05:19:04'),
(3014, 663, 671, 1, '2015-06-11 05:19:04'),
(3015, 664, 665, 1, '2015-06-11 05:19:04'),
(3016, 664, 666, 1, '2015-06-11 05:19:04'),
(3017, 664, 667, 1, '2015-06-11 05:19:04'),
(3018, 664, 668, 1, '2015-06-11 05:19:05'),
(3019, 664, 669, 1, '2015-06-11 05:19:05'),
(3020, 664, 670, 1, '2015-06-11 05:19:05'),
(3021, 664, 671, 1, '2015-06-11 05:19:05'),
(3022, 665, 666, 1, '2015-06-11 05:19:05'),
(3023, 665, 667, 1, '2015-06-11 05:19:05'),
(3024, 665, 668, 1, '2015-06-11 05:19:05'),
(3025, 665, 669, 1, '2015-06-11 05:19:05'),
(3026, 665, 670, 1, '2015-06-11 05:19:05'),
(3027, 665, 671, 1, '2015-06-11 05:19:05'),
(3028, 666, 667, 1, '2015-06-11 05:19:05'),
(3029, 666, 668, 1, '2015-06-11 05:19:05'),
(3030, 666, 669, 1, '2015-06-11 05:19:05'),
(3031, 666, 670, 1, '2015-06-11 05:19:05'),
(3032, 666, 671, 1, '2015-06-11 05:19:05'),
(3033, 667, 668, 1, '2015-06-11 05:19:05'),
(3034, 667, 669, 1, '2015-06-11 05:19:05'),
(3035, 667, 670, 1, '2015-06-11 05:19:05'),
(3036, 667, 671, 1, '2015-06-11 05:19:05'),
(3037, 668, 669, 1, '2015-06-11 05:19:05'),
(3038, 668, 670, 1, '2015-06-11 05:19:05'),
(3039, 668, 671, 1, '2015-06-11 05:19:05'),
(3040, 669, 670, 1, '2015-06-11 05:19:05'),
(3041, 669, 671, 1, '2015-06-11 05:19:05'),
(3042, 670, 671, 1, '2015-06-11 05:19:06'),
(3043, 662, 672, 1, '2015-06-11 05:19:27'),
(3044, 662, 673, 1, '2015-06-11 05:19:27'),
(3045, 672, 673, 1, '2015-06-11 05:19:27'),
(3046, 662, 674, 1, '2015-06-11 05:19:33'),
(3047, 662, 675, 1, '2015-06-11 05:19:33'),
(3048, 674, 675, 1, '2015-06-11 05:19:33'),
(3049, 676, 677, 1, '2015-06-11 05:20:05'),
(3050, 676, 678, 1, '2015-06-11 05:20:05'),
(3051, 676, 679, 1, '2015-06-11 05:20:05'),
(3052, 676, 680, 1, '2015-06-11 05:20:05'),
(3053, 676, 681, 1, '2015-06-11 05:20:05'),
(3054, 677, 678, 1, '2015-06-11 05:20:05'),
(3055, 677, 679, 1, '2015-06-11 05:20:05'),
(3056, 677, 680, 1, '2015-06-11 05:20:05'),
(3057, 677, 681, 1, '2015-06-11 05:20:05'),
(3058, 678, 679, 1, '2015-06-11 05:20:06'),
(3059, 678, 680, 1, '2015-06-11 05:20:06'),
(3060, 678, 681, 1, '2015-06-11 05:20:06'),
(3061, 679, 680, 1, '2015-06-11 05:20:06'),
(3062, 679, 681, 1, '2015-06-11 05:20:06'),
(3063, 680, 681, 1, '2015-06-11 05:20:06'),
(3064, 682, 683, 1, '2015-06-11 05:21:44'),
(3065, 682, 684, 1, '2015-06-11 05:21:45'),
(3066, 683, 684, 1, '2015-06-11 05:21:45'),
(3067, 685, 686, 1, '2015-06-11 05:22:00'),
(3068, 685, 687, 1, '2015-06-11 05:22:00'),
(3069, 686, 687, 1, '2015-06-11 05:22:00'),
(3070, 688, 689, 2, '2015-06-11 05:22:07'),
(3071, 688, 690, 2, '2015-06-11 05:22:07'),
(3072, 689, 690, 2, '2015-06-11 05:22:07'),
(3073, 685, 691, 1, '2015-06-11 05:22:24'),
(3074, 685, 692, 1, '2015-06-11 05:22:24'),
(3075, 691, 692, 1, '2015-06-11 05:22:24'),
(3076, 693, 694, 1, '2015-06-11 05:28:34'),
(3077, 693, 695, 1, '2015-06-11 05:28:34'),
(3078, 694, 695, 1, '2015-06-11 05:28:34'),
(3079, 696, 697, 1, '2015-06-11 05:28:48'),
(3080, 696, 698, 1, '2015-06-11 05:28:48'),
(3081, 696, 699, 1, '2015-06-11 05:28:48'),
(3082, 696, 700, 1, '2015-06-11 05:28:48'),
(3083, 696, 701, 1, '2015-06-11 05:28:48'),
(3084, 697, 698, 1, '2015-06-11 05:28:48'),
(3085, 697, 699, 1, '2015-06-11 05:28:48'),
(3086, 697, 700, 1, '2015-06-11 05:28:48'),
(3087, 697, 701, 1, '2015-06-11 05:28:48'),
(3088, 698, 699, 1, '2015-06-11 05:28:48'),
(3089, 698, 700, 1, '2015-06-11 05:28:48'),
(3090, 698, 701, 1, '2015-06-11 05:28:48'),
(3091, 699, 700, 1, '2015-06-11 05:28:48'),
(3092, 699, 701, 1, '2015-06-11 05:28:48'),
(3093, 700, 701, 1, '2015-06-11 05:28:48'),
(3094, 702, 703, 1, '2015-06-11 05:28:57'),
(3095, 702, 704, 1, '2015-06-11 05:28:57'),
(3096, 702, 705, 1, '2015-06-11 05:28:57'),
(3097, 702, 706, 1, '2015-06-11 05:28:57'),
(3098, 702, 707, 1, '2015-06-11 05:28:57'),
(3099, 703, 704, 1, '2015-06-11 05:28:57'),
(3100, 703, 705, 1, '2015-06-11 05:28:57'),
(3101, 703, 706, 1, '2015-06-11 05:28:57'),
(3102, 703, 707, 1, '2015-06-11 05:28:57'),
(3103, 704, 705, 1, '2015-06-11 05:28:57'),
(3104, 704, 706, 1, '2015-06-11 05:28:58'),
(3105, 704, 707, 1, '2015-06-11 05:28:58'),
(3106, 705, 706, 1, '2015-06-11 05:28:58'),
(3107, 705, 707, 1, '2015-06-11 05:28:58'),
(3108, 706, 707, 1, '2015-06-11 05:28:58'),
(3109, 708, 709, 1, '2015-06-12 00:50:15'),
(3110, 708, 710, 1, '2015-06-12 00:50:15'),
(3111, 708, 711, 1, '2015-06-12 00:50:15'),
(3112, 708, 712, 1, '2015-06-12 00:50:15'),
(3113, 708, 713, 1, '2015-06-12 00:50:15'),
(3114, 708, 714, 1, '2015-06-12 00:50:15'),
(3115, 708, 715, 1, '2015-06-12 00:50:15'),
(3116, 708, 716, 1, '2015-06-12 00:50:15'),
(3117, 708, 717, 1, '2015-06-12 00:50:15'),
(3118, 708, 718, 1, '2015-06-12 00:50:15'),
(3119, 708, 719, 1, '2015-06-12 00:50:15'),
(3120, 708, 720, 1, '2015-06-12 00:50:15'),
(3121, 708, 721, 1, '2015-06-12 00:50:15'),
(3122, 708, 722, 1, '2015-06-12 00:50:15'),
(3123, 708, 723, 1, '2015-06-12 00:50:15'),
(3124, 708, 724, 1, '2015-06-12 00:50:15'),
(3125, 708, 725, 1, '2015-06-12 00:50:15'),
(3126, 708, 726, 1, '2015-06-12 00:50:15'),
(3127, 708, 727, 1, '2015-06-12 00:50:15'),
(3128, 708, 728, 1, '2015-06-12 00:50:16'),
(3129, 709, 710, 1, '2015-06-12 00:50:16'),
(3130, 709, 711, 1, '2015-06-12 00:50:16'),
(3131, 709, 712, 1, '2015-06-12 00:50:16'),
(3132, 709, 713, 1, '2015-06-12 00:50:16'),
(3133, 709, 714, 1, '2015-06-12 00:50:16'),
(3134, 709, 715, 1, '2015-06-12 00:50:16'),
(3135, 709, 716, 1, '2015-06-12 00:50:16'),
(3136, 709, 717, 1, '2015-06-12 00:50:16'),
(3137, 709, 718, 1, '2015-06-12 00:50:16'),
(3138, 709, 719, 1, '2015-06-12 00:50:16'),
(3139, 709, 720, 1, '2015-06-12 00:50:16'),
(3140, 709, 721, 1, '2015-06-12 00:50:16'),
(3141, 709, 722, 1, '2015-06-12 00:50:16'),
(3142, 709, 723, 1, '2015-06-12 00:50:16'),
(3143, 709, 724, 1, '2015-06-12 00:50:16'),
(3144, 709, 725, 1, '2015-06-12 00:50:16'),
(3145, 709, 726, 1, '2015-06-12 00:50:16'),
(3146, 709, 727, 1, '2015-06-12 00:50:16'),
(3147, 709, 728, 1, '2015-06-12 00:50:16'),
(3148, 710, 711, 1, '2015-06-12 00:50:16'),
(3149, 710, 712, 1, '2015-06-12 00:50:16'),
(3150, 710, 713, 1, '2015-06-12 00:50:16'),
(3151, 710, 714, 1, '2015-06-12 00:50:16'),
(3152, 710, 715, 1, '2015-06-12 00:50:16'),
(3153, 710, 716, 1, '2015-06-12 00:50:16'),
(3154, 710, 717, 1, '2015-06-12 00:50:16'),
(3155, 710, 718, 1, '2015-06-12 00:50:16'),
(3156, 710, 719, 1, '2015-06-12 00:50:16'),
(3157, 710, 720, 1, '2015-06-12 00:50:17'),
(3158, 710, 721, 1, '2015-06-12 00:50:17'),
(3159, 710, 722, 1, '2015-06-12 00:50:17'),
(3160, 710, 723, 1, '2015-06-12 00:50:17'),
(3161, 710, 724, 1, '2015-06-12 00:50:17'),
(3162, 710, 725, 1, '2015-06-12 00:50:17'),
(3163, 710, 726, 1, '2015-06-12 00:50:17'),
(3164, 710, 727, 1, '2015-06-12 00:50:17'),
(3165, 710, 728, 1, '2015-06-12 00:50:17'),
(3166, 711, 712, 1, '2015-06-12 00:50:17'),
(3167, 711, 713, 1, '2015-06-12 00:50:17'),
(3168, 711, 714, 1, '2015-06-12 00:50:17'),
(3169, 711, 715, 1, '2015-06-12 00:50:17'),
(3170, 711, 716, 1, '2015-06-12 00:50:17'),
(3171, 711, 717, 1, '2015-06-12 00:50:17'),
(3172, 711, 718, 1, '2015-06-12 00:50:17'),
(3173, 711, 719, 1, '2015-06-12 00:50:17'),
(3174, 711, 720, 1, '2015-06-12 00:50:17'),
(3175, 711, 721, 1, '2015-06-12 00:50:17'),
(3176, 711, 722, 1, '2015-06-12 00:50:17'),
(3177, 711, 723, 1, '2015-06-12 00:50:17'),
(3178, 711, 724, 1, '2015-06-12 00:50:17'),
(3179, 711, 725, 1, '2015-06-12 00:50:17'),
(3180, 711, 726, 1, '2015-06-12 00:50:17'),
(3181, 711, 727, 1, '2015-06-12 00:50:17'),
(3182, 711, 728, 1, '2015-06-12 00:50:17'),
(3183, 712, 713, 1, '2015-06-12 00:50:17'),
(3184, 712, 714, 1, '2015-06-12 00:50:17'),
(3185, 712, 715, 1, '2015-06-12 00:50:17'),
(3186, 712, 716, 1, '2015-06-12 00:50:17'),
(3187, 712, 717, 1, '2015-06-12 00:50:17'),
(3188, 712, 718, 1, '2015-06-12 00:50:18'),
(3189, 712, 719, 1, '2015-06-12 00:50:18'),
(3190, 712, 720, 1, '2015-06-12 00:50:18'),
(3191, 712, 721, 1, '2015-06-12 00:50:18'),
(3192, 712, 722, 1, '2015-06-12 00:50:18'),
(3193, 712, 723, 1, '2015-06-12 00:50:18'),
(3194, 712, 724, 1, '2015-06-12 00:50:18'),
(3195, 712, 725, 1, '2015-06-12 00:50:18'),
(3196, 712, 726, 1, '2015-06-12 00:50:18'),
(3197, 712, 727, 1, '2015-06-12 00:50:18'),
(3198, 712, 728, 1, '2015-06-12 00:50:18'),
(3199, 713, 714, 1, '2015-06-12 00:50:18'),
(3200, 713, 715, 1, '2015-06-12 00:50:18'),
(3201, 713, 716, 1, '2015-06-12 00:50:18'),
(3202, 713, 717, 1, '2015-06-12 00:50:18'),
(3203, 713, 718, 1, '2015-06-12 00:50:18'),
(3204, 713, 719, 1, '2015-06-12 00:50:18'),
(3205, 713, 720, 1, '2015-06-12 00:50:18'),
(3206, 713, 721, 1, '2015-06-12 00:50:18'),
(3207, 713, 722, 1, '2015-06-12 00:50:18'),
(3208, 713, 723, 1, '2015-06-12 00:50:18'),
(3209, 713, 724, 1, '2015-06-12 00:50:18'),
(3210, 713, 725, 1, '2015-06-12 00:50:18'),
(3211, 713, 726, 1, '2015-06-12 00:50:18'),
(3212, 713, 727, 1, '2015-06-12 00:50:18'),
(3213, 713, 728, 1, '2015-06-12 00:50:18'),
(3214, 714, 715, 1, '2015-06-12 00:50:18'),
(3215, 714, 716, 1, '2015-06-12 00:50:18'),
(3216, 714, 717, 1, '2015-06-12 00:50:19'),
(3217, 714, 718, 1, '2015-06-12 00:50:19'),
(3218, 714, 719, 1, '2015-06-12 00:50:19'),
(3219, 714, 720, 1, '2015-06-12 00:50:19'),
(3220, 714, 721, 1, '2015-06-12 00:50:19'),
(3221, 714, 722, 1, '2015-06-12 00:50:19'),
(3222, 714, 723, 1, '2015-06-12 00:50:19'),
(3223, 714, 724, 1, '2015-06-12 00:50:19'),
(3224, 714, 725, 1, '2015-06-12 00:50:19'),
(3225, 714, 726, 1, '2015-06-12 00:50:19'),
(3226, 714, 727, 1, '2015-06-12 00:50:19'),
(3227, 714, 728, 1, '2015-06-12 00:50:19'),
(3228, 715, 716, 1, '2015-06-12 00:50:19'),
(3229, 715, 717, 1, '2015-06-12 00:50:19'),
(3230, 715, 718, 1, '2015-06-12 00:50:19'),
(3231, 715, 719, 1, '2015-06-12 00:50:19'),
(3232, 715, 720, 1, '2015-06-12 00:50:19'),
(3233, 715, 721, 1, '2015-06-12 00:50:19'),
(3234, 715, 722, 1, '2015-06-12 00:50:19'),
(3235, 715, 723, 1, '2015-06-12 00:50:19'),
(3236, 715, 724, 1, '2015-06-12 00:50:19'),
(3237, 715, 725, 1, '2015-06-12 00:50:19'),
(3238, 715, 726, 1, '2015-06-12 00:50:19'),
(3239, 715, 727, 1, '2015-06-12 00:50:19'),
(3240, 715, 728, 1, '2015-06-12 00:50:19'),
(3241, 716, 717, 1, '2015-06-12 00:50:19'),
(3242, 716, 718, 1, '2015-06-12 00:50:19'),
(3243, 716, 719, 1, '2015-06-12 00:50:19'),
(3244, 716, 720, 1, '2015-06-12 00:50:19'),
(3245, 716, 721, 1, '2015-06-12 00:50:19'),
(3246, 716, 722, 1, '2015-06-12 00:50:20'),
(3247, 716, 723, 1, '2015-06-12 00:50:20'),
(3248, 716, 724, 1, '2015-06-12 00:50:20'),
(3249, 716, 725, 1, '2015-06-12 00:50:20'),
(3250, 716, 726, 1, '2015-06-12 00:50:20'),
(3251, 716, 727, 1, '2015-06-12 00:50:20'),
(3252, 716, 728, 1, '2015-06-12 00:50:20'),
(3253, 717, 718, 1, '2015-06-12 00:50:20'),
(3254, 717, 719, 1, '2015-06-12 00:50:20'),
(3255, 717, 720, 1, '2015-06-12 00:50:20'),
(3256, 717, 721, 1, '2015-06-12 00:50:20'),
(3257, 717, 722, 1, '2015-06-12 00:50:20'),
(3258, 717, 723, 1, '2015-06-12 00:50:20'),
(3259, 717, 724, 1, '2015-06-12 00:50:20'),
(3260, 717, 725, 1, '2015-06-12 00:50:20'),
(3261, 717, 726, 1, '2015-06-12 00:50:20'),
(3262, 717, 727, 1, '2015-06-12 00:50:20'),
(3263, 717, 728, 1, '2015-06-12 00:50:20'),
(3264, 718, 719, 1, '2015-06-12 00:50:20'),
(3265, 718, 720, 1, '2015-06-12 00:50:20'),
(3266, 718, 721, 1, '2015-06-12 00:50:20'),
(3267, 718, 722, 1, '2015-06-12 00:50:20'),
(3268, 718, 723, 1, '2015-06-12 00:50:20'),
(3269, 718, 724, 1, '2015-06-12 00:50:20'),
(3270, 718, 725, 1, '2015-06-12 00:50:20'),
(3271, 718, 726, 1, '2015-06-12 00:50:20'),
(3272, 718, 727, 1, '2015-06-12 00:50:20'),
(3273, 718, 728, 1, '2015-06-12 00:50:20'),
(3274, 719, 720, 1, '2015-06-12 00:50:20'),
(3275, 719, 721, 1, '2015-06-12 00:50:20'),
(3276, 719, 722, 1, '2015-06-12 00:50:21'),
(3277, 719, 723, 1, '2015-06-12 00:50:21'),
(3278, 719, 724, 1, '2015-06-12 00:50:21'),
(3279, 719, 725, 1, '2015-06-12 00:50:21'),
(3280, 719, 726, 1, '2015-06-12 00:50:21'),
(3281, 719, 727, 1, '2015-06-12 00:50:21'),
(3282, 719, 728, 1, '2015-06-12 00:50:21'),
(3283, 720, 721, 1, '2015-06-12 00:50:21'),
(3284, 720, 722, 1, '2015-06-12 00:50:21'),
(3285, 720, 723, 1, '2015-06-12 00:50:21'),
(3286, 720, 724, 1, '2015-06-12 00:50:21'),
(3287, 720, 725, 1, '2015-06-12 00:50:21'),
(3288, 720, 726, 1, '2015-06-12 00:50:21'),
(3289, 720, 727, 1, '2015-06-12 00:50:21'),
(3290, 720, 728, 1, '2015-06-12 00:50:21'),
(3291, 721, 722, 1, '2015-06-12 00:50:21'),
(3292, 721, 723, 1, '2015-06-12 00:50:21'),
(3293, 721, 724, 1, '2015-06-12 00:50:21'),
(3294, 721, 725, 1, '2015-06-12 00:50:21'),
(3295, 721, 726, 1, '2015-06-12 00:50:21'),
(3296, 721, 727, 1, '2015-06-12 00:50:21'),
(3297, 721, 728, 1, '2015-06-12 00:50:21'),
(3298, 722, 723, 1, '2015-06-12 00:50:21'),
(3299, 722, 724, 1, '2015-06-12 00:50:21'),
(3300, 722, 725, 1, '2015-06-12 00:50:21'),
(3301, 722, 726, 1, '2015-06-12 00:50:21'),
(3302, 722, 727, 1, '2015-06-12 00:50:21'),
(3303, 722, 728, 1, '2015-06-12 00:50:22'),
(3304, 723, 724, 1, '2015-06-12 00:50:22'),
(3305, 723, 725, 1, '2015-06-12 00:50:22'),
(3306, 723, 726, 1, '2015-06-12 00:50:22'),
(3307, 723, 727, 1, '2015-06-12 00:50:22'),
(3308, 723, 728, 1, '2015-06-12 00:50:22'),
(3309, 724, 725, 1, '2015-06-12 00:50:22'),
(3310, 724, 726, 1, '2015-06-12 00:50:22'),
(3311, 724, 727, 1, '2015-06-12 00:50:22'),
(3312, 724, 728, 1, '2015-06-12 00:50:22'),
(3313, 725, 726, 1, '2015-06-12 00:50:22'),
(3314, 725, 727, 1, '2015-06-12 00:50:22'),
(3315, 725, 728, 1, '2015-06-12 00:50:22'),
(3316, 726, 727, 1, '2015-06-12 00:50:22'),
(3317, 726, 728, 1, '2015-06-12 00:50:22'),
(3318, 727, 728, 1, '2015-06-12 00:50:22');
-- --------------------------------------------------------
--
-- Table structure for table `conversation`
--
CREATE TABLE IF NOT EXISTS `conversation` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`user` varchar(5000) COLLATE utf8_bin NOT NULL,
`computer` varchar(5000) COLLATE utf8_bin NOT NULL,
`start` bigint(16) NOT NULL,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin AUTO_INCREMENT=13 ;
--
-- Dumping data for table `conversation`
--
INSERT INTO `conversation` (`id`, `user`, `computer`, `start`, `created_at`) VALUES
(1, ';steve =is ;computer', '', 1434412691532, '2015-06-15 23:59:07'),
(2, '', ';steve =is ;computer ', 1434412691532, '2015-06-15 23:59:07'),
(3, ';steve =is *happy', '', 1434412691532, '2015-06-15 23:59:15'),
(4, '', ';steve =is ;computer ', 1434412691532, '2015-06-15 23:59:15'),
(5, ';new_york =is `a *big ;city', '', 1434412691532, '2015-06-16 00:03:44'),
(6, '', ';new_york =is*big *big ;city ', 1434412691532, '2015-06-16 00:03:44'),
(7, ';new_york =is `a *big ;city', '', 1434412691532, '2015-06-16 00:04:27'),
(8, '', ';new_york =is*big *big ;city ', 1434412691532, '2015-06-16 00:04:27'),
(9, ';qwertyuiop', '', 1434412691532, '2015-06-16 00:06:22'),
(10, '', ';qwertyuiop ', 1434412691532, '2015-06-16 00:06:22'),
(11, ';new_york_city =is `a *big ;city', '', 1434413195895, '2015-06-16 00:07:03'),
(12, '', ';new_york_city =is *big ;city ', 1434413195895, '2015-06-16 00:07:03');
-- --------------------------------------------------------
--
-- Table structure for table `migrations`
--
CREATE TABLE IF NOT EXISTS `migrations` (
`migration` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`batch` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
--
-- Dumping data for table `migrations`
--
INSERT INTO `migrations` (`migration`, `batch`) VALUES
('2014_10_12_000000_create_users_table', 1),
('2014_10_12_100000_create_password_resets_table', 1);
-- --------------------------------------------------------
--
-- Table structure for table `old_relationships`
--
CREATE TABLE IF NOT EXISTS `old_relationships` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`a_key` int(10) unsigned NOT NULL,
`b_key` int(10) unsigned NOT NULL,
`is_true` int(10) unsigned NOT NULL,
`not_true` int(10) unsigned NOT NULL,
`created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin AUTO_INCREMENT=729 ;
--
-- Dumping data for table `old_relationships`
--
INSERT INTO `old_relationships` (`id`, `a_key`, `b_key`, `is_true`, `not_true`, `created`) VALUES
(1, 1, 2, 6, 0, '2015-05-24 19:41:16'),
(2, 1, 3, 6, 0, '2015-05-24 19:41:16'),
(3, 2, 3, 6, 0, '2015-05-24 19:41:16'),
(4, 3, 2, 1, 0, '2015-05-24 19:41:48'),
(5, 3, 1, 2, 0, '2015-05-24 19:41:48'),
(6, 2, 1, 1, 0, '2015-05-24 19:41:48'),
(7, 1, 4, 22, 2, '2015-05-24 19:41:52'),
(8, 1, 5, 4, 0, '2015-05-24 19:41:52'),
(9, 1, 6, 4, 0, '2015-05-24 19:41:52'),
(10, 4, 5, 14, 0, '2015-05-24 19:41:52'),
(11, 4, 6, 5, 0, '2015-05-24 19:41:53'),
(12, 5, 6, 5, 0, '2015-05-24 19:41:53'),
(13, 3, 4, 4, 0, '2015-05-24 19:41:59'),
(14, 3, 7, 1, 0, '2015-05-24 19:41:59'),
(15, 4, 7, 1, 0, '2015-05-24 19:41:59'),
(16, 8, 1, 1, 0, '2015-05-24 20:09:49'),
(17, 8, 3, 7, 0, '2015-05-24 20:10:17'),
(18, 9, 3, 1, 0, '2015-05-24 20:11:35'),
(19, 10, 4, 6, 0, '2015-05-24 20:13:25'),
(20, 10, 3, 1, 0, '2015-05-24 20:13:25'),
(21, 10, 11, 1, 0, '2015-05-24 20:13:25'),
(22, 4, 3, 1, 0, '2015-05-24 20:13:25'),
(23, 4, 11, 1, 0, '2015-05-24 20:13:25'),
(24, 3, 11, 1, 0, '2015-05-24 20:13:25'),
(25, 3, 12, 1, 0, '2015-05-24 20:14:49'),
(26, 4, 12, 2, 0, '2015-05-24 20:14:49'),
(27, 13, 14, 1, 0, '2015-05-25 02:08:29'),
(28, 13, 15, 1, 0, '2015-05-25 02:08:29'),
(29, 13, 16, 1, 0, '2015-05-25 02:08:29'),
(30, 13, 17, 1, 0, '2015-05-25 02:08:29'),
(31, 14, 15, 1, 0, '2015-05-25 02:08:29'),
(32, 14, 16, 1, 0, '2015-05-25 02:08:29'),
(33, 14, 17, 1, 0, '2015-05-25 02:08:29'),
(34, 15, 16, 1, 0, '2015-05-25 02:08:29'),
(35, 15, 17, 1, 0, '2015-05-25 02:08:29'),
(36, 16, 17, 1, 0, '2015-05-25 02:08:29'),
(37, 18, 19, 1, 0, '2015-05-25 04:42:05'),
(38, 18, 20, 1, 0, '2015-05-25 04:42:05'),
(39, 18, 21, 1, 0, '2015-05-25 04:42:05'),
(40, 18, 22, 1, 0, '2015-05-25 04:42:05'),
(41, 18, 23, 1, 0, '2015-05-25 04:42:05'),
(42, 18, 24, 1, 0, '2015-05-25 04:42:05'),
(43, 19, 20, 1, 0, '2015-05-25 04:42:05'),
(44, 19, 21, 1, 0, '2015-05-25 04:42:05'),
(45, 19, 22, 1, 0, '2015-05-25 04:42:05'),
(46, 19, 23, 1, 0, '2015-05-25 04:42:05'),
(47, 19, 24, 1, 0, '2015-05-25 04:42:06'),
(48, 20, 21, 1, 0, '2015-05-25 04:42:06'),
(49, 20, 22, 1, 0, '2015-05-25 04:42:06'),
(50, 20, 23, 1, 0, '2015-05-25 04:42:06'),
(51, 20, 24, 1, 0, '2015-05-25 04:42:06'),
(52, 21, 22, 1, 0, '2015-05-25 04:42:06'),
(53, 21, 23, 1, 0, '2015-05-25 04:42:06'),
(54, 21, 24, 1, 0, '2015-05-25 04:42:06'),
(55, 22, 23, 1, 0, '2015-05-25 04:42:06'),
(56, 22, 24, 1, 0, '2015-05-25 04:42:06'),
(57, 23, 24, 1, 0, '2015-05-25 04:42:06'),
(58, 25, 4, 1, 0, '2015-05-25 04:43:25'),
(59, 25, 26, 1, 0, '2015-05-25 04:43:25'),
(60, 4, 26, 1, 0, '2015-05-25 04:43:25'),
(61, 25, 27, 1, 0, '2015-05-25 04:44:48'),
(62, 25, 28, 1, 0, '2015-05-25 04:44:48'),
(63, 27, 28, 1, 0, '2015-05-25 04:44:48'),
(64, 1, 29, 1, 0, '2015-05-25 04:46:18'),
(65, 4, 29, 1, 0, '2015-05-25 04:46:19'),
(66, 31, 4, 1, 0, '2015-05-25 04:46:56'),
(67, 31, 32, 1, 0, '2015-05-25 04:46:56'),
(68, 31, 33, 1, 0, '2015-05-25 04:46:56'),
(69, 4, 32, 2, 0, '2015-05-25 04:46:56'),
(70, 4, 33, 2, 0, '2015-05-25 04:46:56'),
(71, 32, 33, 1, 0, '2015-05-25 04:46:56'),
(72, 35, 4, 1, 0, '2015-05-25 04:47:21'),
(73, 35, 32, 1, 0, '2015-05-25 04:47:21'),
(74, 35, 36, 1, 0, '2015-05-25 04:47:21'),
(75, 4, 36, 1, 0, '2015-05-25 04:47:21'),
(76, 32, 36, 1, 0, '2015-05-25 04:47:21'),
(77, 38, 4, 1, 0, '2015-05-25 04:48:12'),
(78, 38, 5, 1, 0, '2015-05-25 04:48:12'),
(79, 38, 39, 1, 0, '2015-05-25 04:48:12'),
(80, 4, 39, 1, 0, '2015-05-25 04:48:12'),
(81, 5, 39, 1, 0, '2015-05-25 04:48:12'),
(82, 40, 4, 1, 0, '2015-05-25 04:48:25'),
(83, 40, 12, 1, 0, '2015-05-25 04:48:25'),
(84, 41, 42, 1, 0, '2015-05-25 04:49:26'),
(85, 41, 43, 1, 0, '2015-05-25 04:49:26'),
(86, 41, 44, 1, 0, '2015-05-25 04:49:26'),
(87, 41, 45, 1, 0, '2015-05-25 04:49:26'),
(88, 42, 43, 1, 0, '2015-05-25 04:49:26'),
(89, 42, 44, 1, 0, '2015-05-25 04:49:27'),
(90, 42, 45, 1, 0, '2015-05-25 04:49:27'),
(91, 43, 44, 1, 0, '2015-05-25 04:49:27'),
(92, 43, 45, 1, 0, '2015-05-25 04:49:27'),
(93, 44, 45, 1, 0, '2015-05-25 04:49:27'),
(94, 48, 49, 1, 0, '2015-05-25 04:50:29'),
(95, 48, 50, 1, 0, '2015-05-25 04:50:29'),
(96, 48, 51, 1, 0, '2015-05-25 04:50:29'),
(97, 49, 50, 1, 0, '2015-05-25 04:50:29'),
(98, 49, 51, 1, 0, '2015-05-25 04:50:29'),
(99, 50, 51, 1, 0, '2015-05-25 04:50:29'),
(100, 53, 54, 1, 0, '2015-05-25 04:50:57'),
(101, 55, 51, 1, 0, '2015-05-25 04:51:16'),
(102, 56, 57, 1, 0, '2015-05-25 04:51:38'),
(103, 56, 51, 1, 0, '2015-05-25 04:51:38'),
(104, 57, 51, 1, 0, '2015-05-25 04:51:38'),
(105, 58, 51, 1, 0, '2015-05-25 04:52:40'),
(106, 58, 52, 1, 0, '2015-05-25 04:52:40'),
(107, 51, 52, 1, 0, '2015-05-25 04:52:40'),
(108, 63, 4, 3, 0, '2015-05-25 04:57:51'),
(109, 63, 51, 1, 0, '2015-05-25 04:57:51'),
(110, 4, 51, 1, 0, '2015-05-25 04:57:51'),
(111, 63, 64, 2, 0, '2015-05-25 05:00:16'),
(112, 4, 64, 2, 0, '2015-05-25 05:00:16'),
(113, 65, 66, 6, 0, '2015-05-25 05:06:21'),
(114, 65, 67, 5, 0, '2015-05-25 05:06:21'),
(115, 65, 68, 5, 0, '2015-05-25 05:06:21'),
(116, 66, 67, 5, 0, '2015-05-25 05:06:21'),
(117, 66, 68, 5, 0, '2015-05-25 05:06:21'),
(118, 67, 68, 5, 0, '2015-05-25 05:06:21'),
(119, 9, 69, 3, 0, '2015-05-25 05:48:40'),
(120, 8, 70, 2, 0, '2015-05-25 05:49:33'),
(121, 71, 72, 1, 0, '2015-05-25 05:50:06'),
(122, 65, 4, 10, 0, '2015-05-25 05:50:35'),
(123, 65, 73, 3, 0, '2015-05-25 05:50:35'),
(124, 65, 74, 3, 0, '2015-05-25 05:50:35'),
(125, 4, 73, 3, 2, '2015-05-25 05:50:35'),
(126, 4, 74, 3, 0, '2015-05-25 05:50:35'),
(127, 73, 74, 3, 0, '2015-05-25 05:50:35'),
(128, 71, 69, 4, 0, '2015-05-25 05:57:36'),
(129, 76, 4, 2, 0, '2015-05-25 14:06:10'),
(130, 76, 77, 2, 0, '2015-05-25 14:06:10'),
(131, 4, 77, 2, 0, '2015-05-25 14:06:10'),
(132, 78, 79, 1, 0, '2015-05-25 15:42:06'),
(133, 78, 80, 1, 0, '2015-05-25 15:42:06'),
(134, 79, 80, 1, 0, '2015-05-25 15:42:06'),
(135, 3, 5, 1, 0, '2015-05-25 15:42:43'),
(136, 3, 6, 1, 0, '2015-05-25 15:42:43'),
(137, 1, 81, 1, 0, '2015-05-25 17:51:38'),
(138, 2, 81, 1, 0, '2015-05-25 17:51:38'),
(139, 81, 3, 1, 0, '2015-05-25 17:51:38'),
(140, 1, 82, 1, 0, '2015-05-26 02:09:48'),
(141, 1, 83, 1, 0, '2015-05-26 02:09:48'),
(142, 82, 83, 1, 0, '2015-05-26 02:09:48'),
(143, 3, 84, 1, 0, '2015-05-29 02:55:40'),
(144, 84, 1, 1, 0, '2015-05-29 02:55:40'),
(145, 85, 4, 1, 0, '2015-05-29 02:56:10'),
(146, 85, 86, 1, 0, '2015-05-29 02:56:10'),
(147, 85, 87, 1, 0, '2015-05-29 02:56:10'),
(148, 4, 86, 1, 0, '2015-05-29 02:56:10'),
(149, 4, 87, 1, 0, '2015-05-29 02:56:10'),
(150, 86, 87, 1, 0, '2015-05-29 02:56:10'),
(151, 88, 89, 1, 0, '2015-05-29 02:56:46'),
(152, 91, 28, 1, 0, '2015-05-29 03:01:13'),
(153, 91, 92, 1, 0, '2015-05-29 03:01:13'),
(154, 91, 93, 1, 0, '2015-05-29 03:01:13'),
(155, 28, 92, 1, 0, '2015-05-29 03:01:13'),
(156, 28, 93, 1, 0, '2015-05-29 03:01:13'),
(157, 92, 93, 1, 0, '2015-05-29 03:01:13'),
(158, 94, 95, 1, 0, '2015-05-29 03:01:29'),
(159, 94, 96, 1, 0, '2015-05-29 03:01:29'),
(160, 94, 4, 1, 0, '2015-05-29 03:01:29'),
(161, 94, 97, 1, 0, '2015-05-29 03:01:29'),
(162, 95, 96, 1, 0, '2015-05-29 03:01:29'),
(163, 95, 4, 1, 0, '2015-05-29 03:01:29'),
(164, 95, 97, 1, 0, '2015-05-29 03:01:29'),
(165, 96, 4, 1, 0, '2015-05-29 03:01:29'),
(166, 96, 97, 1, 0, '2015-05-29 03:01:29'),
(167, 4, 97, 1, 0, '2015-05-29 03:01:29'),
(168, 1, 93, 1, 0, '2015-05-29 03:06:03'),
(169, 1, 98, 1, 0, '2015-05-29 03:06:03'),
(170, 4, 93, 1, 0, '2015-05-29 03:06:03'),
(171, 4, 98, 1, 0, '2015-05-29 03:06:03'),
(172, 93, 98, 1, 0, '2015-05-29 03:06:03'),
(173, 8, 69, 9, 0, '2015-05-29 03:52:49'),
(174, 1, 99, 6, 0, '2015-05-29 04:16:15'),
(175, 4, 99, 6, 0, '2015-05-29 04:16:15'),
(176, 1, 100, 6, 0, '2015-05-29 04:19:40'),
(177, 4, 100, 6, 0, '2015-05-29 04:19:40'),
(178, 10, 69, 5, 0, '2015-05-29 04:21:04'),
(179, 4, 69, 9, 1, '2015-05-29 04:21:04'),
(180, 1, 101, 0, 1, '2015-05-29 04:24:43'),
(181, 1, 102, 0, 4, '2015-05-29 04:24:43'),
(182, 1, 103, 0, 1, '2015-05-29 04:24:43'),
(183, 101, 102, 0, 1, '2015-05-29 04:24:43'),
(184, 101, 103, 0, 1, '2015-05-29 04:24:43'),
(185, 102, 103, 0, 1, '2015-05-29 04:24:43'),
(186, 69, 4, 13, 1, '2015-05-29 04:27:17'),
(187, 69, 104, 2, 0, '2015-05-29 04:27:17'),
(188, 4, 104, 2, 0, '2015-05-29 04:27:17'),
(189, 69, 42, 1, 0, '2015-05-29 04:32:09'),
(190, 69, 105, 1, 0, '2015-05-29 04:32:09'),
(191, 69, 106, 1, 0, '2015-05-29 04:32:09'),
(192, 69, 1, 1, 0, '2015-05-29 04:32:09'),
(193, 42, 105, 1, 0, '2015-05-29 04:32:09'),
(194, 42, 106, 1, 0, '2015-05-29 04:32:09'),
(195, 42, 1, 1, 0, '2015-05-29 04:32:09'),
(196, 105, 106, 1, 0, '2015-05-29 04:32:09'),
(197, 105, 1, 1, 0, '2015-05-29 04:32:09'),
(198, 106, 1, 1, 0, '2015-05-29 04:32:09'),
(199, 65, 107, 2, 0, '2015-05-29 04:33:38'),
(200, 4, 107, 2, 0, '2015-05-29 04:33:38'),
(201, 65, 108, 1, 0, '2015-05-29 04:34:53'),
(202, 4, 108, 1, 0, '2015-05-29 04:34:53'),
(203, 108, 107, 1, 0, '2015-05-29 04:34:53'),
(204, 109, 110, 1, 0, '2015-05-29 04:38:59'),
(205, 109, 111, 1, 0, '2015-05-29 04:38:59'),
(206, 109, 112, 1, 0, '2015-05-29 04:38:59'),
(207, 110, 111, 1, 0, '2015-05-29 04:38:59'),
(208, 110, 112, 1, 0, '2015-05-29 04:38:59'),
(209, 111, 112, 1, 0, '2015-05-29 04:38:59'),
(210, 65, 113, 1, 0, '2015-05-29 04:44:13'),
(211, 65, 114, 1, 0, '2015-05-29 04:44:13'),
(212, 113, 114, 1, 0, '2015-05-29 04:44:13'),
(213, 1, 115, 1, 0, '2015-05-29 04:46:57'),
(214, 4, 115, 1, 0, '2015-05-29 04:46:57'),
(215, 1, 116, 1, 0, '2015-05-29 04:48:01'),
(216, 4, 116, 2, 0, '2015-05-29 04:48:02'),
(217, 1, 66, 1, 0, '2015-05-29 04:48:47'),
(218, 1, 117, 1, 0, '2015-05-29 04:48:47'),
(219, 66, 117, 1, 0, '2015-05-29 04:48:47'),
(220, 3, 118, 1, 0, '2015-05-29 04:49:04'),
(221, 120, 121, 2, 0, '2015-05-29 04:49:31'),
(222, 120, 122, 3, 0, '2015-05-29 04:49:31'),
(223, 121, 122, 2, 0, '2015-05-29 04:49:31'),
(224, 123, 4, 2, 0, '2015-05-29 04:50:50'),
(225, 123, 124, 1, 0, '2015-05-29 04:50:50'),
(226, 4, 124, 1, 0, '2015-05-29 04:50:50'),
(227, 125, 126, 1, 0, '2015-05-30 15:16:06'),
(228, 10, 79, 1, 0, '2015-05-30 15:16:16'),
(229, 10, 14, 1, 0, '2015-05-30 15:16:16'),
(230, 79, 14, 2, 0, '2015-05-30 15:16:16'),
(231, 120, 79, 1, 0, '2015-05-30 15:16:29'),
(232, 120, 14, 1, 0, '2015-05-30 15:16:29'),
(233, 120, 127, 1, 0, '2015-05-30 15:16:29'),
(234, 79, 127, 1, 0, '2015-05-30 15:16:29'),
(235, 79, 122, 1, 0, '2015-05-30 15:16:29'),
(236, 14, 127, 1, 0, '2015-05-30 15:16:29'),
(237, 14, 122, 1, 0, '2015-05-30 15:16:29'),
(238, 127, 122, 1, 0, '2015-05-30 15:16:29'),
(239, 128, 14, 1, 0, '2015-05-30 15:16:51'),
(240, 128, 129, 1, 0, '2015-05-30 15:16:51'),
(241, 128, 130, 1, 0, '2015-05-30 15:16:51'),
(242, 128, 131, 1, 0, '2015-05-30 15:16:51'),
(243, 128, 68, 1, 0, '2015-05-30 15:16:51'),
(244, 14, 129, 1, 0, '2015-05-30 15:16:51'),
(245, 14, 130, 1, 0, '2015-05-30 15:16:51'),
(246, 14, 131, 1, 0, '2015-05-30 15:16:51'),
(247, 14, 68, 1, 0, '2015-05-30 15:16:51'),
(248, 129, 130, 1, 0, '2015-05-30 15:16:51'),
(249, 129, 131, 2, 0, '2015-05-30 15:16:51'),
(250, 129, 68, 2, 0, '2015-05-30 15:16:51'),
(251, 130, 131, 1, 0, '2015-05-30 15:16:51'),
(252, 130, 68, 1, 0, '2015-05-30 15:16:51'),
(253, 131, 68, 2, 0, '2015-05-30 15:16:51'),
(254, 132, 129, 1, 0, '2015-05-30 15:17:15'),
(255, 132, 133, 1, 0, '2015-05-30 15:17:15'),
(256, 132, 131, 1, 0, '2015-05-30 15:17:15'),
(257, 132, 68, 1, 0, '2015-05-30 15:17:15'),
(258, 129, 133, 1, 0, '2015-05-30 15:17:15'),
(259, 133, 131, 1, 0, '2015-05-30 15:17:15'),
(260, 133, 68, 1, 0, '2015-05-30 15:17:15'),
(261, 134, 1, 1, 0, '2015-05-30 15:17:37'),
(262, 134, 135, 1, 0, '2015-05-30 15:17:37'),
(263, 134, 136, 1, 0, '2015-05-30 15:17:37'),
(264, 1, 135, 1, 0, '2015-05-30 15:17:37'),
(265, 1, 136, 1, 0, '2015-05-30 15:17:37'),
(266, 135, 136, 1, 0, '2015-05-30 15:17:37'),
(267, 137, 136, 0, 1, '2015-05-30 15:17:49'),
(268, 65, 138, 1, 0, '2015-05-30 15:18:03'),
(269, 69, 139, 1, 0, '2015-05-30 15:18:24'),
(270, 69, 116, 2, 0, '2015-05-30 15:18:24'),
(271, 139, 116, 1, 0, '2015-05-30 15:18:24'),
(272, 69, 140, 1, 0, '2015-05-30 15:18:57'),
(273, 4, 140, 1, 0, '2015-05-30 15:18:57'),
(274, 141, 69, 1, 0, '2015-05-30 15:19:15'),
(275, 141, 142, 1, 0, '2015-05-30 15:19:15'),
(276, 69, 142, 1, 0, '2015-05-30 15:19:16'),
(277, 143, 144, 1, 0, '2015-05-30 15:19:31'),
(278, 145, 146, 2, 0, '2015-05-30 15:19:54'),
(279, 145, 147, 2, 0, '2015-05-30 15:19:54'),
(280, 146, 147, 2, 0, '2015-05-30 15:19:54'),
(281, 149, 4, 1, 0, '2015-05-30 15:20:21'),
(282, 149, 150, 1, 0, '2015-05-30 15:20:21'),
(283, 149, 49, 1, 0, '2015-05-30 15:20:21'),
(284, 4, 150, 1, 0, '2015-05-30 15:20:21'),
(285, 4, 49, 1, 0, '2015-05-30 15:20:21'),
(286, 150, 49, 1, 0, '2015-05-30 15:20:21'),
(287, 1, 151, 1, 0, '2015-05-30 15:22:34'),
(288, 1, 152, 1, 0, '2015-05-30 15:22:34'),
(289, 1, 153, 1, 0, '2015-05-30 15:22:34'),
(290, 4, 151, 1, 0, '2015-05-30 15:22:34'),
(291, 4, 152, 1, 0, '2015-05-30 15:22:34'),
(292, 4, 153, 1, 0, '2015-05-30 15:22:34'),
(293, 151, 152, 1, 0, '2015-05-30 15:22:34'),
(294, 151, 153, 1, 0, '2015-05-30 15:22:34'),
(295, 152, 153, 1, 0, '2015-05-30 15:22:34'),
(296, 1, 73, 0, 2, '2015-05-30 15:23:55'),
(297, 1, 154, 1, 2, '2015-05-30 15:23:55'),
(298, 1, 149, 0, 2, '2015-05-30 15:23:55'),
(299, 1, 155, 0, 2, '2015-05-30 15:23:55'),
(300, 1, 156, 0, 2, '2015-05-30 15:23:55'),
(301, 4, 102, 0, 3, '2015-05-30 15:23:55'),
(302, 4, 154, 0, 2, '2015-05-30 15:23:55'),
(303, 4, 149, 2, 2, '2015-05-30 15:23:55'),
(304, 4, 155, 0, 2, '2015-05-30 15:23:55'),
(305, 4, 156, 0, 2, '2015-05-30 15:23:55'),
(306, 102, 73, 0, 3, '2015-05-30 15:23:55'),
(307, 102, 154, 0, 3, '2015-05-30 15:23:55'),
(308, 102, 149, 0, 3, '2015-05-30 15:23:55'),
(309, 102, 155, 0, 3, '2015-05-30 15:23:55'),
(310, 102, 156, 0, 3, '2015-05-30 15:23:55'),
(311, 73, 154, 0, 3, '2015-05-30 15:23:55'),
(312, 73, 149, 0, 3, '2015-05-30 15:23:55'),
(313, 73, 155, 0, 3, '2015-05-30 15:23:55'),
(314, 73, 156, 0, 3, '2015-05-30 15:23:55'),
(315, 154, 149, 0, 3, '2015-05-30 15:23:55'),
(316, 154, 155, 0, 3, '2015-05-30 15:23:55'),
(317, 154, 156, 0, 3, '2015-05-30 15:23:55'),
(318, 149, 155, 0, 3, '2015-05-30 15:23:55'),
(319, 149, 156, 0, 3, '2015-05-30 15:23:55'),
(320, 155, 156, 0, 3, '2015-05-30 15:23:55'),
(321, 69, 102, 0, 1, '2015-05-30 15:25:05'),
(322, 69, 157, 0, 1, '2015-05-30 15:25:05'),
(323, 69, 158, 0, 1, '2015-05-30 15:25:05'),
(324, 4, 157, 0, 1, '2015-05-30 15:25:05'),
(325, 4, 158, 0, 1, '2015-05-30 15:25:05'),
(326, 102, 157, 0, 1, '2015-05-30 15:25:05'),
(327, 102, 158, 0, 1, '2015-05-30 15:25:05'),
(328, 157, 158, 0, 1, '2015-05-30 15:25:05'),
(329, 1, 159, 1, 0, '2015-05-30 15:25:43'),
(330, 1, 160, 1, 0, '2015-05-30 15:25:43'),
(331, 1, 161, 1, 0, '2015-05-30 15:25:43'),
(332, 1, 162, 1, 0, '2015-05-30 15:25:43'),
(333, 1, 1, 1, 0, '2015-05-30 15:25:43'),
(334, 1, 163, 2, 0, '2015-05-30 15:25:43'),
(335, 4, 159, 1, 0, '2015-05-30 15:25:43'),
(336, 4, 160, 1, 0, '2015-05-30 15:25:43'),
(337, 4, 161, 1, 1, '2015-05-30 15:25:43'),
(338, 4, 162, 1, 0, '2015-05-30 15:25:43'),
(339, 4, 1, 1, 0, '2015-05-30 15:25:43'),
(340, 4, 163, 1, 0, '2015-05-30 15:25:43'),
(341, 159, 160, 1, 0, '2015-05-30 15:25:43'),
(342, 159, 161, 1, 0, '2015-05-30 15:25:43'),
(343, 159, 162, 1, 0, '2015-05-30 15:25:43'),
(344, 159, 1, 1, 0, '2015-05-30 15:25:43'),
(345, 159, 163, 1, 0, '2015-05-30 15:25:43'),
(346, 160, 161, 1, 0, '2015-05-30 15:25:43'),
(347, 160, 162, 1, 0, '2015-05-30 15:25:43'),
(348, 160, 1, 1, 0, '2015-05-30 15:25:43'),
(349, 160, 163, 1, 0, '2015-05-30 15:25:43'),
(350, 161, 162, 1, 0, '2015-05-30 15:25:43'),
(351, 161, 1, 1, 0, '2015-05-30 15:25:43'),
(352, 161, 163, 1, 0, '2015-05-30 15:25:43'),
(353, 162, 1, 1, 0, '2015-05-30 15:25:43'),
(354, 162, 163, 1, 0, '2015-05-30 15:25:43'),
(355, 17, 102, 0, 1, '2015-05-30 15:26:31'),
(356, 17, 164, 0, 1, '2015-05-30 15:26:31'),
(357, 17, 147, 0, 1, '2015-05-30 15:26:31'),
(358, 102, 164, 0, 2, '2015-05-30 15:26:31'),
(359, 102, 147, 0, 2, '2015-05-30 15:26:31'),
(360, 164, 147, 0, 2, '2015-05-30 15:26:32'),
(361, 1, 165, 0, 1, '2015-05-30 15:26:56'),
(362, 1, 164, 0, 1, '2015-05-30 15:26:56'),
(363, 1, 147, 0, 1, '2015-05-30 15:26:56'),
(364, 165, 102, 0, 1, '2015-05-30 15:26:56'),
(365, 165, 164, 0, 1, '2015-05-30 15:26:56'),
(366, 165, 147, 0, 1, '2015-05-30 15:26:56'),
(367, 61, 69, 1, 0, '2015-05-30 15:27:19'),
(368, 166, 69, 3, 0, '2015-05-30 15:27:37'),
(369, 166, 167, 1, 0, '2015-05-30 15:27:37'),
(370, 166, 149, 1, 0, '2015-05-30 15:27:37'),
(371, 69, 167, 3, 0, '2015-05-30 15:27:37'),
(372, 69, 149, 2, 0, '2015-05-30 15:27:37'),
(373, 167, 149, 2, 0, '2015-05-30 15:27:37'),
(374, 4, 137, 0, 1, '2015-05-30 15:28:06'),
(375, 69, 161, 0, 1, '2015-05-30 15:28:06'),
(376, 69, 137, 0, 1, '2015-05-30 15:28:06'),
(377, 161, 137, 0, 1, '2015-05-30 15:28:06'),
(378, 123, 169, 1, 0, '2015-05-30 15:28:36'),
(379, 123, 69, 1, 0, '2015-05-30 15:28:36'),
(380, 123, 170, 1, 0, '2015-05-30 15:28:36'),
(381, 169, 69, 1, 0, '2015-05-30 15:28:36'),
(382, 169, 4, 1, 0, '2015-05-30 15:28:36'),
(383, 169, 170, 1, 0, '2015-05-30 15:28:36'),
(384, 69, 170, 1, 0, '2015-05-30 15:28:36'),
(385, 4, 170, 2, 0, '2015-05-30 15:28:36'),
(386, 65, 69, 2, 0, '2015-05-30 17:39:19'),
(387, 65, 104, 1, 0, '2015-05-30 17:39:19'),
(388, 171, 4, 6, 0, '2015-05-30 17:40:17'),
(389, 171, 149, 2, 0, '2015-05-30 17:40:17'),
(390, 66, 69, 3, 0, '2015-05-30 17:40:31'),
(391, 66, 167, 2, 0, '2015-05-30 17:40:31'),
(392, 66, 149, 1, 0, '2015-05-30 17:40:31'),
(393, 164, 60, 1, 0, '2015-05-30 17:40:50'),
(394, 164, 172, 1, 0, '2015-05-30 17:40:50'),
(395, 60, 172, 1, 0, '2015-05-30 17:40:50'),
(396, 173, 174, 0, 1, '2015-05-30 17:43:53'),
(397, 173, 175, 0, 1, '2015-05-30 17:43:53'),
(398, 173, 176, 0, 1, '2015-05-30 17:43:53'),
(399, 174, 175, 0, 1, '2015-05-30 17:43:53'),
(400, 174, 176, 0, 1, '2015-05-30 17:43:53'),
(401, 175, 176, 0, 1, '2015-05-30 17:43:53'),
(402, 174, 65, 1, 0, '2015-05-30 17:44:02'),
(403, 179, 4, 1, 0, '2015-05-30 17:46:49'),
(404, 179, 170, 1, 0, '2015-05-30 17:46:49'),
(405, 179, 180, 1, 0, '2015-05-30 17:46:49'),
(406, 4, 180, 1, 0, '2015-05-30 17:46:49'),
(407, 170, 180, 1, 0, '2015-05-30 17:46:49'),
(408, 69, 181, 5, 0, '2015-05-30 17:49:58'),
(409, 4, 181, 5, 0, '2015-05-30 17:49:58'),
(410, 1, 182, 1, 0, '2015-05-30 18:01:58'),
(411, 1, 183, 1, 0, '2015-05-30 18:01:58'),
(412, 182, 154, 1, 0, '2015-05-30 18:01:59'),
(413, 182, 183, 1, 0, '2015-05-30 18:01:59'),
(414, 154, 183, 1, 0, '2015-05-30 18:01:59'),
(415, 65, 184, 1, 0, '2015-05-30 18:03:49'),
(416, 65, 185, 1, 0, '2015-05-30 18:03:49'),
(417, 65, 186, 1, 0, '2015-05-30 18:03:49'),
(418, 184, 4, 1, 0, '2015-05-30 18:03:49'),
(419, 184, 185, 1, 0, '2015-05-30 18:03:49'),
(420, 184, 186, 1, 0, '2015-05-30 18:03:49'),
(421, 4, 185, 1, 0, '2015-05-30 18:03:49'),
(422, 4, 186, 1, 0, '2015-05-30 18:03:49'),
(423, 185, 186, 1, 0, '2015-05-30 18:03:49'),
(424, 10, 187, 1, 0, '2015-05-30 18:04:48'),
(425, 10, 188, 1, 0, '2015-05-30 18:04:48'),
(426, 4, 187, 1, 0, '2015-05-30 18:04:48'),
(427, 4, 188, 1, 0, '2015-05-30 18:04:48'),
(428, 69, 187, 1, 0, '2015-05-30 18:04:48'),
(429, 69, 188, 1, 0, '2015-05-30 18:04:48'),
(430, 187, 188, 1, 0, '2015-05-30 18:04:48'),
(431, 171, 69, 3, 0, '2015-05-30 19:32:03'),
(432, 183, 4, 1, 0, '2015-05-30 19:39:13'),
(433, 183, 5, 1, 0, '2015-05-30 19:39:13'),
(434, 183, 189, 1, 0, '2015-05-30 19:39:13'),
(435, 4, 189, 1, 0, '2015-05-30 19:39:13'),
(436, 5, 189, 1, 0, '2015-05-30 19:39:13'),
(437, 189, 4, 6, 0, '2015-05-30 19:40:06'),
(438, 189, 5, 6, 0, '2015-05-30 19:40:06'),
(439, 189, 191, 5, 0, '2015-05-30 19:40:14'),
(440, 4, 191, 5, 0, '2015-05-30 19:40:14'),
(441, 5, 191, 5, 0, '2015-05-30 19:40:14'),
(442, 66, 193, 1, 0, '2015-05-30 21:36:24'),
(443, 66, 194, 1, 0, '2015-05-30 21:36:24'),
(444, 66, 195, 1, 0, '2015-05-30 21:36:24'),
(445, 69, 193, 1, 0, '2015-05-30 21:36:24'),
(446, 69, 194, 1, 0, '2015-05-30 21:36:24'),
(447, 69, 195, 1, 0, '2015-05-30 21:36:24'),
(448, 167, 193, 2, 0, '2015-05-30 21:36:24'),
(449, 167, 194, 1, 0, '2015-05-30 21:36:24'),
(450, 167, 195, 1, 0, '2015-05-30 21:36:24'),
(451, 193, 194, 1, 0, '2015-05-30 21:36:24'),
(452, 193, 195, 1, 0, '2015-05-30 21:36:24'),
(453, 194, 195, 1, 0, '2015-05-30 21:36:24'),
(454, 196, 69, 1, 0, '2015-06-05 02:02:51'),
(455, 196, 197, 1, 0, '2015-06-05 02:02:51'),
(456, 196, 198, 1, 0, '2015-06-05 02:02:51'),
(457, 196, 199, 1, 0, '2015-06-05 02:02:51'),
(458, 69, 197, 1, 0, '2015-06-05 02:02:51'),
(459, 69, 198, 1, 0, '2015-06-05 02:02:51'),
(460, 69, 199, 1, 0, '2015-06-05 02:02:51'),
(461, 197, 198, 1, 0, '2015-06-05 02:02:51'),
(462, 197, 199, 1, 0, '2015-06-05 02:02:51'),
(463, 198, 199, 1, 0, '2015-06-05 02:02:51'),
(464, 200, 123, 1, 0, '2015-06-05 02:03:53'),
(465, 200, 201, 1, 0, '2015-06-05 02:03:53'),
(466, 123, 201, 1, 0, '2015-06-05 02:03:53'),
(467, 166, 202, 1, 0, '2015-06-05 02:04:10'),
(468, 69, 202, 1, 0, '2015-06-05 02:04:10'),
(469, 166, 203, 1, 0, '2015-06-05 02:04:30'),
(470, 166, 204, 1, 0, '2015-06-05 02:04:30'),
(471, 69, 203, 1, 0, '2015-06-05 02:04:30'),
(472, 69, 204, 1, 0, '2015-06-05 02:04:31'),
(473, 203, 204, 1, 0, '2015-06-05 02:04:31'),
(474, 3, 80, 1, 0, '2015-06-05 04:58:45'),
(475, 4, 80, 1, 0, '2015-06-05 04:58:45'),
(476, 249, 250, 1, 0, '2015-06-05 05:03:25'),
(477, 251, 69, 5, 0, '2015-06-05 22:30:27'),
(478, 65, 79, 1, 0, '2015-06-05 22:35:13'),
(479, 65, 215, 4, 0, '2015-06-05 22:35:13'),
(480, 79, 215, 1, 0, '2015-06-05 22:35:13'),
(481, 65, 163, 3, 0, '2015-06-05 22:36:25'),
(482, 65, 252, 1, 0, '2015-06-05 22:36:25'),
(483, 215, 163, 3, 0, '2015-06-05 22:36:25'),
(484, 215, 4, 3, 0, '2015-06-05 22:36:25'),
(485, 215, 252, 1, 0, '2015-06-05 22:36:25'),
(486, 163, 4, 3, 0, '2015-06-05 22:36:25'),
(487, 163, 252, 1, 0, '2015-06-05 22:36:25'),
(488, 4, 252, 1, 0, '2015-06-05 22:36:26'),
(489, 65, 33, 1, 0, '2015-06-05 22:37:13'),
(490, 215, 33, 1, 0, '2015-06-05 22:37:13'),
(491, 163, 33, 1, 0, '2015-06-05 22:37:14'),
(492, 143, 253, 1, 0, '2015-06-05 22:37:59'),
(493, 143, 254, 1, 0, '2015-06-05 22:37:59'),
(494, 143, 69, 1, 0, '2015-06-05 22:37:59'),
(495, 253, 254, 1, 0, '2015-06-05 22:37:59'),
(496, 253, 69, 1, 0, '2015-06-05 22:37:59'),
(497, 254, 69, 1, 0, '2015-06-05 22:37:59'),
(498, 120, 17, 1, 0, '2015-06-05 22:38:20'),
(499, 120, 215, 1, 0, '2015-06-05 22:38:20'),
(500, 120, 255, 1, 0, '2015-06-05 22:38:20'),
(501, 120, 235, 1, 0, '2015-06-05 22:38:20'),
(502, 17, 215, 2, 0, '2015-06-05 22:38:20'),
(503, 17, 255, 1, 0, '2015-06-05 22:38:20'),
(504, 17, 235, 1, 0, '2015-06-05 22:38:20'),
(505, 215, 255, 1, 0, '2015-06-05 22:38:20'),
(506, 215, 235, 1, 0, '2015-06-05 22:38:20'),
(507, 255, 235, 1, 0, '2015-06-05 22:38:21'),
(508, 17, 69, 1, 0, '2015-06-05 22:39:12'),
(509, 215, 69, 1, 0, '2015-06-05 22:39:12'),
(510, 218, 215, 1, 0, '2015-06-05 22:39:50'),
(511, 218, 17, 1, 0, '2015-06-05 22:39:50'),
(512, 215, 17, 1, 0, '2015-06-05 22:39:50'),
(513, 69, 65, 4, 0, '2015-06-05 22:40:19'),
(514, 4, 65, 4, 0, '2015-06-05 22:40:20'),
(515, 65, 256, 1, 0, '2015-06-05 22:41:24'),
(516, 215, 256, 1, 0, '2015-06-05 22:41:24'),
(517, 163, 256, 1, 0, '2015-06-05 22:41:24'),
(518, 4, 256, 1, 0, '2015-06-05 22:41:24'),
(519, 69, 257, 1, 0, '2015-06-05 22:41:38'),
(520, 69, 256, 1, 0, '2015-06-05 22:41:38'),
(521, 257, 256, 1, 0, '2015-06-05 22:41:38'),
(522, 134, 254, 1, 0, '2015-06-05 22:43:00'),
(523, 134, 258, 1, 0, '2015-06-05 22:43:00'),
(524, 254, 258, 1, 0, '2015-06-05 22:43:00'),
(525, 63, 259, 1, 0, '2015-06-05 22:43:32'),
(526, 63, 260, 1, 0, '2015-06-05 22:43:32'),
(527, 4, 259, 1, 0, '2015-06-05 22:43:32'),
(528, 4, 260, 1, 0, '2015-06-05 22:43:32'),
(529, 64, 259, 1, 0, '2015-06-05 22:43:32'),
(530, 64, 260, 1, 0, '2015-06-05 22:43:32'),
(531, 259, 260, 1, 0, '2015-06-05 22:43:32'),
(532, 262, 263, 1, 0, '2015-06-07 16:31:51'),
(533, 262, 264, 1, 0, '2015-06-07 16:31:51'),
(534, 263, 264, 1, 0, '2015-06-07 16:31:51'),
(535, 266, 267, 1, 0, '2015-06-07 16:33:31'),
(536, 266, 268, 1, 0, '2015-06-07 16:33:31'),
(537, 266, 170, 1, 0, '2015-06-07 16:33:31'),
(538, 267, 268, 1, 0, '2015-06-07 16:33:31'),
(539, 267, 170, 1, 0, '2015-06-07 16:33:31'),
(540, 268, 170, 1, 0, '2015-06-07 16:33:31'),
(541, 269, 4, 1, 0, '2015-06-07 16:33:55'),
(542, 269, 5, 1, 0, '2015-06-07 16:33:55'),
(543, 269, 270, 1, 0, '2015-06-07 16:33:55'),
(544, 4, 270, 1, 0, '2015-06-07 16:33:55'),
(545, 5, 270, 1, 0, '2015-06-07 16:33:55'),
(546, 171, 269, 1, 0, '2015-06-07 16:34:07'),
(547, 4, 269, 1, 0, '2015-06-07 16:34:07'),
(548, 68, 271, 1, 0, '2015-06-07 16:34:52'),
(549, 68, 69, 1, 0, '2015-06-07 16:34:52'),
(550, 271, 69, 1, 0, '2015-06-07 16:34:52'),
(551, 268, 215, 1, 0, '2015-06-09 02:18:28'),
(552, 268, 272, 1, 0, '2015-06-09 02:18:28'),
(553, 268, 154, 1, 0, '2015-06-09 02:18:28'),
(554, 268, 273, 1, 0, '2015-06-09 02:18:28'),
(555, 268, 274, 1, 0, '2015-06-09 02:18:28'),
(556, 215, 272, 1, 0, '2015-06-09 02:18:28'),
(557, 215, 154, 1, 0, '2015-06-09 02:18:28'),
(558, 215, 273, 1, 0, '2015-06-09 02:18:28'),
(559, 215, 274, 1, 0, '2015-06-09 02:18:28'),
(560, 272, 154, 1, 0, '2015-06-09 02:18:28'),
(561, 272, 273, 1, 0, '2015-06-09 02:18:28'),
(562, 272, 274, 1, 0, '2015-06-09 02:18:28'),
(563, 154, 273, 1, 0, '2015-06-09 02:18:28'),
(564, 154, 274, 1, 0, '2015-06-09 02:18:28'),
(565, 273, 274, 1, 0, '2015-06-09 02:18:28'),
(566, 65, 129, 1, 0, '2015-06-09 02:18:48'),
(567, 66, 129, 1, 0, '2015-06-09 02:18:48'),
(568, 69, 129, 1, 0, '2015-06-09 02:18:48'),
(569, 71, 275, 1, 0, '2015-06-10 03:00:58'),
(570, 10, 276, 3, 0, '2015-06-10 03:01:15'),
(571, 10, 277, 1, 0, '2015-06-10 03:01:22'),
(572, 276, 277, 1, 0, '2015-06-10 03:01:22'),
(573, 10, 275, 1, 0, '2015-06-10 03:01:29'),
(574, 10, 279, 1, 0, '2015-06-10 03:01:29'),
(575, 276, 275, 1, 0, '2015-06-10 03:01:29'),
(576, 276, 279, 1, 0, '2015-06-10 03:01:29'),
(577, 275, 279, 1, 0, '2015-06-10 03:01:29'),
(578, 275, 276, 2, 0, '2015-06-10 03:02:19'),
(579, 275, 280, 1, 0, '2015-06-10 03:02:19'),
(580, 275, 281, 1, 0, '2015-06-10 03:02:19'),
(581, 275, 282, 1, 0, '2015-06-10 03:02:19'),
(582, 275, 283, 1, 0, '2015-06-10 03:02:19'),
(583, 276, 280, 1, 0, '2015-06-10 03:02:19'),
(584, 276, 281, 1, 0, '2015-06-10 03:02:19'),
(585, 276, 282, 1, 0, '2015-06-10 03:02:19'),
(586, 276, 283, 1, 0, '2015-06-10 03:02:19'),
(587, 280, 281, 1, 0, '2015-06-10 03:02:19'),
(588, 280, 282, 1, 0, '2015-06-10 03:02:19'),
(589, 280, 283, 1, 0, '2015-06-10 03:02:20'),
(590, 281, 282, 1, 0, '2015-06-10 03:02:20'),
(591, 281, 283, 1, 0, '2015-06-10 03:02:20'),
(592, 282, 283, 1, 0, '2015-06-10 03:02:20'),
(593, 77, 279, 1, 0, '2015-06-10 03:02:40'),
(594, 284, 285, 2, 0, '2015-06-10 03:03:01'),
(595, 284, 282, 1, 0, '2015-06-10 03:03:01'),
(596, 284, 286, 1, 0, '2015-06-10 03:03:01'),
(597, 285, 282, 1, 0, '2015-06-10 03:03:01'),
(598, 285, 286, 1, 0, '2015-06-10 03:03:01'),
(599, 282, 286, 1, 0, '2015-06-10 03:03:01'),
(600, 287, 286, 1, 0, '2015-06-10 03:03:23'),
(601, 287, 288, 1, 0, '2015-06-10 03:03:23'),
(602, 287, 289, 1, 0, '2015-06-10 03:03:23'),
(603, 286, 288, 1, 0, '2015-06-10 03:03:23'),
(604, 286, 289, 1, 0, '2015-06-10 03:03:23'),
(605, 288, 289, 1, 0, '2015-06-10 03:03:23'),
(606, 290, 291, 5, 0, '2015-06-10 03:03:46'),
(607, 290, 122, 1, 0, '2015-06-10 03:03:46'),
(608, 291, 122, 1, 0, '2015-06-10 03:03:46'),
(609, 292, 293, 1, 0, '2015-06-10 03:05:19'),
(610, 292, 294, 1, 0, '2015-06-10 03:05:19'),
(611, 293, 294, 1, 0, '2015-06-10 03:05:19'),
(612, 296, 297, 1, 0, '2015-06-11 04:51:08'),
(613, 300, 297, 2, 0, '2015-06-11 04:51:19'),
(614, 300, 298, 1, 0, '2015-06-11 04:51:19'),
(615, 300, 43, 2, 0, '2015-06-11 04:51:19'),
(616, 297, 298, 1, 0, '2015-06-11 04:51:19'),
(617, 297, 43, 2, 0, '2015-06-11 04:51:19'),
(618, 298, 43, 1, 0, '2015-06-11 04:51:19'),
(619, 300, 302, 1, 0, '2015-06-11 04:51:27'),
(620, 297, 302, 1, 0, '2015-06-11 04:51:27'),
(621, 302, 43, 1, 0, '2015-06-11 04:51:27'),
(622, 65, 303, 1, 0, '2015-06-11 04:52:00'),
(623, 65, 289, 1, 0, '2015-06-11 04:52:00'),
(624, 65, 284, 1, 0, '2015-06-11 04:52:00'),
(625, 65, 300, 1, 0, '2015-06-11 04:52:00'),
(626, 303, 289, 1, 0, '2015-06-11 04:52:00'),
(627, 303, 284, 1, 0, '2015-06-11 04:52:00'),
(628, 303, 300, 1, 0, '2015-06-11 04:52:00'),
(629, 289, 284, 1, 0, '2015-06-11 04:52:00'),
(630, 289, 300, 1, 0, '2015-06-11 04:52:00'),
(631, 284, 300, 1, 0, '2015-06-11 04:52:00'),
(632, 171, 276, 3, 0, '2015-06-11 04:53:58'),
(633, 171, 306, 1, 0, '2015-06-11 04:54:12'),
(634, 276, 306, 1, 0, '2015-06-11 04:54:12'),
(635, 307, 284, 1, 0, '2015-06-11 04:54:32'),
(636, 307, 285, 1, 0, '2015-06-11 04:54:32'),
(637, 307, 308, 2, 0, '2015-06-11 04:54:32'),
(638, 284, 308, 1, 0, '2015-06-11 04:54:32'),
(639, 285, 308, 1, 0, '2015-06-11 04:54:33'),
(640, 290, 285, 1, 0, '2015-06-11 04:55:22'),
(641, 290, 313, 1, 0, '2015-06-11 04:55:22'),
(642, 291, 285, 1, 0, '2015-06-11 04:55:22'),
(643, 291, 313, 1, 0, '2015-06-11 04:55:22'),
(644, 285, 313, 1, 0, '2015-06-11 04:55:22'),
(645, 310, 290, 1, 0, '2015-06-11 04:55:31'),
(646, 310, 291, 1, 0, '2015-06-11 04:55:31'),
(647, 290, 314, 2, 0, '2015-06-11 05:05:32'),
(648, 291, 314, 2, 0, '2015-06-11 05:05:32'),
(649, 290, 315, 1, 0, '2015-06-11 05:05:49'),
(650, 291, 315, 1, 0, '2015-06-11 05:05:49'),
(651, 315, 314, 1, 0, '2015-06-11 05:05:49'),
(652, 275, 285, 1, 0, '2015-06-11 05:06:22'),
(653, 275, 316, 1, 0, '2015-06-11 05:06:22'),
(654, 275, 122, 1, 0, '2015-06-11 05:06:22'),
(655, 276, 285, 1, 0, '2015-06-11 05:06:22'),
(656, 276, 316, 1, 0, '2015-06-11 05:06:22'),
(657, 276, 122, 1, 0, '2015-06-11 05:06:22'),
(658, 285, 316, 1, 0, '2015-06-11 05:06:22'),
(659, 285, 122, 1, 0, '2015-06-11 05:06:22'),
(660, 316, 122, 1, 0, '2015-06-11 05:06:22'),
(661, 317, 275, 1, 0, '2015-06-11 05:06:46'),
(662, 318, 290, 6, 0, '2015-06-11 05:14:27'),
(663, 318, 319, 1, 0, '2015-06-11 05:19:04'),
(664, 318, 276, 1, 0, '2015-06-11 05:19:04'),
(665, 318, 33, 1, 0, '2015-06-11 05:19:04'),
(666, 290, 319, 1, 0, '2015-06-11 05:19:04'),
(667, 290, 276, 1, 0, '2015-06-11 05:19:04'),
(668, 290, 33, 1, 0, '2015-06-11 05:19:04'),
(669, 319, 276, 1, 0, '2015-06-11 05:19:04'),
(670, 319, 33, 1, 0, '2015-06-11 05:19:04'),
(671, 276, 33, 1, 0, '2015-06-11 05:19:04'),
(672, 318, 320, 1, 0, '2015-06-11 05:19:27'),
(673, 290, 320, 1, 0, '2015-06-11 05:19:27'),
(674, 318, 321, 1, 0, '2015-06-11 05:19:33'),
(675, 290, 321, 1, 0, '2015-06-11 05:19:33'),
(676, 307, 108, 1, 0, '2015-06-11 05:20:05'),
(677, 307, 322, 1, 0, '2015-06-11 05:20:05'),
(678, 307, 323, 1, 0, '2015-06-11 05:20:05'),
(679, 108, 322, 1, 0, '2015-06-11 05:20:05'),
(680, 108, 323, 1, 0, '2015-06-11 05:20:05'),
(681, 322, 323, 1, 0, '2015-06-11 05:20:05'),
(682, 128, 290, 1, 0, '2015-06-11 05:21:44'),
(683, 128, 324, 1, 0, '2015-06-11 05:21:44'),
(684, 290, 324, 1, 0, '2015-06-11 05:21:44'),
(685, 325, 276, 2, 0, '2015-06-11 05:22:00'),
(686, 325, 314, 1, 0, '2015-06-11 05:22:00'),
(687, 276, 314, 1, 0, '2015-06-11 05:22:00'),
(688, 65, 276, 2, 0, '2015-06-11 05:22:07'),
(689, 65, 325, 2, 0, '2015-06-11 05:22:07'),
(690, 276, 325, 2, 0, '2015-06-11 05:22:07'),
(691, 325, 170, 1, 0, '2015-06-11 05:22:24'),
(692, 276, 170, 1, 0, '2015-06-11 05:22:24'),
(693, 326, 327, 1, 0, '2015-06-11 05:28:34'),
(694, 326, 328, 1, 0, '2015-06-11 05:28:34'),
(695, 327, 328, 1, 0, '2015-06-11 05:28:34'),
(696, 65, 329, 1, 0, '2015-06-11 05:28:47'),
(697, 65, 326, 1, 0, '2015-06-11 05:28:47'),
(698, 65, 330, 1, 0, '2015-06-11 05:28:48'),
(699, 329, 326, 1, 0, '2015-06-11 05:28:48'),
(700, 329, 330, 1, 0, '2015-06-11 05:28:48'),
(701, 326, 330, 1, 0, '2015-06-11 05:28:48'),
(702, 166, 328, 1, 0, '2015-06-11 05:28:57'),
(703, 166, 327, 1, 0, '2015-06-11 05:28:57'),
(704, 166, 326, 1, 0, '2015-06-11 05:28:57'),
(705, 328, 327, 1, 0, '2015-06-11 05:28:57'),
(706, 328, 326, 1, 0, '2015-06-11 05:28:57'),
(707, 327, 326, 1, 0, '2015-06-11 05:28:57'),
(708, 331, 65, 1, 0, '2015-06-12 00:50:14'),
(709, 331, 332, 1, 0, '2015-06-12 00:50:14'),
(710, 331, 333, 1, 0, '2015-06-12 00:50:14'),
(711, 331, 334, 1, 0, '2015-06-12 00:50:14'),
(712, 331, 335, 1, 0, '2015-06-12 00:50:14'),
(713, 331, 336, 1, 0, '2015-06-12 00:50:14'),
(714, 65, 332, 1, 0, '2015-06-12 00:50:14'),
(715, 65, 333, 1, 0, '2015-06-12 00:50:15'),
(716, 65, 334, 1, 0, '2015-06-12 00:50:15'),
(717, 65, 335, 1, 0, '2015-06-12 00:50:15'),
(718, 65, 336, 1, 0, '2015-06-12 00:50:15'),
(719, 332, 333, 1, 0, '2015-06-12 00:50:15'),
(720, 332, 334, 1, 0, '2015-06-12 00:50:15'),
(721, 332, 335, 1, 0, '2015-06-12 00:50:15'),
(722, 332, 336, 1, 0, '2015-06-12 00:50:15'),
(723, 333, 334, 1, 0, '2015-06-12 00:50:15'),
(724, 333, 335, 1, 0, '2015-06-12 00:50:15'),
(725, 333, 336, 1, 0, '2015-06-12 00:50:15'),
(726, 334, 335, 1, 0, '2015-06-12 00:50:15'),
(727, 334, 336, 1, 0, '2015-06-12 00:50:15'),
(728, 335, 336, 1, 0, '2015-06-12 00:50:15');
-- --------------------------------------------------------
--
-- Table structure for table `password_resets`
--
CREATE TABLE IF NOT EXISTS `password_resets` (
`email` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`token` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
KEY `password_resets_email_index` (`email`),
KEY `password_resets_token_index` (`token`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `relationships`
--
CREATE TABLE IF NOT EXISTS `relationships` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`preceding` int(10) unsigned NOT NULL,
`truth` tinyint(1) unsigned NOT NULL,
`sentiment` int(11) NOT NULL,
`exclamation` int(10) unsigned NOT NULL,
`subject` int(10) unsigned NOT NULL,
`subject_amount` tinyint(1) unsigned NOT NULL,
`equate` tinyint(1) unsigned NOT NULL,
`possesses` int(1) unsigned NOT NULL,
`action_adjective` int(10) unsigned NOT NULL,
`adverb` int(10) unsigned NOT NULL,
`infinitive` int(10) unsigned NOT NULL,
`action` int(10) unsigned NOT NULL,
`preposition` int(10) unsigned NOT NULL,
`object_adjective` int(10) unsigned NOT NULL,
`object` int(10) unsigned NOT NULL,
`object_amount` int(10) unsigned NOT NULL,
`weight` int(10) unsigned NOT NULL,
`created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin AUTO_INCREMENT=3 ;
--
-- Dumping data for table `relationships`
--
INSERT INTO `relationships` (`id`, `preceding`, `truth`, `sentiment`, `exclamation`, `subject`, `subject_amount`, `equate`, `possesses`, `action_adjective`, `adverb`, `infinitive`, `action`, `preposition`, `object_adjective`, `object`, `object_amount`, `weight`, `created`) VALUES
(1, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '2015-06-16 00:06:22'),
(2, 0, 1, 0, 0, 2, 0, 1, 0, 0, 0, 0, 0, 0, 4, 5, 0, 0, '2015-06-16 00:07:02');
-- --------------------------------------------------------
--
-- Table structure for table `users`
--
CREATE TABLE IF NOT EXISTS `users` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`email` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`password` varchar(60) COLLATE utf8_unicode_ci NOT NULL,
`remember_token` varchar(100) COLLATE utf8_unicode_ci DEFAULT NULL,
`created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
`updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
PRIMARY KEY (`id`),
UNIQUE KEY `users_email_unique` (`email`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=2 ;
--
-- Dumping data for table `users`
--
INSERT INTO `users` (`id`, `name`, `email`, `password`, `remember_token`, `created_at`, `updated_at`) VALUES
(1, 'Cory', '<EMAIL>', <PASSWORD>', 'dguFSifWgjO01NBFx2vUTyKvd0pzjXWM4Yo8jPDgmrUbr4RA14tqxYOuGONu', '2015-04-28 05:13:02', '2015-05-25 21:51:21');
-- --------------------------------------------------------
--
-- Table structure for table `words`
--
CREATE TABLE IF NOT EXISTS `words` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`word` varchar(64) COLLATE utf8_bin NOT NULL,
`part` varchar(32) COLLATE utf8_bin NOT NULL,
`weight` int(10) unsigned NOT NULL,
`created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin AUTO_INCREMENT=6 ;
--
-- Dumping data for table `words`
--
INSERT INTO `words` (`id`, `word`, `part`, `weight`, `created`) VALUES
(1, ';qwertyuiop', 'noun', 1, '2015-06-16 00:06:22'),
(2, ';new_york_city', 'noun', 1, '2015-06-16 00:07:02'),
(3, '=is', 'equate', 1, '2015-06-16 00:07:02'),
(4, '*big', 'adjective', 1, '2015-06-16 00:07:02'),
(5, ';city', 'noun', 1, '2015-06-16 00:07:02');
/*!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 */;
|
USE tracker_db;
INSERT INTO department (name)
VALUES
("Engineering"),
("Finance"),
("Legal"),
("Sales");
INSERT INTO role(title, salary, department_id)
VALUES
("Lead Engineer", 120000, 1),
("Accountant Manager", 90000, 2),
("Legal Team Lead", 95000, 3),
("Sales Manager", 85000,4),
("Jr Developer", 50000, 1),
("Lawyer", 85000,3)
("Paralegal", 42000, 3)
("Scrum Master", 90000, 1);
INSERT INTO employee(first_name, last_name, role_id, manager_id)
VALUES
("John", "Adams", 1, NULL),
("Bob", "Evans", 2, NULL),
("Sally", "Jones", 3, NULL),
("Jolene", "Marks", 4, NULL),
("Harry", "James", 5, 1),
("Ellen", "Johnson", 8, 1)
("Kristen", "Carson", 7, 3); |
<reponame>pgt-2020-12-ilhamassegaf/SISFOPOLTEK2
-- phpMyAdmin SQL Dump
-- version 4.9.1
-- https://www.phpmyadmin.net/
--
-- Host: 127.0.0.1
-- Waktu pembuatan: 18 Mar 2020 pada 23.40
-- Versi server: 10.4.8-MariaDB
-- Versi PHP: 7.3.10
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: `tugassisfo`
--
-- --------------------------------------------------------
--
-- Struktur dari tabel `evaluasidosen`
--
CREATE TABLE `evaluasidosen` (
`id` int(11) NOT NULL,
`nama` text NOT NULL,
`mk` text NOT NULL,
`tahun` text NOT NULL,
`nim` text NOT NULL,
`a1` int(11) NOT NULL,
`a2` int(11) NOT NULL,
`a3` int(11) NOT NULL,
`a4` int(11) NOT NULL,
`a5` int(11) NOT NULL,
`a6` int(11) NOT NULL,
`a7` int(11) NOT NULL,
`a8` int(11) NOT NULL,
`a9` int(11) NOT NULL,
`a10` int(11) NOT NULL,
`a11` int(11) NOT NULL,
`b1` int(11) NOT NULL,
`b2` int(11) NOT NULL,
`b3` int(11) NOT NULL,
`b4` int(11) NOT NULL,
`b5` int(11) NOT NULL,
`b6` int(11) NOT NULL,
`b7` int(11) NOT NULL,
`b8` int(11) NOT NULL,
`b9` int(11) NOT NULL,
`c1` int(11) NOT NULL,
`c2` int(11) NOT NULL,
`c3` int(11) NOT NULL,
`c4` int(11) NOT NULL,
`d1` int(11) NOT NULL,
`d2` int(11) NOT NULL,
`d3` int(11) NOT NULL,
`d4` int(11) NOT NULL,
`d5` int(11) NOT NULL,
`d6` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
-- --------------------------------------------------------
--
-- Struktur dari tabel `logkondite`
--
CREATE TABLE `logkondite` (
`id` int(11) NOT NULL,
`nim` int(11) NOT NULL,
`nama` text NOT NULL,
`jenispoin` text NOT NULL,
`poin` int(11) NOT NULL,
`keterangan` text NOT NULL,
`tahun` int(11) NOT NULL,
`prodi` text NOT NULL,
`tanggal` date NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
-- --------------------------------------------------------
--
-- Struktur dari tabel `mahasiswa`
--
CREATE TABLE `mahasiswa` (
`nim` int(11) NOT NULL,
`nama` text NOT NULL,
`jeniskelamin` text NOT NULL,
`programstudi` text NOT NULL,
`tempatlahir` text NOT NULL,
`tanggallahir` date NOT NULL,
`tahunmasuk` int(11) NOT NULL,
`status` text NOT NULL,
`kelas` text NOT NULL,
`password` text NOT NULL,
`pembimbing` text NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data untuk tabel `mahasiswa`
--
INSERT INTO `mahasiswa` (`nim`, `nama`, `jeniskelamin`, `programstudi`, `tempatlahir`, `tanggallahir`, `tahunmasuk`, `status`, `kelas`, `password`, `pembimbing`) VALUES
(9090, 'a', 'a', 'a', 'a', '2020-03-02', 2017, 'asd', '3eb', 'zxc', 'as'),
(1702044, '<NAME>', 'Laki-Laki', 'Teknik Elektro', 'Batang', '2020-03-17', 2017, 'mahasiswaa', '3 Elektronika B', 'najibjul', 'Ihsan Auditia Akhinov'),
(1702045, 'ilham egap', 'Laki-laki', 'Teknik Elektronika', 'Tangerang', '2020-03-16', 0, 'mahasiswa', '3 Elektronika B', 'egap', 'Ihsan Auditia Akhinov');
-- --------------------------------------------------------
--
-- Struktur dari tabel `nilaiakademik`
--
CREATE TABLE `nilaiakademik` (
`id` int(11) NOT NULL,
`nim` int(11) NOT NULL,
`nama` text NOT NULL,
`uts` text NOT NULL,
`uas` text NOT NULL,
`tugas` text NOT NULL,
`kuis` text NOT NULL,
`akhir` text NOT NULL,
`huruf` text NOT NULL,
`angka` double NOT NULL,
`kodemk` text NOT NULL,
`namamk` text NOT NULL,
`sks` int(11) NOT NULL,
`tahunakademik` int(11) NOT NULL,
`prodi` text NOT NULL,
`dosen` text NOT NULL,
`kelas` text NOT NULL,
`status` text NOT NULL,
`statusmk` text NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Indexes for dumped tables
--
--
-- Indeks untuk tabel `logkondite`
--
ALTER TABLE `logkondite`
ADD PRIMARY KEY (`id`);
--
-- Indeks untuk tabel `mahasiswa`
--
ALTER TABLE `mahasiswa`
ADD PRIMARY KEY (`nim`);
--
-- AUTO_INCREMENT untuk tabel yang dibuang
--
--
-- AUTO_INCREMENT untuk tabel `logkondite`
--
ALTER TABLE `logkondite`
MODIFY `id` int(11) 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 */;
|
<filename>sql/teste.sql
CREATE TABLE usuarios(
nome VARCHAR(50),
email VARCHAR(100),
idade INT
);
INSERT INTO usuarios(nome, email, idade) VALUES (
'Wendel',
'<EMAIL>',
19
);
INSERT INTO usuarios(nome, email, idade) VALUES (
'Ella',
'<EMAIL>',
23
);
INSERT INTO usuarios(nome, email, idade) VALUES (
'Mel',
'<EMAIL>',
1
);
INSERT INTO usuarios(nome, email, idade) VALUES (
'Luna',
'<EMAIL>',
5
); |
CREATE DATABASE IF NOT EXISTS `footballgamble` /*!40100 DEFAULT CHARACTER SET latin1 */;
USE `footballgamble`;
-- MySQL dump 10.13 Distrib 5.5.62, for debian-linux-gnu (x86_64)
--
-- Host: footballgamble.cu4zm1grealp.eu-west-3.rds.amazonaws.com Database: footballgamble
-- ------------------------------------------------------
-- Server version 5.6.40-log
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `teams`
--
DROP TABLE IF EXISTS `teams`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `teams` (
`id` int(11) NOT NULL,
`area_id` int(11) NOT NULL,
`name` varchar(255) NOT NULL,
`short_name` varchar(100) DEFAULT NULL,
`tla` varchar(45) DEFAULT NULL,
`crest_url` varchar(500) DEFAULT NULL,
`address` varchar(1000) DEFAULT NULL,
`phone` varchar(45) DEFAULT NULL,
`website` varchar(255) DEFAULT NULL,
`email` varchar(100) DEFAULT NULL,
`founded` varchar(45) DEFAULT NULL,
`club_colors` varchar(100) DEFAULT NULL,
`venue` varchar(255) DEFAULT NULL,
`last_updated` datetime DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `teams`
--
LOCK TABLES `teams` WRITE;
/*!40000 ALTER TABLE `teams` DISABLE KEYS */;
INSERT INTO `teams` VALUES (2,2088,'TSG 1899 Hoffenheim','Hoffenheim','TSG','https://upload.wikimedia.org/wikipedia/commons/e/e7/Logo_TSG_Hoffenheim.svg','Horrenberger Straße 58 Zuzenhausen 74939','+49 (07261) 94930','http://www.achtzehn99.de','<EMAIL>','1921','Blue / White','PreZero Arena','2019-05-30 00:00:00'),(4,2088,'BV Borussia 09 Dortmund','Dortmund','BVB','http://upload.wikimedia.org/wikipedia/commons/6/67/Borussia_Dortmund_logo.svg','Rheinlanddamm 207-209 Dortmund 44137','+49 (231) 90200','http://www.bvb.de','<EMAIL>','1909','Black / Yellow','Signal Iduna Park','2019-05-30 00:00:00'),(5,2088,'FC Bayern München','Bayern M','FCB','https://upload.wikimedia.org/wikipedia/commons/1/1b/FC_Bayern_M%C3%BCnchen_logo_%282017%29.svg','Säbenerstr. 51 München 81547','+49 (089) 699310','http://www.fcbayern.de','<EMAIL>','1900','Red / White / Blue','Allianz Arena','2019-05-30 00:00:00'),(6,2088,'FC Schalke 04','Schalke','S04','https://upload.wikimedia.org/wikipedia/commons/6/6d/FC_Schalke_04_Logo.svg','Ernst-Kuzorra-Weg 1 Gelsenkirchen 45891','+49 (0209) 36180','http://www.schalke04.de','<EMAIL>','1904','Blue / White','Veltins-Arena','2019-05-30 00:00:00'),(57,2072,'Arsenal FC','Arsenal','ARS','http://upload.wikimedia.org/wikipedia/en/5/53/Arsenal_FC.svg','75 Drayton Park London N5 1BU','+44 (020) 76195003','http://www.arsenal.com','<EMAIL>','1886','Red / White','Emirates Stadium','2019-08-08 00:00:00'),(58,2072,'Aston Villa FC','Aston Villa','AST','http://upload.wikimedia.org/wikipedia/de/9/9f/Aston_Villa_logo.svg','Villa Park Birmingham B6 6HE','+44 (0121) 3272299','http://www.avfc.co.uk',NULL,'1872','Claret / Sky Blue','Villa Park','2019-08-08 00:00:00'),(61,2072,'Chelsea FC','Chelsea','CHE','http://upload.wikimedia.org/wikipedia/de/5/5c/Chelsea_crest.svg','Fulham Road London SW6 1HS','+44 (0871) 9841955','http://www.chelseafc.com',NULL,'1905','Royal Blue / White','Stamford Bridge','2019-08-08 00:00:00'),(62,2072,'Everton FC','Everton','EVE','http://upload.wikimedia.org/wikipedia/de/f/f9/Everton_FC.svg','Goodison Park Liverpool L4 4EL','+44 (0871) 6631878','http://www.evertonfc.com','<EMAIL>','1878','Blue / White','Goodison Park','2019-08-08 00:00:00'),(64,2072,'Liverpool FC','Liverpool','LIV','http://upload.wikimedia.org/wikipedia/de/0/0a/FC_Liverpool.svg','Anfield Road Liverpool L4 OTH','+44 (0844) 4993000','http://www.liverpoolfc.tv','<EMAIL>','1892','Red / White','Anfield','2019-05-30 00:00:00'),(65,2072,'Manchester City FC','Man City','MCI','https://upload.wikimedia.org/wikipedia/en/e/eb/Manchester_City_FC_badge.svg','SportCity Manchester M11 3FF','+44 (0870) 0621894','https://www.mancity.com','<EMAIL>','1880','Sky Blue / White','Etihad Stadium','2019-05-30 00:00:00'),(66,2072,'Manchester United FC','Man United','MUN','http://upload.wikimedia.org/wikipedia/de/d/da/Manchester_United_FC.svg','S<NAME> Way Manchester M16 0RA','+44 (0161) 8688000','http://www.manutd.com','<EMAIL>','1878','Red / White','Old Trafford','2019-05-30 00:00:00'),(67,2072,'Newcastle United FC','Newcastle','NEW','http://upload.wikimedia.org/wikipedia/de/5/56/Newcastle_United_Logo.svg','Sports Direct Arena Newcastle upon Tyne NE1 4ST',NULL,'http://www.nufc.co.uk','<EMAIL>','1881','Black / White','St. James\' Park','2019-08-08 00:00:00'),(68,2072,'Norwich City FC','Norwich','NOR','http://upload.wikimedia.org/wikipedia/de/8/8c/Norwich_City.svg','Carrow Road Norwich NR1 1JE',NULL,'http://www.canaries.co.uk','<EMAIL>','1902','Yellow / Green','Carrow Road','2019-08-08 00:00:00'),(73,2072,'Tottenham Hotspur FC','Tottenham','TOT','http://upload.wikimedia.org/wikipedia/de/b/b4/Tottenham_Hotspur.svg','<NAME> Way, 748 High Road London N17 OAP','+44 (0844) 4995000','http://www.tottenhamhotspur.com','<EMAIL>','1882','Navy Blue / White','Tottenham Hotspur Stadium','2019-05-30 00:00:00'),(76,2072,'Wolverhampton Wanderers FC','Wolverhampton','WOL','https://upload.wikimedia.org/wikipedia/en/f/fc/Wolverhampton_Wanderers.svg','Waterloo Road Wolverhampton WV1 4QR','+44 (0871) 2222220','http://www.wolves.co.uk','<EMAIL>','1877','Black / Gold','Molineux Stadium','2019-08-08 00:00:00'),(77,2224,'Athletic Club','Athletic','ATH','https://upload.wikimedia.org/wikipedia/en/9/98/Club_Athletic_Bilbao_logo.svg','Ibaigane, Alame<NAME>, 23 Bilbao 48009','+34 (944) 240877','http://www.athletic-club.eus','<EMAIL>','1898','Red / White / Black','San Mamés','2019-08-08 00:00:00'),(78,2224,'Club Atlético de Madrid','Atleti','ATM','http://upload.wikimedia.org/wikipedia/de/c/c1/Atletico_Madrid_logo.svg','Paseo Virgen del Puerto, 67 Madrid 28005','+34 (913) 669048','http://www.clubatleticodemadrid.com','<EMAIL>','1903','Red / White / Blue','Estadio Wanda Metropolitano','2019-05-30 00:00:00'),(79,2224,'CA Osasuna','Osasuna','OSA','http://upload.wikimedia.org/wikipedia/de/c/ca/Atletico_Osasuna.svg','Calle del Sadar, s/n Pamplona 31006','+34 (948) 152636','http://www.osasuna.es','<EMAIL>','1920','Red / Navy Blue','Estadio El Sadar','2019-08-08 00:00:00'),(80,2224,'RCD Espanyol de Barcelona','Espanyol','ESP','http://upload.wikimedia.org/wikipedia/de/a/a7/RCD_Espanyol_De_Barcelona.svg','Avenida Baix Llobregat, 100 Cornellà de Llobregat 08940','+34 (932) 927700','http://www.rcdespanyol.com','<EMAIL>','1900','Blue / White','RCDE Stadium','2019-08-08 00:00:00'),(81,2224,'FC Barcelona','Barça','FCB','http://upload.wikimedia.org/wikipedia/de/a/aa/Fc_barcelona.svg','Avenida Arístides Maillol s/n Barcelona 08028','+34 (902) 189900','http://www.fcbarcelona.com','<EMAIL>','1899','Red / Navy Blue / Orange','Camp Nou','2019-05-30 00:00:00'),(82,2224,'Getafe CF','Getafe','GET','https://upload.wikimedia.org/wikipedia/en/7/7f/Getafe_logo.png','Avenida Teresa de Calcuta, s/n Getafe 28903','+34 (916) 959643','http://www.getafecf.<EMAIL>','<EMAIL>','1946','Blue / White','Col<NAME>','2019-08-08 00:00:00'),(83,2224,'Granada CF','Granada','GRA','http://upload.wikimedia.org/wikipedia/de/d/d3/Granada_CF.svg','Calle del Pintor <NAME>, s/n Granada 18007','+34 (958) 253300','http://www.granadacf.es','<EMAIL>','1931','Red / White','Estadio Nuevo Los Cármenes','2019-08-08 00:00:00'),(86,2224,'Real Madrid CF','Real Madrid','RMA','http://upload.wikimedia.org/wikipedia/de/3/3f/Real_Madrid_Logo.svg','Avenida Concha Espina, 1 Madrid 28036','+34 (913) 984300','http://www.realmadrid.com','<EMAIL>','1902','White / Purple','Estadio Santiago Bernabéu','2019-05-30 00:00:00'),(88,2224,'Levante UD','Levante','LEV','http://upload.wikimedia.org/wikipedia/de/1/1f/Levante_ud.svg','Calle San Vicente de Paúl, 44 Valencia 46019','+34 (902) 220304','http://www.levanteud.com','<EMAIL>','1909','Crimson / Blue','Estadio Ciudad de Valencia','2019-08-08 00:00:00'),(89,2224,'RCD Mallorca','Mallorca','MAL','http://upload.wikimedia.org/wikipedia/de/e/e0/Rcd_mallorca.svg','Son Moix, Calle <NAME>, s/n Palma de Mallorca 07011','+34 (971) 221221','http://www.rcdmallorca.es','<EMAIL>','1916','Red / Black','Iber<NAME>','2019-08-08 00:00:00'),(90,2224,'Real Betis Balompié','Real Betis','BET','http://upload.wikimedia.org/wikipedia/de/4/43/Real_Betis.svg','Avenida de Heliópolis, s/n Sevilla 41012','+34 (902) 191907','http://www.realbetisbalompie.es','<EMAIL>','1907','Green / White','Estadio Benito Villamarín','2019-08-08 00:00:00'),(92,2224,'Real Sociedad de Fútbol','Real Sociedad','RSO','http://upload.wikimedia.org/wikipedia/de/5/55/Real_Sociedad_San_Sebasti%C3%A1n.svg','Anoeta Pasalekua, 1 San Sebastián 20014','+34 (943) 462833','http://www.realsociedad.com','<EMAIL>','1903','Blue / White','Estadio Municipal de Anoeta','2019-08-08 00:00:00'),(94,2224,'Villarreal CF','Villarreal','VIL','http://upload.wikimedia.org/wikipedia/de/7/70/Villarreal_CF_logo.svg','<NAME>, s/n Villarreal 12540','+34 (964) 500250','http://www.villarrealcf.es','<EMAIL>','1923','Yellow / Blue','Estadio de la Cerámica','2019-08-08 00:00:00'),(95,2224,'Valencia CF','Valencia','VAL','http://upload.wikimedia.org/wikipedia/de/7/75/FC_Valencia.svg','Plaza del Valencia Club de Fútbol, 2 Valencia 46010','+34 (902) 011919','http://www.valenciacf.com','<EMAIL>','1919','White / Orange / Black','Estadio de Mestalla','2019-05-30 00:00:00'),(98,2114,'AC Milan','Milan','MIL','http://upload.wikimedia.org/wikipedia/de/9/9e/AC_Mailand_Logo.svg','Via Filippo Turati 3 Milano 20121','+39 (02) 62281','http://www.acmilan.com',NULL,'1899','Red / Black','Stad<NAME>','2019-08-08 00:00:00'),(99,2114,'ACF Fiorentina','Fiorentina','FIO','https://upload.wikimedia.org/wikipedia/en/thumb/b/ba/ACF_Fiorentina_2.svg/261px-ACF_Fiorentina_2.svg','Viale <NAME> 4 Firenze 50137','+39 (055) 5030190','http://www.acffiorentina.it','<EMAIL>','1926','Purple / White','Stadio Artemio Franchi','2019-08-08 00:00:00'),(100,2114,'AS Roma','Roma','ROM','http://upload.wikimedia.org/wikipedia/de/3/32/AS_Rom.svg','Via di Trigoria km. 3,600 Roma 00128','+39 (06) 501911','http://www.asroma.it','<EMAIL>','1927','Maroon / Orange / White','Stadio Olimpico','2019-05-30 00:00:00'),(102,2114,'Atalanta BC','Atalanta','ATA','http://upload.wikimedia.org/wikipedia/de/2/28/Atalanta_BC.svg','Corso Europa, 46, Zingonia Ciserano 24040','+39 (035) 4186211','http://www.atalanta.it','<EMAIL>','1904','Black / Blue','Stadio Atleti Azzurri d\'Italia','2019-08-08 00:00:00'),(103,2114,'Bologna FC 1909','Bologna','BOL','http://upload.wikimedia.org/wikipedia/de/9/92/FC_Bologna.svg','Via Casteldebole 10 Bologna 40132','+39 (051) 6111111','http://www.bolognafc.it','<EMAIL>','1909','Red / Blue / White','Stadio Renato Dall\'Ara','2019-08-08 00:00:00'),(104,2114,'Cagliari Calcio','Cagliari','CAG','http://upload.wikimedia.org/wikipedia/de/3/3d/Cagliari_Calcio.svg','Viale la Plaia 15 Cagliari 09123','+39 (070) 604 201','http://www.cagliaricalcio.net','<EMAIL>','1920','Red / Navy Blue / White','Sar<NAME>','2019-08-08 00:00:00'),(107,2114,'Genoa CFC','Genoa','GEN','http://upload.wikimedia.org/wikipedia/de/7/76/Genoa_CFC.svg','Via Ronchi, 67 Genova 16155','+39 (010) 612831','http://www.genoacfc.it','<EMAIL>','1893','Red / Navy Blue','<NAME>','2019-08-08 00:00:00'),(108,2114,'FC Internazionale Milano','Inter','INT','https://upload.wikimedia.org/wikipedia/en/thumb/0/0b/Inter_Milan.svg/316px-Inter_Milan.svg','<NAME> II 9 Milano 20122','+39 (02) 77151','http://www.inter.it','<EMAIL>','1908','Blue / Black','<NAME>','2019-05-30 00:00:00'),(109,2114,'Juventus FC','Juve','JUV','http://upload.wikimedia.org/wikipedia/de/d/d2/Juventus_Turin.svg','<NAME>, 32 Torino 10128','+39 (011) 65631','http://www.juventus.com','<EMAIL>','1897','White / Black','Allianz Stadium','2019-05-30 00:00:00'),(110,2114,'SS Lazio','Lazio','LAZ','http://upload.wikimedia.org/wikipedia/de/thumb/4/47/Lazio_Rom.svg/500px-Lazio_Rom.svg.png','Via di Santa Cornelia, 1000 Formello 00060','+39 (06) 976071','http://www.sslazio.it','<EMAIL>','1900','White / Sky Blue','Stadio Olimpico','2019-08-08 00:00:00'),(112,2114,'Parma Calcio 1913','Parma','PAR','http://upload.wikimedia.org/wikipedia/de/e/e2/FC_Parma.svg','Strada Carlo Pisacane, 4 Parma 43121','+39 (521) 170591','http://www.parmacalcio1913.com','<EMAIL>','1913','White / Black','Stadio Ennio Tardini','2019-08-08 00:00:00'),(113,2114,'SSC Napoli','Napoli','NAP','http://upload.wikimedia.org/wikipedia/commons/2/28/S.S.C._Napoli_logo.svg','Centro Tecnico di Castel Volturno, Via S.S. Domitana, Km 35 Castel Volturno 81030','+39 (081) 5095344','http://www.sscnapoli.it','<EMAIL>','1904','Sky Blue / White','Stadio San Paolo','2019-05-30 00:00:00'),(115,2114,'Udinese Calcio','Udinese','UDI','http://upload.wikimedia.org/wikipedia/de/b/b1/Udinese_Calcio.svg','Via Agostino e Angelo Candolini 2 Udine 33100','+39 (0432) 544911','http://www.udinese.it','<EMAIL>','1896','White / Black','Dacia Arena','2019-08-08 00:00:00'),(250,2224,'Real Valladolid CF','Valladolid','VLD','http://upload.wikimedia.org/wikipedia/de/6/6e/Real_Valladolid_Logo.svg','Avenida del Mundial, 82 Valladolid 47014','+34 (983) 360342','http://www.realvalladolid.es','<EMAIL>','1928','Violet / White','Estadio Municipal José Zorrilla','2019-08-08 00:00:00'),(263,2224,'Deportivo Alavés','Alavés','ALA','http://upload.wikimedia.org/wikipedia/en/2/2e/Deportivo_Alaves_logo.svg','Mendizorroza, Paseo Cervantes, s/n Vitoria 01007','+34 (945) 131018','http://www.alaves.com','<EMAIL>','1921','Blue / White','Estadio de Mendizorroza','2019-08-08 00:00:00'),(278,2224,'SD Eibar','Eibar','EIB','http://upload.wikimedia.org/wikipedia/en/7/75/SD_Eibar_logo.svg','<NAME>, 2 Eibar 20600','+34 (943) 201831','http://www.sdeibar.com','<EMAIL>','1940','Red / Blue','Estadio Municipal de Ipurúa','2019-08-08 00:00:00'),(328,2072,'Burnley FC','Burnley','BUR','https://upload.wikimedia.org/wikipedia/en/0/02/Burnley_FC_badge.png','Harry Potts Way Burnley BB10 4BX','+44 (0871) 2211882','http://www.burnleyfootballclub.com','<EMAIL>','1881','Claret / Sky Blue','Turf Moor','2019-08-08 00:00:00'),(338,2072,'Leicester City FC','Leicester City','LEI','http://upload.wikimedia.org/wikipedia/en/6/63/Leicester02.png','The Walkers Stadium, Filbert Way Leicester LE2 7FL','+44 (0844) 8156000','http://www.lcfc.com',NULL,'1884','Royal Blue / White','King Power Stadium','2019-08-08 00:00:00'),(340,2072,'Southampton FC','Southampton','SOU','http://upload.wikimedia.org/wikipedia/de/c/c9/FC_Southampton.svg','Britannia Road Southampton SO14 5FP',NULL,'http://www.saintsfc.co.uk','<EMAIL>','1885','Red / White / Black','St. Mary\'s Stadium','2019-08-08 00:00:00'),(346,2072,'Watford FC','Watford','WAT','https://upload.wikimedia.org/wikipedia/en/e/e2/Watford.svg','Vicarage Road Watford WD18 0ER',NULL,'http://www.watfordfc.com','<EMAIL>','1881','Yellow / Black','Vicarage Road Stadium','2019-08-08 00:00:00'),(354,2072,'Crystal Palace FC','Crystal Palace','CRY','http://upload.wikimedia.org/wikipedia/de/b/bf/Crystal_Palace_F.C._logo_%282013%29.png','Whitehorse Lane London SE25 6PU','+44 (020) 87686000','http://www.cpfc.co.uk','<EMAIL>','1905','Red / Blue','Selhurst Park','2019-08-08 00:00:00'),(356,2072,'Sheffield United FC','Sheffield Utd','SHE','https://upload.wikimedia.org/wikipedia/en/9/9c/Sheffield_United_FC_logo.svg','Bramall Lane Sheffield, Yorkshire S2 4SU','+44 (0871) 9951899','http://www.sufc.co.uk','<EMAIL>',NULL,'Red / White / Black','Bramall Lane','2019-08-08 00:00:00'),(397,2072,'Brighton & Hove Albion FC','Brighton Hove','BHA','https://upload.wikimedia.org/wikipedia/en/f/fd/Brighton_%26_Hove_Albion_logo.svg','44 North Road Brighton & Hove BN1 1YR','+44 (01273) 878288','http://www.seagulls.co.uk','<EMAIL>','1898','Blue / White','The American Express Community Stadium','2019-08-08 00:00:00'),(449,2114,'Brescia Calcio','Brescia','BRE','http://upload.wikimedia.org/wikipedia/de/2/23/Brescia_Calcio.svg','Via Novagani, 8 Brescia 25127','+39 (030) 2410751','http://www.bresciacalcio.it','<EMAIL>','1907','Blue / White','Stad<NAME>','2019-08-08 00:00:00'),(450,2114,'Hellas Verona FC','Verona','VER','http://upload.wikimedia.org/wikipedia/de/a/a2/Hellas_Verona_1903_FC.svg','Via Evangelista Torricelli, 37 Verona 37136','+39 (045) 8186111','http://www.hellasverona.it','<EMAIL>','1903','Yellow / Blue','Stadio Marc\'Antonio Bentegodi','2019-08-08 00:00:00'),(471,2114,'US Sassuolo Calcio','Sassuolo','SAS','http://upload.wikimedia.org/wikipedia/de/a/a3/US_Sassuolo_Calcio.svg','Piazza Risorgimento, 47 Sassuolo 41049','+39 (0536) 882645','http://www.sassuolocalcio.it','<EMAIL>','1922','Green / Black','Stadio Città del Tricolore','2019-08-08 00:00:00'),(496,2187,'Rio Ave FC','R<NAME>','RIO',NULL,'Praça da República, n.º35, Apartado 42 Vila do Conde 4481-909','+351 (252) 640590','http://www.rioave-fc.pt','<EMAIL>','1939','Green / White','Estádio do Rio Ave Futebol Clube','2019-08-08 00:00:00'),(498,2187,'Sporting Clube de Portugal','Sporting CP','SPO','https://upload.wikimedia.org/wikipedia/en/3/3e/Sporting_Clube_de_Portugal.png','Edifício Visconde de Alvalade, Apartado 42099 Lisboa 1601-801','+351 (217) 516000','http://www.sporting.pt','<EMAIL>','1906','Green / White','Estádio José Alvalade','2019-08-08 00:00:00'),(503,2187,'FC Porto','Porto','FCP','http://upload.wikimedia.org/wikipedia/de/e/ed/FC_Porto_1922-2005.svg','Estádio do Dragão, Entrada Poente - Piso 3 Porto 4350-451','+351 (022) 5070500','http://www.fcporto.pt','<EMAIL>','1893','Blue / White','Estádio Do Dragão','2019-05-30 00:00:00'),(507,2187,'FC Paços de Ferreira','Paços Ferreira','PAÇ','http://upload.wikimedia.org/wikipedia/de/f/f2/FC_Pacos_de_Ferreira.svg','Rua do Estadio, Apartado 26 Paços de Ferreira 4594-909','+351 (255) 965230','http://www.fcpf.pt','<EMAIL>','1950','Green / Yellow','Estádio da Capital do Móvel','2019-08-08 00:00:00'),(511,2081,'Toulouse FC','Toulouse FC','TFC','https://upload.wikimedia.org/wikipedia/fr/thumb/8/8b/Logo_Toulouse_FC_2018.svg/600px-Logo_Toulouse_FC_2018.svg','1 allée <NAME>, BP 54023 Toulouse 31028','+33 (0892) 704000','http://www.tfc.info',NULL,'1937','Violet / White','Stadium Municipal','2019-08-08 00:00:00'),(512,2081,'Stade Brestois 29','Brest','SBR','http://upload.wikimedia.org/wikipedia/de/c/cb/Stade_Brestois_29.svg','Port de Plaisance, 470 bis rue Alain Colas Brest 29200','+33 (0298) 022030','http://www.stade-brestois.com','<EMAIL>','1903','White / Red','Stade Francis-Le Blé','2019-08-08 00:00:00'),(516,2081,'Olympique de Marseille','Marseille','OM','https://upload.wikimedia.org/wikipedia/fr/thumb/4/43/Logo_Olympique_de_Marseille.svg/130px-Logo_Olympique_de_Marseille.svg.png','La Commanderie, 33, traverse de La Martine Marseille 13012','+33 (049) 1765609','http://www.om.net','<EMAIL>','1898','White / Blue','Orange Vélodrome','2019-08-08 00:00:00'),(518,2081,'Montpellier HSC','Montpellier','MON','https://upload.wikimedia.org/wikipedia/commons/thumb/9/99/Montpellier_H%C3%A9rault_Sport_Club_%28logo%2C_2000%29.svg/130px-Montpellier_H%C3%A9rault_Sport_Club_%28logo%2C_2000%29.svg','Domaine de Grammont CS 79041 Montpellier 34967','+33 (0467) 154600','http://www.mhscfoot.com','<EMAIL>','1970','Blue / Orange','Stade de la Mosson','2019-08-08 00:00:00'),(521,2081,'Lille OSC','Lille OSC','LIL','https://upload.wikimedia.org/wikipedia/fr/thumb/6/62/Logo_LOSC_Lille_2018.svg/130px-Logo_LOSC_Lille_2018.svg','Grand Rue 59, 780 Camphin-en-Pévèle Lille null','+33 (0892) 685672','http://www.losc.fr','losclillemetropole.500054@ligue59-62.fr','1944','White / Red','Stade Pierre-Mauroy','2019-08-08 00:00:00'),(522,2081,'OGC de Nice Côte d\'Azur','OGC Nice','NIC','https://upload.wikimedia.org/wikipedia/fr/thumb/b/b1/Logo_OGC_Nice_2013.svg/130px-Logo_OGC_Nice_2013.svg','35, avenue du Ray Nice 06100','+33 (089) 2700238','http://www.ogcnice.com','<EMAIL>','1904','Red / Black','Stade de Nice','2019-08-08 00:00:00'),(523,2081,'<NAME>','Olympique Lyon','COL','https://upload.wikimedia.org/wikipedia/fr/thumb/e/e2/Olympique_lyonnais_%28logo%29.svg/130px-Olympique_lyonnais_%28logo%29.svg','350 avenue Jean Jaurès Lyon 69007','+33 (0426) 296532','http://www.olweb.fr','<EMAIL>','1896','White / Red / Blue','Groupama Stadium','2019-05-30 00:00:00'),(524,2081,'Paris Saint-Germain FC','PSG','PSG','https://upload.wikimedia.org/wikipedia/fr/thumb/8/86/Paris_Saint-Germain_Logo.svg/130px-Paris_Saint-Germain_Logo.svg','24, rue de Commandant Guibaud Paris 7501','+33 (0139) 733467','http://www.psg.fr','<EMAIL>','1904','Red / Blue / White','Parc des Princes','2019-06-06 00:00:00'),(526,2081,'FC Girondins de Bordeaux','Bordeaux','BOR','https://upload.wikimedia.org/wikipedia/fr/thumb/7/76/Logo_des_Girondins_de_Bordeaux.svg/130px-Logo_des_Girondins_de_Bordeaux.svg','R<NAME>, Le H<NAME> 33185','+33 (0556) 161122','http://www.girondins.com','<EMAIL>','1881','Blue / White','Stade Matmut-Atlantique','2019-08-08 00:00:00'),(527,2081,'AS Saint-Étienne','Saint-Étienne','STE','https://upload.wikimedia.org/wikipedia/commons/thumb/2/2c/Logo_AS_Saint-%C3%89tienne.svg/130px-Logo_AS_Saint-%C3%89tienne.svg.png','11 rue de Verdun L\'Étrat 42580','+33 (0477) 929899','http://www.asse.fr','<EMAIL>','1919','Green / White','Stade Geoffroy-Guichard','2019-08-08 00:00:00'),(528,2081,'<NAME> Côte d\'Or','<NAME>','DFC','https://upload.wikimedia.org/wikipedia/fr/thumb/c/c9/LogoDFCO.svg/130px-LogoDFCO.svg','9 rue <NAME>on 21000','+33 (0380) 650977','http://www.dfco.fr','<EMAIL>','1936','Red / White','Stade Gaston Gérard','2019-08-08 00:00:00'),(529,2081,'Stade Rennais FC 1901','<NAME>','SRF','https://upload.wikimedia.org/wikipedia/fr/thumb/e/e9/Logo_Stade_Rennais_FC.svg/130px-Logo_Stade_Rennais_FC.svg','La Piverdière - Chemin de la Taupinais CS 5390 Rennes 35039','+33 (0820) 000035','http://www.staderennais.com','<EMAIL>','1901','Red / Black','Ro<NAME>','2019-08-08 00:00:00'),(530,2081,'Amiens SC','Amiens SC','ASC','https://upload.wikimedia.org/wikipedia/fr/thumb/e/ec/Logo_Amiens_SC_1998.svg/130px-Logo_Amiens_SC_1998.svg','Stade de la Licorne Rue du Chapitre Amiens 80016','+33 (0322) 665800','http://www.amiensfootball.com','<EMAIL>','1901','Black / White / Grey','Stade de la Licorne','2019-08-08 00:00:00'),(532,2081,'Angers SCO','Angers SCO','ANG','https://upload.wikimedia.org/wikipedia/fr/thumb/3/34/Logo_SCO_Angers.svg/130px-Logo_SCO_Angers.svg','73 boulevard Jacques Portet, BP 20212 Angers 49002','+33 (0892) 390820','http://www.angers-sco.fr',NULL,'1919','Black / White / Gold','Stade Raymond Kopa','2019-08-08 00:00:00'),(543,2081,'FC Nantes','FC Nantes','NAN','https://upload.wikimedia.org/wikipedia/fr/thumb/2/21/Logo_FC_Nantes_2008.svg/130px-Logo_FC_Nantes_2008.svg','Centre Sportif José Arribas, La Jonelière Nantes 44240','+33 (0892) 707937','http://www.fcnantes.com','<EMAIL>','1943','Green / Yellow','Stade de la Beaujoire - Louis Fonteneau','2019-08-08 00:00:00'),(545,2081,'FC Metz','FC Metz','FCM','http://upload.wikimedia.org/wikipedia/de/b/ba/FC_Metz_Logo.svg','3, allée Saint Symphonien, BP 40292 Metz 5700','+33 (0387) 667215','http://www.fcmetz.com','<EMAIL>','1919','Red / Blue','Stade Saint-Symphorien','2019-08-08 00:00:00'),(547,2081,'Stade de Reims','Stade de Reims','SDR','https://upload.wikimedia.org/wikipedia/fr/thumb/0/0e/Stade_Reims_1999.svg/130px-Stade_Reims_1999.svg','26 rue Robert-Fulton Reims 51100','+33 (0891) 024933','http://www.stade-de-reims.com','<EMAIL>','1909','Red / White / Cyan','Stade Auguste-Delaune II','2019-08-08 00:00:00'),(548,2152,'AS Monaco FC','AS Monaco','ASM','https://upload.wikimedia.org/wikipedia/fr/thumb/b/ba/AS_Monaco_FC.svg/130px-AS_Monaco_FC.svg','Avenue des Castellans Monaco 98000','+33 (377) 92057473','http://www.asmonaco.com',NULL,'1919','Red / White','Stade Louis II.','2019-05-30 00:00:00'),(556,2081,'<NAME>','<NAME>.','NÎM','https://upload.wikimedia.org/wikipedia/fr/thumb/f/f0/N%C3%AEmes_Olympique_logo_2018.svg/130px-N%C3%AEmes_Olympique_logo_2018.svg','Stade des Costières 123<br>Avenue de la Bouvine Nîmes 30900','+33 (0466) 290876','http://www.nimes-olympique.com','<EMAIL>','1901','Red / White','Stade des Costières','2019-08-08 00:00:00'),(558,2224,'RC Celta de Vigo','Celta','CEL','http://upload.wikimedia.org/wikipedia/de/0/0c/Celta_Vigo.svg','Calle del Conde de Gondomar, 1 Vigo 36203','+34 (986) 110900','http://www.celtavigo.net','<EMAIL>','1923','Sky Blue / White','Estadio de Balaídos','2019-08-08 00:00:00'),(559,2224,'Sevilla FC','Sevilla FC','SEV','https://upload.wikimedia.org/wikipedia/de/c/c0/FC_Sevilla.svg','Calle Sevilla Fútbol Club, s/n Sevilla 41005','+34 (902) 510011','http://www.sevillafc.es','<EMAIL>','1905','White / Red','<NAME>','2019-08-08 00:00:00'),(563,2072,'West Ham United FC','West Ham','WHU','http://upload.wikimedia.org/wikipedia/de/e/e0/West_Ham_United_FC.svg','Green Street, Upton Park London E13 9AZ','+44 (020) 85482794','http://www.whufc.com','<EMAIL>','1895','Claret / Sky Blue','London Stadium','2019-08-08 00:00:00'),(576,2081,'RC Strasbourg Alsace','RC Strasbourg','RCS','https://upload.wikimedia.org/wikipedia/fr/thumb/1/1a/Racing_Club_de_Strasbourg_Alsace_%28RCSA%29_logo.svg/130px-Racing_Club_de_Strasbourg_Alsace_%28RCSA%29_logo.svg','12 Rue Extenwoerth Strasbourg 67000',NULL,'http://www.rcstrasbourgalsace.fr',NULL,'1906','Blue / White','Stade de la Meinau','2019-08-08 00:00:00'),(583,2187,'Moreirense FC','Moreirense','MOR','https://upload.wikimedia.org/wikipedia/pt/8/8c/Logo_Moreirense.svg','Avenida Comendador <NAME> 4815-270','+351 (253) 561836','http://www.moreirensefc.pt','<EMAIL>','1938','Green / White','P.D. Comendador <NAME>','2019-08-08 00:00:00'),(584,2114,'UC Sampdoria','Sampdoria','SAM',NULL,'Piazza Borgo Pila, 39 Genova 16129','+39 (010) 5316711','http://www.sampdoria.it','<EMAIL>','1946','Blue / White / Red','Stadio Comunale Luigi Ferraris','2019-08-08 00:00:00'),(586,2114,'Torino FC','Torino','TOR','http://upload.wikimedia.org/wikipedia/de/2/2e/Torino_FC_Logo.svg','Via Arcivescovado 1 Torino 10122','+39 (01) 11970034','http://www.torinofc.it','<EMAIL>','1894','Brown / White','Stadio Olimpico di Torino','2019-08-08 00:00:00'),(610,2247,'Galatasaray SK','Galatasaray','GAL','https://upload.wikimedia.org/wikipedia/commons/f/f6/Galatasaray_Sports_Club_Logo.png','Türk Telekom Arena Stadyumu, Huzur Mahallesi, ?i?li ?stanbul 34415','+90 (212) 3051905','http://www.galatasaray.org','<EMAIL>','1905','Red / Yellow','Türk Telekom Arena','2019-05-30 00:00:00'),(611,2017,'Qaraba? A?dam FK','Qaraba? A?dam','QAR','','Bak? ??h?ri.Suraxan?, q?s?b?si A?dam null','+994 (12) 4521345','http://www.qarabagh.com',NULL,'1951','Black / White','Tofiq B?hramov ad?na Respublika stadionu','2019-05-30 00:00:00'),(613,2247,'Fenerbahçe SK','Fenerbahçe','FEN','','Fenerbahçe ?ükrü Saraco?lu Stadyumu, Ba?dat Caddesi, Kad?köy ?stanbul 34724','+90 (216) 5421907','http://www.fenerbahce.org','<EMAIL>','1907','Yellow / Blue','Ülker Stadyumu Fenerbahçe ?ükrü Saraco?lu Spor Kompleksi','2019-05-30 00:00:00'),(654,2093,'PAE Olympiakos SFP','Olympiakos','OLY','http://upload.wikimedia.org/wikipedia/de/9/96/Logo_Olympiakos_Pir%C3%A4us.svg','Plateia Alexandras Piraeus 18534','+30 (210) 4143000','http://www.olympiacos.org','<EMAIL>','1925','Red / White','Stadio Georgios Karaiskáki','2019-08-08 00:00:00'),(674,2163,'PSV','PSV','PSV','http://upload.wikimedia.org/wikipedia/de/0/05/PSV_Eindhoven.svg','Fredriklaan 10a Eindhoven 5616 NH','+31 (040) 2505501','http://www.psv.nl','<EMAIL>','1913','Red / White','<NAME>','2019-05-30 00:00:00'),(678,2163,'AFC Ajax','Ajax','AJA','http://upload.wikimedia.org/wikipedia/de/7/79/Ajax_Amsterdam.svg','ArenA Boulevard 29 Amsterdam 1101 AX','+31 (020) 3111444','http://www.ajax.nl','<EMAIL>','1900','Red / White','<NAME>','2019-05-30 00:00:00'),(729,2234,'FC Basel 1893','Basel','BAS','http://upload.wikimedia.org/wikipedia/commons/c/c5/FC_Basel.png','Birsstr. 320 A Basel 4002','+41 (61) 3751010','http://www.fcb.ch','<EMAIL>','1893','Red / Blue','St. Jakob-Park','2019-05-30 00:00:00'),(732,2204,'Celtic FC','Celtic','CEL','https://upload.wikimedia.org/wikipedia/en/3/35/Celtic_FC.svg','Celtic Park Glasgow G40 3RE','+44 (871) 2261888','http://www.celticfc.co.uk','<EMAIL>','1887','Green / White','Celtic Park','2019-05-30 00:00:00'),(734,2215,'<NAME>','Maribor','MAR','https://upload.wikimedia.org/wikipedia/en/7/78/Nkmaribor_2013.png','Mladinska ulica 29 Maribor 292000','+386 (02) 2284700','http://www.nkmaribor.com','<EMAIL>','1919','Violet / Yellow','Ljudski vrt','2019-08-08 00:00:00'),(745,2224,'CD Leganés','Leganés','LEG','http://upload.wikimedia.org/wikipedia/en/thumb/0/02/Club_Deportivo_Legan%C3%A9s.png/180px-Club_Deportivo_Legan%C3%A9s.png','Calle Arquitectura, s/n Leganés 28914','+34 (916) 888629','http://www.deportivoleganes.com','<EMAIL>','1928','Blue / White','Estadio Municipal de Butarque','2019-08-08 00:00:00'),(748,2022,'FK BATE Borisov','BATE','BAT','http://upload.wikimedia.org/wikipedia/de/thumb/0/0a/Logo_BATE_Baryssau.svg/150px-Logo_BATE_Baryssau.svg.png','prospekt Revoljutsni 16 Borisov 222120','+375 (177) 732046','http://www.fcbate.by','<EMAIL>','1973','Blue / Yellow','Borisov Arena','2019-05-30 00:00:00'),(749,2233,'Malmö FF','Malmö FF','MAL','http://upload.wikimedia.org/wikipedia/de/1/17/Logo_Malm%C3%B6_FF.svg','Box 19067 Malmö 20073','+46 (040) 326600','http://www.mff.se','<EMAIL>','1910','Light Blue / White','Swedbank Stadion','2019-06-06 00:00:00'),(752,2061,'APOEL FC','APOEL','APO','https://upload.wikimedia.org/wikipedia/en/0/06/APOELnew.png','Dimofontos Str 39 Nicosia 1075','+357 (22) 340200','http://www.apoelfc.com.cy','<EMAIL>','1926','Yellow / Blue','Neo GSP','2019-05-30 00:00:00'),(754,2195,'FK <NAME>','<NAME>','SPA',NULL,'Krasnopresnenskaja naberezhnaja, dom 10 str. 4 Moskva 123100','+7 (495) 6461924','http://www.spartak.com','<EMAIL>','1922','Red / White','Otkrytie Arena','2019-05-30 00:00:00'),(755,2058,'GNK Dinamo Zagreb','Dinamo Zagreb','DIN','http://www.gnkdinamo.hr/Content/Images/main-logo.png','Maksimirska 128 Zagreb 10000','+385 (01) 2386111','http://gnkdinamo.hr','<EMAIL>','1903','Blue / White','<NAME>','2019-05-30 00:00:00'),(810,2187,'Boavista FC','Boavista','BOA','http://upload.wikimedia.org/wikipedia/en/4/40/Boavista_F.C._logo.svg','Rua O Primeiro de Janeiro, Boavista Porto 4100-127','+351 (022) 6071000','http://www.boavistafc.pt','<EMAIL>','1903','Black / White','Estádio do Bessa Século XXI','2019-08-08 00:00:00'),(842,2253,'FK Dynamo Kyiv','Dynamo Kyiv','DYN','https://upload.wikimedia.org/wikipedia/commons/5/5b/FC_Dynamo_Kyiv_logo.png','vul. Grushevskogo, 3 Kyïv 01001','+380 (044) 5970008','http://www.fcdynamo.kiev.ua','<EMAIL>','1927','White / Blue','NSK Olimpijs\'kyj','2019-05-30 00:00:00'),(851,2023,'Club Brugge KV','Club Brugge','CLU',NULL,'Olympialaan 74 Brugge 8200','+32 (50) 402121','http://www.clubbrugge.be','<EMAIL>','1894','Blue / Black','<NAME>','2019-05-30 00:00:00'),(889,2173,'Rosenborg BK','Rosenborg','RBK','','Postboks 6390, Sluppen Trondheim 7492','+47 (73) 822100','http://www.rbk.no','<EMAIL>','1917','Black / White','Lerkendal Stadion','2019-06-06 00:00:00'),(930,2062,'SK <NAME>','<NAME>','SLP','','Vladivostocká 1460/2 Praha 10005','+420 (233) 081753','http://www.slavia.cz','<EMAIL>','1892','Red / White','Sinobo Stadium','2019-05-30 00:00:00'),(1044,2072,'AFC Bournemouth','Bournemouth','BOU','https://upload.wikimedia.org/wikipedia/de/4/41/Afc_bournemouth.svg','Dean Court, Kings Park Bournemouth BH7 7AF','+44 (01202) 726300','http://www.afcb.co.uk','<EMAIL>','1890','Red / Black','Vitality Stadium','2019-08-08 00:00:00'),(1049,2187,'CD Tondela','CD Tondela','TON','https://upload.wikimedia.org/wikipedia/commons/f/fc/Emblema_CD_Tondela.png','Av. <NAME> (Estádio) - Apartado 84 Tondela 3460-582','+351 (232) 821447','http://www.cdtondela.pt','<EMAIL>','1933','Green / Yellow','Estádio Jo<NAME>','2019-08-08 00:00:00'),(1105,2186,'Legia Warszawa','Legia','LEG','https://upload.wikimedia.org/wikipedia/commons/b/b5/Legia_Warszawa.svg','ul. ?azienkowska 3 Warszawa 00-449','+48 (22) 6284303','http://www.legia.com','<EMAIL>','1916','Red / White / Green','Stadion Miejski Legii Warszawa im. Marsza?ka Józefa Pi?sudskiego','2019-05-30 00:00:00'),(1107,2114,'SPAL 2013','SPAL 2013','SPA',NULL,'Corso Piave 28 Ferrara 44100','+39 (0532) 52752','http://www.spal2013.it','<EMAIL>','1907',NULL,'St<NAME>','2019-08-08 00:00:00'),(1866,2023,'Royal Standard de Liège','Standard Liège','STA',NULL,'Rue de la Centrale, 2 Liège 4000','+32 (4) 2544207','http://www.standard.be','<EMAIL>','1898','Red / White','Stade Maurice Dufrasne','2019-05-30 00:00:00'),(1870,2012,'Alashkert FC','Alashkert','ALA',NULL,'25 Saryan Street Yerevan null','+374 (10) 520303','http://www.fcalashkert.am','<EMAIL>','1990','Black / Yellow','Nairi','2019-05-30 00:00:00'),(1871,2234,'BSC Young Boys','Young Boys','YOB',NULL,'Postfach 61 Bern 3000','+41 (31) 3448000','http://www.bscyb.ch','<EMAIL>','1898','Yellow / Black','Stade de Suisse Wankdorf Bern','2019-05-30 00:00:00'),(1873,2192,'Dundalk FC','Dundalk','DUN',NULL,'Carrickmacross Road Dundalk, Co. Louth null','+353 (4) 29335894','http://www.dundalkfc.com','<EMAIL>','1919','Black / Red','<NAME>','2019-08-08 00:00:00'),(1875,2136,'F91 Diddeleng','F91 Dudelange','F91',NULL,'null Dudelange null',NULL,'http://ww.f91.lu',NULL,'1991',NULL,'Stade Jos Nosbaum','2019-05-30 00:00:00'),(1876,2065,'FC København','København','KOB',NULL,'Per Henrik Lings Allé 2 København 2100','+45 35 433 131','http://www.fck.dk','<EMAIL>','1992','White / Blue','<NAME>','2019-08-08 00:00:00'),(1877,2016,'FC Red Bull Salzburg','RB Salzburg','RBS',NULL,'Stadionstr. 2/3 Wals-Siezenheim 5071','+43 (662) 433332','http://www.redbulls.com/de','<EMAIL>','1933','White / Red','Red Bull Arena','2019-05-30 00:00:00'),(1879,2006,'FC Santa Coloma','Santa Coloma','FSC',NULL,'Av. Solà nº22 Santa Coloma AD500','+376 323222','http://www.fclubsantacoloma.com','<EMAIL>','1986','Red / Black / White','Centre d\'Entrenament de la FAF 1','2019-05-30 00:00:00'),(1880,2151,'FC Sheriff Tiraspol','Sheriff','SHE',NULL,'ul. K. Libnekhta 1/2 Tiraspol 3300','+373 (533) 363500','http://www.fc-sheriff.com','<EMAIL>iff.md','1997','Yellow / Black','Malaya Sportivnaya Arena','2019-05-30 00:00:00'),(1881,2062,'FC Viktoria Plze?','Viktoria Plze?','PLZ',NULL,'Štruncovy sady 3 Plze? 30112','+420 (377) 221507','http://www.fcviktoria.cz','<EMAIL>','1911','Red / Blue','Doosan Arena','2019-05-30 00:00:00'),(1884,2119,'Astana FK','Astana FK','AST',NULL,'null Nursultan null',NULL,'http://www.fca.kz',NULL,'2009',NULL,'Astana Arena','2019-05-30 00:00:00'),(1886,2002,'FK Kukësi','Kukësi','KUK',NULL,'Njesia Bashkiake Nr 5 Kukës null','+355 (4) 2267883','http://www.fk-kukesi.al',NULL,'1930','Blue / White','Stadiumi Zeqir Ymeri','2019-05-30 00:00:00'),(1887,2253,'FK <NAME>','<NAME>','SHD',NULL,'vul. Artema, 86-a Donets’k 83050','+380 (062) 3349906','http://www.shakhtar.com','<EMAIL>','1936','Orange / Black','Oblasny SportKomplex Metalist','2019-05-30 00:00:00'),(1888,2129,'FK <NAME>','<NAME>?r','SPA',NULL,'Gludas 18 J?rmala 2016','+371 (292) 42281','http://www.spartaksjurmala.com','<EMAIL>','2007','Red / White','Kauguru vidusskolas stadions','2019-06-06 00:00:00'),(1891,2113,'<NAME> FC','<NAME>','HBS',NULL,'Yeh<NAME> Str. Beer Sheva 84142',NULL,'http://hbsfc.co.il','<EMAIL>','1950','Red / White','Turner Stadium','2019-05-30 00:00:00'),(1894,2030,'<NAME>','Zrinjski','ZRI',NULL,'Stjepana Radi?a 49 Mostar 88000','+387 (036) 321507','http://www.hskzrinjski.ba','<EMAIL>','1905','White / Red / Black','Stadion Bijeli Brijeg','2019-05-30 00:00:00'),(1896,2171,'<NAME>','Linfield','LIN',NULL,'null Belfast null',NULL,'http://www.linfieldfc.com','<EMAIL>','1886','Blue / White','Windsor Park','2019-08-08 00:00:00'),(1897,2247,'Medipol Ba?ak?ehir FK','Ba?ak?ehir','BAS',NULL,'Yunus Emre Caddesi, Ba?ak?ehir Stad? 4.Etap, Ba?ak?ehir ?stanbul 34200','+90 (212) 4733333','http://www.ibfk.com.tr','<EMAIL>','1990','Orange / Blue','Ba?ak?ehir Fatih Terim Stadium','2019-08-08 00:00:00'),(1899,2093,'PAE AEK','PAE AEK','AEK',NULL,'37 Kifisias Av. Athína 15123','+30 (210) 6121371','http://www.aekfc.gr','<EMAIL>','1924','Yellow / Black','Olympiako Stadio Spyros Louis','2019-06-06 00:00:00'),(1900,2195,'PFC CSKA Moskva','CSKA Moskva','CSK',NULL,'Leningradsky Ave. 1-39 Moskva 125167','+7 (495) 6120780','http://www.pfc-cska.com','<EMAIL>','1911','Red / Blue','VEB Arena','2019-05-30 00:00:00'),(1901,2035,'PFK Ludogorets 1945 Razgrad','Ludgorets','LUD',NULL,'null Razgrad 7200','+359 (899) 141129','http://www.ludogorets.com','<EMAIL>','2000','Green / White','Ludogorets Arena','2019-05-30 00:00:00'),(1902,2200,'SP La Fiorita','La Fiorita','LAF',NULL,'Via del Dragone, 17 Montegiardino 47898',NULL,'http://www.lafiorita.sm','<EMAIL>','1933',NULL,'Stad<NAME>\'Ovo','2019-05-30 00:00:00'),(1903,2187,'Sport Lisboa e Benfica','SL Benfica','BEN',NULL,'Av. General Norton de Matos 1500, Apartado Nº 4100 Lisboa 1501-805','+351 (021) 7219558','http://www.slbenfica.pt','<EMAIL>','1904','Red / White','Estádio do Sport Lisboa e Benfica','2019-05-30 00:00:00'),(1904,2264,'The New Saints FC','The New Saints','TNS',NULL,'The Venue, Park Hall Oswestry SY11 4AS','+44 (1691) 684840','http://www.tnsfc.co.uk','<EMAIL>','1959','Green / White','Park Hall Stadium','2019-05-30 00:00:00'),(1905,2078,'<NAME>','Víkingur','VIK',NULL,'Postrúm 58 Norðragøta 520','+298 443222','http://www.vikingur.fo','<EMAIL>','2008','Sky Blue / Black','Sarpugerði','2019-05-30 00:00:00'),(2016,2016,'L<NAME>','LASK','LIN',NULL,'Poststr. 38 Pasching 4061','+43 (732) 6033320','http://www.lask.at','<EMAIL>','1908','Black / White','TGW Arena','2019-08-08 00:00:00'),(2021,2016,'SK St<NAME>az','<NAME>','STU',NULL,'Sternäckerweg 118 Graz 8042','+43 (316) 7717710','http://www.sksturm.at','<EMAIL>','1909','Black / White','Merkur Arena','2019-05-30 00:00:00'),(4275,2030,'<NAME>','Sarajevo','SAR',NULL,'Maršala Tita 38/b Sarajevo 71000',NULL,'https://www.fksarajevo.ba','<EMAIL>','1946','Maroon / White','Olimpijski Stadion Asim Ferhatovi? Hase','2019-08-08 00:00:00'),(4485,2065,'FC Midtjylland','Midtjylland','MID',NULL,'K<NAME> Vej 5, Postboks 287 Herning 7400','+45 (96) 271040','http://www.fcm.dk','<EMAIL>','1999','Black / Red','MCH Arena','2019-05-30 00:00:00'),(5100,2075,'FC Flora','Flora','FLO',NULL,'Asula 4c Tallinn 11312','+372 (627) 9940','http://www.fcflora.ee','<EMAIL>','1990','Green / White','Sportland Arena','2019-06-06 00:00:00'),(5106,2075,'Nõmme Kalju FC','Nõmme Kalju','NOM',NULL,'Harju 6 Tallinn 10130','+372 (631) 0545','http://www.jkkalju.ee','<EMAIL>','1923','White / Black','Hiiu staadion','2019-08-08 00:00:00'),(5123,2080,'Helsingin JK','HJK','HJK',NULL,'Urheilukatu 5 Helsinki 00250','+358 (9) 74216600','http://www.hjk.fi','<EMAIL>','1907','Blue / White','Telia 5G -areena','2019-06-06 00:00:00'),(5277,2233,'AIK Fotboll','AIK Fotboll','AIK',NULL,'Evenemangsgatan 31 Solna 16979','+46 (8) 7359650','http://www.aikfotboll.se','<EMAIL>','1891','Black / White / Yellow','Friends Arena','2019-08-08 00:00:00'),(5452,2195,'FK Krasnodar','Krasnodar','KRA',NULL,'114 ul.Zhloby Krasnodar 350901','+7 (861) 2108990','http://www.fckrasnodar.ru','<EMAIL>','2008','Black / Green','Stadion Akademii FK Krasnodar','2019-08-08 00:00:00'),(5455,2195,'FK Lokomotiv Moskva','Lok Moskva','LOK',NULL,'Bolshaya Cherkizovskaya, 125 ? Moskva 107553','+7 (495) 1619704','http://www.fclm.ru','<EMAIL>','1923','Red / Green / White','RZD Arena','2019-05-30 00:00:00'),(5515,2194,'FC CFR 1907 Cluj','CFR 1907 Cluj','CLU',NULL,'Str. Romulus Vuia, nr. 23 Cluj-Napoca 400214','+40 (264) 598831','http://www.cfr1907.ro','<EMAIL>','1907','Claret / White','Stadionul Dr. <NAME>?dulescu','2019-05-30 00:00:00'),(5520,2192,'Cork City FC','Cork City FC','COC',NULL,'Curragh Road, Turner’s Cross Cork null','+353 (21) 4345574','http://www.corkcityfc.ie','<EMAIL>','1912','Green / White','Turner\'s Cross','2019-06-06 00:00:00'),(5530,2187,'CD Santa Clara','Santa Clara','CDS',NULL,'Rua Comandante Jaime de Sousa, 21 Ponta Delgada 9500','+351 (296) 306400','http://www.cdsantaclara.pt','<EMAIL>','1921','Red / White','Estádio de São Miguel','2019-08-08 00:00:00'),(5531,2187,'FC Famalicão','Famalicão','FAM',NULL,'null Vila Nova de Famalicão null',NULL,'http://www.fcfamalicao.pt','<EMAIL>','1931','Blue / White','Estádio Municipal 22 de Junho','2019-08-08 00:00:00'),(5533,2187,'Gil Vicente FC','Gil Vicente','GIL',NULL,'Rua D. Diogo Pinheiro n.º 25, Apartado 197 Barcelos 4750-282','+351 (253) 811523','http://www.gilvicentefc.pt','<EMAIL>','1924','Red / Blue','Estádio Clube Desportivo das Aves','2019-08-08 00:00:00'),(5543,2187,'Vitória SC','Vitória SC','GUI',NULL,'Dr. <NAME>, Apartado 505 Guimarães 4802-914','+351 (253) 432570','http://www.vitoriasc.pt','<EMAIL>','1922','White / Black','Estádio Dom <NAME>','2019-08-08 00:00:00'),(5544,2187,'CD Aves','Aves','AVE',NULL,'R. <NAME>, 265 Vila das Aves 4795-080','+351 (252) 941816','http://www.cdaves.pt','<EMAIL>','1930','Red / White','Estádio Clube Desportivo das Aves','2019-08-08 00:00:00'),(5568,2187,'Os Belenenses Futebol','Belenenses','BEL',NULL,'Estádio do Restelo Lisboa 1449-015','+351 (021) 3010461','http://site.osbelenensessad.com/','<EMAIL>','1999','Blue / White','Estádio Nacional','2019-08-08 00:00:00'),(5575,2187,'CS Marítimo','Marítimo','CSM',NULL,'Rua Campo do Marítimo, Santo António Funchal 9020-073','+351 (291) 708300','http://www.csmaritimo.org.pt','<EMAIL>','1910','Green / Red','Estádio dos Barreiros','2019-08-08 00:00:00'),(5601,2187,'Portimonense SC','Portimonense','PSC',NULL,'Praça <NAME> n.º 4 -1º Portimão 8500-542','+351 (282) 422427','http://www.portimonense.pt','<EMAIL>.pt','1914','Black / White','Estádio do Portimonense SC','2019-08-08 00:00:00'),(5613,2187,'Sporting Clube de Braga','Braga','SCB',NULL,'Parque Norte, Monte Crasto, Apartado 12 Braga 4700-087','+351 (253) 206860','http://www.scbraga.pt','<EMAIL>','1921','Red / White','Estádio Municipal de Braga','2019-08-08 00:00:00'),(5620,2187,'Vitória FC','Vitória FC','SET',NULL,'Estádio do Bonfim, Apartado 132 Setúbal 2902-882','+351 (265) 544270','http://www.vfc.pt','<EMAIL>','1910','Green / White','Estádio do Bonfim','2019-08-08 00:00:00'),(5628,2186,'GKS Piast Gliwice','Piast Gliwice','PIA',NULL,'ul. Zwyci?stwa 36 Gliwice 44100','+48 (032) 2317759','https://www.piast-gliwice.eu','<EMAIL>','1945','Blue / Red','Stadion Miejski','2019-08-08 00:00:00'),(5740,2171,'Crusaders FC','Crusaders','CRU',NULL,'Seaview, Shore Road Belfast BT15 3QG','+44 (02890) 370777','http://www.crusadersfc.com','<EMAIL>','1898','Red / Black','Seaview','2019-05-30 00:00:00'),(5813,2143,'Valletta FC','Valletta','VAL',NULL,'126, St Lucia Street Valletta 11832','+356 (21) 224939','http://www.vallettafc.net','<EMAIL>','1909','White / Red','Ta\'Qali National Stadium','2019-05-30 00:00:00'),(5819,2135,'FK S?duva Marijampol?','FK S?duva','SUD',NULL,'P. Armino 27 Marijampol? 68290','+370 (343) 91065','http://www.fksuduva.lt','<EMAIL>','1942','Red / White','Marijampol?s sporto centro stadione','2019-06-06 00:00:00'),(5826,2129,'R?ga FC','R?ga FC','RFC',NULL,'Balasta Dambis 70b-1 R?ga null','+371 28861168','http://www.rigafc.lv','<EMAIL>','2014','Blue / White','Stadions Skonto','2019-08-08 00:00:00'),(5890,2114,'US Lecce','Lecce','LEC',NULL,'Via Templari 11 Lecce 73100','+39 (0832) 240211','http://www.uslecce.it','<EMAIL>','1908','Yellow / Red / Navy Blue','Stadio Comunale Via Del Mare','2019-08-08 00:00:00'),(5929,2113,'Maccabi Tel Aviv FC','Maccabi TA','MTA',NULL,'null Tel Aviv null',NULL,'http://www.maccabi-tlv.co.il','<EMAIL>','1906','Yellow / Blue','Winner Stadium','2019-08-08 00:00:00'),(5945,2107,'KF Valur','Valur','VAL',NULL,'Laufásvegi, Hlíðarendi Reykjavík 101','+354 (414) 8005','http://www.valur.is','<EMAIL>','1911','Red / White','Origo Völlurinn','2019-06-06 00:00:00'),(5954,2106,'Ferencvárosi TC','Ferencváros','FTC',NULL,'Üllöi út 129. Budapest 1091','+36 (1) 2156023','http://www.fradi.hu','<EMAIL>','1899','Green / White','Groupama Arena','2019-08-08 00:00:00'),(5961,2106,'MOL Vidi FC','MOL Vidi','VID',NULL,'Csíkvári út 10 Székesfehérvár 8000','+36 (22) 379493','https://www.molvidi.hu/','<EMAIL>','1941','Red / Blue','Sóstói Stadion','2019-05-30 00:00:00'),(6146,2093,'PAOK FC','PAOK FC','PAO',NULL,'Mikras Asias, Toumba’s Stadium Thessaloniki null','+30 (2310) 954050','http://www.pa<EMAIL>','<EMAIL>','1926','Black / White','Stadio Toumbas','2019-06-06 00:00:00'),(7281,2090,'Lincoln Red Imps FC','Lincoln','LIN',NULL,'64 Red Sands House, PO Box 1411 Gibraltar null','+350 54005985','http://www.lincolnredimpsfc.com','<EMAIL>','1976','White / Red','Victoria Stadium','2019-05-30 00:00:00'),(7282,2124,'Drita KF Gjilan','Drita Gjilan','DGJ',NULL,'null Gjilan null',NULL,'https://dritafc.com/',NULL,'1947','Blue / White','Stadiumi i Qytetit','2019-05-30 00:00:00'),(7283,2206,'FK <NAME>','<NAME>','CRV',NULL,'Ljutice Bogdana 1a Beograd 11000','+381 (11) 3672060','http://www.crvenazvezdafk.com','<EMAIL>','1945','Red / White','Stadion Rajko Miti?','2019-05-30 00:00:00'),(7284,2154,'FK Sutjeska Nikši?','<NAME>','SUT',NULL,'ul. Dragovica Luka bb Nikši? 81400','+382 (040) 246438','http://www.fksutjeska.me','<EMAIL>','1927','Blue / White','Stadion Kraj Bistrice','2019-05-30 00:00:00'),(7285,2083,'KF Shkëndija 79','Shkëndija 79','SHK',NULL,'ul. Blagoya Toska Tetovo 1200','+389 (443) 53670','http://www.kfshkendija.com/','<EMAIL>','1979','Black / Red','Ecolog Arena','2019-05-30 00:00:00'),(7286,2087,'FC Torpedo Kutaisi','Torp Kutaisi','TKU',NULL,'Khorava Street 1 Kutaisi 4600','+995 (431) 262787','http://www.fctorpedo.ge','<EMAIL>','1946','Yellow / Black','Stadioni 26 Maisi','2019-05-30 00:00:00'),(7287,2215,'NK Olimpija Ljubljana','Olimpija Ljubl','OLI',NULL,'Dunajska cesta 159 Ljubljana 1000','+386 (1) 4310144','http://www.nkolimpija.si','<EMAIL>','1911','Green / White','Stadion Stožice','2019-05-30 00:00:00'),(7288,2214,'FC Spartak Trnava','Spartak Trnava','TRN',NULL,'Koniarekova 19 Trnava 91721','+421 (33) 5503804','http://www.spartak.sk','<EMAIL>','1923','Red / Black','City Arena Trnava','2019-05-30 00:00:00'),(7492,2002,'FK Partizani','Partizani','PAR',NULL,'null Tiranë null','+0355 69751118','http://www.partizani.net','<EMAIL>','1946','Red / Yellow','Stadiumi Selman Stërmasi','2019-08-08 00:00:00'),(7509,2214,'ŠK <NAME>','Sl. Bratislava','SBA',NULL,'Viktoria Tegelhoffa 4 Bratislava 83104','+421 (2) 44636363','http://www.skslovan.com','<EMAIL>','1919','Light Blue / White','Národný Futbalový Štadión','2019-08-08 00:00:00'),(8101,2124,'KF Feronikeli','Feronikeli','FER',NULL,'null Glogovac null',NULL,NULL,NULL,'1974','Green / Black / White','Stadiumi Fadil Vokrri','2019-08-08 00:00:00'),(8102,2200,'SP Tre Penne','Tre Penne','TPE',NULL,'Via Napoleone Bonaparte San Marino Città 160','+387 (0549) 878013','http://www.trepenne.sm','<EMAIL>','1933','White / Blue','Campo Sportivo di Acquaviva','2019-08-08 00:00:00'),(8164,2012,'FC Ararat-Armenia','Ararat-Armenia','A-A',NULL,'null Yerevan null',NULL,NULL,NULL,'2017',NULL,'Yerevan Football Academy','2019-08-08 00:00:00'),(8165,2087,'<NAME>','Saburtalo','SAB',NULL,'M. Asatiani Street 7a Tbilisi 0179','+995 (322) 311128','http://www.fcsaburtalo.ge','<EMAIL>','2000','Red / White','<NAME>','2019-08-08 00:00:00'),(8166,2078,'HB','HB','HB',NULL,'Postsmoga 1333 Tórshavn 110','+298 314046','http://www.hb.fo','<EMAIL>','1904','Red / Black','Gundadalur','2019-08-08 00:00:00');
/*!40000 ALTER TABLE `teams` 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 2019-09-18 11:11:40
|
<gh_stars>1-10
use TAQBenchmarks
go
drop procedure dbo.EnqueueMessage
drop procedure dbo.DequeueMessage
drop broker priority HighPriority;
drop broker priority LowPriority;
drop service XML_Initiator_Service;
drop service XML_Receiver_Service;
drop queue XML_Initiator_Queue;
drop queue XML_Receiver_Queue;
drop contract XMLContract_LowPriority;
drop contract XMLContract_HighPriority
drop message type XMLMessage;
|
<filename>database/1. New folder/sip.sql
-- phpMyAdmin SQL Dump
-- version 5.0.2
-- https://www.phpmyadmin.net/
--
-- Host: 1192.168.3.11
-- Generation Time: Apr 14, 2021 at 10:11 AM
-- Server version: 10.4.14-MariaDB
-- PHP Version: 7.2.33
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: `sip`
--
-- --------------------------------------------------------
--
-- Table structure for table `tbl_simpanan`
--
CREATE TABLE `tbl_simpanan` (
`id_simpanan` int(11) NOT NULL,
`nama_simpanan` varchar(70) NOT NULL,
`pendek` text NOT NULL,
`penjelasan` text NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `tbl_simpanan`
--
INSERT INTO `tbl_simpanan` (`id_simpanan`, `nama_simpanan`, `pendek`, `penjelasan`) VALUES
(1, 'Tabungan Bisnis', 'Hadirkan layanan yang cepat, mudah dan jaringan yang luas terbesar di indonesia guna kelancaran transaksi bisnis anda', ''),
(2, 'Deposito Rupiah', 'Pastikan memilih investasi yang memberi keuntungan rasa aman, terpercaya dan dapat di andalkan', ''),
(3, 'Deposito Valas', 'Nikmati berbagai pilihan jenis mata uang serta pembayaran bunga yang fleksibel untuk keperluan isvetasi anda', ''),
(4, 'Tabungan Payroll - Perusahaan', 'Rasakan kemudahan menggunakan fasilitas pengajian di BANKKU, serta dapatkan fasilitas keuntungan yang bernilai lebih khusus untuk karyawan anda', ''),
(5, '<NAME>', 'Hadirkan sarana pendukung yang terpercaya untuk mengembangkan usaha anda', ''),
(6, '<NAME>', 'Nikmati berbagai keuntungan untuk simpanan valuta asing anda, dengan bertransaksi sesuai yang anda inginkan', '');
--
-- Indexes for dumped tables
--
--
-- Indexes for table `tbl_simpanan`
--
ALTER TABLE `tbl_simpanan`
ADD PRIMARY KEY (`id_simpanan`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `tbl_simpanan`
--
ALTER TABLE `tbl_simpanan`
MODIFY `id_simpanan` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7;
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>manasesortez/Practica5_DB<filename>EjercicioComplementario.sql<gh_stars>1-10
CREATE DATABASE ejercicioComplementario_Guia_5;
USE ejercicioComplementario_Guia_5;
CREATE TABLE alumno(
alumno_carnet CHAR(8) NOT NULL,
alumno_nombreCompleto VARCHAR(50),
PRIMARY KEY (alumno_carnet)
);
SELECT * FROM alumno;
INSERT INTO alumno(alumno_carnet, alumno_nombreCompleto)
VALUES
('GH121214', '<NAME>'),
('VN121415', '<NAME>'),
('CD121515', '<NAME>'),
('HL130334', '<NAME>'),
/**Parte A**/
('GM119056', '<NAME>'),
('MC129854', '<NAME>'),
('IP110943', 'IP110943'),
('MU127895', '<NAME>'),
('OH132390', '<NAME>'),
('ML139032', '<NAME>');
CREATE TABLE materia(
materia_codigo CHAR(5) NOT NULL,
materia_nombre VARCHAR(30) UNIQUE,
materia_uv INT CHECK(materia_uv>=2 AND materia_uv <=5),
PRIMARY KEY (materia_codigo)
);
SELECT * FROM dbo.materia;
INSERT INTO dbo.materia(materia_codigo, materia_nombre, materia_uv)
VALUES
('BD01', 'Bases de Datos', 4),
('IP01', 'Introduccion a la Programacion', 4),
('AL01', 'Algrebra Lineal', 3),
('RD02', 'Redes de area amplia', 5),
('GE01', 'Gestion Empresarial', 2),
('HM02', 'Humanistica II', 3);
CREATE TABLE inscripcion(
alumno_carnet CHAR(8) NOT NULL,
materia_codigo CHAR(5) NOT NULL,
inscripcion_ciclo CHAR(5) NOT NULL,
PRIMARY KEY (alumno_carnet, materia_codigo, inscripcion_ciclo),
CONSTRAINT FK_AL_CAR FOREIGN KEY (alumno_carnet) REFERENCES alumno(alumno_carnet)
ON UPDATE CASCADE
ON DELETE CASCADE,
CONSTRAINT FK_MAT_CO FOREIGN KEY (materia_codigo) REFERENCES materia(materia_codigo)
ON UPDATE CASCADE
ON DELETE CASCADE
);
SELECT * FROM inscripcion;
INSERT INTO inscripcion(alumno_carnet, materia_codigo, inscripcion_ciclo)
VALUES
('GH121214', 'BD01', 'C1-15'),
('GH121214', 'GE01', 'C1-15'),
('GH121214', 'HM02', 'C1-15'),
/**Parte B**/
('CD121515', 'AL01', 'C1-14'),
('CD121515', 'GE01', 'C1-14'),
('CD121515', 'HM02', 'C1-15'),
('GM119056', 'IP01', 'C2-14'),
('GM119056', 'RD02', 'C2-14'),
('HL130334', 'BD01', 'C1-15'),
('VN121415', 'BD01', 'C1-15'),
('VN121415', 'RD02', 'C1-15'),
('MC129854', 'AL01', 'C1-14'),
('MC129854', 'GE01', 'C1-14'),
('IP110943', 'GE01', 'C1-15'),
('IP110943', 'HM02', 'C1-15');
SELECT * FROM inscripcion;
/**Ejercicio 5 Uso de Update**/
UPDATE alumno SET alumno_nombreCompleto = '<NAME>'
WHERE alumno_carnet = 'GH121214';
UPDATE alumno SET alumno_carnet = 'GH111214'
WHERE alumno_nombreCompleto = '<NAME>';
SELECT * FROM alumno;
SELECT * FROM inscripcion;
DELETE FROM alumno WHERE alumno_carnet = 'GH111214';
SELECT * FROM alumno;
SELECT * FROM inscripcion;
/**c. Con la instrucción SELECT INTO, crear una tabla con el nombre MateriaUV que
tenga los datos de la materia donde las unidades valorativas sean mayores o
iguales a 4**/
SELECT materia_codigo AS MateriaUV_codigo, materia_nombre AS MateriaUV_nombre, materia_uv AS MateriaUV
INTO MateriaUV
FROM materia
WHERE materia.materia_uv >= 4;
SELECT * FROM MateriaUV;
/**d. Con la instrucción INSERT INTO – SELECT, crear una tabla con el nombre
Alumno2012 en donde se almacenen aquellos alumnos que tengan el carnet del
año 2012**/
SELECT alumno_carnet AS Alumnos2012_Carnet, alumno_nombreCompleto AS Alumnos2012_Nombre
INTO Alumnos2012
FROM alumno
WHERE alumno.alumno_carnet LIKE '__12%';
SELECT * FROM Alumnos2012;
/**
e. Crear las siguientes consultas de actualización de datos
i. Modificar el apellido del alumno con carnet GM119056 a Márquez
ii. Cambiar el carnet del alumno <NAME> a GM119156
iii. Modificar el ciclo de la inscripción de C1-14 a C2-15
iv. Modificar el código de la materia HM02 a HM01 y el nombre de la materia a Humanística I
v. Modificar el apellido del alumno con carnet IP110943 a Pereira
*/
UPDATE alumno SET alumno_nombreCompleto = '<NAME>'
WHERE alumno_carnet = 'GM119056';
SELECT * FROM dbo.alumno;
UPDATE alumno SET alumno_carnet = 'GM119156'
WHERE alumno_nombreCompleto = '<NAME>';
UPDATE inscripcion SET inscripcion_ciclo = 'C2-15'
WHERE inscripcion_ciclo = 'C1-14';
SELECT * FROM inscripcion;
UPDATE materia SET materia_codigo = 'HM01',
materia_nombre = 'Humanistica I'
WHERE materia_codigo = 'HM02';
SELECT * FROM materia;
UPDATE alumno SET alumno_nombreCompleto = 'Pereira'
WHERE alumno_carnet = 'IP110943';
SELECT * FROM alumno;
/**
f. Crear las siguientes consultas de eliminación de datos
I. Eliminar el alumno con el carnet IP110943
II. Eliminar los alumnos en donde el carnet comience con letra M
III. Eliminar la materia Introducción a la Programación
IV. Eliminar el alumno <NAME>
V. Eliminar la inscripción donde el código de la materia es igual RD02 y el ciclo es igual C1-15
*/
DELETE FROM alumno
WHERE alumno_carnet = 'IP110943';
SELECT * FROM alumno;
DELETE FROM alumno
WHERE alumno_carnet LIKE 'M%';
DELETE FROM materia
WHERE materia.materia_nombre = 'Introduccion a la Programacion';
SELECT * FROM materia;
DELETE FROM alumno
WHERE alumno.alumno_nombreCompleto = '<NAME>';
SELECT * FROM alumno;
DELETE FROM inscripcion
WHERE inscripcion.materia_codigo = 'RD02' AND inscripcion.inscripcion_ciclo = 'C1-15';
SELECT * FROM inscripcion;
|
DROP INDEX IF EXISTS palisentId ;
DROP TABLE pali_sent ; |
<gh_stars>10-100
CREATE TABLE CAR(ID BIGINT AUTO_INCREMENT NOT NULL PRIMARY KEY,NAME VARCHAR(255),TYPE_ID BIGINT,COLOR VARCHAR(255),PRICE DECIMAL(18, 2),AMOUNT INT);
CREATE TABLE CAR_TYPE (ID BIGINT AUTO_INCREMENT NOT NULL PRIMARY KEY,NAME VARCHAR(255) NOT NULL);
ALTER TABLE CAR ADD CONSTRAINT CAR_FK FOREIGN KEY (TYPE_ID) REFERENCES CAR_TYPE(ID);
INSERT INTO CAR_TYPE (ID, NAME) VALUES(1, 'SEDAN');
INSERT INTO CAR_TYPE (ID, NAME) VALUES(2, 'COUPE');
INSERT INTO CAR_TYPE (ID, NAME) VALUES(3, 'HATCHBACK');
INSERT INTO CAR_TYPE (ID, NAME) VALUES(4, 'OTHER');
INSERT INTO CAR_TYPE (ID, NAME) VALUES(5, 'TRUCK');
INSERT INTO CAR_TYPE (ID, NAME) VALUES(6, 'TANK');
INSERT INTO CAR_TYPE (ID, NAME) VALUES(7, 'SPORTS CAR');
INSERT INTO CAR (ID, NAME, COLOR, PRICE, AMOUNT, TYPE_ID) VALUES(1, '<NAME>', 'RED', 1.00, 1, 7);
INSERT INTO CAR (ID, NAME, COLOR, PRICE, AMOUNT, TYPE_ID) VALUES(2, 'Optimus Prime', 'RED+BLUE', 2.00, 0, 5);
INSERT INTO CAR (ID, NAME, COLOR, PRICE, AMOUNT, TYPE_ID) VALUES(4, 'The Flintstones Flintmobile', '?', 4.0, 3, 4);
INSERT INTO CAR (ID, NAME, COLOR, PRICE, AMOUNT, TYPE_ID) VALUES(3, 'The Batmobile', 'BLACK', 3.00, 2, 6);
|
INSERT INTO `addon_account` (name, label, shared) VALUES
('society_salims','<NAME>',1)
;
INSERT INTO `jobs` (name, label, whitelisted) VALUES
('salims','Salims Pizzeria', 1)
;
INSERT INTO `job_grades` (job_name, grade, name, label, salary, skin_male, skin_female) VALUES
('salims',0,'recruit','Provanställd',10,'{}','{}'),
('salims',1,'worker','Arbetare',25,'{}','{}'),
('salims',2,'chef','Chef',40,'{}','{}'),
('salims',3,'boss','VD',0,'{}','{}')
;
INSERT INTO `addon_account_data` (`account_name`, `money`, `owner`) VALUES
('society_salims', 1000, NULL); |
<gh_stars>0
-- ensure that the table with this name is removed before creating a new one.
drop table if exists tg_user;
-- create tg_user table
create table tg_user(
chat_id varchar(100),
active boolean
) |
<reponame>jnamla/administracion-aves
INSERT INTO `organisation`.`country` (name, code) VALUES ("Colombia","COL");
INSERT INTO `organisation`.`state` (name, code, country_id) VALUES ("Cundinamarca","CUND", (SELECT id FROM `organisation`.`country` WHERE code = "COL" ));
INSERT INTO `organisation`.`state` (name, code, country_id) VALUES ("Antioquia","ANTQ", (SELECT id FROM `organisation`.`country` WHERE code = "COL" ));
INSERT INTO `organisation`.`city` (name, code, state_id) VALUES ("Medellín","MDE", (SELECT id FROM `organisation`.`state` WHERE code = "ANTQ" ));
INSERT INTO `organisation`.`city` (name, code, state_id) VALUES ("Santa fé de Bogotá","BOG", (SELECT id FROM `organisation`.`state` WHERE code = "CUND" ));
INSERT INTO `organisation`.`generic_area` (name, description) VALUES ("Administración","Encargados de el area contable y de recursos.");
INSERT INTO `organisation`.`generic_area` (name, description) VALUES ("Dirección","Encargados de definir los lineamientos de desarrollo.");
INSERT INTO `organisation`.`generic_area` (name, description) VALUES ("Ventas","Area engargada de publicidad y mercadeo.");
INSERT INTO `organisation`.`generic_area` (name, description) VALUES ("Recursos Humanos","Area engargada de personal.");
INSERT INTO `organisation`.`generic_area` (name, description) VALUES ("IT","Area engargada de tecnologías de información.");
INSERT INTO `organisation`.`generic_area` (name, description) VALUES ("Operación","Encargados del mantenimiento las instalaciones."); |
-- =======================================================================================
-- Procedure
-- =========
-- #df:begin#
CREATE ALIAS SP_NO_PARAMETER AS $$
@CODE
void execSpNoParameter() {
System.out.println("[SP_NO_PARAMETER]: current=" + System.currentTimeMillis());
}
$$;
-- #df:end#
-- =======================================================================================
-- Function
-- ========
-- #df:begin#
CREATE ALIAS FN_NO_PARAMETER AS $$
@CODE
int execFnNoParameter() {
return 926;
}
$$;
-- #df:end#
|
<gh_stars>1-10
SET NUMERIC_ROUNDABORT OFF
GO
SET ANSI_PADDING, ANSI_WARNINGS, CONCAT_NULL_YIELDS_NULL, ARITHABORT, QUOTED_IDENTIFIER, ANSI_NULLS ON
GO
IF EXISTS (SELECT * FROM tempdb..sysobjects WHERE id=OBJECT_ID('tempdb..#tmpErrors')) DROP TABLE #tmpErrors
GO
CREATE TABLE #tmpErrors (Error int)
GO
SET XACT_ABORT ON
GO
SET TRANSACTION ISOLATION LEVEL SERIALIZABLE
GO
BEGIN TRANSACTION
GO
PRINT N'Adding new columns to ServerPartition table'
GO
ALTER TABLE dbo.ServerPartition ADD
AcceptLatestReport bit NOT NULL CONSTRAINT DF_ServerPartition_AcceptLatestReport DEFAULT 1
GO
IF @@ERROR<>0 AND @@TRANCOUNT>0 ROLLBACK TRANSACTION
GO
IF @@TRANCOUNT=0 BEGIN INSERT INTO #tmpErrors (Error) SELECT 1 BEGIN TRANSACTION END
GO
PRINT N'Adding new index to StudyHistory table, DestStudyStorageGUID column'
GO
CREATE NONCLUSTERED INDEX IX_StudyHistory_DestStudyStorageGUID ON dbo.StudyHistory
(
DestStudyStorageGUID
) WITH( STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON INDEXES
GO
IF @@ERROR<>0 AND @@TRANCOUNT>0 ROLLBACK TRANSACTION
GO
IF @@TRANCOUNT=0 BEGIN INSERT INTO #tmpErrors (Error) SELECT 1 BEGIN TRANSACTION END
GO
IF EXISTS (SELECT * FROM #tmpErrors) ROLLBACK TRANSACTION
GO
IF @@TRANCOUNT>0 BEGIN
PRINT 'The database update succeeded'
COMMIT TRANSACTION
END
ELSE PRINT 'The database update failed'
GO
DROP TABLE #tmpErrors
GO
|
<filename>Oracle/DELETE_SCRIPT_GENERATOR.sql
-- 3D City Database - The Open Source CityGML Database
-- http://www.3dcitydb.org/
--
-- Copyright 2013 - 2018
-- Chair of Geoinformatics
-- Technical University of Munich, Germany
-- https://www.gis.bgu.tum.de/
--
-- The 3D City Database is jointly developed with the following
-- cooperation partners:
--
-- virtualcitySYSTEMS GmbH, Berlin <http://www.virtualcitysystems.de/>
-- M.O.S.S. Computer Grafik Systeme GmbH, Taufkirchen <http://www.moss.de/>
--
-- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License.
-- You may obtain a copy of the License at
--
-- http://www.apache.org/licenses/LICENSE-2.0
--
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS,
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
/*****************************************************************
* PACKAGE citydb_delete_gen
*
* methods to create delete scripts automatically
******************************************************************/
CREATE OR REPLACE PACKAGE citydb_delete_gen AUTHID CURRENT_USER
AS
FUNCTION check_for_cleanup(tab_name VARCHAR2, schema_name VARCHAR2 := USER) RETURN VARCHAR2;
FUNCTION is_child_ref(fk_column_name VARCHAR2, tab_name VARCHAR2, ref_table_name VARCHAR2, schema_name VARCHAR2 := USER) RETURN NUMBER;
FUNCTION create_array_delete_function(tab_name VARCHAR2, schema_name VARCHAR2 := USER, path STRARRAY := STRARRAY()) RETURN STRARRAY;
FUNCTION create_delete_function(tab_name VARCHAR2, schema_name VARCHAR2 := USER, path STRARRAY := STRARRAY()) RETURN STRARRAY;
FUNCTION create_array_delete_member_fct(tab_name VARCHAR2, schema_name VARCHAR2 := USER, path STRARRAY := STRARRAY()) RETURN STRARRAY;
FUNCTION create_delete_member_fct(tab_name VARCHAR2, schema_name VARCHAR2 := USER, path STRARRAY := STRARRAY()) RETURN STRARRAY;
END citydb_delete_gen;
/
CREATE OR REPLACE PACKAGE BODY citydb_delete_gen
AS
FUNCTION has_objclass_id(tab_name VARCHAR2, schema_name VARCHAR2 := USER) RETURN NUMBER;
PROCEDURE query_ref_tables_and_columns(tab_name VARCHAR2, ref_parent_to_exclude VARCHAR2, schema_name VARCHAR2 := USER, ref_tables OUT STRARRAY, ref_columns OUT STRARRAY);
FUNCTION query_ref_fk(tab_name VARCHAR2, schema_name VARCHAR2 := USER) RETURN SYS_REFCURSOR;
FUNCTION gen_delete_ref_by_ids_stmt(tab_name VARCHAR2, fk_column_name VARCHAR2) RETURN VARCHAR2;
FUNCTION gen_delete_ref_by_ids_call(tab_name VARCHAR2, fk_column_name VARCHAR2, has_objclass_param BOOLEAN := FALSE, schema_name VARCHAR2 := USER) RETURN VARCHAR2;
FUNCTION gen_delete_m_ref_by_ids_stmt(m_table_name VARCHAR2, m_fk_column_name VARCHAR2, fk_table_name STRARRAY, fk_columns STRARRAY, schema_name VARCHAR2 := USER) RETURN VARCHAR2;
FUNCTION gen_delete_m_ref_by_ids_call(m_table_name VARCHAR2, fk_table_name STRARRAY, fk_columns STRARRAY, schema_name VARCHAR2 := USER) RETURN VARCHAR2;
FUNCTION gen_delete_n_m_ref_by_ids_stmt(n_m_table_name VARCHAR2, n_fk_column_name VARCHAR2, m_table_name VARCHAR2, m_fk_column_name VARCHAR2, m_ref_column_name VARCHAR2, schema_name VARCHAR2 := USER) RETURN VARCHAR2;
FUNCTION gen_delete_n_m_ref_by_ids_call(n_m_table_name VARCHAR2, n_fk_column_name VARCHAR2, m_table_name VARCHAR2, m_fk_column_name VARCHAR2, schema_name VARCHAR2 := USER) RETURN VARCHAR2;
PROCEDURE create_ref_array_delete(tab_name VARCHAR2, schema_name VARCHAR2 := USER, ref_path IN OUT STRARRAY, vars OUT VARCHAR2, child_ref_block OUT VARCHAR2, ref_block OUT VARCHAR2);
FUNCTION gen_delete_ref_by_id_stmt(tab_name VARCHAR2, fk_column_name VARCHAR2) RETURN VARCHAR2;
FUNCTION gen_delete_ref_by_id_call(tab_name VARCHAR2, fk_column_name VARCHAR2, has_objclass_param BOOLEAN := FALSE, schema_name VARCHAR2 := USER) RETURN VARCHAR2;
FUNCTION gen_delete_m_ref_by_id_stmt(m_table_name VARCHAR2, m_fk_column_name VARCHAR2, fk_table_name STRARRAY, fk_columns STRARRAY, schema_name VARCHAR2 := USER) RETURN VARCHAR2;
FUNCTION gen_delete_m_ref_by_id_call(m_table_name VARCHAR2, fk_table_name STRARRAY, fk_columns STRARRAY, schema_name VARCHAR2 := USER) RETURN VARCHAR2;
FUNCTION gen_delete_n_m_ref_by_id_stmt(n_m_table_name VARCHAR2, n_fk_column_name VARCHAR2, m_table_name VARCHAR2, m_fk_column_name VARCHAR2, m_ref_column_name VARCHAR2, schema_name VARCHAR2 := USER) RETURN VARCHAR2;
FUNCTION gen_delete_n_m_ref_by_id_call(n_m_table_name VARCHAR2, n_fk_column_name VARCHAR2, m_table_name VARCHAR2, m_fk_column_name VARCHAR2, schema_name VARCHAR2 := USER) RETURN VARCHAR2;
PROCEDURE create_ref_delete(tab_name VARCHAR2, schema_name VARCHAR2 := USER, ref_path IN OUT STRARRAY, vars OUT VARCHAR2, child_ref_block OUT VARCHAR2, ref_block OUT VARCHAR2);
FUNCTION query_selfref_fk(tab_name VARCHAR2, schema_name VARCHAR2 := USER) RETURN SYS_REFCURSOR;
FUNCTION gen_delete_selfref_by_ids_call(tab_name VARCHAR2, self_fk_column_name VARCHAR2, has_objclass_param BOOLEAN := FALSE, schema_name VARCHAR2 := USER) RETURN VARCHAR2;
PROCEDURE create_selfref_array_delete(tab_name VARCHAR2, has_objclass_param BOOLEAN := FALSE, schema_name VARCHAR2 := USER, vars OUT VARCHAR2, self_block OUT VARCHAR2);
FUNCTION gen_delete_selfref_by_id_call(tab_name VARCHAR2, self_fk_column_name VARCHAR2, has_objclass_param BOOLEAN := FALSE, schema_name VARCHAR2 := USER) RETURN VARCHAR2;
PROCEDURE create_selfref_delete(tab_name VARCHAR2, has_objclass_param BOOLEAN := FALSE, schema_name VARCHAR2 := USER, selfref_path IN OUT STRARRAY, vars OUT VARCHAR2, self_block OUT VARCHAR2);
FUNCTION gen_delete_by_ids_stmt(tab_name VARCHAR2, has_objclass_param BOOLEAN := FALSE) RETURN VARCHAR2;
FUNCTION gen_delete_by_id_stmt(tab_name VARCHAR2, has_objclass_param BOOLEAN := FALSE) RETURN VARCHAR2;
FUNCTION query_ref_to_fk(tab_name VARCHAR2, schema_name VARCHAR2 := USER) RETURN SYS_REFCURSOR;
PROCEDURE create_ref_to_array_delete(tab_name VARCHAR2, schema_name VARCHAR2 := USER, ref_to_path IN OUT STRARRAY, vars OUT VARCHAR2, returning_block OUT VARCHAR2, collect_block OUT VARCHAR2, into_block OUT VARCHAR2, fk_block OUT VARCHAR2);
PROCEDURE create_ref_to_delete(tab_name VARCHAR2, schema_name VARCHAR2 := USER, ref_to_path IN OUT STRARRAY, vars OUT VARCHAR2, returning_block OUT VARCHAR2, into_block OUT VARCHAR2, fk_block OUT VARCHAR2);
FUNCTION query_ref_parent_fk(tab_name VARCHAR2, schema_name VARCHAR2 := USER) RETURN VARCHAR2;
PROCEDURE create_ref_parent_array_delete(tab_name VARCHAR2, schema_name VARCHAR2 := USER, ref_to_parent_path IN OUT STRARRAY, parent_block OUT VARCHAR2);
PROCEDURE create_ref_parent_delete(tab_name VARCHAR2, schema_name VARCHAR2 := USER, ref_to_parent_path IN OUT STRARRAY, parent_block OUT VARCHAR2);
PROCEDURE create_array_delete_dummy(tab_name VARCHAR2, schema_name VARCHAR2 := USER);
PROCEDURE create_delete_dummy(tab_name VARCHAR2, schema_name VARCHAR2 := USER);
PROCEDURE create_array_delete_post_dummy(tab_name VARCHAR2, schema_name VARCHAR2 := USER);
PROCEDURE create_delete_post_dummy(tab_name VARCHAR2, schema_name VARCHAR2 := USER);
FUNCTION query_member_1n(tab_name VARCHAR2, schema_name VARCHAR2 := USER) RETURN SYS_REFCURSOR;
PROCEDURE create_member_1n_array_delete(tab_name VARCHAR2, schema_name VARCHAR2 := USER, member_1n_path IN OUT STRARRAY, vars OUT VARCHAR2, ref_block OUT VARCHAR2);
PROCEDURE create_member_1n_delete(tab_name VARCHAR2, schema_name VARCHAR2 := USER, member_1n_path IN OUT STRARRAY, vars OUT VARCHAR2, ref_block OUT VARCHAR2);
FUNCTION query_member_nm(tab_name VARCHAR2, schema_name VARCHAR2 := USER) RETURN SYS_REFCURSOR;
PROCEDURE create_member_nm_array_delete(tab_name VARCHAR2, schema_name VARCHAR2 := USER, member_nm_path IN OUT STRARRAY, vars OUT VARCHAR2, ref_block OUT VARCHAR2);
PROCEDURE create_member_nm_delete(tab_name VARCHAR2, schema_name VARCHAR2 := USER, member_nm_path IN OUT STRARRAY, vars OUT VARCHAR2, ref_block OUT VARCHAR2);
/*
A delete function can consist of up to five parts:
1. Delete statements (or procedure call) for referencing tables where the FK is set to NO ACTION
2. A recursive delete call, if the relation stores tree structures, the FK is set to NO ACTION and parent_id can be NULL
3. The central delete statement that removes the given entry/ies and returns the deleted IDs
4. Deletes for unreferenced entries in tables where the FK is set to SET NULL
5. If an FK is set to CASCADE and covers the same column(s) as the PK, the referenced parent will be deleted
*/
--if referencing table requires an extra cleanup step, it needs its own delete function
FUNCTION check_for_cleanup(
tab_name VARCHAR2,
schema_name VARCHAR2 := USER
) RETURN VARCHAR2
IS
cleanup_ref_table VARCHAR2(30);
BEGIN
SELECT
COALESCE((
-- reference to parent
SELECT
fk2.table_name
FROM
all_constraints fk
JOIN
all_cons_columns fka
ON fka.constraint_name = fk.constraint_name
AND fka.table_name = fk.table_name
AND fka.owner = fk.owner
JOIN
all_constraints fk2
ON fk2.constraint_name = fk.r_constraint_name
AND fk2.owner = fk.owner
JOIN (
SELECT DISTINCT
cp.table_name,
cp.owner,
first_value(pka.column_name) OVER (PARTITION BY cp.table_name ORDER BY pka.position DESC) AS column_name,
first_value(pka.position) OVER (PARTITION BY cp.table_name ORDER BY pka.position DESC) AS position
FROM
all_constraints cp
JOIN
all_cons_columns pka
ON pka.constraint_name = cp.constraint_name
AND pka.table_name = cp.table_name
AND pka.owner = cp.owner
WHERE
cp.constraint_type = 'P'
) pk
ON pk.table_name = fk.table_name
AND pk.owner = fk.owner
AND pk.column_name = fka.column_name
WHERE
fk.table_name = tab_name
AND fk.owner = schema_name
AND fk.constraint_type = 'R'
AND pk.position = 1
),(
-- referencing tables
SELECT DISTINCT
c2.table_name
FROM
all_constraints c
JOIN
all_constraints c2
ON c2.constraint_name = c.r_constraint_name
AND c2.owner = c.owner
WHERE
c2.table_name = tab_name
AND c2.owner = schema_name
AND c.constraint_type = 'R'
AND c.delete_rule = 'NO ACTION'
),(
-- references to tables that need to be cleaned up
SELECT DISTINCT
c.table_name
FROM
all_constraints c
JOIN
all_constraints c2
ON c2.constraint_name = c.r_constraint_name
AND c2.owner = c.owner
WHERE
c.table_name = tab_name
AND c.owner = schema_name
AND c.constraint_type = 'R'
AND c.delete_rule = 'SET NULL'
AND c2.table_name <> 'CITYOBJECT'
AND (c2.table_name <> 'SURFACE_GEOMETRY'
OR c.table_name = 'IMPLICIT_GEOMETRY'
OR c.table_name = 'CITYOBJECT_GENERICATTRIB'
OR c.table_name = 'CITYOBJECTGROUP')
)) AS cleanup
INTO
cleanup_ref_table
FROM
dual;
RETURN cleanup_ref_table;
EXCEPTION
WHEN NO_DATA_FOUND THEN
RETURN '';
END;
FUNCTION is_child_ref(
fk_column_name VARCHAR2,
tab_name VARCHAR2,
ref_table_name VARCHAR2,
schema_name VARCHAR2 := USER
) RETURN NUMBER
IS
is_child NUMBER(1);
BEGIN
SELECT
1
INTO
is_child
FROM
all_constraints fk
JOIN
all_cons_columns fka
ON fka.constraint_name = fk.constraint_name
AND fka.table_name = fk.table_name
AND fka.owner = fk.owner
JOIN
all_constraints fk2
ON fk2.constraint_name = fk.r_constraint_name
AND fk2.owner = fk.owner
JOIN (
SELECT DISTINCT
cp.table_name,
cp.owner,
first_value(pka.column_name) OVER (PARTITION BY cp.table_name ORDER BY pka.position DESC) AS column_name,
first_value(pka.position) OVER (PARTITION BY cp.table_name ORDER BY pka.position DESC) AS position
FROM
all_constraints cp
JOIN
all_cons_columns pka
ON pka.constraint_name = cp.constraint_name
AND pka.table_name = cp.table_name
AND pka.owner = cp.owner
WHERE
cp.constraint_type = 'P'
) pk
ON pk.table_name = fk.table_name
AND pk.owner = fk.owner
AND pk.column_name = fka.column_name
WHERE
fk.table_name = upper(tab_name)
AND fk.owner = upper(schema_name)
AND fk2.table_name = upper(ref_table_name)
AND fk.constraint_type = 'R'
AND pk.position = 1
AND pk.column_name = fk_column_name;
RETURN is_child;
EXCEPTION
WHEN NO_DATA_FOUND THEN
RETURN 0;
END;
FUNCTION has_objclass_id(
tab_name VARCHAR2,
schema_name VARCHAR2 := USER
) RETURN NUMBER
IS
has_class_id NUMBER(1);
BEGIN
SELECT
1
INTO
has_class_id
FROM
all_tab_columns
WHERE
table_name = upper(tab_name)
AND owner = upper(schema_name)
AND column_name = 'OBJECTCLASS_ID';
RETURN has_class_id;
EXCEPTION
WHEN NO_DATA_FOUND THEN
RETURN 0;
END;
PROCEDURE query_ref_tables_and_columns(
tab_name VARCHAR2,
ref_parent_to_exclude VARCHAR2,
schema_name VARCHAR2 := USER,
ref_tables OUT STRARRAY,
ref_columns OUT STRARRAY
)
IS
BEGIN
SELECT
c.table_name,
a.column_name
BULK COLLECT INTO
ref_tables,
ref_columns
FROM
all_constraints c
JOIN
all_cons_columns a
ON a.constraint_name = c.constraint_name
AND a.table_name = c.table_name
AND a.owner = c.owner
JOIN
all_constraints c2
ON c2.constraint_name = c.r_constraint_name
AND c2.owner = c.owner
LEFT OUTER JOIN (
SELECT
mn.table_name,
mn.owner,
mn2.table_name AS m_table_name,
mna.column_name AS m_fk_column_name
FROM
all_constraints mn
JOIN
all_cons_columns mna
ON mna.constraint_name = mn.constraint_name
AND mna.table_name = mn.table_name
AND mna.owner = mn.owner
JOIN
all_constraints mnp
ON mnp.table_name = mn.table_name
AND mnp.owner = mn.owner
JOIN
all_cons_columns mnpa
ON mnpa.constraint_name = mnp.constraint_name
AND mnpa.table_name = mn.table_name
AND mnpa.owner = mn.owner
AND mnpa.column_name = mna.column_name
JOIN
all_constraints mn2
ON mn2.constraint_name = mn.r_constraint_name
AND mn2.owner = mn.owner
WHERE
mn2.table_name <> mn.table_name
AND mn.constraint_type = 'R'
AND mnp.constraint_type = 'P'
) m
ON m.table_name = c.table_name
AND m.owner = c.owner
AND a.column_name = m.m_fk_column_name
WHERE
c2.table_name = upper(tab_name)
AND c2.owner = upper(schema_name)
AND c.table_name <> upper(ref_parent_to_exclude)
AND c.constraint_type = 'R'
AND (c.delete_rule = 'SET NULL' OR (c.delete_rule = 'CASCADE' AND m.m_table_name IS NOT NULL))
AND citydb_delete_gen.is_child_ref(a.column_name, c.table_name, upper(tab_name), upper(schema_name)) = 0
ORDER BY
c.table_name,
a.column_name;
RETURN;
END;
/*****************************
* 1. Referencing tables
*****************************/
FUNCTION query_ref_fk(
tab_name VARCHAR2,
schema_name VARCHAR2 := USER
) RETURN SYS_REFCURSOR
IS
ref_cursor SYS_REFCURSOR;
BEGIN
OPEN ref_cursor FOR
SELECT
n.n_table_name,
n.n_fk_column_name,
n.cleanup_n_table,
n.is_child,
m.m_table_name,
m.m_fk_column_name,
m.m_ref_column_name,
citydb_delete_gen.check_for_cleanup(m.m_table_name, m.owner) AS cleanup_m_table
FROM (
SELECT
c2.table_name AS root_table_name,
c.table_name AS n_table_name,
c.owner,
a.column_name AS n_fk_column_name,
citydb_delete_gen.check_for_cleanup(c.table_name, c.owner) AS cleanup_n_table,
citydb_delete_gen.is_child_ref(a.column_name, c.table_name, c2.table_name, c.owner) AS is_child,
c.delete_rule
FROM
all_constraints c
JOIN
all_cons_columns a
ON a.constraint_name = c.constraint_name
AND a.table_name = c.table_name
AND a.owner = c.owner
JOIN
all_constraints c2
ON c2.constraint_name = c.r_constraint_name
AND c2.owner = c.owner
WHERE
c2.table_name = upper(tab_name)
AND c2.owner = upper(schema_name)
AND c.table_name <> c2.table_name
AND c.constraint_type = 'R'
) n
-- get n:m tables which returned NULL for cleanup_n_table in the n block
-- the FK has to be set to CASCADE to decide for cleanup
-- found FK column needs to be part of the PK
LEFT OUTER JOIN (
SELECT
mn.table_name,
mn.owner,
mn2.table_name AS m_table_name,
mna.column_name AS m_fk_column_name,
mna_ref.column_name AS m_ref_column_name
FROM
all_constraints mn
JOIN
all_cons_columns mna
ON mna.constraint_name = mn.constraint_name
AND mna.table_name = mn.table_name
AND mna.owner = mn.owner
JOIN
all_constraints mnp
ON mnp.table_name = mn.table_name
AND mnp.owner = mn.owner
JOIN
all_cons_columns mnpa
ON mnpa.constraint_name = mnp.constraint_name
AND mnpa.table_name = mn.table_name
AND mnpa.owner = mn.owner
AND mnpa.column_name = mna.column_name
JOIN
all_constraints mn2
ON mn2.constraint_name = mn.r_constraint_name
AND mn2.owner = mn.owner
JOIN
all_cons_columns mna_ref
ON mna_ref.constraint_name = mn.r_constraint_name
AND mna_ref.owner = mn.owner
WHERE
mn2.table_name <> mn.table_name
AND mn.constraint_type = 'R'
AND mnp.constraint_type = 'P'
) m
ON m.table_name = n.n_table_name
AND m.owner = n.owner
AND n.cleanup_n_table IS NULL
WHERE
(n.delete_rule = 'NO ACTION' OR n.is_child = 1)
AND (n.root_table_name <> m.m_table_name OR m.m_table_name IS NULL)
ORDER BY
n.is_child DESC,
n.n_table_name,
m.m_table_name;
RETURN ref_cursor;
END;
-- ARRAY CASE
FUNCTION gen_delete_ref_by_ids_stmt(
tab_name VARCHAR2,
fk_column_name VARCHAR2
) RETURN VARCHAR2
IS
BEGIN
RETURN
chr(10)||' -- delete '||lower(tab_name)||'s'
||chr(10)||' DELETE FROM'
||chr(10)||' '||lower(tab_name)||' t'
||chr(10)||' WHERE EXISTS ('
||chr(10)||' SELECT'
||chr(10)||' 1'
||chr(10)||' FROM'
||chr(10)||' TABLE(pids) a'
||chr(10)||' WHERE'
||chr(10)||' a.COLUMN_VALUE = t.'||lower(fk_column_name)
||chr(10)||' );'
||chr(10);
END;
FUNCTION gen_delete_ref_by_ids_call(
tab_name VARCHAR2,
fk_column_name VARCHAR2,
has_objclass_param BOOLEAN := FALSE,
schema_name VARCHAR2 := USER
) RETURN VARCHAR2
IS
BEGIN
IF has_objclass_param THEN
RETURN
chr(10)||' -- delete '||lower(tab_name)||'s'
||chr(10)||' SELECT'
||chr(10)||' t.id,'
||chr(10)||' t.objectclass_id'
||chr(10)||' BULK COLLECT INTO'
||chr(10)||' child_ids,'
||chr(10)||' child_class_ids'
||chr(10)||' FROM'
||chr(10)||' '||lower(tab_name)||' t,'
||chr(10)||' TABLE(pids) a'
||chr(10)||' WHERE'
||chr(10)||' t.'||lower(fk_column_name)||' = a.COLUMN_VALUE;'
||chr(10)
||chr(10)||' IF child_ids IS NOT EMPTY THEN'
||chr(10)||' dummy_ids := delete_'||citydb_util.get_short_name(tab_name, schema_name)||'_batch(child_ids, SET(child_class_ids));'
||chr(10)||' END IF;'
||chr(10);
ELSE
RETURN
chr(10)||' -- delete '||lower(tab_name)||'s'
||chr(10)||' SELECT'
||chr(10)||' t.id'
||chr(10)||' BULK COLLECT INTO'
||chr(10)||' child_ids'
||chr(10)||' FROM'
||chr(10)||' '||lower(tab_name)||' t,'
||chr(10)||' TABLE(pids) a'
||chr(10)||' WHERE'
||chr(10)||' t.'||lower(fk_column_name)||' = a.COLUMN_VALUE;'
||chr(10)
||chr(10)||' IF child_ids IS NOT EMPTY THEN'
||chr(10)||' dummy_ids := delete_'||citydb_util.get_short_name(tab_name, schema_name)||'_batch(child_ids);'
||chr(10)||' END IF;'
||chr(10);
END IF;
END;
FUNCTION gen_delete_m_ref_by_ids_stmt(
m_table_name VARCHAR2,
m_fk_column_name VARCHAR2,
fk_table_name STRARRAY,
fk_columns STRARRAY,
schema_name VARCHAR2 := USER
) RETURN VARCHAR2
IS
stmt VARCHAR2(8000);
where_clause VARCHAR2(4000);
BEGIN
stmt :=
chr(10)||' -- delete '||lower(m_table_name)||'(s) not being referenced any more'
||chr(10)||' IF '||citydb_util.get_short_name(m_table_name, schema_name)||'_ids IS NOT EMPTY THEN'
||chr(10)||' DELETE FROM'
||chr(10)||' '||lower(m_table_name)||' m'
||chr(10)||' WHERE EXISTS ('
||chr(10)||' SELECT DISTINCT'
||chr(10)||' a.COLUMN_VALUE'
||chr(10)||' FROM'
||chr(10)||' TABLE('||citydb_util.get_short_name(m_table_name, schema_name)||'_ids) a';
where_clause :=
chr(10)||' WHERE'
||chr(10)||' m.'||lower(m_fk_column_name)||' = a.COLUMN_VALUE';
FOR t IN
fk_table_name.FIRST .. fk_table_name.LAST
LOOP
stmt := stmt
||chr(10)||' LEFT JOIN'
||chr(10)||' '||lower(fk_table_name(t))||' n'||t
||chr(10)||' ON n'||t||'.'||lower(fk_columns(t))||' = a.COLUMN_VALUE';
where_clause := where_clause
||chr(10)||' AND n'||t||'.'||lower(fk_columns(t))||' IS NULL';
END LOOP;
stmt := stmt
|| where_clause
||chr(10)||' );'
||chr(10)||' END IF;'
||chr(10);
RETURN stmt;
END;
FUNCTION gen_delete_m_ref_by_ids_call(
m_table_name VARCHAR2,
fk_table_name STRARRAY,
fk_columns STRARRAY,
schema_name VARCHAR2 := USER
) RETURN VARCHAR2
IS
call_stmt VARCHAR2(8000);
where_clause VARCHAR2(4000);
where_and VARCHAR2(4) := '';
BEGIN
call_stmt :=
chr(10)||' -- delete '||lower(m_table_name)||'(s) not being referenced any more'
||chr(10)||' IF '||citydb_util.get_short_name(m_table_name, schema_name)||'_ids IS NOT EMPTY THEN'
||chr(10)||' SELECT DISTINCT'
||chr(10)||' a.COLUMN_VALUE'
||chr(10)||' BULK COLLECT INTO'
||chr(10)||' '||citydb_util.get_short_name(m_table_name, schema_name)||'_pids'
||chr(10)||' FROM'
||chr(10)||' TABLE('||citydb_util.get_short_name(m_table_name, schema_name)||'_ids) a';
where_clause := chr(10)||' WHERE';
FOR t IN
fk_table_name.FIRST .. fk_table_name.LAST
LOOP
call_stmt := call_stmt
||chr(10)||' LEFT JOIN'
||chr(10)||' '||lower(fk_table_name(t))||' n'||t
||chr(10)||' ON n'||t||'.'||lower(fk_columns(t))||' = a.COLUMN_VALUE';
where_clause := where_clause
||chr(10)||' '||where_and||'n'||t||'.'||lower(fk_columns(t))||' IS NULL';
where_and := 'AND ';
END LOOP;
call_stmt := call_stmt
|| where_clause || ';'
||chr(10)
||chr(10)||' IF '||citydb_util.get_short_name(m_table_name, schema_name)||'_pids IS NOT EMPTY THEN'
||chr(10)||' dummy_ids := delete_'||citydb_util.get_short_name(m_table_name, schema_name)||'_batch('||citydb_util.get_short_name(m_table_name, schema_name)||'_pids);'
||chr(10)||' END IF;'
||chr(10)||' END IF;'
||chr(10);
RETURN call_stmt;
END;
FUNCTION gen_delete_n_m_ref_by_ids_stmt(
n_m_table_name VARCHAR2,
n_fk_column_name VARCHAR2,
m_table_name VARCHAR2,
m_fk_column_name VARCHAR2,
m_ref_column_name VARCHAR2,
schema_name VARCHAR2 := USER
) RETURN VARCHAR2
IS
ref_tables STRARRAY;
ref_columns STRARRAY;
BEGIN
query_ref_tables_and_columns(m_table_name, n_m_table_name, schema_name, ref_tables, ref_columns);
ref_tables := STRARRAY(n_m_table_name) MULTISET UNION ALL COALESCE(ref_tables, STRARRAY());
ref_columns := STRARRAY(m_fk_column_name) MULTISET UNION ALL COALESCE(ref_columns, STRARRAY());
RETURN
chr(10)||' -- delete references to '||lower(m_table_name)||'s'
||chr(10)||' DELETE FROM'
||chr(10)||' '||lower(n_m_table_name)||' t'
||chr(10)||' WHERE EXISTS ('
||chr(10)||' SELECT'
||chr(10)||' 1'
||chr(10)||' FROM'
||chr(10)||' TABLE(pids) a'
||chr(10)||' WHERE'
||chr(10)||' a.COLUMN_VALUE = t.'||lower(n_fk_column_name)
||chr(10)||' )'
||chr(10)||' RETURNING'
||chr(10)||' '||m_fk_column_name
||chr(10)||' BULK COLLECT INTO'
||chr(10)||' '||citydb_util.get_short_name(m_table_name, schema_name)||'_ids;'
||chr(10)|| gen_delete_m_ref_by_ids_stmt(m_table_name, m_ref_column_name, ref_tables, ref_columns, schema_name);
END;
FUNCTION gen_delete_n_m_ref_by_ids_call(
n_m_table_name VARCHAR2,
n_fk_column_name VARCHAR2,
m_table_name VARCHAR2,
m_fk_column_name VARCHAR2,
schema_name VARCHAR2 := USER
) RETURN VARCHAR2
IS
ref_tables STRARRAY;
ref_columns STRARRAY;
BEGIN
query_ref_tables_and_columns(m_table_name, n_m_table_name, schema_name, ref_tables, ref_columns);
ref_tables := STRARRAY(n_m_table_name) MULTISET UNION ALL COALESCE(ref_tables, STRARRAY());
ref_columns := STRARRAY(m_fk_column_name) MULTISET UNION ALL COALESCE(ref_columns, STRARRAY());
RETURN
chr(10)||' -- delete references to '||lower(m_table_name)||'s'
||chr(10)||' DELETE FROM'
||chr(10)||' '||lower(n_m_table_name)||' t'
||chr(10)||' WHERE EXISTS ('
||chr(10)||' SELECT'
||chr(10)||' 1'
||chr(10)||' FROM'
||chr(10)||' TABLE(pids) a'
||chr(10)||' WHERE'
||chr(10)||' a.COLUMN_VALUE = t.'||lower(n_fk_column_name)
||chr(10)||' )'
||chr(10)||' RETURNING'
||chr(10)||' '||lower(m_fk_column_name)
||chr(10)||' BULK COLLECT INTO'
||chr(10)||' '||citydb_util.get_short_name(m_table_name, schema_name)||'_ids;'
||chr(10)|| gen_delete_m_ref_by_ids_call(m_table_name, ref_tables, ref_columns, schema_name);
END;
PROCEDURE create_ref_array_delete(
tab_name VARCHAR2,
schema_name VARCHAR2 := USER,
ref_path IN OUT STRARRAY,
vars OUT VARCHAR2,
child_ref_block OUT VARCHAR2,
ref_block OUT VARCHAR2
)
IS
ref_cursor SYS_REFCURSOR;
n_table_name VARCHAR2(30);
n_fk_column_name VARCHAR2(30);
cleanup_n_table VARCHAR2(30);
is_child NUMBER;
m_table_name VARCHAR2(30);
m_fk_column_name VARCHAR2(30);
m_ref_column_name VARCHAR2(30);
cleanup_m_table VARCHAR2(30);
objclass ID_ARRAY;
has_objclass_param BOOLEAN := FALSE;
BEGIN
ref_cursor := query_ref_fk(tab_name, schema_name);
LOOP
FETCH ref_cursor
INTO n_table_name, n_fk_column_name, cleanup_n_table, is_child,
m_table_name, m_fk_column_name, m_ref_column_name, cleanup_m_table;
EXIT WHEN ref_cursor%NOTFOUND;
IF ref_block IS NULL THEN
vars := '';
ref_block := '';
END IF;
IF (
cleanup_n_table IS NOT NULL
OR cleanup_m_table IS NOT NULL
) THEN
IF m_table_name IS NULL THEN
IF is_child = 1 THEN
-- find objectclass of child to set filter
EXECUTE IMMEDIATE 'SELECT '||schema_name||'.citydb_objclass.table_name_to_objectclass_ids(:1) FROM dual'
INTO objclass USING n_table_name;
-- if found set objectclass condition
IF objclass IS NOT EMPTY THEN
IF child_ref_block IS NULL THEN
-- create dummy function as it is needed in delete function for child
create_array_delete_post_dummy(tab_name, schema_name);
child_ref_block := '';
END IF;
child_ref_block := child_ref_block ||
chr(10)||' -- delete '||lower(n_table_name)||'s'
||chr(10)||' IF class_ids MULTISET INTERSECT ID_ARRAY('||citydb_util.id_array2string(objclass, ',')||') IS NOT EMPTY THEN'
||chr(10)||' deleted_ids := deleted_ids MULTISET UNION ALL COALESCE(delete_'||citydb_util.get_short_name(n_table_name, schema_name)||'_batch(pids, class_ids), ID_ARRAY());'
||chr(10)||' END IF;'
||chr(10);
ELSE
ref_block := ref_block ||
chr(10)||' -- delete '||lower(n_table_name)||'s'
||chr(10)||' dummy_ids := delete_'||citydb_util.get_short_name(n_table_name, schema_name)||'_batch(pids);'
||chr(10);
END IF;
ELSE
IF vars IS NULL OR INSTR(vars, 'child_ids') = 0 THEN
vars := vars ||chr(10)|| ' child_ids ID_ARRAY;';
END IF;
-- check if delete function for n_table_name has objclass_id parameter
has_objclass_param := has_objclass_id(n_table_name, schema_name) = 1;
IF has_objclass_param THEN
IF vars IS NULL OR INSTR(vars, 'child_class_ids') = 0 THEN
vars := vars ||chr(10)|| ' child_class_ids ID_ARRAY;';
END IF;
END IF;
ref_block := ref_block || gen_delete_ref_by_ids_call(n_table_name, n_fk_column_name, has_objclass_param, schema_name);
END IF;
-- create array delete function for referencing childs
IF lower(n_table_name) || '_array' NOT MEMBER OF ref_path THEN
ref_path := citydb_delete_gen.create_array_delete_function(n_table_name, schema_name, ref_path);
END IF;
ELSE
vars := vars
||chr(10)||' '||citydb_util.get_short_name(m_table_name, schema_name)||'_ids ID_ARRAY;'
||chr(10)||' '||citydb_util.get_short_name(m_table_name, schema_name)||'_pids ID_ARRAY;';
ref_block := ref_block || gen_delete_n_m_ref_by_ids_call(n_table_name, n_fk_column_name, m_table_name, m_fk_column_name, schema_name);
-- create array delete function for referencing features
IF lower(m_table_name) || '_array' NOT MEMBER OF ref_path THEN
ref_path := citydb_delete_gen.create_array_delete_function(m_table_name, schema_name, ref_path);
END IF;
END IF;
ELSE
IF m_table_name IS NULL THEN
ref_block := ref_block || gen_delete_ref_by_ids_stmt(n_table_name, n_fk_column_name);
ELSE
vars := vars ||chr(10)||' '||citydb_util.get_short_name(m_table_name, schema_name)||'_ids ID_ARRAY;';
ref_block := ref_block || gen_delete_n_m_ref_by_ids_stmt(n_table_name, n_fk_column_name, m_table_name, m_fk_column_name, m_ref_column_name, schema_name);
END IF;
END IF;
END LOOP;
RETURN;
END;
-- SINGLE CASE
FUNCTION gen_delete_ref_by_id_stmt(
tab_name VARCHAR2,
fk_column_name VARCHAR2
) RETURN VARCHAR2
IS
BEGIN
RETURN
chr(10)||' -- delete '||lower(tab_name)
||chr(10)||' DELETE FROM'
||chr(10)||' '||lower(tab_name)
||chr(10)||' WHERE'
||chr(10)||' '||lower(fk_column_name)||' = pid;'
||chr(10);
END;
FUNCTION gen_delete_ref_by_id_call(
tab_name VARCHAR2,
fk_column_name VARCHAR2,
has_objclass_param BOOLEAN := FALSE,
schema_name VARCHAR2 := USER
) RETURN VARCHAR2
IS
BEGIN
IF has_objclass_param THEN
RETURN
chr(10)||' -- delete '||lower(tab_name)||'s'
||chr(10)||' SELECT'
||chr(10)||' id,'
||chr(10)||' objectclass_id'
||chr(10)||' BULK COLLECT INTO'
||chr(10)||' child_ids,'
||chr(10)||' child_class_ids'
||chr(10)||' FROM'
||chr(10)||' '||lower(tab_name)
||chr(10)||' WHERE'
||chr(10)||' '||lower(fk_column_name)||' = pid;'
||chr(10)
||chr(10)||' IF child_ids IS NOT EMPTY THEN'
||chr(10)||' dummy_ids := delete_'||citydb_util.get_short_name(tab_name, schema_name)||'_batch(child_ids, SET(child_class_ids));'
||chr(10)||' END IF;'
||chr(10);
ELSE
RETURN
chr(10)||' -- delete '||lower(tab_name)||'s'
||chr(10)||' SELECT'
||chr(10)||' id'
||chr(10)||' BULK COLLECT INTO'
||chr(10)||' child_ids'
||chr(10)||' FROM'
||chr(10)||' '||lower(tab_name)
||chr(10)||' WHERE'
||chr(10)||' '||lower(fk_column_name)||' = pid;'
||chr(10)
||chr(10)||' IF child_ids IS NOT EMPTY THEN'
||chr(10)||' dummy_ids := delete_'||citydb_util.get_short_name(tab_name, schema_name)||'_batch(child_ids);'
||chr(10)||' END IF;'
||chr(10);
END IF;
END;
FUNCTION gen_delete_m_ref_by_id_stmt(
m_table_name VARCHAR2,
m_fk_column_name VARCHAR2,
fk_table_name STRARRAY,
fk_columns STRARRAY,
schema_name VARCHAR2 := USER
) RETURN VARCHAR2
IS
stmt VARCHAR2(8000);
where_clause VARCHAR2(4000);
BEGIN
stmt :=
chr(10)||' -- delete '||lower(m_table_name)||' not being referenced any more'
||chr(10)||' IF '||citydb_util.get_short_name(m_table_name, schema_name)||'_ref_id IS NOT NULL THEN'
||chr(10)||' DELETE FROM'
||chr(10)||' '||lower(m_table_name)||' m'
||chr(10)||' WHERE EXISTS ('
||chr(10)||' SELECT'
||chr(10)||' 1'
||chr(10)||' FROM'
||chr(10)||' TABLE(ID_ARRAY('||citydb_util.get_short_name(m_table_name, schema_name)||'_ref_id)) a';
where_clause :=
chr(10)||' WHERE'
||chr(10)||' m.'||lower(m_fk_column_name)||' = a.COLUMN_VALUE';
FOR t IN
fk_table_name.FIRST .. fk_table_name.LAST
LOOP
stmt := stmt
||chr(10)||' LEFT JOIN'
||chr(10)||' '||lower(fk_table_name(t))||' n'||t
||chr(10)||' ON n'||t||'.'||lower(fk_columns(t))||' = a.COLUMN_VALUE';
where_clause := where_clause
||chr(10)||' AND n'||t||'.'||lower(fk_columns(t))||' IS NULL';
END LOOP;
stmt := stmt
|| where_clause
||chr(10)||' );'
||chr(10)||' END IF;'
||chr(10);
RETURN stmt;
END;
FUNCTION gen_delete_m_ref_by_id_call(
m_table_name VARCHAR2,
fk_table_name STRARRAY,
fk_columns STRARRAY,
schema_name VARCHAR2 := USER
) RETURN VARCHAR2
IS
call_stmt VARCHAR2(8000);
where_clause VARCHAR2(4000);
where_and VARCHAR2(4) := '';
BEGIN
call_stmt :=
chr(10)||' -- delete '||lower(m_table_name)||' not being referenced any more'
||chr(10)||' IF '||citydb_util.get_short_name(m_table_name, schema_name)||'_ref_id IS NOT NULL THEN'
||chr(10)||' SELECT'
||chr(10)||' a.COLUMN_VALUE'
||chr(10)||' INTO'
||chr(10)||' '||citydb_util.get_short_name(m_table_name, schema_name)||'_pid'
||chr(10)||' FROM'
||chr(10)||' TABLE(ID_ARRAY('||citydb_util.get_short_name(m_table_name, schema_name)||'_ref_id)) a';
where_clause := chr(10)||' WHERE';
FOR t IN
fk_table_name.FIRST .. fk_table_name.LAST
LOOP
call_stmt := call_stmt
||chr(10)||' LEFT JOIN'
||chr(10)||' '||lower(fk_table_name(t))||' n'||t
||chr(10)||' ON n'||t||'.'||lower(fk_columns(t))||' = a.COLUMN_VALUE';
where_clause := where_clause
||chr(10)||' '||where_and||'n'||t||'.'||lower(fk_columns(t))||' IS NULL';
where_and := 'AND ';
END LOOP;
call_stmt := call_stmt
|| where_clause || ';'
||chr(10)
||chr(10)||' IF '||citydb_util.get_short_name(m_table_name, schema_name)||'_pid IS NOT NULL THEN'
||chr(10)||' dummy_id := delete_'||citydb_util.get_short_name(m_table_name, schema_name)||'('||citydb_util.get_short_name(m_table_name, schema_name)||'_pid);'
||chr(10)||' END IF;'
||chr(10)||' END IF;'
||chr(10);
RETURN call_stmt;
END;
FUNCTION gen_delete_n_m_ref_by_id_stmt(
n_m_table_name VARCHAR2,
n_fk_column_name VARCHAR2,
m_table_name VARCHAR2,
m_fk_column_name VARCHAR2,
m_ref_column_name VARCHAR2,
schema_name VARCHAR2 := USER
) RETURN VARCHAR2
IS
ref_tables STRARRAY;
ref_columns STRARRAY;
BEGIN
query_ref_tables_and_columns(m_table_name, n_m_table_name, schema_name, ref_tables, ref_columns);
ref_tables := STRARRAY(n_m_table_name) MULTISET UNION ALL COALESCE(ref_tables, STRARRAY());
ref_columns := STRARRAY(m_fk_column_name) MULTISET UNION ALL COALESCE(ref_columns, STRARRAY());
RETURN
chr(10)||' -- delete references to '||lower(m_table_name)||'s'
||chr(10)||' DELETE FROM'
||chr(10)||' '||lower(n_m_table_name)
||chr(10)||' WHERE'
||chr(10)||' '||lower(n_fk_column_name)||' = pid'
||chr(10)||' RETURNING'
||chr(10)||' '||lower(m_fk_column_name)
||chr(10)||' BULK COLLECT INTO'
||chr(10)||' '||citydb_util.get_short_name(m_table_name, schema_name)||'_ids;'
||chr(10)|| gen_delete_m_ref_by_ids_stmt(m_table_name, m_ref_column_name, ref_tables, ref_columns, schema_name);
END;
FUNCTION gen_delete_n_m_ref_by_id_call(
n_m_table_name VARCHAR2,
n_fk_column_name VARCHAR2,
m_table_name VARCHAR2,
m_fk_column_name VARCHAR2,
schema_name VARCHAR2 := USER
) RETURN VARCHAR2
IS
ref_tables STRARRAY;
ref_columns STRARRAY;
BEGIN
query_ref_tables_and_columns(m_table_name, n_m_table_name, schema_name, ref_tables, ref_columns);
ref_tables := STRARRAY(n_m_table_name) MULTISET UNION ALL COALESCE(ref_tables, STRARRAY());
ref_columns := STRARRAY(m_fk_column_name) MULTISET UNION ALL COALESCE(ref_columns, STRARRAY());
RETURN
chr(10)||' -- delete references to '||lower(m_table_name)||'s'
||chr(10)||' DELETE FROM'
||chr(10)||' '||lower(n_m_table_name)
||chr(10)||' WHERE'
||chr(10)||' '||lower(n_fk_column_name)||' = pid'
||chr(10)||' RETURNING'
||chr(10)||' '||lower(m_fk_column_name)
||chr(10)||' BULK COLLECT INTO'
||chr(10)||' '||citydb_util.get_short_name(m_table_name, schema_name)||'_ids;'
||chr(10)|| gen_delete_m_ref_by_ids_call(m_table_name, ref_tables, ref_columns, schema_name);
END;
PROCEDURE create_ref_delete(
tab_name VARCHAR2,
schema_name VARCHAR2 := USER,
ref_path IN OUT STRARRAY,
vars OUT VARCHAR2,
child_ref_block OUT VARCHAR2,
ref_block OUT VARCHAR2
)
IS
ref_cursor SYS_REFCURSOR;
n_table_name VARCHAR2(30);
n_fk_column_name VARCHAR2(30);
cleanup_n_table VARCHAR2(30);
is_child NUMBER;
m_table_name VARCHAR2(30);
m_fk_column_name VARCHAR2(30);
m_ref_column_name VARCHAR2(30);
cleanup_m_table VARCHAR2(30);
objclass ID_ARRAY;
has_objclass_param BOOLEAN := FALSE;
BEGIN
ref_cursor := query_ref_fk(tab_name, schema_name);
LOOP
FETCH ref_cursor
INTO n_table_name, n_fk_column_name, cleanup_n_table, is_child,
m_table_name, m_fk_column_name, m_ref_column_name, cleanup_m_table;
EXIT WHEN ref_cursor%NOTFOUND;
IF ref_block IS NULL THEN
vars := '';
ref_block := '';
END IF;
IF (
cleanup_n_table IS NOT NULL
OR cleanup_m_table IS NOT NULL
) THEN
IF is_child = 1 THEN
-- find objectclass of child to set filter
EXECUTE IMMEDIATE 'SELECT '||schema_name||'.citydb_objclass.table_name_to_objectclass_ids(:1) FROM dual'
INTO objclass USING n_table_name;
-- if found set objectclass condition
IF objclass IS NOT EMPTY THEN
IF child_ref_block IS NULL THEN
-- create dummy function as it is needed in delete function for child
create_delete_post_dummy(tab_name, schema_name);
child_ref_block := '';
END IF;
child_ref_block := child_ref_block ||
chr(10)||' -- delete '||lower(n_table_name)
||chr(10)||' IF class_id IN ('||citydb_util.id_array2string(objclass, ',')||') THEN'
||chr(10)||' deleted_id := delete_'||citydb_util.get_short_name(n_table_name, schema_name)||'(pid, class_id);'
||chr(10)||' END IF;'
||chr(10);
ELSE
ref_block := ref_block ||
chr(10)||' -- delete '||lower(n_table_name)
||chr(10)||' dummy_id := delete_'||citydb_util.get_short_name(n_table_name, schema_name)||'(pid);'
||chr(10);
END IF;
-- create delete function for child
IF lower(n_table_name) NOT MEMBER OF ref_path THEN
ref_path := citydb_delete_gen.create_delete_function(n_table_name, schema_name, ref_path);
END IF;
ELSE
IF m_table_name IS NULL THEN
IF vars IS NULL OR INSTR(vars, 'child_ids') = 0 THEN
vars := vars ||chr(10)|| ' child_ids ID_ARRAY;';
END IF;
-- check if delete function for n_table_name has objclass_id parameter
has_objclass_param := has_objclass_id(n_table_name, schema_name) = 1;
IF has_objclass_param THEN
IF vars IS NULL OR INSTR(vars, 'child_class_ids') = 0 THEN
vars := vars ||chr(10)|| ' child_class_ids ID_ARRAY;';
END IF;
END IF;
ref_block := ref_block || gen_delete_ref_by_id_call(n_table_name, n_fk_column_name, has_objclass_param, schema_name);
ELSE
vars := vars
||chr(10)||' '||citydb_util.get_short_name(m_table_name, schema_name)||'_ids ID_ARRAY;'
||chr(10)||' '||citydb_util.get_short_name(m_table_name, schema_name)||'_pids ID_ARRAY;';
ref_block := ref_block || gen_delete_n_m_ref_by_id_call(n_table_name, n_fk_column_name, m_table_name, m_fk_column_name, schema_name);
END IF;
-- create array delete function for referencing features
IF lower(COALESCE(m_table_name, n_table_name)) || '_array' NOT MEMBER OF ref_path THEN
ref_path := citydb_delete_gen.create_array_delete_function(COALESCE(m_table_name, n_table_name), schema_name, ref_path);
END IF;
END IF;
ELSE
IF m_table_name IS NULL THEN
ref_block := ref_block || gen_delete_ref_by_id_stmt(n_table_name, n_fk_column_name);
ELSE
vars := vars ||chr(10)||' '||citydb_util.get_short_name(m_table_name, schema_name)||'_ids ID_ARRAY;';
ref_block := ref_block || gen_delete_n_m_ref_by_id_stmt(n_table_name, n_fk_column_name, m_table_name, m_fk_column_name, m_ref_column_name, schema_name);
END IF;
END IF;
END LOOP;
RETURN;
END;
/*****************************
* 2. Self references
*
* Look for nullable FK columns to omit root_id column
*****************************/
FUNCTION query_selfref_fk(
tab_name VARCHAR2,
schema_name VARCHAR2 := USER
) RETURN SYS_REFCURSOR
IS
self_cursor SYS_REFCURSOR;
BEGIN
OPEN self_cursor FOR
SELECT
a.column_name
FROM
all_constraints c
JOIN
all_cons_columns ac
ON ac.constraint_name = c.constraint_name
AND ac.table_name = c.table_name
AND ac.owner = c.owner
JOIN
all_constraints c2
ON c2.constraint_name = c.r_constraint_name
AND c2.owner = c.owner
JOIN
all_tab_columns a
ON a.column_name = ac.column_name
AND a.table_name = ac.table_name
AND a.owner = ac.owner
WHERE
c.table_name = upper(tab_name)
AND c.owner = upper(schema_name)
AND c.table_name = c2.table_name
AND c.constraint_type = 'R'
AND c.delete_rule = 'NO ACTION'
AND a.nullable = 'Y';
RETURN self_cursor;
END;
-- ARRAY CASE
FUNCTION gen_delete_selfref_by_ids_call(
tab_name VARCHAR2,
self_fk_column_name VARCHAR2,
has_objclass_param BOOLEAN := FALSE,
schema_name VARCHAR2 := USER
) RETURN VARCHAR2
IS
BEGIN
IF has_objclass_param THEN
RETURN
chr(10)||' -- delete referenced parts'
||chr(10)||' SELECT'
||chr(10)||' t.id,'
||chr(10)||' t.objectclass_id'
||chr(10)||' BULK COLLECT INTO'
||chr(10)||' part_ids,'
||chr(10)||' part_class_ids'
||chr(10)||' FROM'
||chr(10)||' '||lower(tab_name)||' t,'
||chr(10)||' TABLE(pids) a'
||chr(10)||' WHERE'
||chr(10)||' t.'||lower(self_fk_column_name)||' = a.COLUMN_VALUE'
||chr(10)||' AND t.id != a.COLUMN_VALUE;'
||chr(10)
||chr(10)||' IF part_ids IS NOT EMPTY THEN'
||chr(10)||' dummy_ids := delete_'||citydb_util.get_short_name(tab_name, schema_name)||'_batch(part_ids, SET(part_class_ids));'
||chr(10)||' END IF;'
||chr(10);
ELSE
RETURN
chr(10)||' -- delete referenced parts'
||chr(10)||' SELECT'
||chr(10)||' t.id'
||chr(10)||' BULK COLLECT INTO'
||chr(10)||' part_ids'
||chr(10)||' FROM'
||chr(10)||' '||lower(tab_name)||' t,'
||chr(10)||' TABLE(pids) a'
||chr(10)||' WHERE'
||chr(10)||' t.'||lower(self_fk_column_name)||' = a.COLUMN_VALUE'
||chr(10)||' AND t.id != a.COLUMN_VALUE;'
||chr(10)
||chr(10)||' IF part_ids IS NOT EMPTY THEN'
||chr(10)||' dummy_ids := delete_'||citydb_util.get_short_name(tab_name, schema_name)||'_batch(part_ids);'
||chr(10)||' END IF;'
||chr(10);
END IF;
END;
PROCEDURE create_selfref_array_delete(
tab_name VARCHAR2,
has_objclass_param BOOLEAN := FALSE,
schema_name VARCHAR2 := USER,
vars OUT VARCHAR2,
self_block OUT VARCHAR2
)
IS
self_cursor SYS_REFCURSOR;
parent_column VARCHAR2(30);
BEGIN
self_cursor := query_selfref_fk(tab_name, schema_name);
LOOP
FETCH self_cursor
INTO parent_column;
EXIT WHEN self_cursor%NOTFOUND;
IF self_block IS NULL THEN
-- create a dummy array delete function to avoid endless recursive calls
create_array_delete_dummy(tab_name, schema_name);
vars := chr(10)|| ' part_ids ID_ARRAY;';
IF has_objclass_param THEN
vars := vars ||chr(10)|| ' part_class_ids ID_ARRAY;';
END IF;
self_block := '';
END IF;
self_block := self_block || gen_delete_selfref_by_ids_call(tab_name, parent_column, has_objclass_param, schema_name);
END LOOP;
RETURN;
END;
-- SINGLE CASE
FUNCTION gen_delete_selfref_by_id_call(
tab_name VARCHAR2,
self_fk_column_name VARCHAR2,
has_objclass_param BOOLEAN := FALSE,
schema_name VARCHAR2 := USER
) RETURN VARCHAR2
IS
BEGIN
IF has_objclass_param THEN
RETURN
chr(10)||' -- delete referenced parts'
||chr(10)||' SELECT'
||chr(10)||' id,'
||chr(10)||' objectclass_id'
||chr(10)||' BULK COLLECT INTO'
||chr(10)||' part_ids,'
||chr(10)||' part_class_ids'
||chr(10)||' FROM'
||chr(10)||' '||lower(tab_name)
||chr(10)||' WHERE'
||chr(10)||' '||lower(self_fk_column_name)||' = pid'
||chr(10)||' AND id != pid;'
||chr(10)
||chr(10)||' IF part_ids IS NOT EMPTY THEN'
||chr(10)||' dummy_ids := delete_'||citydb_util.get_short_name(tab_name, schema_name)||'_batch(part_ids, SET(part_class_ids));'
||chr(10)||' END IF;'
||chr(10);
ELSE
RETURN
chr(10)||' -- delete referenced parts'
||chr(10)||' SELECT'
||chr(10)||' id'
||chr(10)||' BULK COLLECT INTO'
||chr(10)||' part_ids'
||chr(10)||' FROM'
||chr(10)||' '||lower(tab_name)
||chr(10)||' WHERE'
||chr(10)||' '||lower(self_fk_column_name)||' = pid'
||chr(10)||' AND id != pid;'
||chr(10)
||chr(10)||' IF part_ids IS NOT EMPTY THEN'
||chr(10)||' dummy_ids := delete_'||citydb_util.get_short_name(tab_name, schema_name)||'_batch(part_ids);'
||chr(10)||' END IF;'
||chr(10);
END IF;
END;
PROCEDURE create_selfref_delete(
tab_name VARCHAR2,
has_objclass_param BOOLEAN := FALSE,
schema_name VARCHAR2 := USER,
selfref_path IN OUT STRARRAY,
vars OUT VARCHAR2,
self_block OUT VARCHAR2
)
IS
self_cursor SYS_REFCURSOR;
parent_column VARCHAR2(30);
BEGIN
self_cursor := query_selfref_fk(tab_name, schema_name);
LOOP
FETCH self_cursor
INTO parent_column;
EXIT WHEN self_cursor%NOTFOUND;
IF self_block IS NULL THEN
vars := chr(10)|| ' part_ids ID_ARRAY;';
IF has_objclass_param THEN
vars := vars ||chr(10)|| ' part_class_ids ID_ARRAY;';
END IF;
self_block := '';
END IF;
self_block := self_block || gen_delete_selfref_by_id_call(tab_name, parent_column, has_objclass_param, schema_name);
END LOOP;
RETURN;
END;
/*****************************
* 3. Main delete
*
* statements are not closed because more columns might be returned
*****************************/
-- ARRAY CASE
FUNCTION gen_delete_by_ids_stmt(
tab_name VARCHAR2,
has_objclass_param BOOLEAN := FALSE
) RETURN VARCHAR2
IS
BEGIN
RETURN
chr(10)||' DELETE FROM'
||chr(10)||' '||lower(tab_name)||' t'
||chr(10)||' WHERE EXISTS ('
||chr(10)||' SELECT'
||chr(10)||' a.COLUMN_VALUE'
||chr(10)||' FROM'
||chr(10)||' TABLE(pids) a'
||chr(10)||' WHERE'
||chr(10)||' a.COLUMN_VALUE = t.id'
||chr(10)||' )'
|| CASE WHEN has_objclass_param
THEN chr(10)||' AND t.objectclass_id MEMBER OF class_ids'
ELSE ''
END
||chr(10)||' RETURNING'
||chr(10)||' id';
END;
-- SINGLE CASE
FUNCTION gen_delete_by_id_stmt(
tab_name VARCHAR2,
has_objclass_param BOOLEAN := FALSE
) RETURN VARCHAR2
IS
BEGIN
RETURN
chr(10)||' DELETE FROM'
||chr(10)||' '||lower(tab_name)
||chr(10)||' WHERE'
||chr(10)||' id = pid'
|| CASE WHEN has_objclass_param
THEN chr(10)||' AND objectclass_id = class_id'
ELSE ''
END
||chr(10)||' RETURNING'
||chr(10)||' id';
END;
/*****************************
* 4. FKs in table
*****************************/
FUNCTION query_ref_to_fk(
tab_name VARCHAR2,
schema_name VARCHAR2 := USER
) RETURN SYS_REFCURSOR
IS
ref_to_cursor SYS_REFCURSOR;
BEGIN
OPEN ref_to_cursor FOR
SELECT
a_ref.table_name AS ref_table_name,
a_ref.column_name AS ref_column_name,
LISTAGG(ac.column_name, ','||chr(10)||' ') WITHIN GROUP (ORDER BY ac.position) AS fk_columns,
citydb_delete_gen.check_for_cleanup(a_ref.table_name, a_ref.owner) AS cleanup_ref_table
FROM
all_constraints c
JOIN
all_cons_columns ac
ON ac.constraint_name = c.constraint_name
AND ac.table_name = c.table_name
AND ac.owner = c.owner
JOIN
all_cons_columns a_ref
ON a_ref.constraint_name = c.r_constraint_name
AND a_ref.owner = c.owner
WHERE
c.table_name = upper(tab_name)
AND c.owner = upper(schema_name)
AND c.table_name <> a_ref.table_name
AND c.constraint_type = 'R'
AND c.delete_rule = 'SET NULL'
AND a_ref.table_name <> 'CITYOBJECT'
AND (a_ref.table_name <> 'SURFACE_GEOMETRY'
OR c.table_name = 'IMPLICIT_GEOMETRY'
OR c.table_name = 'CITYOBJECT_GENERICATTRIB'
OR c.table_name = 'CITYOBJECTGROUP')
GROUP BY
a_ref.table_name,
a_ref.owner,
a_ref.column_name;
RETURN ref_to_cursor;
END;
-- ARRAY CASE
PROCEDURE create_ref_to_array_delete(
tab_name VARCHAR2,
schema_name VARCHAR2 := USER,
ref_to_path IN OUT STRARRAY,
vars OUT VARCHAR2,
returning_block OUT VARCHAR2,
collect_block OUT VARCHAR2,
into_block OUT VARCHAR2,
fk_block OUT VARCHAR2
)
IS
ref_to_cursor SYS_REFCURSOR;
ref_table_name VARCHAR2(30);
ref_column_name VARCHAR2(30);
fk_columns VARCHAR2(1000);
cleanup_ref_table VARCHAR2(30);
ref_to_ref_tables STRARRAY;
ref_to_ref_columns STRARRAY;
ref_tables STRARRAY;
ref_columns STRARRAY;
BEGIN
ref_to_cursor := query_ref_to_fk(tab_name, schema_name);
LOOP
FETCH ref_to_cursor
INTO ref_table_name, ref_column_name, fk_columns, cleanup_ref_table;
EXIT WHEN ref_to_cursor%NOTFOUND;
IF vars IS NULL THEN
vars := '';
returning_block := '';
collect_block := '';
into_block := '';
fk_block := '';
END IF;
returning_block := returning_block ||','||chr(10)||' '|| lower(fk_columns);
-- prepare arrays for referencing tables and columns to cleanup
ref_to_ref_tables := STRARRAY();
ref_to_ref_columns := citydb_util.split(fk_columns, ','||chr(10)||' ');
FOR c IN
ref_to_ref_columns.FIRST .. ref_to_ref_columns.LAST
LOOP
ref_to_ref_tables.extend;
ref_to_ref_tables(ref_to_ref_tables.count) := tab_name;
END LOOP;
IF ref_to_ref_columns.count > 1 THEN
-- additional collections and initialization of final list for referencing IDs required
vars := vars ||chr(10)||' '||citydb_util.get_short_name(ref_table_name, schema_name)||'_ids ID_ARRAY := ID_ARRAY();';
collect_block := collect_block||chr(10)||' -- collect all '||citydb_util.get_short_name(ref_table_name, schema_name)||' ids into one nested table'||chr(10);
FOR i IN 1..ref_to_ref_columns.count LOOP
vars := vars ||chr(10)||' '||citydb_util.get_short_name(ref_table_name, schema_name)||'_ids'||i||' ID_ARRAY;';
into_block := into_block ||','||chr(10)||' '||citydb_util.get_short_name(ref_table_name, schema_name)||'_ids'||i;
collect_block := collect_block||' '||citydb_util.get_short_name(ref_table_name, schema_name)||'_ids := '
||citydb_util.get_short_name(ref_table_name, schema_name)||'_ids MULTISET UNION ALL '||citydb_util.get_short_name(ref_table_name, schema_name)||'_ids'||i||';'||chr(10);
END LOOP;
ELSE
vars := vars ||chr(10)||' '||citydb_util.get_short_name(ref_table_name, schema_name)||'_ids ID_ARRAY;';
into_block := into_block ||','||chr(10)||' '||citydb_util.get_short_name(ref_table_name, schema_name)||'_ids';
END IF;
IF
ref_table_name <> 'IMPLICIT_GEOMETRY'
AND ref_table_name <> 'SURFACE_GEOMETRY'
AND ref_table_name <> 'CITYOBJECT'
THEN
query_ref_tables_and_columns(ref_table_name, tab_name, schema_name, ref_tables, ref_columns);
ref_to_ref_tables := ref_to_ref_tables MULTISET UNION ALL COALESCE(ref_tables, STRARRAY());
ref_to_ref_columns := ref_to_ref_columns MULTISET UNION ALL COALESCE(ref_columns, STRARRAY());
END IF;
IF cleanup_ref_table IS NOT NULL THEN
-- function call required, so create function first
IF lower(ref_table_name) || '_array' NOT MEMBER OF ref_to_path THEN
ref_to_path := citydb_delete_gen.create_array_delete_function(ref_table_name, schema_name, ref_to_path);
END IF;
vars := vars ||chr(10)||' '||citydb_util.get_short_name(ref_table_name, schema_name)||'_pids ID_ARRAY;';
fk_block := fk_block || gen_delete_m_ref_by_ids_call(ref_table_name, ref_to_ref_tables, ref_to_ref_columns, schema_name);
ELSE
fk_block := fk_block || gen_delete_m_ref_by_ids_stmt(ref_table_name, ref_column_name, ref_to_ref_tables, ref_to_ref_columns, schema_name);
END IF;
END LOOP;
RETURN;
END;
-- SINGLE CASE
PROCEDURE create_ref_to_delete(
tab_name VARCHAR2,
schema_name VARCHAR2 := USER,
ref_to_path IN OUT STRARRAY,
vars OUT VARCHAR2,
returning_block OUT VARCHAR2,
into_block OUT VARCHAR2,
fk_block OUT VARCHAR2
)
IS
ref_to_cursor SYS_REFCURSOR;
ref_table_name VARCHAR2(30);
ref_column_name VARCHAR2(30);
fk_columns VARCHAR2(1000);
cleanup_ref_table VARCHAR2(30);
fk_columns_count NUMBER;
ref_to_ref_tables STRARRAY;
ref_to_ref_columns STRARRAY;
ref_tables STRARRAY;
ref_columns STRARRAY;
BEGIN
ref_to_cursor := query_ref_to_fk(tab_name, schema_name);
LOOP
FETCH ref_to_cursor
INTO ref_table_name, ref_column_name, fk_columns, cleanup_ref_table;
EXIT WHEN ref_to_cursor%NOTFOUND;
IF vars IS NULL THEN
vars := '';
returning_block := '';
into_block := '';
fk_block := '';
END IF;
-- prepare arrays for referencing tables and columns to cleanup
ref_to_ref_tables := STRARRAY();
ref_to_ref_columns := citydb_util.split(fk_columns, ','||chr(10)||' ');
fk_columns_count := ref_to_ref_columns.count;
FOR c IN
ref_to_ref_columns.FIRST .. ref_to_ref_columns.LAST
LOOP
ref_to_ref_tables.extend;
ref_to_ref_tables(ref_to_ref_tables.count) := tab_name;
END LOOP;
IF fk_columns_count > 1 THEN
vars := vars ||chr(10)||' '||citydb_util.get_short_name(ref_table_name, schema_name)||'_ids ID_ARRAY;';
returning_block := returning_block||','
||chr(10)||' ID_ARRAY('
||chr(10)||' '||lower(fk_columns)
||chr(10)||' )';
into_block := into_block||','||chr(10)||' '||citydb_util.get_short_name(ref_table_name, schema_name)||'_ids';
ELSE
vars := vars ||chr(10)||' '||citydb_util.get_short_name(ref_table_name, schema_name)||'_ref_id NUMBER;';
returning_block := returning_block ||','||chr(10)||' '||lower(fk_columns);
into_block := into_block||','||chr(10)||' '||citydb_util.get_short_name(ref_table_name, schema_name)||'_ref_id';
END IF;
IF
ref_table_name <> 'IMPLICIT_GEOMETRY'
AND ref_table_name <> 'SURFACE_GEOMETRY'
AND ref_table_name <> 'CITYOBJECT'
THEN
query_ref_tables_and_columns(ref_table_name, tab_name, schema_name, ref_tables, ref_columns);
ref_to_ref_tables := ref_to_ref_tables MULTISET UNION ALL COALESCE(ref_tables, STRARRAY());
ref_to_ref_columns := ref_to_ref_columns MULTISET UNION ALL COALESCE(ref_columns, STRARRAY());
END IF;
IF cleanup_ref_table IS NOT NULL THEN
-- function call required, so create function first
IF fk_columns_count > 1 THEN
IF lower(ref_table_name) || '_array' NOT MEMBER OF ref_to_path THEN
ref_to_path := citydb_delete_gen.create_array_delete_function(ref_table_name, schema_name, ref_to_path);
END IF;
vars := vars ||chr(10)||' '||citydb_util.get_short_name(ref_table_name, schema_name)||'_pids ID_ARRAY;';
fk_block := fk_block || gen_delete_m_ref_by_ids_call(ref_table_name, ref_to_ref_tables, ref_to_ref_columns, schema_name);
ELSE
IF lower(ref_table_name) NOT MEMBER OF ref_to_path THEN
ref_to_path := citydb_delete_gen.create_delete_function(ref_table_name, schema_name, ref_to_path);
END IF;
vars := vars ||chr(10)||' '||citydb_util.get_short_name(ref_table_name, schema_name)||'_pid NUMBER;';
fk_block := fk_block || gen_delete_m_ref_by_id_call(ref_table_name, ref_to_ref_tables, ref_to_ref_columns, schema_name);
END IF;
ELSE
IF fk_columns_count > 1 THEN
fk_block := fk_block || gen_delete_m_ref_by_ids_stmt(ref_table_name, ref_column_name, ref_to_ref_tables, ref_to_ref_columns, schema_name);
ELSE
fk_block := fk_block || gen_delete_m_ref_by_id_stmt(ref_table_name, ref_column_name, ref_to_ref_tables, ref_to_ref_columns, schema_name);
END IF;
END IF;
END LOOP;
RETURN;
END;
/*****************************
* 5. FK which is PK
*****************************/
FUNCTION query_ref_parent_fk(
tab_name VARCHAR2,
schema_name VARCHAR2 := USER
) RETURN VARCHAR2
IS
parent_table VARCHAR2(30);
BEGIN
SELECT
p.table_name
INTO
parent_table
FROM
all_constraints fk
JOIN
all_cons_columns fka
ON fka.constraint_name = fk.constraint_name
AND fka.table_name = fk.table_name
AND fka.owner = fk.owner
JOIN (
SELECT DISTINCT
ctp.table_name,
ctp.owner,
first_value(pka.column_name) OVER (PARTITION BY ctp.table_name ORDER BY pka.position DESC) AS column_name,
first_value(pka.position) OVER (PARTITION BY ctp.table_name ORDER BY pka.position DESC) AS position
FROM
all_constraints ctp
JOIN
all_cons_columns pka
ON pka.constraint_name = ctp.constraint_name
AND pka.table_name = ctp.table_name
AND pka.owner = ctp.owner
WHERE
ctp.constraint_type = 'P'
) pk
ON pk.table_name = fk.table_name
AND pk.owner = fk.owner
AND pk.column_name = fka.column_name
JOIN
all_constraints p
ON p.constraint_name = fk.r_constraint_name
AND p.owner = fk.owner
WHERE
fk.table_name = upper(tab_name)
AND fk.owner = upper(schema_name)
AND fk.constraint_type = 'R'
AND pk.position = 1;
RETURN parent_table;
EXCEPTION
WHEN NO_DATA_FOUND THEN
RETURN '';
END;
-- ARRAY CASE
PROCEDURE create_ref_parent_array_delete(
tab_name VARCHAR2,
schema_name VARCHAR2 := USER,
ref_to_parent_path IN OUT STRARRAY,
parent_block OUT VARCHAR2
)
IS
parent_table VARCHAR2(30);
objclass ID_ARRAY;
BEGIN
-- check if given table has objectclass_id column
EXECUTE IMMEDIATE 'SELECT '||schema_name||'.citydb_objclass.table_name_to_objectclass_ids(:1) FROM dual'
INTO objclass USING tab_name;
-- if found delete parent object
IF objclass IS NOT EMPTY THEN
parent_table := query_ref_parent_fk(tab_name, schema_name);
IF parent_table IS NOT NULL THEN
IF lower(parent_table) || '_array' NOT MEMBER OF ref_to_parent_path THEN
ref_to_parent_path := citydb_delete_gen.create_array_delete_function(parent_table, schema_name, ref_to_parent_path);
END IF;
parent_block :=
chr(10)||' -- delete '||lower(parent_table)||'s'
||chr(10)||' IF deleted_ids IS NOT EMPTY THEN'
||chr(10)||' dummy_ids := delete_'||citydb_util.get_short_name(parent_table, schema_name)||'_post_bat(deleted_ids, class_ids);'
||chr(10)||' END IF;'
||chr(10);
END IF;
END IF;
RETURN;
END;
-- SINGLE CASE
PROCEDURE create_ref_parent_delete(
tab_name VARCHAR2,
schema_name VARCHAR2 := USER,
ref_to_parent_path IN OUT STRARRAY,
parent_block OUT VARCHAR2
)
IS
parent_table VARCHAR2(30);
objclass ID_ARRAY;
BEGIN
-- check if given table has objectclass_id column
EXECUTE IMMEDIATE 'SELECT '||schema_name||'.citydb_objclass.table_name_to_objectclass_ids(:1) FROM dual'
INTO objclass USING tab_name;
-- if found delete parent object
IF objclass IS NOT EMPTY THEN
parent_table := query_ref_parent_fk(tab_name, schema_name);
IF parent_table IS NOT NULL THEN
IF lower(parent_table) NOT MEMBER OF ref_to_parent_path THEN
ref_to_parent_path := citydb_delete_gen.create_delete_function(parent_table, schema_name, ref_to_parent_path);
END IF;
parent_block :=
chr(10)||' -- delete '||lower(parent_table)
||chr(10)||' IF deleted_id IS NOT NULL THEN'
||chr(10)||' dummy_id := delete_'||citydb_util.get_short_name(parent_table, schema_name)||'_post(deleted_id, class_id);'
||chr(10)||' END IF;'
||chr(10);
END IF;
END IF;
RETURN;
END;
/**************************
* CREATE DELETE FUNCTION
**************************/
-- dummy function to compile array delete functions
PROCEDURE create_array_delete_dummy(
tab_name VARCHAR2,
schema_name VARCHAR2 := USER
)
IS
ddl_command VARCHAR2(500) :=
'CREATE OR REPLACE FUNCTION '||schema_name||'.delete_'||citydb_util.get_short_name(tab_name, schema_name)||'_batch('
|| 'pids ID_ARRAY, '
|| 'objclass_ids ID_ARRAY := ID_ARRAY()'
|| ') RETURN ID_ARRAY'
||chr(10)||'IS'
||chr(10)||' deleted_ids ID_ARRAY := ID_ARRAY();'
||chr(10)||'BEGIN'
||chr(10)||' RETURN deleted_ids;'
||chr(10)||'END;';
BEGIN
EXECUTE IMMEDIATE ddl_command;
COMMIT;
END;
-- dummy function to compile delete functions
PROCEDURE create_delete_dummy(
tab_name VARCHAR2,
schema_name VARCHAR2 := USER
)
IS
ddl_command VARCHAR2(500) :=
'CREATE OR REPLACE FUNCTION '||schema_name||'.delete_'||citydb_util.get_short_name(tab_name, schema_name)||'('
|| 'pid NUMBER, '
|| 'objclass_id NUMBER := 0'
|| ') RETURN NUMBER'
||chr(10)||'IS'
||chr(10)||' deleted_id NUMBER;'
||chr(10)||'BEGIN'
||chr(10)||' RETURN deleted_id;'
||chr(10)||'END;';
BEGIN
EXECUTE IMMEDIATE ddl_command;
COMMIT;
END;
-- dummy function to compile array delete functions
PROCEDURE create_array_delete_post_dummy(
tab_name VARCHAR2,
schema_name VARCHAR2 := USER
)
IS
ddl_command VARCHAR2(500) :=
'CREATE OR REPLACE FUNCTION '||schema_name||'.delete_'||citydb_util.get_short_name(tab_name, schema_name)||'_post_bat('
|| 'pids ID_ARRAY,'
|| 'objclass_ids ID_ARRAY'
|| ') RETURN ID_ARRAY'
||chr(10)||'IS'
||chr(10)||' deleted_ids ID_ARRAY := ID_ARRAY();'
||chr(10)||'BEGIN'
||chr(10)||' RETURN deleted_ids;'
||chr(10)||'END;';
BEGIN
EXECUTE IMMEDIATE ddl_command;
COMMIT;
END;
-- dummy function to compile delete functions
PROCEDURE create_delete_post_dummy(
tab_name VARCHAR2,
schema_name VARCHAR2 := USER
)
IS
ddl_command VARCHAR2(500) :=
'CREATE OR REPLACE FUNCTION '||schema_name||'.delete_'||citydb_util.get_short_name(tab_name, schema_name)||'_post('
|| 'pid NUMBER,'
|| 'objclass_id NUMBER'
|| ') RETURN NUMBER'
||chr(10)||'IS'
||chr(10)||' deleted_id NUMBER;'
||chr(10)||'BEGIN'
||chr(10)||' RETURN deleted_id;'
||chr(10)||'END;';
BEGIN
EXECUTE IMMEDIATE ddl_command;
COMMIT;
END;
-- ARRAY CASE
FUNCTION create_array_delete_function(
tab_name VARCHAR2,
schema_name VARCHAR2 := USER,
path STRARRAY := STRARRAY()
) RETURN STRARRAY
IS
create_path STRARRAY := path;
ddl_command VARCHAR2(32767) := 'CREATE OR REPLACE FUNCTION '||schema_name||'.delete_'||citydb_util.get_short_name(tab_name, schema_name)||'_batch';
ddl_command_2 VARCHAR2(32767);
has_objclass_param BOOLEAN := FALSE;
declare_block VARCHAR2(1000) := ' deleted_ids ID_ARRAY := ID_ARRAY();';
objclass_block VARCHAR2(11000) := '';
objclass_filter_block VARCHAR2(10000) := '';
pre_block VARCHAR2(12000) := '';
post_block VARCHAR2(12000) := '';
delete_block VARCHAR2(2000) := '';
delete_into_block VARCHAR2(2000) :=
chr(10)||' BULK COLLECT INTO'
||chr(10)||' deleted_ids';
vars VARCHAR2(1000);
self_block VARCHAR2(2000);
child_ref_block VARCHAR2(8000);
ref_block VARCHAR2(8000);
returning_block VARCHAR2(2000);
collect_block VARCHAR2(2000);
into_block VARCHAR2(2000);
fk_block VARCHAR2(8000);
parent_block VARCHAR2(1000);
return_block VARCHAR2(30) := ' RETURN deleted_ids;';
BEGIN
-- add table_name to path
create_path.extend;
create_path(create_path.count) := lower(tab_name) || '_array';
-- create dummy function in case it is needed for compiling subsequent functions
create_array_delete_dummy(tab_name, schema_name);
-- check if table contains objectclass_id column in order to create second parameter
has_objclass_param := has_objclass_id(tab_name, schema_name) = 1;
IF has_objclass_param THEN
ddl_command := ddl_command || '(pids ID_ARRAY, objclass_ids ID_ARRAY := ID_ARRAY())';
declare_block := declare_block ||chr(10)||' class_ids ID_ARRAY;';
objclass_block :=
chr(10)||' -- fetch objectclass_id if not set'
||chr(10)||' IF objclass_ids IS EMPTY THEN'
||chr(10)||' SELECT'
||chr(10)||' DISTINCT t.objectclass_id'
||chr(10)||' BULK COLLECT INTO'
||chr(10)||' class_ids'
||chr(10)||' FROM'
||chr(10)||' '||lower(tab_name)|| ' t,'
||chr(10)||' TABLE(pids) a'
||chr(10)||' WHERE'
||chr(10)||' t.id = a.COLUMN_VALUE;'
||chr(10)||' ELSE'
||chr(10)||' class_ids := SET(objclass_ids);'
||chr(10)||' END IF;'
||chr(10)
||chr(10)||' IF class_ids IS EMPTY THEN'
||chr(10)||' DBMS_OUTPUT.PUT_LINE(''Objectclass_id unknown! Check OBJECTCLASS table.'');'
||chr(10)||' RETURN NULL;'
||chr(10)||' END IF;'
||chr(10);
ELSE
ddl_command := ddl_command || '(pids ID_ARRAY)';
END IF;
-- complete function header
ddl_command := ddl_command || ' RETURN ID_ARRAY'||chr(10)||'IS'||chr(10);
-- REFERENCING TABLES
create_ref_array_delete(tab_name, schema_name, create_path, vars, child_ref_block, ref_block);
declare_block := declare_block || COALESCE(vars, '');
objclass_filter_block := objclass_filter_block || COALESCE(child_ref_block, '');
pre_block := pre_block || COALESCE(ref_block, '');
-- if objclass_filter_block is set finish function here
IF objclass_filter_block IS NOT NULL THEN
ddl_command := ddl_command
||' deleted_ids ID_ARRAY := ID_ARRAY();'
||chr(10)||' class_ids ID_ARRAY;'
||chr(10)||'BEGIN'
|| objclass_block
|| objclass_filter_block
||chr(10)||' IF pids.count <> deleted_ids.count THEN'
||chr(10)||' deleted_ids := deleted_ids MULTISET UNION ALL COALESCE(delete_'||citydb_util.get_short_name(tab_name, schema_name)||'_post_bat(pids, class_ids), ID_ARRAY());'
||chr(10)||' END IF;'
||chr(10)
||chr(10)|| return_block
||chr(10)||'END;';
-- need to add _post delete method first
ddl_command_2 := ddl_command;
-- clear objclass_block as it is not needed in a _post delete method
objclass_block := chr(10)||' class_ids := objclass_ids;'||chr(10);
-- start a seperate post function which is called by child delete functions
ddl_command := 'CREATE OR REPLACE FUNCTION '
||schema_name||'.delete_'||citydb_util.get_short_name(tab_name, schema_name)||'_post_bat'
||'(pids ID_ARRAY, objclass_ids ID_ARRAY) RETURN ID_ARRAY'||chr(10)||'IS'||chr(10);
END IF;
-- SELF REFERENCES
create_selfref_array_delete(tab_name, has_objclass_param, schema_name, vars, self_block);
declare_block := declare_block || COALESCE(vars, '');
pre_block := pre_block || COALESCE(self_block, '');
-- MAIN DELETE
delete_block := gen_delete_by_ids_stmt(tab_name, has_objclass_param);
-- FOREIGN KEYs which are set to ON DELETE SET NULL and are nullable
create_ref_to_array_delete(tab_name, schema_name, create_path, vars, returning_block, collect_block, into_block, fk_block);
declare_block := declare_block || COALESCE(vars, '');
delete_block := delete_block || COALESCE(returning_block, '');
delete_into_block := delete_into_block || COALESCE(into_block, '');
post_block := post_block || COALESCE(collect_block, '') || COALESCE(fk_block, '');
-- FOREIGN KEY which cover same columns AS primary key
create_ref_parent_array_delete(tab_name, schema_name, create_path, parent_block);
post_block := post_block || COALESCE(parent_block, '');
-- create dummy variable if pre or post block are not null
IF pre_block IS NOT NULL OR post_block IS NOT NULL THEN
declare_block := declare_block ||chr(10)||' dummy_ids ID_ARRAY;';
END IF;
-- putting all together
ddl_command := ddl_command
|| declare_block
||chr(10)||'BEGIN'
|| objclass_block
|| pre_block
||chr(10)||' -- delete '||lower(tab_name)||'s'
|| delete_block
|| delete_into_block || ';'
||chr(10)
|| post_block
||chr(10)|| return_block
||chr(10)||'END;';
EXECUTE IMMEDIATE ddl_command;
COMMIT;
IF ddl_command_2 IS NOT NULL THEN
EXECUTE IMMEDIATE ddl_command_2;
COMMIT;
END IF;
RETURN create_path;
END;
-- SINGLE CASE
FUNCTION create_delete_function(
tab_name VARCHAR2,
schema_name VARCHAR2 := USER,
path STRARRAY := STRARRAY()
) RETURN STRARRAY
IS
create_path STRARRAY := path;
ddl_command VARCHAR2(32767) := 'CREATE OR REPLACE FUNCTION '||schema_name||'.delete_'||citydb_util.get_short_name(tab_name, schema_name);
ddl_command_2 VARCHAR2(32767);
has_objclass_param BOOLEAN := FALSE;
declare_block VARCHAR2(1000) := ' deleted_id NUMBER;';
objclass_block VARCHAR2(11000) := '';
objclass_filter_block VARCHAR2(10000) := '';
pre_block VARCHAR2(12000) := '';
post_block VARCHAR2(12000) := '';
delete_block VARCHAR2(2000) := '';
delete_into_block VARCHAR2(2000) :=
chr(10)||' INTO'
||chr(10)||' deleted_id';
vars VARCHAR2(1000);
self_block VARCHAR2(2000);
child_ref_block VARCHAR2(8000);
ref_block VARCHAR2(8000);
returning_block VARCHAR2(2000);
into_block VARCHAR2(2000);
fk_block VARCHAR2(8000);
parent_block VARCHAR2(1000);
return_block VARCHAR2(30) := ' RETURN deleted_id;';
BEGIN
-- add table_name to path
create_path.extend;
create_path(create_path.count) := lower(tab_name);
-- create dummy function in case it is needed for compiling subsequent functions
create_delete_dummy(tab_name, schema_name);
-- check if table contains objectclass_id column in order to create second parameter
has_objclass_param := has_objclass_id(tab_name, schema_name) = 1;
IF has_objclass_param THEN
ddl_command := ddl_command || '(pid NUMBER, objclass_id NUMBER := 0)';
declare_block := declare_block ||chr(10)||' class_id NUMBER;';
objclass_block :=
chr(10)||' -- fetch objectclass_id if not set'
||chr(10)||' IF objclass_id = 0 THEN'
||chr(10)||' SELECT'
||chr(10)||' objectclass_id'
||chr(10)||' INTO'
||chr(10)||' class_id'
||chr(10)||' FROM'
||chr(10)||' '||lower(tab_name)
||chr(10)||' WHERE'
||chr(10)||' id = pid;'
||chr(10)||' ELSE'
||chr(10)||' class_id := objclass_id;'
||chr(10)||' END IF;'
||chr(10)
||chr(10)||' IF class_id IS NULL THEN'
||chr(10)||' DBMS_OUTPUT.PUT_LINE(''Objectclass_id unknown! Check OBJECTCLASS table.'');'
||chr(10)||' RETURN NULL;'
||chr(10)||' END IF;'
||chr(10);
ELSE
ddl_command := ddl_command || '(pid NUMBER)';
END IF;
-- complete function header
ddl_command := ddl_command || ' RETURN NUMBER'||chr(10)||'IS'||chr(10);
-- REFERENCING TABLES
create_ref_delete(tab_name, schema_name, create_path, vars, child_ref_block, ref_block);
declare_block := declare_block || COALESCE(vars, '');
objclass_filter_block := objclass_filter_block || COALESCE(child_ref_block, '');
pre_block := pre_block || COALESCE(ref_block, '');
-- if objclass_filter_block is set finish function here
IF objclass_filter_block IS NOT NULL THEN
ddl_command := ddl_command
||' deleted_id NUMBER;'
||chr(10)||' class_id NUMBER;'
||chr(10)||'BEGIN'
|| objclass_block
|| objclass_filter_block
||chr(10)||' IF deleted_id IS NULL THEN'
||chr(10)||' deleted_id := delete_'||citydb_util.get_short_name(tab_name, schema_name)||'_post(pid, class_id);'
||chr(10)||' END IF;'
||chr(10)
||chr(10)|| return_block
||chr(10)||'END;';
-- need to add _post delete method first
ddl_command_2 := ddl_command;
-- clear objclass_block as it is not needed in a _post delete method
objclass_block := chr(10)||' class_id := objclass_id;'||chr(10);
-- start a seperate post function which is called by child delete functions
ddl_command := 'CREATE OR REPLACE FUNCTION '
||schema_name||'.delete_'||citydb_util.get_short_name(tab_name, schema_name)||'_post'
||'(pid NUMBER, objclass_id NUMBER) RETURN NUMBER'||chr(10)||'IS'||chr(10);
END IF;
-- SELF REFERENCES
create_selfref_delete(tab_name, has_objclass_param, schema_name, create_path, vars, self_block);
declare_block := declare_block || COALESCE(vars, '');
pre_block := pre_block || COALESCE(self_block, '');
-- MAIN DELETE
delete_block := gen_delete_by_id_stmt(tab_name, has_objclass_param);
-- FOREIGN KEY which are set to ON DELETE SET NULL and are nullable
create_ref_to_delete(tab_name, schema_name, create_path, vars, returning_block, into_block, fk_block);
declare_block := declare_block || COALESCE(vars, '');
delete_block := delete_block || COALESCE(returning_block, '');
delete_into_block := delete_into_block || COALESCE(into_block, '');
post_block := post_block || COALESCE(fk_block, '');
-- FOREIGN KEY which cover same columns AS primary key
create_ref_parent_delete(tab_name, schema_name, create_path, parent_block);
post_block := post_block || COALESCE(parent_block, '');
-- create dummy variable if pre or post block are not null
IF pre_block IS NOT NULL OR fk_block IS NOT NULL THEN
declare_block := declare_block ||chr(10)||' dummy_ids ID_ARRAY;';
END IF;
IF post_block IS NOT NULL THEN
declare_block := declare_block ||chr(10)||' dummy_id NUMBER;';
END IF;
-- putting all together
ddl_command := ddl_command
|| declare_block
||chr(10)||'BEGIN'
|| objclass_block
|| pre_block
||chr(10)||' -- delete '||lower(tab_name)
|| delete_block
|| delete_into_block || ';'
||chr(10)
|| post_block
||chr(10)|| return_block
||chr(10)||'END;';
EXECUTE IMMEDIATE ddl_command;
COMMIT;
IF ddl_command_2 IS NOT NULL THEN
EXECUTE IMMEDIATE ddl_command_2;
COMMIT;
END IF;
RETURN create_path;
END;
/*****************************
* Referencing member 1:n
*****************************/
FUNCTION query_member_1n(
tab_name VARCHAR2,
schema_name VARCHAR2 := USER
) RETURN SYS_REFCURSOR
IS
ref_to_cursor SYS_REFCURSOR;
BEGIN
OPEN ref_to_cursor FOR
SELECT
c.table_name AS member_table_name,
ac.column_name AS member_fk_column
FROM
all_constraints c
JOIN
all_cons_columns ac
ON ac.constraint_name = c.constraint_name
AND ac.table_name = c.table_name
AND ac.owner = c.owner
JOIN
all_constraints c2
ON c2.constraint_name = c.r_constraint_name
AND c2.owner = c.owner
WHERE
c2.table_name = upper(tab_name)
AND c2.owner = upper(schema_name)
AND c.constraint_type = 'R'
AND c.delete_rule = 'SET NULL'
AND c.table_name IN
(
SELECT
fk.table_name
FROM
all_constraints fk
JOIN
all_cons_columns fka
ON fka.constraint_name = fk.constraint_name
AND fka.table_name = fk.table_name
AND fka.owner = fk.owner
JOIN
all_constraints fk2
ON fk2.constraint_name = fk.r_constraint_name
AND fk2.owner = fk.owner
JOIN (
SELECT DISTINCT
cp.table_name,
cp.owner,
first_value(pka.column_name) OVER (PARTITION BY cp.table_name ORDER BY pka.position DESC) AS column_name,
first_value(pka.position) OVER (PARTITION BY cp.table_name ORDER BY pka.position DESC) AS position
FROM
all_constraints cp
JOIN
all_cons_columns pka
ON pka.constraint_name = cp.constraint_name
AND pka.table_name = cp.table_name
AND pka.owner = cp.owner
WHERE
cp.constraint_type = 'P'
) pk
ON pk.table_name = fk.table_name
AND pk.owner = fk.owner
AND pk.column_name = fka.column_name
WHERE
fk2.table_name = upper(tab_name)
AND fk2.owner = upper(schema_name)
AND fk.constraint_type = 'R'
AND pk.position = 1
);
RETURN ref_to_cursor;
END;
-- ARRAY CASE
PROCEDURE create_member_1n_array_delete(
tab_name VARCHAR2,
schema_name VARCHAR2 := USER,
member_1n_path IN OUT STRARRAY,
vars OUT VARCHAR2,
ref_block OUT VARCHAR2
)
IS
ref_to_cursor SYS_REFCURSOR;
member_table_name VARCHAR2(30);
member_fk_column VARCHAR2(30);
has_objclass_param BOOLEAN := FALSE;
BEGIN
ref_to_cursor := query_member_1n(tab_name, schema_name);
LOOP
FETCH ref_to_cursor
INTO member_table_name, member_fk_column;
EXIT WHEN ref_to_cursor%NOTFOUND;
IF vars IS NULL THEN
vars := '';
ref_block := '';
END IF;
-- function call required, so create function first
IF lower(member_table_name) || '_array' NOT MEMBER OF member_1n_path THEN
member_1n_path := citydb_delete_gen.create_array_delete_function(member_table_name, schema_name, member_1n_path);
END IF;
IF vars IS NULL OR INSTR(vars, 'child_ids') = 0 THEN
vars := vars ||chr(10)|| ' child_ids ID_ARRAY;';
END IF;
-- check if delete function for member_table_name has objclass_id parameter
has_objclass_param := has_objclass_id(member_table_name, schema_name) = 1;
IF has_objclass_param THEN
IF vars IS NULL OR INSTR(vars, 'child_class_ids') = 0 THEN
vars := vars ||chr(10)|| ' child_class_ids ID_ARRAY;';
END IF;
END IF;
ref_block := ref_block || gen_delete_ref_by_ids_call(member_table_name, member_fk_column, has_objclass_param, schema_name);
END LOOP;
RETURN;
END;
-- SINGLE CASE
PROCEDURE create_member_1n_delete(
tab_name VARCHAR2,
schema_name VARCHAR2 := USER,
member_1n_path IN OUT STRARRAY,
vars OUT VARCHAR2,
ref_block OUT VARCHAR2
)
IS
ref_to_cursor SYS_REFCURSOR;
member_table_name VARCHAR2(30);
member_fk_column VARCHAR2(30);
has_objclass_param BOOLEAN := FALSE;
BEGIN
ref_to_cursor := query_member_1n(tab_name, schema_name);
LOOP
FETCH ref_to_cursor
INTO member_table_name, member_fk_column;
EXIT WHEN ref_to_cursor%NOTFOUND;
IF vars IS NULL THEN
vars := '';
ref_block := '';
END IF;
-- function call required, so create function first
IF lower(member_table_name) || '_array' NOT MEMBER OF member_1n_path THEN
member_1n_path := citydb_delete_gen.create_array_delete_function(member_table_name, schema_name, member_1n_path);
END IF;
IF vars IS NULL OR INSTR(vars, 'child_ids') = 0 THEN
vars := vars ||chr(10)|| ' child_ids ID_ARRAY;';
END IF;
-- check if delete function for member_table_name has objclass_id parameter
has_objclass_param := has_objclass_id(member_table_name, schema_name) = 1;
IF has_objclass_param THEN
IF vars IS NULL OR INSTR(vars, 'child_class_ids') = 0 THEN
vars := vars ||chr(10)|| ' child_class_ids ID_ARRAY;';
END IF;
END IF;
ref_block := ref_block || gen_delete_ref_by_id_call(member_table_name, member_fk_column, has_objclass_param, schema_name);
END LOOP;
RETURN;
END;
/*****************************
* Referencing member n:m
*****************************/
FUNCTION query_member_nm(
tab_name VARCHAR2,
schema_name VARCHAR2 := USER
) RETURN SYS_REFCURSOR
IS
ref_to_cursor SYS_REFCURSOR;
BEGIN
OPEN ref_to_cursor FOR
SELECT
c.table_name AS n_table_name,
a.column_name AS n_fk_column_name,
m.m_table_name,
m.m_fk_column_name
FROM
all_constraints c
JOIN
all_cons_columns a
ON a.constraint_name = c.constraint_name
AND a.table_name = c.table_name
AND a.owner = c.owner
JOIN
all_constraints c2
ON c2.constraint_name = c.r_constraint_name
AND c2.owner = c.owner
JOIN (
SELECT
mn.table_name,
mn.owner,
mn2.table_name AS m_table_name,
mna.column_name AS m_fk_column_name
FROM
all_constraints mn
JOIN
all_cons_columns mna
ON mna.constraint_name = mn.constraint_name
AND mna.table_name = mn.table_name
AND mna.owner = mn.owner
JOIN
all_constraints mnp
ON mnp.table_name = mn.table_name
AND mnp.owner = mn.owner
JOIN
all_cons_columns mnpa
ON mnpa.constraint_name = mnp.constraint_name
AND mnpa.table_name = mn.table_name
AND mnpa.owner = mn.owner
AND mnpa.column_name = mna.column_name
JOIN
all_constraints mn2
ON mn2.constraint_name = mn.r_constraint_name
AND mn2.owner = mn.owner
WHERE
mn2.table_name <> mn.table_name
AND mn.constraint_type = 'R'
AND mn.delete_rule = 'CASCADE'
AND mnp.constraint_type = 'P'
) m
ON m.table_name = c.table_name
AND m.owner = c.owner
WHERE
c2.table_name = upper(tab_name)
AND c2.owner = upper(schema_name)
AND c.constraint_type = 'R'
AND c.delete_rule = 'CASCADE'
AND c2.table_name <> m.m_table_name;
RETURN ref_to_cursor;
END;
-- ARRAY CASE
PROCEDURE create_member_nm_array_delete(
tab_name VARCHAR2,
schema_name VARCHAR2 := USER,
member_nm_path IN OUT STRARRAY,
vars OUT VARCHAR2,
ref_block OUT VARCHAR2
)
IS
ref_to_cursor SYS_REFCURSOR;
n_table_name VARCHAR2(30);
n_fk_column_name VARCHAR2(30);
m_table_name VARCHAR2(30);
m_fk_column_name VARCHAR2(30);
BEGIN
ref_to_cursor := query_member_nm(tab_name, schema_name);
LOOP
FETCH ref_to_cursor
INTO n_table_name, n_fk_column_name, m_table_name, m_fk_column_name;
EXIT WHEN ref_to_cursor%NOTFOUND;
IF vars IS NULL THEN
vars := '';
ref_block := '';
END IF;
-- function call required, so create function first
IF lower(m_table_name) || '_array' NOT MEMBER OF member_nm_path THEN
member_nm_path := citydb_delete_gen.create_array_delete_function(m_table_name, schema_name, member_nm_path);
END IF;
vars := vars
||chr(10)||' '||citydb_util.get_short_name(m_table_name, schema_name)||'_ids ID_ARRAY;'
||chr(10)||' '||citydb_util.get_short_name(m_table_name, schema_name)||'_pids ID_ARRAY;';
ref_block := ref_block || gen_delete_n_m_ref_by_ids_call(n_table_name, n_fk_column_name, m_table_name, m_fk_column_name, schema_name);
END LOOP;
RETURN;
END;
-- SINGLE CASE
PROCEDURE create_member_nm_delete(
tab_name VARCHAR2,
schema_name VARCHAR2 := USER,
member_nm_path IN OUT STRARRAY,
vars OUT VARCHAR2,
ref_block OUT VARCHAR2
)
IS
ref_to_cursor SYS_REFCURSOR;
n_table_name VARCHAR2(30);
n_fk_column_name VARCHAR2(30);
m_table_name VARCHAR2(30);
m_fk_column_name VARCHAR2(30);
BEGIN
ref_to_cursor := query_member_nm(tab_name, schema_name);
LOOP
FETCH ref_to_cursor
INTO n_table_name, n_fk_column_name, m_table_name, m_fk_column_name;
EXIT WHEN ref_to_cursor%NOTFOUND;
IF vars IS NULL THEN
vars := '';
ref_block := '';
END IF;
-- function call required, so create function first
IF lower(m_table_name) || '_array' NOT MEMBER OF member_nm_path THEN
member_nm_path := citydb_delete_gen.create_array_delete_function(m_table_name, schema_name, member_nm_path);
END IF;
vars := vars
||chr(10)||' '||citydb_util.get_short_name(m_table_name, schema_name)||'_ids ID_ARRAY;'
||chr(10)||' '||citydb_util.get_short_name(m_table_name, schema_name)||'_pids ID_ARRAY;';
ref_block := ref_block || gen_delete_n_m_ref_by_id_call(n_table_name, n_fk_column_name, m_table_name, m_fk_column_name, schema_name);
END LOOP;
RETURN;
END;
/**************************
* CREATE DELETE MEMBER FUNCTION
**************************/
FUNCTION create_array_delete_member_fct(
tab_name VARCHAR2,
schema_name VARCHAR2 := USER,
path STRARRAY := STRARRAY()
) RETURN STRARRAY
IS
create_path STRARRAY := path;
ddl_command VARCHAR2(30000) := 'CREATE OR REPLACE FUNCTION '||schema_name||'.delete_'||citydb_util.get_short_name(tab_name, schema_name)||'_w_mem_bat(pids ID_ARRAY) RETURN ID_ARRAY'||chr(10)||'IS'||chr(10);
declare_block VARCHAR2(1000) := ' deleted_ids ID_ARRAY;';
pre_block VARCHAR2(14000) := '';
vars VARCHAR2(1000);
ref_block VARCHAR2(14000);
BEGIN
-- add table_name to path
create_path.extend;
create_path(create_path.count) := lower(tab_name) || '_array_with_members';
-- MEMBER REFERENCES 1:n
create_member_1n_array_delete(tab_name, schema_name, create_path, vars, ref_block);
declare_block := declare_block || COALESCE(vars, '');
pre_block := pre_block || COALESCE(ref_block, '');
-- MEMBER REFERENCES n:m
create_member_nm_array_delete(tab_name, schema_name, create_path, vars, ref_block);
declare_block := declare_block || COALESCE(vars, '');
pre_block := pre_block || COALESCE(ref_block, '');
-- create dummy variable if pre block is not null
IF pre_block IS NOT NULL THEN
declare_block := declare_block ||chr(10)||' dummy_ids ID_ARRAY;';
END IF;
-- delete member function is calling the regular delete function in the end
-- so create regular delete function first
IF lower(tab_name) || '_array' NOT MEMBER OF create_path THEN
create_path := citydb_delete_gen.create_array_delete_function(tab_name, schema_name, create_path);
END IF;
-- putting all together
ddl_command := ddl_command
|| declare_block
||chr(10)||'BEGIN'
|| pre_block
||chr(10)||' -- delete '||lower(tab_name)||'s'
||chr(10)||' RETURN delete_' ||citydb_util.get_short_name(tab_name, schema_name)||'_batch(pids);'
||chr(10)||'END;';
EXECUTE IMMEDIATE ddl_command;
COMMIT;
RETURN create_path;
END;
FUNCTION create_delete_member_fct(
tab_name VARCHAR2,
schema_name VARCHAR2 := USER,
path STRARRAY := STRARRAY()
) RETURN STRARRAY
IS
create_path STRARRAY := path;
ddl_command VARCHAR2(30000) := 'CREATE OR REPLACE FUNCTION '||schema_name||'.delete_'||citydb_util.get_short_name(tab_name, schema_name)||'_w_members(pid NUMBER) RETURN NUMBER'||chr(10)||'IS'||chr(10);
declare_block VARCHAR2(1000) := ' deleted_id NUMBER;';
pre_block VARCHAR2(14000) := '';
vars VARCHAR2(1000);
ref_block VARCHAR2(14000);
BEGIN
-- add table_name to path
create_path.extend;
create_path(create_path.count) := lower(tab_name) || '_with_members';
-- MEMBER REFERENCES 1:n
create_member_1n_delete(tab_name, schema_name, create_path, vars, ref_block);
declare_block := declare_block || COALESCE(vars, '');
pre_block := pre_block || COALESCE(ref_block, '');
-- MEMBER REFERENCES n:m
create_member_nm_delete(tab_name, schema_name, create_path, vars, ref_block);
declare_block := declare_block || COALESCE(vars, '');
pre_block := pre_block || COALESCE(ref_block, '');
-- create dummy variable if pre block is not null
IF pre_block IS NOT NULL THEN
declare_block := declare_block ||chr(10)||' dummy_ids ID_ARRAY;';
END IF;
-- delete member function is calling the regular delete function in the end
-- so create regular delete function first
IF lower(tab_name) NOT MEMBER OF create_path THEN
create_path := citydb_delete_gen.create_delete_function(tab_name, schema_name, create_path);
END IF;
-- putting all together
ddl_command := ddl_command
|| declare_block
||chr(10)||'BEGIN'
|| pre_block
||chr(10)||' -- delete '||lower(tab_name)
||chr(10)||' RETURN delete_' ||citydb_util.get_short_name(tab_name, schema_name)||'(pid);'
||chr(10)||'END;';
EXECUTE IMMEDIATE ddl_command;
COMMIT;
RETURN create_path;
END;
END citydb_delete_gen;
/ |
<filename>src/test/resources/results/schemaScriptCommand/test16TableNameStrategy_addPostfix/scripts/Persons_PHDATA/incompatible-change.sql
SELECT 'INCOMPATIBLE CHANGES in SANDBOX_POC1.EMPLOYEES.Persons_PHDATA'; |
<gh_stars>0
DROP VIEW IF EXISTS view_penyusutan_108_atl_2019_r2_a1 CASCADE;
CREATE VIEW view_penyusutan_108_atl_2019_r2_a1 AS
SELECT * FROM
(SELECT
atl.id_sub_skpd,
sub_skpd.nama_sub_skpd,
sub_skpd.id_skpd,
skpd.nama_skpd,
skpd.id_lokasi_bidang,
lokasi_bidang.nama_lokasi_bidang,
lokasi_bidang.id_kabupaten,
kabupaten.nama_kabupaten,
kabupaten.id_provinsi,
provinsi.nama_provinsi,
atl.id_mutasi_berkurang,
mutasi_berkurang.mutasi_berkurang,
keadaan_barang.keadaan_barang,
satuan_barang.satuan_barang,
golongan_barang.golongan_barang,
atl.id_golongan_barang,
atl.nama_barang,
LEFT(kode_barang_108.kode_barang_108, 18) kode_barang_108,
LEFT(kode_barang_108.kode_barang_108, 8) kode_l2,
atl.id register,
harga_atl.tahun,
SUM(harga_atl.harga_bertambah) - SUM(harga_atl.harga_berkurang) harga,
atl.keterangan
FROM
atl as atl, harga_atl as harga_atl, kode_barang_108,
mutasi_berkurang, asal_usul, keadaan_barang, satuan_barang, golongan_barang,
sub_skpd, skpd, lokasi_bidang, kabupaten, provinsi
WHERE
1 = 1 AND
harga_atl.id_atl = atl.id AND
harga_atl.id_asal_usul = asal_usul.id AND
harga_atl.tahun <= 2019 AND
atl.id_kode_barang_108 = kode_barang_108.id AND
atl.id_mutasi_berkurang = mutasi_berkurang.id AND
atl.id_keadaan_barang = keadaan_barang.id AND
atl.id_satuan_barang = satuan_barang.id AND
atl.id_golongan_barang = golongan_barang.id AND
golongan_barang.id = 5 AND
atl.id_sub_skpd = sub_skpd.id AND
sub_skpd.id_skpd = skpd.id AND
skpd.id_lokasi_bidang = lokasi_bidang.id AND
lokasi_bidang.id_kabupaten = kabupaten.id AND
kabupaten.id_provinsi = provinsi.id
GROUP BY
atl.id_sub_skpd,
sub_skpd.nama_sub_skpd,
sub_skpd.id_skpd,
skpd.nama_skpd,
skpd.id_lokasi_bidang,
lokasi_bidang.nama_lokasi_bidang,
lokasi_bidang.id_kabupaten,
kabupaten.nama_kabupaten,
kabupaten.id_provinsi,
provinsi.nama_provinsi,
atl.id_mutasi_berkurang,
mutasi_berkurang.mutasi_berkurang,
keadaan_barang.keadaan_barang,
satuan_barang.satuan_barang,
golongan_barang.golongan_barang,
atl.id_golongan_barang,
atl.nama_barang,
kode_barang_108,
kode_l2,
register,
harga_atl.tahun,
atl.keterangan) AS QUERY_PERALATAN_MESIN
;
GRANT ALL PRIVILEGES ON view_penyusutan_108_atl_2019_r2_a1 TO lap_kabupaten;
REVOKE INSERT, UPDATE, DELETE ON view_penyusutan_108_atl_2019_r2_a1 FROM lap_kabupaten;
DROP view if exists view_penyusutan_108_atl_2019_r2_e2 CASCADE;
create view view_penyusutan_108_atl_2019_r2_e2 as select
nama_skpd,
id_skpd,
nama_lokasi_bidang,
id_lokasi_bidang,
nama_kabupaten,
id_kabupaten,
nama_provinsi,
id_provinsi,
id_mutasi_berkurang,
mutasi_berkurang,
keadaan_barang,
nama_barang,
register,
harga,
sum (harga) over (partition by register order by tahun asc) as nilai_perolehan,
tahun,
view_penyusutan_108_atl_2019_r2_a1.kode_barang_108,
left(view_penyusutan_108_atl_2019_r2_a1.kode_barang_108, 11) as kode_umur,
rank() over (partition by register order by tahun asc) as rank,
lead(tahun, 1, 2020) over (partition by register order by tahun asc) as tahun_akhir,
umur as masa_manfaat,
0 as penambahan_umur,
umur as umur_awal,
CASE WHEN ((lead(tahun, 1, 2020) over (partition by register order by tahun asc)) - tahun) < umur
THEN umur - ((lead(tahun, 1, 2020) over (partition by register order by tahun asc)) - tahun)
ELSE
0
END as sisa_umur,
harga as nilai_buku_awal,
CASE WHEN ((lead(tahun, 1, 2020) over (partition by register order by tahun asc)) - tahun) < umur
THEN round(((lead(tahun, 1, 2020) over (partition by register order by tahun asc)) - tahun) * harga / umur, 0)
ELSE
harga
END as penyusutan,
CASE WHEN ((lead(tahun, 1, 2020) over (partition by register order by tahun asc)) - tahun) < umur
THEN harga - (round(((lead(tahun, 1, 2020) over (partition by register order by tahun asc)) - tahun) * harga / umur, 0))
ELSE
0
END as nilai_buku_akhir
from view_penyusutan_108_atl_2019_r2_a1, kode_barang_108
where view_penyusutan_108_atl_2019_r2_a1.kode_barang_108 = left(kode_barang_108.kode_barang_108, 18)
order by register, rank;
-- cek umur barang, apakah lebih dari umur ekonomis
-- bila lebih, berarti disusutkan seluruh nilainya.
-- kunci angka untuk baris pertama
DROP view if exists view_penyusutan_108_atl_2019_r2_e3 CASCADE;
create view view_penyusutan_108_atl_2019_r2_e3 as
select register,
nama_skpd,
id_skpd,
nama_lokasi_bidang,
id_lokasi_bidang,
nama_kabupaten,
id_kabupaten,
nama_provinsi,
id_provinsi,
id_mutasi_berkurang,
mutasi_berkurang,
keadaan_barang,
nama_barang,
harga,
nilai_perolehan,
tahun,
view_penyusutan_108_atl_2019_r2_e2.kode_barang_108,
kode_umur,
rank,
tahun_akhir,
CASE WHEN rank > 1 AND lag(nilai_perolehan) over urutan > 0
THEN round (100 * (harga / lag(nilai_perolehan) over urutan),2)
WHEN rank > 1 AND lag(nilai_perolehan) over urutan <= 0
THEN round(100,2)
WHEN rank = 1
THEN 0
ELSE
0
END as persen_awal,
CASE WHEN
CASE WHEN rank > 1 AND lag(nilai_perolehan) over urutan > 0
THEN round (100 * (harga / lag(nilai_perolehan) over urutan),2)
WHEN rank > 1 AND lag(nilai_perolehan) over urutan <= 0
THEN round(100,2)
WHEN rank = 1
THEN 0
ELSE
0
END
> 75
THEN 100
WHEN
CASE WHEN rank > 1 AND lag(nilai_perolehan) over urutan > 0
THEN round (100 * (harga / lag(nilai_perolehan) over urutan),2)
WHEN rank > 1 AND lag(nilai_perolehan) over urutan <= 0
THEN round(100,2)
WHEN rank = 1
THEN 0
ELSE
0
END
> 50
THEN 75
WHEN
CASE WHEN rank > 1 AND lag(nilai_perolehan) over urutan > 0
THEN round (100 * (harga / lag(nilai_perolehan) over urutan),2)
WHEN rank > 1 AND lag(nilai_perolehan) over urutan <= 0
THEN round(100,2)
WHEN rank = 1
THEN 0
ELSE
0
END
> 25
THEN 50
WHEN
CASE WHEN rank > 1 AND lag(nilai_perolehan) over urutan > 0
THEN round (100 * (harga / lag(nilai_perolehan) over urutan),2)
WHEN rank > 1 AND lag(nilai_perolehan) over urutan <= 0
THEN round(100,2)
WHEN rank = 1
THEN 0
ELSE
0
END
> 0
THEN 25
ELSE
0
END as persentasi,
masa_manfaat,
penambahan_umur,
umur_awal,
sisa_umur,
nilai_buku_awal,
penyusutan,
nilai_buku_akhir
from
view_penyusutan_108_atl_2019_r2_e2
Window
urutan as (partition by register order by rank)
order by register, rank;
-- mengubah persen_awal menjadi persen yang dapat di link
-- ke table penambahan_umur
--
-- sisa_umur_temp di buat untuk mengakses sisa_umur
-- pada baris sebelumnya
-- xxxxx
-- akses penambahan_umur
-- terdapat bug pada query sql, yaitu ketika
-- link ke table penambahan_umur, maka tidak dilakukan
-- link seperti biasa, yaitu
-- persentasi = view_penambahan_umur_108.persen, tetapi
-- view_penambahan_umur_108.persen > 75 (tidak tahu kenapa)
DROP view if exists view_penyusutan_108_atl_2019_r2_e4 CASCADE;
create view view_penyusutan_108_atl_2019_r2_e4 as
select register,
nama_skpd,
id_skpd,
nama_lokasi_bidang,
id_lokasi_bidang,
nama_kabupaten,
id_kabupaten,
nama_provinsi,
id_provinsi,
id_mutasi_berkurang,
mutasi_berkurang,
keadaan_barang,
nama_barang,
harga,
nilai_perolehan,
tahun,
view_penyusutan_108_atl_2019_r2_e3.kode_barang_108,
kode_umur,
rank,
tahun_akhir,
persen_awal,
persentasi,
masa_manfaat,
CASE WHEN rank > 1
THEN view_penambahan_umur_108.umur
WHEN rank = 1
THEN 0
ELSE
0
END as penambahan_umur,
umur_awal,
sisa_umur,
nilai_buku_awal,
penyusutan,
nilai_buku_akhir
from
view_penyusutan_108_atl_2019_r2_e3, view_penambahan_umur_108
where
view_penyusutan_108_atl_2019_r2_e3.kode_umur = view_penambahan_umur_108.kode_kelompok_barang AND
view_penyusutan_108_atl_2019_r2_e3.persentasi = view_penambahan_umur_108.persen
order by register, rank;
DROP view if exists view_penyusutan_108_atl_2019_r2_e5 CASCADE;
create view view_penyusutan_108_atl_2019_r2_e5 as
select register,
nama_skpd,
id_skpd,
nama_lokasi_bidang,
id_lokasi_bidang,
nama_kabupaten,
id_kabupaten,
nama_provinsi,
id_provinsi,
id_mutasi_berkurang,
mutasi_berkurang,
keadaan_barang,
nama_barang,
harga,
nilai_perolehan,
tahun,
kode_barang_108,
kode_umur,
rank,
tahun_akhir,
persen_awal,
persentasi,
masa_manfaat,
penambahan_umur,
CASE WHEN rank > 1 AND lag(sisa_umur,1,0) over urutan + penambahan_umur >= masa_manfaat
THEN masa_manfaat
WHEN rank = 1
THEN masa_manfaat
ELSE
lag(sisa_umur,1,0) over urutan + penambahan_umur
END as umur_awal,
CASE WHEN rank > 1 AND lag(sisa_umur,1,0) over urutan + penambahan_umur - (tahun_akhir - tahun) > 0
AND lag(sisa_umur,1,0) over urutan + penambahan_umur - (tahun_akhir - tahun) <= masa_manfaat
THEN lag(sisa_umur,1,0) over urutan + penambahan_umur - (tahun_akhir - tahun)
WHEN rank > 1 AND lag(sisa_umur,1,0) over urutan + penambahan_umur - (tahun_akhir - tahun) > 0
AND lag(sisa_umur,1,0) over urutan + penambahan_umur - (tahun_akhir - tahun) > masa_manfaat
AND masa_manfaat - (tahun_akhir - tahun) > 0
THEN masa_manfaat - (tahun_akhir - tahun)
WHEN rank = 1 AND masa_manfaat - (tahun_akhir - tahun) > 0
THEN masa_manfaat - (tahun_akhir - tahun)
ELSE
0
END as sisa_umur,
COALESCE(lag(nilai_buku_akhir) over urutan, 0) + harga as nilai_buku_awal,
CASE WHEN (tahun_akhir - tahun) <
CASE WHEN rank > 1 AND lag(sisa_umur,1,0) over urutan + penambahan_umur >= masa_manfaat
THEN masa_manfaat
WHEN rank = 1
THEN masa_manfaat
ELSE
lag(sisa_umur,1,0) over urutan + penambahan_umur
END
THEN round((tahun_akhir - tahun) * (COALESCE(lag(nilai_buku_akhir) over urutan, 0) + harga) /
(CASE WHEN rank > 1 AND lag(sisa_umur,1,0) over urutan + penambahan_umur >= masa_manfaat
THEN masa_manfaat
WHEN rank = 1
THEN masa_manfaat
ELSE
lag(sisa_umur,1,0) over urutan + penambahan_umur
END),
0)
ELSE
COALESCE(lag(nilai_buku_akhir) over urutan, 0) + harga
END as penyusutan,
CASE WHEN (tahun_akhir - tahun) <
CASE WHEN rank > 1 AND lag(sisa_umur,1,0) over urutan + penambahan_umur >= masa_manfaat
THEN masa_manfaat
WHEN rank = 1
THEN masa_manfaat
ELSE
lag(sisa_umur,1,0) over urutan + penambahan_umur
END
THEN (COALESCE(lag(nilai_buku_akhir) over urutan, 0) + harga) -
(round((tahun_akhir - tahun) * (COALESCE(lag(nilai_buku_akhir) over urutan, 0) + harga) /
(CASE WHEN rank > 1 AND lag(sisa_umur,1,0) over urutan + penambahan_umur >= masa_manfaat
THEN masa_manfaat
WHEN rank = 1
THEN masa_manfaat
ELSE
lag(sisa_umur,1,0) over urutan + penambahan_umur
END),
0))
ELSE
(COALESCE(lag(nilai_buku_akhir) over urutan, 0) + harga) - (COALESCE(lag(nilai_buku_akhir) over urutan, 0) + harga)
END as nilai_buku_akhir
from
view_penyusutan_108_atl_2019_r2_e4
Window
urutan as (partition by register order by rank)
order by register, rank;
-------kunci angka baris ke 2
DROP view if exists view_penyusutan_108_atl_2019_r2_e6 CASCADE;
create view view_penyusutan_108_atl_2019_r2_e6 as
select register,
nama_skpd,
id_skpd,
nama_lokasi_bidang,
id_lokasi_bidang,
nama_kabupaten,
id_kabupaten,
nama_provinsi,
id_provinsi,
id_mutasi_berkurang,
mutasi_berkurang,
keadaan_barang,
nama_barang,
harga,
nilai_perolehan,
tahun,
view_penyusutan_108_atl_2019_r2_e5.kode_barang_108,
kode_umur,
rank,
tahun_akhir,
CASE WHEN rank > 1 AND lag(nilai_perolehan) over urutan > 0
THEN round (100 * (harga / lag(nilai_perolehan) over urutan),2)
WHEN rank > 1 AND lag(nilai_perolehan) over urutan <= 0
THEN round(100,2)
WHEN rank = 1
THEN 0
ELSE
0
END as persen_awal,
CASE WHEN
CASE WHEN rank > 1 AND lag(nilai_perolehan) over urutan > 0
THEN round (100 * (harga / lag(nilai_perolehan) over urutan),2)
WHEN rank > 1 AND lag(nilai_perolehan) over urutan <= 0
THEN round(100,2)
WHEN rank = 1
THEN 0
ELSE
0
END
> 75
THEN 100
WHEN
CASE WHEN rank > 1 AND lag(nilai_perolehan) over urutan > 0
THEN round (100 * (harga / lag(nilai_perolehan) over urutan),2)
WHEN rank > 1 AND lag(nilai_perolehan) over urutan <= 0
THEN round(100,2)
WHEN rank = 1
THEN 0
ELSE
0
END
> 50
THEN 75
WHEN
CASE WHEN rank > 1 AND lag(nilai_perolehan) over urutan > 0
THEN round (100 * (harga / lag(nilai_perolehan) over urutan),2)
WHEN rank > 1 AND lag(nilai_perolehan) over urutan <= 0
THEN round(100,2)
WHEN rank = 1
THEN 0
ELSE
0
END
> 25
THEN 50
WHEN
CASE WHEN rank > 1 AND lag(nilai_perolehan) over urutan > 0
THEN round (100 * (harga / lag(nilai_perolehan) over urutan),2)
WHEN rank > 1 AND lag(nilai_perolehan) over urutan <= 0
THEN round(100,2)
WHEN rank = 1
THEN 0
ELSE
0
END
> 0
THEN 25
ELSE
0
END as persentasi,
masa_manfaat,
penambahan_umur,
umur_awal,
sisa_umur,
nilai_buku_awal,
penyusutan,
nilai_buku_akhir
from
view_penyusutan_108_atl_2019_r2_e5
Window
urutan as (partition by register order by rank)
order by register, rank;
DROP view if exists view_penyusutan_108_atl_2019_r2_e7 CASCADE;
create view view_penyusutan_108_atl_2019_r2_e7 as
select register,
nama_skpd,
id_skpd,
nama_lokasi_bidang,
id_lokasi_bidang,
nama_kabupaten,
id_kabupaten,
nama_provinsi,
id_provinsi,
id_mutasi_berkurang,
mutasi_berkurang,
keadaan_barang,
nama_barang,
harga,
nilai_perolehan,
tahun,
view_penyusutan_108_atl_2019_r2_e6.kode_barang_108,
kode_umur,
rank,
tahun_akhir,
persen_awal,
persentasi,
masa_manfaat,
CASE WHEN rank > 1
THEN view_penambahan_umur_108.umur
WHEN rank = 1
THEN 0
ELSE
0
END as penambahan_umur,
umur_awal,
sisa_umur,
nilai_buku_awal,
penyusutan,
nilai_buku_akhir
from
view_penyusutan_108_atl_2019_r2_e6, view_penambahan_umur_108
where
view_penyusutan_108_atl_2019_r2_e6.kode_umur = view_penambahan_umur_108.kode_kelompok_barang AND
view_penyusutan_108_atl_2019_r2_e6.persentasi = view_penambahan_umur_108.persen
order by register, rank;
DROP view if exists view_penyusutan_108_atl_2019_r2_e8 CASCADE;
create view view_penyusutan_108_atl_2019_r2_e8 as
select register,
nama_skpd,
id_skpd,
nama_lokasi_bidang,
id_lokasi_bidang,
nama_kabupaten,
id_kabupaten,
nama_provinsi,
id_provinsi,
id_mutasi_berkurang,
mutasi_berkurang,
keadaan_barang,
nama_barang,
harga,
nilai_perolehan,
tahun,
kode_barang_108,
kode_umur,
rank,
tahun_akhir,
persen_awal,
persentasi,
masa_manfaat,
penambahan_umur,
CASE WHEN rank > 1 AND lag(sisa_umur,1,0) over urutan + penambahan_umur >= masa_manfaat
THEN masa_manfaat
WHEN rank = 1
THEN masa_manfaat
ELSE
lag(sisa_umur,1,0) over urutan + penambahan_umur
END as umur_awal,
CASE WHEN rank > 1 AND lag(sisa_umur,1,0) over urutan + penambahan_umur - (tahun_akhir - tahun) > 0
AND lag(sisa_umur,1,0) over urutan + penambahan_umur < masa_manfaat
THEN lag(sisa_umur,1,0) over urutan + penambahan_umur - (tahun_akhir - tahun)
WHEN rank > 1 AND lag(sisa_umur,1,0) over urutan + penambahan_umur - (tahun_akhir - tahun) > 0
AND lag(sisa_umur,1,0) over urutan + penambahan_umur >= masa_manfaat
AND masa_manfaat - (tahun_akhir - tahun) > 0
THEN masa_manfaat - (tahun_akhir - tahun)
WHEN rank = 1 AND masa_manfaat - (tahun_akhir - tahun) > 0
THEN masa_manfaat - (tahun_akhir - tahun)
ELSE
0
END as sisa_umur,
COALESCE(lag(nilai_buku_akhir) over urutan, 0) + harga as nilai_buku_awal,
CASE WHEN (tahun_akhir - tahun) <
CASE WHEN rank > 1 AND lag(sisa_umur,1,0) over urutan + penambahan_umur >= masa_manfaat
THEN masa_manfaat
WHEN rank = 1
THEN masa_manfaat
ELSE
lag(sisa_umur,1,0) over urutan + penambahan_umur
END
THEN round((tahun_akhir - tahun) * (COALESCE(lag(nilai_buku_akhir) over urutan, 0) + harga) /
(CASE WHEN rank > 1 AND lag(sisa_umur,1,0) over urutan + penambahan_umur >= masa_manfaat
THEN masa_manfaat
WHEN rank = 1
THEN masa_manfaat
ELSE
lag(sisa_umur,1,0) over urutan + penambahan_umur
END),
0)
ELSE
COALESCE(lag(nilai_buku_akhir) over urutan, 0) + harga
END as penyusutan,
CASE WHEN (tahun_akhir - tahun) <
CASE WHEN rank > 1 AND lag(sisa_umur,1,0) over urutan + penambahan_umur >= masa_manfaat
THEN masa_manfaat
WHEN rank = 1
THEN masa_manfaat
ELSE
lag(sisa_umur,1,0) over urutan + penambahan_umur
END
THEN (COALESCE(lag(nilai_buku_akhir) over urutan, 0) + harga) -
(round((tahun_akhir - tahun) * (COALESCE(lag(nilai_buku_akhir) over urutan, 0) + harga) /
(CASE WHEN rank > 1 AND lag(sisa_umur,1,0) over urutan + penambahan_umur >= masa_manfaat
THEN masa_manfaat
WHEN rank = 1
THEN masa_manfaat
ELSE
lag(sisa_umur,1,0) over urutan + penambahan_umur
END),
0))
ELSE
(COALESCE(lag(nilai_buku_akhir) over urutan, 0) + harga) - (COALESCE(lag(nilai_buku_akhir) over urutan, 0) + harga)
END as nilai_buku_akhir
from
view_penyusutan_108_atl_2019_r2_e7
Window
urutan as (partition by register order by rank)
order by register, rank;
-- kunci angka baris ke 3
DROP view if exists view_penyusutan_108_atl_2019_r2_e9 CASCADE;
create view view_penyusutan_108_atl_2019_r2_e9 as
select register,
nama_skpd,
id_skpd,
nama_lokasi_bidang,
id_lokasi_bidang,
nama_kabupaten,
id_kabupaten,
nama_provinsi,
id_provinsi,
id_mutasi_berkurang,
mutasi_berkurang,
keadaan_barang,
nama_barang,
harga,
nilai_perolehan,
tahun,
view_penyusutan_108_atl_2019_r2_e8.kode_barang_108,
kode_umur,
rank,
tahun_akhir,
CASE WHEN rank > 1 AND lag(nilai_perolehan) over urutan > 0
THEN round (100 * (harga / lag(nilai_perolehan) over urutan),2)
WHEN rank > 1 AND lag(nilai_perolehan) over urutan <= 0
THEN round(100,2)
WHEN rank = 1
THEN 0
ELSE
0
END as persen_awal,
CASE WHEN
CASE WHEN rank > 1 AND lag(nilai_perolehan) over urutan > 0
THEN round (100 * (harga / lag(nilai_perolehan) over urutan),2)
WHEN rank > 1 AND lag(nilai_perolehan) over urutan <= 0
THEN round(100,2)
WHEN rank = 1
THEN 0
ELSE
0
END
> 75
THEN 100
WHEN
CASE WHEN rank > 1 AND lag(nilai_perolehan) over urutan > 0
THEN round (100 * (harga / lag(nilai_perolehan) over urutan),2)
WHEN rank > 1 AND lag(nilai_perolehan) over urutan <= 0
THEN round(100,2)
WHEN rank = 1
THEN 0
ELSE
0
END
> 50
THEN 75
WHEN
CASE WHEN rank > 1 AND lag(nilai_perolehan) over urutan > 0
THEN round (100 * (harga / lag(nilai_perolehan) over urutan),2)
WHEN rank > 1 AND lag(nilai_perolehan) over urutan <= 0
THEN round(100,2)
WHEN rank = 1
THEN 0
ELSE
0
END
> 25
THEN 50
WHEN
CASE WHEN rank > 1 AND lag(nilai_perolehan) over urutan > 0
THEN round (100 * (harga / lag(nilai_perolehan) over urutan),2)
WHEN rank > 1 AND lag(nilai_perolehan) over urutan <= 0
THEN round(100,2)
WHEN rank = 1
THEN 0
ELSE
0
END
> 0
THEN 25
ELSE
0
END as persentasi,
masa_manfaat,
penambahan_umur,
umur_awal,
sisa_umur,
nilai_buku_awal,
penyusutan,
nilai_buku_akhir
from
view_penyusutan_108_atl_2019_r2_e8
Window
urutan as (partition by register order by rank)
order by register, rank;
DROP view if exists view_penyusutan_108_atl_2019_r2_e10 CASCADE;
create view view_penyusutan_108_atl_2019_r2_e10 as
select register,
nama_skpd,
id_skpd,
nama_lokasi_bidang,
id_lokasi_bidang,
nama_kabupaten,
id_kabupaten,
nama_provinsi,
id_provinsi,
id_mutasi_berkurang,
mutasi_berkurang,
keadaan_barang,
nama_barang,
harga,
nilai_perolehan,
tahun,
view_penyusutan_108_atl_2019_r2_e9.kode_barang_108,
kode_umur,
rank,
tahun_akhir,
persen_awal,
persentasi,
masa_manfaat,
CASE WHEN rank > 1
THEN view_penambahan_umur_108.umur
WHEN rank = 1
THEN 0
ELSE
0
END as penambahan_umur,
umur_awal,
sisa_umur,
nilai_buku_awal,
penyusutan,
nilai_buku_akhir
from
view_penyusutan_108_atl_2019_r2_e9, view_penambahan_umur_108
where
view_penyusutan_108_atl_2019_r2_e9.kode_umur = view_penambahan_umur_108.kode_kelompok_barang AND
view_penyusutan_108_atl_2019_r2_e9.persentasi = view_penambahan_umur_108.persen
order by register, rank;
DROP view if exists view_penyusutan_108_atl_2019_r2_e11 CASCADE;
create view view_penyusutan_108_atl_2019_r2_e11 as
select register,
nama_skpd,
id_skpd,
nama_lokasi_bidang,
id_lokasi_bidang,
nama_kabupaten,
id_kabupaten,
nama_provinsi,
id_provinsi,
id_mutasi_berkurang,
mutasi_berkurang,
keadaan_barang,
nama_barang,
harga,
nilai_perolehan,
tahun,
kode_barang_108,
kode_umur,
rank,
tahun_akhir,
persen_awal,
persentasi,
masa_manfaat,
penambahan_umur,
CASE WHEN rank > 1 AND lag(sisa_umur,1,0) over urutan + penambahan_umur >= masa_manfaat
THEN masa_manfaat
WHEN rank = 1
THEN masa_manfaat
ELSE
lag(sisa_umur,1,0) over urutan + penambahan_umur
END as umur_awal,
CASE WHEN rank > 1 AND lag(sisa_umur,1,0) over urutan + penambahan_umur - (tahun_akhir - tahun) > 0
AND lag(sisa_umur,1,0) over urutan + penambahan_umur < masa_manfaat
THEN lag(sisa_umur,1,0) over urutan + penambahan_umur - (tahun_akhir - tahun)
WHEN rank > 1 AND lag(sisa_umur,1,0) over urutan + penambahan_umur - (tahun_akhir - tahun) > 0
AND lag(sisa_umur,1,0) over urutan + penambahan_umur >= masa_manfaat
AND masa_manfaat - (tahun_akhir - tahun) > 0
THEN masa_manfaat - (tahun_akhir - tahun)
WHEN rank = 1 AND masa_manfaat - (tahun_akhir - tahun) > 0
THEN masa_manfaat - (tahun_akhir - tahun)
ELSE
0
END as sisa_umur,
COALESCE(lag(nilai_buku_akhir) over urutan, 0) + harga as nilai_buku_awal,
CASE WHEN (tahun_akhir - tahun) <
CASE WHEN rank > 1 AND lag(sisa_umur,1,0) over urutan + penambahan_umur >= masa_manfaat
THEN masa_manfaat
WHEN rank = 1
THEN masa_manfaat
ELSE
lag(sisa_umur,1,0) over urutan + penambahan_umur
END
THEN round((tahun_akhir - tahun) * (COALESCE(lag(nilai_buku_akhir) over urutan, 0) + harga) /
(CASE WHEN rank > 1 AND lag(sisa_umur,1,0) over urutan + penambahan_umur >= masa_manfaat
THEN masa_manfaat
WHEN rank = 1
THEN masa_manfaat
ELSE
lag(sisa_umur,1,0) over urutan + penambahan_umur
END),
0)
ELSE
COALESCE(lag(nilai_buku_akhir) over urutan, 0) + harga
END as penyusutan,
CASE WHEN (tahun_akhir - tahun) <
CASE WHEN rank > 1 AND lag(sisa_umur,1,0) over urutan + penambahan_umur >= masa_manfaat
THEN masa_manfaat
WHEN rank = 1
THEN masa_manfaat
ELSE
lag(sisa_umur,1,0) over urutan + penambahan_umur
END
THEN (COALESCE(lag(nilai_buku_akhir) over urutan, 0) + harga) -
(round((tahun_akhir - tahun) * (COALESCE(lag(nilai_buku_akhir) over urutan, 0) + harga) /
(CASE WHEN rank > 1 AND lag(sisa_umur,1,0) over urutan + penambahan_umur >= masa_manfaat
THEN masa_manfaat
WHEN rank = 1
THEN masa_manfaat
ELSE
lag(sisa_umur,1,0) over urutan + penambahan_umur
END),
0))
ELSE
(COALESCE(lag(nilai_buku_akhir) over urutan, 0) + harga) - (COALESCE(lag(nilai_buku_akhir) over urutan, 0) + harga)
END as nilai_buku_akhir
from
view_penyusutan_108_atl_2019_r2_e10
Window
urutan as (partition by register order by rank)
order by register, rank;
-- kunci angka baris ke 4
DROP view if exists view_penyusutan_108_atl_2019_r2_e12 CASCADE;
create view view_penyusutan_108_atl_2019_r2_e12 as
select register,
nama_skpd,
id_skpd,
nama_lokasi_bidang,
id_lokasi_bidang,
nama_kabupaten,
id_kabupaten,
nama_provinsi,
id_provinsi,
id_mutasi_berkurang,
mutasi_berkurang,
keadaan_barang,
nama_barang,
harga,
nilai_perolehan,
tahun,
view_penyusutan_108_atl_2019_r2_e11.kode_barang_108,
kode_umur,
rank,
tahun_akhir,
CASE WHEN rank > 1 AND lag(nilai_perolehan) over urutan > 0
THEN round (100 * (harga / lag(nilai_perolehan) over urutan),2)
WHEN rank > 1 AND lag(nilai_perolehan) over urutan <= 0
THEN round(100,2)
WHEN rank = 1
THEN 0
ELSE
0
END as persen_awal,
CASE WHEN
CASE WHEN rank > 1 AND lag(nilai_perolehan) over urutan > 0
THEN round (100 * (harga / lag(nilai_perolehan) over urutan),2)
WHEN rank > 1 AND lag(nilai_perolehan) over urutan <= 0
THEN round(100,2)
WHEN rank = 1
THEN 0
ELSE
0
END
> 75
THEN 100
WHEN
CASE WHEN rank > 1 AND lag(nilai_perolehan) over urutan > 0
THEN round (100 * (harga / lag(nilai_perolehan) over urutan),2)
WHEN rank > 1 AND lag(nilai_perolehan) over urutan <= 0
THEN round(100,2)
WHEN rank = 1
THEN 0
ELSE
0
END
> 50
THEN 75
WHEN
CASE WHEN rank > 1 AND lag(nilai_perolehan) over urutan > 0
THEN round (100 * (harga / lag(nilai_perolehan) over urutan),2)
WHEN rank > 1 AND lag(nilai_perolehan) over urutan <= 0
THEN round(100,2)
WHEN rank = 1
THEN 0
ELSE
0
END
> 25
THEN 50
WHEN
CASE WHEN rank > 1 AND lag(nilai_perolehan) over urutan > 0
THEN round (100 * (harga / lag(nilai_perolehan) over urutan),2)
WHEN rank > 1 AND lag(nilai_perolehan) over urutan <= 0
THEN round(100,2)
WHEN rank = 1
THEN 0
ELSE
0
END
> 0
THEN 25
ELSE
0
END as persentasi,
masa_manfaat,
penambahan_umur,
umur_awal,
sisa_umur,
nilai_buku_awal,
penyusutan,
nilai_buku_akhir
from
view_penyusutan_108_atl_2019_r2_e11
Window
urutan as (partition by register order by rank)
order by register, rank;
DROP view if exists view_penyusutan_108_atl_2019_r2_e13 CASCADE;
create view view_penyusutan_108_atl_2019_r2_e13 as
select register,
nama_skpd,
id_skpd,
nama_lokasi_bidang,
id_lokasi_bidang,
nama_kabupaten,
id_kabupaten,
nama_provinsi,
id_provinsi,
id_mutasi_berkurang,
mutasi_berkurang,
keadaan_barang,
nama_barang,
harga,
nilai_perolehan,
tahun,
view_penyusutan_108_atl_2019_r2_e12.kode_barang_108,
kode_umur,
rank,
tahun_akhir,
persen_awal,
persentasi,
masa_manfaat,
CASE WHEN rank > 1
THEN view_penambahan_umur_108.umur
WHEN rank = 1
THEN 0
ELSE
0
END as penambahan_umur,
umur_awal,
sisa_umur,
nilai_buku_awal,
penyusutan,
nilai_buku_akhir
from
view_penyusutan_108_atl_2019_r2_e12, view_penambahan_umur_108
where
view_penyusutan_108_atl_2019_r2_e12.kode_umur = view_penambahan_umur_108.kode_kelompok_barang AND
view_penyusutan_108_atl_2019_r2_e12.persentasi = view_penambahan_umur_108.persen
order by register, rank;
DROP view if exists view_penyusutan_108_atl_2019_r2_e14 CASCADE;
create view view_penyusutan_108_atl_2019_r2_e14 as
select register,
nama_skpd,
id_skpd,
nama_lokasi_bidang,
id_lokasi_bidang,
nama_kabupaten,
id_kabupaten,
nama_provinsi,
id_provinsi,
id_mutasi_berkurang,
mutasi_berkurang,
keadaan_barang,
nama_barang,
harga,
nilai_perolehan,
tahun,
kode_barang_108,
kode_umur,
rank,
tahun_akhir,
persen_awal,
persentasi,
masa_manfaat,
penambahan_umur,
CASE WHEN rank > 1 AND lag(sisa_umur,1,0) over urutan + penambahan_umur >= masa_manfaat
THEN masa_manfaat
WHEN rank = 1
THEN masa_manfaat
ELSE
lag(sisa_umur,1,0) over urutan + penambahan_umur
END as umur_awal,
CASE WHEN rank > 1 AND lag(sisa_umur,1,0) over urutan + penambahan_umur - (tahun_akhir - tahun) > 0
AND lag(sisa_umur,1,0) over urutan + penambahan_umur < masa_manfaat
THEN lag(sisa_umur,1,0) over urutan + penambahan_umur - (tahun_akhir - tahun)
WHEN rank > 1 AND lag(sisa_umur,1,0) over urutan + penambahan_umur - (tahun_akhir - tahun) > 0
AND lag(sisa_umur,1,0) over urutan + penambahan_umur >= masa_manfaat
AND masa_manfaat - (tahun_akhir - tahun) > 0
THEN masa_manfaat - (tahun_akhir - tahun)
WHEN rank = 1 AND masa_manfaat - (tahun_akhir - tahun) > 0
THEN masa_manfaat - (tahun_akhir - tahun)
ELSE
0
END as sisa_umur,
COALESCE(lag(nilai_buku_akhir) over urutan, 0) + harga as nilai_buku_awal,
CASE WHEN (tahun_akhir - tahun) <
CASE WHEN rank > 1 AND lag(sisa_umur,1,0) over urutan + penambahan_umur >= masa_manfaat
THEN masa_manfaat
WHEN rank = 1
THEN masa_manfaat
ELSE
lag(sisa_umur,1,0) over urutan + penambahan_umur
END
THEN round((tahun_akhir - tahun) * (COALESCE(lag(nilai_buku_akhir) over urutan, 0) + harga) /
(CASE WHEN rank > 1 AND lag(sisa_umur,1,0) over urutan + penambahan_umur >= masa_manfaat
THEN masa_manfaat
WHEN rank = 1
THEN masa_manfaat
ELSE
lag(sisa_umur,1,0) over urutan + penambahan_umur
END),
0)
ELSE
COALESCE(lag(nilai_buku_akhir) over urutan, 0) + harga
END as penyusutan,
CASE WHEN (tahun_akhir - tahun) <
CASE WHEN rank > 1 AND lag(sisa_umur,1,0) over urutan + penambahan_umur >= masa_manfaat
THEN masa_manfaat
WHEN rank = 1
THEN masa_manfaat
ELSE
lag(sisa_umur,1,0) over urutan + penambahan_umur
END
THEN (COALESCE(lag(nilai_buku_akhir) over urutan, 0) + harga) -
(round((tahun_akhir - tahun) * (COALESCE(lag(nilai_buku_akhir) over urutan, 0) + harga) /
(CASE WHEN rank > 1 AND lag(sisa_umur,1,0) over urutan + penambahan_umur >= masa_manfaat
THEN masa_manfaat
WHEN rank = 1
THEN masa_manfaat
ELSE
lag(sisa_umur,1,0) over urutan + penambahan_umur
END),
0))
ELSE
(COALESCE(lag(nilai_buku_akhir) over urutan, 0) + harga) - (COALESCE(lag(nilai_buku_akhir) over urutan, 0) + harga)
END as nilai_buku_akhir
from
view_penyusutan_108_atl_2019_r2_e13
Window
urutan as (partition by register order by rank)
order by register, rank;
-- kunci angka baris ke 5
DROP view if exists view_penyusutan_108_atl_2019_r2_e15 CASCADE;
create view view_penyusutan_108_atl_2019_r2_e15 as
select register,
nama_skpd,
id_skpd,
nama_lokasi_bidang,
id_lokasi_bidang,
nama_kabupaten,
id_kabupaten,
nama_provinsi,
id_provinsi,
id_mutasi_berkurang,
mutasi_berkurang,
keadaan_barang,
nama_barang,
harga,
nilai_perolehan,
tahun,
view_penyusutan_108_atl_2019_r2_e14.kode_barang_108,
kode_umur,
rank,
tahun_akhir,
CASE WHEN rank > 1 AND lag(nilai_perolehan) over urutan > 0
THEN round (100 * (harga / lag(nilai_perolehan) over urutan),2)
WHEN rank > 1 AND lag(nilai_perolehan) over urutan <= 0
THEN round(100,2)
WHEN rank = 1
THEN 0
ELSE
0
END as persen_awal,
CASE WHEN
CASE WHEN rank > 1 AND lag(nilai_perolehan) over urutan > 0
THEN round (100 * (harga / lag(nilai_perolehan) over urutan),2)
WHEN rank > 1 AND lag(nilai_perolehan) over urutan <= 0
THEN round(100,2)
WHEN rank = 1
THEN 0
ELSE
0
END
> 75
THEN 100
WHEN
CASE WHEN rank > 1 AND lag(nilai_perolehan) over urutan > 0
THEN round (100 * (harga / lag(nilai_perolehan) over urutan),2)
WHEN rank > 1 AND lag(nilai_perolehan) over urutan <= 0
THEN round(100,2)
WHEN rank = 1
THEN 0
ELSE
0
END
> 50
THEN 75
WHEN
CASE WHEN rank > 1 AND lag(nilai_perolehan) over urutan > 0
THEN round (100 * (harga / lag(nilai_perolehan) over urutan),2)
WHEN rank > 1 AND lag(nilai_perolehan) over urutan <= 0
THEN round(100,2)
WHEN rank = 1
THEN 0
ELSE
0
END
> 25
THEN 50
WHEN
CASE WHEN rank > 1 AND lag(nilai_perolehan) over urutan > 0
THEN round (100 * (harga / lag(nilai_perolehan) over urutan),2)
WHEN rank > 1 AND lag(nilai_perolehan) over urutan <= 0
THEN round(100,2)
WHEN rank = 1
THEN 0
ELSE
0
END
> 0
THEN 25
ELSE
0
END as persentasi,
masa_manfaat,
penambahan_umur,
umur_awal,
sisa_umur,
nilai_buku_awal,
penyusutan,
nilai_buku_akhir
from
view_penyusutan_108_atl_2019_r2_e14
Window
urutan as (partition by register order by rank)
order by register, rank;
DROP view if exists view_penyusutan_108_atl_2019_r2_e16 CASCADE;
create view view_penyusutan_108_atl_2019_r2_e16 as
select register,
nama_skpd,
id_skpd,
nama_lokasi_bidang,
id_lokasi_bidang,
nama_kabupaten,
id_kabupaten,
nama_provinsi,
id_provinsi,
id_mutasi_berkurang,
mutasi_berkurang,
keadaan_barang,
nama_barang,
harga,
nilai_perolehan,
tahun,
view_penyusutan_108_atl_2019_r2_e15.kode_barang_108,
kode_umur,
rank,
tahun_akhir,
persen_awal,
persentasi,
masa_manfaat,
CASE WHEN rank > 1
THEN view_penambahan_umur_108.umur
WHEN rank = 1
THEN 0
ELSE
0
END as penambahan_umur,
umur_awal,
sisa_umur,
nilai_buku_awal,
penyusutan,
nilai_buku_akhir
from
view_penyusutan_108_atl_2019_r2_e15, view_penambahan_umur_108
where
view_penyusutan_108_atl_2019_r2_e15.kode_umur = view_penambahan_umur_108.kode_kelompok_barang AND
view_penyusutan_108_atl_2019_r2_e15.persentasi = view_penambahan_umur_108.persen
order by register, rank;
DROP view if exists view_penyusutan_108_atl_2019_r2_e17 CASCADE;
create view view_penyusutan_108_atl_2019_r2_e17 as
select register,
nama_skpd,
id_skpd,
nama_lokasi_bidang,
id_lokasi_bidang,
nama_kabupaten,
id_kabupaten,
nama_provinsi,
id_provinsi,
id_mutasi_berkurang,
mutasi_berkurang,
keadaan_barang,
nama_barang,
harga,
nilai_perolehan,
tahun,
kode_barang_108,
kode_umur,
rank,
tahun_akhir,
persen_awal,
persentasi,
masa_manfaat,
penambahan_umur,
CASE WHEN rank > 1 AND lag(sisa_umur,1,0) over urutan + penambahan_umur >= masa_manfaat
THEN masa_manfaat
WHEN rank = 1
THEN masa_manfaat
ELSE
lag(sisa_umur,1,0) over urutan + penambahan_umur
END as umur_awal,
CASE WHEN rank > 1 AND lag(sisa_umur,1,0) over urutan + penambahan_umur - (tahun_akhir - tahun) > 0
AND lag(sisa_umur,1,0) over urutan + penambahan_umur < masa_manfaat
THEN lag(sisa_umur,1,0) over urutan + penambahan_umur - (tahun_akhir - tahun)
WHEN rank > 1 AND lag(sisa_umur,1,0) over urutan + penambahan_umur - (tahun_akhir - tahun) > 0
AND lag(sisa_umur,1,0) over urutan + penambahan_umur >= masa_manfaat
AND masa_manfaat - (tahun_akhir - tahun) > 0
THEN masa_manfaat - (tahun_akhir - tahun)
WHEN rank = 1 AND masa_manfaat - (tahun_akhir - tahun) > 0
THEN masa_manfaat - (tahun_akhir - tahun)
ELSE
0
END as sisa_umur,
COALESCE(lag(nilai_buku_akhir) over urutan, 0) + harga as nilai_buku_awal,
CASE WHEN (tahun_akhir - tahun) <
CASE WHEN rank > 1 AND lag(sisa_umur,1,0) over urutan + penambahan_umur >= masa_manfaat
THEN masa_manfaat
WHEN rank = 1
THEN masa_manfaat
ELSE
lag(sisa_umur,1,0) over urutan + penambahan_umur
END
THEN round((tahun_akhir - tahun) * (COALESCE(lag(nilai_buku_akhir) over urutan, 0) + harga) /
(CASE WHEN rank > 1 AND lag(sisa_umur,1,0) over urutan + penambahan_umur >= masa_manfaat
THEN masa_manfaat
WHEN rank = 1
THEN masa_manfaat
ELSE
lag(sisa_umur,1,0) over urutan + penambahan_umur
END),
0)
ELSE
COALESCE(lag(nilai_buku_akhir) over urutan, 0) + harga
END as penyusutan,
CASE WHEN (tahun_akhir - tahun) <
CASE WHEN rank > 1 AND lag(sisa_umur,1,0) over urutan + penambahan_umur >= masa_manfaat
THEN masa_manfaat
WHEN rank = 1
THEN masa_manfaat
ELSE
lag(sisa_umur,1,0) over urutan + penambahan_umur
END
THEN (COALESCE(lag(nilai_buku_akhir) over urutan, 0) + harga) -
(round((tahun_akhir - tahun) * (COALESCE(lag(nilai_buku_akhir) over urutan, 0) + harga) /
(CASE WHEN rank > 1 AND lag(sisa_umur,1,0) over urutan + penambahan_umur >= masa_manfaat
THEN masa_manfaat
WHEN rank = 1
THEN masa_manfaat
ELSE
lag(sisa_umur,1,0) over urutan + penambahan_umur
END),
0))
ELSE
(COALESCE(lag(nilai_buku_akhir) over urutan, 0) + harga) - (COALESCE(lag(nilai_buku_akhir) over urutan, 0) + harga)
END as nilai_buku_akhir
from
view_penyusutan_108_atl_2019_r2_e16
Window
urutan as (partition by register order by rank)
order by register, rank;
-- kunci angka baris ke 6
DROP view if exists view_penyusutan_108_atl_2019_r2_e18 CASCADE;
create view view_penyusutan_108_atl_2019_r2_e18 as
select register,
nama_skpd,
id_skpd,
nama_lokasi_bidang,
id_lokasi_bidang,
nama_kabupaten,
id_kabupaten,
nama_provinsi,
id_provinsi,
id_mutasi_berkurang,
mutasi_berkurang,
keadaan_barang,
nama_barang,
harga,
nilai_perolehan,
tahun,
view_penyusutan_108_atl_2019_r2_e17.kode_barang_108,
kode_umur,
rank,
tahun_akhir,
CASE WHEN rank > 1 AND lag(nilai_perolehan) over urutan > 0
THEN round (100 * (harga / lag(nilai_perolehan) over urutan),2)
WHEN rank > 1 AND lag(nilai_perolehan) over urutan <= 0
THEN round(100,2)
WHEN rank = 1
THEN 0
ELSE
0
END as persen_awal,
CASE WHEN
CASE WHEN rank > 1 AND lag(nilai_perolehan) over urutan > 0
THEN round (100 * (harga / lag(nilai_perolehan) over urutan),2)
WHEN rank > 1 AND lag(nilai_perolehan) over urutan <= 0
THEN round(100,2)
WHEN rank = 1
THEN 0
ELSE
0
END
> 75
THEN 100
WHEN
CASE WHEN rank > 1 AND lag(nilai_perolehan) over urutan > 0
THEN round (100 * (harga / lag(nilai_perolehan) over urutan),2)
WHEN rank > 1 AND lag(nilai_perolehan) over urutan <= 0
THEN round(100,2)
WHEN rank = 1
THEN 0
ELSE
0
END
> 50
THEN 75
WHEN
CASE WHEN rank > 1 AND lag(nilai_perolehan) over urutan > 0
THEN round (100 * (harga / lag(nilai_perolehan) over urutan),2)
WHEN rank > 1 AND lag(nilai_perolehan) over urutan <= 0
THEN round(100,2)
WHEN rank = 1
THEN 0
ELSE
0
END
> 25
THEN 50
WHEN
CASE WHEN rank > 1 AND lag(nilai_perolehan) over urutan > 0
THEN round (100 * (harga / lag(nilai_perolehan) over urutan),2)
WHEN rank > 1 AND lag(nilai_perolehan) over urutan <= 0
THEN round(100,2)
WHEN rank = 1
THEN 0
ELSE
0
END
> 0
THEN 25
ELSE
0
END as persentasi,
masa_manfaat,
penambahan_umur,
umur_awal,
sisa_umur,
nilai_buku_awal,
penyusutan,
nilai_buku_akhir
from
view_penyusutan_108_atl_2019_r2_e17
Window
urutan as (partition by register order by rank)
order by register, rank;
DROP view if exists view_penyusutan_108_atl_2019_r2_e19 CASCADE;
create view view_penyusutan_108_atl_2019_r2_e19 as
select register,
nama_skpd,
id_skpd,
nama_lokasi_bidang,
id_lokasi_bidang,
nama_kabupaten,
id_kabupaten,
nama_provinsi,
id_provinsi,
id_mutasi_berkurang,
mutasi_berkurang,
keadaan_barang,
nama_barang,
harga,
nilai_perolehan,
tahun,
view_penyusutan_108_atl_2019_r2_e18.kode_barang_108,
kode_umur,
rank,
tahun_akhir,
persen_awal,
persentasi,
masa_manfaat,
CASE WHEN rank > 1
THEN view_penambahan_umur_108.umur
WHEN rank = 1
THEN 0
ELSE
0
END as penambahan_umur,
umur_awal,
sisa_umur,
nilai_buku_awal,
penyusutan,
nilai_buku_akhir
from
view_penyusutan_108_atl_2019_r2_e18, view_penambahan_umur_108
where
view_penyusutan_108_atl_2019_r2_e18.kode_umur = view_penambahan_umur_108.kode_kelompok_barang AND
view_penyusutan_108_atl_2019_r2_e18.persentasi = view_penambahan_umur_108.persen
order by register, rank;
DROP view if exists view_penyusutan_108_atl_2019_r2_e20 CASCADE;
create view view_penyusutan_108_atl_2019_r2_e20 as
select register,
nama_skpd,
id_skpd,
nama_lokasi_bidang,
id_lokasi_bidang,
nama_kabupaten,
id_kabupaten,
nama_provinsi,
id_provinsi,
id_mutasi_berkurang,
mutasi_berkurang,
keadaan_barang,
nama_barang,
harga,
nilai_perolehan,
tahun,
kode_barang_108,
kode_umur,
rank,
tahun_akhir,
persen_awal,
persentasi,
masa_manfaat,
penambahan_umur,
CASE WHEN rank > 1 AND lag(sisa_umur,1,0) over urutan + penambahan_umur >= masa_manfaat
THEN masa_manfaat
WHEN rank = 1
THEN masa_manfaat
ELSE
lag(sisa_umur,1,0) over urutan + penambahan_umur
END as umur_awal,
CASE WHEN rank > 1 AND lag(sisa_umur,1,0) over urutan + penambahan_umur - (tahun_akhir - tahun) > 0
AND lag(sisa_umur,1,0) over urutan + penambahan_umur < masa_manfaat
THEN lag(sisa_umur,1,0) over urutan + penambahan_umur - (tahun_akhir - tahun)
WHEN rank > 1 AND lag(sisa_umur,1,0) over urutan + penambahan_umur - (tahun_akhir - tahun) > 0
AND lag(sisa_umur,1,0) over urutan + penambahan_umur >= masa_manfaat
AND masa_manfaat - (tahun_akhir - tahun) > 0
THEN masa_manfaat - (tahun_akhir - tahun)
WHEN rank = 1 AND masa_manfaat - (tahun_akhir - tahun) > 0
THEN masa_manfaat - (tahun_akhir - tahun)
ELSE
0
END as sisa_umur,
COALESCE(lag(nilai_buku_akhir) over urutan, 0) + harga as nilai_buku_awal,
CASE WHEN (tahun_akhir - tahun) <
CASE WHEN rank > 1 AND lag(sisa_umur,1,0) over urutan + penambahan_umur >= masa_manfaat
THEN masa_manfaat
WHEN rank = 1
THEN masa_manfaat
ELSE
lag(sisa_umur,1,0) over urutan + penambahan_umur
END
THEN round((tahun_akhir - tahun) * (COALESCE(lag(nilai_buku_akhir) over urutan, 0) + harga) /
(CASE WHEN rank > 1 AND lag(sisa_umur,1,0) over urutan + penambahan_umur >= masa_manfaat
THEN masa_manfaat
WHEN rank = 1
THEN masa_manfaat
ELSE
lag(sisa_umur,1,0) over urutan + penambahan_umur
END),
0)
ELSE
COALESCE(lag(nilai_buku_akhir) over urutan, 0) + harga
END as penyusutan,
CASE WHEN (tahun_akhir - tahun) <
CASE WHEN rank > 1 AND lag(sisa_umur,1,0) over urutan + penambahan_umur >= masa_manfaat
THEN masa_manfaat
WHEN rank = 1
THEN masa_manfaat
ELSE
lag(sisa_umur,1,0) over urutan + penambahan_umur
END
THEN (COALESCE(lag(nilai_buku_akhir) over urutan, 0) + harga) -
(round((tahun_akhir - tahun) * (COALESCE(lag(nilai_buku_akhir) over urutan, 0) + harga) /
(CASE WHEN rank > 1 AND lag(sisa_umur,1,0) over urutan + penambahan_umur >= masa_manfaat
THEN masa_manfaat
WHEN rank = 1
THEN masa_manfaat
ELSE
lag(sisa_umur,1,0) over urutan + penambahan_umur
END),
0))
ELSE
(COALESCE(lag(nilai_buku_akhir) over urutan, 0) + harga) - (COALESCE(lag(nilai_buku_akhir) over urutan, 0) + harga)
END as nilai_buku_akhir
from
view_penyusutan_108_atl_2019_r2_e19
Window
urutan as (partition by register order by rank)
order by register, rank;
-- kunci angka baris ke 7
DROP view if exists view_penyusutan_108_atl_2019_r2_e21 CASCADE;
create view view_penyusutan_108_atl_2019_r2_e21 as
select register,
nama_skpd,
id_skpd,
nama_lokasi_bidang,
id_lokasi_bidang,
nama_kabupaten,
id_kabupaten,
nama_provinsi,
id_provinsi,
id_mutasi_berkurang,
mutasi_berkurang,
keadaan_barang,
nama_barang,
harga,
nilai_perolehan,
tahun,
view_penyusutan_108_atl_2019_r2_e20.kode_barang_108,
kode_umur,
rank,
tahun_akhir,
CASE WHEN rank > 1 AND lag(nilai_perolehan) over urutan > 0
THEN round (100 * (harga / lag(nilai_perolehan) over urutan),2)
WHEN rank > 1 AND lag(nilai_perolehan) over urutan <= 0
THEN round(100,2)
WHEN rank = 1
THEN 0
ELSE
0
END as persen_awal,
CASE WHEN
CASE WHEN rank > 1 AND lag(nilai_perolehan) over urutan > 0
THEN round (100 * (harga / lag(nilai_perolehan) over urutan),2)
WHEN rank > 1 AND lag(nilai_perolehan) over urutan <= 0
THEN round(100,2)
WHEN rank = 1
THEN 0
ELSE
0
END
> 75
THEN 100
WHEN
CASE WHEN rank > 1 AND lag(nilai_perolehan) over urutan > 0
THEN round (100 * (harga / lag(nilai_perolehan) over urutan),2)
WHEN rank > 1 AND lag(nilai_perolehan) over urutan <= 0
THEN round(100,2)
WHEN rank = 1
THEN 0
ELSE
0
END
> 50
THEN 75
WHEN
CASE WHEN rank > 1 AND lag(nilai_perolehan) over urutan > 0
THEN round (100 * (harga / lag(nilai_perolehan) over urutan),2)
WHEN rank > 1 AND lag(nilai_perolehan) over urutan <= 0
THEN round(100,2)
WHEN rank = 1
THEN 0
ELSE
0
END
> 25
THEN 50
WHEN
CASE WHEN rank > 1 AND lag(nilai_perolehan) over urutan > 0
THEN round (100 * (harga / lag(nilai_perolehan) over urutan),2)
WHEN rank > 1 AND lag(nilai_perolehan) over urutan <= 0
THEN round(100,2)
WHEN rank = 1
THEN 0
ELSE
0
END
> 0
THEN 25
ELSE
0
END as persentasi,
masa_manfaat,
penambahan_umur,
umur_awal,
sisa_umur,
nilai_buku_awal,
penyusutan,
nilai_buku_akhir
from
view_penyusutan_108_atl_2019_r2_e20
Window
urutan as (partition by register order by rank)
order by register, rank;
DROP view if exists view_penyusutan_108_atl_2019_r2_e22 CASCADE;
create view view_penyusutan_108_atl_2019_r2_e22 as
select register,
nama_skpd,
id_skpd,
nama_lokasi_bidang,
id_lokasi_bidang,
nama_kabupaten,
id_kabupaten,
nama_provinsi,
id_provinsi,
id_mutasi_berkurang,
mutasi_berkurang,
keadaan_barang,
nama_barang,
harga,
nilai_perolehan,
tahun,
view_penyusutan_108_atl_2019_r2_e21.kode_barang_108,
kode_umur,
rank,
tahun_akhir,
persen_awal,
persentasi,
masa_manfaat,
CASE WHEN rank > 1
THEN view_penambahan_umur_108.umur
WHEN rank = 1
THEN 0
ELSE
0
END as penambahan_umur,
umur_awal,
sisa_umur,
nilai_buku_awal,
penyusutan,
nilai_buku_akhir
from
view_penyusutan_108_atl_2019_r2_e21, view_penambahan_umur_108
where
view_penyusutan_108_atl_2019_r2_e21.kode_umur = view_penambahan_umur_108.kode_kelompok_barang AND
view_penyusutan_108_atl_2019_r2_e21.persentasi = view_penambahan_umur_108.persen
order by register, rank;
DROP view if exists view_penyusutan_108_atl_2019_r2_e23 CASCADE;
create view view_penyusutan_108_atl_2019_r2_e23 as
select register,
nama_skpd,
id_skpd,
nama_lokasi_bidang,
id_lokasi_bidang,
nama_kabupaten,
id_kabupaten,
nama_provinsi,
id_provinsi,
id_mutasi_berkurang,
mutasi_berkurang,
keadaan_barang,
nama_barang,
harga,
nilai_perolehan,
tahun,
kode_barang_108,
kode_umur,
rank,
tahun_akhir,
persen_awal,
persentasi,
masa_manfaat,
penambahan_umur,
CASE WHEN rank > 1 AND lag(sisa_umur,1,0) over urutan + penambahan_umur >= masa_manfaat
THEN masa_manfaat
WHEN rank = 1
THEN masa_manfaat
ELSE
lag(sisa_umur,1,0) over urutan + penambahan_umur
END as umur_awal,
CASE WHEN rank > 1 AND lag(sisa_umur,1,0) over urutan + penambahan_umur - (tahun_akhir - tahun) > 0
AND lag(sisa_umur,1,0) over urutan + penambahan_umur < masa_manfaat
THEN lag(sisa_umur,1,0) over urutan + penambahan_umur - (tahun_akhir - tahun)
WHEN rank > 1 AND lag(sisa_umur,1,0) over urutan + penambahan_umur - (tahun_akhir - tahun) > 0
AND lag(sisa_umur,1,0) over urutan + penambahan_umur >= masa_manfaat
AND masa_manfaat - (tahun_akhir - tahun) > 0
THEN masa_manfaat - (tahun_akhir - tahun)
WHEN rank = 1 AND masa_manfaat - (tahun_akhir - tahun) > 0
THEN masa_manfaat - (tahun_akhir - tahun)
ELSE
0
END as sisa_umur,
COALESCE(lag(nilai_buku_akhir) over urutan, 0) + harga as nilai_buku_awal,
CASE WHEN (tahun_akhir - tahun) <
CASE WHEN rank > 1 AND lag(sisa_umur,1,0) over urutan + penambahan_umur >= masa_manfaat
THEN masa_manfaat
WHEN rank = 1
THEN masa_manfaat
ELSE
lag(sisa_umur,1,0) over urutan + penambahan_umur
END
THEN round((tahun_akhir - tahun) * (COALESCE(lag(nilai_buku_akhir) over urutan, 0) + harga) /
(CASE WHEN rank > 1 AND lag(sisa_umur,1,0) over urutan + penambahan_umur >= masa_manfaat
THEN masa_manfaat
WHEN rank = 1
THEN masa_manfaat
ELSE
lag(sisa_umur,1,0) over urutan + penambahan_umur
END),
0)
ELSE
COALESCE(lag(nilai_buku_akhir) over urutan, 0) + harga
END as penyusutan,
CASE WHEN (tahun_akhir - tahun) <
CASE WHEN rank > 1 AND lag(sisa_umur,1,0) over urutan + penambahan_umur >= masa_manfaat
THEN masa_manfaat
WHEN rank = 1
THEN masa_manfaat
ELSE
lag(sisa_umur,1,0) over urutan + penambahan_umur
END
THEN (COALESCE(lag(nilai_buku_akhir) over urutan, 0) + harga) -
(round((tahun_akhir - tahun) * (COALESCE(lag(nilai_buku_akhir) over urutan, 0) + harga) /
(CASE WHEN rank > 1 AND lag(sisa_umur,1,0) over urutan + penambahan_umur >= masa_manfaat
THEN masa_manfaat
WHEN rank = 1
THEN masa_manfaat
ELSE
lag(sisa_umur,1,0) over urutan + penambahan_umur
END),
0))
ELSE
(COALESCE(lag(nilai_buku_akhir) over urutan, 0) + harga) - (COALESCE(lag(nilai_buku_akhir) over urutan, 0) + harga)
END as nilai_buku_akhir
from
view_penyusutan_108_atl_2019_r2_e22
Window
urutan as (partition by register order by rank)
order by register, rank;
-- kunci angka baris ke 8
DROP view if exists view_penyusutan_108_atl_2019_r2_e24 CASCADE;
create view view_penyusutan_108_atl_2019_r2_e24 as
select register,
nama_skpd,
id_skpd,
nama_lokasi_bidang,
id_lokasi_bidang,
nama_kabupaten,
id_kabupaten,
nama_provinsi,
id_provinsi,
id_mutasi_berkurang,
mutasi_berkurang,
keadaan_barang,
nama_barang,
harga,
nilai_perolehan,
tahun,
view_penyusutan_108_atl_2019_r2_e23.kode_barang_108,
kode_umur,
rank,
tahun_akhir,
CASE WHEN rank > 1 AND lag(nilai_perolehan) over urutan > 0
THEN round (100 * (harga / lag(nilai_perolehan) over urutan),2)
WHEN rank > 1 AND lag(nilai_perolehan) over urutan <= 0
THEN round(100,2)
WHEN rank = 1
THEN 0
ELSE
0
END as persen_awal,
CASE WHEN
CASE WHEN rank > 1 AND lag(nilai_perolehan) over urutan > 0
THEN round (100 * (harga / lag(nilai_perolehan) over urutan),2)
WHEN rank > 1 AND lag(nilai_perolehan) over urutan <= 0
THEN round(100,2)
WHEN rank = 1
THEN 0
ELSE
0
END
> 75
THEN 100
WHEN
CASE WHEN rank > 1 AND lag(nilai_perolehan) over urutan > 0
THEN round (100 * (harga / lag(nilai_perolehan) over urutan),2)
WHEN rank > 1 AND lag(nilai_perolehan) over urutan <= 0
THEN round(100,2)
WHEN rank = 1
THEN 0
ELSE
0
END
> 50
THEN 75
WHEN
CASE WHEN rank > 1 AND lag(nilai_perolehan) over urutan > 0
THEN round (100 * (harga / lag(nilai_perolehan) over urutan),2)
WHEN rank > 1 AND lag(nilai_perolehan) over urutan <= 0
THEN round(100,2)
WHEN rank = 1
THEN 0
ELSE
0
END
> 25
THEN 50
WHEN
CASE WHEN rank > 1 AND lag(nilai_perolehan) over urutan > 0
THEN round (100 * (harga / lag(nilai_perolehan) over urutan),2)
WHEN rank > 1 AND lag(nilai_perolehan) over urutan <= 0
THEN round(100,2)
WHEN rank = 1
THEN 0
ELSE
0
END
> 0
THEN 25
ELSE
0
END as persentasi,
masa_manfaat,
penambahan_umur,
umur_awal,
sisa_umur,
nilai_buku_awal,
penyusutan,
nilai_buku_akhir
from
view_penyusutan_108_atl_2019_r2_e23
Window
urutan as (partition by register order by rank)
order by register, rank;
DROP view if exists view_penyusutan_108_atl_2019_r2_e25 CASCADE;
create view view_penyusutan_108_atl_2019_r2_e25 as
select register,
nama_skpd,
id_skpd,
nama_lokasi_bidang,
id_lokasi_bidang,
nama_kabupaten,
id_kabupaten,
nama_provinsi,
id_provinsi,
id_mutasi_berkurang,
mutasi_berkurang,
keadaan_barang,
nama_barang,
harga,
nilai_perolehan,
tahun,
view_penyusutan_108_atl_2019_r2_e24.kode_barang_108,
kode_umur,
rank,
tahun_akhir,
persen_awal,
persentasi,
masa_manfaat,
CASE WHEN rank > 1
THEN view_penambahan_umur_108.umur
WHEN rank = 1
THEN 0
ELSE
0
END as penambahan_umur,
umur_awal,
sisa_umur,
nilai_buku_awal,
penyusutan,
nilai_buku_akhir
from
view_penyusutan_108_atl_2019_r2_e24, view_penambahan_umur_108
where
view_penyusutan_108_atl_2019_r2_e24.kode_umur = view_penambahan_umur_108.kode_kelompok_barang AND
view_penyusutan_108_atl_2019_r2_e24.persentasi = view_penambahan_umur_108.persen
order by register, rank;
DROP view if exists view_penyusutan_108_atl_2019_r2_e26 CASCADE;
create view view_penyusutan_108_atl_2019_r2_e26 as
select register,
nama_skpd,
id_skpd,
nama_lokasi_bidang,
id_lokasi_bidang,
nama_kabupaten,
id_kabupaten,
nama_provinsi,
id_provinsi,
id_mutasi_berkurang,
mutasi_berkurang,
keadaan_barang,
nama_barang,
harga,
nilai_perolehan,
tahun,
kode_barang_108,
kode_umur,
rank,
tahun_akhir,
persen_awal,
persentasi,
masa_manfaat,
penambahan_umur,
CASE WHEN rank > 1 AND lag(sisa_umur,1,0) over urutan + penambahan_umur >= masa_manfaat
THEN masa_manfaat
WHEN rank = 1
THEN masa_manfaat
ELSE
lag(sisa_umur,1,0) over urutan + penambahan_umur
END as umur_awal,
CASE WHEN rank > 1 AND lag(sisa_umur,1,0) over urutan + penambahan_umur - (tahun_akhir - tahun) > 0
AND lag(sisa_umur,1,0) over urutan + penambahan_umur < masa_manfaat
THEN lag(sisa_umur,1,0) over urutan + penambahan_umur - (tahun_akhir - tahun)
WHEN rank > 1 AND lag(sisa_umur,1,0) over urutan + penambahan_umur - (tahun_akhir - tahun) > 0
AND lag(sisa_umur,1,0) over urutan + penambahan_umur >= masa_manfaat
AND masa_manfaat - (tahun_akhir - tahun) > 0
THEN masa_manfaat - (tahun_akhir - tahun)
WHEN rank = 1 AND masa_manfaat - (tahun_akhir - tahun) > 0
THEN masa_manfaat - (tahun_akhir - tahun)
ELSE
0
END as sisa_umur,
COALESCE(lag(nilai_buku_akhir) over urutan, 0) + harga as nilai_buku_awal,
CASE WHEN (tahun_akhir - tahun) <
CASE WHEN rank > 1 AND lag(sisa_umur,1,0) over urutan + penambahan_umur >= masa_manfaat
THEN masa_manfaat
WHEN rank = 1
THEN masa_manfaat
ELSE
lag(sisa_umur,1,0) over urutan + penambahan_umur
END
THEN round((tahun_akhir - tahun) * (COALESCE(lag(nilai_buku_akhir) over urutan, 0) + harga) /
(CASE WHEN rank > 1 AND lag(sisa_umur,1,0) over urutan + penambahan_umur >= masa_manfaat
THEN masa_manfaat
WHEN rank = 1
THEN masa_manfaat
ELSE
lag(sisa_umur,1,0) over urutan + penambahan_umur
END),
0)
ELSE
COALESCE(lag(nilai_buku_akhir) over urutan, 0) + harga
END as penyusutan,
CASE WHEN (tahun_akhir - tahun) <
CASE WHEN rank > 1 AND lag(sisa_umur,1,0) over urutan + penambahan_umur >= masa_manfaat
THEN masa_manfaat
WHEN rank = 1
THEN masa_manfaat
ELSE
lag(sisa_umur,1,0) over urutan + penambahan_umur
END
THEN (COALESCE(lag(nilai_buku_akhir) over urutan, 0) + harga) -
(round((tahun_akhir - tahun) * (COALESCE(lag(nilai_buku_akhir) over urutan, 0) + harga) /
(CASE WHEN rank > 1 AND lag(sisa_umur,1,0) over urutan + penambahan_umur >= masa_manfaat
THEN masa_manfaat
WHEN rank = 1
THEN masa_manfaat
ELSE
lag(sisa_umur,1,0) over urutan + penambahan_umur
END),
0))
ELSE
(COALESCE(lag(nilai_buku_akhir) over urutan, 0) + harga) - (COALESCE(lag(nilai_buku_akhir) over urutan, 0) + harga)
END as nilai_buku_akhir
from
view_penyusutan_108_atl_2019_r2_e25
Window
urutan as (partition by register order by rank)
order by register, rank;
-- kunci angka baris ke 9
DROP view if exists view_penyusutan_108_atl_2019_r2_e27 CASCADE;
create view view_penyusutan_108_atl_2019_r2_e27 as
select register,
nama_skpd,
id_skpd,
nama_lokasi_bidang,
id_lokasi_bidang,
nama_kabupaten,
id_kabupaten,
nama_provinsi,
id_provinsi,
id_mutasi_berkurang,
mutasi_berkurang,
keadaan_barang,
nama_barang,
harga,
nilai_perolehan,
tahun,
view_penyusutan_108_atl_2019_r2_e26.kode_barang_108,
kode_umur,
rank,
tahun_akhir,
CASE WHEN rank > 1 AND lag(nilai_perolehan) over urutan > 0
THEN round (100 * (harga / lag(nilai_perolehan) over urutan),2)
WHEN rank > 1 AND lag(nilai_perolehan) over urutan <= 0
THEN round(100,2)
WHEN rank = 1
THEN 0
ELSE
0
END as persen_awal,
CASE WHEN
CASE WHEN rank > 1 AND lag(nilai_perolehan) over urutan > 0
THEN round (100 * (harga / lag(nilai_perolehan) over urutan),2)
WHEN rank > 1 AND lag(nilai_perolehan) over urutan <= 0
THEN round(100,2)
WHEN rank = 1
THEN 0
ELSE
0
END
> 75
THEN 100
WHEN
CASE WHEN rank > 1 AND lag(nilai_perolehan) over urutan > 0
THEN round (100 * (harga / lag(nilai_perolehan) over urutan),2)
WHEN rank > 1 AND lag(nilai_perolehan) over urutan <= 0
THEN round(100,2)
WHEN rank = 1
THEN 0
ELSE
0
END
> 50
THEN 75
WHEN
CASE WHEN rank > 1 AND lag(nilai_perolehan) over urutan > 0
THEN round (100 * (harga / lag(nilai_perolehan) over urutan),2)
WHEN rank > 1 AND lag(nilai_perolehan) over urutan <= 0
THEN round(100,2)
WHEN rank = 1
THEN 0
ELSE
0
END
> 25
THEN 50
WHEN
CASE WHEN rank > 1 AND lag(nilai_perolehan) over urutan > 0
THEN round (100 * (harga / lag(nilai_perolehan) over urutan),2)
WHEN rank > 1 AND lag(nilai_perolehan) over urutan <= 0
THEN round(100,2)
WHEN rank = 1
THEN 0
ELSE
0
END
> 0
THEN 25
ELSE
0
END as persentasi,
masa_manfaat,
penambahan_umur,
umur_awal,
sisa_umur,
nilai_buku_awal,
penyusutan,
nilai_buku_akhir
from
view_penyusutan_108_atl_2019_r2_e26
Window
urutan as (partition by register order by rank)
order by register, rank;
DROP view if exists view_penyusutan_108_atl_2019_r2_e28 CASCADE;
create view view_penyusutan_108_atl_2019_r2_e28 as
select register,
nama_skpd,
id_skpd,
nama_lokasi_bidang,
id_lokasi_bidang,
nama_kabupaten,
id_kabupaten,
nama_provinsi,
id_provinsi,
id_mutasi_berkurang,
mutasi_berkurang,
keadaan_barang,
nama_barang,
harga,
nilai_perolehan,
tahun,
view_penyusutan_108_atl_2019_r2_e27.kode_barang_108,
kode_umur,
rank,
tahun_akhir,
persen_awal,
persentasi,
masa_manfaat,
CASE WHEN rank > 1
THEN view_penambahan_umur_108.umur
WHEN rank = 1
THEN 0
ELSE
0
END as penambahan_umur,
umur_awal,
sisa_umur,
nilai_buku_awal,
penyusutan,
nilai_buku_akhir
from
view_penyusutan_108_atl_2019_r2_e27, view_penambahan_umur_108
where
view_penyusutan_108_atl_2019_r2_e27.kode_umur = view_penambahan_umur_108.kode_kelompok_barang AND
view_penyusutan_108_atl_2019_r2_e27.persentasi = view_penambahan_umur_108.persen
order by register, rank;
DROP view if exists view_penyusutan_108_atl_2019_r2_e29 CASCADE;
create view view_penyusutan_108_atl_2019_r2_e29 as
select register,
nama_skpd,
id_skpd,
nama_lokasi_bidang,
id_lokasi_bidang,
nama_kabupaten,
id_kabupaten,
nama_provinsi,
id_provinsi,
id_mutasi_berkurang,
mutasi_berkurang,
keadaan_barang,
nama_barang,
harga,
nilai_perolehan,
tahun,
kode_barang_108,
kode_umur,
rank,
tahun_akhir,
persen_awal,
persentasi,
masa_manfaat,
penambahan_umur,
CASE WHEN rank > 1 AND lag(sisa_umur,1,0) over urutan + penambahan_umur >= masa_manfaat
THEN masa_manfaat
WHEN rank = 1
THEN masa_manfaat
ELSE
lag(sisa_umur,1,0) over urutan + penambahan_umur
END as umur_awal,
CASE WHEN rank > 1 AND lag(sisa_umur,1,0) over urutan + penambahan_umur - (tahun_akhir - tahun) > 0
AND lag(sisa_umur,1,0) over urutan + penambahan_umur < masa_manfaat
THEN lag(sisa_umur,1,0) over urutan + penambahan_umur - (tahun_akhir - tahun)
WHEN rank > 1 AND lag(sisa_umur,1,0) over urutan + penambahan_umur - (tahun_akhir - tahun) > 0
AND lag(sisa_umur,1,0) over urutan + penambahan_umur >= masa_manfaat
AND masa_manfaat - (tahun_akhir - tahun) > 0
THEN masa_manfaat - (tahun_akhir - tahun)
WHEN rank = 1 AND masa_manfaat - (tahun_akhir - tahun) > 0
THEN masa_manfaat - (tahun_akhir - tahun)
ELSE
0
END as sisa_umur,
COALESCE(lag(nilai_buku_akhir) over urutan, 0) + harga as nilai_buku_awal,
CASE WHEN (tahun_akhir - tahun) <
CASE WHEN rank > 1 AND lag(sisa_umur,1,0) over urutan + penambahan_umur >= masa_manfaat
THEN masa_manfaat
WHEN rank = 1
THEN masa_manfaat
ELSE
lag(sisa_umur,1,0) over urutan + penambahan_umur
END
THEN round((tahun_akhir - tahun) * (COALESCE(lag(nilai_buku_akhir) over urutan, 0) + harga) /
(CASE WHEN rank > 1 AND lag(sisa_umur,1,0) over urutan + penambahan_umur >= masa_manfaat
THEN masa_manfaat
WHEN rank = 1
THEN masa_manfaat
ELSE
lag(sisa_umur,1,0) over urutan + penambahan_umur
END),
0)
ELSE
COALESCE(lag(nilai_buku_akhir) over urutan, 0) + harga
END as penyusutan,
CASE WHEN (tahun_akhir - tahun) <
CASE WHEN rank > 1 AND lag(sisa_umur,1,0) over urutan + penambahan_umur >= masa_manfaat
THEN masa_manfaat
WHEN rank = 1
THEN masa_manfaat
ELSE
lag(sisa_umur,1,0) over urutan + penambahan_umur
END
THEN (COALESCE(lag(nilai_buku_akhir) over urutan, 0) + harga) -
(round((tahun_akhir - tahun) * (COALESCE(lag(nilai_buku_akhir) over urutan, 0) + harga) /
(CASE WHEN rank > 1 AND lag(sisa_umur,1,0) over urutan + penambahan_umur >= masa_manfaat
THEN masa_manfaat
WHEN rank = 1
THEN masa_manfaat
ELSE
lag(sisa_umur,1,0) over urutan + penambahan_umur
END),
0))
ELSE
(COALESCE(lag(nilai_buku_akhir) over urutan, 0) + harga) - (COALESCE(lag(nilai_buku_akhir) over urutan, 0) + harga)
END as nilai_buku_akhir
from
view_penyusutan_108_atl_2019_r2_e28
Window
urutan as (partition by register order by rank)
order by register, rank;
-- kunci angka baris ke 10
DROP view if exists view_penyusutan_108_atl_2019_r2_a3 CASCADE;
create view view_penyusutan_108_atl_2019_r2_a3 as
select register,
nama_skpd,
id_skpd,
nama_lokasi_bidang,
id_lokasi_bidang,
nama_kabupaten,
id_kabupaten,
nama_provinsi,
id_provinsi,
id_mutasi_berkurang,
mutasi_berkurang,
keadaan_barang,
nama_barang,
harga,
nilai_perolehan,
sum(harga) over (partition by register) as harga_total,
tahun,
kode_barang_108,
kode_umur,
rank,
tahun_akhir - 1 as tahun_akhir,
persen_awal,
persentasi,
masa_manfaat,
penambahan_umur,
umur_awal,
sisa_umur,
nilai_buku_awal,
penyusutan,
nilai_buku_akhir
from
view_penyusutan_108_atl_2019_r2_e29
order by register, rank;
GRANT ALL PRIVILEGES ON view_penyusutan_108_atl_2019_r2_a3 TO lap_kabupaten;
REVOKE INSERT, UPDATE, DELETE ON view_penyusutan_108_atl_2019_r2_a3 FROM lap_kabupaten;
DROP view if exists view_penyusutan_108_atl_2019_r2_a4 CASCADE;
create view view_penyusutan_108_atl_2019_r2_a4 as
select register,
nama_skpd,
id_skpd,
nama_lokasi_bidang,
id_lokasi_bidang,
nama_kabupaten,
id_kabupaten,
nama_provinsi,
id_provinsi,
id_mutasi_berkurang,
mutasi_berkurang,
keadaan_barang,
nama_barang,
kode_barang_108,
min(tahun) as tahun_awal,
sum(harga) as nilai_perolehan,
sum(penyusutan) as penyusutan,
sum(harga) - sum(penyusutan) as nilai_buku
from
view_penyusutan_108_atl_2019_r2_a3
GROUP BY
register,
nama_skpd,
id_skpd,
nama_lokasi_bidang,
id_lokasi_bidang,
nama_kabupaten,
id_kabupaten,
nama_provinsi,
id_provinsi,
id_mutasi_berkurang,
mutasi_berkurang,
keadaan_barang,
nama_barang,
kode_barang_108
order by register;
GRANT ALL PRIVILEGES ON view_penyusutan_108_atl_2019_r2_a4 TO lap_kabupaten;
REVOKE INSERT, UPDATE, DELETE ON view_penyusutan_108_atl_2019_r2_a4 FROM lap_kabupaten;
|
-- phpMyAdmin SQL Dump
-- version 4.9.2
-- https://www.phpmyadmin.net/
--
-- Хост: 127.0.0.1:3306
-- Время создания: Фев 11 2021 г., 03:07
-- Версия сервера: 10.4.10-MariaDB
-- Версия PHP: 7.2.25
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 */;
--
-- База данных: `vrg_soft`
--
--
-- Дамп данных таблицы `author`
--
INSERT INTO `author` (`id`, `first_name`, `last_name`, `middle_name`) VALUES
(12, 'Joanne ', 'Rowling', ''),
(13, 'Stephen ', 'King', '');
--
-- Дамп данных таблицы `book`
--
INSERT INTO `book` (`id`, `book_title`, `short_description`, `picture_path`, `authors_id`, `publication_date`) VALUES
(11, '<NAME> and the prisoner of Azkaban', '-', '/upload/6024995d10e63638731798.jpg', '13', '2021-02-09'),
(10, 'Harry Potter And The Chamber of secrets', '-', '/upload/60249915c01ca090724037.jpg', '12', '2021-02-03'),
(9, 'Harry Зotter and the philosopher\'s stone', '-', '/upload/602498e797185729087684.jpg', '12', '1998-02-11'),
(12, '<NAME> and the Goblet of Fire', '-', '/upload/6024996dca642680886297.jpg', '12', '2021-02-01'),
(13, 'Dragon Eyes', '-', '/upload/602499b715162576344047.jpg', '13', '1995-07-19');
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 */;
|
begin;
alter table results
drop column state;
alter table results
drop column election_type;
alter table results
drop column election_date;
alter table results
drop column vip_id;
commit;
|
create table foo(i int, p int);
create view foo_view(i, p, lvl) as select i, p, level from foo start with i=1 connect by prior i=p;
select i, p from foo_view where lvl=1;
select i, p, lvl from foo_view;
drop view foo_view;
drop table foo;
|
--marginal values (2 params)
--1. marginal values: string type of date format
select week('0001-01-01', 0);
select week('9999-12-31', 1);
select week('12/31/9999', 2);
select week('1/1/1', 3);
--2. marginal values: string type of timestamp format
--select week('00:00:00 01/01', 4);
select if(week('00:00:00 01/01', 4)=week(concat('00:00:00 01/01/',year(sysdate)),4),'ok','nok');
select week('03:14:07 1/19/2038', 5);
select week('0:0:0 PM 1970-01-01', 6);
select week('1/19/2038 03:14:07 pm', 7);
--3. marginal values: string type of datetime format
--select week('0:0:0.00 1/1', 0);
select if(week('0:0:0.00 1/1', 0)=week(concat('0:0:0.00 1/1/',year(sysdate)),0),'ok','nok');
select week('23:59:59.999 12/31/9999', 1);
select week('00:00:00.0000 AM 0001-01-01', 2);
select week('12/31/9999 23:59:59.999', 3);
|
<reponame>opengauss-mirror/Yat<gh_stars>0
-- @testpoint:opengauss关键字month(非保留),作为视图名
--关键字explain作为视图名,不带引号,创建成功
CREATE or replace VIEW month AS
SELECT * FROM pg_tablespace WHERE spcname = 'pg_default';
drop view month;
--关键字explain作为视图名,加双引号,创建成功
CREATE or replace VIEW "month" AS
SELECT * FROM pg_tablespace WHERE spcname = 'pg_default';
drop VIEW "month";
--关键字explain作为视图名,加单引号,合理报错
CREATE or replace VIEW 'month' AS
SELECT * FROM pg_tablespace WHERE spcname = 'pg_default';
--关键字explain作为视图名,加反引号,合理报错
CREATE or replace VIEW `month` AS
SELECT * FROM pg_tablespace WHERE spcname = 'pg_default';
|
INSERT OR IGNORE INTO elements (identifier,$(FIELDS))
VALUES ('$(IDENTIFIER)', $(FIELDS_VALUES)); |
<reponame>ostapViniavskyi/MeetupsBigData
CREATE KEYSPACE meetups WITH REPLICATION = {
'class' : 'SimpleStrategy', 'replication_factor' : 1
};
USE meetups; |
-- SQLite
SELECT
DISTINCT PO.*
FROM points AS PO
JOIN point_items AS PI
ON (PO.id = PI.point_id)
WHERE
PI.item_id IN (1, 2);
|
<filename>src/fhirbase_terminology.sql
-- #import ./fhirbase_crud.sql
jsfn expand(_vs_id text, _filter_ text) RETURNS json
var p = function(x){ plv8.elog(WARNING, JSON.stringify(x)); }
var r = plv8.execute("SELECT content::json FROM valueset WHERE logical_id = $1", _vs_id)[0];
if(!r){ return null; }
var fltr = _filter_.toLowerCase();
function smatch(s){
return s && s.toLowerCase().indexOf(fltr) > -1;
}
function match(c){
return smatch(c.code) || smatch(c.display);
}
var vs = r.content;
var codes = [];
if(vs.define && vs.define.concept){
vs.define && vs.define.concept && vs.define.concept.forEach(function(c){
if(match(c)){
c.system = vs.define.system;
codes.push(c);
}
});
}
if(vs.compose && vs.compose.include){
vs.compose.include.forEach(function(x){
x.concept && x.concept.forEach(function(c){
if(match(c)){
c.system = x.system;
codes.push(c);
}
});
});
}
vs.expansion = {
identifier: '???',
timestamp: '???',
contains: codes
}
return vs;
|
<filename>db/tables/securities_types.sql
CREATE TABLE securities_types (
id smallint NOT NULL,
id_name varchar(15) NOT NULL,
title varchar(50) NOT NULL,
CONSTRAINT pk_securities_types PRIMARY KEY (id)
);
|
DROP TABLE IF EXISTS `questions`;
CREATE TABLE questions (
id Integer PRIMARY KEY NOT NULL auto_increment,
creador VARCHAR(128),
pregunta VARCHAR(128),
respuestaCorrecta VARCHAR(128),
wrong1 VARCHAR(128),
wrong2 VARCHAR(128),
wrong3 VARCHAR(128),
active BIT,
created_at DATETIME,
updated_at DATETIME
)ENGINE=InnoDB;
INSERT INTO questions
(creador, pregunta, respuestaCorrecta, wrong1, wrong2, wrong3, active) VALUES
('sajoma', 'A cuantos grados hierve el agua?', '100°C', '80°C', '120°C', '150°C', 1),
('sajoma', 'un elefante recien nacido, pesa mas o menos de 500 kilos?', 'Menos de 500Kg', 'Mas de 500Kg', NULL, NULL, 1),
('sajoma', 'Que se mide con un nigrómetro?', 'La oscuridad del ambiente', 'La cantidad de pigmentos en la piel', 'La densidad de la tinta', NULL, 1),
('sajoma', 'Como se llaman las fotografias obtenidas con la luz de un rayo laser?', 'Holografias', 'Fotolitos', 'Laserografias', NULL, 1),
('sajoma', 'Los crateres de la luna, ¿son volcanicos?', 'No', 'Si', NULL, NULL, 1),
('sajoma', 'Cuantas vueltas alrededor del sol da la luna en un año?', 'Una', 'Dos y media', 'Dos', 'Media', 1),
('sajoma', 'Que se combate tomando piramidón?', 'La fiebre', 'La sarna', 'La hepatitis', NULL, 1),
('sajoma', 'Los aminoácidos contienen proteínas o las proteínas contienen aminoácidos?', 'Las proteínas contienen aminoácidos', 'Los aminoácidos contienen proteínas', NULL, NULL, 1),
('sajoma', 'Quien dijo: "Es mas fácil lograr una gran obra a partir de un tema pequeño"', '<NAME>', 'Monet', 'Durero', NULL, 1),
('sajoma', 'Cual fue el primer grupo de Rock Nacional en grabar un CD (Compact-Disk)', 'Soda Stereo', 'Los pericos', 'Pabellón Psiquiátrico', NULL, 1),
('sajoma', 'Como se llama ahora, la antigüa nota "ut"', 'Do', 'Mi', 'Fa', 'Si', 1),
('sajoma', 'En un dado, que número está en el lado opuesto al 1?', '6', '3', '2', '4', 1),
('sajoma', 'En Boxeo, que peso hay entre el pesado y el semi-pesado?', 'Crucero', 'Mediano', 'Tres cuartos-pesado', 'ninguno', 1),
('sajoma', 'Cuanto vale un envido no querido en un partido de truco?', 'Un punto', 'Nada', 'Dos Puntos', 'Tres Puntos', 1),
('sajoma', 'Cuantos jugadores integran un equipo de Basquet?', 'Cinco', 'Siete', 'Ocho', 'Diez', 1),
('sajoma', 'De que color es la vestimenta tradicional de un gimnasta?', 'Blanca', 'Negra', 'Celeste o Azul', 'Negra y blanca', 1),
('sajoma', 'Si en Cuba lo invitan a ver un partido de pelota, que deporte lo llevan a ver?', 'Baseball', 'Football', 'Basquet', 'Tenis de Mesa', 1),
('sajoma', 'Cuantos cambios de jugadores pueden hacerse durante un partido de Basquet?', 'Los que se desee', 'Hasta 5', 'Hasta 2', 'Hasta 3', 1),
('sajoma', 'Como se llama el Yo-Yo en Estados Unidos?', 'Yo-Yo', 'Me-Me', 'I-I', 'SwingBack', 1),
('sajoma', 'Que mide un barómetro', 'La presión del aire', 'La densidad de un fluido', 'Distancias Milimétricas', NULL, 1),
('sajoma', 'Históricamente, el paraguas deriva de la sombrilla o la sombrilla deriva del paraguas?', 'El paraguas deriva de la sombrilla', 'La sombrilla deriva del paraguas', NULL, NULL, 1),
('sajoma', 'El primer "bebé de probeta", fue nena o varón?', 'Nena', 'Varón', NULL, NULL, 1),
('sajoma', 'Cuantos comensales cabían en la mesa redonda del Rey Arturo?', 'Ciento Cincuenta', 'Doce', 'Nueve', 'Tres', 1),
('sajoma', 'Si un señor es "provecto", entonces es: ', 'Viejo', 'Avaro', 'Pecador', NULL, 1),
('sajoma', 'Que célebre personaje de ficción dijo que "donde la imaginación está ausente, no hay horror posible"?', '<NAME>', 'Drácula', 'Hamlet', NULL, 1);
|
<head>{
description: "Get employees by name",
params: {
"name" : "varchar",
"first_name" : "varchar",
"last_name" : "varchar"
},
availableTo: ["mysql"]
}</head>
<Q i="1" label="Employees">
select *
from employees.employees a
where (a.first_name like concat('%', @name, '%')
or a.last_name like concat('%', @name, '%') or @name is null)
and (a.first_name like concat('%', @first_name, '%') or @first_name is null)
and (a.last_name like concat('%', @last_name, '%') or @last_name is null)
limit 20;
</Q>
<Q i="2" label="Department">
select a.emp_no, a.first_name, a.last_name, c.dept_no, c.dept_name
from employees.employees a
inner join employees.dept_emp b
on b.emp_no = a.emp_no
inner join employees.departments c
on c.dept_no = b.dept_no
where (a.first_name like concat('%', @name, '%')
or a.last_name like concat('%', @name, '%') or @name is null)
and (a.first_name like concat('%', @first_name, '%') or @first_name is null)
and (a.last_name like concat('%', @last_name, '%') or @last_name is null)
limit 20;
</Q> |
<gh_stars>0
CREATE OR REPLACE VIEW v_appuser AS
SELECT
appuser.id AS appuser_id,
appuser.email AS email,
appuser.title AS title,
appuser.firstname AS firstname,
appuser.lastname AS lastname,
appuser.disabled AS disabled,
appuser.active AS active,
role.id AS role_id,
role.name AS role_name,
role.description AS role_description
FROM
appuser
LEFT JOIN role on appuser.role_id=role.id;
|
<gh_stars>0
INSERT INTO public.role_assignment
(id, actor_id_type, actor_id, role_type, role_name, classification, grant_type, role_category, read_only, begin_time, end_time, "attributes", created)
VALUES('2ef8ebf3-266e-45d3-a3b8-4ce1e5d93b9f', 'IDAM', '123e4567-e89b-42d3-a456-556642445612', 'ORGANISATION', 'senior-tribunal-caseworker', 'PUBLIC', 'SPECIFIC', 'JUDICIAL', false, '2021-08-01 00:00:00.000', '2022-01-01 00:00:00.000', '{"caseId": "1234567890123456", "region": "south-east", "contractType": "SALARIED", "jurisdiction": "IA"}', '2020-07-24 15:05:01.988');
INSERT INTO public.role_assignment
(id, actor_id_type, actor_id, role_type, role_name, classification, grant_type, role_category, read_only, begin_time, end_time, "attributes", created)
VALUES('cf89f230-0023-4bb6-b548-30da6a944172', 'IDAM', '123e4567-e89b-42d3-a456-556642445678', 'ORGANISATION', 'senior-tribunal-caseworker', 'PUBLIC', 'SPECIFIC', 'JUDICIAL', false, '2021-08-01 00:00:00.000', '2022-01-01 00:00:00.000', '{"caseId": "1234567890123456", "region": "south-east", "contractType": "SALARIED", "jurisdiction": "IA"}', '2020-07-24 15:05:01.988');
|
<filename>web/app/plugins/wp-editor/sql/database.sql
create table if not exists `[prefix]settings` (
`key` varchar(50) not null,
`value` text not null,
primary key(`key`)
); |
<filename>database/postgresql/schemas/users/triggers.sql
--
-- User schema triggers
-- -------------------------------------------------------
--
-- Process post insert user operations.
--
CREATE OR REPLACE FUNCTION process_post_insert_user_operations()
RETURNS TRIGGER AS $$
BEGIN
INSERT INTO users.user_log (user_id) VALUES (NEW.id);
INSERT INTO users.user_activity (user_id) VALUES (NEW.id);
INSERT INTO authentication.user (user_id, key)
VALUES (NEW.id, encode(gen_random_bytes(16), 'base64'));
RETURN NEW;
END;
$$ LANGUAGE PLPGSQL;
--
-- Process post delete user operations.
--
CREATE OR REPLACE FUNCTION process_post_delete_user_operations()
RETURNS TRIGGER AS $$
BEGIN
DELETE FROM users.user_log WHERE user_id = OLD.id;
DELETE FROM users.user_activity WHERE user_id = OLD.id;
DELETE FROM authentication.user WHERE user_id = OLD.id;
RETURN OLD;
END;
$$ LANGUAGE PLPGSQL;
|
<filename>Spring/api/src/main/resources/migrations/data/Product/data-testdata-dml.sql
--liquibase formatted sql
--changeset gabriel:Product-loaddata-dml context:test
-- Shoes
INSERT INTO Product (name, price) VALUES ('COMBAT BOOTS SOLA TRATORADA LEATHER BLACK', 390.00);
INSERT INTO Product (name, price) VALUES ('BOTA CUT OUT BLACK', 590.00);
-- Bags
INSERT INTO Product (name, price) VALUES ('MINI LORENA TOTE BLACK', 850.00);
|
drop table if exists IRL_ACCT_AMT;
/*==============================================================*/
/* Table: IRL_ACCT_AMT */
/*==============================================================*/
create table IRL_ACCT_AMT
(
IRL_INTERNAL_KEY varchar(50) not null comment '账户键值',
AMT_TYPE varchar(10) not null comment '金额类型',
AMT Decimal(17,2) not null comment '金额',
COMPANY varchar(20) comment '法人代码',
TRAN_TIMESTAMP varchar(17) comment '交易时间戳',
TRAN_TIME Decimal(11,0) comment '交易时间',
ROUTER_KEY varchar(100) comment '分库路由关键字',
primary key (IRL_INTERNAL_KEY,AMT_TYPE)
);
alter table IRL_ACCT_AMT comment '分户金额信息表 undefined'; |
create database studentinfo;
use studentinfo;
create table admins (
firstname VARCHAR(64),
lastname VARCHAR(64),
regd_no VARCHAR(25),
email VARCHAR(64),
ph VARCHAR(64),
dob VARCHAR(64),
username VARCHAR(64),
pass VARCHAR(64),
address VARCHAR(64),
photo VARCHAR(64));
create table branches (branch_id VARCHAR(64),branch VARCHAR(64) primary key not null);
insert into branches values("1","CSE");
insert into branches values("1","ECE");
insert into branches values("1","EEE");
insert into branches values("1","MECH");
insert into branches values("1","CIVIL");
insert into branches values("1","MME");
insert into branches values("1","CHEM");
create table students (
firstname VARCHAR(64),
lastname VARCHAR(64),
regd_no VARCHAR(25) primary key not null,
email VARCHAR(64),
ph VARCHAR(64),
dob VARCHAR(64),
stud int,
fac int,
username VARCHAR(64),
pass VARCHAR(64),
branch VARCHAR(64),
address VARCHAR(64),
photo VARCHAR(64));
insert into students values("tony","stark","981405","<EMAIL>","9998887744","21/06/2000","1","0","tony","12","CSE","Stark towers","xyz");
insert into students values("tony","stark","981404","<EMAIL>","9998887744","21/06/2000","0","1","tony1","12","CSE","Stark towers","xyz");
insert into admins values("admin","admin","981405","jhabdf","99","21/06/200","admi","admin123","stark","xxx");
create table course (id VARCHAR(64),name VARCHAR(64),branch VARCHAR(64),files blob);
insert into course values("123","Java","CSE","C:\\Users\\hp\\Downloads\\data_description.txt");
create table notify(id VARCHAR(64),info varchar(100));
insert into notify values("123" ,"Tommorrow the table will be updated");
insert into notify values("123" ,"All students login");
insert into notify values("123" ,"All student check details");
insert into notify values("123" ,"Registration form will close by 11");
create table attendance (regd_no VARCHAR(64),course VARCHAR(64),value VARCHAR(64),date VARCHAR(64));
insert into attendance values("981405","JAVA","100","21/06/2000");
insert into attendance values("981405","JAVA","100","21/03/2001");
insert into attendance values("981405","JAVA","100","1/04/2002");
insert into attendance values("981405","JAVA","100","11/05/2003");
|
<reponame>tyrex-team/gmark<filename>demo/uniprot/uniprot-translated/query-6.sql
WITH RECURSIVE c0(src, trg) AS ((SELECT s0.src, s1.trg FROM (SELECT trg as src, src as trg, label FROM edge) as s0, edge s1 WHERE s0.trg = s1.src AND s0.label = 1 AND s1.label = 1 )) , c1(src, trg) AS ((SELECT s0.src, s2.trg FROM (SELECT trg as src, src as trg, label FROM edge) as s0, edge s1, edge s2 WHERE s0.trg = s1.src AND s1.trg = s2.src AND s0.label = 1 AND s1.label = 0 AND s2.label = 1 )) , c2(src, trg) AS ((SELECT s0.src, s1.trg FROM (SELECT trg as src, src as trg, label FROM edge) as s0, edge s1 WHERE s0.trg = s1.src AND s0.label = 1 AND s1.label = 1 )) SELECT DISTINCT c1.trg , c2.trg , c0.src, c0.trg FROM c0, c1, c2 WHERE c0.src = c1.src AND c0.src = c2.src;
|
<filename>sql/divisoes.sql
CREATE TABLE cnae_divisoes(
id INT NOT NULL,
descricao VARCHAR(255) NOT NULL,
secao_id CHAR(1) NOT NULL,
PRIMARY KEY (id),
FOREIGN KEY (secao_id) REFERENCES cnae_secoes (id));
INSERT INTO cnae_divisoes VALUES
(01, 'AGRICULTURA, PECUÁRIA E SERVIÇOS RELACIONADOS', 'A'),
(02, 'PRODUÇÃO FLORESTAL', 'A'),
(03, 'PESCA E AQÜICULTURA', 'A'),
(05, 'EXTRAÇÃO DE CARVÃO MINERAL', 'B'),
(06, 'EXTRAÇÃO DE PETRÓLEO E GÁS NATURAL', 'B'),
(07, 'EXTRAÇÃO DE MINERAIS METÁLICOS', 'B'),
(08, 'EXTRAÇÃO DE MINERAIS NÃO-METÁLICOS', 'B'),
(09, 'ATIVIDADES DE APOIO À EXTRAÇÃO DE MINERAIS', 'B'),
(10, 'FABRICAÇÃO DE PRODUTOS ALIMENTÍCIOS', 'C'),
(11, 'FABRICAÇÃO DE BEBIDAS', 'C'),
(12, 'FABRICAÇÃO DE PRODUTOS DO FUMO', 'C'),
(13, 'FABRICAÇÃO DE PRODUTOS TÊXTEIS', 'C'),
(14, 'CONFECÇÃO DE ARTIGOS DO VESTUÁRIO E ACESSÓRIOS', 'C'),
(15, 'PREPARAÇÃO DE COUROS E FABRICAÇÃO DE ARTEFATOS DE COURO, ARTIGOS PARA VIAGEM E CALÇADOS', 'C'),
(16, 'FABRICAÇÃO DE PRODUTOS DE MADEIRA', 'C'),
(17, 'FABRICAÇÃO DE CELULOSE, PAPEL E PRODUTOS DE PAPEL', 'C'),
(18, 'IMPRESSÃO E REPRODUÇÃO DE GRAVAÇÕES', 'C'),
(19, 'FABRICAÇÃO DE COQUE, DE PRODUTOS DERIVADOS DO PETRÓLEO E DE BIOCOMBUSTÍVEIS', 'C'),
(29, 'FABRICAÇÃO DE VEÍCULOS AUTOMOTORES, REBOQUES E CARROCERIAS', 'C'),
(20, 'FABRICAÇÃO DE PRODUTOS QUÍMICOS', 'C'),
(21, 'FABRICAÇÃO DE PRODUTOS FARMOQUÍMICOS E FARMACÊUTICOS', 'C'),
(22, 'FABRICAÇÃO DE PRODUTOS DE BORRACHA E DE MATERIAL PLÁSTICO', 'C'),
(23, 'FABRICAÇÃO DE PRODUTOS DE MINERAIS NÃO-METÁLICOS', 'C'),
(24, 'METALURGIA', 'C'),
(25, 'FABRICAÇÃO DE PRODUTOS DE METAL, EXCETO MÁQUINAS E EQUIPAMENTOS', 'C'),
(26, 'FABRICAÇÃO DE EQUIPAMENTOS DE INFORMÁTICA, PRODUTOS ELETRÔNICOS E ÓPTICOS', 'C'),
(27, 'FABRICAÇÃO DE MÁQUINAS, APARELHOS E MATERIAIS ELÉTRICOS', 'C'),
(28, 'FABRICAÇÃO DE MÁQUINAS E EQUIPAMENTOS', 'C'),
(30, 'FABRICAÇÃO DE OUTROS EQUIPAMENTOS DE TRANSPORTE, EXCETO VEÍCULOS AUTOMOTORES', 'C'),
(31, 'FABRICAÇÃO DE MÓVEIS', 'C'),
(32, 'FABRICAÇÃO DE PRODUTOS DIVERSOS', 'C'),
(33, 'MANUTENÇÃO, REPARAÇÃO E INSTALAÇÃO DE MÁQUINAS E EQUIPAMENTOS', 'C'),
(35, 'ELETRICIDADE, GÁS E OUTRAS UTILIDADES', 'D'),
(36, 'CAPTAÇÃO, TRATAMENTO E DISTRIBUIÇÃO DE ÁGUA', 'E'),
(37, 'ESGOTO E ATIVIDADES RELACIONADAS', 'E'),
(38, 'COLETA, TRATAMENTO E DISPOSIÇÃO DE RESÍDUOS; RECUPERAÇÃO DE MATERIAIS', 'E'),
(39, 'DESCONTAMINAÇÃO E OUTROS SERVIÇOS DE GESTÃO DE RESÍDUOS', 'E'),
(41, 'CONSTRUÇÃO DE EDIFÍCIOS', 'F'),
(42, 'OBRAS DE INFRA-ESTRUTURA', 'F'),
(52, 'ARMAZENAMENTO E ATIVIDADES AUXILIARES DOS TRANSPORTES', 'H'),
(53, 'CORREIO E OUTRAS ATIVIDADES DE ENTREGA', 'H'),
(55, 'ALOJAMENTO', 'I'),
(56, 'ALIMENTAÇÃO', 'I'),
(43, 'SERVIÇOS ESPECIALIZADOS PARA CONSTRUÇÃO', 'F'),
(45, 'COMÉRCIO E REPARAÇÃO DE VEÍCULOS AUTOMOTORES E MOTOCICLETAS', 'G'),
(60, 'ATIVIDADES DE RÁDIO E DE TELEVISÃO', 'J'),
(46, 'COMÉRCIO POR ATACADO, EXCETO VEÍCULOS AUTOMOTORES E MOTOCICLETAS', 'G'),
(47, 'COMÉRCIO VAREJISTA', 'G'),
(49, 'TRANSPORTE TERRESTRE', 'H'),
(50, 'TRANSPORTE AQUAVIÁRIO', 'H'),
(51, 'TRANSPORTE AÉREO', 'H'),
(71, 'SERVIÇOS DE ARQUITETURA E ENGENHARIA; TESTES E ANÁLISES TÉCNICAS', 'M'),
(58, 'EDIÇÃO E EDIÇÃO INTEGRADA À IMPRESSÃO', 'J'),
(59, 'ATIVIDADES CINEMATOGRÁFICAS, PRODUÇÃO DE VÍDEOS E DE PROGRAMAS DE TELEVISÃO; GRAVAÇÃO DE SOM E EDIÇÃO DE MÚSICA', 'J'),
(61, 'TELECOMUNICAÇÕES', 'J'),
(62, 'ATIVIDADES DOS SERVIÇOS DE TECNOLOGIA DA INFORMAÇÃO', 'J'),
(63, 'ATIVIDADES DE PRESTAÇÃO DE SERVIÇOS DE INFORMAÇÃO', 'J'),
(64, 'ATIVIDADES DE SERVIÇOS FINANCEIROS', 'K'),
(65, 'SEGUROS, RESSEGUROS, PREVIDÊNCIA COMPLEMENTAR E PLANOS DE SAÚDE', 'K'),
(66, 'ATIVIDADES AUXILIARES DOS SERVIÇOS FINANCEIROS, SEGUROS, PREVIDÊNCIA COMPLEMENTAR E PLANOS DE SAÚDE', 'K'),
(68, 'ATIVIDADES IMOBILIÁRIAS', 'L'),
(69, 'ATIVIDADES JURÍDICAS, DE CONTABILIDADE E DE AUDITORIA', 'M'),
(70, 'ATIVIDADES DE SEDES DE EMPRESAS E DE CONSULTORIA EM GESTÃO EMPRESARIAL', 'M'),
(72, 'PESQUISA E DESENVOLVIMENTO CIENTÍFICO', 'M'),
(73, 'PUBLICIDADE E PESQUISA DE MERCADO', 'M'),
(74, 'OUTRAS ATIVIDADES PROFISSIONAIS, CIENTÍFICAS E TÉCNICAS', 'M'),
(75, 'ATIVIDADES VETERINÁRIAS', 'M'),
(91, 'ATIVIDADES LIGADAS AO PATRIMÔNIO CULTURAL E AMBIENTAL', 'R'),
(92, 'ATIVIDADES DE EXPLORAÇÃO DE JOGOS DE AZAR E APOSTAS', 'R'),
(77, 'ALUGUÉIS NÃO-IMOBILIÁRIOS E GESTÃO DE ATIVOS INTANGÍVEIS NÃO-FINANCEIROS', 'N'),
(78, 'SELEÇÃO, AGENCIAMENTO E LOCAÇÃO DE MÃO-DE-OBRA', 'N'),
(79, 'AGÊNCIAS DE VIAGENS, OPERADORES TURÍSTICOS E SERVIÇOS DE RESERVAS', 'N'),
(80, 'ATIVIDADES DE VIGILÂNCIA, SEGURANÇA E INVESTIGAÇÃO', 'N'),
(81, 'SERVIÇOS PARA EDIFÍCIOS E ATIVIDADES PAISAGÍSTICAS', 'N'),
(82, 'SERVIÇOS DE ESCRITÓRIO, DE APOIO ADMINISTRATIVO E OUTROS SERVIÇOS PRESTADOS PRINCIPALMENTE ÀS EMPRESAS', 'N'),
(84, 'ADMINISTRAÇÃO PÚBLICA, DEFESA E SEGURIDADE SOCIAL', 'O'),
(85, 'EDUCAÇÃO', 'P'),
(86, 'ATIVIDADES DE ATENÇÃO À SAÚDE HUMANA', 'Q'),
(87, 'ATIVIDADES DE ATENÇÃO À SAÚDE HUMANA INTEGRADAS COM ASSISTÊNCIA SOCIAL, PRESTADAS EM RESIDÊNCIAS COLETIVAS E PARTICULARES', 'Q'),
(88, 'SERVIÇOS DE ASSISTÊNCIA SOCIAL SEM ALOJAMENTO', 'Q'),
(90, 'ATIVIDADES ARTÍSTICAS, CRIATIVAS E DE ESPETÁCULOS', 'R'),
(93, 'ATIVIDADES ESPORTIVAS E DE RECREAÇÃO E LAZER', 'R'),
(94, 'ATIVIDADES DE ORGANIZAÇÕES ASSOCIATIVAS', 'S'),
(95, 'REPARAÇÃO E MANUTENÇÃO DE EQUIPAMENTOS DE INFORMÁTICA E COMUNICAÇÃO E DE OBJETOS PESSOAIS E DOMÉSTICOS', 'S'),
(96, 'OUTRAS ATIVIDADES DE SERVIÇOS PESSOAIS', 'S'),
(97, 'SERVIÇOS DOMÉSTICOS', 'T'),
(99, 'ORGANISMOS INTERNACIONAIS E OUTRAS INSTITUIÇÕES EXTRATERRITORIAIS', 'U'); |
-- file:numeric.sql ln:417 expect:true
INSERT INTO num_exp_sub VALUES (9,8,'-25001685.045047420')
|
<filename>mysql/mysql-reset-pwd.sql
-- http://dev.mysql.com/doc/refman/5.5/en/resetting-permissions.html#resetting-permissions-unix
-- EDIT
SET @my_password = '<PASSWORD>';
UPDATE mysql.user SET Password=PASSWORD(@<PASSWORD>) WHERE User='root';
FLUSH PRIVILEGES;
-- service mysql stop && mysqld_safe --init-file=./mysql-reset-pwd.sql &
|
--Create the wth database
CREATE DATABASE wth;
-- Create user contosoapp that would own the application schema
CREATE ROLE CONTOSOAPP WITH LOGIN NOSUPERUSER INHERIT CREATEDB CREATEROLE NOREPLICATION PASSWORD '<PASSWORD>';
|
alter table usuario add column `cpf` varchar(20) after rendaMensal; |
\. ./../../current_mysql/5.1.0/dml/KC_DML_01_KRACOEUS-5892_00SD.sql
\. ./../../current_mysql/5.1.0/dml/KC_DML_01_KRACOEUS-6052_0TSD.sql
\. ./../../current_mysql/5.1.0/dml/KC_DML_01_KRACOEUS-6121_0TSD.sql
\. ./../../current_mysql/5.1.0/dml/KC_DML_01_KRACOEUS-6224_00SD.sql
\. ./../../current_mysql/5.1.0/dml/KC_DML_01_KRACOEUS-6314_0TSD.sql
commit;
exit
|
<filename>src/EA.Weee.Database/scripts/Update/Release 1/Sprint10/20150730-1942-AddIsCurrentForComplianceYear.sql
GO
PRINT N'Creating [Producer].[Producer].[IsCurrentForComplianceYear]...';
GO
ALTER TABLE [Producer].[Producer] ADD
[IsCurrentForComplianceYear] BIT NOT NULL CONSTRAINT [DF_Producer_IsCurrentForComplianceYear] DEFAULT 0
GO
PRINT N'Update complete.';
GO |
# ************************************************************
# Sequel Pro SQL dump
# Version 4541
#
# http://www.sequelpro.com/
# https://github.com/sequelpro/sequelpro
#
# Host: 127.0.0.1 (MySQL 5.7.21)
# Database: linepass
# Generation Time: 2018-12-03 17:15:27 +0000
# ************************************************************
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40014 SET @OLD_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 */;
# Dump of table accounts
# ------------------------------------------------------------
DROP TABLE IF EXISTS `accounts`;
CREATE TABLE `accounts` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`usersid` int(11) unsigned DEFAULT NULL,
`field_numbers` int(11) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `usersid` (`usersid`),
CONSTRAINT `accounts_ibfk_1` FOREIGN KEY (`usersid`) REFERENCES `users` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
# Dump of table field_list
# ------------------------------------------------------------
DROP TABLE IF EXISTS `field_list`;
CREATE TABLE `field_list` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`accountsid` int(11) unsigned DEFAULT NULL,
`field` varchar(256) DEFAULT NULL,
`value` varchar(256) DEFAULT NULL,
`secert` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `field_value` (`field`,`value`) KEY_BLOCK_SIZE=32,
KEY `value` (`value`) KEY_BLOCK_SIZE=16,
KEY `accountsid` (`accountsid`),
CONSTRAINT `field_list_ibfk_1` FOREIGN KEY (`accountsid`) REFERENCES `accounts` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='用户帐号';
# Dump of table users
# ------------------------------------------------------------
DROP TABLE IF EXISTS `users`;
CREATE TABLE `users` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`username` varchar(256) NOT NULL DEFAULT '',
`password` varchar(256) NOT NULL DEFAULT '',
`nickname` varchar(11) DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `Index_usrename` (`username`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='登陆用户';
LOCK TABLES `users` WRITE;
/*!40000 ALTER TABLE `users` DISABLE KEYS */;
INSERT INTO `users` (`id`, `username`, `password`, `nickname`)
VALUES
(1,'admin','<PASSWORD>','admin_test');
/*!40000 ALTER TABLE `users` ENABLE KEYS */;
UNLOCK TABLES;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_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 */;
|
<gh_stars>0
create table users
(
username varchar_ignorecase(50) not null primary key,
password varchar_ignorecase(500) not null,
enabled boolean not null
);
create table authorities
(
username varchar_ignorecase(50) not null,
authority varchar_ignorecase(50) not null,
constraint fk_authorities_users foreign key (username) references users (username)
);
create unique index ix_auth_username on authorities (username, authority);
create table groups
(
id bigint generated by default as identity(start with 0) primary key,
group_name varchar_ignorecase(50) not null
);
create table group_authorities
(
group_id bigint not null,
authority varchar(50) not null,
constraint fk_group_authorities_group foreign key (group_id) references groups (id)
);
create table group_members
(
id bigint generated by default as identity(start with 0) primary key,
username varchar(50) not null,
group_id bigint not null,
constraint fk_group_members_group foreign key (group_id) references groups (id)
);
|
-- Tags: no-parallel
DROP FUNCTION IF EXISTS 02126_function;
CREATE FUNCTION 02126_function AS x -> x;
SELECT 02126_function(1);
DROP FUNCTION 02126_function;
CREATE FUNCTION 02126_function AS () -> x;
SELECT 02126_function(); --{ serverError 47 }
DROP FUNCTION 02126_function;
CREATE FUNCTION 02126_function AS () -> 5;
SELECT 02126_function();
DROP FUNCTION 02126_function;
|
<filename>redis/redis-console/src/test/resources/available-zone-service-impl-test.sql<gh_stars>1-10
insert into AZ_TBL (id, dc_id, az_name, active, description) values (1, 3, 'A', 1, 'zone for dc:fra zone A');
insert into AZ_TBL (id, dc_id, az_name, active, description) values (2, 3, 'B', 1, 'zone for dc:fra zone B');
insert into AZ_TBL (id, dc_id, az_name, active, description) values (3, 3, 'C', 0, 'zone for dc:fra zone C');
insert into KEEPERCONTAINER_TBL(keepercontainer_id,keepercontainer_dc,keepercontainer_ip,keepercontainer_port,keepercontainer_active,az_id, keepercontainer_org_id) values (30,3,'127.0.1.2',7033,1,1,0);
insert into KEEPERCONTAINER_TBL(keepercontainer_id,keepercontainer_dc,keepercontainer_ip,keepercontainer_port,keepercontainer_active,az_id, keepercontainer_org_id) values (31,3,'127.1.1.2',7034,1,1,0);
insert into KEEPERCONTAINER_TBL(keepercontainer_id,keepercontainer_dc,keepercontainer_ip,keepercontainer_port,keepercontainer_active,az_id, keepercontainer_org_id) values (32,3,'127.0.1.2',7035,1,2,0);
insert into KEEPERCONTAINER_TBL(keepercontainer_id,keepercontainer_dc,keepercontainer_ip,keepercontainer_port,keepercontainer_active,az_id, keepercontainer_org_id) values (33,3,'127.0.1.2',7036,1,2,0);
insert into KEEPERCONTAINER_TBL(keepercontainer_id,keepercontainer_dc,keepercontainer_ip,keepercontainer_port,keepercontainer_active,az_id, keepercontainer_org_id) values (34,3,'127.0.1.2',7037,1,3,0);
insert into KEEPERCONTAINER_TBL(keepercontainer_id,keepercontainer_dc,keepercontainer_ip,keepercontainer_port,keepercontainer_active,az_id, keepercontainer_org_id) values (35,3,'127.0.1.2',7038,1,3,0);
insert into CLUSTER_TBL (id,cluster_name,activedc_id,cluster_description,cluster_last_modified_time,status,is_xpipe_interested, cluster_org_id) values (6,'cluster6',3,'Cluster:cluster6 , ActiveDC : A','0000000000000000','Normal',1, 0);
insert into SHARD_TBL (id,shard_name,setinel_monitor_name,cluster_id) values(9,'cluster6shard1','cluster6shard1', 6);
insert into REDIS_TBL (id,run_id,dc_cluster_shard_id,redis_ip,redis_port,redis_role,master,redis_master,keepercontainer_id, deleted) values(22,'bee',9,'127.1.1.2',7101,'keeper',0,-1,31, 0);
|
<gh_stars>1-10
ALTER TABLE tandem_mass_spec_sample
DROP KEY uniqueness;
ALTER TABLE tandem_mass_spec_sample
CHANGE COLUMN `file` sample_file VARCHAR(255) NOT NULL;
ALTER TABLE tandem_mass_spec_sample
ADD UNIQUE KEY `uniqueness` (`sample_file`, `last_modified`);
CREATE OR REPLACE VIEW analysis_to_proteins AS
select
t.title,
re.transaction_id,
a.analysis_id,
bs.biological_sample_id,
bs.category,
bs.sample_name,
ts.tandem_mass_spec_sample_id,
ts.sample_file, -- file -> sample_file
sr.protein_group_list_id
from analysis as a,
biological_sample_list_members bslm,
biological_sample as bs,
search_result_list_members as srlm,
search_result as sr,
tandem_mass_spec_sample as ts,
report as re,
latest_functional_transaction as t
where
a.biological_sample_list_id = bslm.biological_sample_list_id
and bslm.biological_sample_id = bs.biological_sample_id
and bs.search_result_list_id = srlm.search_result_list_id
and srlm.search_result_id = sr.search_result_id
and sr.tandem_mass_spec_sample_id = ts.tandem_mass_spec_sample_id
and re.analysis_id = a.analysis_id
and t.transaction_id = re.transaction_id;
CREATE OR REPLACE VIEW proteins_per_transaction AS
select
title,
sample_name,
category,
sample_file,
unique_peptides,
unique_spectra,
total_spectra,
percentage_total_spectra,
percentage_sequence_coverage,
protein_group_id,
protein_sequence_id,
accession_number
from
analysis_to_proteins as a,
protein_sequences_per_group as pg
where a.protein_group_list_id=pg.protein_group_list_id;
-- @UNDO
ALTER TABLE tandem_mass_spec_sample
DROP KEY uniqueness;
ALTER TABLE tandem_mass_spec_sample
CHANGE COLUMN sample_file `file` VARCHAR(255) NOT NULL;
ALTER TABLE tandem_mass_spec_sample
ADD UNIQUE KEY `uniqueness` (`file`, `last_modified`);
CREATE OR REPLACE VIEW analysis_to_proteins AS
select
t.title,
re.transaction_id,
a.analysis_id,
bs.biological_sample_id,
bs.category,
bs.sample_name,
ts.tandem_mass_spec_sample_id,
ts.file, -- sample_file -> file
sr.protein_group_list_id
from analysis as a,
biological_sample_list_members bslm,
biological_sample as bs,
search_result_list_members as srlm,
search_result as sr,
tandem_mass_spec_sample as ts,
report as re,
latest_functional_transaction as t
where
a.biological_sample_list_id = bslm.biological_sample_list_id
and bslm.biological_sample_id = bs.biological_sample_id
and bs.search_result_list_id = srlm.search_result_list_id
and srlm.search_result_id = sr.search_result_id
and sr.tandem_mass_spec_sample_id = ts.tandem_mass_spec_sample_id
and re.analysis_id = a.analysis_id
and t.transaction_id = re.transaction_id;
CREATE OR REPLACE VIEW proteins_per_transaction AS
select
title,
sample_name,
category,
file,
unique_peptides,
unique_spectra,
total_spectra,
percentage_total_spectra,
percentage_sequence_coverage,
protein_group_id,
protein_sequence_id,
accession_number
from
analysis_to_proteins as a,
protein_sequences_per_group as pg
where a.protein_group_list_id=pg.protein_group_list_id;
|
-- 从不订购的客户
-- 个人题解
select a.Name Customers
from Customers a left join Orders b
on a.Id = b.CustomerId
where b.CustomerId is null
-- 官方题解
select customers.name as 'Customers'
from customers
where customers.id not in
(
select customerid from orders
); |
<filename>testlab/psql/record_counts.sql
\set imclass allele
\set attr intermine_method
SELECT t1.:attr, counts.count
from :imclass as t1
join (select :attr,count(*) from :imclass group by :attr having count(*) > 1) as counts
ON t1.:attr = counts.:attr
;
|
<reponame>lintzc/GPDB
--- pg_autovacuum table ---
\echo -- start_ignore
select * from pg_autovacuum;
\echo -- end_ignore
|
DELETE FROM cdm_v1.header_1971_land_0 WHERE report_id LIKE 'AG000060390-6-1971-%';
|
<reponame>htmlacademy-yii/83701-task-force-1<filename>sql/10_tasks.sql
INSERT INTO `tforce`.`tasks` (`time_start`, `category_id`, `text`, `time_end`, `title`, `budget`, `latitude`, `longitude`, `city_id`, `customer_id`, `executor_id`, `status`) VALUES
('2019-03-09', 2, 'Suspendisse potenti. In eleifend quam a odio. In hac habitasse platea dictumst.', '2019-11-15', 'enable impactful technologies', 6587, 6.9641667, 158.2083333, 2, 18, 3, 'done'),
('2019-07-03', 3, 'Nam ultrices, libero non mattis pulvinar, nulla pede ullamcorper augue, a suscipit nulla elit ac nulla. Sed vel enim sit amet nunc viverra dapibus. Nulla suscipit ligula in lacus. Curabitur at ipsum ac tellus semper interdum. Mauris ullamcorper purus sit amet nulla. Quisque arcu libero, rutrum ac, lobortis vel, dapibus at, diam.', '2020-12-07', 'exploit revolutionary portals', 2904, 5.623505, 10.2544044, 2, 17, 1, 'working'),
('2019-06-27', 2, 'Nulla ut erat id mauris vulputate elementum. Nullam varius. Nulla facilisi. Cras non velit nec nisi vulputate nonummy. Maecenas tincidunt lacus at velit. Vivamus vel nulla eget eros elementum pellentesque. Quisque porta volutpat erat. Quisque erat eros, viverra eget, congue eget, semper rutrum, nulla. Nunc purus.', '2019-11-23', 'matrix next#generation e#commerce', 1170, 63.593219, 53.9068532, 3, 16, 7, 'failed'),
('2019-01-01', 1, 'Praesent blandit. Nam nulla. Integer pede justo, lacinia eget, tincidunt eget, tempus vel, pede.Morbi porttitor lorem id ligula. Suspendisse ornare consequat lectus. In est risus, auctor sed, tristique in, tempus sit amet, sem. Fusce consequat. Nulla nisl. Nunc nisl.', '2020-03-04', 'benchmark plug#and#play infomediaries', 838, 20.5800358, -75.2435307, 18, 15, NULL, 'new'),
('2019-09-07', 3, 'Praesent blandit. Nam nulla. Integer pede justo, lacinia eget, tincidunt eget, tempus vel, pede.', '2019-12-15', 'integrate cross#platform e-business', 7484, 14.9326574, -91.6941845, 18, 15, NULL, 'new'),
('2018-11-01', 7, 'Quisque porta volutpat erat. Quisque erat eros, viverra eget, congue eget, semper rutrum, nulla. Nunc purus.', '2019-11-24', 'enable dot-com niches', 5725, 40.163127, 116.638868, 11, 12, 4, 'canceled'),
('2019-09-13', 5, 'Fusce posuere felis sed lacus. Morbi sem mauris, laoreet ut, rhoncus aliquet, pulvinar sed, nisl. Nunc rhoncus dui vel sem.', '2020-05-05', 'transform web-enabled relationships', 4414, 44.3794871, 20.2638941, 9, 10, NULL, 'new'),
('2019-04-01', 8, 'Integer tincidunt ante vel ipsum. Praesent blandit lacinia erat. Vestibulum sed magna at nunc commodo placerat.Praesent blandit. Nam nulla. Integer pede justo, lacinia eget, tincidunt eget, tempus vel, pede.Morbi porttitor lorem id ligula. Suspendisse ornare consequat lectus. In est risus, auctor sed, tristique in, tempus sit amet, sem.', '2019-11-14', 'strategize frictionless solutions', 3454, -7.3251485, 108.3607464, 7, 12, 4, 'done'),
('2019-03-28', 4, 'Cras mi pede, malesuada in, imperdiet et, commodo vulputate, justo. In blandit ultrices enim. Lorem ipsum dolor sit amet, consectetuer adipiscing elit.', '2020-06-12', 'innovate seamless metrics', NULL, 43, -87.97, 8, 8, 9, 'working'),
('2019-05-01', 4, 'Donec diam neque, vestibulum eget, vulputate ut, ultrices vel, augue. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec pharetra, magna vestibulum aliquet ultrices, erat tortor sollicitudin mi, sit amet lobortis sapien sapien non mi. Integer ac neque.', '2020-12-19', 'integrate wireless infomediaries', 6562, 41.3410168, -8.3169303, 2, 2, NULL, 'new');
|
<filename>conpaas-director/functional-tests/wordpress/wordpress-db.sql
-- MySQL dump 10.13 Distrib 5.5.28, for debian-linux-gnu (x86_64)
--
-- Host: 192.168.122.10 Database: wordpress
-- ------------------------------------------------------
-- Server version 5.1.49-3-log
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `wp_commentmeta`
--
create database wordpress;
use wordpress;
DROP TABLE IF EXISTS `wp_commentmeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_commentmeta` (
`meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`comment_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`meta_key` varchar(255) DEFAULT NULL,
`meta_value` longtext,
PRIMARY KEY (`meta_id`),
KEY `comment_id` (`comment_id`),
KEY `meta_key` (`meta_key`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_commentmeta`
--
LOCK TABLES `wp_commentmeta` WRITE;
/*!40000 ALTER TABLE `wp_commentmeta` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_commentmeta` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_comments`
--
DROP TABLE IF EXISTS `wp_comments`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_comments` (
`comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT '0',
`comment_author` tinytext NOT NULL,
`comment_author_email` varchar(100) NOT NULL DEFAULT '',
`comment_author_url` varchar(200) NOT NULL DEFAULT '',
`comment_author_IP` varchar(100) NOT NULL DEFAULT '',
`comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`comment_content` text NOT NULL,
`comment_karma` int(11) NOT NULL DEFAULT '0',
`comment_approved` varchar(20) NOT NULL DEFAULT '1',
`comment_agent` varchar(255) NOT NULL DEFAULT '',
`comment_type` varchar(20) NOT NULL DEFAULT '',
`comment_parent` bigint(20) unsigned NOT NULL DEFAULT '0',
`user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`comment_ID`),
KEY `comment_post_ID` (`comment_post_ID`),
KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`),
KEY `comment_date_gmt` (`comment_date_gmt`),
KEY `comment_parent` (`comment_parent`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_comments`
--
LOCK TABLES `wp_comments` WRITE;
/*!40000 ALTER TABLE `wp_comments` DISABLE KEYS */;
INSERT INTO `wp_comments` VALUES (1,1,'Mr WordPress','','http://wordpress.org/','','2013-02-14 11:31:35','2013-02-14 11:31:35','Hi, this is a comment.\nTo delete a comment, just log in and view the post's comments. There you will have the option to edit or delete them.',0,'1','','',0,0);
/*!40000 ALTER TABLE `wp_comments` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_links`
--
DROP TABLE IF EXISTS `wp_links`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_links` (
`link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`link_url` varchar(255) NOT NULL DEFAULT '',
`link_name` varchar(255) NOT NULL DEFAULT '',
`link_image` varchar(255) NOT NULL DEFAULT '',
`link_target` varchar(25) NOT NULL DEFAULT '',
`link_description` varchar(255) NOT NULL DEFAULT '',
`link_visible` varchar(20) NOT NULL DEFAULT 'Y',
`link_owner` bigint(20) unsigned NOT NULL DEFAULT '1',
`link_rating` int(11) NOT NULL DEFAULT '0',
`link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`link_rel` varchar(255) NOT NULL DEFAULT '',
`link_notes` mediumtext NOT NULL,
`link_rss` varchar(255) NOT NULL DEFAULT '',
PRIMARY KEY (`link_id`),
KEY `link_visible` (`link_visible`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_links`
--
LOCK TABLES `wp_links` WRITE;
/*!40000 ALTER TABLE `wp_links` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_links` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_options`
--
DROP TABLE IF EXISTS `wp_options`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_options` (
`option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`option_name` varchar(64) NOT NULL DEFAULT '',
`option_value` longtext NOT NULL,
`autoload` varchar(20) NOT NULL DEFAULT 'yes',
PRIMARY KEY (`option_id`),
UNIQUE KEY `option_name` (`option_name`)
) ENGINE=MyISAM AUTO_INCREMENT=141 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_options`
--
LOCK TABLES `wp_options` WRITE;
/*!40000 ALTER TABLE `wp_options` DISABLE KEYS */;
INSERT INTO `wp_options` VALUES (1,'siteurl','http://192.168.122.11','yes'),(2,'blogname','ConPaaS Functional Test','yes'),(3,'blogdescription','Just another WordPress site','yes'),(4,'users_can_register','0','yes'),(5,'admin_email','<EMAIL>','yes'),(6,'start_of_week','1','yes'),(7,'use_balanceTags','0','yes'),(8,'use_smilies','1','yes'),(9,'require_name_email','1','yes'),(10,'comments_notify','1','yes'),(11,'posts_per_rss','10','yes'),(12,'rss_use_excerpt','0','yes'),(13,'mailserver_url','mail.example.com','yes'),(14,'mailserver_login','<EMAIL>','yes'),(15,'mailserver_pass','password','yes'),(16,'mailserver_port','110','yes'),(17,'default_category','1','yes'),(18,'default_comment_status','open','yes'),(19,'default_ping_status','open','yes'),(20,'default_pingback_flag','0','yes'),(21,'posts_per_page','10','yes'),(22,'date_format','F j, Y','yes'),(23,'time_format','g:i a','yes'),(24,'links_updated_date_format','F j, Y g:i a','yes'),(25,'links_recently_updated_prepend','<em>','yes'),(26,'links_recently_updated_append','</em>','yes'),(27,'links_recently_updated_time','120','yes'),(28,'comment_moderation','0','yes'),(29,'moderation_notify','1','yes'),(30,'permalink_structure','','yes'),(31,'gzipcompression','0','yes'),(32,'hack_file','0','yes'),(33,'blog_charset','UTF-8','yes'),(34,'moderation_keys','','no'),(35,'active_plugins','a:0:{}','yes'),(36,'home','http://192.168.122.11','yes'),(37,'category_base','','yes'),(38,'ping_sites','http://rpc.pingomatic.com/','yes'),(39,'advanced_edit','0','yes'),(40,'comment_max_links','2','yes'),(41,'gmt_offset','0','yes'),(42,'default_email_category','1','yes'),(43,'recently_edited','','no'),(44,'template','twentytwelve','yes'),(45,'stylesheet','twentytwelve','yes'),(46,'comment_whitelist','1','yes'),(47,'blacklist_keys','','no'),(48,'comment_registration','0','yes'),(49,'html_type','text/html','yes'),(50,'use_trackback','0','yes'),(51,'default_role','subscriber','yes'),(52,'db_version','22441','yes'),(53,'uploads_use_yearmonth_folders','1','yes'),(54,'upload_path','','yes'),(55,'blog_public','0','yes'),(56,'default_link_category','2','yes'),(57,'show_on_front','posts','yes'),(58,'tag_base','','yes'),(59,'show_avatars','1','yes'),(60,'avatar_rating','G','yes'),(61,'upload_url_path','','yes'),(62,'thumbnail_size_w','150','yes'),(63,'thumbnail_size_h','150','yes'),(64,'thumbnail_crop','1','yes'),(65,'medium_size_w','300','yes'),(66,'medium_size_h','300','yes'),(67,'avatar_default','mystery','yes'),(68,'large_size_w','1024','yes'),(69,'large_size_h','1024','yes'),(70,'image_default_link_type','file','yes'),(71,'image_default_size','','yes'),(72,'image_default_align','','yes'),(73,'close_comments_for_old_posts','0','yes'),(74,'close_comments_days_old','14','yes'),(75,'thread_comments','1','yes'),(76,'thread_comments_depth','5','yes'),(77,'page_comments','0','yes'),(78,'comments_per_page','50','yes'),(79,'default_comments_page','newest','yes'),(80,'comment_order','asc','yes'),(81,'sticky_posts','a:0:{}','yes'),(82,'widget_categories','a:2:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(83,'widget_text','a:0:{}','yes'),(84,'widget_rss','a:0:{}','yes'),(85,'uninstall_plugins','a:0:{}','no'),(86,'timezone_string','','yes'),(87,'page_for_posts','0','yes'),(88,'page_on_front','0','yes'),(89,'default_post_format','0','yes'),(90,'link_manager_enabled','0','yes'),(91,'initial_db_version','22441','yes'),(92,'wp_user_roles','a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:62:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:9:\"add_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:34:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}}','yes'),(93,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(94,'widget_recent-posts','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),(95,'widget_recent-comments','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),(96,'widget_archives','a:2:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(97,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(98,'sidebars_widgets','a:5:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:9:\"sidebar-2\";a:0:{}s:9:\"sidebar-3\";a:0:{}s:13:\"array_version\";i:3;}','yes'),(99,'cron','a:3:{i:1360884700;a:3:{s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_update_themes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1360927907;a:1:{s:19:\"wp_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}s:7:\"version\";i:2;}','yes'),(101,'_site_transient_update_core','O:8:\"stdClass\":3:{s:7:\"updates\";a:1:{i:0;O:8:\"stdClass\":9:{s:8:\"response\";s:6:\"latest\";s:8:\"download\";s:40:\"http://wordpress.org/wordpress-3.5.1.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":4:{s:4:\"full\";s:40:\"http://wordpress.org/wordpress-3.5.1.zip\";s:10:\"no_content\";s:51:\"http://wordpress.org/wordpress-3.5.1-no-content.zip\";s:11:\"new_bundled\";s:52:\"http://wordpress.org/wordpress-3.5.1-new-bundled.zip\";s:7:\"partial\";b:0;}s:7:\"current\";s:5:\"3.5.1\";s:11:\"php_version\";s:5:\"5.2.4\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"3.5\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1360841505;s:15:\"version_checked\";s:5:\"3.5.1\";}','yes'),(102,'_site_transient_update_plugins','O:8:\"stdClass\":2:{s:12:\"last_checked\";i:1360841505;s:8:\"response\";a:0:{}}','yes'),(103,'_site_transient_timeout_theme_roots','1360843305','yes'),(104,'_site_transient_theme_roots','a:2:{s:12:\"twentyeleven\";s:7:\"/themes\";s:12:\"twentytwelve\";s:7:\"/themes\";}','yes'),(105,'_site_transient_update_themes','O:8:\"stdClass\":3:{s:12:\"last_checked\";i:1360841505;s:7:\"checked\";a:2:{s:12:\"twentyeleven\";s:3:\"1.5\";s:12:\"twentytwelve\";s:3:\"1.1\";}s:8:\"response\";a:0:{}}','yes'),(106,'_site_transient_timeout_browser_382c34b9501fa22aa264a9d6680769fb','1361446308','yes'),(107,'_site_transient_browser_382c34b9501fa22aa264a9d6680769fb','a:9:{s:8:\"platform\";s:5:\"Linux\";s:4:\"name\";s:7:\"Firefox\";s:7:\"version\";s:7:\"10.0.12\";s:10:\"update_url\";s:23:\"http://www.firefox.com/\";s:7:\"img_src\";s:50:\"http://s.wordpress.org/images/browsers/firefox.png\";s:11:\"img_src_ssl\";s:49:\"https://wordpress.org/images/browsers/firefox.png\";s:15:\"current_version\";s:2:\"16\";s:7:\"upgrade\";b:1;s:8:\"insecure\";b:0;}','yes'),(108,'dashboard_widget_options','a:4:{s:25:\"dashboard_recent_comments\";a:1:{s:5:\"items\";i:5;}s:24:\"dashboard_incoming_links\";a:5:{s:4:\"home\";s:21:\"http://192.168.122.11\";s:4:\"link\";s:97:\"http://blogsearch.google.com/blogsearch?scoring=d&partner=wordpress&q=link:http://192.168.122.11/\";s:3:\"url\";s:130:\"http://blogsearch.google.com/blogsearch_feeds?scoring=d&ie=utf-8&num=10&output=rss&partner=wordpress&q=link:http://192.168.122.11/\";s:5:\"items\";i:10;s:9:\"show_date\";b:0;}s:17:\"dashboard_primary\";a:7:{s:4:\"link\";s:26:\"http://wordpress.org/news/\";s:3:\"url\";s:31:\"http://wordpress.org/news/feed/\";s:5:\"title\";s:14:\"WordPress Blog\";s:5:\"items\";i:2;s:12:\"show_summary\";i:1;s:11:\"show_author\";i:0;s:9:\"show_date\";i:1;}s:19:\"dashboard_secondary\";a:7:{s:4:\"link\";s:28:\"http://planet.wordpress.org/\";s:3:\"url\";s:33:\"http://planet.wordpress.org/feed/\";s:5:\"title\";s:20:\"Other WordPress News\";s:5:\"items\";i:5;s:12:\"show_summary\";i:0;s:11:\"show_author\";i:0;s:9:\"show_date\";i:0;}}','yes'),(110,'_transient_timeout_feed_89939b0c9da9b64802c4feaeb53d6b37','1360884710','no'),(111,'_transient_feed_89939b0c9da9b64802c4feaeb53d6b37','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:4:\"\n \n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:33:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:3:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"link:http://192.168.122.11/ - Google Blog Search\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"http://www.google.com/search?ie=utf-8&q=link:http://192.168.122.11/&tbm=blg&tbs=sbd:1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"Your search - <b>link:http://192.168.122.11/</b> - did not match any documents.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://a9.com/-/spec/opensearch/1.1/\";a:3:{s:12:\"totalResults\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:10:\"startIndex\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:12:\"itemsPerPage\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"10\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";a:9:{s:12:\"content-type\";s:28:\"text/xml; charset=ISO-8859-1\";s:4:\"date\";s:29:\"Thu, 14 Feb 2013 11:34:05 GMT\";s:7:\"expires\";s:2:\"-1\";s:13:\"cache-control\";s:18:\"private, max-age=0\";s:10:\"set-cookie\";a:2:{i:0;s:143:\"PREF=ID=652ed7e15da1980a:FF=0:TM=1360841645:LM=1360841645:S=77Jok5lWZ30Lo_Gy; expires=Sat, 14-Feb-2015 11:34:05 GMT; path=/; domain=.google.com\";i:1;s:212:\"NID=67=b7AuuNZFW9gnyMsmmg6K0Nb6Nx6G3OA_FNHQZSb0uC5O3JzbSFfqfTDj3I2CCcPFcF30ff2wH1csznixd7uSEwCU3bxIosrw5KOIpleZ9ozbbgUUeklIcl_a8CFWJrQe; expires=Fri, 16-Aug-2013 11:34:05 GMT; path=/; domain=.google.com; HttpOnly\";}s:3:\"p3p\";s:122:\"CP=\"This is not a P3P policy! See http://www.google.com/support/accounts/bin/answer.py?hl=en&answer=151657 for more info.\"\";s:6:\"server\";s:3:\"gws\";s:16:\"x-xss-protection\";s:13:\"1; mode=block\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";}s:5:\"build\";s:14:\"20130214112749\";}','no'),(112,'_transient_timeout_feed_mod_89939b0c9da9b64802c4feaeb53d6b37','1360884710','no'),(113,'_transient_feed_mod_89939b0c9da9b64802c4feaeb53d6b37','1360841510','no'),(114,'_transient_timeout_dash_20494a3d90a6669585674ed0eb8dcd8f','1360884710','no'),(115,'_transient_dash_20494a3d90a6669585674ed0eb8dcd8f','<p>This dashboard widget queries <a href=\"http://blogsearch.google.com/\">Google Blog Search</a> so that when another blog links to your site it will show up here. It has found no incoming links… yet. It’s okay — there is no rush.</p>\n','no'),(116,'_transient_timeout_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca','1360884711','no'),(117,'_transient_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:50:\"\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WordPress News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"http://wordpress.org/news\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WordPress News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 24 Jan 2013 22:23:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"http://wordpress.org/?v=3.6-alpha-23403\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:10:{i:0;a:6:{s:4:\"data\";s:45:\"\n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"WordPress 3.5.1 Maintenance and Security Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"http://wordpress.org/news/2013/01/wordpress-3-5-1/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"http://wordpress.org/news/2013/01/wordpress-3-5-1/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 24 Jan 2013 22:23:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=2531\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:359:\"WordPress 3.5.1 is now available. Version 3.5.1 is the first maintenance release of 3.5, fixing 37 bugs. It is also a security release for all previous WordPress versions. For a full list of changes, consult the list of tickets and the changelog, which include: Editor: Prevent certain HTML elements from being unexpectedly removed or modified in rare [...]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:2499:\"<p>WordPress 3.5.1 is now available. Version 3.5.1 is the first maintenance release of 3.5, <a href=\"http://core.trac.wordpress.org/milestone/3.5.1\">fixing 37 bugs</a>. It is also a security release for all previous WordPress versions. For a full list of changes, consult the <a href=\"http://core.trac.wordpress.org/query?milestone=3.5.1\">list of tickets</a> and the <a href=\"http://core.trac.wordpress.org/log/branches/3.5?rev=23341&stop_rev=23167\">changelog</a>, which include:</p>\n<ul>\n<li>Editor: Prevent certain HTML elements from being unexpectedly removed or modified in rare cases.</li>\n<li>Media: Fix a collection of minor workflow and compatibility issues in the new media manager.</li>\n<li>Networks: Suggest proper rewrite rules when creating a new network.</li>\n<li>Prevent scheduled posts from being stripped of certain HTML, such as video embeds, when they are published.</li>\n<li>Work around some misconfigurations that may have caused some JavaScript in the WordPress admin area to fail.</li>\n<li>Suppress some warnings that could occur when a plugin misused the database or user APIs.</li>\n</ul>\n<p>Additionally, a bug affecting Windows servers running IIS can prevent updating from 3.5 to 3.5.1. If you receive the error “Destination directory for file streaming does not exist or is not writable,” you will need to <a href=\"http://codex.wordpress.org/Version_3.5.1\">follow the steps outlined on the Codex</a>.</p>\n<p>WordPress 3.5.1 also addresses the following security issues:</p>\n<ul>\n<li>A server-side request forgery vulnerability and remote port scanning using pingbacks. This vulnerability, which could potentially be used to expose information and compromise a site, affects all previous WordPress versions. This was fixed by the WordPress security team. We’d like to thank security researchers <a href=\"http://codeseekah.com/\"><NAME></a> and <a href=\"http://www.ethicalhack3r.co.uk/\"><NAME></a> for reviewing our work.</li>\n<li>Two instances of cross-site scripting via shortcodes and post content. These issues were discovered by <NAME> of the WordPress security team.</li>\n<li>A cross-site scripting vulnerability in the external library Plupload. Thanks to the Moxiecode team for working with us on this, and for releasing Plupload 1.5.5 to address this issue.</li>\n</ul>\n<p><strong><a href=\"http://wordpress.org/download/\">Download 3.5.1</a> or visit Dashboard → Updates in your site admin to update now.</strong></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"http://wordpress.org/news/2013/01/wordpress-3-5-1/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:42:\"\n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"2012: A Look Back\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"http://wordpress.org/news/2013/01/2012-a-look-back/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"http://wordpress.org/news/2013/01/2012-a-look-back/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 01 Jan 2013 02:22:20 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Uncategorized\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=2525\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:340:\"Another year is coming to a close, and it’s time to look back and reflect on what we’ve accomplished in the past twelve months. The WordPress community is stronger than ever, and some of the accomplishments of the past year are definitely worth remembering. Software Releases We had two major releases of the WordPress web [...]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:4441:\"<p>Another year is coming to a close, and it’s time to look back and reflect on what we’ve accomplished in the past twelve months. The WordPress community is stronger than ever, and some of the accomplishments of the past year are definitely worth remembering.</p>\n<h4>Software Releases</h4>\n<p>We had two major releases of the WordPress web application with versions <a href=\"http://wordpress.org/news/2012/06/green/\">3.4</a> and <a href=\"http://wordpress.org/news/2012/12/elvin/\">3.5</a>, as well as 5 security releases during 2012. 3.4 included the theme customizer, while 3.5 became the long awaited “media release” featuring a new uploader and gallery management tool. 3.5 contained code contributions from more people than ever, and we hope to continue growing the contributor ranks in the year ahead. We currently have native apps on 6 mobile platforms — <a href=\"http://ios.wordpress.org/\">iOS</a>, <a href=\"http://android.wordpress.org/\">Android</a>, <a href=\"http://blackberry.wordpress.org/\">Blackberry</a>, <a href=\"http://wpwindowsphone.wordpress.com/\">Windows Phone</a>, <a href=\"http://nokia.wordpress.org/\">Nokia</a>, and <a href=\"http://webos.wordpress.org/\">WebOS</a> — and saw several updates there as well.</p>\n<h4>Plugin Directory</h4>\n<p>A number of improvements were made to the Plugin Directory in 2012. More cosmetic updates, like the introduction of branded plugin page headers, make it a nicer browsing experience, while functional changes like better-integrated support forums, plugin reviews, and a favorites system made the plugin directory even more useful as a resource.</p>\n<h4>The “Make” Network and Team Reps</h4>\n<p>2012 was the year that saw the creation of <a href=\"http://make.wordpress.org/\">Make.wordpress.org</a>, a network of sites for the teams of contributors responsible for the different areas of the WordPress project. Now anyone can follow along and get involved with the teams that work on <a href=\"http://make.wordpress.org/core/\">core</a>, <a href=\"http://make.wordpress.org/themes/\">theme review</a>, <a href=\"http://make.wordpress.org/support/\">forum support</a>, <a href=\"http://make.wordpress.org/docs/\">documentation</a>, and more. In 2013 we’ll work to improve these sites to make it easier to become a contributor. Each team also now has elected Team Reps, a new role that has already led to more cross-team communication. Team reps post each week to the <a href=\"https://make.wordpress.org/updates/\">Updates blog</a> so that the other reps can keep up with what’s going on in other teams.</p>\n<h4>WordPress Community Summit</h4>\n<p>At the end of October, about 100 of the most influential and respected members of the WordPress community attended an inaugural <a href=\"https://make.wordpress.org/summit\">summit</a> to discuss where we all stand, and to figure out where we go next with WordPress. A “conference of conversations,” this unconference made everyone an active participant, and while not every issue brought to the table was solved by the end of the event, the right questions were being asked.</p>\n<h4>Meetup.com</h4>\n<p>The WordPress Foundation now has a central account with Meetup.com. We’ve brought in a couple dozen existing meetup groups as a pilot to test the system, and are in the process of working with more existing meetups (as well as new ones) to join us so that local organizers won’t have to pay organizer dues and can get more support from the WordPress project.</p>\n<h4>Internet Blackout Day</h4>\n<p>We participated in the protest against SOPA/PIPA, Internet Blackout Day, on January 18. Though we usually stay out of politics, this campaign was important, and we not only participated in the blackout on WordPress.org, we encouraged our users to do so as well, and recommended plugins to provide blackout functionality. It was deemed the <a href=\"http://sopastrike.com/numbers/\">largest online protest in history</a>.</p>\n<h4>WordCamps</h4>\n<p>And finally, it wouldn’t be a recap without counting up the <a href=\"http://wordcamp.org\">WordCamps</a>! There were 67 WordCamps around the world in 2012, bringing together WordPress users, developers, and fans. If you didn’t make it to a WordCamp this year, maybe it can be one of your new year resolutions: <a href=\"http://central.wordcamp.org/schedule/\">check the schedule</a> to find one near you!</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"http://wordpress.org/news/2013/01/2012-a-look-back/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:42:\"\n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"WordPress 3.5 “Elvin”\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"http://wordpress.org/news/2012/12/elvin/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"http://wordpress.org/news/2012/12/elvin/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 11 Dec 2012 16:54:23 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=2517\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:363:\"It’s the most wonderful time of the year: a new WordPress release is available and chock-full of goodies to delight bloggers and developers alike. We’re calling this one “Elvin” in honor of drummer <NAME>, who played with <NAME> in addition to many others. If you’ve been around WordPress a while, the most dramatic [...]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:20083:\"<p>It’s the most wonderful time of the year: a new WordPress release <a href=\"http://wordpress.org/download/\">is available</a> and chock-full of goodies to delight bloggers and developers alike. We’re calling this one “Elvin” in honor of <a href=\"http://en.wikipedia.org/wiki/Elvin_Jones\">drummer <NAME></a>, who played with <NAME> in addition to many others.</p>\n<p>If you’ve been around WordPress a while, the most dramatic new change you’ll notice is a completely re-imagined flow for uploading photos and creating galleries. Media has long been a friction point and we’ve listened hard and given a lot of thought into crafting this new system. 3.5 includes a new default theme, Twenty Twelve, which has a very clean mobile-first responsive design and works fantastic as a base for a CMS site. Finally we’ve spent a lot of time refreshing the styles of the dashboard, updating everything to be Retina-ready with beautiful high resolution graphics, a new color picker, and streamlining a couple of fewer-used sections of the admin.</p>\n<p>Here’s a quick video overview of everything you can share with your friends:</p>\n<div id=\"v-jQDfEbzZ-1\" class=\"video-player\"><embed id=\"v-jQDfEbzZ-1-video\" src=\"http://s0.videopress.com/player.swf?v=1.03&guid=jQDfEbzZ&isDynamicSeeking=true\" type=\"application/x-shockwave-flash\" width=\"692\" height=\"388\" title=\"Introducing WordPress 3.5\" wmode=\"direct\" seamlesstabbing=\"true\" allowfullscreen=\"true\" allowscriptaccess=\"always\" overstretch=\"true\"></embed></div>\n<h3>For Developers</h3>\n<p>You can now put your (or anyone’s) WordPress.org username on the plugins page and see your favorite tagged ones, to make it easy to install them again when setting up a new site. There’s a new Tumblr importer. New installs no longer show the links manager. Finally for multisite developers <code>switch_to_blog()</code> is way faster and you can now install MS in a sub-directory. The <a href=\"http://underscorejs.org/\">Underscore</a> and <a href=\"http://backbonejs.org/\">Backbone</a> JavaScript libraries are now available. <a href=\"http://codex.wordpress.org/Version_3.5\">The Codex has a pretty good summary of the developer features above and beyond this</a>, and you can always <a href=\"http://core.trac.wordpress.org/milestone/3.5\">grab a warm beverage and explore Trac directly</a>.</p>\n<h3>Percussion Section</h3>\n<p>Behind every great release is great contributors. 3.5 had more people involved than any release before it:</p>\n<p><a href=\"http://profiles.wordpress.org/aaroncampbell\"><NAME></a>, <a href=\"http://profiles.wordpress.org/aaronholbrook\">aaronholbrook</a>, <a href=\"http://profiles.wordpress.org/jorbin\"><NAME></a>, <a href=\"http://profiles.wordpress.org/kawauso\"><NAME></a>, <a href=\"http://profiles.wordpress.org/alyssonweb\">akbortoli</a>, <a href=\"http://profiles.wordpress.org/alecrust\">alecrust</a>, <a href=\"http://profiles.wordpress.org/xknown\"><NAME></a>, <a href=\"http://profiles.wordpress.org/alexkingorg\"><NAME></a>, <a href=\"http://profiles.wordpress.org/viper007bond\"><NAME> (Viper007Bond)</a>, <a href=\"http://profiles.wordpress.org/alexvorn2\">alexvorn2</a>, <a href=\"http://profiles.wordpress.org/ampt\">ampt</a>, <a href=\"http://profiles.wordpress.org/sabreuse\"><NAME> (sabreuse)</a>, <a href=\"http://profiles.wordpress.org/andrear\">andrea.r</a>, <a href=\"http://profiles.wordpress.org/nacin\"><NAME></a>, <a href=\"http://profiles.wordpress.org/azaozz\">Andrew Ozz</a>, <a href=\"http://profiles.wordpress.org/andrewryno\"><NAME>yno</a>, <a href=\"http://profiles.wordpress.org/andrewspittle\"><NAME>ittle</a>, <a href=\"http://profiles.wordpress.org/andy\"><NAME></a>, <a href=\"http://profiles.wordpress.org/apokalyptik\">apokalyptik</a>, <a href=\"http://profiles.wordpress.org/bainternet\">Bainternet</a>, <a href=\"http://profiles.wordpress.org/barrykooij\"><NAME></a>, <a href=\"http://profiles.wordpress.org/bazza\">bazza</a>, <a href=\"http://profiles.wordpress.org/bbrooks\">bbrooks</a>, <a href=\"http://profiles.wordpress.org/casben79\"><NAME></a>, <a href=\"http://profiles.wordpress.org/husobj\"><NAME></a>, <a href=\"http://profiles.wordpress.org/benkulbertis\"><NAME></a>, <a href=\"http://profiles.wordpress.org/bergius\">bergius</a>, <a href=\"http://profiles.wordpress.org/neoxx\"><NAME></a>, <a href=\"http://profiles.wordpress.org/betzster\">betzster</a>, <a href=\"http://profiles.wordpress.org/bananastalktome\">Billy (bananastalktome)</a>, <a href=\"http://profiles.wordpress.org/bolo1988\">bolo1988</a>, <a href=\"http://profiles.wordpress.org/bradparbs\">bradparbs</a>, <a href=\"http://profiles.wordpress.org/bradthomas127\">bradthomas127</a>, <a href=\"http://profiles.wordpress.org/bradyvercher\"><NAME>cher</a>, <a href=\"http://profiles.wordpress.org/brandondove\"><NAME></a>, <a href=\"http://profiles.wordpress.org/brianlayman\"><NAME></a>, <a href=\"http://profiles.wordpress.org/rzen\"><NAME></a>, <a href=\"http://profiles.wordpress.org/sennza\">Bronson Quick</a>, <a href=\"http://profiles.wordpress.org/bpetty\"><NAME></a>, <a href=\"http://profiles.wordpress.org/cannona\">cannona</a>, <a href=\"http://profiles.wordpress.org/sixhours\"><NAME></a>, <a href=\"http://profiles.wordpress.org/caspie\">Caspie</a>, <a href=\"http://profiles.wordpress.org/cdog\">cdog</a>, <a href=\"http://profiles.wordpress.org/thee17\"><NAME>-Melvin</a>, <a href=\"http://profiles.wordpress.org/chellycat\">chellycat</a>, <a href=\"http://profiles.wordpress.org/chexee\">Chelsea Otakan</a>, <a href=\"http://profiles.wordpress.org/chouby\">Chouby</a>, <a href=\"http://profiles.wordpress.org/c3mdigital\"><NAME></a>, <a href=\"http://profiles.wordpress.org/cfinke\"><NAME></a>, <a href=\"http://profiles.wordpress.org/chriswallace\"><NAME></a>, <a href=\"http://profiles.wordpress.org/corvannoorloos\"><NAME></a>, <a href=\"http://profiles.wordpress.org/scribu\"><NAME>ă</a>, <a href=\"http://profiles.wordpress.org/mrroundhill\">Dan</a>, <a href=\"http://profiles.wordpress.org/dan-rivera\"><NAME></a>, <a href=\"http://profiles.wordpress.org/koopersmith\"><NAME></a>, <a href=\"http://profiles.wordpress.org/lessbloat\">Dave Martin</a>, <a href=\"http://profiles.wordpress.org/deltafactory\">deltafactory</a>, <a href=\"http://profiles.wordpress.org/dd32\">Dion Hulse</a>, <a href=\"http://profiles.wordpress.org/djzone\">DjZoNe</a>, <a href=\"http://profiles.wordpress.org/dllh\">dllh</a>, <a href=\"http://profiles.wordpress.org/ocean90\"><NAME></a>, <a href=\"http://profiles.wordpress.org/doublesharp\">doublesharp</a>, <a href=\"http://profiles.wordpress.org/drewapicture\"><NAME> (DrewAPicture)</a>, <a href=\"http://profiles.wordpress.org/drewstrojny\"><NAME></a>, <a href=\"http://profiles.wordpress.org/eddiemoya\">Eddie Moya</a>, <a href=\"http://profiles.wordpress.org/elyobo\">elyobo</a>, <a href=\"http://profiles.wordpress.org/emiluzelac\"><NAME></a>, <a href=\"http://profiles.wordpress.org/empireoflight\">Empireoflight</a>, <a href=\"http://profiles.wordpress.org/ericlewis\"><NAME></a>, <a href=\"http://profiles.wordpress.org/ethitter\"><NAME></a>, <a href=\"http://profiles.wordpress.org/ericmann\"><NAME></a>, <a href=\"http://profiles.wordpress.org/ericwahlforss\">ericwahlforss</a>, <a href=\"http://profiles.wordpress.org/evansolomon\"><NAME></a>, <a href=\"http://profiles.wordpress.org/fadingdust\">fadingdust</a>, <a href=\"http://profiles.wordpress.org/f-j-kaiser\">F J Kaiser</a>, <a href=\"http://profiles.wordpress.org/foxinni\">foxinni</a>, <a href=\"http://profiles.wordpress.org/garyc40\"><NAME></a>, <a href=\"http://profiles.wordpress.org/garyj\"><NAME></a>, <a href=\"http://profiles.wordpress.org/pento\"><NAME></a>, <a href=\"http://profiles.wordpress.org/geertdd\">GeertDD</a>, <a href=\"http://profiles.wordpress.org/mamaduka\"><NAME>ili</a>, <a href=\"http://profiles.wordpress.org/georgestephanis\">George Stephanis</a>, <a href=\"http://profiles.wordpress.org/ghosttoast\">GhostToast</a>, <a href=\"http://profiles.wordpress.org/gnarf\">gnarf</a>, <a href=\"http://profiles.wordpress.org/goldenapples\">goldenapples</a>, <a href=\"http://profiles.wordpress.org/webord\"><NAME></a>, <a href=\"http://profiles.wordpress.org/hakre\">hakre</a>, <a href=\"http://profiles.wordpress.org/hanni\">hanni</a>, <a href=\"http://profiles.wordpress.org/hardy101\">hardy101</a>, <a href=\"http://profiles.wordpress.org/hebbet\">hebbet</a>, <a href=\"http://profiles.wordpress.org/helenyhou\"><NAME></a>, <a href=\"http://profiles.wordpress.org/hugobaeta\"><NAME></a>, <a href=\"http://profiles.wordpress.org/iamfriendly\">iamfriendly</a>, <a href=\"http://profiles.wordpress.org/iandstewart\"><NAME></a>, <a href=\"http://profiles.wordpress.org/ikailo\">ikailo</a>, <a href=\"http://profiles.wordpress.org/ipstenu\">Ipstenu (<NAME>)</a>, <a href=\"http://profiles.wordpress.org/itworx\">itworx</a>, <a href=\"http://profiles.wordpress.org/j-idris\">j-idris</a>, <a href=\"http://profiles.wordpress.org/jakemgold\"><NAME></a>, <a href=\"http://profiles.wordpress.org/jakubtyrcha\">jakub.tyrcha</a>, <a href=\"http://profiles.wordpress.org/jamescollins\"><NAME>s</a>, <a href=\"http://profiles.wordpress.org/jammitch\">jammitch</a>, <a href=\"http://profiles.wordpress.org/jane\">Jane Wells</a>, <a href=\"http://profiles.wordpress.org/japh\">Japh</a>, <a href=\"http://profiles.wordpress.org/jarretc\">JarretC</a>, <a href=\"http://profiles.wordpress.org/madtownlems\"><NAME> (MadtownLems)</a>, <a href=\"http://profiles.wordpress.org/javert03\">javert03</a>, <a href=\"http://profiles.wordpress.org/jbrinley\">jbrinley</a>, <a href=\"http://profiles.wordpress.org/jcakec\">jcakec</a>, <a href=\"http://profiles.wordpress.org/jblz\"><NAME></a>, <a href=\"http://profiles.wordpress.org/jeffsebring\"><NAME></a>, <a href=\"http://profiles.wordpress.org/jeremyfelt\"><NAME></a>, <a href=\"http://profiles.wordpress.org/hd-j\"><NAME></a>, <a href=\"http://profiles.wordpress.org/jerrysarcastic\"><NAME> (JerrySarcastic)</a>, <a href=\"http://profiles.wordpress.org/jayjdk\"><NAME> (Jayjdk)</a>, <a href=\"http://profiles.wordpress.org/jndetlefsen\">jndetlefsen</a>, <a href=\"http://profiles.wordpress.org/joehoyle\"><NAME></a>, <a href=\"http://profiles.wordpress.org/joelhardi\">joelhardi</a>, <a href=\"http://profiles.wordpress.org/jkudish\"><NAME></a>, <a href=\"http://profiles.wordpress.org/johnbillion\"><NAME> (johnbillion)</a>, <a href=\"http://profiles.wordpress.org/johnjamesjacoby\"><NAME></a>, <a href=\"http://profiles.wordpress.org/johnpbloch\"><NAME></a>, <a href=\"http://profiles.wordpress.org/jond3r\"><NAME></a>, <a href=\"http://profiles.wordpress.org/jondavidjohn\"><NAME></a>, <a href=\"http://profiles.wordpress.org/duck_\"><NAME></a>, <a href=\"http://profiles.wordpress.org/joostdekeijzer\">joostdekeijzer</a>, <a href=\"http://profiles.wordpress.org/koke\"><NAME></a>, <a href=\"http://profiles.wordpress.org/josephscott\"><NAME></a>, <a href=\"http://profiles.wordpress.org/pottersys\">Juan</a>, <a href=\"http://profiles.wordpress.org/justinsainton\"><NAME></a>, <a href=\"http://profiles.wordpress.org/jtsternberg\"><NAME></a>, <a href=\"http://profiles.wordpress.org/greenshady\"><NAME></a>, <a href=\"http://profiles.wordpress.org/trepmal\"><NAME> (trepmal)</a>, <a href=\"http://profiles.wordpress.org/ryelle\"><NAME></a>, <a href=\"http://profiles.wordpress.org/keruspe\">Keruspe</a>, <a href=\"http://profiles.wordpress.org/kitchin\">kitchin</a>, <a href=\"http://profiles.wordpress.org/knutsp\">Knut Sparhell</a>, <a href=\"http://profiles.wordpress.org/kovshenin\"><NAME>enin</a>, <a href=\"http://profiles.wordpress.org/obenland\">Konstantin Obenland</a>, <a href=\"http://profiles.wordpress.org/kopepasah\">Kopepasah</a>, <a href=\"http://profiles.wordpress.org/klagraff\"><NAME></a>, <a href=\"http://profiles.wordpress.org/kurtpayne\"><NAME>ne</a>, <a href=\"http://profiles.wordpress.org/kyrylo\">Kyrylo</a>, <a href=\"http://profiles.wordpress.org/lancewillett\"><NAME>lett</a>, <a href=\"http://profiles.wordpress.org/larysa\"><NAME></a>, <a href=\"http://profiles.wordpress.org/leogermani\">leogermani</a>, <a href=\"http://profiles.wordpress.org/lesteph\">lesteph</a>, <a href=\"http://profiles.wordpress.org/linuxologos\">linuxologos</a>, <a href=\"http://profiles.wordpress.org/ldebrouwer\"><NAME> Brouwer</a>, <a href=\"http://profiles.wordpress.org/lgedeon\"><NAME></a>, <a href=\"http://profiles.wordpress.org/latz\"><NAME>er</a>, <a href=\"http://profiles.wordpress.org/mailnew2ster\">mailnew2ster</a>, <a href=\"http://profiles.wordpress.org/targz-1\"><NAME></a>, <a href=\"http://profiles.wordpress.org/maor\"><NAME></a>, <a href=\"http://profiles.wordpress.org/mimecine\">Marco</a>, <a href=\"http://profiles.wordpress.org/marcuspope\">MarcusPope</a>, <a href=\"http://profiles.wordpress.org/markjaquith\"><NAME></a>, <a href=\"http://profiles.wordpress.org/markoheijnen\"><NAME></a>, <a href=\"http://profiles.wordpress.org/martythornley\">MartyThornley</a>, <a href=\"http://profiles.wordpress.org/mattdanner\">mattdanner</a>, <a href=\"http://profiles.wordpress.org/bigdawggi\"><NAME></a>, <a href=\"http://profiles.wordpress.org/sivel\"><NAME></a>, <a href=\"http://profiles.wordpress.org/iammattthomas\"><NAME></a>, <a href=\"http://profiles.wordpress.org/mattwiebe\">Matt Wiebe</a>, <a href=\"http://profiles.wordpress.org/mattyrob\">mattyrob</a>, <a href=\"http://profiles.wordpress.org/maxcutler\">Max Cutler</a>, <a href=\"http://profiles.wordpress.org/melchoyce\">Mel Choyce</a>, <a href=\"http://profiles.wordpress.org/merty\"><NAME></a>, <a href=\"http://profiles.wordpress.org/mdawaffe\"><NAME> (mdawaffe)</a>, <a href=\"http://profiles.wordpress.org/mfields\"><NAME></a>, <a href=\"http://profiles.wordpress.org/mbijon\"><NAME></a>, <a href=\"http://profiles.wordpress.org/mdgl\"><NAME></a>, <a href=\"http://profiles.wordpress.org/mikehansenme\"><NAME></a>, <a href=\"http://profiles.wordpress.org/mikelittle\"><NAME></a>, <a href=\"http://profiles.wordpress.org/mikeschinkel\"><NAME></a>, <a href=\"http://profiles.wordpress.org/DH-Shredder\"><NAME></a>, <a href=\"http://profiles.wordpress.org/toppa\"><NAME></a>, <a href=\"http://profiles.wordpress.org/dimadin\"><NAME></a>, <a href=\"http://profiles.wordpress.org/mitchoyoshitaka\">mitcho (<NAME> Erlewine)</a>, <a href=\"http://profiles.wordpress.org/batmoo\"><NAME></a>, <a href=\"http://profiles.wordpress.org/mohanjith\">mohanjith</a>, <a href=\"http://profiles.wordpress.org/mpvanwinkle77\">mpvanwinkle77</a>, <a href=\"http://profiles.wordpress.org/usermrpapa\">Mr Papa</a>, <a href=\"http://profiles.wordpress.org/murky\">murky</a>, <a href=\"http://profiles.wordpress.org/Nao\">Naoko Takano</a>, <a href=\"http://profiles.wordpress.org/alex-ye\">Nashwan Doaqan</a>, <a href=\"http://profiles.wordpress.org/niallkennedy\">Niall Kennedy</a>, <a href=\"http://profiles.wordpress.org/nbachiyski\"><NAME></a>, <a href=\"http://profiles.wordpress.org/ntm\">ntm</a>, <a href=\"http://profiles.wordpress.org/nvartolomei\">nvartolomei</a>, <a href=\"http://profiles.wordpress.org/pavelevap\">pavelevap</a>, <a href=\"http://profiles.wordpress.org/pdclark\">pdclark</a>, <a href=\"http://profiles.wordpress.org/petemall\"><NAME></a>, <a href=\"http://profiles.wordpress.org/westi\"><NAME></a>, <a href=\"http://profiles.wordpress.org/pas5027\"><NAME></a>, <a href=\"http://profiles.wordpress.org/philiparthurmoore\"><NAME></a>, <a href=\"http://profiles.wordpress.org/phill_brown\"><NAME></a>, <a href=\"http://profiles.wordpress.org/picklepete\">picklepete</a>, <a href=\"http://profiles.wordpress.org/picklewagon\">Picklewagon</a>, <a href=\"http://profiles.wordpress.org/nprasath002\"><NAME></a>, <a href=\"http://profiles.wordpress.org/r-a-y\">r-a-y</a>, <a href=\"http://profiles.wordpress.org/ramiy\"><NAME></a>, <a href=\"http://profiles.wordpress.org/moraleidame\"><NAME></a>, <a href=\"http://profiles.wordpress.org/miqrogroove\"><NAME> (miqrogroove)</a>, <a href=\"http://profiles.wordpress.org/wet\"><NAME>zlmayr</a>, <a href=\"http://profiles.wordpress.org/wpmuguru\"><NAME></a>, <a href=\"http://profiles.wordpress.org/rstern\">rstern</a>, <a href=\"http://profiles.wordpress.org/ryan\"><NAME></a>, <a href=\"http://profiles.wordpress.org/ryanimel\"><NAME></a>, <a href=\"http://profiles.wordpress.org/ryanjkoehler\"><NAME></a>, <a href=\"http://profiles.wordpress.org/markel\"><NAME></a>, <a href=\"http://profiles.wordpress.org/rmccue\"><NAME>Cue</a>, <a href=\"http://profiles.wordpress.org/zeo\"><NAME></a>, <a href=\"http://profiles.wordpress.org/solarissmoke\"><NAME></a>, <a href=\"http://profiles.wordpress.org/gluten\"><NAME></a>, <a href=\"http://profiles.wordpress.org/otto42\"><NAME> (Otto)</a>, <a href=\"http://profiles.wordpress.org/saracannon\">sara cannon</a>, <a href=\"http://profiles.wordpress.org/gandham\"><NAME></a>, <a href=\"http://profiles.wordpress.org/scottgonzalez\">scott.gonzalez</a>, <a href=\"http://profiles.wordpress.org/sc0ttkclark\"><NAME></a>, <a href=\"http://profiles.wordpress.org/coffee2code\"><NAME></a>, <a href=\"http://profiles.wordpress.org/wonderboymusic\"><NAME>aylor</a>, <a href=\"http://profiles.wordpress.org/greglone\">ScreenfeedFr</a>, <a href=\"http://profiles.wordpress.org/sergeysbetkenovgaroru\">sergey.s.betke</a>, <a href=\"http://profiles.wordpress.org/sergeybiryukov\"><NAME></a>, <a href=\"http://profiles.wordpress.org/pross\">Simon Prosser</a>, <a href=\"http://profiles.wordpress.org/simonwheatley\"><NAME>ley</a>, <a href=\"http://profiles.wordpress.org/sirzooro\">sirzooro</a>, <a href=\"http://profiles.wordpress.org/ssamture\">ssamture</a>, <a href=\"http://profiles.wordpress.org/sterlo\">sterlo</a>, <a href=\"http://profiles.wordpress.org/sumindmitriy\">sumindmitriy</a>, <a href=\"http://profiles.wordpress.org/sushkov\">sushkov</a>, <a href=\"http://profiles.wordpress.org/swekitsune\">swekitsune</a>, <a href=\"http://profiles.wordpress.org/iamtakashi\"><NAME></a>, <a href=\"http://profiles.wordpress.org/taylorde\"><NAME></a>, <a href=\"http://profiles.wordpress.org/tlovett1\"><NAME></a>, <a href=\"http://profiles.wordpress.org/saltcod\"><NAME></a>, <a href=\"http://profiles.wordpress.org/griffinjt\"><NAME></a>, <a href=\"http://profiles.wordpress.org/tott\"><NAME></a>, <a href=\"http://profiles.wordpress.org/timbeks\">timbeks</a>, <a href=\"http://profiles.wordpress.org/timfs\">timfs</a>, <a href=\"http://profiles.wordpress.org/tmoorewp\"><NAME></a>, <a href=\"http://profiles.wordpress.org/tobiasbg\">TobiasBg</a>, <a href=\"http://profiles.wordpress.org/tomasm\">TomasM</a>, <a href=\"http://profiles.wordpress.org/tomauger\"><NAME></a>, <a href=\"http://profiles.wordpress.org/tommcfarlin\">tommcfarlin</a>, <a href=\"http://profiles.wordpress.org/willmot\"><NAME></a>, <a href=\"http://profiles.wordpress.org/toscho\">toscho</a>, <a href=\"http://profiles.wordpress.org/wpsmith\"><NAME></a>, <a href=\"http://profiles.wordpress.org/vhauri\"><NAME></a>, <a href=\"http://profiles.wordpress.org/viniciusmassuchetto\"><NAME></a>, <a href=\"http://profiles.wordpress.org/lightningspirit\"><NAME></a>, <a href=\"http://profiles.wordpress.org/waclawjacek\">Waclaw</a>, <a href=\"http://profiles.wordpress.org/waldojaquith\">WaldoJaquith</a>, <a href=\"http://profiles.wordpress.org/wojtekszkutnik\">Wojtek Szkutnik</a>, <a href=\"http://profiles.wordpress.org/xibe\"><NAME></a>, <a href=\"http://profiles.wordpress.org/yoavf\"><NAME></a>, <a href=\"http://profiles.wordpress.org/yogi-t\">Yogi T</a>, <a href=\"http://profiles.wordpress.org/tollmanz\"><NAME></a>, and <a href=\"http://profiles.wordpress.org/zamoose\">ZaMoose</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"http://wordpress.org/news/2012/12/elvin/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:45:\"\n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"WordPress 3.5 Release Candidate 3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"http://wordpress.org/news/2012/12/wordpress-3-5-release-candidate-3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"http://wordpress.org/news/2012/12/wordpress-3-5-release-candidate-3/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 04 Dec 2012 08:37:39 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:7:\"Testing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"http://wordpress.org/news/2012/12/wordpress-3-5-release-candidate-3/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:339:\"The third release candidate for WordPress 3.5 is now available. We’ve made a number of changes over the last week since RC2 that we can’t wait to get into your hands. Hope you’re ready to do some testing! Final UI improvements for the new media manager, based on lots of great feedback. Show more information about [...]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:1950:\"<p>The third release candidate for WordPress 3.5 is now available. We’ve made a number of changes over the last week since <a title=\"WordPress 3.5 Release Candidate 2\" href=\"http://wordpress.org/news/2012/11/wordpress-3-5-release-candidate-2/\">RC2</a> that we can’t wait to get into your hands. Hope you’re ready to do some testing!</p>\n<ul>\n<li><span style=\"line-height: 13px\">Final UI improvements for the new media manager, based on lots of great feedback.</span></li>\n<li>Show more information about uploading errors when they occur.</li>\n<li>When inserting an image into a post, don’t forget the alternative text.</li>\n<li>Fixes for the new admin button styles.</li>\n<li>Improvements for mobile devices, Internet Explorer, and right-to-left languages.</li>\n<li>Fix cookies for subdomain installs when multisite is installed in a subdirectory.</li>\n<li>Fix ms-files.php rewriting for very old multisite installs.</li>\n</ul>\n<p>At this point, we only have a <a href=\"http://core.trac.wordpress.org/report/5\">few minor issues</a> left. If all goes well, you will see WordPress 3.5 very soon. If you run into any issues, please post to the <a href=\"http://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area in the support forums</a>.</p>\n<p>If you’d like to know what to test, visit the About page (<strong><img style=\"vertical-align: middle\" alt=\"\" src=\"http://wordpress.org/wp-content/themes/twentyten/images/wordpress.png\" /> → About</strong> in the toolbar) and check out the list of features. This is still development software, so your boss may get mad if you install this on a live site. To test WordPress 3.5, try the <a href=\"http://wordpress.org/extend/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href=\"http://wordpress.org/wordpress-3.5-RC3.zip\">download the release candidate here (zip)</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"http://wordpress.org/news/2012/12/wordpress-3-5-release-candidate-3/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:45:\"\n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"WordPress 3.5 Release Candidate 2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"http://wordpress.org/news/2012/11/wordpress-3-5-release-candidate-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"http://wordpress.org/news/2012/11/wordpress-3-5-release-candidate-2/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 29 Nov 2012 19:55:12 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:7:\"Testing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=2494\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:339:\"The second release candidate for WordPress 3.5 is now available for download and testing. We’re still working on about a dozen remaining issues, but we hope to deliver WordPress 3.5 to your hands as early as next week. If you’d like to know what to test, visit the About page ( → About in the toolbar) and check out [...]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:1509:\"<p>The second release candidate for WordPress 3.5 is now available for download and testing.</p>\n<p>We’re still working on about a dozen remaining issues, but we hope to deliver WordPress 3.5 to your hands as early as next week. If you’d like to know what to test, visit the About page (<strong><img alt=\"\" src=\"http://wordpress.org/wp-content/themes/twentyten/images/wordpress.png\" /> → About</strong> in the toolbar) and check out the list of features! As usual, this is still development software and we suggest you do not install this on a live site unless you are adventurous.</p>\n<p><strong>Think you’ve found a bug?</strong> Please post to the <a href=\"http://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area in the support forums</a>.</p>\n<p><strong>Developers,</strong> please continue to test your plugins and themes, so that if there is a compatibility issue, we can figure it out before the final release. You can find our <a href=\"http://core.trac.wordpress.org/report/6\">list of known issues here</a>.</p>\n<p>To test WordPress 3.5, try the <a href=\"http://wordpress.org/extend/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href=\"http://wordpress.org/wordpress-3.5-RC2.zip\">download the release candidate here (zip)</a>.</p>\n<p><em>–<br />\n</em><em>We are getting close<br />\n</em><em>Should have asked for haiku help<br />\n</em><em>Please test RC2</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"http://wordpress.org/news/2012/11/wordpress-3-5-release-candidate-2/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:45:\"\n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"WordPress 3.5 Release Candidate\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"http://wordpress.org/news/2012/11/wordpress-3-5-release-candidate/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"http://wordpress.org/news/2012/11/wordpress-3-5-release-candidate/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 22 Nov 2012 13:35:09 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:7:\"Testing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=2479\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:341:\"The first release candidate for WordPress 3.5 is now available. We hope to ship WordPress 3.5 in two weeks. But to do that, we need your help! If you haven’t tested 3.5 yet, there’s no time like the present. (The oft-repeated warning: Please, not on a live site, unless you’re adventurous.) Think you’ve found a [...]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:1545:\"<p>The first release candidate for WordPress 3.5 is now available.</p>\n<p>We hope to ship WordPress 3.5 in <em>two weeks</em>. But to do that, we need your help! If you haven’t tested 3.5 yet, there’s no time like the present. (The oft-repeated warning: Please, not on a live site, unless you’re adventurous.)</p>\n<p><strong>Think you’ve found a bug?</strong> Please post to the <a href=\"http://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area in the support forums</a>. If any known issues come up, you’ll be able to <a href=\"http://core.trac.wordpress.org/report/6\">find them here</a>. <strong>Developers,</strong> please test your plugins and themes, so that if there is a compatibility issue, we can figure it out before the final release.</p>\n<p>To test WordPress 3.5, try the <a href=\"http://wordpress.org/extend/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href=\"http://wordpress.org/wordpress-3.5-RC1.zip\">download the release candidate here (zip)</a>.</p>\n<p>If you’d like to know what to <del>break</del> test, visit the About page (<strong><img style=\"vertical-align: text-top\" alt=\"\" src=\"http://wordpress.org/wp-content/themes/twentyten/images/wordpress.png\" /> → About</strong> in the toolbar) and check out the list of features! Trust me, you want to try out media.</p>\n<p><em>Release candidate</em><br />\n<em>Three point five in two weeks time</em><br />\n<em>Please test all the things</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"http://wordpress.org/news/2012/11/wordpress-3-5-release-candidate/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:48:\"\n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 3.5 Beta 3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"http://wordpress.org/news/2012/11/wordpress-3-5-beta-3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"http://wordpress.org/news/2012/11/wordpress-3-5-beta-3/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 13 Nov 2012 04:26:23 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:7:\"Testing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=2467\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:341:\"The third beta release of WordPress 3.5 is now available for download and testing. Hey, developers! We expect to WordPress 3.5 to be ready in just a few short weeks. Please, please test your plugins and themes against beta 3. Media management has been rewritten, and we’ve taken great pains to ensure most plugins will work the [...]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:2677:\"<p>The third beta release of WordPress 3.5 is now available for download and testing.</p>\n<p><strong>Hey, developers!</strong> We expect to WordPress 3.5 to be ready in just a few short weeks. <em>Please, please</em> test your plugins and themes against beta 3. Media management has been rewritten, and we’ve taken great pains to ensure most plugins will work the same as before, but we’re not perfect. We would like to hear about any incompatibilities we’ve caused so we can work with you to address them <em>before</em> release, rather than after. I think you’ll agree it’s much better that way. <img src=\'http://wordpress.org/news/wp-includes/images/smilies/icon_smile.gif\' alt=\':-)\' class=\'wp-smiley\' /> </p>\n<p>To test WordPress 3.5, try the <a href=\"http://wordpress.org/extend/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href=\"http://wordpress.org/wordpress-3.5-beta3.zip\">download the beta here</a> (zip). For more on 3.5, <a title=\"WordPress 3.5 Beta 1\" href=\"http://wordpress.org/news/2012/09/wordpress-3-5-beta-1/\">check out the extensive Beta 1 blog post</a>, which covers what’s new in version 3.5 and how you can help. We made <a href=\"http://core.trac.wordpress.org/log/trunk?action=stop_on_copy&mode=stop_on_copy&rev=22557&stop_rev=22224&limit=400\">more than 300 changes</a> since <a href=\"http://wordpress.org/news/2012/10/wordpress-3-5-beta-2/\">beta 2</a>. <span style=\"line-height: 13px\">At this point, the Add Media dialog is complete, and we’re now just working on fixing up inserting images into the editor. We’ve also u</span>pdated to jQuery UI 1.9.1, SimplePie 1.3.1, and TinyMCE 3.5.7.</p>\n<p>The usual warnings apply: We can see the light at the end of the tunnel, but this is software still in development, so we don’t recommend that you run it on a production site. Set up a test site to play with the new version.</p>\n<p>As always, if you think you’ve found a bug, you can post to the <a href=\"http://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums. Or, if you’re comfortable writing a reproducible bug report, <a href=\"http://core.trac.wordpress.org/\">file one on the WordPress Trac</a>. There, you can also find <a href=\"http://core.trac.wordpress.org/report/5\">a list of known bugs</a> and <a href=\"http://core.trac.wordpress.org/query?status=closed&group=component&milestone=3.5\">everything we’ve fixed</a> so far.</p>\n<p><em>Beta three is out</em><br />\n<em>Soon, a release candidate</em><br />\n<em>Three point five is near</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"http://wordpress.org/news/2012/11/wordpress-3-5-beta-3/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:45:\"\n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 3.5 Beta 2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"http://wordpress.org/news/2012/10/wordpress-3-5-beta-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"http://wordpress.org/news/2012/10/wordpress-3-5-beta-2/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 13 Oct 2012 00:02:08 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:7:\"Testing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=2458\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:342:\"Two weeks after the first beta, WordPress 3.5 Beta 2 is now available for download and testing. This is software still in development, so we don’t recommend that you run it on a production site. Set up a test site to play with the new version. To test WordPress 3.5, try the WordPress Beta Tester plugin (you’ll want “bleeding [...]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:1856:\"<p>Two weeks after the first beta, WordPress 3.5 Beta 2 is now available for download and testing.</p>\n<p>This is software still in development, so we don’t recommend that you run it on a production site. Set up a test site to play with the new version. To test WordPress 3.5, try the <a href=\"http://wordpress.org/extend/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href=\"http://wordpress.org/wordpress-3.5-beta2.zip\">download the beta here</a> (zip).</p>\n<p>For more, <a title=\"WordPress 3.5 Beta 1\" href=\"http://wordpress.org/news/2012/09/wordpress-3-5-beta-1/\"><strong>check out the extensive Beta 1 blog post</strong></a>, which covers what’s new in version 3.5 and how you can help. What’s new since beta 1? I’m glad you asked:</p>\n<ul>\n<li>New workflow for working with image galleries, including drag-and-drop reordering and quick caption editing.</li>\n<li>New image editing API. (<a title=\"Ticket 6821\" href=\"http://core.trac.wordpress.org/ticket/6821\">#6821</a>)</li>\n<li><del>New user interface for setting static front pages for the Reading Settings screen. (<a title=\"Ticket 16379\" href=\"http://core.trac.wordpress.org/ticket/16379\">#16379</a>)</del></li>\n</ul>\n<p>As always, if you think you’ve found a bug, you can post to the <a href=\"http://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums. Or, if you’re comfortable writing a reproducible bug report, <a href=\"http://core.trac.wordpress.org/\">file one on the WordPress Trac</a>. There, you can also find <a href=\"http://core.trac.wordpress.org/report/5\">a list of known bugs</a> and <a href=\"http://core.trac.wordpress.org/query?status=closed&group=component&milestone=3.5\">everything we’ve fixed</a> so far. Happy testing!</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"http://wordpress.org/news/2012/10/wordpress-3-5-beta-2/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:45:\"\n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"WordPress 3.5 Beta 1 (and a bonus!)\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"http://wordpress.org/news/2012/09/wordpress-3-5-beta-1/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"http://wordpress.org/news/2012/09/wordpress-3-5-beta-1/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 27 Sep 2012 22:37:49 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:7:\"Testing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=2443\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:376:\"I’m excited to announce the availability of WordPress 3.5 Beta 1. This is software still in development and we really don’t recommend that you run it on a production site — set up a test site just to play with the new version. To test WordPress 3.5, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can download [...]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:6696:\"<p>I’m excited to announce the availability of WordPress 3.5 Beta 1.</p>\n<p>This is software still in development and <strong>we <em>really</em> don’t recommend that you run it on a production site</strong> — set up a test site just to play with the new version. To test WordPress 3.5, try the <a href=\"http://wordpress.org/extend/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href=\"http://wordpress.org/wordpress-3.5-beta-1.zip\">download the beta here</a> (zip).</p>\n<p>In just three short months, we’ve already made a few hundred changes to improve your WordPress experience. The biggest thing we’ve been working on is overhauling the media experience from the ground up. We’ve made it all fair game: How you upload photos, arrange galleries, insert images into posts, and more. It’s still rough around the edges and some pieces are missing — which means now is the <em>perfect</em> time to test it out, report issues, and help shape our headline feature.</p>\n<p>As always, if you think you’ve found a bug, you can post to the <a href=\"http://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums. Or, if you’re comfortable writing a reproducible bug report, <a href=\"http://core.trac.wordpress.org/\">file one on the WordPress Trac</a>. There, you can also find <a href=\"http://core.trac.wordpress.org/report/5\">a list of known bugs</a> and <a href=\"http://core.trac.wordpress.org/query?status=closed&group=component&milestone=3.5\">everything we’ve fixed</a> so far.</p>\n<p>Here’s some more of what’s new:</p>\n<ul>\n<li><strong>Appearance: </strong>A simplified welcome screen. A new color picker. And the all-HiDPI (retina) dashboard.</li>\n<li><strong>Accessibility:</strong> Keyboard navigation and screen reader support have both been improved.</li>\n<li><strong>Plugins: </strong>You can browse and install plugins you’ve marked as favorites on WordPress.org, directly from your dashboard.</li>\n<li><strong>Mobile: </strong>It’ll be easier to link up your WordPress install with <a href=\"http://wordpress.org/extend/mobile/\">our mobile apps</a>, as XML-RPC is now enabled by default.</li>\n<li><strong>Links: </strong>We’ve hidden the Link Manager for new installs. (Don’t worry, <a href=\"http://wordpress.org/extend/plugins/link-manager/\">there’s a plugin for that</a>.)</li>\n</ul>\n<p><strong>Developers: </strong>We love you. We do. And one of the things we strive to do with every release is be compatible with all existing plugins and themes. To make sure we don’t break anything, we need your help. <strong>Please, please test your plugins and themes against 3.5.</strong> If something isn’t quite right, please let us know. (Chances are, it wasn’t intentional.) And despite all of the changes to media, we’re still aiming to be backwards compatible with plugins that make changes to the existing media library. It’s a tall task, and it means we need your help.</p>\n<p>Here’s some more things we think developers will enjoy (and should test their plugins and themes against):</p>\n<ul>\n<li><strong>External libraries updated:</strong> TinyMCE <del>3.5.6</del> 3.5.7. SimplePie <del>1.3</del> 1.3.1. jQuery <del>1.8.2</del> 1.8.3. jQuery UI <del>1.9 (and it’s not even released yet)</del> 1.9.2. We’ve also added Backbone 0.9.2 and Underscore <del>1.3.3</del> 1.4.2, and you can use protocol-relative links when enqueueing scripts and styles. (<a href=\"http://core.trac.wordpress.org/ticket/16560\">#16560</a>)</li>\n<li><strong>WP Query:</strong> You can now ask to receive posts in the order specified by <code>post__in</code>. (<a href=\"http://core.trac.wordpress.org/ticket/13729\">#13729</a>)</li>\n<li><strong>XML-RPC:</strong> New user management, profile editing, and post revision methods. We’ve also removed AtomPub. (<a href=\"http://core.trac.wordpress.org/ticket/18428\">#18428</a>, <a href=\"http://core.trac.wordpress.org/ticket/21397\">#21397</a>, <a href=\"http://core.trac.wordpress.org/ticket/21866\">#21866</a>)</li>\n<li><strong>Multisite: </strong>switch_to_blog() is now used in more places, is faster, and more reliable. Also: You can now use multisite in a subdirectory, and uploaded files no longer go through ms-files (for new installs). (<a href=\"http://core.trac.wordpress.org/ticket/21434\">#21434</a>, <a href=\"http://core.trac.wordpress.org/ticket/19796\">#19796</a>, <a href=\"http://core.trac.wordpress.org/ticket/19235\">#19235</a>)</li>\n<li><strong>TinyMCE: </strong>We’ve added an experimental API for “views” which you can use to offer previews and interaction of elements from the visual editor. (<a href=\"http://core.trac.wordpress.org/ticket/21812\">#21812</a>)</li>\n<li><strong>Posts API: </strong>Major performance improvements when working with hierarchies of pages and post ancestors. Also, you can now “turn on” native custom columns for taxonomies on edit post screens. (<a href=\"http://core.trac.wordpress.org/ticket/11399\">#11399</a>, <a href=\"http://core.trac.wordpress.org/ticket/21309\">#21309</a>, <a href=\"http://core.trac.wordpress.org/ticket/21240\">#21240</a>)</li>\n<li><strong>Comments API:</strong> Search for comments of a particular status, or with a meta query (same as with WP_Query). (<a href=\"http://core.trac.wordpress.org/ticket/21101\">#21101</a>, <a href=\"http://core.trac.wordpress.org/ticket/21003\">#21003</a>)</li>\n<li><strong>oEmbed: </strong>We’ve added support for a few oEmbed providers, and we now handle SSL links. (<a href=\"http://core.trac.wordpress.org/ticket/15734\">#15734</a>, <a href=\"http://core.trac.wordpress.org/ticket/21635\">#21635</a>, <a href=\"http://core.trac.wordpress.org/ticket/16996\">#16996</a>, <a href=\"http://core.trac.wordpress.org/ticket/20102\">#20102</a>)</li>\n</ul>\n<p>We’re looking forward to your feedback. If you break it (find a bug), please report it, and if you’re a developer, try to help us fix it. We’ve already had more than 200 contributors to version 3.5 — come join us!</p>\n<h3>And as promised, a bonus:</h3>\n<p>We’re planning a December 5 release for WordPress 3.5. But, we have a special offering for you, today. The newest default theme for WordPress, <strong>Twenty</strong><strong> Twelve</strong>, is now <a href=\"http://wordpress.org/extend/themes/twentytwelve\">available for download</a> from the WordPress themes directory. It’s a gorgeous and fully responsive theme, and it works with WordPress 3.4.2. Take it for a spin!</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"http://wordpress.org/news/2012/09/wordpress-3-5-beta-1/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:45:\"\n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"WordPress 3.4.2 Maintenance and Security Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"http://wordpress.org/news/2012/09/wordpress-3-4-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"http://wordpress.org/news/2012/09/wordpress-3-4-2/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 06 Sep 2012 20:07:21 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=2426\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:355:\"WordPress 3.4.2, now available for download, is a maintenance and security release for all previous versions. After nearly 15 million downloads since 3.4 was released not three months ago, we’ve identified and fixed a number of nagging bugs, including: Fix some issues with older browsers in the administration area. Fix an issue where a theme [...]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:1443:\"<p>WordPress 3.4.2, now available for download, is a maintenance and security release for all previous versions.</p>\n<p>After nearly 15 million downloads since 3.4 was released not three months ago, we’ve <a href=\"http://core.trac.wordpress.org/query?status=closed&resolution=fixed&milestone=3.4.2&group=resolution&order=severity&desc=1\">identified and fixed a number of nagging bugs</a>, including:</p>\n<ul>\n<li>Fix some issues with older browsers in the administration area.</li>\n<li>Fix an issue where a theme may not preview correctly, or its screenshot may not be displayed.</li>\n<li>Improve plugin compatibility with the visual editor.</li>\n<li>Address pagination problems with some category permalink structures.</li>\n<li>Avoid errors with both oEmbed providers and trackbacks.</li>\n<li>Prevent improperly sized header images from being uploaded.</li>\n</ul>\n<p>Version 3.4.2 also fixes a few security issues and contains some security hardening. The vulnerabilities included potential privilege escalation and a bug that affects multisite installs with untrusted users. These issues were discovered and fixed by the WordPress security team.</p>\n<p><a href=\"http://wordpress.org/download/\"><strong>Download 3.4.2</strong></a><strong> now or visit Dashboard → Updates in your site admin to update now.</strong></p>\n<p><em>Fixes for some bugs<br />\nBack to work on 3.5<br />\nIt’s time to update</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"http://wordpress.org/news/2012/09/wordpress-3-4-2/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:31:\"http://wordpress.org/news/feed/\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:44:\"http://purl.org/rss/1.0/modules/syndication/\";a:2:{s:12:\"updatePeriod\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"hourly\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:15:\"updateFrequency\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";a:8:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Thu, 14 Feb 2013 11:34:06 GMT\";s:12:\"content-type\";s:23:\"text/xml; charset=UTF-8\";s:10:\"connection\";s:5:\"close\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:10:\"x-pingback\";s:36:\"http://wordpress.org/news/xmlrpc.php\";s:13:\"last-modified\";s:29:\"Thu, 24 Jan 2013 22:23:03 GMT\";s:4:\"x-nc\";s:11:\"HIT luv 138\";}s:5:\"build\";s:14:\"20130214112749\";}','no'),(118,'_transient_timeout_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca','1360884711','no'),(119,'_transient_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca','1360841511','no'),(120,'_transient_timeout_dash_4077549d03da2e451c8b5f002294ff51','1360884711','no'),(121,'_transient_dash_4077549d03da2e451c8b5f002294ff51','<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'http://wordpress.org/news/2013/01/wordpress-3-5-1/\' title=\'WordPress 3.5.1 is now available. Version 3.5.1 is the first maintenance release of 3.5, fixing 37 bugs. It is also a security release for all previous WordPress versions. For a full list of changes, consult the list of tickets and the changelog, which include: Editor: Prevent certain HTML elements from being unexpectedly removed or modified in rare […]\'>WordPress 3.5.1 Maintenance and Security Release</a> <span class=\"rss-date\">January 24, 2013</span><div class=\'rssSummary\'>WordPress 3.5.1 is now available. Version 3.5.1 is the first maintenance release of 3.5, fixing 37 bugs. It is also a security release for all previous WordPress versions. For a full list of changes, consult the list of tickets and the changelog, which include: Editor: Prevent certain HTML elements from being unexpectedly removed or modified in rare […]</div></li><li><a class=\'rsswidget\' href=\'http://wordpress.org/news/2013/01/2012-a-look-back/\' title=\'Another year is coming to a close, and it’s time to look back and reflect on what we’ve accomplished in the past twelve months. The WordPress community is stronger than ever, and some of the accomplishments of the past year are definitely worth remembering. Software Releases We had two major releases of the WordPress web […]\'>2012: A Look Back</a> <span class=\"rss-date\">January 1, 2013</span><div class=\'rssSummary\'>Another year is coming to a close, and it’s time to look back and reflect on what we’ve accomplished in the past twelve months. The WordPress community is stronger than ever, and some of the accomplishments of the past year are definitely worth remembering. Software Releases We had two major releases of the WordPress web […]</div></li></ul></div>','no'),(122,'_transient_timeout_feed_867bd5c64f85878d03a060509cd2f92c','1360884713','no'),(123,'_transient_feed_867bd5c64f85878d03a060509cd2f92c','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:61:\"\n \n \n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"WordPress Planet\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"en\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"WordPress Planet - http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:50:{i:0;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"WordPress.tv: <NAME>: Site Performance: From Pinto to Ferrari\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"http://wordpress.tv/?p=8070\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"http://wordpress.tv/2013/02/14/joseph-scott-site-performance-from-pinto-to-ferrari-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:661:\"<div id=\"v-2wUzQhJy-1\" class=\"video-player\">\n</div>\n<br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/8070/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/8070/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=8070&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/02/14/joseph-scott-site-performance-from-pinto-to-ferrari-2/\"><img alt=\"Site Performance-JosephC\" src=\"http://videos.videopress.com/2wUzQhJy/site-performance-josephc_std.original.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 14 Feb 2013 07:00:55 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:110:\"WordPress.tv: <NAME>: Why we click publish – Advocating for user-centricity through interaction design\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=13212\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:123:\"http://wordpress.tv/2013/02/14/taylor-dewey-why-we-click-publish-advocating-for-user-centricity-through-interaction-design/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:771:\"<div id=\"v-Drz5gns1-1\" class=\"video-player\">\n</div>\n<br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/13212/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/13212/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=13212&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/02/14/taylor-dewey-why-we-click-publish-advocating-for-user-centricity-through-interaction-design/\"><img alt=\"<NAME>: Why we click publish – Advocating for user-centricity through interaction design\" src=\"http://videos.videopress.com/Drz5gns1/sequence-01_scruberthumbnail_4.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 14 Feb 2013 07:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"Weblog Tools Collection: WordPress Theme Releases for 2/13\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"http://weblogtoolscollection.com/?p=12643\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"http://feedproxy.google.com/~r/weblogtoolscollection/UXMP/~3/A0IB4mmhIQk/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2284:\"<p><a href=\"http://3oneseven.com/18/bt-extended-wordpress-theme/\"><img class=\"alignnone size-thumbnail wp-image-12645\" alt=\"screenshot\" src=\"http://i1.wp.com/weblogtoolscollection.com/wp-content/uploads/2013/02/screenshot2.png?resize=150%2C150\" /></a></p>\n<p><a href=\"http://3oneseven.com/18/bt-extended-wordpress-theme/\"><strong>BT Extended</strong></a> is a newspaper style with a responsive four column fluid layout.</p>\n<p><a href=\"http://emptynestthemes.com/2013/02/12/cocoa-wordpress-website-theme/\"><img class=\"alignnone size-thumbnail wp-image-12644\" alt=\"DemoBlog\" src=\"http://i1.wp.com/weblogtoolscollection.com/wp-content/uploads/2013/02/DemoBlog1.png?resize=150%2C150\" /></a></p>\n<p><a href=\"http://emptynestthemes.com/2013/02/12/cocoa-wordpress-website-theme/\"><strong>Cocoa</strong></a> is a basic, simple, minimalist theme of browns and black with just a touch of cinnamon red thrown in for flavor.</p>\n<p><a href=\"http://wordpress.org/extend/themes/columbus\"><img class=\"alignnone size-thumbnail wp-image-12646\" alt=\"screenshot-1\" src=\"http://i1.wp.com/weblogtoolscollection.com/wp-content/uploads/2013/02/screenshot-12.png?resize=150%2C150\" /></a></p>\n<p><a href=\"http://wordpress.org/extend/themes/columbus\"><strong>Columbus</strong></a> is a real estate theme with a two-column layout and top-level page navigation.</p>\n<p><a href=\"http://wordpress.org/extend/themes/photogram\"><img class=\"alignnone size-thumbnail wp-image-12647\" alt=\"screenshot-2\" src=\"http://i2.wp.com/weblogtoolscollection.com/wp-content/uploads/2013/02/screenshot-21.png?resize=150%2C150\" /></a></p>\n<p><a href=\"http://wordpress.org/extend/themes/photogram\"><strong>Photogram</strong></a> is designed to integrate your WordPress site with Instagram and Pinterest in a few simple clicks.</p>\n<p><a href=\"http://wordpress.org/extend/themes/simplify\"><img class=\"alignnone size-thumbnail wp-image-12648\" alt=\"screenshot-3\" src=\"http://i2.wp.com/weblogtoolscollection.com/wp-content/uploads/2013/02/screenshot-31.png?resize=150%2C150\" /></a></p>\n<p><a href=\"http://wordpress.org/extend/themes/simplify\"><strong>Simplify</strong></a> is a responsive theme designed for small businesses.</p>\n<img src=\"http://feeds.feedburner.com/~r/weblogtoolscollection/UXMP/~4/A0IB4mmhIQk\" height=\"1\" width=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 13 Feb 2013 19:26:51 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"James\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"WordPress.tv: Curtiss Grymala: WordPress Multisite and Beyond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=13946\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"http://wordpress.tv/2013/02/13/curtiss-grymala-wordpress-multisite-and-beyond/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:677:\"<div id=\"v-LvCLFw8o-1\" class=\"video-player\">\n</div>\n<br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/13946/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/13946/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=13946&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/02/13/curtiss-grymala-wordpress-multisite-and-beyond/\"><img alt=\"<NAME>: WordPress Multisite and Beyond\" src=\"http://videos.videopress.com/LvCLFw8o/curtiss-grymala_scruberthumbnail_0.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 13 Feb 2013 19:00:55 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"WordPress.tv: Mike Schroder: Image Manipulation in WordPress 3.5\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=16101\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"http://wordpress.tv/2013/02/13/mike-schroder-image-manipulation-in-wordpress-3-5/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:663:\"<div id=\"v-fBduPR3G-1\" class=\"video-player\">\n</div>\n<br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/16101/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/16101/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=16101&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/02/13/mike-schroder-image-manipulation-in-wordpress-3-5/\"><img alt=\"Image Manipulation in WordPress 3.5\" src=\"http://videos.videopress.com/fBduPR3G/video-8eb54ee9f3_std.original.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 13 Feb 2013 19:00:40 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"WordPress.tv: Erick Hitter: From URL to Query\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=16093\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"http://wordpress.tv/2013/02/13/erick-hitter-from-url-to-query/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:640:\"<div id=\"v-ztQPDLYS-1\" class=\"video-player\">\n</div>\n<br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/16093/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/16093/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=16093&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/02/13/erick-hitter-from-url-to-query/\"><img alt=\"Erick Hitter: From URL to Query\" src=\"http://videos.videopress.com/ztQPDLYS/video-c795611c2b_std.original.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 13 Feb 2013 07:00:32 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"WordPress.tv: <NAME>: Advanced Actions and Filters\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=16089\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"http://wordpress.tv/2013/02/13/alison-barrett-advanced-actions-and-filters/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:666:\"<div id=\"v-uRqun6EN-1\" class=\"video-player\">\n</div>\n<br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/16089/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/16089/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=16089&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/02/13/alison-barrett-advanced-actions-and-filters/\"><img alt=\"<NAME>: Advanced Actions and Filters\" src=\"http://videos.videopress.com/uRqun6EN/video-c12a8df95c_std.original.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 13 Feb 2013 07:00:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:98:\"WordPress.tv: <NAME> & <NAME>: do_action(‘hack_me’) Advanced Security for Plugins\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=16091\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:101:\"http://wordpress.tv/2013/02/12/kurt-payne-josh-hansen-do_actionhack_me-advanced-security-for-plugins/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:704:\"<div id=\"v-X6NJiyR4-1\" class=\"video-player\">\n</div>\n<br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/16091/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/16091/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=16091&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/02/12/kurt-payne-josh-hansen-do_actionhack_me-advanced-security-for-plugins/\"><img alt=\"<NAME> & <NAME>: do_action(‘hack_me’)\" src=\"http://videos.videopress.com/X6NJiyR4/video-6c8e9a79cc_scruberthumbnail_0.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 12 Feb 2013 22:23:18 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:116:\"WordPress.tv: <NAME>, <NAME>, <NAME>, and <NAME>: But don’t you know who I am?\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=13479\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:125:\"http://wordpress.tv/2013/02/12/ilene-haddad-crystal-r-r-edwards-amanda-quraishi-and-corrin-foster-but-dont-you-know-who-i-am/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:781:\"<div id=\"v-EYPcAEhO-1\" class=\"video-player\">\n</div>\n<br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/13479/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/13479/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=13479&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/02/12/ilene-haddad-crystal-r-r-edwards-amanda-quraishi-and-corrin-foster-but-dont-you-know-who-i-am/\"><img alt=\"<NAME>, <NAME>, <NAME>, and <NAME>: But dont you know who I am?\" src=\"http://videos.videopress.com/EYPcAEhO/but-dont-you-know-who-i-am_std.original.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 12 Feb 2013 22:18:07 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"WordPress.tv: <NAME>: Content is King\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=13415\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"http://wordpress.tv/2013/02/11/eric-weiss-content-is-king/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:626:\"<div id=\"v-IaFYaXvU-1\" class=\"video-player\">\n</div>\n<br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/13415/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/13415/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=13415&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/02/11/eric-weiss-content-is-king/\"><img alt=\"<NAME>: Content is King\" src=\"http://videos.videopress.com/IaFYaXvU/eric-weiss_std.original.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 12 Feb 2013 05:37:44 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:10;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"WordPress.tv: <NAME>: Adding source control to your code and life\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=16115\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:87:\"http://wordpress.tv/2013/02/11/mark-kelnar-adding-source-control-to-your-code-and-life/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:696:\"<div id=\"v-PmK7IYSf-1\" class=\"video-player\">\n</div>\n<br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/16115/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/16115/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=16115&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/02/11/mark-kelnar-adding-source-control-to-your-code-and-life/\"><img alt=\"<NAME>: Adding source control to your code and life\" src=\"http://videos.videopress.com/PmK7IYSf/video-8575099a96_scruberthumbnail_0.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 12 Feb 2013 05:32:35 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Michael\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:11;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"Weblog Tools Collection: WordPress Plugin Releases for 2/11\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"http://weblogtoolscollection.com/?p=12639\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"http://feedproxy.google.com/~r/weblogtoolscollection/UXMP/~3/RDb_qZjtN1E/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1205:\"<h3>New plugins</h3>\n<p><a href=\"http://wordpress.org/extend/plugins/facetious/\"><strong>Facetious</strong></a> lets you add a faceted – often called an ‘advanced’ – search form to your website.</p>\n<p><a href=\"http://wordpress.org/extend/plugins/wp-snippets/\"><strong>WP Snippets</strong></a> makes it very easy to reuse fragments of content (i.e. Snippets).</p>\n<h3>Updated plugins</h3>\n<p><a href=\"http://wordpress.org/extend/plugins/facebook/\"><strong>Facebook</strong></a> makes your site deeply social by integrating functionality from Facebook.</p>\n<p><a href=\"http://blog.milandinic.com/wordpress/plugins/nav-menu-images/\"><strong>Nav Menu Images</strong></a> enables uploading of images for nav menu items on the menu edit screen.</p>\n<p><a href=\"http://wordpress.org/extend/plugins/osm/\"><strong>OSM</strong></a> displays maps in your WordPress blog using the OpenLayers technology.</p>\n<p><a href=\"http://wordpress.org/extend/plugins/w3-total-cache/\"><strong>W3 Total Cache</strong></a> allows you to improve site performance and user experience via caching.</p>\n<img src=\"http://feeds.feedburner.com/~r/weblogtoolscollection/UXMP/~4/RDb_qZjtN1E\" height=\"1\" width=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 11 Feb 2013 19:40:17 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"James\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:12;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"WordPress.tv: <NAME>: Community – Getting Involved\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=13354\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"http://wordpress.tv/2013/02/11/aaron-campbell-community-getting-involved/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:664:\"<div id=\"v-4uEnKjLb-1\" class=\"video-player\">\n</div>\n<br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/13354/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/13354/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=13354&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/02/11/aaron-campbell-community-getting-involved/\"><img alt=\"<NAME>: Community – Getting Involved\" src=\"http://videos.videopress.com/4uEnKjLb/aaron-campbell_std.original.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 11 Feb 2013 07:54:18 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:13;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"<NAME>: WordPress 3 for Business Bloggers\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"http://zed1.com/journalized/?p=1847\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:159:\"http://zed1.com/journalized/archives/2012/03/11/wordpress-3-for-business-bloggers/?utm_source=rss&utm_medium=rss&utm_campaign=wordpress-3-for-business-bloggers\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1041:\"<p>I’m currently reading <a href=\"http://www.packtpub.com/wordpress-3-for-business-bloggers/book\">WordPress 3 for Business Bloggers</a><a href=\"http://www.packtpub.com/wordpress-3-for-business-bloggers/book\"><img class=\"alignright\" title=\"WordPress 3 for Business Bloggers\" src=\"https://www.packtpub.com/sites/default/files/imagecache/productview/1322OS_WordPress%203%20for%20Business%20Bloggers_Frontcover.jpg\" alt=\"\" width=\"124\" height=\"152\" /></a> by <NAME>. I’m trying to squeeze it in between all the other stuff I seem to have on my plate. I read the first edition of the book a couple of years ago (though I can’t find my review to point to); so I’m looking forward to this one.</p>\n<p>I’ll post a proper review when I’ve finished it.</p>\n<p> </p>\n<p>The post <a href=\"http://zed1.com/journalized/archives/2012/03/11/wordpress-3-for-business-bloggers/\">WordPress 3 for Business Bloggers</a> appeared first on <a href=\"http://zed1.com/journalized\">Mike Little's Journalized</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 10 Feb 2013 17:00:14 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:14;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"WordPress.tv: Cliff Seal: Content Strategy – No one cares about your content (yet.)\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=15209\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:95:\"http://wordpress.tv/2013/02/09/cliff-seal-content-strategy-no-one-cares-about-your-content-yet/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:710:\"<div id=\"v-7wXyrfye-1\" class=\"video-player\">\n</div>\n<br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/15209/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/15209/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=15209&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/02/09/cliff-seal-content-strategy-no-one-cares-about-your-content-yet/\"><img alt=\"Cliff Seal: Content Strategy – No one cares about your content yet\" src=\"http://videos.videopress.com/7wXyrfye/video-93ee0cad15_std.original.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 09 Feb 2013 18:29:33 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:15;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"WordPress.tv: <NAME>: Building Community and Audience\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=15213\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"http://wordpress.tv/2013/02/09/michelle-weber-building-community-and-audience/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:672:\"<div id=\"v-u5BaReqk-1\" class=\"video-player\">\n</div>\n<br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/15213/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/15213/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=15213&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/02/09/michelle-weber-building-community-and-audience/\"><img alt=\"Michelle Weber: Building Community and Audience\" src=\"http://videos.videopress.com/u5BaReqk/video-ab3ad3bd8c_std.original.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 09 Feb 2013 18:05:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:16;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"WordPress.tv: <NAME>: Keeping It Simple\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=13388\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"http://wordpress.tv/2013/02/09/stephanie-leary-keeping-it-simple/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:645:\"<div id=\"v-JyDhhcUe-1\" class=\"video-player\">\n</div>\n<br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/13388/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/13388/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=13388&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/02/09/stephanie-leary-keeping-it-simple/\"><img alt=\"<NAME>: Keeping It Simple\" src=\"http://videos.videopress.com/JyDhhcUe/stephanie-leary_std.original.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 09 Feb 2013 13:02:20 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:17;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"WordPress.tv: <NAME>: The Query, the Whole Query, and Nothing But the Query\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=13475\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:98:\"http://wordpress.tv/2013/02/08/chris-olbekson-the-query-the-whole-query-and-nothing-but-the-query/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:712:\"<div id=\"v-A54BEabm-1\" class=\"video-player\">\n</div>\n<br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/13475/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/13475/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=13475&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/02/08/chris-olbekson-the-query-the-whole-query-and-nothing-but-the-query/\"><img alt=\"<NAME>: The Query, the Whole Query, and Nothing But the Query\" src=\"http://videos.videopress.com/A54BEabm/chris-olbekson_std.original.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 09 Feb 2013 12:45:05 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:18;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:90:\"WordPress.tv: <NAME>: DIY WordPress Websites for Small Businesses and Non-profits\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=15144\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:107:\"http://wordpress.tv/2013/02/08/christie-kerner-diy-wordpress-websites-for-small-businesses-and-non-profits/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:697:\"<div id=\"v-OZC3ou0i-1\" class=\"video-player\">\n</div>\n<br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/15144/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/15144/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=15144&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/02/08/christie-kerner-diy-wordpress-websites-for-small-businesses-and-non-profits/\"><img alt=\"Bogle 6-H264 MOV 640×360 16×9.mov\" src=\"http://videos.videopress.com/OZC3ou0i/video-9eb125dbd9_std.original.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 08 Feb 2013 19:41:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:19;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:37:\"WordPress.tv: April Holle: SEO Basics\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=15215\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"http://wordpress.tv/2013/02/08/april-holle-seo-basics/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:652:\"<div id=\"v-lLkO27bX-1\" class=\"video-player\">\n</div>\n<br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/15215/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/15215/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=15215&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/02/08/april-holle-seo-basics/\"><img alt=\"FRI 201 4-H264 MOV 640×360 16×9.mov\" src=\"http://videos.videopress.com/lLkO27bX/video-d1bf64d338_scruberthumbnail_0.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 08 Feb 2013 19:34:04 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:20;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"Weblog Tools Collection: WordPress Theme Releases for 2/8\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"http://weblogtoolscollection.com/?p=12628\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"http://feedproxy.google.com/~r/weblogtoolscollection/UXMP/~3/yGIy7LLcM9o/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2261:\"<p><a href=\"http://emptynestthemes.com/2013/02/07/bubbly-wordpress-theme/\"><img class=\"alignnone size-thumbnail wp-image-12629\" alt=\"DemoBlog\" src=\"http://i2.wp.com/weblogtoolscollection.com/wp-content/uploads/2013/02/DemoBlog.png?resize=150%2C150\" /></a></p>\n<p><a href=\"http://emptynestthemes.com/2013/02/07/bubbly-wordpress-theme/\"><strong>Bubbly</strong></a> is an attractive theme with green and touches of white on a subtle background of light bubbles.</p>\n<p><a href=\"http://wordpress.org/extend/themes/forever\"><img class=\"alignnone size-thumbnail wp-image-12630\" alt=\"screenshot\" src=\"http://i1.wp.com/weblogtoolscollection.com/wp-content/uploads/2013/02/screenshot1.png?resize=150%2C150\" /></a></p>\n<p><a href=\"http://wordpress.org/extend/themes/forever\"><strong>Forever</strong></a> makes it easy to wrap your wedding up in a neat little blog.</p>\n<p><a href=\"http://wordpress.org/extend/themes/quintus\"><img class=\"alignnone size-thumbnail wp-image-12631\" alt=\"screenshot-1\" src=\"http://i0.wp.com/weblogtoolscollection.com/wp-content/uploads/2013/02/screenshot-11.png?resize=150%2C150\" /></a></p>\n<p><a href=\"http://wordpress.org/extend/themes/quintus\"><strong>Quintus</strong></a> has an old-style appeal with semi-academic graciousness and elegant typography.</p>\n<p><a href=\"http://wordpress.org/extend/themes/reddle\"><img class=\"alignnone size-thumbnail wp-image-12632\" alt=\"screenshot-2\" src=\"http://i1.wp.com/weblogtoolscollection.com/wp-content/uploads/2013/02/screenshot-2.png?resize=150%2C150\" /></a></p>\n<p><a href=\"http://wordpress.org/extend/themes/reddle\"><strong>Reddle</strong></a> features a minimal design which elegantly adapts to how you want to use your blog and what you want to use it for.</p>\n<p><a href=\"http://wordpress.org/extend/themes/vertigo\"><img class=\"alignnone size-thumbnail wp-image-12633\" alt=\"screenshot-3\" src=\"http://i2.wp.com/weblogtoolscollection.com/wp-content/uploads/2013/02/screenshot-3.png?resize=150%2C150\" /></a></p>\n<p><a href=\"http://wordpress.org/extend/themes/vertigo\"><strong>Vertigo</strong></a> is a stylish and fun theme with one column, a custom header, and a custom accent color.</p>\n<img src=\"http://feeds.feedburner.com/~r/weblogtoolscollection/UXMP/~4/yGIy7LLcM9o\" height=\"1\" width=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 08 Feb 2013 14:00:51 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"James\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:21;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"WordPress.tv: Clark Wimberly – Mastering Custom Post Types\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=13465\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"http://wordpress.tv/2013/02/07/clark-wimberly-mastering-custom-post-types/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:637:\"<div id=\"v-4VregraN-1\" class=\"video-player\">\n</div>\n<br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/13465/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/13465/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=13465&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/02/07/clark-wimberly-mastering-custom-post-types/\"><img alt=\"Clark Wimberly 1\" src=\"http://videos.videopress.com/4VregraN/clark-wimberly-1_std.original.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 08 Feb 2013 04:58:38 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:22;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"WordPress.tv: <NAME>bs: WordPress File Structure, FTP & MySQL\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=15239\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"http://wordpress.tv/2013/02/07/brad-parbs-wordpress-file-structure-ftp-mysql/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:679:\"<div id=\"v-coAPTJ6f-1\" class=\"video-player\">\n</div>\n<br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/15239/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/15239/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=15239&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/02/07/brad-parbs-wordpress-file-structure-ftp-mysql/\"><img alt=\"<NAME>: WordPress File Structure, FTP & MySQL\" src=\"http://videos.videopress.com/coAPTJ6f/video-1c4757351e_scruberthumbnail_0.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 08 Feb 2013 04:57:12 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:23;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"WordPress.tv: <NAME>: 99 Problems But Content Ain’t One\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=15200\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"http://wordpress.tv/2013/02/07/joseph-manna-99-problems-but-content-aint-one/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:670:\"<div id=\"v-Go5lRoQx-1\" class=\"video-player\">\n</div>\n<br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/15200/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/15200/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=15200&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/02/07/joseph-manna-99-problems-but-content-aint-one/\"><img alt=\"SAT Main 5-H264 MOV 640×360 16×9.mov\" src=\"http://videos.videopress.com/Go5lRoQx/video-d3b1161381_std.original.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 07 Feb 2013 18:56:52 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:24;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"WordPress.tv: <NAME>: Backup & Security Lite\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=15257\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"http://wordpress.tv/2013/02/06/jeffrey-zinn-backup-and-security-lite/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:658:\"<div id=\"v-a3QSr7dL-1\" class=\"video-player\">\n</div>\n<br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/15257/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/15257/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=15257&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/02/06/jeffrey-zinn-backup-and-security-lite/\"><img alt=\"<NAME>: Backup & Security Lite\" src=\"http://videos.videopress.com/a3QSr7dL/video-4efecbca9e_scruberthumbnail_0.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 06 Feb 2013 22:30:08 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:25;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"WordPress.tv: Natalie MacLees: Setting up a WordPress Site the Right Way\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=15198\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:89:\"http://wordpress.tv/2013/02/06/natalie-maclees-setting-up-a-wordpress-site-the-right-way/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:683:\"<div id=\"v-SMuTX7Qe-1\" class=\"video-player\">\n</div>\n<br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/15198/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/15198/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=15198&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/02/06/natalie-maclees-setting-up-a-wordpress-site-the-right-way/\"><img alt=\"Setting up a WordPress Site the Right Way\" src=\"http://videos.videopress.com/SMuTX7Qe/video-eee34e87e7_scruberthumbnail_0.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 06 Feb 2013 22:30:08 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:26;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"WordPress.tv: <NAME>: Themes 101\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=15486\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"http://wordpress.tv/2013/02/06/chris-lema-themes-101/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:622:\"<div id=\"v-rDNp8DGo-1\" class=\"video-player\">\n</div>\n<br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/15486/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/15486/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=15486&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/02/06/chris-lema-themes-101/\"><img alt=\"<NAME>: Themes 101\" src=\"http://videos.videopress.com/rDNp8DGo/video-601e76c1cb_std.original.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 06 Feb 2013 22:30:08 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:27;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"WordPress.tv: <NAME>: User Experience\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=15211\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"http://wordpress.tv/2013/02/06/john-gough-user-experience/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:638:\"<div id=\"v-6aQncQh6-1\" class=\"video-player\">\n</div>\n<br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/15211/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/15211/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=15211&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/02/06/john-gough-user-experience/\"><img alt=\"<NAME>: User Experience\" src=\"http://videos.videopress.com/6aQncQh6/video-8bab05d8bd_scruberthumbnail_1.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 06 Feb 2013 22:30:08 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:28;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"Weblog Tools Collection: WordPress Plugin Releases for 2/6\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"http://weblogtoolscollection.com/?p=12621\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"http://feedproxy.google.com/~r/weblogtoolscollection/UXMP/~3/Y2ljoDNl4dQ/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1722:\"<h3>New plugins</h3>\n<p><a href=\"http://wordpress.org/extend/plugins/mobile-content/\"><strong>Mobile Content</strong></a> allows you to use shortcodes to display different content, in your posts or pages, depending on the device it is being viewed on.</p>\n<p><a href=\"http://wordpress.org/extend/plugins/sb-rss-feed-plus/\"><strong>SB RSS feed plus</strong></a> adds post thumbnails to RSS feed items.</p>\n<p><a href=\"http://wordpress.org/extend/plugins/shop-on-page-easy-simple-affiliate-ads-for-your-website/\"><strong>Shop On Page</strong></a> provides an easy and simple affiliate ad program for bloggers.</p>\n<h3>Updated plugins</h3>\n<p><a href=\"http://wordpress.org/extend/plugins/authy-two-factor-authentication/\"><strong>Authy Two Factor Authentication</strong></a> helps you proctect your WordPress site from hackers using simple two-factor authentication.</p>\n<p><a href=\"http://www.fastsecurecontactform.com/\"><strong>Fast Secure Contact Form</strong></a> lets your visitors send you a quick e-mail message and blocks all common spammer tactics. Additionally, the plugin has a multi-form feature, optional extra fields, and an option to redirect visitors to any URL after the message is sent.</p>\n<p><a href=\"http://jetpack.me/\"><strong>Jetpack</strong></a> allows you to supercharge your WordPress site with powerful features previously only available to <a href=\"http://wordpress.com/\">WordPress.com</a> users.</p>\n<p><a href=\"http://wordpress.org/extend/plugins/video/\"><strong>VideoPress</strong></a> allows you to manage and embed videos hosted on <a href=\"http://videopress.com/\">VideoPress</a>.</p>\n<img src=\"http://feeds.feedburner.com/~r/weblogtoolscollection/UXMP/~4/Y2ljoDNl4dQ\" height=\"1\" width=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 06 Feb 2013 14:00:26 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"James\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:29;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"Matt: Have A Virtual Meeting\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"http://ma.tt/?p=42131\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:44:\"http://ma.tt/2013/02/have-a-virtual-meeting/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:189:\"<p>I was interviewed by Fast Company on <a href=\"http://www.fastcompany.com/3004488/how-tohave-virtual-meeting\">How To Have A Virtual Meeting, which they turned into a neat article</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 05 Feb 2013 18:49:11 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:30;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"Weblog Tools Collection: WordCamp 2012 Roundup\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"http://weblogtoolscollection.com/?p=12616\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"http://feedproxy.google.com/~r/weblogtoolscollection/UXMP/~3/KOWt3nOP2hQ/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2165:\"<p>There’s no denying it, <a href=\"http://wordpress.org\">WordPress</a> is a big thing, so are <a href=\"http://central.wordcamp.org\">WordCamps</a>, and 2012 was bigger and better than ever for the popular WordPress conferences!</p>\n<p>There were a total of 67 WordCamps this year, up from 52 last year, with 34 in the US and 33 outside of the US, serving over 17,000 attendees, with 967 sessions and 877 speakers, all made possible by 498 generous sponsors!</p>\n<p>The amount of WordCamp videos published to <a href=\"http://wordpress.tv\">WordPress.tv</a> this year almost doubled to 445, probably due to the expansion of WordCamp Central’s video camera kit program, which does its best to make sure that every WordCamp has an affordable way to record every session. The program now holds 8 kits in the US, 3 in Canada, and 2 in Europe, so there’s probably a good chance that there’s a kit available for your WordCamp if you need it.</p>\n<p>To kickoff 2013, the <a href=\"http://make.wordpress.org/events/\">WordPress Events Contributor Group</a> was launched, and is looking for volunteers for <a href=\"http://make.wordpress.org/events/2012/11/13/wordpress-tv-event-video-management/\">WordPress.tv moderation</a>, <a href=\"http://make.wordpress.org/events/2012/11/13/event-planning-training-materials/\">materials for event planners</a>, <a href=\"http://make.wordpress.org/events/2012/11/13/new-organizer-mentorship-program/\">new WordCamp organizer mentorships</a>, <a href=\"http://make.wordpress.org/events/2012/08/20/multi-event-sponsorship-program/\">making it easier for organizations to sponsor multiple events</a>, <a href=\"http://make.wordpress.org/events/2012/11/13/wordcamp-base-theme-page-templates/\">improvements to the WordCamp Base theme</a>, and <a href=\"http://make.wordpress.org/events/2012/11/13/review-wordcamp-guidelines/\">reviewing the current WordCamp guidelines</a>.</p>\n<p>WordPress is your blogging platform, and WordCamp is your event, so please feel free to pitch-in if, when, and wherever you can this year!</p>\n<img src=\"http://feeds.feedburner.com/~r/weblogtoolscollection/UXMP/~4/KOWt3nOP2hQ\" height=\"1\" width=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 05 Feb 2013 14:00:17 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"James\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:31;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"WP Blackberry: Version 2.2.6 Now Available for BlackBerry 10 and PlayBook\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:38:\"http://blackberry.wordpress.org/?p=667\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"http://blackberry.wordpress.org/2013/02/05/version-2-2-6/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2217:\"<p><a href=\"http://wpblackberry.files.wordpress.com/2013/02/wpblackberry-for-blackberry-os10.jpg\"><img src=\"http://wpblackberry.files.wordpress.com/2013/02/wpblackberry-for-blackberry-os10.jpg?w=294&h=613\" alt=\"WordPress for BlackBerry OS10\" width=\"294\" height=\"613\" class=\"alignright size-medium wp-image-685\" /></a>Version 2.2.6 of WordPress for BlackBerry 10 and PlayBook is now available on the <a href=\"http://appworld.blackberry.com/webstore/content/78913\">BlackBerry World</a>.</p>\n<h3>What’s New?</h3>\n<p>The number one priority is to make the app more stable, and WordPress for BlackBerry now runs beautifully on both BlackBerry 10 devices and the PlayBook.</p>\n<ul>\n<li>Improved support for connecting over HTTPS.</li>\n<li>Stability improvements. We continue to make the app even more stable. In this release we fixed more than 20 bugs.</li>\n<li>Code cleanup and optimization.</li>\n</ul>\n<h3>What’s Next?</h3>\n<p>Development is continuing at a very rapid pace. We are already marching towards the next big release of the app. If you would like to get involved please visit <a href=\"http://make.wordpress.org/mobile\">make.wordpress.org/mobile</a>.</p>\n<p>What would you like to see improved in the app? Post a comment here or follow us on Twitter at <a href=\"http://twitter.com/wpblackberry\">@WPBlackBerry</a> to get in touch!</p>\n\n<a href=\"http://blackberry.wordpress.org/2013/02/05/version-2-2-6/img_00000007/\" title=\"IMG_00000007\"><img /></a>\n<a href=\"http://blackberry.wordpress.org/2013/02/05/version-2-2-6/img_00000008/\" title=\"IMG_00000008\"><img /></a>\n<a href=\"http://blackberry.wordpress.org/2013/02/05/version-2-2-6/img_00000009/\" title=\"IMG_00000009\"><img /></a>\n<a href=\"http://blackberry.wordpress.org/2013/02/05/version-2-2-6/img_00000012/\" title=\"IMG_00000012\"><img /></a>\n<a href=\"http://blackberry.wordpress.org/2013/02/05/version-2-2-6/img_00000010/\" title=\"IMG_00000010\"><img /></a>\n<a href=\"http://blackberry.wordpress.org/2013/02/05/version-2-2-6/img_00000005/\" title=\"IMG_00000005\"><img /></a>\n\n<br /> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=blackberry.wordpress.org&blog=8247031&post=667&subd=wpblackberry&ref=&feed=1\" width=\"1\" height=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 05 Feb 2013 10:50:13 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"Danilo\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:32;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"WP iPhone: Version 3.4 Keeps You In the Loop: Introducing Notifications\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"http://ios.wordpress.org/?p=1345\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"http://ios.wordpress.org/2013/02/04/version-3-4/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3490:\"<p><a href=\"http://wpiphone.files.wordpress.com/2013/02/wpios-3-4-notifications.jpg\"><img class=\"alignright size-medium wp-image-1353\" alt=\"wpios-3-4-notifications\" src=\"http://wpiphone.files.wordpress.com/2013/02/wpios-3-4-notifications.jpg?w=240&h=517\" width=\"240\" height=\"517\" /></a>Need to get your WordPress.com notifications on the go? With version 3.4 of <a href=\"https://itunes.apple.com/us/app/wordpress/id335703880?mt=8\">WordPress for iOS</a> you’ll see all your WordPress.com and Jetpack blog Notifications right on your iPhone, iPad, or iPod Touch.</p>\n<h3 id=\"scroll_to_here\">Notifications</h3>\n<p>With the new streamlined Notifications view, you can step away from your computer but still stay connected to your readers. With just a few taps you can:</p>\n<ul>\n<li>read comment threads and reply,</li>\n<li>moderate new pending comments,</li>\n<li>get stats highlights,</li>\n<li>see your new followers and follow them back, and</li>\n<li>see who liked your posts.</li>\n</ul>\n<p>Don’t need so many notifications? You can turn off specific notification types (for example “Likes”) in the Settings panel. You can also mute entire blogs if it gets too noisy.</p>\n<p>Self-hosted WordPress.org blogs get to join the party, too! Simply connect your blog using the <a href=\"http://jetpack.me\">Jetpack plugin</a> and your self-hosted blog’s notifications will appear. Already have Jetpack set up? Then you don’t need to do a thing.</p>\n<h3>Additional Improvements and Bug Fixes</h3>\n<p>We were also able to <a href=\"http://ios.trac.wordpress.org/query?milestone=3.4\">patch up some bugs</a> with this release. Users with multisite self-hosted blogs can now correctly view stats for sites they belong to (<a href=\"http://ios.trac.wordpress.org/ticket/1528\">ticket #1528</a>). A particularly nasty bug which resulted in the possibility of losing your offline drafts has also been fixed (<a href=\"http://ios.trac.wordpress.org/ticket/1545\">ticket# 1545</a>). A big thank you to everyone reporting issues, it’s been very helpful in finding these quirks and resolving them once and for all.</p>\n<h3>What’s Next?</h3>\n<p>There are many great updates coming for WordPress for iOS. We’re currently working on an update to the post preview screen and better revision control. This should make for a much smoother posting experience.</p>\n<p>A huge thanks to the contributors that worked on this release: <a href=\"http://wordpress.org/support/profile/beaucollins\">beaucollins</a>, <a href=\"http://wordpress.org/support/profile/daniloercoli\">daniloercoli</a>, <a href=\"http://wordpress.org/support/profile/koke\">koke</a>, <a href=\"http://wordpress.org/support/profile/aerych\">aerych</a>, <a href=\"http://wordpress.org/support/profile/mrroundhill\">mrroundhill</a>, <a href=\"http://wordpress.org/support/profile/isaackeyet\">isaackeyet</a>, <a href=\"http://wordpress.org/support/profile/sendhil\">sendhil</a>, and <NAME>.</p>\n<p>How do you like the new Notifications? Drop a comment here or follow us on <a href=\"http://twitter.com/WordPressiOS\">@WordPressiOS</a> to let us know!</p>\n<br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wpiphone.wordpress.com/1345/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wpiphone.wordpress.com/1345/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=ios.wordpress.org&blog=3882653&post=1345&subd=wpiphone&ref=&feed=1\" width=\"1\" height=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 04 Feb 2013 20:17:44 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"Robert\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:33;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Matt: Don’t\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"http://ma.tt/?p=42123\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"http://ma.tt/2013/02/dont/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:205:\"<p><NAME> writes <a href=\"http://stemmings.com/dont/\">“My advice to designers in need of portfolio pieces and jobs is to not do three things: Wait, Ask For Permission and Stop.”</a></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 04 Feb 2013 15:18:23 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:34;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"Weblog Tools Collection: WordPress Theme Releases for 2/4\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"http://weblogtoolscollection.com/?p=12611\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"http://feedproxy.google.com/~r/weblogtoolscollection/UXMP/~3/35aBMm7r5wg/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1418:\"<p><a href=\"http://wordpress.org/extend/themes/paradise\"><img class=\"alignnone size-thumbnail wp-image-12612\" alt=\"screenshot\" src=\"http://i2.wp.com/weblogtoolscollection.com/wp-content/uploads/2013/02/screenshot.png?resize=150%2C150\" /></a></p>\n<p><a href=\"http://wordpress.org/extend/themes/paradise\"><strong>Paradise</strong></a> is an all-purpose clean and minimalistic theme.</p>\n<p><a href=\"http://emptynestthemes.com/2013/02/03/placard-wordpress-website-theme/\"><img class=\"alignnone size-thumbnail wp-image-12614\" alt=\"home-3\" src=\"http://i2.wp.com/weblogtoolscollection.com/wp-content/uploads/2013/02/home-3.png?resize=150%2C150\" /></a></p>\n<p><a href=\"http://emptynestthemes.com/2013/02/03/placard-wordpress-website-theme/\"><strong>Placard</strong></a> is a bold, bright, and colorful professional or business theme that is somewhat inspired by the Windows 8 desktop.</p>\n<p><a href=\"http://wordpress.org/extend/themes/sukelius-magazine\"><img class=\"alignnone size-thumbnail wp-image-12613\" alt=\"screenshot-1\" src=\"http://i1.wp.com/weblogtoolscollection.com/wp-content/uploads/2013/02/screenshot-1.png?resize=150%2C150\" /></a></p>\n<p><a href=\"http://wordpress.org/extend/themes/sukelius-magazine\"><strong>Sukelius Magazine</strong></a> is a magazine theme with theme options and a content slider.</p>\n<img src=\"http://feeds.feedburner.com/~r/weblogtoolscollection/UXMP/~4/35aBMm7r5wg\" height=\"1\" width=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 04 Feb 2013 14:00:41 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"James\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:35;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Matt: Fifth Estate\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"http://ma.tt/?p=42121\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"http://ma.tt/2013/02/fifth-estate/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3305:\"<p>Here’s the post I wrote on a dinner I attended while at Davos for their forum blog: <a href=\"http://forumblog.org/2013/01/online-we-can-act-as-a-fifth-estate/\">Online we can act as a fifth estate</a>.</p>\n<div class=\"blockquote\">\n<blockquote>The common thread that kept coming up at a dinner, and discussions centred around the idea of “online power”, was equality of access. Before the widespread rise of the Internet and easy publishing tools, influence was largely in the hands of those who could reach the widest audience, the people with printing presses or access to a wide audience on television or radio, all one-way mediums that concentrated power in the hands of the few.</p>\n<p>Now an audience of more than 1 billion people is only a click away from every voice online, and remarkable stories and content can gain flash audiences as people share via social networks, blogs and e-mail. This radically equalizes the power relationship between, say, a blogger, and a multibillion dollar corporation.</p>\n<p>I heard stories of companies such as Dell shifting the direction of their products in response to online outcry started by a single blog post, authors who have millions of followers on Twitter and Facebook and able to speak to their audiences directly for the first time, a Twitter hashtag (<a href=\"https://twitter.com/#f***washington\" target=\"_blank\">#f***washington</a>) becoming a rallying cry for hundreds of thousands of frustrated citizens, and how a blackout of Wikipedia to protest proposed SOPA/PIPA legislation overloaded phone systems in Congress. I shared how a community of volunteers around the world collaborated on Open Source software (<a href=\"http://wordpress.com/\" target=\"_blank\">WordPress</a>) that eventually overtook all its proprietary competitors.</p>\n<p>All of these stories shared a David and Goliath character – a seemingly unmovable force swayed by a single voice that quickly multiplies online, but they also gave me pause. We spoke about this multiplying of online voices being used for things we’d all generally agree were “good”, but that was probably largely a function of the people sharing the stories and our similar world views. You could easily imagine a viral story spreading online with malicious intent, and just as many if not more examples of untrue rumours spreading at the speed of Twitter. One table shared a fictional account of a world where online voting was ubiquitous in a country, but it had the unintended side-effect of making voter coercion easier because you could see how someone voted.</p>\n<p>There is no moderator or ombudsman online, and while the transparency of the web usually means that information is self-correcting, we still have to keep in mind the responsibility each of us carries when the power of the press is at our fingertips and in our pockets.</p>\n<p>I am an optimist, and I believe that people are inherently good and that if you give everyone a voice and freedom of expression, the truth and the good will outweigh the bad. So, on the whole, I think the power that online distribution confers is a positive thing for society. Online we can act as a fifth estate.</p></blockquote>\n</div>\n<p>I had a really wonderful time at the Forum, it was a really unique experience.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 03 Feb 2013 19:50:13 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:36;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"WordPress.tv: Cody Landefeld: WordPress Design for the Real World\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=15142\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"http://wordpress.tv/2013/02/03/cody-landefeld-wordpress-design-for-the-real-world/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:680:\"<div id=\"v-mCvLNShV-1\" class=\"video-player\">\n</div>\n<br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/15142/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/15142/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=15142&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/02/03/cody-landefeld-wordpress-design-for-the-real-world/\"><img alt=\"<NAME>: WordPress Design for the Real World\" src=\"http://videos.videopress.com/mCvLNShV/video-94e7a1e04e_std.original.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 03 Feb 2013 08:34:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:37;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"WordPress.tv: Ruth Carter: Legal Side of Blogging\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=15136\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"http://wordpress.tv/2013/02/02/ruth-carter-legal-side-of-blogging/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:654:\"<div id=\"v-g1YvWrxW-1\" class=\"video-player\">\n</div>\n<br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/15136/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/15136/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=15136&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/02/02/ruth-carter-legal-side-of-blogging/\"><img alt=\"R<NAME>: Legal Side of Blogging\" src=\"http://videos.videopress.com/g1YvWrxW/video-e2d68e98e8_scruberthumbnail_0.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 03 Feb 2013 05:20:02 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:38;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"WordPress.tv: Tiffany France: Import, Export, Migrate\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=15241\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"http://wordpress.tv/2013/02/02/tiffany-france-import-export-migrate/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:660:\"<div id=\"v-W4UdgFHB-1\" class=\"video-player\">\n</div>\n<br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/15241/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/15241/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=15241&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/02/02/tiffany-france-import-export-migrate/\"><img alt=\"Tiffany France: Import, Export, Migrate\" src=\"http://videos.videopress.com/W4UdgFHB/video-1985e66aee_scruberthumbnail_1.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 03 Feb 2013 04:32:35 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:39;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"<NAME>: The WordPress Community Offers Advice to Beginners\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"http://pinboard-8e5de15504603c11d65a2edfb2a3b3e7\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:86:\"http://wp.smashingmagazine.com/2013/02/01/wordpress-community-offers-advice-beginners/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1021:\"<p>I was flattered to have been asked by <a href=\"http://siobhanmckeown.com/\">Siobhan</a> to contribute an tip for her article – this tip is something I believe is important when starting to work with any platform. You always use a system more effectively when you understand how it works.</p>\n<blockquote><p>Use the Codex to get you pointed in the right direction, but always go to the actual core code as well. There are many good reasons for this, but the most important is that the documentation says what the code is supposed to do, while the code says what it actually does. </p>\n<p>Documentation can also lag behind the actual code (especially when core patches are merged in).</p>\n<p>Also, reading the code is a serendipitous opportunity. While looking at one thing, you may see several others that are helpful immediately, and some that might stick in your memory for future use.</p></blockquote>\n<p><a href=\"http://alexking.org/blog/2013/02/02/the-wordpress-community-offers-advice-to-beginners\">#</a></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 02 Feb 2013 20:50:15 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Alex\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:40;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"WordPress.tv: Taylor Dewey: Child Themes, Hooks and Filters\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=15243\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"http://wordpress.tv/2013/02/01/taylor-dewey-child-themes-hooks-and-filters/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:673:\"<div id=\"v-ZfkkNK0y-1\" class=\"video-player\">\n</div>\n<br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/15243/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/15243/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=15243&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/02/01/taylor-dewey-child-themes-hooks-and-filters/\"><img alt=\"FRI 201 8-H264 MOV 640×360 16×9.mov\" src=\"http://videos.videopress.com/ZfkkNK0y/video-b9f434d48e_scruberthumbnail_0.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 02 Feb 2013 02:10:57 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:41;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:111:\"WordPress.tv: Dre Armeda: How Anyone Can Hack Your WordPress Site In Less Than 5 Minutes and What You Can Do…\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=15194\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:127:\"http://wordpress.tv/2013/02/01/dre-armeda-how-anyone-can-hack-your-wordpress-site-in-less-than-5-minutes-and-what-you-can-do-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:726:\"<div id=\"v-6sboReA1-1\" class=\"video-player\">\n</div>\n<br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/15194/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/15194/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=15194&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/02/01/dre-armeda-how-anyone-can-hack-your-wordpress-site-in-less-than-5-minutes-and-what-you-can-do-2/\"><img alt=\"SAT Main 4-H264 MOV 640×360 16×9.mov\" src=\"http://videos.videopress.com/6sboReA1/video-5300f5bf69_scruberthumbnail_1.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 01 Feb 2013 22:53:25 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:42;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"bbPress: bbPress 2.3 Beta 2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://bbpress.org/?p=125849\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"http://bbpress.org/blog/2013/02/bbpress-2-3-beta-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:895:\"<p>Today we updated bbPress 2.3 to beta 2 in the WordPress.org plugin repository. Same as with Beta 1, now’s the time to <a href=\"http://codex.wordpress.org/Reporting_Bugs\">report some feedback</a> and let us know if you find anything unexpected happening. We are still on course to release bbPress 2.3 in the first week of February.</p>\n<p>Beta 2 fixes autoembeds, improves code/pre tag usage, and updates the “What’s New” page text.</p>\n<p>If you think you found a bug, please report it on the <a href=\"http://bbpress.trac.wordpress.org\">bbPress Core Trac</a>. If you find a security vulnerability, please be discrete and let us know privately using one of the methods posted on the <a href=\"http://wordpress.org/about/contact/\">WordPress contact page</a>.</p>\n<p><a href=\"http://downloads.wordpress.org/plugin/bbpress.zip\">Download bbPress 2.3, Beta 2 ↓</a></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 01 Feb 2013 21:00:53 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:43;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"WordPress.tv: <NAME>: Conversion Optimization in WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=15146\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"http://wordpress.tv/2013/02/01/john-gough-conversion-optimization-in-wordpress/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:669:\"<div id=\"v-WPntUYBI-1\" class=\"video-player\">\n</div>\n<br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/15146/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/15146/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=15146&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/02/01/john-gough-conversion-optimization-in-wordpress/\"><img alt=\"Bogle 7-H264 MOV 640×360 16×9.mov\" src=\"http://videos.videopress.com/WPntUYBI/video-a72bc340f2_std.original.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 01 Feb 2013 20:29:29 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:44;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"Weblog Tools Collection: WordPress Plugin Releases for 2/1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"http://weblogtoolscollection.com/?p=12608\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"http://feedproxy.google.com/~r/weblogtoolscollection/UXMP/~3/p4QGgUfBhGo/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2838:\"<h3>New plugins</h3>\n<p><a href=\"http://wordpress.org/extend/plugins/authy-two-factor-authentication/\"><strong>Authy Two Factor Authentication</strong></a> helps you proctect your WordPress site from hackers using simple two-factor authentication.</p>\n<p><a href=\"http://wordpress.org/extend/plugins/developer/\"><strong>Developer</strong></a> helps WordPress developers develop.</p>\n<h3>Updated plugins</h3>\n<p><a href=\"http://achievementsapp.com\"><strong>Achievements for WordPress</strong></a> gamifies your WordPress site with challenges, badges, and points.</p>\n<p><a href=\"http://wordpress.org/extend/plugins/ad-code-manager/\"><strong>Ad Code Manager</strong></a> allows you to manage your ad codes through the WordPress admin in a safe and easy way.</p>\n<p><a href=\"http://wordpress.org/extend/plugins/custom-javascript-editor/\"><strong>Custom Javascript Editor</strong></a> allows you to add custom Javascript to your site from an editor in the WordPress admin.</p>\n<p><a href=\"http://wordpress.org/extend/plugins/document-feedback/\"><strong>Document Feedback</strong></a> allows you to get feedback from readers on the documentation you write.</p>\n<p><a href=\"http://editflow.org/\"><strong>Edit Flow</strong></a> gives you custom statuses, a calendar, editorial comments, and more, all to make it much easier for your team to collaborate within WordPress.</p>\n<p><a href=\"http://ocaoimh.ie/exploit-scanner/\"><strong>Exploit Scanner</strong></a> searches the files on your website, and the posts and comments tables of your database for anything suspicious. It also examines your list of active plugins for unusual filenames.</p>\n<p><a href=\"http://www.fastsecurecontactform.com/\"><strong>Fast Secure Contact Form</strong></a> lets your visitors send you a quick e-mail message and blocks all common spammer tactics. Additionally, the plugin has a multi-form feature, optional extra fields, and an option to redirect visitors to any URL after the message is sent.</p>\n<p><a href=\"http://wordpress.org/extend/plugins/p2-resolved-posts/\"><strong>P2 Resolved Posts</strong></a> is a lightweight GTD plugin for WordPress and <a href=\"http://p2theme.com\">the P2 theme</a> which allows you to mark a thread as “unresolved” when there’s something needing to be finished, and mark it as “resolved” when it’s been finished.</p>\n<p><a href=\"http://wordpress.org/extend/plugins/slingpic/\"><strong>Slingpic</strong></a> is an image sharing tool that allows your users to share images from your site quickly and easily.</p>\n<p><a href=\"http://wordpress.org/extend/plugins/wp-missed-schedule/\"><strong>WP Missed Schedule Fix</strong></a> finds missed schedule posts and republishes them correctly.</p>\n<img src=\"http://feeds.feedburner.com/~r/weblogtoolscollection/UXMP/~4/p4QGgUfBhGo\" height=\"1\" width=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 01 Feb 2013 14:00:56 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"James\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:45;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"WordPress.tv: <NAME>: Intro to Responsive Design\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=15134\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"http://wordpress.tv/2013/01/31/brad-parbs-intro-to-responsive-design/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:654:\"<div id=\"v-Kv3vV53p-1\" class=\"video-player\">\n</div>\n<br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/15134/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/15134/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=15134&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/01/31/brad-parbs-intro-to-responsive-design/\"><img alt=\"<NAME>: Intro to Responsive Design\" src=\"http://videos.videopress.com/Kv3vV53p/video-b4223ae9f1_std.original.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 01 Feb 2013 04:38:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:46;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"WordPress.tv: Lance Willett: Finding the Perfect Theme\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=15196\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"http://wordpress.tv/2013/01/31/lance-willett-finding-the-perfect-theme/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:658:\"<div id=\"v-rw1oKLCf-1\" class=\"video-player\">\n</div>\n<br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/15196/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/15196/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=15196&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/01/31/lance-willett-finding-the-perfect-theme/\"><img alt=\"<NAME>: Finding the Perfect Theme\" src=\"http://videos.videopress.com/rw1oKLCf/video-47949db1ef_std.original.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 31 Jan 2013 13:03:45 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:47;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"BuddyPress: An online community for educators built with BuddyPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"http://buddypress.org/?p=152087\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:86:\"http://buddypress.org/2013/01/an-online-community-for-educators-built-with-buddypress/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:20903:\"<p><em><a href=\"http://mainelearning.net\"><img class=\"alignright wp-image-22643 no-shadow\" alt=\"MLN badge\" src=\"http://jaycollier.net/files/2013/01/mln-badge-2013-01-29c-300x300.png\" width=\"175\" height=\"175\" /></a>This post is by <a href=\"http://jaycollier.net\"><NAME></a> of The Compass LLC. Jay has been a consultant to the Maine Department of Education for the past 2 years, during which time, he proposed, built, and is continuously improving <a href=\"http://MaineLearning.net\">MaineLearning.net</a>, a professional collaboration community and learning resource directory for Maine educators.</em></p>\n<p><em>MaineLearning.net is built on WordPress and BuddyPress, using a highly-curated set of plugins and themes. In the following report, Jay outlines Maine’s use of BuddyPress as part of its continuing innovations in K-12 education.</em><span id=\"more-22586\"></span></p>\n<h2>Strategic context</h2>\n<p>The <a href=\"http://maine.gov/\">state of Maine</a> has been an innovator in <a href=\"http://www.maine.gov/mlti/index.shtml\">digital learning</a> for over 15 years.</p>\n<ul>\n<li>The <a href=\"http://www.msln.net/\">Maine School and Library Network</a>, initiated in 1996, provides Internet access to all schools and libraries in Maine.</li>\n<li>The <a href=\"http://www.maine.gov/mlte/\">one-to-one laptop program</a>, established by law in 2001, provides laptops to every 7th and 8th grader in the state, while school districts fund laptops for an additional 50% of high school students.</li>\n<li>A high-speed <a href=\"http://www.mainefiberco.com/\">network backbone</a>, bringing gigabit ethernet to rural communities, was completed in 2012. The goal was to provide inexpensive connectivity to last-mile providers: for-profit corporations, not-for-profit organizations, cooperatives, and municipalities.</li>\n<li>In 2012, Maine passed legislation for <a href=\"http://www.pressherald.com/news/maine-switchdiploma-based-on-proficiency_2012-04-10.html\">proficiency-based high school diplomas</a>. Starting in 2017, rather than receiving passing grades in a standardized series of courses in order to graduate, many high school students will be able to receive a diploma by demonstrating proficiency in a variety of ways, from traditional tests to portfolios, performance, exhibitions and projects … and at their own pace. Schools will be allowed to eliminate age-based classes altogether.</li>\n<li><a href=\"http://www.slideshare.net/collier/innovations-in-maine-education\">And more</a>.</li>\n</ul>\n<h2>Online community of practice</h2>\n<p>To support this transition to learner-centered and proficiency-based learning, commissioner <a href=\"http://www.maine.gov/education/commissioner\"><NAME></a> charged the Department of Education with developing an <a href=\"http://jaycollier.net/strategy/collaboration/discovery/\">online community of practice</a> (OCOP) “where teachers, school leaders, curriculum coordinators and others can share best practices – lesson plans, rubrics, curriculum materials and professional development opportunities.” The charge:</p>\n<ul>\n<li>\n<p lang=\"en-US\">Build a professional learning community platform to help educators engage in conversation, share innovative ideas, discover and curate useful resources, document successful practices, and apply them in their own classrooms and schools.</p>\n</li>\n<li>\n<p lang=\"en-US\">Support and sustain continuity between in-person meetings and professional development opportunities. Help new constituents get up to speed and become valuable, active partners in learning communities.</p>\n</li>\n<li>\n<p lang=\"en-US\">Model an interdisciplinary, continuous-learning community approach that can be implemented at schools and districts across the state.</p>\n</li>\n<li>\n<p lang=\"en-US\">Connect teachers, administrators, parents, and taxpayers so they can discuss important educational policy issues.</p>\n</li>\n</ul>\n<p>So, in the summer of 2011, we <a href=\"http://jaycollier.net/strategy/collaboration/discovery/\">developed a digital strategy</a>, <a href=\"http://jaycollier.net/strategy/collaboration/creating-learnmaine/\">built a demonstration site</a> in less than a month and drafted <a href=\"http://mainelearning.net/about/user-generated-content-policy/\">policies for user-generated content</a>. Initial funding was earmarked in November 2011, the initiative was integrated into the Department’s <a href=\"http://www.maine.gov/doe/plan/index.html\">strategic plan</a> in January 2012, and the version 2.0 <a href=\"http://mainelearning.net\">production site</a> went live in February 2012. During the following months, the Department approved 21 practice groups with 250 active members.</p>\n<h2>Architecting engagement</h2>\n<p><a href=\"http://jaycollier.net/files/2013/01/ocp-engagement.png\" class=\"fancybox\" rel=\"gallery-0\"><img class=\"alignright size-medium wp-image-22496 no-border\" title=\"ocp-engagement\" alt=\"\" src=\"http://jaycollier.net/files/2013/01/ocp-engagement-300x236.png\" width=\"300\" height=\"236\" /></a></p>\n<p>From day one, we wanted the platform to support increasing levels of engagement, from initial observations (“lurking,” in the positive sense) all the way through to moderating and leading practice teams.</p>\n<p>Although the OCOP would be launched quietly and was limited to Department-approved practice groups and members during 2012, from the start all group conversations were intended to be visible to the world: a virtual version of the <a href=\"http://en.wikipedia.org/wiki/Fishbowl_(conversation)\">fishbowl model</a> of collaboration.</p>\n<p>We wanted members to be able to receive activity notifications immediately or via daily or weekly digests. We wanted visitors to be able to <a href=\"http://mainelearning.net/about/\">follow any group</a> by subscribing to its feed via the Blogtrottr service.</p>\n<p>Then, after implementing the collaboration features, the next phase would be a <a href=\"http://mainelearning.net/resources/\">learning resources directory</a>, which would contain recommendations (via URL) for:</p>\n<ul>\n<li>Digital learning <strong>objects</strong>, such as content, multimedia, applications, lesson plans, and syllabi that can be used anytime, on any device, in any setting, at home and in classrooms, and through self-directed study and professional development initiatives, and</li>\n<li>Digital learning <strong>opportunities</strong>, including classes, courses, workshops and professional development sessions and that provide live interaction between, and among, students and teachers, learning coaches and community mentors</li>\n</ul>\n<p>Whereas there already countless global resource repositories — containing both free and “premium” objects — when we began, there were no registries that organized links to resources based on Maine-specific needs and standards, and no single repository contained links to local Maine learning resources: expanded learning opportunities, service-learning projects, and community mentoring opportunities. Our Resource Directory was created to do just that.</p>\n<h2>Laying the foundations</h2>\n<p>From the start, our goal was to deliver a <a href=\"http://en.wikipedia.org/wiki/Minimum_viable_product\">minimal viable product</a> to demonstrate potential, and then to rapidly iterate while adding functions requested by our early users. Our first step was to identify the platform that could be quickly configured to support familiar kinds of online collaboration — forums, document sharing, wiki pages, blog posts, and status updates — while being able to support our vision of the ideal future platform.</p>\n<p>So, we pulled together all of the requests we’d received from DOE staff and constituents (including features from a series of previous projects) and created a detailed <a href=\"https://docs.google.com/spreadsheet/ccc?key=<KEY>\">list of criteria</a>, for which we made an initial evaluation using the <a href=\"http://en.wikipedia.org/wiki/Nominal_group_technique\">NGT</a> ranking technique. (See tabs along the bottom of the <a href=\"https://docs.google.com/spreadsheet/ccc?key=<KEY>\">spreadsheet</a> for details.)</p>\n<p>Since we knew we wanted to create a framework that could be easily replicated by school districts and other learning organizations and jurisdictions, and at low cost, we started with the open-source frameworks supported by our state’s IT office: Drupal and WordPress. We determined that both platforms were viable, and chose WordPress because it could be easily configured by non-technologists. The BuddyPress environment was critical to meeting our defined criteria.</p>\n<h2>Building on WordPress and BuddyPress</h2>\n<p>We started with minimal resources — 40% of my time, external hosting services, and about 40 hours for back-end administration and quality control for plugin code for the first 9 months. We contracted with SiteGround for <a href=\"http://www.siteground.com/vps_hosting.htm\">cloud VPS hosting</a> and with BuddyPress developer <a href=\"http://buddypress.org/community/members/boonebgorges/profile/\">Boone Gorges</a> for back-end support. Boone set up a public <a href=\"https://github.com/MaineLearning/MaineLearning\">GitHub repository</a> and configured our server for the Git development workflow. I installed <a href=\"http://www.mamp.info/en/\">MAMP</a>, <a href=\"http://code.google.com/p/gmask/\">Gas Mask</a>, and <a href=\"http://mac.github.com/\">GitHub for Mac</a> on my own machine for local development.</p>\n<p>Since I am a strategist (rather than a back-end developer), I found it quite easy to implement desired features by finding and evaluating WordPress plugins, installing, activating, and testing them on my local machine, and, if acceptable, pushing them to the current development branch at GitHub, all without needing coding experience. When needed, I asked Boone to provide recommendations, check for PHP errors, and add site-specific code to meet our needs. He would then push to production.</p>\n<h3>Configuration and theming</h3>\n<p>To get started, I installed WordPress multisite (using subdirectories rather than subdomains) and installed BuddyPress on the main site. I chose to use the BuddyPress default theme for the main site and the Genesis framework for subsites; all customizations were to child themes. I made continuous interface tweaks via the Custom CSS plugin, and for each periodic push from development to production, I moved those changes into each theme’s styles.css file for versioning.</p>\n<h3>Plugins</h3>\n<p>Here are some of the key plugins we’re currently using with WP 3.4 and BP 1.6. Most of these are perennials that have been maintained through many core software updates, and across multiple projects.</p>\n<h4>Administration</h4>\n<ul>\n<li>Allow Multiple Accounts</li>\n<li>Gravity Forms (premium)</li>\n<li>Gravity Forms + Custom Post Types</li>\n<li>Network Privacy</li>\n<li>TurboCSV (premium)</li>\n<li>Types and WP-Views (now WP-Toolset, premium)</li>\n<li>User Switching</li>\n<li>WP Optimize</li>\n<li>WP Super Cache</li>\n</ul>\n<h4>Authoring and back-end</h4>\n<ul>\n<li>Admin Menu Editor</li>\n<li>Broken Link Checker</li>\n<li>Enable Media Replace</li>\n<li>Events Manager</li>\n<li>Post Type Switcher</li>\n<li>Resize at Upload</li>\n<li>TinyMCE Advanced</li>\n</ul>\n<h4>BuddyPress</h4>\n<div>\n<ul>\n<li>BuddyPress</li>\n<li>BP Group Documents</li>\n<li>BP Group Management</li>\n<li>BP Group Organizer</li>\n<li>BuddyPress Docs</li>\n<li>BuddyPress Edit Group Slug</li>\n<li>BuddyPress Group Email</li>\n<li>BuddyPress Moderation</li>\n<li>Invite Anyone</li>\n</ul>\n<h4>Integration with external services</h4>\n<div>\n<ul>\n<li>Akismet</li>\n<li>Learning Registry Display Widget</li>\n</ul>\n<h4>Interface and navigation</h4>\n<ul>\n<li>Autolink URI</li>\n<li>CryptX</li>\n<li>Custom CSS Manager (moving into Jet Pack)</li>\n<li>External Links</li>\n<li>Hide Broken Shortcodes</li>\n<li>No Page Comment</li>\n<li>Query Multiple Taxonomies</li>\n<li>Theme Test Drive</li>\n<li>WP Page-Navi</li>\n</ul>\n</div>\n</div>\n<p>Of course, our use of these plugins is always provisional; I continue to evaluate alternatives that will meet our requirements even better. Indeed, we are already in the process of replacing some of these plugins with alternatives.</p>\n<h3>Customization</h3>\n<p>We added a number of code snippets to the functions file for minor customizations:</p>\n<ul>\n<li>We added navigation buttons to activity stream items</li>\n<li>We changed the default member avatar</li>\n<li>We loaded common site-specific CSS styles into TinyMCE drop-down menus</li>\n<li>We adapted <a href=\"http://helen.wordpress.com/2012/01/08/using-chosen-for-a-replacement-taxonomy-metabox/\">Helen Hou’s implementation</a> of the Chosen multi-select list styling to simplify back-end metaboxes for multiple taxonomies</li>\n</ul>\n<h3>A note on custom content types, fields, and taxonomies</h3>\n<p>For the Learning Resources Directory, I needed to create and maintain custom post types, field groups, and taxonomies to support a rather complex data structure for metadata for our learning standards: the <a href=\"http://www.maine.gov/education/lres/pei/index.html\">Maine Learning Results</a> and <a href=\"http://www.corestandards.org/the-standards\">Common Core State Standards</a>.</p>\n<p>After having tried nearly every plugin option (and combination), I settled on <a href=\"http://wp-types.com/\">WP Types & Views</a> (now called WP-Toolset), which allowed me to rapidly prototype and improve data structures. Then, I used <a href=\"http://www.gravityforms.com/\">Gravity Forms</a> to create <a href=\"http://mainelearning.net/resources/recommend/\">front-end forms</a> to prompt educators to organize and classify their recommended resources.</p>\n<p>This work has only just begun, but WP-Toolset has provided all the features we’ve needed; indeed it can be compared favorably with the Blocks, Views, Panes, and Panels modules and functions for Drupal. Indeed, I’ll be experimenting with WP-Toolset’s <a href=\"http://wp-types.com/home/cred/\">CRED feature</a> to more easily integration between front-end forms and structured data.</p>\n<h2>Today</h2>\n<p>The <a href=\"http://mainelearning.net/\">online community of practice</a> has now been fully-functional since March, 2012. Since then, the Department has approved 21 practice groups with 250 members; the more active groups have included: the <a href=\"http://mainelearning.net/groups/dlag/\">Digital Learning Advisory Group</a>, the <a href=\"http://mainelearning.net/groups/cdln/\">Cross Discipline Literacy Network</a> (and its 10 subgroups), the <a href=\"http://mainelearning.net/groups/arts-leaders/\">Maine Arts Education Leaders</a> cohort, and the <a href=\"http://mainelearning.net/groups/dcs/\">Digital Citizenship in Schools</a> discussion group. We recently added a space for service-learning coordinators and practitioners, and maintain a list of group and membership requests.</p>\n<p>The <a href=\"http://mainelearning.net/resources\">learning resources directory</a> has been tested by a variety of educators, with continuous improvements based on user feedback. The Arts Education cohort is developing a peer review process for those who ask for review of their submissions. Wikipedia-style ratings will be implemented next.</p>\n<p>Currently, program direction, platform administration, and community stewardship functions are being performed by myself (<NAME>) and our back-end developer, <NAME> (core software developer for the collaboration software).</p>\n<h2>Next phase</h2>\n<p>We’ve now been live for almost one year. As we approach the end of our current funding and contract cycles, the state of Maine has been working to sustain MaineLearning.net.</p>\n<ul>\n<li>The Department of Education has been planning to initiate a public communications campaign and is seeking funding to fund program leadership and community stewardship through the next level of service, including those potential enhancements listed below.</li>\n<li>The state’s Office of Information Technology has been developing an RFP that will seek external vendors to provide Internet hosting, software management, and back-end development to support the continuous improvement of the platform when the current funding and contracts end this spring.</li>\n</ul>\n<p>With sufficient resources, we are considering many potential enhancements, including the following, all of which are possible within the current framework, given additional staffing:</p>\n<h4>Potential collaboration enhancements</h4>\n<ul>\n<li>Allowing open group applications and selecting new groups based upon capacity</li>\n<li>Professional development support, including organic groups for sustained collaboration between webinars, seminars, and workshops</li>\n<li>Active management of resource vetting teams, including rubric development, and credential design (badges)</li>\n<li>Availability of sub-sites (blogs) for every group, upon request</li>\n</ul>\n<h4>Potential resource directory enhancements</h4>\n<ul>\n<li>Statewide promotion for crowdsourced resource sharing</li>\n<li>Simplified resource submission interfaces and predefined search results</li>\n<li>Multiple levels of evaluation options, from thumbs up/down, to multi-question reviews, to peer review workflows</li>\n<li>Exchange of vetting data (paradata) via US DOE Learning Registry and other repositories</li>\n<li>Ingest of pre-existing learning resources, from vetted OERs to professional development objects, to community learning opportunities</li>\n</ul>\n<h4>Potential administrative initiatives</h4>\n<ul>\n<li>Grant applications for funding from regional and national foundations</li>\n<li>Consulting with other jurisdictions that wish to replicate the model</li>\n<li>Contributing lessons learned and custom add-ons back to the open-source community</li>\n<li>Investigating viability of integrating ePortfolio and learning management (ScholarPress) features into the platform</li>\n</ul>\n<h2>Toward the future of learning</h2>\n<p>In <a href=\"http://www.maine.gov/doe/plan/index.html\"><em>Education Evolving</em> </a>(<a href=\"http://www.maine.gov/doe/plan/strategic_plan_web_final.pdf\">PDF</a>) — Maine’s 2012 strategic plan for learning in Maine — Commissioner Bowen worked with educators around the state to define the challenges and opportunities of 21st-century education.</p>\n<blockquote><p>To build on the great work being done in Maine’s schools today, and to move from a century-old model of schooling to a more effective, learner-centered approach in the process, will require a steady focus on a handful of core priorities organized around meeting the individual learning needs of all students …</p>\n<p>Such a move won’t take place through the imposition of heavy-handed mandates or one-size-fits-all approaches from Augusta, but by building on the innovative work being done in schools across Maine already and by employing strategies to increase collaboration and sharing of best practices….</p>\n<p>As Harvard’s <NAME> argues in his book <em>The Global Achievement Gap</em>, teaching has been and continues to be a largely solitary practice providing few opportunities for collaboration and sharing of best practices…</p>\n<p>With the advent of the Internet, the sharing of new ideas and new approaches to teaching can be far more readily facilitated. Instructional materials, research on best practices, and even videos of effective instructional methods can be shared instantly across the state and around the world.</p>\n</blockquote>\n<p>Collaborative, learner-centered education is at the heart of Maine’s strategy for transforming learning communities for this new era and <a href=\"http://MaineLearning.net\">MaineLearning.net</a> supports that strategy.</p>\n<p><em>Watch an introduction to Innovations in Maine Learning, including the MaineLearning.net online community of practice and learning resources directory: <a href=\"http://www.slideshare.net/collier/innovations-in-maine-education\">http://www.slideshare.net/collier/innovations-in-maine-education</a></em></p>\n</p>\n<p><em>This case study was supported by the <a href=\"http://maine.gov/doe/\">Maine Department of Education</a>. An earlier version was partially funded by the British Columbia <a href=\"http://www.bcerac.ca/\">Educational Resources Acquisition Consortium</a>.</em></p>\n<div class=\"share_buttons_simple_use_buttons\">\n<div class=\"tweet_button\"></div>\n<div class=\"facebook_like_button\"></div>\n</div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 30 Jan 2013 20:38:34 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Boone Gorges\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:48;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"Weblog Tools Collection: WordPress Theme Releases for 1/30\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"http://weblogtoolscollection.com/?p=12601\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"http://feedproxy.google.com/~r/weblogtoolscollection/UXMP/~3/RFlfXBzTs90/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1356:\"<p><a href=\"http://wordpress.org/extend/themes/appliance\"><img class=\"alignnone size-thumbnail wp-image-12602\" alt=\"screenshot\" src=\"http://i2.wp.com/weblogtoolscollection.com/wp-content/uploads/2013/01/screenshot7.png?resize=150%2C150\" /></a></p>\n<p><a href=\"http://wordpress.org/extend/themes/appliance\"><strong>Appliance</strong></a> is a clean and minimalist theme.</p>\n<p><a href=\"http://wordpress.org/extend/themes/childishly-simple\"><img class=\"alignnone size-thumbnail wp-image-12603\" alt=\"screenshot-1\" src=\"http://i1.wp.com/weblogtoolscollection.com/wp-content/uploads/2013/01/screenshot-16.png?resize=150%2C150\" /></a></p>\n<p><a href=\"http://wordpress.org/extend/themes/childishly-simple\"><strong>Childishly Simple</strong></a> is a multiple-layout theme with a variety of theme options.</p>\n<p><a href=\"http://emptynestthemes.com/2013/01/29/lush-wordpress-theme/\"><img class=\"alignnone size-thumbnail wp-image-12604\" alt=\"DemoBlog\" src=\"http://i1.wp.com/weblogtoolscollection.com/wp-content/uploads/2013/01/DemoBlog3.png?resize=150%2C150\" /></a></p>\n<p><a href=\"http://emptynestthemes.com/2013/01/29/lush-wordpress-theme/\"><strong>Lush</strong></a> is a bright, cheerful, and definitely colorful responsive theme using Google fonts.</p>\n<img src=\"http://feeds.feedburner.com/~r/weblogtoolscollection/UXMP/~4/RFlfXBzTs90\" height=\"1\" width=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 30 Jan 2013 19:05:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"James\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:49;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"Matt: <NAME> on WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"http://ma.tt/?p=42116\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"http://ma.tt/2013/01/neil-leifer-on-wordpress/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3430:\"<p>One of my favorite photographers, <a href=\"http://neilleifer.com/\"><NAME>, has a beautiful new WordPress.com-powered site</a>. For the past few years I’ve had this photo in my office:</p>\n<p><a href=\"http://s.ma.tt/files/2013/01/ali-williams.jpg\"><img class=\"alignnone size-large wp-image-42117\" alt=\"Ali - Williams (Overhead)\" src=\"http://i2.wp.com/s.ma.tt/files/2013/01/ali-williams.jpg?resize=640%2C648\" /></a></p>\n<p>The story behind it is pretty interesting, taken from <a href=\"http://bermangraphics.com/press/leifer.htm\">this interview with <NAME> and <NAME></a>:</p>\n<div class=\"blockquote\">\n<blockquote><b>Chris/Larry: </b>It’s actually quite a different question to say what are your favorites verses what do you feel are your best photographs.</p>\n<p><b>Neil:</b> I know, and my best picture ever, in my opinion, is my Ali Cleveland Williams picture that I shot from overhead. I don’t usually hang my own photos, I collect other people’s pictures. But that picture’s been hanging in my living room as long as I can remember. I have a 40×40 print of it which is hung in a diamond shape with Williams at the top. That’s the guy that’s on the canvas on his back.</p>\n<p><b>Chris/Larry:</b> It’s remarkably abstract for a sports picture.</p>\n<p><b>Neil:</b> I think it’s the only picture in my career that there’s nothing I would do different with it. You look at pictures and think that you can always improve them no matter how successful the shoot is. Part of what motivates you to go on to the next shoot is every once in a while you get a picture, whether it’s the cover of the magazine or an inside spread, that’s as good as you think you could have made it. And then a week later you see a couple of things that you could improve slightly. A month later you might see a few more things. It doesn’t diminish the quality of that picture. It simply means that there’s always room for improvement.</p>\n<p><b>Chris/Larry:</b> You’re learning for the future?</p>\n<p><b>Neil:</b> Exactly. It’s sort of what motivates you to go on. If I were to do the Cleveland Williams Ali picture again, I would do it exactly the same. And more important is that no one will ever do it better because it can’t be done like that anymore. Today the ring is different and the fighters dress in multi colored outfits like wrestlers. Back then the champ wore white and the challenger wore black. Today, when you look down at the ring from above, you see the Budweiser Beer logo in the center and around it is the network logo that’s televising the fight. Whether it’s Showtime or HBO, they have their logo two or three times on the canvas. The logo of promoter of the fight, <NAME>, is also visible. That’s why that picture couldn’t be taken today. So not only did the picture work out better than any I’ve ever taken, but it’s one that’ll never be taken again.</p>\n<p><img alt=\"©<NAME>\" src=\"http://i0.wp.com/bermangraphics.com/images/Neil-Ali_Williams-p143.jpg?resize=300%2C265\" border=\"0\" /></p>\n<p><b>Chris/Larry:</b> Where are you in this picture?</p>\n<p><b>Neil:</b> I’m at 11:00 o’clock, as I remember it. I’m in a blue shirt leaning on the canvas with a camera in each hand.</p></blockquote>\n</div>\n<p>It’s always an honor to have a great creator make their home on the web with WordPress.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 29 Jan 2013 11:22:37 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";a:9:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Thu, 14 Feb 2013 11:34:07 GMT\";s:12:\"content-type\";s:8:\"text/xml\";s:14:\"content-length\";s:6:\"109456\";s:10:\"connection\";s:5:\"close\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:13:\"last-modified\";s:29:\"Thu, 14 Feb 2013 11:30:12 GMT\";s:4:\"x-nc\";s:11:\"HIT luv 139\";s:13:\"accept-ranges\";s:5:\"bytes\";}s:5:\"build\";s:14:\"20130214112749\";}','no'),(124,'_transient_timeout_feed_mod_867bd5c64f85878d03a060509cd2f92c','1360884713','no'),(125,'_transient_feed_mod_867bd5c64f85878d03a060509cd2f92c','1360841513','no'),(126,'_transient_timeout_dash_aa95765b5cc111c56d5993d476b1c2f0','1360884713','no'),(127,'_transient_dash_aa95765b5cc111c56d5993d476b1c2f0','<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'http://wordpress.tv/2013/02/14/joseph-scott-site-performance-from-pinto-to-ferrari-2/\' title=\' […]\'>WordPress.tv: <NAME>: Site Performance: From Pinto to Ferrari</a></li><li><a class=\'rsswidget\' href=\'http://wordpress.tv/2013/02/14/taylor-dewey-why-we-click-publish-advocating-for-user-centricity-through-interaction-design/\' title=\' […]\'>WordPress.tv: <NAME>: Why we click publish – Advocating for user-centricity through interaction design</a></li><li><a class=\'rsswidget\' href=\'http://feedproxy.google.com/~r/weblogtoolscollection/UXMP/~3/A0IB4mmhIQk/\' title=\'BT Extended is a newspaper style with a responsive four column fluid layout. Cocoa is a basic, simple, minimalist theme of browns and black with just a touch of cinnamon red thrown in for flavor. Columbus is a real estate theme with a two-column layout and top-level page navigation. Photogram is designed to integrate your WordPress site with Instagram and Pi […]\'>Weblog Tools Collection: WordPress Theme Releases for 2/13</a></li><li><a class=\'rsswidget\' href=\'http://wordpress.tv/2013/02/13/curtiss-grymala-wordpress-multisite-and-beyond/\' title=\' […]\'>WordPress.tv: <NAME>: WordPress Multisite and Beyond</a></li><li><a class=\'rsswidget\' href=\'http://wordpress.tv/2013/02/13/mike-schroder-image-manipulation-in-wordpress-3-5/\' title=\' […]\'>WordPress.tv: <NAME>: Image Manipulation in WordPress 3.5</a></li></ul></div>','no'),(128,'_transient_timeout_feed_a5420c83891a9c88ad2a4f04584a5efc','1360884714','no'),(129,'_transient_feed_a5420c83891a9c88ad2a4f04584a5efc','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n \n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:72:\"\n \n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"WordPress Plugins » View: Most Popular\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"http://wordpress.org/extend/plugins/browse/popular/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"WordPress Plugins » View: Most Popular\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 14 Feb 2013 11:31:09 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"http://bbpress.org/?v=1.1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:15:{i:0;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:24:\"Jetpack by WordPress.com\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"http://wordpress.org/extend/plugins/jetpack/#post-23862\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 20 Jan 2011 02:21:38 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"23862@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:104:\"Supercharge your WordPress site with powerful features previously only available to WordPress.com users.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:24:\"<NAME> (mdawaffe)\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Akismet\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"http://wordpress.org/extend/plugins/akismet/#post-15\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 09 Mar 2007 22:11:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"15@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:98:\"Akismet checks your comments against the Akismet web service to see if they look like spam or not.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Contact Form 7\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"http://wordpress.org/extend/plugins/contact-form-7/#post-2141\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 02 Aug 2007 12:45:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"2141@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"Just another contact form plugin. Simple but flexible.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"W3 Total Cache\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"http://wordpress.org/extend/plugins/w3-total-cache/#post-12073\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 29 Jul 2009 18:46:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"12073@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:132:\"Easy Web Performance Optimization (WPO) using caching: browser, page, object, database, minify and content delivery network support.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"Google XML Sitemaps\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"http://wordpress.org/extend/plugins/google-sitemap-generator/#post-132\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 09 Mar 2007 22:31:32 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"132@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:105:\"This plugin will generate a special XML sitemap which will help search engines to better index your blog.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Arne\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"WordPress SEO by Yoast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"http://wordpress.org/extend/plugins/wordpress-seo/#post-8321\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 01 Jan 2009 20:34:44 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"8321@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:131:\"Improve your WordPress SEO: Write better content and have a fully optimized WordPress site using the WordPress SEO plugin by Yoast.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"All in One SEO Pack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"http://wordpress.org/extend/plugins/all-in-one-seo-pack/#post-753\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 30 Mar 2007 20:08:18 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"753@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:86:\"WordPress SEO plugin to automatically optimize your Wordpress blog for Search Engines.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"uberdose\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"WordPress Importer\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"http://wordpress.org/extend/plugins/wordpress-importer/#post-18101\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 20 May 2010 17:42:45 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"18101@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:101:\"Import posts, pages, comments, custom fields, categories, tags and more from a WordPress export file.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"NextGEN Gallery\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"http://wordpress.org/extend/plugins/nextgen-gallery/#post-1169\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 23 Apr 2007 20:08:06 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"1169@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:120:\"The most popular WordPress gallery plugin and one of the most popular plugins of all time with over 6 million downloads.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"Google Analyticator\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"http://wordpress.org/extend/plugins/google-analyticator/#post-130\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 09 Mar 2007 22:31:18 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"130@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:107:\"Adds the necessary JavaScript code to enable Google Analytics. Includes widgets for Analytics data display.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"cavemonkey50\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:10;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Facebook\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"http://wordpress.org/extend/plugins/facebook/#post-37351\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 02 May 2012 19:36:35 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"37351@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"Make your WordPress site social in a couple of clicks, powered by Facebook.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"<NAME> (Otto)\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:11;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"Social Media Widget\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"http://wordpress.org/extend/plugins/social-media-widget/#post-18183\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 25 May 2010 02:22:34 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"18183@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:129:\"Adds links to all of your social media and sharing site profiles. Tons of icons come in 3 sizes, 4 icon styles, and 4 animations.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Blink Web Effects\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:12;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:24:\"Fast Secure Contact Form\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"http://wordpress.org/extend/plugins/si-contact-form/#post-12636\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 27 Aug 2009 01:20:04 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"12636@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:131:\"A super customizable contact form that lets your visitors send you email. Blocks all automated spammers. No templates to mess with.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:13;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Ultimate TinyMCE\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"http://wordpress.org/extend/plugins/ultimate-tinymce/#post-32088\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 14 Nov 2011 09:06:40 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"32088@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"Description: Beef up your visual tinymce editor with a plethora of advanced options.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Josh\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:14;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Contact Form\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"http://wordpress.org/extend/plugins/contact-form-plugin/#post-26890\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 26 May 2011 07:34:58 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"26890@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"Add Contact Form to your WordPress website.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"bestwebsoft\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:52:\"http://wordpress.org/extend/plugins/rss/view/popular\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";a:7:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Thu, 14 Feb 2013 11:34:08 GMT\";s:12:\"content-type\";s:23:\"text/xml; charset=UTF-8\";s:10:\"connection\";s:5:\"close\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:13:\"last-modified\";s:29:\"Thu, 20 Jan 2011 02:21:38 GMT\";s:4:\"x-nc\";s:11:\"HIT luv 138\";}s:5:\"build\";s:14:\"20130214112749\";}','no'),(130,'_transient_timeout_feed_mod_a5420c83891a9c88ad2a4f04584a5efc','1360884714','no'),(131,'_transient_feed_mod_a5420c83891a9c88ad2a4f04584a5efc','1360841514','no'),(132,'_transient_timeout_feed_57bc725ad6568758915363af670fd8bc','1360884714','no'),(133,'_transient_feed_57bc725ad6568758915363af670fd8bc','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n \n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:72:\"\n \n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"WordPress Plugins » View: Newest\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"http://wordpress.org/extend/plugins/browse/new/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"WordPress Plugins » View: Newest\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 14 Feb 2013 11:09:22 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"http://bbpress.org/?v=1.1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:15:{i:0;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"Pelepay integration for wpecommerce\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"http://wordpress.org/extend/plugins/pelepay-integration-for-wpecommerce/#post-49446\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 12 Feb 2013 10:03:55 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"49446@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:167:\"Author: EOI - Web Like This!\nAuthor URI: <a href=\"http://eoi.co.il/\" rel=\"nofollow\">http://eoi.co.il/</a>\n\nIntegrate pelepay CC processing with your Wp-Ecommerce store\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"etamaro\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"Pelepay integration for woocommerce\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"http://wordpress.org/extend/plugins/pelepay-integration-for-woocommerce/#post-49447\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 12 Feb 2013 10:04:55 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"49447@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:166:\"Author: EOI - Web Like This!\nAuthor URI: <a href=\"http://eoi.co.il/\" rel=\"nofollow\">http://eoi.co.il/</a>\n\nIntegrate pelepay CC processing with your woocommerce store\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"etamaro\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Search shortcode\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"http://wordpress.org/extend/plugins/search-shortcode/#post-49441\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 12 Feb 2013 07:38:05 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"49441@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"Provides a [search] shortcode to insert search form in content.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"Mark-k\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Yandex Add Url\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"http://wordpress.org/extend/plugins/yandex-add-url/#post-49396\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 11 Feb 2013 20:06:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"49396@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"This plugin allows you to add url to Yandex from your wordpress blog\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"nickyurov\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Crowd Convergence\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"http://wordpress.org/extend/plugins/crowd-convergence/#post-49385\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 11 Feb 2013 12:31:40 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"49385@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:201:\"This plugin displays your moderated social media (Twitter, Facebook, Google+) stream from Crowd Convergence. <a href=\"http://www.crowdconvergence.com\" rel=\"nofollow\">http://www.crowdconvergence.com</a>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"crowdconvergence\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Ruven Toolkit\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"http://wordpress.org/extend/plugins/ruven-toolkit/#post-49325\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 09 Feb 2013 22:36:59 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"49325@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:134:\"Provides extra functionality to the collection of Ruven Themes by adding a Portfolio custom post type, custom widgets, and shortcodes.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"Ruven\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"image_src\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"http://wordpress.org/extend/plugins/image-src/#post-48996\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 02 Feb 2013 06:59:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"48996@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"Add the "image_src" microformat.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"ryanve\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Lightbox\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"http://wordpress.org/extend/plugins/new-lightbox-shadow/#post-49245\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 07 Feb 2013 13:39:34 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"49245@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:150:\"Plugin is used to overlay images in a current page into neat Javascript-powered overlay popups. Go to settings so you can choose background color, ove\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"bellamij\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"Distraction Free Writing mode Themes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"http://wordpress.org/extend/plugins/distraction-free-writing-mode-themes/#post-49459\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 12 Feb 2013 22:12:52 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"49459@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:150:\"Provides alternative dark and light themes for for WordPress Distraction Free Writing mode editor. Use one of the built-in themes based on classics su\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"khromov\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Hello Nomi\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"http://wordpress.org/extend/plugins/hello-nomi/#post-49300\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 08 Feb 2013 18:34:54 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"49300@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"This is not just a plugin, it symbolizes my love and undying respect for Showgirls.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"darrelly84\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:10;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WP Maintenance\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"http://wordpress.org/extend/plugins/wp-maintenance/#post-49287\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 08 Feb 2013 14:58:43 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"49287@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"Créer et personnaliser votre page de maintenance !\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Florent73\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:11;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Ultimate Preloader\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"http://wordpress.org/extend/plugins/ultimate-preloader/#post-49370\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 10 Feb 2013 19:46:58 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"49370@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:138:\"Ultimate Preloader will create a preloading screen for your website before all your images (including the images in CSS) are fully loaded.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"enid.colic\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:12;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"E-MAILiT\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"http://wordpress.org/extend/plugins/e-mailit/#post-49453\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 12 Feb 2013 19:33:25 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"49453@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:139:\"E-MAILiT WordPress plugin is generating income from social behavior and easily attracts Advertisers who are looking to target your Sharers.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"e-mailit\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:13;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Ultimate WP Filter\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"http://wordpress.org/extend/plugins/ultimate-wp-filter/#post-49244\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 07 Feb 2013 12:57:42 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"49244@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:136:\"A lighweight filtering plugin. Just activate and it will censor explicit words automatically by replace them with asterik(*) characters.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"faleddo\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:14;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"XML Sitemap for Stella\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"http://wordpress.org/extend/plugins/xml-sitemap-for-stella/#post-49389\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 11 Feb 2013 17:02:12 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"49389@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:109:\"Generate a XML Sitemap on your WordPress multi-language website when powered by Stella multi-language plugin.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"luistinygod\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:48:\"http://wordpress.org/extend/plugins/rss/view/new\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";a:10:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Thu, 14 Feb 2013 11:34:09 GMT\";s:12:\"content-type\";s:23:\"text/xml; charset=UTF-8\";s:10:\"connection\";s:5:\"close\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:7:\"expires\";s:29:\"Thu, 14 Feb 2013 11:44:22 GMT\";s:13:\"cache-control\";s:0:\"\";s:6:\"pragma\";s:0:\"\";s:13:\"last-modified\";s:31:\"Thu, 14 Feb 2013 11:09:22 +0000\";s:4:\"x-nc\";s:11:\"HIT luv 138\";}s:5:\"build\";s:14:\"20130214112749\";}','no'),(134,'_transient_timeout_feed_mod_57bc725ad6568758915363af670fd8bc','1360884714','no'),(135,'_transient_feed_mod_57bc725ad6568758915363af670fd8bc','1360841514','no'),(136,'_transient_timeout_plugin_slugs','1360927914','no'),(137,'_transient_plugin_slugs','a:2:{i:0;s:19:\"akismet/akismet.php\";i:1;s:9:\"hello.php\";}','no'),(138,'_transient_timeout_dash_de3249c4736ad3bd2cd29147c4a0d43e','1360884714','no'),(139,'_transient_dash_de3249c4736ad3bd2cd29147c4a0d43e','<h4>Most Popular</h4>\n<h5><a href=\'http://wordpress.org/extend/plugins/jetpack/\'>Jetpack by WordPress.com</a></h5> <span>(<a href=\'plugin-install.php?tab=plugin-information&plugin=jetpack&_wpnonce=63a8966e6d&TB_iframe=true&width=600&height=800\' class=\'thickbox\' title=\'Jetpack by WordPress.com\'>Install</a>)</span>\n<p>Supercharge your WordPress site with powerful features previously only available to WordPress.com users.</p>\n<h4>Newest Plugins</h4>\n<h5><a href=\'http://wordpress.org/extend/plugins/e-mailit/\'>E-MAILiT</a></h5> <span>(<a href=\'plugin-install.php?tab=plugin-information&plugin=e-mailit&_wpnonce=d1741c05e2&TB_iframe=true&width=600&height=800\' class=\'thickbox\' title=\'E-MAILiT\'>Install</a>)</span>\n<p>E-MAILiT WordPress plugin is generating income from social behavior and easily attracts Advertisers who are looking to target your Sharers.</p>\n','no'),(140,'can_compress_scripts','0','yes');
/*!40000 ALTER TABLE `wp_options` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_postmeta`
--
DROP TABLE IF EXISTS `wp_postmeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_postmeta` (
`meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`post_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`meta_key` varchar(255) DEFAULT NULL,
`meta_value` longtext,
PRIMARY KEY (`meta_id`),
KEY `post_id` (`post_id`),
KEY `meta_key` (`meta_key`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_postmeta`
--
LOCK TABLES `wp_postmeta` WRITE;
/*!40000 ALTER TABLE `wp_postmeta` DISABLE KEYS */;
INSERT INTO `wp_postmeta` VALUES (1,2,'_wp_page_template','default');
/*!40000 ALTER TABLE `wp_postmeta` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_posts`
--
DROP TABLE IF EXISTS `wp_posts`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_posts` (
`ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`post_author` bigint(20) unsigned NOT NULL DEFAULT '0',
`post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_content` longtext NOT NULL,
`post_title` text NOT NULL,
`post_excerpt` text NOT NULL,
`post_status` varchar(20) NOT NULL DEFAULT 'publish',
`comment_status` varchar(20) NOT NULL DEFAULT 'open',
`ping_status` varchar(20) NOT NULL DEFAULT 'open',
`post_password` varchar(20) NOT NULL DEFAULT '',
`post_name` varchar(200) NOT NULL DEFAULT '',
`to_ping` text NOT NULL,
`pinged` text NOT NULL,
`post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_content_filtered` longtext NOT NULL,
`post_parent` bigint(20) unsigned NOT NULL DEFAULT '0',
`guid` varchar(255) NOT NULL DEFAULT '',
`menu_order` int(11) NOT NULL DEFAULT '0',
`post_type` varchar(20) NOT NULL DEFAULT 'post',
`post_mime_type` varchar(100) NOT NULL DEFAULT '',
`comment_count` bigint(20) NOT NULL DEFAULT '0',
PRIMARY KEY (`ID`),
KEY `post_name` (`post_name`),
KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`),
KEY `post_parent` (`post_parent`),
KEY `post_author` (`post_author`)
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_posts`
--
LOCK TABLES `wp_posts` WRITE;
/*!40000 ALTER TABLE `wp_posts` DISABLE KEYS */;
INSERT INTO `wp_posts` VALUES (1,1,'2013-02-14 11:31:35','2013-02-14 11:31:35','Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!','Hello world!','','publish','open','open','','hello-world','','','2013-02-14 11:31:35','2013-02-14 11:31:35','',0,'http://192.168.122.11/?p=1',0,'post','',1),(2,1,'2013-02-14 11:31:35','2013-02-14 11:31:35','This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:\n\n<blockquote>Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my blog. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin\' caught in the rain.)</blockquote>\n\n...or something like this:\n\n<blockquote>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</blockquote>\n\nAs a new WordPress user, you should go to <a href=\"http://192.168.122.11/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!','Sample Page','','publish','open','open','','sample-page','','','2013-02-14 11:31:35','2013-02-14 11:31:35','',0,'http://192.168.122.11/?page_id=2',0,'page','',0),(3,1,'2013-02-14 11:31:48','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2013-02-14 11:31:48','0000-00-00 00:00:00','',0,'http://192.168.122.11/?p=3',0,'post','',0);
/*!40000 ALTER TABLE `wp_posts` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_term_relationships`
--
DROP TABLE IF EXISTS `wp_term_relationships`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_term_relationships` (
`object_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`term_order` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`object_id`,`term_taxonomy_id`),
KEY `term_taxonomy_id` (`term_taxonomy_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_term_relationships`
--
LOCK TABLES `wp_term_relationships` WRITE;
/*!40000 ALTER TABLE `wp_term_relationships` DISABLE KEYS */;
INSERT INTO `wp_term_relationships` VALUES (1,1,0);
/*!40000 ALTER TABLE `wp_term_relationships` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_term_taxonomy`
--
DROP TABLE IF EXISTS `wp_term_taxonomy`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_term_taxonomy` (
`term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`term_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`taxonomy` varchar(32) NOT NULL DEFAULT '',
`description` longtext NOT NULL,
`parent` bigint(20) unsigned NOT NULL DEFAULT '0',
`count` bigint(20) NOT NULL DEFAULT '0',
PRIMARY KEY (`term_taxonomy_id`),
UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`),
KEY `taxonomy` (`taxonomy`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_term_taxonomy`
--
LOCK TABLES `wp_term_taxonomy` WRITE;
/*!40000 ALTER TABLE `wp_term_taxonomy` DISABLE KEYS */;
INSERT INTO `wp_term_taxonomy` VALUES (1,1,'category','',0,1);
/*!40000 ALTER TABLE `wp_term_taxonomy` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_terms`
--
DROP TABLE IF EXISTS `wp_terms`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_terms` (
`term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(200) NOT NULL DEFAULT '',
`slug` varchar(200) NOT NULL DEFAULT '',
`term_group` bigint(10) NOT NULL DEFAULT '0',
PRIMARY KEY (`term_id`),
UNIQUE KEY `slug` (`slug`),
KEY `name` (`name`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_terms`
--
LOCK TABLES `wp_terms` WRITE;
/*!40000 ALTER TABLE `wp_terms` DISABLE KEYS */;
INSERT INTO `wp_terms` VALUES (1,'Uncategorized','uncategorized',0);
/*!40000 ALTER TABLE `wp_terms` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_usermeta`
--
DROP TABLE IF EXISTS `wp_usermeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_usermeta` (
`umeta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`meta_key` varchar(255) DEFAULT NULL,
`meta_value` longtext,
PRIMARY KEY (`umeta_id`),
KEY `user_id` (`user_id`),
KEY `meta_key` (`meta_key`)
) ENGINE=MyISAM AUTO_INCREMENT=15 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_usermeta`
--
LOCK TABLES `wp_usermeta` WRITE;
/*!40000 ALTER TABLE `wp_usermeta` DISABLE KEYS */;
INSERT INTO `wp_usermeta` VALUES (1,1,'first_name',''),(2,1,'last_name',''),(3,1,'nickname','admin'),(4,1,'description',''),(5,1,'rich_editing','true'),(6,1,'comment_shortcuts','false'),(7,1,'admin_color','fresh'),(8,1,'use_ssl','0'),(9,1,'show_admin_bar_front','true'),(10,1,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(11,1,'wp_user_level','10'),(12,1,'dismissed_wp_pointers','wp330_toolbar,wp330_saving_widgets,wp340_choose_image_from_library,wp340_customize_current_theme_link,wp350_media'),(13,1,'show_welcome_panel','1'),(14,1,'wp_dashboard_quick_press_last_post_id','3');
/*!40000 ALTER TABLE `wp_usermeta` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_users`
--
DROP TABLE IF EXISTS `wp_users`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_users` (
`ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`user_login` varchar(60) NOT NULL DEFAULT '',
`user_pass` varchar(64) NOT NULL DEFAULT '',
`user_nicename` varchar(50) NOT NULL DEFAULT '',
`user_email` varchar(100) NOT NULL DEFAULT '',
`user_url` varchar(100) NOT NULL DEFAULT '',
`user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`user_activation_key` varchar(60) NOT NULL DEFAULT '',
`user_status` int(11) NOT NULL DEFAULT '0',
`display_name` varchar(250) NOT NULL DEFAULT '',
PRIMARY KEY (`ID`),
KEY `user_login_key` (`user_login`),
KEY `user_nicename` (`user_nicename`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_users`
--
LOCK TABLES `wp_users` WRITE;
/*!40000 ALTER TABLE `wp_users` DISABLE KEYS */;
INSERT INTO `wp_users` VALUES (1,'admin','$<PASSWORD>','admin','<EMAIL>','','2013-02-14 11:31:35','',0,'admin');
/*!40000 ALTER TABLE `wp_users` 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 2013-02-14 12:34:26
|
<gh_stars>0
-- phpMyAdmin SQL Dump
-- version 4.8.5
-- https://www.phpmyadmin.net/
--
-- Host: 127.0.0.1
-- Generation Time: Dec 22, 2020 at 02:00 PM
-- Server version: 10.1.38-MariaDB
-- PHP Version: 7.3.3
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: `enrollment`
--
-- --------------------------------------------------------
--
-- Table structure for table `admin_table`
--
CREATE TABLE `admin_table` (
`admin_id` int(10) UNSIGNED NOT NULL,
`admin_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`admin_email` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`admin_password` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`admin_phone` 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 `admin_table`
--
INSERT INTO `admin_table` (`admin_id`, `admin_name`, `admin_email`, `admin_password`, `admin_phone`, `created_at`, `updated_at`) VALUES
(1, 'admin', '<EMAIL>', 'admin', '01687921059', '2020-09-03 17:25:13', '2020-09-03 17:25:13');
-- --------------------------------------------------------
--
-- 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, '2020_09_03_164347_create_admin_table_table', 1),
(2, '2020_09_07_082340_create_student_tbl_table', 2),
(3, '2020_09_09_200220_create_tbl_teachers_table', 3);
-- --------------------------------------------------------
--
-- Table structure for table `student_tbl`
--
CREATE TABLE `student_tbl` (
`student_id` int(10) UNSIGNED NOT NULL,
`student_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`student_roll` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`student_father_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`student_mother_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`student_email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`student_phone` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`student_adderss` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`student_image` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`student_password` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`student_department` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`student_admission_year` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `student_tbl`
--
INSERT INTO `student_tbl` (`student_id`, `student_name`, `student_roll`, `student_father_name`, `student_mother_name`, `student_email`, `student_phone`, `student_adderss`, `student_image`, `student_password`, `student_department`, `student_admission_year`, `created_at`, `updated_at`) VALUES
(3, '<NAME>', '171-115-135', '<NAME>', '<NAME>', '<EMAIL>', '01687921059', 'Sylhet', 'public/student/1686774404535830.jpg', 'admin', '1', '2017-01-01', '2020-09-07 18:16:21', '2020-09-07 18:16:21'),
(4, '<NAME>', '171-115-134', 'MD <NAME>', '<NAME>', '<EMAIL>', '01679542455', 'Sylhet', 'public/student/1686774185423973.jpg', 'admin', '1', '2016-12-29', '2020-09-07 18:18:05', '2020-09-07 18:18:05'),
(5, '<NAME>', '171-115-127', '<NAME>', '<NAME>', '<EMAIL>', '0156789123', 'sylhet', 'public/student/1686773948081169.jpg', 'admin', '1', '2020-09-08', '2020-09-07 18:20:41', '2020-09-07 18:20:41'),
(6, '<NAME>', '171-115-146', '<NAME>', '<NAME>', '<EMAIL>', '01782614627', 'Sylhet', 'public/student/1686773920835635.jpg', 'admin', '1', '2017-01-01', '2020-09-07 18:22:01', '2020-09-07 18:22:01'),
(7, 'Md. <NAME>', '171-115-122', '<NAME>', '<NAME>', '<EMAIL>', '019827672828', 'Zakigong', 'public/student/1686774533673578.jpg', 'admin', '5', '2018-01-22', '2020-12-22 10:39:10', '2020-12-22 10:39:10'),
(8, '<NAME>', '171-115-121', '<NAME>', '<NAME>', '<EMAIL>', '01721332214', 'Dhaka', 'public/student/1686774715356941.jpg', 'admin', '4', '2020-01-01', '2020-12-22 10:42:03', '2020-12-22 10:42:03');
-- --------------------------------------------------------
--
-- Table structure for table `tbl_teachers`
--
CREATE TABLE `tbl_teachers` (
`teacher_id` int(10) UNSIGNED NOT NULL,
`teacher_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`teacher_phone` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`teacher_adderss` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`teacher_department` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`teacher_image` varchar(191) 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 `tbl_teachers`
--
INSERT INTO `tbl_teachers` (`teacher_id`, `teacher_name`, `teacher_phone`, `teacher_adderss`, `teacher_department`, `teacher_image`, `created_at`, `updated_at`) VALUES
(1, 'Ahmed', '0123456789', 'Sylhet', 'CSE', 'public/teacher/1677389067917585.jpg', NULL, NULL),
(2, '<NAME>', '0123455678', 'Sylhet', 'BBA', 'public/teacher/1677389189297578.jpg', NULL, NULL),
(3, '<NAME>', '012345678', 'Sylhet', 'CSE', 'public/teacher/1686775307609566.jpg', NULL, NULL),
(4, '<NAME>', '012345678', 'Sylhet', 'ECE', 'public/teacher/1677389248520772.jpg', NULL, NULL),
(5, 'Bilal', '0123456789', 'Sylhet', 'EEE', 'public/teacher/1677389325162545.jpg', NULL, NULL),
(6, 'Shila', '012345679', 'Sylhet', 'MBA', 'public/teacher/1686775204580027.jpg', NULL, NULL);
--
-- Indexes for dumped tables
--
--
-- Indexes for table `admin_table`
--
ALTER TABLE `admin_table`
ADD PRIMARY KEY (`admin_id`);
--
-- Indexes for table `migrations`
--
ALTER TABLE `migrations`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `student_tbl`
--
ALTER TABLE `student_tbl`
ADD PRIMARY KEY (`student_id`);
--
-- Indexes for table `tbl_teachers`
--
ALTER TABLE `tbl_teachers`
ADD PRIMARY KEY (`teacher_id`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `admin_table`
--
ALTER TABLE `admin_table`
MODIFY `admin_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
--
-- AUTO_INCREMENT for table `migrations`
--
ALTER TABLE `migrations`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;
--
-- AUTO_INCREMENT for table `student_tbl`
--
ALTER TABLE `student_tbl`
MODIFY `student_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9;
--
-- AUTO_INCREMENT for table `tbl_teachers`
--
ALTER TABLE `tbl_teachers`
MODIFY `teacher_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7;
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 */;
|
use test;
CREATE TABLE `fbtag_scrapy` (
`user_id` bigint,
`post_id` bigint NOT NULL,
`discussion_id` bigint NOT NULL,
`post_content_html` text,
`post_content_text` text,
`discussion_title` text,
`image_urls` text,
`url` text,
`user_name` varchar(255) DEFAULT NULL,
`discussion_comments_count` int,
discussion_tags varchar(255),
discussion_participants_count int,
`created_time_text` varchar(255) DEFAULT NULL,
`created_time` datetime DEFAULT NULL,
`inserted_time` datetime DEFAULT NULL,
post_number int,
PRIMARY KEY (`post_id`, `discussion_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
<reponame>nunsez/cs50
SELECT name
FROM songs
WHERE
danceability > 0.75
AND energy > 0.75
AND valence > 0.75;
|
<reponame>javaspringexamples/springJdbcNamedParameter
CREATE TABLE IF NOT EXISTS USER (ID BIGINT IDENTITY PRIMARY KEY, NAME VARCHAR(60), USER_NAME VARCHAR(60), ACCESS_TIME TIMESTAMP, LOCKED BOOLEAN); |
<filename>Agribusiness.DB/Schema Objects/Schemas/dbo/Tables/Sponsors.sql
CREATE TABLE [dbo].[Sponsors]
(
[Id] INT NOT NULL PRIMARY KEY IDENTITY,
[Name] VARCHAR(100) NOT NULL,
[Logo] VARBINARY(MAX) NULL,
[LogoContentType] VARCHAR(50) NULL,
[Url] VARCHAR(MAX) NULL,
[Level] VARCHAR(10) NULL,
[Description] VARCHAR(MAX) NULL,
[IsActive] BIT NOT NULL DEFAULT 1,
[Order] INT NOT NULL DEFAULT 0,
[SiteId] VARCHAR(10) NOT NULL,
CONSTRAINT [FK_Sponsors_Sites] FOREIGN KEY ([SiteId]) REFERENCES [Sites]([Id])
)
|
<gh_stars>0
-- Har fjernet domener som ikke finnes lenger
update clusters set domain='Oera' where domain='InternSone';
update clusters set domain='OeraQ' where domain='PreProdIntern';
update clusters set domain='OeraT' where domain='TestInternLocal';
update clusters_aud set domain='Oera' where domain='InternSone';
update clusters_aud set domain='OeraQ' where domain='PreProdIntern';
update clusters_aud set domain='OeraT' where domain='TestInternLocal';
update resource_table set env_domain='Oera' where env_domain='InternSone';
update resource_table set env_domain='OeraQ' where env_domain='PreProdIntern';
update resource_table set env_domain='OeraT' where env_domain='TestInternLocal';
update resource_table_aud set env_domain='Oera' where env_domain='InternSone';
update resource_table_aud set env_domain='OeraQ' where env_domain='PreProdIntern';
update resource_table_aud set env_domain='OeraT' where env_domain='TestInternLocal';
|
START TRANSACTION;
CREATE DATABASE IF NOT EXISTS dbimagens;
USE dbimagens;
CREATE TABLE IF NOT EXISTS imagens (
code int NOT NULL AUTO_INCREMENT,
img blob NOT NULL,
CONSTRAINT pk_imagens PRIMARY KEY (code)
) ENGINE=MyISAM DEFAULT CHARSET =utf8 COLLATE=utf8_general_ci;
COMMIT; |
INSERT IGNORE INTO detailCount (date, province_name, current_confirmed_count, confirmed_count, dead_count, cured_count) VALUES
('2022-05-23', '台湾', 1371462, 1386640, 1436, 13742),
('2022-05-23', '香港', 260725, 331994, 9370, 61899),
('2022-05-23', '上海市', 2158, 62716, 592, 59966),
('2022-05-23', '北京市', 590, 3168, 9, 2569),
('2022-05-23', '浙江省', 576, 3134, 1, 2557),
('2022-05-23', '四川省', 211, 2283, 3, 2069),
('2022-05-23', '河南省', 150, 3163, 22, 2991),
('2022-05-23', '天津市', 113, 1917, 3, 1801),
('2022-05-23', '吉林省', 104, 40284, 5, 40175),
('2022-05-23', '广东省', 103, 7280, 8, 7169),
('2022-05-23', '福建省', 102, 3188, 1, 3085),
('2022-05-23', '青海省', 17, 147, 0, 130),
('2022-05-23', '海南省', 16, 288, 6, 266),
('2022-05-23', '广西壮族自治区', 15, 1617, 2, 1600),
('2022-05-23', '云南省', 12, 2135, 2, 2121),
('2022-05-23', '山东省', 8, 2735, 7, 2720),
('2022-05-23', '江苏省', 7, 2222, 0, 2215),
('2022-05-23', '湖南省', 7, 1393, 4, 1382),
('2022-05-23', '辽宁省', 5, 1672, 2, 1665),
('2022-05-23', '重庆市', 5, 708, 6, 697),
('2022-05-23', '陕西省', 2, 3279, 3, 3274),
('2022-05-23', '河北省', 2, 2004, 7, 1995),
('2022-05-23', '江西省', 2, 1383, 1, 1380),
('2022-05-23', '内蒙古自治区', 1, 1753, 1, 1751),
('2022-05-23', '贵州省', 1, 185, 2, 182),
('2022-05-23', '湖北省', 0, 68398, 4512, 63886),
('2022-05-23', '黑龙江省', 0, 2983, 13, 2970),
('2022-05-23', '安徽省', 0, 1065, 6, 1059),
('2022-05-23', '新疆维吾尔自治区', 0, 1008, 3, 1005),
('2022-05-23', '甘肃省', 0, 681, 2, 679),
('2022-05-23', '山西省', 0, 420, 0, 420),
('2022-05-23', '宁夏回族自治区', 0, 122, 0, 122),
('2022-05-23', '澳门', 0, 82, 0, 82),
('2022-05-23', '西藏自治区', 0, 1, 0, 1); |
/*
Warnings:
- You are about to drop the column `user_id` on the `Authentication` table. All the data in the column will be lost.
- A unique constraint covering the columns `[authentication_id]` on the table `User` will be added. If there are existing duplicate values, this will fail.
- Added the required column `authentication_id` to the `User` table without a default value. This is not possible if the table is not empty.
*/
-- DropForeignKey
ALTER TABLE `Authentication` DROP FOREIGN KEY `Authentication_user_id_fkey`;
-- AlterTable
ALTER TABLE `Authentication` DROP COLUMN `user_id`;
-- AlterTable
ALTER TABLE `User` ADD COLUMN `authentication_id` VARCHAR(191) NOT NULL;
-- CreateIndex
CREATE UNIQUE INDEX `User_authentication_id_key` ON `User`(`authentication_id`);
-- AddForeignKey
ALTER TABLE `User` ADD CONSTRAINT `User_authentication_id_fkey` FOREIGN KEY (`authentication_id`) REFERENCES `Authentication`(`id`) ON DELETE RESTRICT ON UPDATE CASCADE;
|
DELETE FROM operations;
DELETE FROM ticket_customer;
DELETE FROM tickets;
|
CREATE TABLE tx_blogexample_post_post_mm ( uid_local int(11) unsigned DEFAULT '0' NOT NULL, uid_foreign int(11) unsigned DEFAULT '0' NOT NULL, sorting int(11) unsigned DEFAULT '0' NOT NULL, sorting_foreign int(11) unsigned DEFAULT '0' NOT NULL, KEY uid_local (uid_local), KEY uid_foreign (uid_foreign))
CREATE TABLE tx_irretutorial_mnasym_hotel ( uid int(11) NOT NULL auto_increment, pid int(11) DEFAULT '0' NOT NULL, tstamp int(11) DEFAULT '0' NOT NULL, crdate int(11) DEFAULT '0' NOT NULL, cruser_id int(11) DEFAULT '0' NOT NULL, sys_language_uid int(11) DEFAULT '0' NOT NULL, l18n_parent int(11) DEFAULT '0' NOT NULL, l18n_diffsource mediumblob NOT NULL, sorting int(10) DEFAULT '0' NOT NULL, deleted tinyint(4) DEFAULT '0' NOT NULL, hidden tinyint(4) DEFAULT '0' NOT NULL, t3ver_oid int(11) DEFAULT '0' NOT NULL, t3ver_id int(11) DEFAULT '0' NOT NULL, t3ver_wsid int(11) DEFAULT '0' NOT NULL, t3ver_label varchar(30) DEFAULT '' NOT NULL, t3ver_state tinyint(4) DEFAULT '0' NOT NULL, t3ver_stage tinyint(4) DEFAULT '0' NOT NULL, t3ver_count int(11) DEFAULT '0' NOT NULL, t3ver_tstamp int(11) DEFAULT '0' NOT NULL, t3ver_move_id int(11) DEFAULT '0' NOT NULL, t3_origuid int(11) DEFAULT '0' NOT NULL, title tinytext NOT NULL, offers int(11) DEFAULT '0' NOT NULL, PRIMARY KEY (uid), KEY parent (pid))
CREATE TABLE a_test_table ( uid INT(11) UNSIGNED NOT NULL AUTO_INCREMENT, pid INT(11) UNSIGNED DEFAULT '0' NOT NULL, tstamp INT(11) UNSIGNED DEFAULT '0' NOT NULL, hidden TINYINT(3) UNSIGNED DEFAULT '0' NOT NULL, deleted TINYINT(3) UNSIGNED DEFAULT '0' NOT NULL, PRIMARY KEY (uid), KEY parent (pid))
CREATE TABLE index_stat_word ( uid int(11) NOT NULL auto_increment, word varchar(30) DEFAULT '' NOT NULL, index_stat_search_id int(11) DEFAULT '0' NOT NULL, tstamp int(11) DEFAULT '0' NOT NULL, pageid int(11) DEFAULT '0' NOT NULL, PRIMARY KEY (uid), KEY tstamp (tstamp,word))
CREATE TABLE tt_content ( header_position varchar(6) DEFAULT '' NOT NULL, image_compression tinyint(3) unsigned DEFAULT '0' NOT NULL, image_effects tinyint(3) unsigned DEFAULT '0' NOT NULL, image_noRows tinyint(3) unsigned DEFAULT '0' NOT NULL, section_frame int(11) unsigned DEFAULT '0' NOT NULL, spaceAfter smallint(5) unsigned DEFAULT '0' NOT NULL, spaceBefore smallint(5) unsigned DEFAULT '0' NOT NULL, table_bgColor int(11) unsigned DEFAULT '0' NOT NULL, table_border tinyint(3) unsigned DEFAULT '0' NOT NULL, table_cellpadding tinyint(3) unsigned DEFAULT '0' NOT NULL, table_cellspacing tinyint(3) unsigned DEFAULT '0' NOT NULL)
CREATE TABLE tx_linkvalidator_link ( uid int(11) NOT NULL auto_increment, record_uid int(11) DEFAULT '0' NOT NULL, record_pid int(11) DEFAULT '0' NOT NULL, headline varchar(255) DEFAULT '' NOT NULL, field varchar(255) DEFAULT '' NOT NULL, table_name varchar(255) DEFAULT '' NOT NULL, link_title text, url text, url_response text, last_check int(11) DEFAULT '0' NOT NULL, link_type varchar(50) DEFAULT '' NOT NULL, PRIMARY KEY (uid))
CREATE TABLE a_test_table ( title VARCHAR(50) DEFAULT '' NOT NULL, description TEXT)
CREATE TABLE sys_collection_entries ( uid int(11) NOT NULL auto_increment, uid_local int(11) DEFAULT '0' NOT NULL, uid_foreign int(11) DEFAULT '0' NOT NULL, tablenames varchar(64) DEFAULT '' NOT NULL, sorting int(11) DEFAULT '0' NOT NULL, KEY uid_local (uid_local), KEY uid_foreign (uid_foreign), PRIMARY KEY (uid))
CREATE TABLE tx_impexp_presets ( uid int(11) NOT NULL auto_increment, user_uid int(11) DEFAULT '0' NOT NULL, title varchar(255) DEFAULT '' NOT NULL, public tinyint(3) DEFAULT '0' NOT NULL, item_uid int(11) DEFAULT '0' NOT NULL, preset_data blob, PRIMARY KEY (uid), KEY lookup (item_uid))
CREATE TABLE tx_rtehtmlarea_acronym ( uid int(11) unsigned NOT NULL auto_increment, pid int(11) unsigned DEFAULT '0' NOT NULL, deleted tinyint(4) unsigned DEFAULT '0' NOT NULL, hidden tinyint(4) unsigned DEFAULT '0' NOT NULL, starttime int(11) unsigned DEFAULT '0' NOT NULL, endtime int(11) unsigned DEFAULT '0' NOT NULL, sorting int(11) unsigned DEFAULT '0' NOT NULL, sys_language_uid int(11) DEFAULT '0' NOT NULL, type tinyint(3) unsigned DEFAULT '1' NOT NULL, term varchar(255) DEFAULT '' NOT NULL, acronym varchar(255) DEFAULT '' NOT NULL, static_lang_isocode int(11) unsigned DEFAULT '0' NOT NULL, PRIMARY KEY (uid), KEY parent (pid))
CREATE TABLE tx_extensionmanager_domain_model_repository ( uid int(11) unsigned NOT NULL auto_increment, pid int(11) unsigned DEFAULT '0' NOT NULL, title varchar(150) NOT NULL default '', description mediumtext, wsdl_url varchar(100) NOT NULL default '', mirror_list_url varchar(100) NOT NULL default '', last_update int(11) unsigned DEFAULT '0' NOT NULL, extension_count int(11) DEFAULT '0' NOT NULL, PRIMARY KEY (uid))
CREATE TABLE tx_blogexample_domain_model_tag ( uid int(11) unsigned DEFAULT '0' NOT NULL auto_increment, pid int(11) DEFAULT '0' NOT NULL, name varchar(255) DEFAULT '' NOT NULL, posts int(11) unsigned DEFAULT '0' NOT NULL, tstamp int(11) unsigned DEFAULT '0' NOT NULL, crdate int(11) unsigned DEFAULT '0' NOT NULL, deleted tinyint(4) unsigned DEFAULT '0' NOT NULL, hidden tinyint(4) unsigned DEFAULT '0' NOT NULL, sys_language_uid int(11) DEFAULT '0' NOT NULL, PRIMARY KEY (uid), KEY parent (pid))
CREATE TABLE ' . $table . ' (' . implode((',' . LF), $lines) . ')
CREATE TABLE fe_users ( felogin_redirectPid tinytext, felogin_forgotHash varchar(80) default '' )
SELECT * FROM pages WHERE (uid=1) AND (pages.deleted = 0)';
CREATE TABLE a_test_table ( uid INT(11) UNSIGNED NOT NULL AUTO_INCREMENT, pid INT(11) UNSIGNED DEFAULT '0' NOT NULL, tstamp INT(11) UNSIGNED DEFAULT '0' NOT NULL, deleted TINYINT(3) UNSIGNED DEFAULT '0' NOT NULL, PRIMARY KEY (uid), KEY parent (pid))
CREATE TABLE tx_irretutorial_mnattr_offer ( uid int(11) NOT NULL auto_increment, pid int(11) DEFAULT '0' NOT NULL, tstamp int(11) DEFAULT '0' NOT NULL, crdate int(11) DEFAULT '0' NOT NULL, cruser_id int(11) DEFAULT '0' NOT NULL, sys_language_uid int(11) DEFAULT '0' NOT NULL, l18n_parent int(11) DEFAULT '0' NOT NULL, l18n_diffsource mediumblob NOT NULL, sorting int(10) DEFAULT '0' NOT NULL, deleted tinyint(4) DEFAULT '0' NOT NULL, hidden tinyint(4) DEFAULT '0' NOT NULL, t3ver_oid int(11) DEFAULT '0' NOT NULL, t3ver_id int(11) DEFAULT '0' NOT NULL, t3ver_wsid int(11) DEFAULT '0' NOT NULL, t3ver_label varchar(30) DEFAULT '' NOT NULL, t3ver_state tinyint(4) DEFAULT '0' NOT NULL, t3ver_stage tinyint(4) DEFAULT '0' NOT NULL, t3ver_count int(11) DEFAULT '0' NOT NULL, t3ver_tstamp int(11) DEFAULT '0' NOT NULL, t3ver_move_id int(11) DEFAULT '0' NOT NULL, t3_origuid int(11) DEFAULT '0' NOT NULL, title tinytext NOT NULL, hotels int(11) DEFAULT '0' NOT NULL, PRIMARY KEY (uid), KEY parent (pid))
SELECT SCHEMA_NAME FROM information_schema.SCHEMATA');
SELECT * FROM {$this->testTable} WHERE {$this->testField}='baz' OR {$this->testField}='bar'
CREATE TABLE index_stat_search ( uid int(11) NOT NULL auto_increment, searchstring varchar(255) DEFAULT '' NOT NULL, searchoptions blob, tstamp int(11) DEFAULT '0' NOT NULL, feuser_id int(11) unsigned DEFAULT '0' NOT NULL, cookie varchar(32) DEFAULT '' NOT NULL, IP varchar(255) DEFAULT '' NOT NULL, hits int(11) DEFAULT '0' NOT NULL, PRIMARY KEY (uid))
CREATE TABLE a_test_table ( uid BIGINT(11) NOT NULL AUTO_INCREMENT,)
CREATE TABLE fe_users ( tx_extbase_type varchar(255) DEFAULT '0' NOT NULL)
CREATE TABLE sys_domain ( uid int(11) unsigned NOT NULL auto_increment, pid int(11) unsigned DEFAULT '0' NOT NULL, tstamp int(11) unsigned DEFAULT '0' NOT NULL, crdate int(11) unsigned DEFAULT '0' NOT NULL, cruser_id int(11) unsigned DEFAULT '0' NOT NULL, hidden tinyint(4) unsigned DEFAULT '0' NOT NULL, domainName varchar(80) DEFAULT '' NOT NULL, redirectTo varchar(255) DEFAULT '' NOT NULL, redirectHttpStatusCode int(4) unsigned DEFAULT '301' NOT NULL, sorting int(10) unsigned DEFAULT '0' NOT NULL, prepend_params int(10) DEFAULT '0' NOT NULL, forced tinyint(3) unsigned DEFAULT '0' NOT NULL, PRIMARY KEY (uid), KEY parent (pid), KEY getSysDomain (redirectTo,hidden))
CREATE TABLE sys_language ( uid int(11) unsigned NOT NULL auto_increment, pid int(11) unsigned DEFAULT '0' NOT NULL, tstamp int(11) unsigned DEFAULT '0' NOT NULL, hidden tinyint(4) unsigned DEFAULT '0' NOT NULL, title varchar(80) DEFAULT '' NOT NULL, flag varchar(20) DEFAULT '' NOT NULL, language_isocode varchar(2) DEFAULT '' NOT NULL, static_lang_isocode int(11) unsigned DEFAULT '0' NOT NULL, sorting int(11) unsigned DEFAULT '0' NOT NULL, PRIMARY KEY (uid), KEY parent (pid))
CREATE TABLE `aTable`(`aField` INT(11))
CREATE TABLE backend_layout ( uid int(11) NOT NULL auto_increment, pid int(11) DEFAULT '0' NOT NULL, t3ver_oid int(11) DEFAULT '0' NOT NULL, t3ver_id int(11) DEFAULT '0' NOT NULL, t3ver_wsid int(11) DEFAULT '0' NOT NULL, t3ver_label varchar(255) DEFAULT '' NOT NULL, t3ver_state tinyint(4) DEFAULT '0' NOT NULL, t3ver_stage int(11) DEFAULT '0' NOT NULL, t3ver_count int(11) DEFAULT '0' NOT NULL, t3ver_tstamp int(11) DEFAULT '0' NOT NULL, t3ver_move_id int(11) DEFAULT '0' NOT NULL, t3_origuid int(11) DEFAULT '0' NOT NULL, tstamp int(11) unsigned DEFAULT '0' NOT NULL, crdate int(11) unsigned DEFAULT '0' NOT NULL, cruser_id int(11) unsigned DEFAULT '0' NOT NULL, hidden tinyint(4) unsigned DEFAULT '0' NOT NULL, deleted tinyint(4) DEFAULT '0' NOT NULL, sorting int(11) unsigned DEFAULT '0' NOT NULL, title varchar(255) DEFAULT '' NOT NULL, description text, config text NOT NULL, icon text NOT NULL, PRIMARY KEY (uid), KEY parent (pid), KEY t3ver_oid (t3ver_oid,t3ver_wsid))
CREATE TABLE tx_irretutorial_1ncsv_hotel ( uid int(11) NOT NULL auto_increment, pid int(11) DEFAULT '0' NOT NULL, tstamp int(11) DEFAULT '0' NOT NULL, crdate int(11) DEFAULT '0' NOT NULL, cruser_id int(11) DEFAULT '0' NOT NULL, sys_language_uid int(11) DEFAULT '0' NOT NULL, l18n_parent int(11) DEFAULT '0' NOT NULL, l18n_diffsource mediumblob NOT NULL, sorting int(10) DEFAULT '0' NOT NULL, deleted tinyint(4) DEFAULT '0' NOT NULL, hidden tinyint(4) DEFAULT '0' NOT NULL, t3ver_oid int(11) DEFAULT '0' NOT NULL, t3ver_id int(11) DEFAULT '0' NOT NULL, t3ver_wsid int(11) DEFAULT '0' NOT NULL, t3ver_label varchar(30) DEFAULT '' NOT NULL, t3ver_state tinyint(4) DEFAULT '0' NOT NULL, t3ver_stage tinyint(4) DEFAULT '0' NOT NULL, t3ver_count int(11) DEFAULT '0' NOT NULL, t3ver_tstamp int(11) DEFAULT '0' NOT NULL, t3ver_move_id int(11) DEFAULT '0' NOT NULL, t3_origuid int(11) DEFAULT '0' NOT NULL, title tinytext NOT NULL, offers text NOT NULL, PRIMARY KEY (uid), KEY parent (pid))
CREATE TABLE IF NOT EXISTS `another_test_table` ( `uid` INT(11) UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY, `pid` INT(11) UNSIGNED DEFAULT '0' NOT NULL)
CREATE TABLE pages ( tx_irretutorial_hotels int(11) DEFAULT '0' NOT NULL)
INSERT INTO tx_extensionmanager_domain_model_repository VALUES ('1', '0', 'TYPO3.org Main Repository', 'Main repository on typo3.org. This repository has some mirrors configured which are available with the mirror url.', 'https://typo3.org/wsdl/tx_ter_wsdl.php', 'https://repositories.typo3.org/mirrors.xml.gz', '1346191200', '0')
CREATE TABLE index_fulltext ( phash int(11) DEFAULT '0' NOT NULL, fulltextdata mediumtext, metaphonedata mediumtext NOT NULL, PRIMARY KEY (phash))
CREATE TABLE sys_file_storage ( uid int(11) NOT NULL auto_increment, pid int(11) DEFAULT '0' NOT NULL, tstamp int(11) DEFAULT '0' NOT NULL, crdate int(11) DEFAULT '0' NOT NULL, cruser_id int(11) DEFAULT '0' NOT NULL, deleted tinyint(4) DEFAULT '0' NOT NULL, name varchar(30) DEFAULT '' NOT NULL, description text, driver tinytext, configuration text, is_default tinyint(4) DEFAULT '0' NOT NULL, is_browsable tinyint(4) DEFAULT '0' NOT NULL, is_public tinyint(4) DEFAULT '0' NOT NULL, is_writable tinyint(4) DEFAULT '0' NOT NULL, is_online tinyint(4) DEFAULT '1' NOT NULL, auto_extract_metadata tinyint(4) DEFAULT '1' NOT NULL, processingfolder tinytext, PRIMARY KEY (uid), KEY parent (pid,deleted))
CREATE TABLE index_grlist ( phash int(11) DEFAULT '0' NOT NULL, phash_x int(11) DEFAULT '0' NOT NULL, hash_gr_list int(11) DEFAULT '0' NOT NULL, gr_list varchar(255) DEFAULT '' NOT NULL, uniqid int(11) NOT NULL auto_increment, PRIMARY KEY (uniqid), KEY joinkey (phash,hash_gr_list), KEY phash_grouping (phash_x,hash_gr_list))
CREATE TABLE `aTable`(checksum VARCHAR(64))
SELECT * FROM pages WHERE (uid=1) AND ((pages.deleted = 0) AND (pages.hidden = 0))';
CREATE TABLE another_test_table ( uid INT(11) UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY, title VARCHAR(50) DEFAULT '' NOT NULL)
CREATE TABLE ' . $table . ' (' . implode(',', $whole_table) . ')
CREATE TABLE aTestTable(' . LF . ' aTestField INT(11)' . LF . ')
CREATE TABLE tx_blogexample_domain_model_dateexample ( uid int(11) unsigned DEFAULT '0' NOT NULL auto_increment, pid int(11) DEFAULT '0' NOT NULL, datetime_int int(11) DEFAULT '0' NOT NULL, datetime_text varchar(255) DEFAULT '' NOT NULL, datetime_datetime datetime, tstamp int(11) unsigned DEFAULT '0' NOT NULL, crdate int(11) unsigned DEFAULT '0' NOT NULL, deleted tinyint(4) unsigned DEFAULT '0' NOT NULL, hidden tinyint(4) unsigned DEFAULT '0' NOT NULL, sys_language_uid int(11) DEFAULT '0' NOT NULL, PRIMARY KEY (uid), KEY parent (pid))
CREATE TABLE sys_file_processedfile ( uid int(11) NOT NULL auto_increment, tstamp int(11) DEFAULT '0' NOT NULL, crdate int(11) DEFAULT '0' NOT NULL, storage int(11) DEFAULT '0' NOT NULL, original int(11) DEFAULT '0' NOT NULL, identifier varchar(512) DEFAULT '' NOT NULL, name tinytext, configuration text, configurationsha1 char(40) DEFAULT '' NOT NULL, originalfilesha1 char(40) DEFAULT '' NOT NULL, task_type varchar(200) DEFAULT '' NOT NULL, checksum char(10) DEFAULT '' NOT NULL, width int(11) DEFAULT '0', height int(11) DEFAULT '0', PRIMARY KEY (uid), KEY combined_1 (original,task_type,configurationsha1), KEY identifier (storage,identifier(199)))
CREATE TABLE tx_irretutorial_mnmmasym_hotel_offer_rel ( uid int(11) NOT NULL auto_increment, uid_local int(11) DEFAULT '0' NOT NULL, uid_foreign int(11) DEFAULT '0' NOT NULL, tablenames varchar(255) DEFAULT '' NOT NULL, sorting int(11) DEFAULT '0' NOT NULL, sorting_foreign int(11) DEFAULT '0' NOT NULL, ident varchar(255) DEFAULT '' NOT NULL, KEY uid_local (uid_local), KEY uid_foreign (uid_foreign), PRIMARY KEY (uid))
CREATE TABLE cache_md5params ( md5hash varchar(20) DEFAULT '' NOT NULL, tstamp int(11) DEFAULT '0' NOT NULL, type tinyint(3) DEFAULT '0' NOT NULL, params text, PRIMARY KEY (md5hash))
CREATE TABLE tx_irretutorial_mnasym_offer ( uid int(11) NOT NULL auto_increment, pid int(11) DEFAULT '0' NOT NULL, tstamp int(11) DEFAULT '0' NOT NULL, crdate int(11) DEFAULT '0' NOT NULL, cruser_id int(11) DEFAULT '0' NOT NULL, sys_language_uid int(11) DEFAULT '0' NOT NULL, l18n_parent int(11) DEFAULT '0' NOT NULL, l18n_diffsource mediumblob NOT NULL, sorting int(10) DEFAULT '0' NOT NULL, deleted tinyint(4) DEFAULT '0' NOT NULL, hidden tinyint(4) DEFAULT '0' NOT NULL, t3ver_oid int(11) DEFAULT '0' NOT NULL, t3ver_id int(11) DEFAULT '0' NOT NULL, t3ver_wsid int(11) DEFAULT '0' NOT NULL, t3ver_label varchar(30) DEFAULT '' NOT NULL, t3ver_state tinyint(4) DEFAULT '0' NOT NULL, t3ver_stage tinyint(4) DEFAULT '0' NOT NULL, t3ver_count int(11) DEFAULT '0' NOT NULL, t3ver_tstamp int(11) DEFAULT '0' NOT NULL, t3ver_move_id int(11) DEFAULT '0' NOT NULL, t3_origuid int(11) DEFAULT '0' NOT NULL, title tinytext NOT NULL, hotels int(11) DEFAULT '0' NOT NULL, PRIMARY KEY (uid), KEY parent (pid))
CREATE TABLE sys_registry ( uid int(11) unsigned NOT NULL auto_increment, entry_namespace varchar(128) DEFAULT '' NOT NULL, entry_key varchar(128) DEFAULT '' NOT NULL, entry_value blob, PRIMARY KEY (uid), UNIQUE KEY entry_identifier (entry_namespace,entry_key))
CREATE TABLE tx_irretutorial_mnsym_hotel ( uid int(11) NOT NULL auto_increment, pid int(11) DEFAULT '0' NOT NULL, tstamp int(11) DEFAULT '0' NOT NULL, crdate int(11) DEFAULT '0' NOT NULL, cruser_id int(11) DEFAULT '0' NOT NULL, sys_language_uid int(11) DEFAULT '0' NOT NULL, l18n_parent int(11) DEFAULT '0' NOT NULL, l18n_diffsource mediumblob NOT NULL, sorting int(10) DEFAULT '0' NOT NULL, deleted tinyint(4) DEFAULT '0' NOT NULL, hidden tinyint(4) DEFAULT '0' NOT NULL, t3ver_oid int(11) DEFAULT '0' NOT NULL, t3ver_id int(11) DEFAULT '0' NOT NULL, t3ver_wsid int(11) DEFAULT '0' NOT NULL, t3ver_label varchar(30) DEFAULT '' NOT NULL, t3ver_state tinyint(4) DEFAULT '0' NOT NULL, t3ver_stage tinyint(4) DEFAULT '0' NOT NULL, t3ver_count int(11) DEFAULT '0' NOT NULL, t3ver_tstamp int(11) DEFAULT '0' NOT NULL, t3ver_move_id int(11) DEFAULT '0' NOT NULL, t3_origuid int(11) DEFAULT '0' NOT NULL, title tinytext NOT NULL, branches int(11) DEFAULT '0' NOT NULL, PRIMARY KEY (uid), KEY parent (pid))
CREATE TABLE be_groups ( uid int(11) unsigned NOT NULL auto_increment, pid int(11) unsigned DEFAULT '0' NOT NULL, tstamp int(11) unsigned DEFAULT '0' NOT NULL, title varchar(50) DEFAULT '' NOT NULL, non_exclude_fields text, explicit_allowdeny text, allowed_languages varchar(255) DEFAULT '' NOT NULL, custom_options text, db_mountpoints text, pagetypes_select varchar(255) DEFAULT '' NOT NULL, tables_select text, tables_modify text, crdate int(11) unsigned DEFAULT '0' NOT NULL, cruser_id int(11) unsigned DEFAULT '0' NOT NULL, groupMods text, file_mountpoints text, file_permissions text, hidden tinyint(1) unsigned DEFAULT '0' NOT NULL, description varchar(2000) DEFAULT '' NOT NULL, lockToDomain varchar(50) DEFAULT '' NOT NULL, deleted tinyint(1) unsigned DEFAULT '0' NOT NULL, TSconfig text, subgroup text, hide_in_lists tinyint(4) DEFAULT '0' NOT NULL, workspace_perms tinyint(3) DEFAULT '1' NOT NULL, category_perms text, PRIMARY KEY (uid), KEY parent (pid))
CREATE TABLE sys_category_record_mm ( uid_local int(11) DEFAULT '0' NOT NULL, uid_foreign int(11) DEFAULT '0' NOT NULL, tablenames varchar(255) DEFAULT '' NOT NULL, fieldname varchar(255) DEFAULT '' NOT NULL, sorting int(11) DEFAULT '0' NOT NULL, sorting_foreign int(11) DEFAULT '0' NOT NULL, KEY uid_local_foreign (uid_local,uid_foreign), KEY uid_foreign_tablefield (uid_foreign,tablenames(40),fieldname(3),sorting_foreign))
SELECT * FROM {$this->testTable} WHERE {$this->testField} IN ('baz', 'bar', 'foo')
CREATE TABLE tx_irretutorial_1ncsv_offer ( uid int(11) NOT NULL auto_increment, pid int(11) DEFAULT '0' NOT NULL, tstamp int(11) DEFAULT '0' NOT NULL, crdate int(11) DEFAULT '0' NOT NULL, cruser_id int(11) DEFAULT '0' NOT NULL, sys_language_uid int(11) DEFAULT '0' NOT NULL, l18n_parent int(11) DEFAULT '0' NOT NULL, l18n_diffsource mediumblob NOT NULL, sorting int(10) DEFAULT '0' NOT NULL, deleted tinyint(4) DEFAULT '0' NOT NULL, hidden tinyint(4) DEFAULT '0' NOT NULL, t3ver_oid int(11) DEFAULT '0' NOT NULL, t3ver_id int(11) DEFAULT '0' NOT NULL, t3ver_wsid int(11) DEFAULT '0' NOT NULL, t3ver_label varchar(30) DEFAULT '' NOT NULL, t3ver_state tinyint(4) DEFAULT '0' NOT NULL, t3ver_stage tinyint(4) DEFAULT '0' NOT NULL, t3ver_count int(11) DEFAULT '0' NOT NULL, t3ver_tstamp int(11) DEFAULT '0' NOT NULL, t3ver_move_id int(11) DEFAULT '0' NOT NULL, t3_origuid int(11) DEFAULT '0' NOT NULL, title tinytext NOT NULL, prices text NOT NULL, PRIMARY KEY (uid), KEY parent (pid))
CREATE TABLE fe_groups ( uid int(11) unsigned NOT NULL auto_increment, pid int(11) unsigned DEFAULT '0' NOT NULL, tstamp int(11) unsigned DEFAULT '0' NOT NULL, crdate int(11) unsigned DEFAULT '0' NOT NULL, cruser_id int(11) unsigned DEFAULT '0' NOT NULL, title varchar(50) DEFAULT '' NOT NULL, hidden tinyint(3) unsigned DEFAULT '0' NOT NULL, lockToDomain varchar(50) DEFAULT '' NOT NULL, deleted tinyint(3) unsigned DEFAULT '0' NOT NULL, description text, subgroup tinytext, TSconfig text, PRIMARY KEY (uid), KEY parent (pid))
CREATE TABLE a_test_table ( pid BIGINT(11) UNSIGNED NOT NULL, title VARCHAR(50) DEFAULT '' NOT NULL, UNIQUE title (title))
CREATE TABLE ###CACHE_TABLE### ( id int(11) unsigned NOT NULL auto_increment, identifier varchar(250) DEFAULT '' NOT NULL, expires int(11) unsigned DEFAULT '0' NOT NULL, content mediumblob, PRIMARY KEY (id), KEY cache_id (identifier,expires))
SELECT * FROM {$this->testTable} WHERE test='baz'
CREATE TABLE be_sessions ( ses_id varchar(32) DEFAULT '' NOT NULL, ses_name varchar(32) DEFAULT '' NOT NULL, ses_iplock varchar(39) DEFAULT '' NOT NULL, ses_hashlock int(11) DEFAULT '0' NOT NULL, ses_userid int(11) unsigned DEFAULT '0' NOT NULL, ses_tstamp int(11) unsigned DEFAULT '0' NOT NULL, ses_data longtext, ses_backuserid int(11) NOT NULL default '0', PRIMARY KEY (ses_id,ses_name), KEY ses_tstamp (ses_tstamp))
CREATE TABLE tx_irretutorial_mnmmasym_hotel ( uid int(11) NOT NULL auto_increment, pid int(11) DEFAULT '0' NOT NULL, tstamp int(11) DEFAULT '0' NOT NULL, crdate int(11) DEFAULT '0' NOT NULL, cruser_id int(11) DEFAULT '0' NOT NULL, sys_language_uid int(11) DEFAULT '0' NOT NULL, l18n_parent int(11) DEFAULT '0' NOT NULL, l18n_diffsource mediumblob NOT NULL, sorting int(10) DEFAULT '0' NOT NULL, deleted tinyint(4) DEFAULT '0' NOT NULL, hidden tinyint(4) DEFAULT '0' NOT NULL, t3ver_oid int(11) DEFAULT '0' NOT NULL, t3ver_id int(11) DEFAULT '0' NOT NULL, t3ver_wsid int(11) DEFAULT '0' NOT NULL, t3ver_label varchar(30) DEFAULT '' NOT NULL, t3ver_state tinyint(4) DEFAULT '0' NOT NULL, t3ver_stage tinyint(4) DEFAULT '0' NOT NULL, t3ver_count int(11) DEFAULT '0' NOT NULL, t3ver_tstamp int(11) DEFAULT '0' NOT NULL, t3ver_move_id int(11) DEFAULT '0' NOT NULL, t3_origuid int(11) DEFAULT '0' NOT NULL, title tinytext NOT NULL, offers int(11) DEFAULT '0' NOT NULL, PRIMARY KEY (uid), KEY parent (pid))
CREATE TABLE `aTable`(`aField` VARCHAR)
CREATE TABLE sys_note ( uid int(11) unsigned NOT NULL auto_increment, pid int(11) unsigned DEFAULT '0' NOT NULL, deleted tinyint(3) unsigned DEFAULT '0' NOT NULL, tstamp int(11) unsigned DEFAULT '0' NOT NULL, crdate int(11) unsigned DEFAULT '0' NOT NULL, cruser int(11) unsigned DEFAULT '0' NOT NULL, subject varchar(255) DEFAULT '' NOT NULL, message text, personal tinyint(3) unsigned DEFAULT '0' NOT NULL, category tinyint(3) unsigned DEFAULT '0' NOT NULL, sorting int(11) DEFAULT '0' NOT NULL, PRIMARY KEY (uid), KEY parent (pid))
CREATE TABLE `aTable`(`aField` VARBINARY)
CREATE TABLE sys_be_shortcuts ( uid int(11) unsigned NOT NULL auto_increment, userid int(11) unsigned DEFAULT '0' NOT NULL, module_name varchar(255) DEFAULT '' NOT NULL, url text, description varchar(255) DEFAULT '' NOT NULL, sorting int(11) DEFAULT '0' NOT NULL, sc_group tinyint(4) DEFAULT '0' NOT NULL, PRIMARY KEY (uid), KEY event (userid))
CREATE TABLE ###TAGS_TABLE### ( id int(11) unsigned NOT NULL auto_increment, identifier varchar(250) DEFAULT '' NOT NULL, tag varchar(250) DEFAULT '' NOT NULL, PRIMARY KEY (id), KEY cache_id (identifier), KEY cache_tag (tag))
CREATE TABLE sys_workspace_stage ( uid int(11) NOT NULL auto_increment, pid int(11) DEFAULT '0' NOT NULL, tstamp int(11) DEFAULT '0' NOT NULL, deleted tinyint(1) DEFAULT '0' NOT NULL, sorting int(11) unsigned DEFAULT '0' NOT NULL, title varchar(30) DEFAULT '' NOT NULL, responsible_persons varchar(255) DEFAULT '' NOT NULL, default_mailcomment text, parentid int(11) DEFAULT '0' NOT NULL, parenttable tinytext NOT NULL, notification_defaults varchar(255) DEFAULT '' NOT NULL, allow_notificaton_settings tinyint(3) DEFAULT '0' NOT NULL, notification_preselection tinyint(3) DEFAULT '8' NOT NULL, PRIMARY KEY (uid), KEY parent (pid))
CREATE TABLE pages ( tx_impexp_origuid int(11) DEFAULT '0' NOT NULL)
CREATE TABLE pages_language_overlay ( tx_impexp_origuid int(11) DEFAULT '0' NOT NULL)
create table if not exists table1( a bigint(13) not null primary key, b char(4) not null, c char(50) not null, d int(9) not null,)
CREATE TABLE sys_action ( uid int(11) unsigned NOT NULL auto_increment, pid int(11) unsigned DEFAULT '0' NOT NULL, tstamp int(11) unsigned DEFAULT '0' NOT NULL, crdate int(11) unsigned DEFAULT '0' NOT NULL, cruser_id int(11) unsigned DEFAULT '0' NOT NULL, sorting int(10) DEFAULT '0' NOT NULL, title varchar(255) DEFAULT '' NOT NULL, description text, type tinyint(3) unsigned DEFAULT '0' NOT NULL, t1_userprefix varchar(20) DEFAULT '' NOT NULL, t1_copy_of_user int(11) DEFAULT '0' NOT NULL, t1_allowed_groups tinytext, t2_data blob, assign_to_groups int(11) DEFAULT '0' NOT NULL, hidden tinyint(4) DEFAULT '0' NOT NULL, t1_create_user_dir tinyint(4) DEFAULT '0' NOT NULL, t3_listPid int(11) DEFAULT '0' NOT NULL, t3_tables varchar(255) DEFAULT '' NOT NULL, t4_recordsToEdit text, PRIMARY KEY (uid), KEY cruser_id (cruser_id), KEY parent (pid))
CREATE TABLE fe_sessions ( ses_id varchar(32) DEFAULT '' NOT NULL, ses_name varchar(32) DEFAULT '' NOT NULL, ses_iplock varchar(39) DEFAULT '' NOT NULL, ses_hashlock int(11) DEFAULT '0' NOT NULL, ses_userid int(11) unsigned DEFAULT '0' NOT NULL, ses_tstamp int(11) unsigned DEFAULT '0' NOT NULL, ses_data blob, ses_permanent tinyint(1) unsigned DEFAULT '0' NOT NULL, PRIMARY KEY (ses_id,ses_name), KEY ses_tstamp (ses_tstamp))
CREATE TABLE sys_refindex ( hash varchar(32) DEFAULT '' NOT NULL, tablename varchar(255) DEFAULT '' NOT NULL, recuid int(11) DEFAULT '0' NOT NULL, field varchar(64) DEFAULT '' NOT NULL, flexpointer varchar(255) DEFAULT '' NOT NULL, softref_key varchar(30) DEFAULT '' NOT NULL, softref_id varchar(40) DEFAULT '' NOT NULL, sorting int(11) DEFAULT '0' NOT NULL, deleted tinyint(1) DEFAULT '0' NOT NULL, workspace int(11) DEFAULT '0' NOT NULL, ref_table varchar(255) DEFAULT '' NOT NULL, ref_uid int(11) DEFAULT '0' NOT NULL, ref_string varchar(200) DEFAULT '' NOT NULL, PRIMARY KEY (hash), KEY lookup_rec (tablename,recuid), KEY lookup_uid (ref_table,ref_uid), KEY lookup_string (ref_string))
CREATE TABLE tt_content ( tx_testdatahandler_select text, tx_testdatahandler_group text, tx_testdatahandler_radio text, tx_testdatahandler_checkbox text)
CREATE TABLE sys_lockedrecords ( uid int(11) unsigned NOT NULL auto_increment, userid int(11) unsigned DEFAULT '0' NOT NULL, tstamp int(11) unsigned DEFAULT '0' NOT NULL, record_table varchar(255) DEFAULT '' NOT NULL, record_uid int(11) DEFAULT '0' NOT NULL, record_pid int(11) DEFAULT '0' NOT NULL, username varchar(50) DEFAULT '' NOT NULL, feuserid int(11) unsigned DEFAULT '0' NOT NULL, PRIMARY KEY (uid), KEY event (userid,tstamp))
CREATE TABLE cache_treelist ( md5hash char(32) DEFAULT '' NOT NULL, pid int(11) DEFAULT '0' NOT NULL, treelist mediumtext, tstamp int(11) DEFAULT '0' NOT NULL, expires int(11) unsigned DEFAULT '0' NOT NULL, PRIMARY KEY (md5hash))
CREATE TABLE a_test_table ( uid INT(11) UNSIGNED NOT NULL AUTO_INCREMENT, pid INT(11) UNSIGNED DEFAULT '0' NOT NULL, tstamp INT(11) UNSIGNED DEFAULT '0' NOT NULL, hidden TINYINT(3) UNSIGNED DEFAULT '0' NOT NULL, deleted TINYINT(3) UNSIGNED DEFAULT '0' NOT NULL, PRIMARY KEY (uid), KEY parent (pid))
CREATE TABLE sys_preview ( keyword varchar(32) DEFAULT '' NOT NULL, tstamp int(11) DEFAULT '0' NOT NULL, endtime int(11) DEFAULT '0' NOT NULL, config text, PRIMARY KEY (keyword))
CREATE TABLE tx_testdatahandler_element ( uid int(11) NOT NULL auto_increment, pid int(11) DEFAULT '0' NOT NULL, tstamp int(11) DEFAULT '0' NOT NULL, crdate int(11) DEFAULT '0' NOT NULL, cruser_id int(11) DEFAULT '0' NOT NULL, sys_language_uid int(11) DEFAULT '0' NOT NULL, l10n_parent int(11) DEFAULT '0' NOT NULL, l10n_diffsource mediumblob NOT NULL, sorting int(10) DEFAULT '0' NOT NULL, deleted tinyint(4) DEFAULT '0' NOT NULL, hidden tinyint(4) DEFAULT '0' NOT NULL, t3ver_oid int(11) DEFAULT '0' NOT NULL, t3ver_id int(11) DEFAULT '0' NOT NULL, t3ver_wsid int(11) DEFAULT '0' NOT NULL, t3ver_label varchar(30) DEFAULT '' NOT NULL, t3ver_state tinyint(4) DEFAULT '0' NOT NULL, t3ver_stage tinyint(4) DEFAULT '0' NOT NULL, t3ver_count int(11) DEFAULT '0' NOT NULL, t3ver_tstamp int(11) DEFAULT '0' NOT NULL, t3ver_move_id int(11) DEFAULT '0' NOT NULL, t3_origuid int(11) DEFAULT '0' NOT NULL, title tinytext NOT NULL, PRIMARY KEY (uid), KEY parent (pid))
CREATE TABLE `aTable`(`aField` INT(11) %s)
CREATE TABLE tx_blogexample_domain_model_comment ( uid int(11) unsigned DEFAULT '0' NOT NULL auto_increment, pid int(11) DEFAULT '0' NOT NULL, post int(11) DEFAULT '0' NOT NULL, date datetime, author varchar(255) DEFAULT '' NOT NULL, email varchar(255) DEFAULT '' NOT NULL, content text NOT NULL, tstamp int(11) unsigned DEFAULT '0' NOT NULL, crdate int(11) unsigned DEFAULT '0' NOT NULL, deleted tinyint(4) unsigned DEFAULT '0' NOT NULL, hidden tinyint(4) unsigned DEFAULT '0' NOT NULL, PRIMARY KEY (uid), KEY parent (pid))
CREATE TABLE pages_language_overlay ( tx_irretutorial_hotels int(11) DEFAULT '0' NOT NULL)
INSERT INTO a_test_table VALUES (NULL, 0, 0, 0, 0)
CREATE TABLE tt_content ( bullets_type tinyint(3) unsigned DEFAULT '0' NOT NULL, uploads_description tinyint(1) unsigned DEFAULT '0' NOT NULL, uploads_type tinyint(3) unsigned DEFAULT '0' NOT NULL, assets int(11) unsigned DEFAULT '0' NOT NULL)
SELECT * FROM {$this->testTable} WHERE {$this->testField}='baz'
CREATE TABLE tx_irretutorial_mnmmasym_offer_price_rel ( uid int(11) NOT NULL auto_increment, uid_local int(11) DEFAULT '0' NOT NULL, uid_foreign int(11) DEFAULT '0' NOT NULL, tablenames varchar(255) DEFAULT '' NOT NULL, sorting int(11) DEFAULT '0' NOT NULL, sorting_foreign int(11) DEFAULT '0' NOT NULL, ident varchar(255) DEFAULT '' NOT NULL, KEY uid_local (uid_local), KEY uid_foreign (uid_foreign), PRIMARY KEY (uid))
CREATE TABLE tt_content ( tx_irretutorial_1nff_hotels int(11) DEFAULT '0' NOT NULL, tx_irretutorial_1ncsv_hotels text, tx_irretutorial_flexform mediumtext)
CREATE TABLE fe_groups ( felogin_redirectPid tinytext )
CREATE TABLE tx_blogexample_domain_model_tag_mm ( uid_local int(11) unsigned DEFAULT '0' NOT NULL, uid_foreign int(11) unsigned DEFAULT '0' NOT NULL, tablenames varchar(255) DEFAULT '' NOT NULL, fieldname varchar(255) DEFAULT '' NOT NULL, sorting int(11) unsigned DEFAULT '0' NOT NULL, sorting_foreign int(11) unsigned DEFAULT '0' NOT NULL, KEY uid_local (uid_local), KEY uid_foreign (uid_foreign))
CREATE TABLE sys_action_asgr_mm ( uid_local int(11) unsigned DEFAULT '0' NOT NULL, uid_foreign int(11) unsigned DEFAULT '0' NOT NULL, sorting int(11) unsigned DEFAULT '0' NOT NULL, KEY uid_local (uid_local), KEY uid_foreign (uid_foreign))
CREATE TABLE sys_news ( uid int(11) unsigned NOT NULL auto_increment, pid int(11) unsigned DEFAULT '0' NOT NULL, tstamp int(11) unsigned DEFAULT '0' NOT NULL, crdate int(11) unsigned DEFAULT '0' NOT NULL, cruser_id int(11) unsigned DEFAULT '0' NOT NULL, deleted tinyint(3) unsigned DEFAULT '0' NOT NULL, hidden tinyint(4) unsigned DEFAULT '0' NOT NULL, starttime int(11) unsigned DEFAULT '0' NOT NULL, endtime int(11) unsigned DEFAULT '0' NOT NULL, title varchar(255) DEFAULT '' NOT NULL, content mediumtext, PRIMARY KEY (uid), KEY parent (pid))
CREATE TABLE a_test_table ( aTestField DECIMAL (5, 2) UNSIGNED NULL DEFAULT NULL)
CREATE TABLE index_debug ( phash int(11) DEFAULT '0' NOT NULL, debuginfo mediumtext, PRIMARY KEY (phash))
CREATE TABLE sys_template ( tx_impexp_origuid int(11) DEFAULT '0' NOT NULL)
CREATE TABLE another_test_table ( uid INT(11) UNSIGNED NOT NULL AUTO_INCREMENT, pid INT(11) UNSIGNED DEFAULT '0' NOT NULL, tstamp INT(11) UNSIGNED DEFAULT '0' NOT NULL, hidden TINYINT(3) UNSIGNED DEFAULT '0' NOT NULL, deleted TINYINT(3) UNSIGNED DEFAULT '0' NOT NULL, PRIMARY KEY (uid), KEY parent (pid))
CREATE TABLE index_words ( wid int(11) DEFAULT '0' NOT NULL, baseword varchar(60) DEFAULT '' NOT NULL, metaphone int(11) DEFAULT '0' NOT NULL, is_stopword tinyint(3) DEFAULT '0' NOT NULL, PRIMARY KEY (wid), KEY baseword (baseword,wid), KEY metaphone (metaphone,wid))
CREATE TABLE index_fulltext (' . LF . 'fulltextdata mediumtext,' . LF . 'metaphonedata mediumtext,' . LF . 'FULLTEXT fulltextdata (fulltextdata),' . LF . 'FULLTEXT metaphonedata (metaphonedata)' . LF . ')
CREATE TABLE index_rel ( phash int(11) DEFAULT '0' NOT NULL, wid int(11) DEFAULT '0' NOT NULL, count tinyint(3) unsigned DEFAULT '0' NOT NULL, first int(11) unsigned DEFAULT '0' NOT NULL, freq smallint(5) unsigned DEFAULT '0' NOT NULL, flags tinyint(3) unsigned DEFAULT '0' NOT NULL, PRIMARY KEY (phash,wid), KEY wid (wid,phash))
CREATE TABLE a_test_table ( aTestField INT(11) NOT NULL)
CREATE TABLE tx_rsaauth_keys ( uid int(11) NOT NULL auto_increment, pid int(11) DEFAULT '0' NOT NULL, crdate int(11) DEFAULT '0' NOT NULL, key_value text, PRIMARY KEY (uid), KEY crdate (crdate))
SELECT * FROM {$this->testTable} WHERE {$this->testField}=baz
CREATE TABLE tx_irretutorial_mnattr_hotel ( uid int(11) NOT NULL auto_increment, pid int(11) DEFAULT '0' NOT NULL, tstamp int(11) DEFAULT '0' NOT NULL, crdate int(11) DEFAULT '0' NOT NULL, cruser_id int(11) DEFAULT '0' NOT NULL, sys_language_uid int(11) DEFAULT '0' NOT NULL, l18n_parent int(11) DEFAULT '0' NOT NULL, l18n_diffsource mediumblob NOT NULL, sorting int(10) DEFAULT '0' NOT NULL, deleted tinyint(4) DEFAULT '0' NOT NULL, hidden tinyint(4) DEFAULT '0' NOT NULL, t3ver_oid int(11) DEFAULT '0' NOT NULL, t3ver_id int(11) DEFAULT '0' NOT NULL, t3ver_wsid int(11) DEFAULT '0' NOT NULL, t3ver_label varchar(30) DEFAULT '' NOT NULL, t3ver_state tinyint(4) DEFAULT '0' NOT NULL, t3ver_stage tinyint(4) DEFAULT '0' NOT NULL, t3ver_count int(11) DEFAULT '0' NOT NULL, t3ver_tstamp int(11) DEFAULT '0' NOT NULL, t3ver_move_id int(11) DEFAULT '0' NOT NULL, t3_origuid int(11) DEFAULT '0' NOT NULL, title tinytext NOT NULL, offers int(11) DEFAULT '0' NOT NULL, PRIMARY KEY (uid), KEY parent (pid))
CREATE TABLE `aTable`(`aField` INT(11), %s)
CREATE TABLE fe_session_data ( hash varchar(32) DEFAULT '' NOT NULL, content mediumblob, tstamp int(11) unsigned DEFAULT '0' NOT NULL, PRIMARY KEY (hash), KEY tstamp (tstamp))
CREATE TABLE tx_scheduler_task ( uid int(11) unsigned NOT NULL auto_increment, crdate int(11) unsigned DEFAULT '0' NOT NULL, disable tinyint(4) unsigned DEFAULT '0' NOT NULL, description text, nextexecution int(11) unsigned DEFAULT '0' NOT NULL, lastexecution_time int(11) unsigned DEFAULT '0' NOT NULL, lastexecution_failure text, lastexecution_context char(3) DEFAULT '' NOT NULL, serialized_task_object blob, serialized_executions blob, task_group int(11) unsigned DEFAULT '0' NOT NULL, PRIMARY KEY (uid), KEY index_nextexecution (nextexecution))
CREATE TABLE tt_content ( tx_impexp_origuid int(11) DEFAULT '0' NOT NULL)
CREATE TABLE %s (' . PHP_EOL . ' %s int(11) DEFAULT \'0\' NOT NULL' . PHP_EOL . ')
CREATE TABLE tx_scheduler_task_group ( uid int(11) unsigned NOT NULL auto_increment, pid int(11) unsigned DEFAULT '0' NOT NULL, tstamp int(11) unsigned DEFAULT '0' NOT NULL, crdate int(11) unsigned DEFAULT '0' NOT NULL, cruser_id int(11) unsigned DEFAULT '0' NOT NULL, deleted tinyint(4) unsigned DEFAULT '0' NOT NULL, sorting int(11) unsigned DEFAULT '0' NOT NULL, hidden tinyint(4) unsigned DEFAULT '0' NOT NULL, groupName varchar(80) DEFAULT '' NOT NULL, description text, PRIMARY KEY (uid), KEY parent (pid))
CREATE TABLE tx_blogexample_post_tag_mm ( uid_local int(11) unsigned DEFAULT '0' NOT NULL, uid_foreign int(11) unsigned DEFAULT '0' NOT NULL, sorting int(11) unsigned DEFAULT '0' NOT NULL, sorting_foreign int(11) unsigned DEFAULT '0' NOT NULL, KEY uid_local (uid_local), KEY uid_foreign (uid_foreign))
SELECT COUNT(uid) FROM pages WHERE (uid=1) AND ((pages.deleted = 0) AND (pages.hidden = 0))';
CREATE TABLE fe_groups ( tx_extbase_type varchar(255) DEFAULT '0' NOT NULL)
SELECT * FROM {$this->testTable} ORDER BY id
CREATE TABLE sys_history ( uid int(11) unsigned NOT NULL auto_increment, pid int(11) unsigned DEFAULT '0' NOT NULL, sys_log_uid int(11) DEFAULT '0' NOT NULL, history_data mediumtext, fieldlist text, recuid int(11) DEFAULT '0' NOT NULL, tablename varchar(255) DEFAULT '' NOT NULL, tstamp int(11) DEFAULT '0' NOT NULL, history_files mediumtext, snapshot int(11) DEFAULT '0' NOT NULL, PRIMARY KEY (uid), KEY parent (pid), KEY recordident_1 (tablename,recuid), KEY recordident_2 (tablename,tstamp), KEY sys_log_uid (sys_log_uid))
CREATE TABLE sys_filemounts ( uid int(11) unsigned NOT NULL auto_increment, pid int(11) unsigned DEFAULT '0' NOT NULL, tstamp int(11) unsigned DEFAULT '0' NOT NULL, title varchar(30) DEFAULT '' NOT NULL, description varchar(2000) DEFAULT '' NOT NULL, path varchar(120) DEFAULT '' NOT NULL, base int(11) unsigned DEFAULT '0' NOT NULL, hidden tinyint(3) unsigned DEFAULT '0' NOT NULL, deleted tinyint(1) unsigned DEFAULT '0' NOT NULL, sorting int(11) unsigned DEFAULT '0' NOT NULL, read_only tinyint(1) unsigned DEFAULT '0' NOT NULL, PRIMARY KEY (uid), KEY parent (pid))
|
<filename>SQL/04. Basic Join/001. Asian Population.sql
-- # Problem: https://www.hackerrank.com/challenges/asian-population/problem
-- # Score: 10
SELECT SUM(CITY.POPULATION)
FROM CITY
JOIN COUNTRY ON CITY.COUNTRYCODE = COUNTRY.CODE
WHERE COUNTRY.CONTINENT = 'Asia';
|
BEGIN TRANSACTION;
CREATE TABLE IF NOT EXISTS "CampaignTypes" (
"Id" uuid NOT NULL DEFAULT (gen_random_uuid()),
"Name" character varying(50) NOT NULL,
"DescriptionKey" character varying(50) NULL,
CONSTRAINT "PK_CampaignTypes" PRIMARY KEY ("Id")
);
CREATE TABLE IF NOT EXISTS "CampaignSubTypes" (
"Id" uuid NOT NULL DEFAULT (gen_random_uuid()),
"Name" character varying(50) NOT NULL,
"DescriptionKey" character varying(50) NULL,
"CampaignTypeId" uuid NOT NULL,
CONSTRAINT "PK_CampaignSubTypes" PRIMARY KEY ("Id"),
CONSTRAINT "FK_CampaignSubTypes_CampaignTypes_CampaignTypeId" FOREIGN KEY ("CampaignTypeId") REFERENCES "CampaignTypes" ("Id") ON DELETE CASCADE
);
CREATE TABLE IF NOT EXISTS "Campaigns" (
"Id" uuid NOT NULL DEFAULT (gen_random_uuid()),
"State" integer NOT NULL,
"InitiatorId" uuid NOT NULL,
"BeneficiaryId" uuid NOT NULL,
"OperatorId" uuid NOT NULL,
"CampaignTypeId" uuid NOT NULL,
"CampaignSubTypeId" uuid NOT NULL,
"TitleKey" character varying(50) NOT NULL,
"ShortDescriptionKey" character varying(50) NOT NULL,
"FullDescriptionKey" character varying(50) NULL,
"TargetAmount" numeric NOT NULL,
"Currency" integer NOT NULL,
"CreationDate" timestamptz DEFAULT now()NOT NULL,
"Verified" boolean NOT NULL,
"Deadline" timestamptz NULL,
"Recurring" boolean NOT NULL,
"OptionalDetails" text NOT NULL,
CONSTRAINT "PK_Campaigns" PRIMARY KEY ("Id"),
CONSTRAINT "FK_Campaigns_CampaignSubTypes_CampaignSubTypeId" FOREIGN KEY ("CampaignSubTypeId") REFERENCES "CampaignSubTypes" ("Id") ON DELETE CASCADE,
CONSTRAINT "FK_Campaigns_CampaignTypes_CampaignTypeId" FOREIGN KEY ("CampaignTypeId") REFERENCES "CampaignTypes" ("Id") ON DELETE CASCADE
);
CREATE INDEX "IX_Campaigns_CampaignSubTypeId" ON "Campaigns" ("CampaignSubTypeId");
CREATE INDEX "IX_Campaigns_CampaignTypeId" ON "Campaigns" ("CampaignTypeId");
CREATE INDEX "IX_CampaignSubTypes_CampaignTypeId" ON "CampaignSubTypes" ("CampaignTypeId");
COMMIT; |
<reponame>epochwz/mall<gh_stars>1-10
DROP DATABASE IF EXISTS `mall`;
CREATE DATABASE `mall` DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
# collation: 指定字符串排序规则和比较规则
#
# utf8mb4_unicode_ci: 基于标准的 Unicode 来排序和比较,能够在各种语言之间精确排序
# utf8mb4_general_ci: 没有实现 Unicode 排序规则,在遇到某些特殊语言或者字符集,排序结果可能不一致。
#
# utf8=utf8mb3
# utf8_bin:二进制存储字符串,区分大小写
# utf8_general_cs:大小写敏感
# utf8_general_ci:大小写不敏感
USE `mall`;
SET NAMES utf8mb4;
# SET NAMES utf8;
# equal to
# SET character_set_client='utf8';
# SET character_set_connection='utf8';
# SET character_set_results='utf8';
SET FOREIGN_KEY_CHECKS = 0;
-- ----------------------------
-- Table structure for `user`
-- ----------------------------
DROP TABLE IF EXISTS `user`;
CREATE TABLE `user`
(
`id` INT(11) NOT NULL AUTO_INCREMENT PRIMARY KEY
COMMENT '用户',
`username` VARCHAR(50) NOT NULL
COMMENT '用户名',
`password` VARCHAR(50) NOT NULL
COMMENT '密码(<PASSWORD>)',
`email` VARCHAR(50) COMMENT '电子邮箱',
`mobile` VARCHAR(20) COMMENT '手机号码',
`question` VARCHAR(100) COMMENT '密保问题',
`answer` VARCHAR(100) COMMENT '密保答案',
`role` TINYINT NOT NULL DEFAULT 1
COMMENT '用户角色(0-管理员 / 1-消费者)',
`create_time` DATETIME NOT NULL DEFAULT NOW(),
`update_time` DATETIME NOT NULL DEFAULT NOW() ON UPDATE NOW(),
UNIQUE KEY `user.uk.username` (`username`) USING BTREE,
UNIQUE KEY `user.uk.email` (`email`) USING BTREE,
UNIQUE KEY `user.uk.mobile` (`mobile`) USING BTREE
)
ENGINE = InnoDB
AUTO_INCREMENT = 1000000
DEFAULT CHARSET = utf8mb4;
INSERT INTO user(id, username, password, email, mobile, question, answer, role)
VALUES (999999, 'admin', '<PASSWORD>', '<EMAIL>', '', '', '',
0);
-- ----------------------------
-- Table structure for `shipping`
-- ----------------------------
DROP TABLE IF EXISTS `shipping`;
CREATE TABLE `shipping`
(
`id` INT(11) NOT NULL AUTO_INCREMENT PRIMARY KEY
COMMENT '收货地址',
`user_id` INT(11) NOT NULL
COMMENT '所属用户的 ID',
`name` VARCHAR(20) NOT NULL
COMMENT '收货人姓名',
`mobile` VARCHAR(20) NOT NULL
COMMENT '移动电话',
`province` VARCHAR(20) NOT NULL
COMMENT '省份',
`city` VARCHAR(20) NOT NULL
COMMENT '城市',
`district` VARCHAR(20) NOT NULL
COMMENT '区/县',
`address` VARCHAR(200) NOT NULL
COMMENT '详细地址',
`zip` VARCHAR(6)
COMMENT '邮编',
`create_time` DATETIME NOT NULL DEFAULT NOW(),
`update_time` DATETIME NOT NULL DEFAULT NOW() ON UPDATE NOW(),
KEY `shipping.key.user_id` (`user_id`) USING BTREE
)
ENGINE = InnoDB
AUTO_INCREMENT = 1000000
DEFAULT CHARSET = utf8mb4;
-- ----------------------------
-- Table structure for `category`
-- ----------------------------
DROP TABLE IF EXISTS `category`;
CREATE TABLE `category`
(
`id` INT(11) NOT NULL AUTO_INCREMENT PRIMARY KEY
COMMENT '商品类别',
`parent_id` INT(11) NOT NULL DEFAULT 0
COMMENT '父级类别的 ID(0-顶级类别)',
`name` VARCHAR(50) NOT NULL
COMMENT '商品类别名称',
`status` TINYINT NOT NULL DEFAULT 1
COMMENT '商品类别状态(0-禁用 / 1-启用)',
`create_time` DATETIME NOT NULL DEFAULT NOW(),
`update_time` DATETIME NOT NULL DEFAULT NOW() ON UPDATE NOW(),
KEY `category.key.parent_id` (`parent_id`) USING BTREE,
UNIQUE KEY `category.uk.parent_id-name` (`parent_id`, `name`) USING BTREE
)
ENGINE = InnoDB
AUTO_INCREMENT = 1000000
DEFAULT CHARSET = utf8mb4;
-- ----------------------------
-- Table structure for `product`
-- ----------------------------
DROP TABLE IF EXISTS `product`;
CREATE TABLE `product`
(
`id` INT(11) NOT NULL AUTO_INCREMENT PRIMARY KEY
COMMENT '商品',
`category_id` INT(11) NOT NULL
COMMENT '商品类别的 ID',
`name` VARCHAR(100) NOT NULL
COMMENT '商品名称',
`subtitle` VARCHAR(200)
COMMENT '商品副标题',
`main_image` VARCHAR(500)
COMMENT '商品主图(图片 URL 相对地址)',
`sub_images` TEXT COMMENT '商品组图(使用逗号分隔的多个图片 URL 相对地址)',
`detail` TEXT COMMENT '商品详情',
`price` DECIMAL(20, 2) NOT NULL
COMMENT '商品价格(元,保留两位小数)',
`stock` INT(11) NOT NULL DEFAULT 0
COMMENT '库存数量',
`status` TINYINT NOT NULL DEFAULT 1
COMMENT '销售状态(0-已下架 / 1-出售中)',
`create_time` DATETIME NOT NULL DEFAULT NOW(),
`update_time` DATETIME NOT NULL DEFAULT NOW() ON UPDATE NOW(),
KEY `product.key.category_id` (`category_id`) USING BTREE,
KEY `product.key.name` (`name`) USING BTREE
)
ENGINE = InnoDB
AUTO_INCREMENT = 1000000
DEFAULT CHARSET = utf8mb4;
-- ----------------------------
-- Table structure for `cart_item`
-- ----------------------------
DROP TABLE IF EXISTS `cart_item`;
CREATE TABLE `cart_item`
(
`id` INT(11) NOT NULL AUTO_INCREMENT PRIMARY KEY
COMMENT '购物车商品条目',
`user_id` INT(11) NOT NULL
COMMENT '所属用户的 ID',
`product_id` INT(11) NOT NULL
COMMENT '所属商品的 ID',
`quantity` INT(11) NOT NULL
COMMENT '数量',
`checked` BOOLEAN NOT NULL DEFAULT FALSE
COMMENT '勾选状态(true-已勾选 / false-未勾选)',
`create_time` DATETIME NOT NULL DEFAULT NOW(),
`update_time` DATETIME NOT NULL DEFAULT NOW() ON UPDATE NOW(),
KEY `cart_item.key.user_id` (`user_id`) USING BTREE,
UNIQUE KEY `cart_item.uk.user_id-product_id` (`user_id`, `product_id`)
)
ENGINE = InnoDB
AUTO_INCREMENT = 1000000
DEFAULT CHARSET = utf8mb4;
-- ----------------------------
-- Table structure for `order`
-- ----------------------------
DROP TABLE IF EXISTS `order`;
CREATE TABLE `order`
(
`id` INT(11) NOT NULL AUTO_INCREMENT PRIMARY KEY
COMMENT '订单',
`order_no` BIGINT(20) NOT NULL
COMMENT '订单号',
`user_id` INT(11) NOT NULL
COMMENT '所属用户的 ID',
`shipping_id` INT(11) NOT NULL
COMMENT '收货地址的 ID',
`status` TINYINT NOT NULL DEFAULT 10
COMMENT '订单状态(0-已取消 / 10-待付款 / 30-待发货 / 50-待签收 / 70-交易完成 / 90-交易关闭)',
`postage` DECIMAL(20, 2) NOT NULL DEFAULT 0
COMMENT '运费',
`payment` DECIMAL(20, 2) NOT NULL
COMMENT '支付金额',
`payment_type` TINYINT NOT NULL DEFAULT 1
COMMENT '支付类型(1-在线支付 / 2-货到付款)',
`payment_time` DATETIME
COMMENT '支付时间(支付平台支付成功后回调的支付时间)',
`send_time` DATETIME
COMMENT '发货时间',
`end_time` DATETIME
COMMENT '交易完成时间',
`close_time` DATETIME
COMMENT '交易关闭时间',
`create_time` DATETIME NOT NULL DEFAULT NOW(),
`update_time` DATETIME NOT NULL DEFAULT NOW() ON UPDATE NOW(),
KEY `order.key.user_id` (`user_id`) USING BTREE,
UNIQUE KEY `order.uk.order_no` (`order_no`) USING BTREE
)
ENGINE = InnoDB
AUTO_INCREMENT = 1000000
DEFAULT CHARSET = utf8mb4;
-- ----------------------------
-- Table structure for `order_item`
-- ----------------------------
DROP TABLE IF EXISTS `order_item`;
CREATE TABLE `order_item`
(
`id` INT(11) NOT NULL AUTO_INCREMENT PRIMARY KEY
COMMENT '订单商品明细',
`order_no` BIGINT(20) NOT NULL
COMMENT '订单号',
`product_id` INT(11) NOT NULL
COMMENT '商品的 ID',
`product_name` VARCHAR(100) NOT NULL
COMMENT '商品名称(快照:生成订单时商品的名称,不与商品名称产生关联)',
`product_image` VARCHAR(500)
COMMENT '商品主图(快照:生成订单时商品的主图 URL,不与商品主图 URL 产生关联)',
`quantity` INT(11) NOT NULL
COMMENT '商品数量',
`unit_price` DECIMAL(20, 2) NOT NULL
COMMENT '商品单价(快照:生成订单时商品的单价,不与商品价格产生关联)',
`total_price` DECIMAL(20, 2) NOT NULL
COMMENT '商品总价',
`create_time` DATETIME NOT NULL DEFAULT NOW(),
`update_time` DATETIME NOT NULL DEFAULT NOW() ON UPDATE NOW(),
KEY `order_item.key.order_no` (`order_no`) USING BTREE,
UNIQUE KEY `order_item.uk.order_no-product_id` (`order_no`, `product_id`) USING BTREE
)
ENGINE = InnoDB
AUTO_INCREMENT = 1000000
DEFAULT CHARSET = utf8mb4;
-- ----------------------------
-- Table structure for `payment_info`
-- ----------------------------
DROP TABLE IF EXISTS `payment_info`;
CREATE TABLE `payment_info`
(
`id` INT(11) NOT NULL AUTO_INCREMENT PRIMARY KEY
COMMENT '订单支付信息',
`user_id` INT(11) NOT NULL
COMMENT '所属用户的 ID',
`order_no` BIGINT(20) NOT NULL
COMMENT '所属订单的 订单号',
`platform` TINYINT NOT NULL
COMMENT '支付平台(1-支付宝 / 2-微信)',
`platform_number` VARCHAR(200) NOT NULL
COMMENT '支付流水号',
`platform_status` VARCHAR(20) NOT NULL
COMMENT '支付状态',
`create_time` DATETIME NOT NULL DEFAULT NOW(),
`update_time` DATETIME NOT NULL DEFAULT NOW() ON UPDATE NOW(),
UNIQUE KEY `payment_info.key.order_no` (`order_no`) USING BTREE,
UNIQUE KEY `payment_info.uk.platform_number` (`platform_number`) USING BTREE
)
ENGINE = InnoDB
AUTO_INCREMENT = 1000000
DEFAULT CHARSET = utf8mb4;
SET FOREIGN_KEY_CHECKS = 1; |
CREATE TABLE subdivision_SL (id VARCHAR(6) NOT NULL, name VARCHAR(255), level VARCHAR(64) NOT NULL, PRIMARY KEY(id));
INSERT INTO "subdivision_SL" ("id", "name", "level") VALUES (E'SL-E', E'Eastern', E'province');
INSERT INTO "subdivision_SL" ("id", "name", "level") VALUES (E'SL-N', E'Northern', E'province');
INSERT INTO "subdivision_SL" ("id", "name", "level") VALUES (E'SL-S', E'Southern', E'province');
INSERT INTO "subdivision_SL" ("id", "name", "level") VALUES (E'SL-W', E'Western Area', E'area');
|
<gh_stars>1-10
/*
This script should populate the database with some data that we can use
to test out the supporting code and ensure that we get realistic data
*/
/*Create a test experiment */
INSERT INTO test.experiment(experiment_id, start_date, end_date, owner)
VALUES ('E_001', CURDATE()-1, CURDATE()+10, 'Dr Test');
/*Creating a test host (bench 15 is the tester) */
INSERT INTO test.hosts(host_name)
VALUES('1'),
('2'),
('3'),
('4'),
('5'),
('6');
/*Create 1-96 for testing with */
INSERT INTO test.balances(balance_id, cable_id, address, pi_assigned)
VALUES('1','1', 'usb-FTDI_USB-RS232_Cable_FTWL23KO-if00-port0','1'),
('2','2', 'usb-FTDI_USB-RS232_Cable_FTWLD8KD-if00-port0','1'),
('3','3', 'usb-FTDI_USB-RS232_Cable_FTWL23RK-if00-port0','1'),
('4','4', 'usb-FTDI_USB-RS232_Cable_FTWLDJOH-if00-port0','1'),
('5','5', 'usb-FTDI_USB-RS232_Cable_FTWLDSPA-if00-port0','1'),
('6','6', 'usb-FTDI_USB-RS232_Cable_FTWLAF8I-if00-port0','1'),
('7','7', 'usb-FTDI_USB-RS232_Cable_FTWLDTO6-if00-port0','1'),
('8','8', 'usb-FTDI_USB-RS232_Cable_FTWLDAJP-if00-port0','1'),
('9','9', 'usb-FTDI_USB-RS232_Cable_FTWLDE24-if00-port0','1'),
('10','10', 'usb-FTDI_USB-RS232_Cable_FTWL2H69-if00-port0','1'),
('11','11', 'usb-FTDI_USB-RS232_Cable_FTWL2GLC-if00-port0','1'),
('12','12', 'usb-FTDI_USB-RS232_Cable_FTWL2J7L-if00-port0','1'),
('13','13', 'usb-FTDI_USB-RS232_Cable_FTWL21OB-if00-port0','1'),
('14','14', 'usb-FTDI_USB-RS232_Cable_FTWL2ID6-if00-port0','1'),
('15','15', 'usb-FTDI_USB-RS232_Cable_FTWL23LB-if00-port0','1'),
('16','16', 'usb-FTDI_USB-RS232_Cable_FTWLDAP2-if00-port0','1'),
('17','1', 'usb-FTDI_USB-RS232_Cable_FTWLD6AN-if00-port0','2'),
('18','2', 'usb-FTDI_USB-RS232_Cable_FTWKZPNN-if00-port0','2'),
('19','3', 'usb-FTDI_USB-RS232_Cable_FTWLDDZY-if00-port0','2'),
('20','4', 'usb-FTDI_USB-RS232_Cable_FTWL2GWC-if00-port0','2'),
('21','5', 'usb-FTDI_USB-RS232_Cable_FTWLD66F-if00-port0','2'),
('22','6', 'usb-FTDI_USB-RS232_Cable_FTWLDJBA-if00-port0','2'),
('23','7', 'usb-FTDI_USB-RS232_Cable_FTWLD9TE-if00-port0','2'),
('24','8', 'usb-FTDI_USB-RS232_Cable_FTWLDTA0-if00-port0','2'),
('25','9', 'usb-FTDI_USB-RS232_Cable_FTWKZPRN-if00-port0','2'),
('26','10', 'usb-FTDI_USB-RS232_Cable_FTWLAITZ-if00-port0','2'),
('27','11', 'usb-FTDI_USB-RS232_Cable_FTWLDE2I-if00-port0','2'),
('28','12', 'usb-FTDI_USB-RS232_Cable_FTWLDT75-if00-port0','2'),
('29','13', 'usb-FTDI_USB-RS232_Cable_FTWLWS4P-if00-port0','2'),
('30','14', 'usb-FTDI_USB-RS232_Cable_FTWLAIHR-if00-port0','2'),
('31','15', 'usb-FTDI_USB-RS232_Cable_FTWLADPB-if00-port0','2'),
('32','16', 'usb-FTDI_USB-RS232_Cable_FTWLD8UY-if00-port0','2'),
('33','1', 'usb-FTDI_USB-RS232_Cable_FTWLD77S-if00-port0','3'),
('34','2', 'usb-FTDI_USB-RS232_Cable_FTWKZO6D-if00-port0','3'),
('35','3', 'usb-FTDI_USB-RS232_Cable_FTWLADMO-if00-port0','3'),
('36','4', 'usb-FTDI_USB-RS232_Cable_FTWL2EH3-if00-port0','3'),
('37','5', 'usb-FTDI_USB-RS232_Cable_FTWLAJ2K-if00-port0','3'),
('38','6', 'usb-FTDI_USB-RS232_Cable_FTWLDJLX-if00-port0','3'),
('39','7', 'usb-FTDI_USB-RS232_Cable_FTWLADR7-if00-port0','3'),
('40','8', 'usb-FTDI_USB-RS232_Cable_FTWLD6A8-if00-port0','3'),
('41','9', 'usb-FTDI_USB-RS232_Cable_FTWLDT5Y-if00-port0','3'),
('42','10', 'usb-FTDI_USB-RS232_Cable_FTWLD7IL-if00-port0','3'),
('43','11', 'usb-FTDI_USB-RS232_Cable_FTWL21N1-if00-port0','3'),
('44','12', 'usb-FTDI_USB-RS232_Cable_FTWKZQEC-if00-port0','3'),
('45','13', 'usb-FTDI_USB-RS232_Cable_FTWLD3W8-if00-port0','3'),
('46','14', 'usb-FTDI_USB-RS232_Cable_FTWLDGG9-if00-port0','3'),
('47','15', 'usb-FTDI_USB-RS232_Cable_FTWLAHLW-if00-port0','3'),
('48','16', 'usb-FTDI_USB-RS232_Cable_FTWL231T-if00-port0','3'),
('49','1', 'usb-FTDI_USB-RS232_Cable_FTWLDDZ6-if00-port0','4'),
('50','2', 'usb-FTDI_USB-RS232_Cable_FTWLDH2W-if00-port0','4'),
('51','3', 'usb-FTDI_USB-RS232_Cable_FTWL1Z9T-if00-port0','4'),
('52','4', 'usb-FTDI_USB-RS232_Cable_FTWLWRWX-if00-port0','4'),
('53','5', 'usb-FTDI_USB-RS232_Cable_FTWLDAS7-if00-port0','4'),
('54','6', 'usb-FTDI_USB-RS232_Cable_FTWLAHII-if00-port0','4'),
('55','7', 'usb-FTDI_USB-RS232_Cable_FTWLD8CI-if00-port0','4'),
('56','8', 'usb-FTDI_USB-RS232_Cable_FTWLDQ2P-if00-port0','4'),
('57','9', 'usb-FTDI_USB-RS232_Cable_FTWL2IX7-if00-port0','4'),
('58','10', 'usb-FTDI_USB-RS232_Cable_FTWLDT8H-if00-port0','4'),
('59','11', 'usb-FTDI_USB-RS232_Cable_FTWL2CIF-if00-port0','4'),
('60','12', 'usb-FTDI_USB-RS232_Cable_FTWLAOQD-if00-port0','4'),
('61','13', 'usb-FTDI_USB-RS232_Cable_FTWLD9OP-if00-port0','4'),
('62','14', 'usb-FTDI_USB-RS232_Cable_FTWLD9EE-if00-port0','4'),
('63','15', 'usb-FTDI_USB-RS232_Cable_FTWLAD9V-if00-port0','4'),
('64','16', 'usb-FTDI_USB-RS232_Cable_FTWLDSQA-if00-port0','4'),
('65','1', 'usb-FTDI_USB-RS232_Cable_FTWLD7AC-if00-port0','5'),
('66','2', 'usb-FTDI_USB-RS232_Cable_FTWL240F-if00-port0','5'),
('67','3', 'usb-FTDI_USB-RS232_Cable_FTWL23P2-if00-port0','5'),
('68','4', 'usb-FTDI_USB-RS232_Cable_FTWL2J0H-if00-port0','5'),
('69','5', 'usb-FTDI_USB-RS232_Cable_FTWLDHG9-if00-port0','5'),
('70','6', 'usb-FTDI_USB-RS232_Cable_FTWLD8NX-if00-port0','5'),
('71','7', 'usb-FTDI_USB-RS232_Cable_FTWLD993-if00-port0','5'),
('72','8', 'usb-FTDI_USB-RS232_Cable_FTWL22BB-if00-port0','5'),
('73','9', 'usb-FTDI_USB-RS232_Cable_FTWLD9KM-if00-port0','5'),
('74','10', 'usb-FTDI_USB-RS232_Cable_FTWLDSWY-if00-port0','5'),
('75','11', 'usb-FTDI_USB-RS232_Cable_FTWLDHR3-if00-port0','5'),
('76','12', 'usb-FTDI_USB-RS232_Cable_FTWLDSP7-if00-port0','5'),
('77','13', 'usb-FTDI_USB-RS232_Cable_FTWLANYO-if00-port0','5'),
('78','14', 'usb-FTDI_USB-RS232_Cable_FTWLDTI6-if00-port0','5'),
('79','15', 'usb-FTDI_USB-RS232_Cable_FTWL22FC-if00-port0','5'),
('80','16', 'usb-FTDI_USB-RS232_Cable_FTWLDE1A-if00-port0','5'),
('81','1', 'usb-FTDI_USB-RS232_Cable_FTWLD8BK-if00-port0','6'),
('82','2', 'usb-FTDI_USB-RS232_Cable_FTWL23TN-if00-port0','6'),
('83','3', 'usb-FTDI_USB-RS232_Cable_FTWLD9H0-if00-port0','6'),
('84','4', 'usb-FTDI_USB-RS232_Cable_FTWLDE0C-if00-port0','6'),
('85','5', 'usb-FTDI_USB-RS232_Cable_FTWLDGYB-if00-port0','6'),
('86','6', 'usb-FTDI_USB-RS232_Cable_FTWLDGS9-if00-port0','6'),
('87','7', 'usb-FTDI_USB-RS232_Cable_FTWKZOI1-if00-port0','6'),
('88','8', 'usb-FTDI_USB-RS232_Cable_FTWL21E2-if00-port0','6'),
('89','9', 'usb-FTDI_USB-RS232_Cable_FTWL23MV-if00-port0','6'),
('90','10', 'usb-FTDI_USB-RS232_Cable_FTWLDJW8-if00-port0','6'),
('91','11', 'usb-FTDI_USB-RS232_Cable_FTWL2J4Q-if00-port0','6'),
('92','12', 'usb-FTDI_USB-RS232_Cable_FTWLDHTE-if00-port0','6'),
('93','13', 'usb-FTDI_USB-RS232_Cable_FTWL22C6-if00-port0','6'),
('94','14', 'usb-FTDI_USB-RS232_Cable_FTWLDDJV-if00-port0','6'),
('95','15', 'usb-FTDI_USB-RS232_Cable_FTWLDSRX-if00-port0','6'),
('96','16', 'usb-FTDI_USB-RS232_Cable_FTWLD91K-if00-port0','6');
/*Create a few test plants to play with! */
INSERT INTO test.plants(plant_id, experiment_id, target_weight)
VALUES('M_001', 'E_001', '650'),
('M_002', 'E_001', '400'),
('M_003', 'E_001', '200'),
('M_004', 'E_001', '200'),
('M_005', 'E_001', '530'),
('M_006', 'E_001', '510'),
('M_007', 'E_001', '650'),
('M_008', 'E_001', '400'),
('M_009', 'E_001', '200'),
('M_010', 'E_001', '200'),
('M_011', 'E_001', '510'),
('M_012', 'E_001', '200'),
('M_013', 'E_001', '510');
/*Generate some balance readings*/
INSERT INTO test.balance_data(balance_id, logdate, weight, experiment_id)
VALUES('1', CURDATE(), '100', 'E_001' ),
('2', CURDATE(), '10', 'E_001' ),
('3', CURDATE(), '600', 'E_001' ),
('4', CURDATE()+1, '100', 'E_001' ),
('5', CURDATE()+1, '200', 'E_001' ),
('6', CURDATE()+1, '200', 'E_001' ),
('7', CURDATE()+2, '400', 'E_001' );
INSERT INTO test.watering_data(balance_id, logdate, start_weight,
end_weight, status, experiment_id)
VALUES('1', CURDATE(), '10', '650', '1', 'E_001'),
('2', CURDATE(), '10', '400', '1', 'E_001'),
('3', CURDATE(), '10', '200', '1', 'E_001'),
('4', CURDATE()+1, '10', '200', '1', 'E_001'),
('5', CURDATE()+1, '10', '530', '0', 'E_001'),
('6', CURDATE(), '10', '510', '1', 'E_001');
/*
Inserts into the plant to balance linker, with a slight twist
On plant 6 we have a switch of balances to play up things
*/
INSERT INTO test.plants_to_balance(start_date, end_date, plant_id, balance_id)
VALUES(curdate()-1, NULL, 'M_001', '1'),
(curdate()-1, NULL, 'M_002', '2'),
(curdate()-1, NULL, 'M_003', '3'),
(curdate()-1, NULL, 'M_004', '4'),
(curdate()-1, NULL, 'M_005', '5'),
(curdate()-3, curdate()-2, 'M_006', '6'),
(curdate()-1, NULL, 'M_006', '7' ),
(curdate()-1, NULL, 'M_007', '20'),
(curdate()-1, NULL, 'M_008', '19'),
(curdate()-1, NULL, 'M_009', '50'),
(curdate()-1, NULL, 'M_010', '33'),
(curdate()-1, NULL, 'M_011', '22'),
(curdate()-3, curdate()-2, 'M_012', '15'),
(curdate()-1, NULL, 'M_013', '80' );
INSERT INTO test.watering_valves(gpio_pin, balance_id)
VALUES('/sys/class/gpio/gpio26/value', ' 1'),
('/sys/class/gpio/gpio19/value', ' 2'),
('/sys/class/gpio/gpio13/value', ' 3'),
('/sys/class/gpio/gpio6/value' , ' 4'),
('/sys/class/gpio/gpio21value' , ' 5'),
('/sys/class/gpio/gpio20/value', ' 6'),
('/sys/class/gpio/gpio16/value', ' 7'),
('/sys/class/gpio/gpio12/value', ' 8'),
('/sys/class/gpio/gpio14/value', ' 9'),
('/sys/class/gpio/gpio15/value', ' 10'),
('/sys/class/gpio/gpio18/value', ' 11'),
('/sys/class/gpio/gpio23/value', ' 12'),
('/sys/class/gpio/gpio4/value' , ' 13'),
('/sys/class/gpio/gpio2/value' , ' 14'),
('/sys/class/gpio/gpio3/value' , ' 15'),
('/sys/class/gpio/gpio17/value', ' 16'),
('/sys/class/gpio/gpio26/value', ' 17'),
('/sys/class/gpio/gpio19/value', ' 18'),
('/sys/class/gpio/gpio13/value', ' 19'),
('/sys/class/gpio/gpio6/value' , ' 20'),
('/sys/class/gpio/gpio21value' , ' 21'),
('/sys/class/gpio/gpio20/value', ' 22'),
('/sys/class/gpio/gpio16/value', ' 23'),
('/sys/class/gpio/gpio12/value', ' 24'),
('/sys/class/gpio/gpio14/value', ' 25'),
('/sys/class/gpio/gpio15/value', ' 26'),
('/sys/class/gpio/gpio18/value', ' 27'),
('/sys/class/gpio/gpio23/value', ' 28'),
('/sys/class/gpio/gpio4/value' , ' 29'),
('/sys/class/gpio/gpio2/value' , ' 30'),
('/sys/class/gpio/gpio3/value' , ' 31'),
('/sys/class/gpio/gpio17/value', ' 32'),
('/sys/class/gpio/gpio26/value', ' 33'),
('/sys/class/gpio/gpio19/value', ' 34'),
('/sys/class/gpio/gpio13/value', ' 35'),
('/sys/class/gpio/gpio6/value' , ' 36'),
('/sys/class/gpio/gpio21value' , ' 37'),
('/sys/class/gpio/gpio20/value', ' 38'),
('/sys/class/gpio/gpio16/value', ' 39'),
('/sys/class/gpio/gpio12/value', ' 40'),
('/sys/class/gpio/gpio14/value', ' 41'),
('/sys/class/gpio/gpio15/value', ' 42'),
('/sys/class/gpio/gpio18/value', ' 43'),
('/sys/class/gpio/gpio23/value', ' 44'),
('/sys/class/gpio/gpio4/value' , ' 45'),
('/sys/class/gpio/gpio2/value' , ' 46'),
('/sys/class/gpio/gpio3/value' , ' 47'),
('/sys/class/gpio/gpio17/value', ' 48'),
('/sys/class/gpio/gpio26/value', ' 49'),
('/sys/class/gpio/gpio19/value', ' 50'),
('/sys/class/gpio/gpio13/value', ' 51'),
('/sys/class/gpio/gpio6/value' , ' 52'),
('/sys/class/gpio/gpio21value' , ' 53'),
('/sys/class/gpio/gpio20/value', ' 54'),
('/sys/class/gpio/gpio16/value', ' 55'),
('/sys/class/gpio/gpio12/value', ' 56'),
('/sys/class/gpio/gpio14/value', ' 57'),
('/sys/class/gpio/gpio15/value', ' 58'),
('/sys/class/gpio/gpio18/value', ' 59'),
('/sys/class/gpio/gpio23/value', ' 60'),
('/sys/class/gpio/gpio4/value' , ' 61'),
('/sys/class/gpio/gpio2/value' , ' 62'),
('/sys/class/gpio/gpio3/value' , ' 63'),
('/sys/class/gpio/gpio17/value', ' 64'),
('/sys/class/gpio/gpio26/value', ' 65'),
('/sys/class/gpio/gpio19/value', ' 66'),
('/sys/class/gpio/gpio13/value', ' 67'),
('/sys/class/gpio/gpio6/value' , ' 68'),
('/sys/class/gpio/gpio21value' , ' 69'),
('/sys/class/gpio/gpio20/value', ' 70'),
('/sys/class/gpio/gpio16/value', ' 71'),
('/sys/class/gpio/gpio12/value', ' 72'),
('/sys/class/gpio/gpio14/value', ' 73'),
('/sys/class/gpio/gpio15/value', ' 74'),
('/sys/class/gpio/gpio18/value', ' 75'),
('/sys/class/gpio/gpio23/value', ' 76'),
('/sys/class/gpio/gpio4/value' , ' 77'),
('/sys/class/gpio/gpio2/value' , ' 78'),
('/sys/class/gpio/gpio3/value' , ' 79'),
('/sys/class/gpio/gpio17/value', ' 80'),
('/sys/class/gpio/gpio26/value', ' 81'),
('/sys/class/gpio/gpio19/value', ' 82'),
('/sys/class/gpio/gpio13/value', ' 83'),
('/sys/class/gpio/gpio6/value' , ' 84'),
('/sys/class/gpio/gpio21value' , ' 85'),
('/sys/class/gpio/gpio20/value', ' 86'),
('/sys/class/gpio/gpio16/value', ' 87'),
('/sys/class/gpio/gpio12/value', ' 88'),
('/sys/class/gpio/gpio14/value', ' 89'),
('/sys/class/gpio/gpio15/value', ' 90'),
('/sys/class/gpio/gpio18/value', ' 91'),
('/sys/class/gpio/gpio23/value', ' 92'),
('/sys/class/gpio/gpio4/value' , ' 93'),
('/sys/class/gpio/gpio2/value' , ' 94'),
('/sys/class/gpio/gpio3/value' , ' 95'),
('/sys/class/gpio/gpio17/value', ' 96'),
('/sys/class/gpio/gpio26/value', ' 97'),
('/sys/class/gpio/gpio19/value', ' 98'),
('/sys/class/gpio/gpio13/value', ' 99'),
('/sys/class/gpio/gpio6/value' , '100'),
('/sys/class/gpio/gpio21value' , '101'),
('/sys/class/gpio/gpio20/value', '102'),
('/sys/class/gpio/gpio16/value', '103'),
('/sys/class/gpio/gpio12/value', '104'),
('/sys/class/gpio/gpio14/value', '105'),
('/sys/class/gpio/gpio15/value', '106'),
('/sys/class/gpio/gpio18/value', '107'),
('/sys/class/gpio/gpio23/value', '108'),
('/sys/class/gpio/gpio4/value' , '109'),
('/sys/class/gpio/gpio2/value' , '110'),
('/sys/class/gpio/gpio3/value' , '111'),
('/sys/class/gpio/gpio17/value', '112');
|
<filename>src/test/resources/sql/select/87b1daca.sql
-- file:regex.sql ln:85 expect:true
select 'a' ~ '(^)+^'
|
<reponame>Shuttl-Tech/antlr_psql
-- file:alter_generic.sql ln:109 expect:true
CREATE CONVERSION alt_conv1 FOR 'LATIN1' TO 'UTF8' FROM iso8859_1_to_utf8
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.