sql stringlengths 6 1.05M |
|---|
<filename>Tenant.SiteMetadata/private/sql/views/vw_SitesByTemplate.sql<gh_stars>0
CREATE OR ALTER VIEW dbo.SiteByTemplate
AS
SELECT
[Template], COUNT(*) AS 'Count'
FROM
dbo.tvf_Sites(15,1)
GROUP BY
[Template]
|
CREATE DATABASE SoftUni
CREATE TABLE Towns
(
Id INT PRIMARY KEY IDENTITY,
[Name] NVARCHAR(20) NOT NULL
)
CREATE TABLE Addresses
(
Id INT PRIMARY KEY IDENTITY,
AddressText NVARCHAR(30) NOT NULL,
TownId INT CONSTRAINT FK_Address_Town FOREIGN KEY REFERENCES Towns(Id) NOT NULL
)
CREATE TABLE Departments
(
Id INT PRIMARY KEY IDENTITY,
[Name] NVARCHAR(20) NOT NULL
)
CREATE TABLE Employees
(
Id INT PRIMARY KEY IDENTITY,
FirstName NVARCHAR(30) NOT NULL,
MiddleName NVARCHAR(30) NOT NULL,
LastName NVARCHAR(30) NOT NULL,
JobTitle NVARCHAR(30) NOT NULL,
DepartmentId INT CONSTRAINT FK_Employees_Departments FOREIGN KEY
REFERENCES Departments(Id) NOT NULL,
HireDate DATE NOT NULL,
Salary DECIMAL(15, 2) NOT NULL,
AddressId INT CONSTRAINT FK_Employees_Addresses FOREIGN KEY
REFERENCES Addresses(Id) NOT NULL
)
INSERT INTO Towns ([Name]) VALUES
('Sofia'),
('Plovdiv'),
('Varna'),
('Burgas')
INSERT INTO Departments ([Name]) VALUES
('Engineering'),
('Sales'),
('Marketing'),
('Software Development'),
('Quality Assurance')
ALTER TABLE Employees
ALTER COLUMN AddressId INT
INSERT INTO Employees(FirstName, MiddleName, LastName, JobTitle, DepartmentId,
HireDate, Salary) VALUES
('Ivan', 'Ivanov', 'Ivanov', '.NET Developer', 4,
CONVERT(DATETIME, '01/02/2013', 103), 3500),
('Peter', 'Petrov', 'Petrov', 'Senior Engineer', 1,
CONVERT(DATETIME, '02/03/2004', 103), 4000),
('Maria', 'Petrova', 'Ivanova', 'Intern', 5,
CONVERT(DATETIME, '28/08/2016', 103), 525.25),
('Georgi', 'Terziev', 'Ivanov', 'CEO', 2,
CONVERT(DATETIME, '09/12/2007', 103), 3000.00),
('Peter', 'Pan', 'Pan', 'Intern', 3,
CONVERT(DATETIME, '28/08/2016', 103), 599.88)
SELECT Name FROM Towns
ORDER BY [Name]
SELECT Name FROM Departments
ORDER BY [Name]
SELECT FirstName, LastName, JobTitle, Salary FROM Employees
ORDER BY Salary DESC
UPDATE Employees
SET Salary *= 1.1
SELECT Salary FROM Employees
|
-- phpMyAdmin SQL Dump
-- version 4.8.3
-- https://www.phpmyadmin.net/
--
-- Host: 1172.16.31.10
-- Generation Time: Dec 25, 2018 at 02:28 PM
-- Server version: 10.1.35-MariaDB
-- PHP Version: 7.2.9
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: `latihan_ci`
--
-- --------------------------------------------------------
--
-- Table structure for table `anggota`
--
CREATE TABLE `anggota` (
`id_anggota` int(10) UNSIGNED ZEROFILL NOT NULL,
`nim` char(8) DEFAULT NULL,
`nama` varchar(50) DEFAULT NULL,
`no_hp` char(12) DEFAULT NULL,
`email` varchar(50) DEFAULT NULL,
`alamat` varchar(50) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `anggota`
--
INSERT INTO `anggota` (`id_anggota`, `nim`, `nama`, `no_hp`, `email`, `alamat`) VALUES
(0000020001, '12177764', 'budi santosa', '089608960896', NULL, 'cilebut'),
(0000020003, '12177766', 'aldi', '089608960898', NULL, 'dramaga'),
(0000020004, '12177767', 'rahma', '089608960899', NULL, 'ciampea'),
(0000020005, '12177768', 'wati', '089608960900', NULL, 'ciomas'),
(0000020006, '12177769', 'adnin', '089608960901', NULL, 'kebon pedes'),
(0000020007, '12177770', 'rizal', '089608960902', NULL, 'ciluar'),
(0000020008, '12177771', 'yazid', '089608960903', NULL, 'cilebut'),
(0000020009, '12177772', 'yuyun', '089608960904', NULL, 'bogor');
-- --------------------------------------------------------
--
-- Table structure for table `buku`
--
CREATE TABLE `buku` (
`kd_buku` int(10) NOT NULL,
`judul` varchar(50) DEFAULT NULL,
`pengarang` varchar(50) DEFAULT NULL,
`penerbit` varchar(50) DEFAULT NULL,
`stok` int(11) DEFAULT NULL,
`th_terbit` int(11) DEFAULT NULL,
`id_kategori` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `buku`
--
INSERT INTO `buku` (`kd_buku`, `judul`, `pengarang`, `penerbit`, `stok`, `th_terbit`, `id_kategori`) VALUES
(10001, 'pemrograman visual', 'tatang sutarbi', 'abdi daya', 10, 2017, 1),
(10002, 'pemrograman visual', 'tatang sutarbi', 'abdi jaya', 10, 2017, 1),
(10003, 'pemrograman visual', 'tatang sutarbi', 'abdi jaya', 10, 2017, 1),
(10004, 'pemrograman visual', 'tatang sutarbi', 'abdi jaya', 10, 2017, 1),
(10005, 'pemrograman visual', 'tatang sutarbi', 'abdi jaya', 10, 2017, 1),
(10006, 'pemrograman visual', 'tatang sutarbi', 'abdi jaya', 10, 2017, 1),
(10007, 'pemrograman visual', 'jonsen', 'abdi jaya', 10, 2000, 1),
(10008, 'pemrograman visual', 'jonsen', 'abdi jaya', 10, 2000, 1);
-- --------------------------------------------------------
--
-- Table structure for table `member`
--
CREATE TABLE `member` (
`id_member` varchar(255) NOT NULL,
`nadep` varchar(20) DEFAULT NULL,
`nabel` varchar(20) DEFAULT NULL,
`namel` varchar(20) DEFAULT NULL,
`notel` varchar(20) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `member`
--
INSERT INTO `member` (`id_member`, `nadep`, `nabel`, `namel`, `notel`) VALUES
('00000002', 'ghufron', 'vaqih', '<EMAIL>', '081289898989'),
('00000003', 'hamidah', 'vaqih', '<EMAIL>', '081288364284'),
('00000004', 'vaqih', 'hamidah', '<EMAIL>', '08129999999'),
('00000005', 'wendi', 'cagur', '<EMAIL>', '019210731202');
-- --------------------------------------------------------
--
-- Table structure for table `pinjam`
--
CREATE TABLE `pinjam` (
`kd_transaksi` int(10) UNSIGNED NOT NULL,
`id_anggota` int(10) UNSIGNED DEFAULT NULL,
`kd_buku` int(10) UNSIGNED DEFAULT NULL,
`tanggal_pinjam` date DEFAULT NULL,
`tanggal_kembali` date DEFAULT NULL,
`jml_pinjam` int(11) DEFAULT NULL,
`denda` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `pinjam`
--
INSERT INTO `pinjam` (`kd_transaksi`, `id_anggota`, `kd_buku`, `tanggal_pinjam`, `tanggal_kembali`, `jml_pinjam`, `denda`) VALUES
(30001, 20001, 10001, NULL, NULL, 2, 0),
(30002, 20002, 10002, NULL, NULL, 2, 0),
(30003, 20003, 10003, NULL, NULL, 2, 0),
(30004, 20004, 10004, NULL, NULL, 2, 0),
(30005, 20005, 10005, NULL, NULL, 2, 0),
(30006, 20006, 10006, NULL, NULL, 2, 0),
(30007, 20007, 10007, NULL, NULL, 2, 0);
-- --------------------------------------------------------
--
-- Table structure for table `tbl_buku`
--
CREATE TABLE `tbl_buku` (
`id_buku` int(5) NOT NULL,
`no_isbn` int(5) NOT NULL,
`nama_buku` varchar(255) NOT NULL,
`tanggal_terbit` date NOT NULL,
`pengarang` varchar(255) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `user`
--
CREATE TABLE `user` (
`firstname` varchar(30) DEFAULT NULL,
`lastname` varchar(30) DEFAULT NULL,
`email` varchar(50) DEFAULT NULL,
`password` varchar(50) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `user`
--
INSERT INTO `user` (`firstname`, `lastname`, `email`, `password`) VALUES
('vaqih', '<PASSWORD>', '<EMAIL>', '<PASSWORD>'),
('vaqih', 'hiqac', '<EMAIL>', '<PASSWORD>');
-- --------------------------------------------------------
--
-- Stand-in structure for view `v_anggota`
-- (See below for the actual view)
--
CREATE TABLE `v_anggota` (
`id_anggota` int(10) unsigned zerofill
,`nim` char(8)
,`nama` varchar(50)
,`no_hp` char(12)
,`email` varchar(50)
,`alamat` varchar(50)
);
-- --------------------------------------------------------
--
-- Stand-in structure for view `v_buku`
-- (See below for the actual view)
--
CREATE TABLE `v_buku` (
`kd_buku` int(10)
,`judul` varchar(50)
,`pengarang` varchar(50)
,`penerbit` varchar(50)
,`stok` int(11)
,`th_terbit` int(11)
,`id_kategori` int(11)
);
-- --------------------------------------------------------
--
-- Stand-in structure for view `v_member`
-- (See below for the actual view)
--
CREATE TABLE `v_member` (
`nadep` varchar(20)
,`nabel` varchar(20)
,`namel` varchar(20)
,`notel` varchar(20)
);
-- --------------------------------------------------------
--
-- Stand-in structure for view `v_pinjam`
-- (See below for the actual view)
--
CREATE TABLE `v_pinjam` (
`kd_transaksi` int(10) unsigned
,`id_anggota` int(10) unsigned
,`kd_buku` int(10) unsigned
,`tanggal_pinjam` date
,`tanggal_kembali` date
,`jml_pinjam` int(11)
,`denda` int(11)
);
-- --------------------------------------------------------
--
-- Stand-in structure for view `v_user`
-- (See below for the actual view)
--
CREATE TABLE `v_user` (
`firstname` varchar(30)
,`lastname` varchar(30)
,`email` varchar(50)
,`password` varchar(50)
);
-- --------------------------------------------------------
--
-- Stand-in structure for view `v_userpinjam`
-- (See below for the actual view)
--
CREATE TABLE `v_userpinjam` (
`id_anggota` int(10) unsigned zerofill
,`nama` varchar(50)
,`kd_transaksi` int(10) unsigned
,`tanggal_pinjam` date
,`tanggal_kembali` date
,`kd_buku` int(10)
,`judul` varchar(50)
);
-- --------------------------------------------------------
--
-- Structure for view `v_anggota`
--
DROP TABLE IF EXISTS `v_anggota`;
CREATE ALGORITHM=UNDEFINED DEFINER=`root`@`localhost` SQL SECURITY DEFINER VIEW `v_anggota` AS select `anggota`.`id_anggota` AS `id_anggota`,`anggota`.`nim` AS `nim`,`anggota`.`nama` AS `nama`,`anggota`.`no_hp` AS `no_hp`,`anggota`.`email` AS `email`,`anggota`.`alamat` AS `alamat` from `anggota` ;
-- --------------------------------------------------------
--
-- Structure for view `v_buku`
--
DROP TABLE IF EXISTS `v_buku`;
CREATE ALGORITHM=UNDEFINED DEFINER=`root`@`localhost` SQL SECURITY DEFINER VIEW `v_buku` AS select `buku`.`kd_buku` AS `kd_buku`,`buku`.`judul` AS `judul`,`buku`.`pengarang` AS `pengarang`,`buku`.`penerbit` AS `penerbit`,`buku`.`stok` AS `stok`,`buku`.`th_terbit` AS `th_terbit`,`buku`.`id_kategori` AS `id_kategori` from `buku` ;
-- --------------------------------------------------------
--
-- Structure for view `v_member`
--
DROP TABLE IF EXISTS `v_member`;
CREATE ALGORITHM=UNDEFINED DEFINER=`root`@`localhost` SQL SECURITY DEFINER VIEW `v_member` AS select `member`.`nadep` AS `nadep`,`member`.`nabel` AS `nabel`,`member`.`namel` AS `namel`,`member`.`notel` AS `notel` from `member` ;
-- --------------------------------------------------------
--
-- Structure for view `v_pinjam`
--
DROP TABLE IF EXISTS `v_pinjam`;
CREATE ALGORITHM=UNDEFINED DEFINER=`root`@`localhost` SQL SECURITY DEFINER VIEW `v_pinjam` AS select `pinjam`.`kd_transaksi` AS `kd_transaksi`,`pinjam`.`id_anggota` AS `id_anggota`,`pinjam`.`kd_buku` AS `kd_buku`,`pinjam`.`tanggal_pinjam` AS `tanggal_pinjam`,`pinjam`.`tanggal_kembali` AS `tanggal_kembali`,`pinjam`.`jml_pinjam` AS `jml_pinjam`,`pinjam`.`denda` AS `denda` from `pinjam` ;
-- --------------------------------------------------------
--
-- Structure for view `v_user`
--
DROP TABLE IF EXISTS `v_user`;
CREATE ALGORITHM=UNDEFINED DEFINER=`root`@`localhost` SQL SECURITY DEFINER VIEW `v_user` AS select `user`.`firstname` AS `firstname`,`user`.`lastname` AS `lastname`,`user`.`email` AS `email`,`user`.`password` AS `password` from `user` ;
-- --------------------------------------------------------
--
-- Structure for view `v_userpinjam`
--
DROP TABLE IF EXISTS `v_userpinjam`;
CREATE ALGORITHM=UNDEFINED DEFINER=`root`@`localhost` SQL SECURITY DEFINER VIEW `v_userpinjam` AS select `a`.`id_anggota` AS `id_anggota`,`a`.`nama` AS `nama`,`b`.`kd_transaksi` AS `kd_transaksi`,`b`.`tanggal_pinjam` AS `tanggal_pinjam`,`b`.`tanggal_kembali` AS `tanggal_kembali`,`c`.`kd_buku` AS `kd_buku`,`c`.`judul` AS `judul` from ((`anggota` `a` join `pinjam` `b` on((`a`.`id_anggota` = `b`.`id_anggota`))) join `buku` `c` on((`b`.`kd_buku` = `c`.`kd_buku`))) ;
--
-- Indexes for dumped tables
--
--
-- Indexes for table `anggota`
--
ALTER TABLE `anggota`
ADD PRIMARY KEY (`id_anggota`);
--
-- Indexes for table `buku`
--
ALTER TABLE `buku`
ADD PRIMARY KEY (`kd_buku`),
ADD KEY `kd_buku` (`kd_buku`);
--
-- Indexes for table `pinjam`
--
ALTER TABLE `pinjam`
ADD PRIMARY KEY (`kd_transaksi`),
ADD KEY `kd_transaksi` (`kd_transaksi`);
--
-- Indexes for table `tbl_buku`
--
ALTER TABLE `tbl_buku`
ADD PRIMARY KEY (`id_buku`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `anggota`
--
ALTER TABLE `anggota`
MODIFY `id_anggota` int(10) UNSIGNED ZEROFILL NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=1232314;
--
-- AUTO_INCREMENT for table `buku`
--
ALTER TABLE `buku`
MODIFY `kd_buku` int(10) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=10011;
--
-- AUTO_INCREMENT for table `pinjam`
--
ALTER TABLE `pinjam`
MODIFY `kd_transaksi` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=30010;
--
-- AUTO_INCREMENT for table `tbl_buku`
--
ALTER TABLE `tbl_buku`
MODIFY `id_buku` int(5) 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 */;
|
INSERT INTO usuarios VALUES('4c2a49ed-48be-4970-9010-edb1faf918f1', '<EMAIL>', '<PASSWORD>', 'Ramón', 0, 0, 0);
INSERT INTO usuarios VALUES('53c8cf4a-adbf-11ec-b909-0242ac120002', '<EMAIL>', '1234', 'Pepe', 0, 0, 0);
INSERT INTO usuarios VALUES('7b0021c2-adff-11ec-b909-0242ac120002', 'c', 'cc', 'Pepe', 0, 0, 0);
INSERT INTO partidas_acabadas VALUES('4c2a49ed-48be-4970-9010-edb1faf918f1', TO_DATE('20170103','YYYYMMDD'), TO_DATE('20170103','YYYYMMDD'), 1, 1);
INSERT INTO ha_jugado VALUES('4c2a49ed-48be-4970-9010-edb1faf918f1', '4c2a49ed-48be-4970-9010-edb1faf918f1', 2, true);
-- lo anterior es para el modelo viejo
INSERT INTO usuarios VALUES('9661b426-b9e4-11ec-8422-0242ac120002', 'correo', '<PASSWORD>', 'Pepe', 0, 0, 0, 0, 0, 0); --clave: 1234
INSERT INTO usuarios VALUES('7a9b96ec-bf5e-11ec-9d64-0242ac120002', 'correo2', '03ac674216f3e15c761ee1a5e255f067953623c8b388b4459e13f978d7c846f4', 'Juan', 0, 0, 0, 0, 0, 0); --clave: 1234 |
/******** This script creates ROLES and USER profile settings that allow us to read/write across AWS databases ********/
/* Note: This is core and critcal to our work,
particularly in scaling our model selection to all HMDA loan data years (2009 - 2019) */
CREATE ROLE reporting_user WITH LOGIN PASSWORD '<PASSWORD>' ;
--*
GRANT CONNECT ON DATABASE paddle_loan_canoe TO reporting_user;
GRANT USAGE ON SCHEMA usa_mortgage_market TO reporting_user;
GRANT SELECT ON ALL TABLES IN SCHEMA usa_mortgage_market TO reporting_user;
GRANT SELECT ON ALL TABLES IN SCHEMA v__macro_economic_indicators TO reporting_user;
--*
GRANT USAGE ON SCHEMA aa__testing TO reporting_user;
--https://tableplus.io/blog/2018/04/postgresql-how-to-create-read-only-user.html
ALTER DEFAULT PRIVILEGES IN SCHEMA aa__testing
GRANT SELECT, INSERT, UPDATE, DELETE ON TABLES TO reporting_user;
GRANT SELECT ON ALL TABLES IN SCHEMA aa__testing TO reporting_user;
GRANT SELECT ON ALL SEQUENCES IN SCHEMA aa__testing TO reporting_user;
GRANT EXECUTE ON ALL FUNCTIONS IN SCHEMA aa__testing TO reporting_user;
--https://dba.stackexchange.com/questions/173635/postgres-permission-denied-for-schema
--https://github.com/metabase/metabase/issues/7214
--*
GRANT SELECT ON TABLE usa_mortgage_market.hmda_lar__2017 TO reporting_user;
--*
GRANT USAGE ON SCHEMA v__macro_economic_indicators TO reporting_user;
GRANT SELECT ON TABLE v__macro_economic_indicators.populationestimates__usda_ers_2010_to_2018 TO reporting_user;
GRANT SELECT ON TABLE v__macro_economic_indicators.education__acs_1970_to_2017_5yravgs TO reporting_user;
-- DOCUMENTATION https://aws.amazon.com/blogs/database/managing-postgresql-users-and-roles
/*------------------------------------------------------ End ---------------------------------------------------------*/ |
CREATE PROCEDURE sqlerodbc.perform_test_deletes
(
IN p_id INTEGER, IN p_id2 INTEGER
)
BEGIN
/*
Stored procedure is not required when executing a single SQL statement
Also, MySQL doesn't support anonymous stored procedure blocks
So, a temporary stored procedure is used instead
*/
DELETE FROM sqlerodbc.TEST
WHERE ID = :id;
DELETE FROM sqlerodbc.TEST2
WHERE ID = :id2;
END;
CALL sqlerodbc.perform_test_deletes(
:id, :id2
);
DROP PROCEDURE sqlerodbc.perform_test_deletes; |
-- phpMyAdmin SQL Dump
-- version 4.9.2
-- https://www.phpmyadmin.net/
--
-- Host: 127.0.0.1
-- Generation Time: Mar 11, 2020 at 03:29 PM
-- Server version: 10.4.11-MariaDB
-- PHP Version: 7.4.1
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET AUTOCOMMIT = 0;
START TRANSACTION;
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
--
-- Database: `db_astro`
--
-- --------------------------------------------------------
--
-- Table structure for table `tb_admin`
--
CREATE TABLE `tb_admin` (
`id` int(11) NOT NULL,
`username` varchar(50) NOT NULL,
`email` varchar(100) NOT NULL,
`password` varchar(200) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `tb_admin`
--
INSERT INTO `tb_admin` (`id`, `username`, `email`, `password`) VALUES
(1, 'balpir123', '<EMAIL>', <PASSWORD>');
-- --------------------------------------------------------
--
-- Table structure for table `tb_faq`
--
CREATE TABLE `tb_faq` (
`id` int(11) NOT NULL,
`pertanyaan` varchar(2000) NOT NULL,
`jawaban` varchar(2000) NOT NULL,
`tanggal` varchar(100) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `tb_faq`
--
INSERT INTO `tb_faq` (`id`, `pertanyaan`, `jawaban`, `tanggal`) VALUES
(2, '<p>Ini merupakan contoh pertanyaan tipe dua untuk ditampilkan ?</p>', '<p><strong>Ini </strong>merupakan testing data untuk faq, penjabaran data dapat diubah sesuai keinginan secara dinamis tanpa perlu metode manual, sangat praktis efisien untuk mengubah data setiap waktu yang kita inginkan. Develop by <NAME></p>', '14 February 2020');
-- --------------------------------------------------------
--
-- Table structure for table `tb_lokasi`
--
CREATE TABLE `tb_lokasi` (
`id` int(11) NOT NULL,
`nama` varchar(200) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `tb_lokasi`
--
INSERT INTO `tb_lokasi` (`id`, `nama`) VALUES
(1, 'malang'),
(2, 'jombang'),
(3, 'pasruan'),
(4, 'jogja'),
(5, 'Belum tau kota');
-- --------------------------------------------------------
--
-- Table structure for table `tb_mobil`
--
CREATE TABLE `tb_mobil` (
`id` int(11) NOT NULL,
`jenis` varchar(100) NOT NULL,
`plat` varchar(100) NOT NULL,
`gambar` varchar(200) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `tb_mobil`
--
INSERT INTO `tb_mobil` (`id`, `jenis`, `plat`, `gambar`) VALUES
(1, 'toyota', 'w 1212 xy', 'mobil1.jpg');
-- --------------------------------------------------------
--
-- Table structure for table `tb_setting`
--
CREATE TABLE `tb_setting` (
`id` int(11) NOT NULL,
`nama` varchar(50) NOT NULL,
`kata_kunci` varchar(200) NOT NULL,
`deskripsi` varchar(200) NOT NULL,
`alamat` varchar(200) NOT NULL,
`no_telp` varchar(12) NOT NULL,
`email` varchar(100) NOT NULL,
`logo` varchar(100) NOT NULL,
`facebook_link` varchar(200) NOT NULL,
`instagram_link` varchar(200) NOT NULL,
`gmaps` varchar(200) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `tb_setting`
--
INSERT INTO `tb_setting` (`id`, `nama`, `kata_kunci`, `deskripsi`, `alamat`, `no_telp`, `email`, `logo`, `facebook_link`, `instagram_link`, `gmaps`) VALUES
(1, 'Astro Travel', 'tes kata kunci', 'tes deskripsi', 'tes alamat', 'tes telepon', '<EMAIL>', '898471.jpg', 'tes link fb', 'tes link instagram', 'tes gmaps');
-- --------------------------------------------------------
--
-- Table structure for table `tb_supir`
--
CREATE TABLE `tb_supir` (
`id` int(11) NOT NULL,
`nama` varchar(100) NOT NULL,
`nik` varchar(100) NOT NULL,
`alamat` varchar(200) NOT NULL,
`no_hp` varchar(15) NOT NULL,
`gambar` varchar(200) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `tb_supir`
--
INSERT INTO `tb_supir` (`id`, `nama`, `nik`, `alamat`, `no_hp`, `gambar`) VALUES
(1, '<NAME>', '1279999182918', 'jl letda sujono tebing tinggi', '0819283981', 'user1.jpg');
-- --------------------------------------------------------
--
-- Table structure for table `tb_wisata`
--
CREATE TABLE `tb_wisata` (
`id` int(11) NOT NULL,
`judul` varchar(200) NOT NULL,
`kode_lokasi` int(11) NOT NULL,
`gambar` varchar(100) NOT NULL,
`konten` varchar(10000) NOT NULL,
`tanggal` varchar(100) NOT NULL,
`dibuat` varchar(200) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `tb_wisata`
--
INSERT INTO `tb_wisata` (`id`, `judul`, `kode_lokasi`, `gambar`, `konten`, `tanggal`, `dibuat`) VALUES
(1, 'Kampung Warna Warni aa', 2, 'frozen-forest-1920x1080-winter-aerial-view-4k-6377.jpg', '<p>woiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiii</p>', '12 February 2020', 'adminstrator'),
(10, 'ppp', 1, 'frozen-forest-1920x1080-winter-aerial-view-4k-63771.jpg', '<p>a.com</p>', '18 February 2020', 'Adminstrator'),
(12, 'Astro Travel', 2, 'beach-1920x1080-aerial-view-4k-17956.jpg', '<p>aassas</p>', '09 March 2020', 'Adminstrator'),
(13, 'aaa', 3, '898471.jpg', '<p>asaasasasasasassssssssssssssssssssssssssssssssssssssssssssssssss</p>', '10 March 2020', 'Adminstrator');
--
-- Indexes for dumped tables
--
--
-- Indexes for table `tb_admin`
--
ALTER TABLE `tb_admin`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `tb_faq`
--
ALTER TABLE `tb_faq`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `tb_lokasi`
--
ALTER TABLE `tb_lokasi`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `tb_mobil`
--
ALTER TABLE `tb_mobil`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `tb_setting`
--
ALTER TABLE `tb_setting`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `tb_supir`
--
ALTER TABLE `tb_supir`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `tb_wisata`
--
ALTER TABLE `tb_wisata`
ADD PRIMARY KEY (`id`),
ADD KEY `kode_lokasi` (`kode_lokasi`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `tb_admin`
--
ALTER TABLE `tb_admin`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
--
-- AUTO_INCREMENT for table `tb_faq`
--
ALTER TABLE `tb_faq`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;
--
-- AUTO_INCREMENT for table `tb_lokasi`
--
ALTER TABLE `tb_lokasi`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6;
--
-- AUTO_INCREMENT for table `tb_mobil`
--
ALTER TABLE `tb_mobil`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9;
--
-- AUTO_INCREMENT for table `tb_setting`
--
ALTER TABLE `tb_setting`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;
--
-- AUTO_INCREMENT for table `tb_supir`
--
ALTER TABLE `tb_supir`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
--
-- AUTO_INCREMENT for table `tb_wisata`
--
ALTER TABLE `tb_wisata`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=14;
--
-- Constraints for dumped tables
--
--
-- Constraints for table `tb_wisata`
--
ALTER TABLE `tb_wisata`
ADD CONSTRAINT `tb_wisata_ibfk_1` FOREIGN KEY (`kode_lokasi`) REFERENCES `tb_lokasi` (`id`);
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>HW3/nearester.sql<gh_stars>0
select F.FACILITYID,
F.FACILITYNAME,
F.GEOLOCATION,
DECIMAL(DB2GSE.ST_Distance(F.GEOLOCATION, DB2GSE.ST_Point(-72.993983, 40.824369, 1), 'STATUTE MILE'), 8,
2) as DISTANCE_STATUTE_MILE
from CSE532.FACILITY F
inner join CSE532.FACILITYCERTIFICATION FC on F.FACILITYID = FC.FACILITYID
where FC.ATTRIBUTEVALUE = 'Emergency Department'
and DB2GSE.ST_Intersects(F.GEOLOCATION,
DB2GSE.ST_Buffer(DB2GSE.ST_Point(-72.993983, 40.824369, 1), 10.0, 'STATUTE MILE')) = 1
order by DISTANCE_STATUTE_MILE
limit 1;
|
INSERT INTO books (title, authors, isbn, image_url, summary) VALUES('<NAME>', '<NAME>', '1234', 'null', 'This is a harry potter book'); |
--
ALTER TABLE `storages` ADD `external` tinyint default 0;
--//@UNDO
ALTER TABLE `storages` DROP `external`;
--
|
/*
*/
@@reports.inc
column owner format a30 heading "Schema name"
column ts format a80 heading "Tablespaces" word_wrapped
column cnt format a25 heading "Objects count|Invalid/Total"
SELECT owner, cnt_invalid || '/' || cnt_total as cnt, ts FROM (
SELECT t.owner,
(SELECT count(*) FROM dba_objects WHERE owner = t.owner) as cnt_total,
(SELECT count(*) FROM dba_objects WHERE owner = t.owner AND status = 'INVALID') as cnt_invalid,
listagg(t.tablespace_name, ',') within group(order by t.tablespace_name) as ts
FROM (SELECT DISTINCT owner, tablespace_name FROM dba_segments WHERE not regexp_like(owner, '^(SYS(|TEM))$')) t
GROUP BY t.owner
)
ORDER BY 1
/
|
<filename>scripts/move_tables_to_tablespace.sql
set serveroutput on size 100000 linesize 130 pagesize 9999 timing off termout on autoprint off heading off verify off
PROMPT PROMPT Altering segments &1:
SELECT 'ALTER TABLE "' || table_name || '" MOVE TABLESPACE "&2";' as sql_text
FROM all_tables
WHERE owner = user AND
tablespace_name <> upper('&2') AND
temporary = 'N' AND
iot_type is null AND
secondary = 'N' AND
table_name like upper('&1')
/
SELECT 'ALTER INDEX "' || index_name || '" REBUILD TABLESPACE "&2";' as sql_text
FROM all_indexes
WHERE owner = user AND
tablespace_name <> upper('&2') AND
index_type = 'NORMAL' AND temporary = 'N' AND
table_name like upper('&1')
/
SELECT 'ALTER TABLE "' || table_name || '" MOVE LOB ("' || column_name || '") STORE AS (TABLESPACE "&2");' as sql_text
FROM all_lobs
WHERE owner = user AND
tablespace_name <> upper('&2') AND
table_name like upper('&1')
/
|
-- ===================================================================
-- Author: <NAME>
-- Create date: 12/04/13
-- Description: Adds a entry to the h3giUpgradePricePlanBands table
-- ===================================================================
CREATE PROCEDURE [dbo].[h3giCreateUpgradePricePlanBand]
@pricePlanId INT,
@incomingBand CHAR(1),
@pricingBandCode VARCHAR(3)
AS
BEGIN
-- SET NOCOUNT ON added to prevent extra result sets from
-- interfering with SELECT statements.
SET NOCOUNT ON;
IF EXISTS (SELECT * FROM h3giUpgradePricePlanBands WHERE pricePlanId = @pricePlanId AND incomingBand = @incomingBand)
BEGIN
UPDATE h3giUpgradePricePlanBands
SET pricingBandCode = @pricingBandCode
WHERE pricePlanId = @pricePlanId
AND incomingBand = @incomingBand
END
ELSE
BEGIN
INSERT INTO h3giUpgradePricePlanBands (pricePlanId, incomingBand, pricingBandCode)
VALUES (@pricePlanId, @incomingBand, @pricingBandCode)
END
END
|
<gh_stars>10-100
-- file:inet.sql ln:27 expect:true
INSERT INTO INET_TBL (c, i) VALUES ('192.168.1.2/30', '192.168.1.226')
|
UPDATE sd2_db_version SET version='ScriptDev2 (for MaNGOS 7829+) ';
|
DELETE FROM diku_mod_data_export_spring.job;
|
CREATE TABLE [dbo].[Customers]
(
[Id] UNIQUEIDENTIFIER NOT NULL,
[FirstName] NVARCHAR(64) NOT NULL,
[LastName] NVARCHAR(64) NOT NULL,
[Email] NVARCHAR(64) NOT NULL,
[Msisdn] BIGINT NOT NULL,
[Timestamp] DATETIME NOT NULL DEFAULT(GETUTCDATE())
CONSTRAINT [PK_Customers] PRIMARY KEY NONCLUSTERED ([Id] ASC)
)
|
<reponame>blinkops/blink-aws-query<gh_stars>10-100
select name, arn, description, db_parameter_group_family
from aws.aws_rds_db_parameter_group
where name = 'dummy-{{ resourceName }}'
|
drop table if exists downloads;
create table downloads(year int, month int, country_from varchar(255), country_to varchar(255), type char(1), count int);
load data infile '/tmp/aggregated_download_info.csv' into table downloads fields terminated by ';' lines terminated by '\n';
delete from downloads where country_to in (select country_to from (select country_to, SUM(count) as cnt from downloads group by country_to having cnt < 1000) as z);
delete from downloads where country_from in ('None', 'Unknown');
update downloads set country_from='USA' where country_from='United States';
update downloads set country_from='UK' where country_from='United Kingdom';
update downloads set country_from='Moldova' where country_from='Republic of Moldova';
update downloads set country_from='Lithuania' where country_from='Republic of Lithuania';
update downloads set country_from='Burma' where country_from='Myanmar [Burma]';
update downloads set country_from='China' where country_from='Hong Kong';
update downloads set country_from='China' where country_from='Macao';
update downloads set country_from='South Korea' where country_from='Republic of Korea';
update downloads set country_from='Jordan' where country_from='Hashemite Kingdom of Jordan';
update downloads set country_from='Italy' where country_from='San Marino';
update downloads set country_from='Micronesia' where country_from='Federated States of Micronesia';
update downloads set country_from='United States Virgin Islands' where country_from='U.S. Virgin Islands';
update downloads set country_from='Congo-Kinshasa' where country_from='Congo';
update downloads set country_from='Congo-Brazzaville' where country_from='Republic of the Congo';
update downloads set country_from='Saint Martin' where country_from='Sint Maarten';
update downloads set country_from='Netherlands Antilles' where country_from='Bonaire';
select distinct country_from as country_from_that_never_to from downloads where country_from not in (select country_to from downloads);
select distinct country_to as country_to_that_never_from from downloads where country_to not in (select country_from from downloads);
select country_to as most_downloaded_country, SUM(count) as cnt from downloads where type='M' group by country_to order by cnt desc limit 20;
select country_to as most_downloaded_country_from_outside, SUM(count) as cnt from downloads where type='M' and country_from <> country_to group by country_to order by cnt desc limit 20;
select country_from as most_downloading_country, SUM(count) as cnt from downloads where type='M' group by country_from order by cnt desc limit 20;
select country_from, in_cnt, out_cnt, out_cnt * 1.0 / in_cnt as ratio from \
(select country_from, SUM(in_cnt) as in_cnt, SUM(out_cnt) as out_cnt from ( \
select country_from, SUM(count) as in_cnt, 0 as out_cnt from downloads where type='M' and country_from=country_to group by country_from \
union select country_from, 0 as in_cnt, SUM(count) as out_cnt from downloads where type='M' and country_from<>country_to group by country_from \
) as z group by country_from \
) as zz order by ratio desc;
|
select distinct first_name from actor;
select count(*) as co, first_name
from actor
group by first_name
having count(*) > 3
order by count(*) desc;
select first_name, count(*) over (partition by first_name) as name_count
from actor;
with actor_rollup as
(
select actor_id, first_name, last_name,
count(*) over (partition by first_name) as name_count,
count(*) over (partition by last_name) as last_name_occurance
from actor
)
select first_name, last_name, name_count, last_name_occurance from actor_rollup order by actor_id desc;
--
WITH expression_name[(column_name [,...])]
AS
(CTE_definition)
SQL_statement; |
-- Sequence: public_transport_links_id_seq
-- DROP SEQUENCE public_transport_links_id_seq;
CREATE SEQUENCE public_transport_links_id_seq
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 1
CACHE 1;
ALTER TABLE public_transport_links_id_seq
OWNER TO postgres;
-- Table: public_transport_links
-- DROP TABLE public_transport_links;
CREATE TABLE public_transport_links
(
parent_vehicle_journey_code character varying NOT NULL,
vehicle_journey_code character varying NOT NULL,
CONSTRAINT public_transport_links_pkey PRIMARY KEY (parent_vehicle_journey_code, vehicle_journey_code)
)
WITH (
OIDS=FALSE
);
ALTER TABLE public_transport_links
OWNER TO postgres;
-- Index: public_transport_link_vehicle_journey_codes_idx
-- DROP INDEX public_transport_link_vehicle_journey_codes_idx;
CREATE INDEX public_transport_link_vehicle_journey_codes_idx
ON public_transport_links
USING btree
(vehicle_journey_code COLLATE pg_catalog."default");
|
<gh_stars>0
-- Your SQL goes here
CREATE TABLE workshops
(
id SERIAL PRIMARY KEY,
title VARCHAR(100) NOT NULL,
content TEXT NOT NULL,
end DATETIME NOT NULL,
anonymous BOOLEAN NOT NULL
);
CREATE TABLE criterion
(
id SERIAL PRIMARY KEY,
title VARCHAR(100) NOT NULL,
content TEXT NOT NULL,
weight DOUBLE NOT NULL,
kind enum ('point', 'grade', 'percentage', 'truefalse') NOT NULL
);
CREATE TABLE criteria
(
workshop BIGINT UNSIGNED NOT NULL,
criterion BIGINT UNSIGNED NOT NULL,
PRIMARY KEY (workshop, criterion),
FOREIGN KEY (workshop) REFERENCES workshops (id) ON DELETE CASCADE,
FOREIGN KEY (criterion) REFERENCES criterion (id) ON DELETE CASCADE
);
CREATE TABLE workshoplist
(
workshop BIGINT UNSIGNED NOT NULL,
user BIGINT UNSIGNED NOT NULL,
role enum ('student', 'teacher') NOT NULL,
PRIMARY KEY (workshop, user),
FOREIGN KEY (workshop) REFERENCES workshops (id) ON DELETE CASCADE,
FOREIGN KEY (user) REFERENCES users (id) ON DELETE CASCADE
); |
--TABLA PARA GUARDAR LOS CURSOS
CREATE TABLE Cursos(
CodigoCurso VARCHAR(10),
NombreCurso VARCHAR(30) NOT NULL,
Precio DECIMAL(18,3),
Activo BIT NOT NULL DEFAULT(1),
FechaCreacion DATETIME NOT NULL DEFAULT GETDATE(),
FechaModificacion DATETIME NULL,
CreadoPor VARCHAR(60) NULL,
ModificadoPor VARCHAR(60) NULL,
CONSTRAINT PK_Cursos PRIMARY KEY(CodigoCurso)
);
GO
--DOCUMENTACION DE LA TABLA CURSOS
EXEC sp_addextendedproperty
@name = N'MS_Description', @value = 'Cursos que el sistema de U gestiona',
@level0type = N'Schema', @level0name = 'dbo',
@level1type = N'Table', @level1name = 'Cursos'
GO
--DOCUMENTACION DE LAS COLUMNAS
EXEC sp_addextendedproperty
@name = N'MS_Description', @value = 'Código del curso',
@level0type = N'Schema', @level0name = 'dbo',
@level1type = N'Table', @level1name = 'Cursos',
@level2type = N'Column', @level2name = 'CodigoCurso'
GO
EXEC sp_addextendedproperty
@name = N'MS_Description', @value = 'Nombre del curso',
@level0type = N'Schema', @level0name = 'dbo',
@level1type = N'Table', @level1name = 'Cursos',
@level2type = N'Column', @level2name = 'NombreCurso'
GO
EXEC sp_addextendedproperty
@name = N'MS_Description', @value = 'Precio del curso',
@level0type = N'Schema', @level0name = 'dbo',
@level1type = N'Table', @level1name = 'Cursos',
@level2type = N'Column', @level2name = 'Precio'
GO
EXEC sp_addextendedproperty
@name = N'MS_Description', @value = 'Condición en la que se encuentra, sea 0 o 1',
@level0type = N'Schema', @level0name = 'dbo',
@level1type = N'Table', @level1name = 'Cursos',
@level2type = N'Column', @level2name = 'Activo'
GO
EXEC sp_addextendedproperty
@name = N'MS_Description', @value = 'Fecha de creación del registro',
@level0type = N'Schema', @level0name = 'dbo',
@level1type = N'Table', @level1name = 'Cursos',
@level2type = N'Column', @level2name = 'FechaCreacion'
GO
EXEC sp_addextendedproperty
@name = N'MS_Description', @value = 'Fecha de modificación del registro',
@level0type = N'Schema', @level0name = 'dbo',
@level1type = N'Table', @level1name = 'Cursos',
@level2type = N'Column', @level2name = 'FechaModificacion'
GO
EXEC sp_addextendedproperty
@name = N'MS_Description', @value = 'Nombre del autor',
@level0type = N'Schema', @level0name = 'dbo',
@level1type = N'Table', @level1name = 'Cursos',
@level2type = N'Column', @level2name = 'CreadoPor'
GO
EXEC sp_addextendedproperty
@name = N'MS_Description', @value = 'Nombre del quien modifica el registro',
@level0type = N'Schema', @level0name = 'dbo',
@level1type = N'Table', @level1name = 'Cursos',
@level2type = N'Column', @level2name = 'ModificadoPor' |
-- phpMyAdmin SQL Dump
-- version 5.0.2
-- https://www.phpmyadmin.net/
--
-- Host: 127.0.0.1
-- Generation Time: Dec 01, 2021 at 08:19 AM
-- Server version: 10.4.13-MariaDB
-- PHP Version: 7.4.7
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: `anteminang`
--
-- --------------------------------------------------------
--
-- Table structure for table `bahan_bakus`
--
CREATE TABLE `bahan_bakus` (
`id` bigint(20) UNSIGNED NOT NULL,
`kode` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`nama` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`jumlah` int(11) NOT NULL,
`satuan` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `bahan_bakus`
--
INSERT INTO `bahan_bakus` (`id`, `kode`, `nama`, `jumlah`, `satuan`) VALUES
(1, 'BB1', 'asd', 67, 'ton'),
(2, 'BB2', 'aduh', 96, 'kg'),
(3, 'BB3', 'Garam', 86, 'gr'),
(4, 'BB4', 'Plastik', 0, 'pcs'),
(6, 'BB6', 'safasd', 10, 'pcs'),
(8, 'BB8', 'barang1', 2, 'pcs'),
(9, 'BB9', 'kosong', 12524, 'pcs');
-- --------------------------------------------------------
--
-- Table structure for table `failed_jobs`
--
CREATE TABLE `failed_jobs` (
`id` bigint(20) UNSIGNED NOT NULL,
`uuid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`connection` text COLLATE utf8mb4_unicode_ci NOT NULL,
`queue` text COLLATE utf8mb4_unicode_ci NOT NULL,
`payload` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`exception` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`failed_at` timestamp NOT NULL DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `history_bahan_bakus`
--
CREATE TABLE `history_bahan_bakus` (
`id` bigint(20) UNSIGNED NOT NULL,
`kode` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`nama` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`user_id` bigint(20) UNSIGNED NOT NULL,
`jumlah` int(11) NOT NULL,
`satuan` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`keterangan` text COLLATE utf8mb4_unicode_ci NOT NULL,
`kategori` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`tanggal` timestamp NOT NULL DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `history_bahan_bakus`
--
INSERT INTO `history_bahan_bakus` (`id`, `kode`, `nama`, `user_id`, `jumlah`, `satuan`, `keterangan`, `kategori`, `tanggal`) VALUES
(1, 'BB1', 'Singkong', 1, 10, 'kg', 'Barang Masuk', 'Masuk', '2021-04-29 01:13:38'),
(2, 'BB1', 'Singkong', 1, 10, 'kg', 'Barang Masuk', 'Masuk', '2021-04-29 01:57:09'),
(3, 'BB1', 'Singkong', 1, 9, 'pcs', 'Barang Masuk', 'Keluar', '2021-04-29 01:57:24'),
(4, 'BB1', 'Singkong', 1, 7, 'kg', 'Barang Masuk', 'Masuk', '2021-04-29 01:58:51'),
(5, 'BB1', 'Singkong', 1, 3, 'pcs', 'Bahan produksi produk ($produk->nama)', 'Keluar', '2021-04-29 02:07:58'),
(6, 'BB1', 'Singkong', 1, 3, 'pcs', 'Bahan produksi produk Keripik', 'Keluar', '2021-04-29 02:09:10'),
(7, 'BB2', 'Gula', 1, 10, 'kg', 'Barang Masuk', 'Masuk', '2021-04-29 02:10:32'),
(8, 'BB3', 'Garam', 1, 10, 'gr', 'Barang Masuk', 'Masuk', '2021-04-29 02:10:40'),
(9, 'BB1', 'Singkong', 1, 1, 'pcs', 'Bahan produksi ada', 'Keluar', '2021-04-29 02:10:57'),
(10, 'BB2', 'Gula', 1, 2, 'pcs', 'Bahan produksi ada', 'Keluar', '2021-04-29 02:10:57'),
(11, 'BB3', 'Garam', 1, 3, 'pcs', 'Bahan produksi ada', 'Keluar', '2021-04-29 02:10:57'),
(12, 'BB1', 'Singkong', 1, 100, 'kg', 'Barang Masuk', 'Masuk', '2021-04-29 12:11:55'),
(13, 'BB2', 'Gula', 1, 100, 'kg', 'Barang Masuk', 'Masuk', '2021-04-29 12:12:04'),
(14, 'BB3', 'Garam', 1, 100, 'gr', 'Barang Masuk', 'Masuk', '2021-04-29 12:12:27'),
(15, 'BB1', 'Singkong', 1, 1, 'pcs', 'Bahan produksi ada', 'Keluar', '2021-04-29 12:13:50'),
(16, 'BB2', 'Gula', 1, 2, 'pcs', 'Bahan produksi ada', 'Keluar', '2021-04-29 12:13:50'),
(17, 'BB3', 'Garam', 1, 3, 'pcs', 'Bahan produksi ada', 'Keluar', '2021-04-29 12:13:50'),
(18, 'BB1', 'Singkong', 1, 1, 'pcs', 'Bahan produksi ada', 'Keluar', '2021-04-29 12:13:58'),
(19, 'BB2', 'Gula', 1, 2, 'pcs', 'Bahan produksi ada', 'Keluar', '2021-04-29 12:13:58'),
(20, 'BB3', 'Garam', 1, 3, 'pcs', 'Bahan produksi ada', 'Keluar', '2021-04-29 12:13:58'),
(21, 'BB1', 'Singkong', 1, 1, 'pcs', 'Bahan produksi ada', 'Keluar', '2021-04-29 12:14:06'),
(22, 'BB2', 'Gula', 1, 2, 'pcs', 'Bahan produksi ada', 'Keluar', '2021-04-29 12:14:06'),
(23, 'BB3', 'Garam', 1, 3, 'pcs', 'Bahan produksi ada', 'Keluar', '2021-04-29 12:14:06'),
(24, 'BB1', 'Singkong', 1, 1, 'pcs', 'Bahan produksi ada', 'Keluar', '2021-04-29 12:14:13'),
(25, 'BB2', 'Gula', 1, 2, 'pcs', 'Bahan produksi ada', 'Keluar', '2021-04-29 12:14:13'),
(26, 'BB3', 'Garam', 1, 3, 'pcs', 'Bahan produksi ada', 'Keluar', '2021-04-29 12:14:13'),
(27, 'BB1', 'Singkong', 1, 1, 'pcs', 'Bahan produksi ada', 'Keluar', '2021-04-29 12:14:21'),
(28, 'BB2', 'Gula', 1, 2, 'pcs', 'Bahan produksi ada', 'Keluar', '2021-04-29 12:14:21'),
(29, 'BB3', 'Garam', 1, 3, 'pcs', 'Bahan produksi ada', 'Keluar', '2021-04-29 12:14:21'),
(30, 'BB1', 'Singkong', 1, 1, 'pcs', 'Bahan produksi ada', 'Keluar', '2021-04-29 12:14:29'),
(31, 'BB2', 'Gula', 1, 2, 'pcs', 'Bahan produksi ada', 'Keluar', '2021-04-29 12:14:29'),
(32, 'BB3', 'Garam', 1, 3, 'pcs', 'Bahan produksi ada', 'Keluar', '2021-04-29 12:14:29'),
(33, 'BB1', 'sing', 1, 4, 'pcs', 'Bahan produksi coba lagi 1', 'Keluar', '2021-05-06 04:26:03'),
(34, 'BB1', 'sing', 1, 8, 'pcs', 'Bahan produksi coba lagi 1', 'Keluar', '2021-05-06 04:26:42'),
(35, 'BB1', 'sing', 1, 10, 'pcs', 'Bahan produksi Keripik Sanjai', 'Keluar', '2021-05-11 05:24:07'),
(36, 'BB3', 'Garam', 1, 3, 'gr', 'Busuk', 'Keluar', '2021-05-16 13:13:46'),
(37, 'BB1', 'sing', 1, 4, 'ton', 'Busuk', 'Keluar', '2021-05-16 13:16:59'),
(38, 'BB6', 'safasd', 1, 11, 'pcs', 'Barang Masuk', 'Masuk', '2021-05-20 02:36:46'),
(39, 'BB6', 'safasd', 1, 1, 'pcs', 'Busuk', 'Keluar', '2021-05-20 02:36:54'),
(40, 'BB8', 'barang1', 1, 1, 'pcs', 'Barang Masuk', 'Masuk', '2021-05-25 18:02:35'),
(41, 'BB8', 'barang1', 1, 2, 'pcs', 'Barang Masuk', 'Masuk', '2021-05-25 18:06:28'),
(42, 'BB8', 'barang1', 1, 3, 'pcs', 'Busuk', 'Keluar', '2021-05-25 18:07:18'),
(43, 'BB8', 'barang1', 1, 6, 'pcs', 'Barang Masuk', 'Masuk', '2021-05-25 18:07:37'),
(44, 'BB1', 'asd', 1, 1, 'pcs', 'Bahan produksi bismillah', 'Keluar', '2021-06-01 01:51:14'),
(45, 'BB9', 'kosong', 1, 12312, 'pcs', 'Barang Masuk', 'Masuk', '2021-06-01 02:33:16'),
(46, 'BB9', 'kosong', 1, 212, 'pcs', 'Barang Masuk', 'Masuk', '2021-06-01 02:35:58'),
(47, 'BB1', 'asd', 1, 1, 'pcs', 'Bahan produksi bismillah', 'Keluar', '2021-06-01 02:37:02'),
(48, 'BB1', 'asd', 1, 1, 'pcs', 'Bahan produksi bismillah', 'Keluar', '2021-06-01 02:37:28'),
(49, 'BB8', 'barang1', 1, 8, 'pcs', 'Busuk', 'Keluar', '2021-06-03 10:21:29'),
(50, 'BB8', 'barang1', 1, 4, 'pcs', 'Barang Masuk', 'Masuk', '2021-06-03 10:21:40');
-- --------------------------------------------------------
--
-- Table structure for table `history_management_bahan_bakus`
--
CREATE TABLE `history_management_bahan_bakus` (
`id` bigint(20) UNSIGNED NOT NULL,
`kode` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`nama` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`user_id` bigint(20) UNSIGNED NOT NULL,
`aksi` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`tanggal` timestamp NOT NULL DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `history_management_bahan_bakus`
--
INSERT INTO `history_management_bahan_bakus` (`id`, `kode`, `nama`, `user_id`, `aksi`, `tanggal`) VALUES
(1, 'BB1', 'Singkong', 1, 'Tambah', '2021-04-29 01:13:26'),
(2, 'BB2', 'Gula', 1, 'Tambah', '2021-04-29 01:13:55'),
(3, 'BB3', 'Garam', 1, 'Tambah', '2021-04-29 01:14:08'),
(4, 'BB1', 'Singkong', 1, 'Ubah', '2021-04-30 00:50:10'),
(5, 'BB4', 'Plastik', 1, 'Tambah', '2021-05-06 08:42:58'),
(6, 'BB5', 'asdasd', 1, 'Hapus', '2021-05-16 13:13:12'),
(7, 'BB7', 'fikri halim', 1, 'Tambah', '2021-05-25 17:39:43'),
(8, 'BB1', 'sing', 1, 'Ubah', '2021-05-25 17:47:42'),
(9, 'BB2', 'Gula', 1, 'Ubah', '2021-05-25 17:50:57'),
(10, 'BB8', 'barang1', 1, 'Tambah', '2021-05-25 18:01:41'),
(11, 'BB7', 'fikri halim', 1, 'Hapus', '2021-05-25 18:17:43'),
(12, 'BB9', 'kosong', 1, 'Tambah', '2021-06-01 01:53:58');
-- --------------------------------------------------------
--
-- Table structure for table `history_management_produks`
--
CREATE TABLE `history_management_produks` (
`id` bigint(20) UNSIGNED NOT NULL,
`kode` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`nama` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`user_id` bigint(20) UNSIGNED NOT NULL,
`aksi` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`tanggal` timestamp NOT NULL DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `history_management_produks`
--
INSERT INTO `history_management_produks` (`id`, `kode`, `nama`, `user_id`, `aksi`, `tanggal`) VALUES
(1, 'BJ1', 'Keripik', 1, 'Tambah', '2021-04-29 01:21:45'),
(2, 'BJ2', 'gula kapas', 1, 'Tambah', '2021-04-29 01:26:44'),
(3, 'BJ2', 'gula kapas', 1, 'Hapus', '2021-04-29 01:49:53'),
(4, 'BJ3', 'ada', 1, 'Tambah', '2021-04-29 02:10:13'),
(5, 'BJ4', 'produk 1', 1, 'Tambah', '2021-04-30 02:30:18'),
(6, 'BJ3', 'ada1', 1, 'Edit', '2021-05-05 14:49:27'),
(7, 'BJ3', 'ada1', 1, 'Edit', '2021-05-05 14:49:44'),
(8, 'BJ5', 'ini produk', 1, 'Tambah', '2021-05-05 14:53:49'),
(9, 'BJ6', 'ini bukan produk', 1, 'Tambah', '2021-05-05 14:54:08'),
(10, 'BJ7', 'coba lagi', 1, 'Tambah', '2021-05-05 14:54:29'),
(11, 'BJ5', 'ini produk', 1, 'Edit', '2021-05-05 15:24:06'),
(12, 'BJ6', 'ini bukan produk', 1, 'Edit', '2021-05-05 15:25:30'),
(13, 'BJ4', 'produk 1', 1, 'Edit', '2021-05-05 15:26:28'),
(14, 'BJ7', 'coba lagi 1', 1, 'Edit', '2021-05-05 15:30:16'),
(15, 'BJ1', '<NAME>', 1, 'Edit', '2021-05-05 15:35:45'),
(16, 'BJ1', '<NAME>', 1, 'Edit', '2021-05-05 15:36:59'),
(17, 'BJ1', '<NAME>', 1, 'Edit', '2021-05-05 15:38:07'),
(18, 'BJ1', '<NAME>', 1, 'Edit', '2021-05-05 15:38:47'),
(19, 'BJ5', 'ini produk 1', 1, 'Edit', '2021-05-05 16:47:37'),
(20, 'BJ7', 'coba lagi 1', 1, 'Edit', '2021-05-05 16:49:51'),
(21, 'BJ6', 'ini bukan produk', 1, 'Edit', '2021-05-05 16:50:46'),
(22, 'BJ6', 'ini bukan produk', 1, 'Edit', '2021-05-05 16:54:27'),
(23, 'BJ8', 'fikri halim', 1, 'Tambah', '2021-05-06 07:05:19'),
(24, 'BJ9', 'bismillah', 1, 'Tambah', '2021-05-06 07:09:41'),
(25, 'BJ10', 'asd1123', 1, 'Tambah', '2021-05-06 07:32:18'),
(26, 'BJ7', 'coba lagi 1', 1, 'Edit', '2021-05-06 08:12:18'),
(27, 'BJ11', 'Kue kering', 1, 'Tambah', '2021-05-06 14:59:23'),
(28, 'BJ11', 'Kue Kering banget', 1, 'Edit', '2021-05-06 14:59:57'),
(29, 'BJ12', '<NAME>', 1, 'Tambah', '2021-05-11 05:23:40'),
(30, 'BJ11', 'Kue Kering banget', 1, 'Edit', '2021-05-19 01:04:48'),
(31, 'BJ9', 'bismillah', 1, 'Edit', '2021-05-20 02:49:04'),
(32, 'BJ9', 'bismillah', 1, 'Edit', '2021-05-20 02:49:25'),
(33, 'BJ13', 'asdasd1', 1, 'Tambah', '2021-06-01 01:50:23'),
(34, 'BJ14', 'ini nyoba', 1, 'Tambah', '2021-06-01 01:54:21'),
(35, 'BJ15', 'ss', 1, 'Tambah', '2021-06-01 01:56:27'),
(36, 'BJ15', 'ss', 1, 'Edit', '2021-06-01 02:08:31'),
(37, 'BJ16', 'sekali', 1, 'Tambah', '2021-06-01 02:17:42');
-- --------------------------------------------------------
--
-- Table structure for table `history_produks`
--
CREATE TABLE `history_produks` (
`id` bigint(20) UNSIGNED NOT NULL,
`kode` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`nama` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`user_id` bigint(20) UNSIGNED NOT NULL,
`jumlah` int(11) NOT NULL,
`satuan` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`keterangan` text COLLATE utf8mb4_unicode_ci NOT NULL,
`kategori` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`tanggal` timestamp NOT NULL DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `history_produks`
--
INSERT INTO `history_produks` (`id`, `kode`, `nama`, `user_id`, `jumlah`, `satuan`, `keterangan`, `kategori`, `tanggal`) VALUES
(1, 'BJ1', 'Keripik', 1, 3, 'pcs', 'Barang Masuk', 'Masuk', '2021-04-29 01:23:37'),
(2, 'BJ1', 'Keripik', 1, 3, 'pcs', 'Barang Masuk', 'Masuk', '2021-04-29 01:57:24'),
(3, 'BJ1', 'Keripik', 1, 1, 'pcs', 'Barang Masuk', 'Masuk', '2021-04-29 02:07:58'),
(4, 'BJ1', 'Keripik', 1, 1, 'pcs', 'Barang Masuk', 'Masuk', '2021-04-29 02:09:10'),
(5, 'BJ3', 'ada', 1, 1, 'pcs', 'Barang Masuk', 'Masuk', '2021-04-29 02:10:57'),
(6, 'BJ3', 'ada', 1, 1, 'pcs', 'Barang Masuk', 'Masuk', '2021-04-29 12:13:50'),
(7, 'BJ3', 'ada', 1, 1, 'pcs', 'Barang Masuk', 'Masuk', '2021-04-29 12:13:58'),
(8, 'BJ3', 'ada', 1, 1, 'pcs', 'Barang Masuk', 'Masuk', '2021-04-29 12:14:06'),
(9, 'BJ3', 'ada', 1, 1, 'pcs', 'Barang Masuk', 'Masuk', '2021-04-29 12:14:14'),
(10, 'BJ3', 'ada', 1, 1, 'pcs', 'Barang Masuk', 'Masuk', '2021-04-29 12:14:21'),
(11, 'BJ3', 'ada', 1, 1, 'pcs', 'Barang Masuk', 'Masuk', '2021-04-29 12:14:29'),
(12, 'BJ7', 'coba lagi 1', 1, 2, 'pcs', 'Barang Masuk', 'Masuk', '2021-05-06 04:26:04'),
(13, 'BJ7', 'coba lagi 1', 1, 2, 'pcs', 'Busuk', 'Keluar', '2021-05-06 04:26:26'),
(14, 'BJ7', 'coba lagi 1', 1, 4, 'pcs', 'Barang Masuk', 'Masuk', '2021-05-06 04:26:42'),
(15, 'BJ7', 'coba lagi 1', 1, 1, 'pcs', 'Terjual', 'Keluar', '2021-05-11 05:10:18'),
(16, 'BJ12', '<NAME>', 1, 10, 'pcs', 'Barang Masuk', 'Masuk', '2021-05-11 05:24:07'),
(17, 'BJ12', '<NAME>', 1, 1, 'pcs', 'Terjual', 'Keluar', '2021-05-11 05:24:15'),
(18, 'BJ12', '<NAME>', 1, 2, 'pcs', 'Terjual', 'Keluar', '2021-05-11 05:24:21'),
(19, 'BJ3', 'ada1', 1, 4, 'ton', 'Terjual', 'Keluar', '2021-05-16 13:10:46'),
(20, 'BJ7', 'coba lagi 1', 1, 1, 'pcs', 'Terjual', 'Keluar', '2021-05-20 02:37:22'),
(21, 'BJ7', 'coba lagi 1', 1, 1, 'pcs', 'Terjual', 'Keluar', '2021-05-20 02:37:33'),
(22, 'BJ9', 'bismillah', 1, 1, 'pcs', 'Barang Masuk', 'Masuk', '2021-06-01 01:51:14'),
(23, 'BJ7', 'coba lagi 1', 1, 1, 'pcs', 'Terjual', 'Keluar', '2021-06-01 02:04:02'),
(24, 'BJ9', 'bismillah', 1, 1, 'pcs', 'Barang Masuk', 'Masuk', '2021-06-01 02:37:02'),
(25, 'BJ9', 'bismillah', 1, 1, 'pcs', 's', 'Masuk', '2021-06-01 02:37:28'),
(26, 'BJ9', 'bismillah', 1, 1, 'pcs', 'Terjual', 'Keluar', '2021-06-01 02:38:54'),
(27, 'BJ9', 'bismillah', 1, 1, 'pcs', 's', 'Keluar', '2021-06-01 02:39:39');
-- --------------------------------------------------------
--
-- Table structure for table `migrations`
--
CREATE TABLE `migrations` (
`id` int(10) UNSIGNED NOT NULL,
`migration` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`batch` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `migrations`
--
INSERT INTO `migrations` (`id`, `migration`, `batch`) VALUES
(1, '2014_10_12_000000_create_users_table', 1),
(2, '2014_10_12_100000_create_password_resets_table', 1),
(3, '2019_08_19_000000_create_failed_jobs_table', 1),
(4, '2021_04_19_052305_create_produks_table', 1),
(5, '2021_04_20_180403_create_bahan_bakus_table', 1),
(6, '2021_04_20_180425_create_reseps_table', 1),
(7, '2021_04_21_051759_create_history_bahan_bakus_table', 1),
(8, '2021_04_21_051817_create_history_produks_table', 1),
(9, '2021_04_21_051839_create_history_management_bahan_bakus_table', 1),
(10, '2021_04_21_051856_create_history_management_produks_table', 1),
(11, '2021_04_31_140947_create_stoks_table', 1);
-- --------------------------------------------------------
--
-- Table structure for table `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;
-- --------------------------------------------------------
--
-- Table structure for table `produks`
--
CREATE TABLE `produks` (
`id` bigint(20) UNSIGNED NOT NULL,
`kode` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`nama` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`jumlah` int(11) NOT NULL,
`satuan` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `produks`
--
INSERT INTO `produks` (`id`, `kode`, `nama`, `jumlah`, `satuan`) VALUES
(1, 'BJ1', '<NAME>', 8, 'satuan lah'),
(3, 'BJ3', 'ada1', 3, 'ton'),
(4, 'BJ4', 'produk 1', 0, 'ons'),
(5, 'BJ5', 'ini produk 1', 0, 'Ton'),
(6, 'BJ6', 'ini bukan produk', 0, 'pcs'),
(7, 'BJ7', 'coba lagi 1', 0, 'pcs'),
(8, 'BJ8', 'fikri halim', 0, 'pcs'),
(9, 'BJ9', 'bismillah', 1, 'pcs'),
(10, 'BJ10', 'asd1123', 0, 'pcs'),
(11, 'BJ11', 'Kue Kering banget', 0, 'pcs'),
(12, 'BJ12', '<NAME>', 7, 'pcs'),
(13, 'BJ13', 'asdasd1', 0, 'pcs'),
(14, 'BJ14', 'ini nyoba', 0, 'pcs'),
(15, 'BJ15', 'ss', 0, 'pcs'),
(16, 'BJ16', 'sekali', 0, 'pcs');
-- --------------------------------------------------------
--
-- Table structure for table `reseps`
--
CREATE TABLE `reseps` (
`id` bigint(20) UNSIGNED NOT NULL,
`produk_id` bigint(20) UNSIGNED NOT NULL,
`bahan_baku_id` bigint(20) UNSIGNED NOT NULL,
`jumlah` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `reseps`
--
INSERT INTO `reseps` (`id`, `produk_id`, `bahan_baku_id`, `jumlah`) VALUES
(20, 4, 1, 1),
(21, 4, 3, 1),
(26, 1, 1, 4),
(27, 5, 1, 1),
(30, 6, 2, 1),
(31, 8, 2, 1),
(33, 10, 3, 2),
(34, 7, 1, 2),
(42, 12, 1, 1),
(43, 11, 2, 1),
(44, 11, 3, 1),
(47, 9, 1, 1),
(48, 13, 1, 1),
(49, 14, 9, 1),
(51, 15, 9, 1),
(52, 16, 1, 1);
-- --------------------------------------------------------
--
-- Table structure for table `stoks`
--
CREATE TABLE `stoks` (
`id` bigint(20) UNSIGNED NOT NULL,
`bahan_baku_id` bigint(20) UNSIGNED NOT NULL,
`jumlah` int(11) NOT NULL,
`tanggal` timestamp NOT NULL DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `users`
--
CREATE TABLE `users` (
`id` bigint(20) UNSIGNED NOT NULL,
`username` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`role` int(11) NOT NULL,
`name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`email` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`jabatan` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`no_hp` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`foto` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`password` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `users`
--
INSERT INTO `users` (`id`, `username`, `role`, `name`, `email`, `jabatan`, `no_hp`, `foto`, `password`) VALUES
(1, 'a', 1, 'admin', 'admin@admin', 'Superadmin', '08221616161', 'http://127.0.0.1:8000/storage/foto/fikri/cropped-Lambang-KMPA-1 (1).png', '$2y$10$.A5kGVXJ.pcxqJ/z6Q7I5eSfvoD1XamcI96jR2x5Dt763x1v7sYVe'),
(2, 'ads', 2, 'fikri', '<EMAIL>', 'Resign', '081311308298', 'http://127.0.0.1:8000/storage/foto/fikri/cropped-Lambang-KMPA-1 (1).png', '$2y$10$quRd4qGhsiyBaqPiDzNq4.BsN0FaK0BDsvIn2yBHj5D7ZJ3pb60.e'),
(3, 'fikrihalim', 2, 'faker', '<EMAIL>', 'Pegawai', '089868789081', 'http://127.0.0.1:8000/storage/foto/fikri halim ch/cropped-Lambang-KMPA-1 (1).png', '$2y$10$xIy.oYoN7uzhL3CEN8GfJ.lkjM6fmSlgrGLxtNCIK9kLdkH/0OIcq'),
(4, 'fikrich', 2, 'fikri halim ch', '<EMAIL>', 'Pegawai', '09828292819', 'http://127.0.0.1:8000/storage/foto/fikri halim ch/cropped-Lambang-KMPA-1 (1).png', '$2y$10$CfE4J86vx52eUaU2YuJSmOX9UP657w2bjqoGgVWlQQLaDGqVVnZCG'),
(5, 'coba', 2, 'coba', '<EMAIL>', 'Pegawai', '0987098798', 'http://127.0.0.1:8000/storage/foto/coba/image.png', '$2y$10$Qgd5aJFe6tA0mDIuSjuyt.Ui8xRhoPLfKtztajoQhmpskn0eX7kGe'),
(6, 'percobaan', 2, 'user percobaan', '<EMAIL>', 'Pegawai', '09876543211', 'http://127.0.0.1:8000/storage/foto/user percobaan/Fikri Halim Ch_118140055_Teknologi Industri_Teknik Informatika.JPG', '$2y$10$oh1l82Wg1.G2WrmxnwYFTeMfBiOsWhZUOdee/wMOsIx8tMUwlSEV2');
--
-- Indexes for dumped tables
--
--
-- Indexes for table `bahan_bakus`
--
ALTER TABLE `bahan_bakus`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `failed_jobs`
--
ALTER TABLE `failed_jobs`
ADD PRIMARY KEY (`id`),
ADD UNIQUE KEY `failed_jobs_uuid_unique` (`uuid`);
--
-- Indexes for table `history_bahan_bakus`
--
ALTER TABLE `history_bahan_bakus`
ADD PRIMARY KEY (`id`),
ADD KEY `history_bahan_bakus_user_id_foreign` (`user_id`);
--
-- Indexes for table `history_management_bahan_bakus`
--
ALTER TABLE `history_management_bahan_bakus`
ADD PRIMARY KEY (`id`),
ADD KEY `history_management_bahan_bakus_user_id_foreign` (`user_id`);
--
-- Indexes for table `history_management_produks`
--
ALTER TABLE `history_management_produks`
ADD PRIMARY KEY (`id`),
ADD KEY `history_management_produks_user_id_foreign` (`user_id`);
--
-- Indexes for table `history_produks`
--
ALTER TABLE `history_produks`
ADD PRIMARY KEY (`id`),
ADD KEY `history_produks_user_id_foreign` (`user_id`);
--
-- Indexes for table `migrations`
--
ALTER TABLE `migrations`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `password_resets`
--
ALTER TABLE `password_resets`
ADD KEY `password_resets_email_index` (`email`);
--
-- Indexes for table `produks`
--
ALTER TABLE `produks`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `reseps`
--
ALTER TABLE `reseps`
ADD PRIMARY KEY (`id`),
ADD KEY `reseps_produk_id_foreign` (`produk_id`),
ADD KEY `reseps_bahan_baku_id_foreign` (`bahan_baku_id`);
--
-- Indexes for table `stoks`
--
ALTER TABLE `stoks`
ADD PRIMARY KEY (`id`),
ADD KEY `stoks_bahan_baku_id_foreign` (`bahan_baku_id`);
--
-- Indexes for table `users`
--
ALTER TABLE `users`
ADD PRIMARY KEY (`id`),
ADD UNIQUE KEY `users_email_unique` (`email`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `bahan_bakus`
--
ALTER TABLE `bahan_bakus`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=10;
--
-- AUTO_INCREMENT for table `failed_jobs`
--
ALTER TABLE `failed_jobs`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `history_bahan_bakus`
--
ALTER TABLE `history_bahan_bakus`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=51;
--
-- AUTO_INCREMENT for table `history_management_bahan_bakus`
--
ALTER TABLE `history_management_bahan_bakus`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=13;
--
-- AUTO_INCREMENT for table `history_management_produks`
--
ALTER TABLE `history_management_produks`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=38;
--
-- AUTO_INCREMENT for table `history_produks`
--
ALTER TABLE `history_produks`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=28;
--
-- AUTO_INCREMENT for table `migrations`
--
ALTER TABLE `migrations`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=12;
--
-- AUTO_INCREMENT for table `produks`
--
ALTER TABLE `produks`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=17;
--
-- AUTO_INCREMENT for table `reseps`
--
ALTER TABLE `reseps`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=53;
--
-- AUTO_INCREMENT for table `stoks`
--
ALTER TABLE `stoks`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `users`
--
ALTER TABLE `users`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7;
--
-- Constraints for dumped tables
--
--
-- Constraints for table `history_bahan_bakus`
--
ALTER TABLE `history_bahan_bakus`
ADD CONSTRAINT `history_bahan_bakus_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE;
--
-- Constraints for table `history_management_bahan_bakus`
--
ALTER TABLE `history_management_bahan_bakus`
ADD CONSTRAINT `history_management_bahan_bakus_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE;
--
-- Constraints for table `history_management_produks`
--
ALTER TABLE `history_management_produks`
ADD CONSTRAINT `history_management_produks_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE;
--
-- Constraints for table `history_produks`
--
ALTER TABLE `history_produks`
ADD CONSTRAINT `history_produks_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE;
--
-- Constraints for table `reseps`
--
ALTER TABLE `reseps`
ADD CONSTRAINT `reseps_bahan_baku_id_foreign` FOREIGN KEY (`bahan_baku_id`) REFERENCES `bahan_bakus` (`id`) ON DELETE CASCADE,
ADD CONSTRAINT `reseps_produk_id_foreign` FOREIGN KEY (`produk_id`) REFERENCES `produks` (`id`) ON DELETE CASCADE;
--
-- Constraints for table `stoks`
--
ALTER TABLE `stoks`
ADD CONSTRAINT `stoks_bahan_baku_id_foreign` FOREIGN KEY (`bahan_baku_id`) REFERENCES `bahan_bakus` (`id`);
COMMIT;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
CREATE TABLE items (
iID SERIAL PRIMARY KEY ,
iNAME varchar(50) NOT NULL
); |
<filename>src/main/resources/META-INF/com/example/CategoryDao/selectAll.sql
select /*%expand*/*
from Category
|
-- new API features
UPDATE configurations SET version = '9.2', modified = now() WHERE id = 1; |
alter table CleanFoodImage ADD label varchar(255);
|
/*=================================================*/
/*All transactions from source clientID to destinationclientID*/
/*=================================================*/
select source,
(select clientName from clients c inner join client_channels_reference ccr on c.clientID=ccr.destinationClientID where ccr.code = destination)destination,
amount from transactions t
inner join request_logs r on t.requestlogID = r.requestlogID
inner join client_channels_reference ccr on ccr.channel_ref_id = t.channel_ref_id
where ccr.clientID=9 and ccr.destinationClientID=2
order by 1 desc limit 10;
/*=================================================*/
/*From source clientID to any clientID*/
/*=================================================*/
select source,
count(t.transactionID),
SUM(amount) as total, (select clientName from clients c
inner join client_channels_reference ccr on c.clientID=ccr.destinationClientID
where ccr.code = destination)destination from transactions t
inner join request_logs r on t.requestlogID = r.requestlogID
inner join client_channels_reference ccr on ccr.channel_ref_id = t.channel_ref_id
where ccr.clientID=9
GROUP BY r.source, r.destination
/*=================================================*/
/*From source clientID to any clientID where between dates*/
/*=================================================*/
select source,
count(t.transactionID),
SUM(amount) as total, (select clientName from clients c
inner join client_channels_reference ccr on c.clientID=ccr.destinationClientID
where ccr.code = destination)destination from transactions t
inner join request_logs r on t.requestlogID = r.requestlogID
inner join client_channels_reference ccr on ccr.channel_ref_id = t.channel_ref_id
where ccr.clientID=9
where t.date_created between '2016-06-06' AND '2017-06-06'
GROUP BY r.source, r.destination
/*=================================================*/
/*From source clientID to any clientID Groupt By Month
/*=================================================*/
select source,
count(t.transactionID),
SUM(amount) as total,
(select clientName from clients c
inner join client_channels_reference ccr on c.clientID=ccr.destinationClientID
where ccr.code = destination)destination, MONTH(t.date_created) AS month from transactions t
inner join request_logs r on t.requestlogID = r.requestlogID
inner join client_channels_reference ccr on ccr.channel_ref_id = t.channel_ref_id
where ccr.clientID=9 GROUP BY r.source, r.destination, month
/*=================================================*/
/*From source clientID to desctination clientID
/*=================================================*/
select source,
(select clientName from clients c
inner join client_channels_reference ccr on c.clientID=ccr.destinationClientID
where ccr.code = destination)destination,
UM(amount), COUNT(t.transactionID) from transactions t
inner join request_logs r on t.requestlogID = r.requestlogID
inner join client_channels_reference ccr on ccr.channel_ref_id = t.channel_ref_id
where ccr.clientID=9 and ccr.destinationClientID=2
GROUP BY r.source, r.destination |
SELECT FirstName, LastName FROM Employees
WHERE LastName LIKE '%EI%' |
<filename>scripts/terraform/azure/postgresql/init-database.sql
CREATE ROLE ctb_user WITH
LOGIN
NOSUPERUSER
NOCREATEDB
NOCREATEROLE
INHERIT
NOREPLICATION
CONNECTION LIMIT -1
PASSWORD '--> ENTER PASSWORD HERE <--';
COMMENT ON ROLE tes IS 'Database user for the claim tax benefits front-end application.';
CREATE TABLE public.access_codes
(
code character varying(97) COLLATE pg_catalog."default" NOT NULL,
date_of_birth character varying(97) COLLATE pg_catalog."default" NOT NULL,
login_count numeric NOT NULL,
sin character varying(97) COLLATE pg_catalog."default" NOT NULL,
first_name VARCHAR(30),
locked boolean NOT NULL,
CONSTRAINT pk_access_code PRIMARY KEY (code)
)
WITH (
OIDS = FALSE
)
TABLESPACE pg_default;
GRANT INSERT, SELECT, UPDATE, DELETE, TRUNCATE, REFERENCES ON TABLE public.access_codes TO ctb_user;
GRANT ALL ON TABLE public.access_codes TO ctb_admin;
ALTER DEFAULT PRIVILEGES IN SCHEMA public
GRANT INSERT, SELECT, UPDATE, DELETE, TRUNCATE, REFERENCES ON TABLES TO ctb_user; |
<gh_stars>1-10
# Copyright (C) 2012-2018 Internet Systems Consortium, Inc. ("ISC")
#
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
# This is the Kea schema specification for MySQL.
#
# The schema is reasonably portable (with the exception of the engine
# specification, which is MySQL-specific). Minor changes might be needed for
# other databases.
# To create the schema, either type the command:
#
# mysql -u <user> -p <password> <database> < dhcpdb_create.mysql
#
# ... at the command prompt, or log in to the MySQL database and at the 'mysql>'
# prompt, issue the command:
#
# source dhcpdb_create.mysql
#
# This script is also called from kea-admin, see kea-admin lease-init mysql
#
# Over time, Kea database schema will evolve. Each version is marked with
# major.minor version. This file is organized sequentially, i.e. database
# is initialized to 1.0, then upgraded to 2.0 etc. This may be somewhat
# sub-optimal, but it ensues consistency with upgrade scripts. (It is much
# easier to maintain init and upgrade scripts if they look the same).
# Since initialization is done only once, it's performance is not an issue.
# This line starts database initialization to 1.0.
# Holds the IPv4 leases.
CREATE TABLE lease4 (
address INT UNSIGNED PRIMARY KEY NOT NULL, # IPv4 address
hwaddr VARBINARY(20), # Hardware address
client_id VARBINARY(128), # Client ID
valid_lifetime INT UNSIGNED, # Length of the lease (seconds)
expire TIMESTAMP, # Expiration time of the lease
subnet_id INT UNSIGNED, # Subnet identification
fqdn_fwd BOOL, # Has forward DNS update been performed by a server
fqdn_rev BOOL, # Has reverse DNS update been performed by a server
hostname VARCHAR(255) # The FQDN of the client
) ENGINE = INNODB;
# Create search indexes for lease4 table
# index by hwaddr and subnet_id
CREATE INDEX lease4_by_hwaddr_subnet_id ON lease4 (hwaddr, subnet_id);
# index by client_id and subnet_id
CREATE INDEX lease4_by_client_id_subnet_id ON lease4 (client_id, subnet_id);
# Holds the IPv6 leases.
# N.B. The use of a VARCHAR for the address is temporary for development:
# it will eventually be replaced by BINARY(16).
CREATE TABLE lease6 (
address VARCHAR(39) PRIMARY KEY NOT NULL, # IPv6 address
duid VARBINARY(128), # DUID
valid_lifetime INT UNSIGNED, # Length of the lease (seconds)
expire TIMESTAMP, # Expiration time of the lease
subnet_id INT UNSIGNED, # Subnet identification
pref_lifetime INT UNSIGNED, # Preferred lifetime
lease_type TINYINT, # Lease type (see lease6_types
# table for possible values)
iaid INT UNSIGNED, # See Section 10 of RFC 3315
prefix_len TINYINT UNSIGNED, # For IA_PD only
fqdn_fwd BOOL, # Has forward DNS update been performed by a server
fqdn_rev BOOL, # Has reverse DNS update been performed by a server
hostname VARCHAR(255) # The FQDN of the client
) ENGINE = INNODB;
# Create search indexes for lease4 table
# index by iaid, subnet_id, and duid
CREATE INDEX lease6_by_iaid_subnet_id_duid ON lease6 (iaid, subnet_id, duid);
# ... and a definition of lease6 types. This table is a convenience for
# users of the database - if they want to view the lease table and use the
# type names, they can join this table with the lease6 table.
# Make sure those values match Lease6::LeaseType enum (see src/bin/dhcpsrv/
# lease_mgr.h)
CREATE TABLE lease6_types (
lease_type TINYINT PRIMARY KEY NOT NULL, # Lease type code.
name VARCHAR(5) # Name of the lease type
) ENGINE = INNODB;
START TRANSACTION;
INSERT INTO lease6_types VALUES (0, 'IA_NA'); # Non-temporary v6 addresses
INSERT INTO lease6_types VALUES (1, 'IA_TA'); # Temporary v6 addresses
INSERT INTO lease6_types VALUES (2, 'IA_PD'); # Prefix delegations
COMMIT;
# Finally, the version of the schema. We start at 1.0 during development.
# This table is only modified during schema upgrades. For historical reasons
# (related to the names of the columns in the BIND 10 DNS database file), the
# first column is called 'version' and not 'major'.
CREATE TABLE schema_version (
version INT PRIMARY KEY NOT NULL, # Major version number
minor INT # Minor version number
) ENGINE = INNODB;
START TRANSACTION;
INSERT INTO schema_version VALUES (1, 0);
COMMIT;
# This line concludes database initialization to version 1.0.
# This line starts database upgrade to version 2.0.
ALTER TABLE lease6
ADD COLUMN hwaddr varbinary(20), # Hardware/MAC address, typically only 6
# bytes is used, but some hardware (e.g.
# Infiniband) use up to 20.
ADD COLUMN hwtype smallint unsigned, # hardware type (16 bits)
ADD COLUMN hwaddr_source int unsigned; # Hardware source. See description
# of lease_hwaddr_source below.
# Kea keeps track of the hardware/MAC address source, i.e. how the address
# was obtained. Depending on the technique and your network topology, it may
# be more or less trustworthy. This table is a convenience for
# users of the database - if they want to view the lease table and use the
# type names, they can join this table with the lease6 table. For details,
# see constants defined in src/lib/dhcp/dhcp/pkt.h for detailed explanation.
CREATE TABLE lease_hwaddr_source (
hwaddr_source INT PRIMARY KEY NOT NULL,
name VARCHAR(40)
) ENGINE = INNODB;
# Hardware address obtained from raw sockets
INSERT INTO lease_hwaddr_source VALUES (1, 'HWADDR_SOURCE_RAW');
# Hardware address converted from IPv6 link-local address with EUI-64
INSERT INTO lease_hwaddr_source VALUES (2, 'HWADDR_SOURCE_IPV6_LINK_LOCAL');
# Hardware address extracted from client-id (duid)
INSERT INTO lease_hwaddr_source VALUES (4, 'HWADDR_SOURCE_DUID');
# Hardware address extracted from client address relay option (RFC6939)
INSERT INTO lease_hwaddr_source VALUES (8, 'HWADDR_SOURCE_CLIENT_ADDR_RELAY_OPTION');
# Hardware address extracted from remote-id option (RFC4649)
INSERT INTO lease_hwaddr_source VALUES (16, 'HWADDR_SOURCE_REMOTE_ID');
# Hardware address extracted from subscriber-id option (RFC4580)
INSERT INTO lease_hwaddr_source VALUES (32, 'HWADDR_SOURCE_SUBSCRIBER_ID');
# Hardware address extracted from docsis options
INSERT INTO lease_hwaddr_source VALUES (64, 'HWADDR_SOURCE_DOCSIS');
UPDATE schema_version SET version='2', minor='0';
# This line concludes database upgrade to version 2.0.
# This line starts database upgrade to version 3.0.
# Upgrade extending MySQL schema with the ability to store hosts.
CREATE TABLE IF NOT EXISTS hosts (
host_id INT UNSIGNED NOT NULL AUTO_INCREMENT,
dhcp_identifier VARBINARY(128) NOT NULL,
dhcp_identifier_type TINYINT NOT NULL,
dhcp4_subnet_id INT UNSIGNED NULL,
dhcp6_subnet_id INT UNSIGNED NULL,
ipv4_address INT UNSIGNED NULL,
hostname VARCHAR(255) NULL,
dhcp4_client_classes VARCHAR(255) NULL,
dhcp6_client_classes VARCHAR(255) NULL,
PRIMARY KEY (host_id),
INDEX key_dhcp4_identifier_subnet_id (dhcp_identifier ASC , dhcp_identifier_type ASC),
INDEX key_dhcp6_identifier_subnet_id (dhcp_identifier ASC , dhcp_identifier_type ASC , dhcp6_subnet_id ASC)
) ENGINE=INNODB;
-- -----------------------------------------------------
-- Table `ipv6_reservations`
-- -----------------------------------------------------
CREATE TABLE IF NOT EXISTS ipv6_reservations (
reservation_id INT NOT NULL AUTO_INCREMENT,
address VARCHAR(39) NOT NULL,
prefix_len TINYINT(3) UNSIGNED NOT NULL DEFAULT 128,
type TINYINT(4) UNSIGNED NOT NULL DEFAULT 0,
dhcp6_iaid INT UNSIGNED NULL,
host_id INT UNSIGNED NOT NULL,
PRIMARY KEY (reservation_id),
INDEX fk_ipv6_reservations_host_idx (host_id ASC),
CONSTRAINT fk_ipv6_reservations_Host FOREIGN KEY (host_id)
REFERENCES hosts (host_id)
ON DELETE NO ACTION ON UPDATE NO ACTION
) ENGINE=INNODB;
-- -----------------------------------------------------
-- Table `dhcp4_options`
-- -----------------------------------------------------
CREATE TABLE IF NOT EXISTS dhcp4_options (
option_id INT UNSIGNED NOT NULL AUTO_INCREMENT,
code TINYINT UNSIGNED NOT NULL,
value BLOB NULL,
formatted_value TEXT NULL,
space VARCHAR(128) NULL,
persistent TINYINT(1) NOT NULL DEFAULT 0,
dhcp_client_class VARCHAR(128) NULL,
dhcp4_subnet_id INT NULL,
host_id INT UNSIGNED NULL,
PRIMARY KEY (option_id),
UNIQUE INDEX option_id_UNIQUE (option_id ASC),
INDEX fk_options_host1_idx (host_id ASC),
CONSTRAINT fk_options_host1 FOREIGN KEY (host_id)
REFERENCES hosts (host_id)
ON DELETE NO ACTION ON UPDATE NO ACTION
) ENGINE=INNODB;
-- -----------------------------------------------------
-- Table `dhcp6_options`
-- -----------------------------------------------------
CREATE TABLE IF NOT EXISTS dhcp6_options (
option_id INT UNSIGNED NOT NULL AUTO_INCREMENT,
code INT UNSIGNED NOT NULL,
value BLOB NULL,
formatted_value TEXT NULL,
space VARCHAR(128) NULL,
persistent TINYINT(1) NOT NULL DEFAULT 0,
dhcp_client_class VARCHAR(128) NULL,
dhcp6_subnet_id INT NULL,
host_id INT UNSIGNED NULL,
PRIMARY KEY (option_id),
UNIQUE INDEX option_id_UNIQUE (option_id ASC),
INDEX fk_options_host1_idx (host_id ASC),
CONSTRAINT fk_options_host10 FOREIGN KEY (host_id)
REFERENCES hosts (host_id)
ON DELETE NO ACTION ON UPDATE NO ACTION
) ENGINE=INNODB;
DELIMITER $$
CREATE TRIGGER host_BDEL BEFORE DELETE ON hosts FOR EACH ROW
-- Edit trigger body code below this line. Do not edit lines above this one
BEGIN
DELETE FROM ipv6_reservations WHERE ipv6_reservations.host_id = OLD.host_id;
END
$$
DELIMITER ;
UPDATE schema_version
SET version = '3', minor = '0';
# This line concludes database upgrade to version 3.0.
# This line starts database upgrade to version 4.0.
# Upgrade extending MySQL schema with the state columns for lease tables.
# Add state column to the lease4 table.
ALTER TABLE lease4
ADD COLUMN state INT UNSIGNED DEFAULT 0;
# Add state column to the lease6 table.
ALTER TABLE lease6
ADD COLUMN state INT UNSIGNED DEFAULT 0;
# Create indexes for querying leases in a given state and segregated
# by the expiration time. One of the applications is to retrieve all
# expired leases. However, these indexes can be also used to retrieve
# leases in a given state regardless of the expiration time.
CREATE INDEX lease4_by_state_expire ON lease4 (state ASC, expire ASC);
CREATE INDEX lease6_by_state_expire ON lease6 (state ASC, expire ASC);
# Create table holding mapping of the lease states to their names.
# This is not used in queries from the DHCP server but rather in
# direct queries from the lease database management tools.
CREATE TABLE IF NOT EXISTS lease_state (
state INT UNSIGNED PRIMARY KEY NOT NULL,
name VARCHAR(64) NOT NULL
) ENGINE=INNODB;
# Insert currently defined state names.
INSERT INTO lease_state VALUES (0, 'default');
INSERT INTO lease_state VALUES (1, 'declined');
INSERT INTO lease_state VALUES (2, 'expired-reclaimed');
# Add a constraint that any state value added to the lease4 must
# map to a value in the lease_state table.
ALTER TABLE lease4
ADD CONSTRAINT fk_lease4_state FOREIGN KEY (state)
REFERENCES lease_state (state);
# Add a constraint that any state value added to the lease6 must
# map to a value in the lease_state table.
ALTER TABLE lease6
ADD CONSTRAINT fk_lease6_state FOREIGN KEY (state)
REFERENCES lease_state (state);
# Add a constraint that lease type in the lease6 table must map
# to a lease type defined in the lease6_types table.
ALTER TABLE lease6
ADD CONSTRAINT fk_lease6_type FOREIGN KEY (lease_type)
REFERENCES lease6_types (lease_type);
# Modify the name of one of the HW address sources, and add a new one.
UPDATE lease_hwaddr_source
SET name = 'HWADDR_SOURCE_DOCSIS_CMTS'
WHERE hwaddr_source = 64;
INSERT INTO lease_hwaddr_source VALUES (128, 'HWADDR_SOURCE_DOCSIS_MODEM');
# Add UNSIGNED to match with the lease6.
ALTER TABLE lease_hwaddr_source
MODIFY COLUMN hwaddr_source INT UNSIGNED NOT NULL;
# Add a constraint that non-null hwaddr_source in the lease6 table
# must map to an entry in the lease_hwaddr_source.
ALTER TABLE lease6
ADD CONSTRAINT fk_lease6_hwaddr_source FOREIGN KEY (hwaddr_source)
REFERENCES lease_hwaddr_source (hwaddr_source);
# FUNCTION that returns a result set containing the column names for lease4 dumps
DROP PROCEDURE IF EXISTS lease4DumpHeader;
DELIMITER $$
CREATE PROCEDURE lease4DumpHeader()
BEGIN
SELECT 'address,hwaddr,client_id,valid_lifetime,expire,subnet_id,fqdn_fwd,fqdn_rev,hostname,state';
END $$
DELIMITER ;
# FUNCTION that returns a result set containing the data for lease4 dumps
DROP PROCEDURE IF EXISTS lease4DumpData;
DELIMITER $$
CREATE PROCEDURE lease4DumpData()
BEGIN
SELECT
INET_NTOA(l.address),
IFNULL(HEX(l.hwaddr), ''),
IFNULL(HEX(l.client_id), ''),
l.valid_lifetime,
l.expire,
l.subnet_id,
l.fqdn_fwd,
l.fqdn_rev,
l.hostname,
s.name
FROM
lease4 l
LEFT OUTER JOIN lease_state s on (l.state = s.state)
ORDER BY l.address;
END $$
DELIMITER ;
# FUNCTION that returns a result set containing the column names for lease6 dumps
DROP PROCEDURE IF EXISTS lease6DumpHeader;
DELIMITER $$
CREATE PROCEDURE lease6DumpHeader()
BEGIN
SELECT 'address,duid,valid_lifetime,expire,subnet_id,pref_lifetime,lease_type,iaid,prefix_len,fqdn_fwd,fqdn_rev,hostname,hwaddr,hwtype,hwaddr_source,state';
END $$
DELIMITER ;
# FUNCTION that returns a result set containing the data for lease6 dumps
DROP PROCEDURE IF EXISTS lease6DumpData;
DELIMITER $$
CREATE PROCEDURE lease6DumpData()
BEGIN
SELECT
l.address,
IFNULL(HEX(l.duid), ''),
l.valid_lifetime,
l.expire,
l.subnet_id,
l.pref_lifetime,
IFNULL(t.name, ''),
l.iaid,
l.prefix_len,
l.fqdn_fwd,
l.fqdn_rev,
l.hostname,
IFNULL(HEX(l.hwaddr), ''),
IFNULL(l.hwtype, ''),
IFNULL(h.name, ''),
IFNULL(s.name, '')
FROM lease6 l
left outer join lease6_types t on (l.lease_type = t.lease_type)
left outer join lease_state s on (l.state = s.state)
left outer join lease_hwaddr_source h on (l.hwaddr_source = h.hwaddr_source)
ORDER BY l.address;
END $$
DELIMITER ;
# Update the schema version number
UPDATE schema_version
SET version = '4', minor = '0';
# This line concludes database upgrade to version 4.0.
# In the event hardware address cannot be determined, we need to satisfy
# foreign key constraint between lease6 and lease_hardware_source
INSERT INTO lease_hwaddr_source VALUES (0, 'HWADDR_SOURCE_UNKNOWN');
# Update the schema version number
UPDATE schema_version
SET version = '4', minor = '1';
# This line concludes database upgrade to version 4.1.
# Update index used for searching DHCPv4 reservations by identifier and subnet id.
# This index is now unique (to prevent duplicates) and includes DHCPv4 subnet
# identifier.
DROP INDEX key_dhcp4_identifier_subnet_id ON hosts;
CREATE UNIQUE INDEX key_dhcp4_identifier_subnet_id ON hosts (dhcp_identifier ASC , dhcp_identifier_type ASC , dhcp4_subnet_id ASC);
# Update index used for searching DHCPv6 reservations by identifier and subnet id.
# This index is now unique to prevent duplicates.
DROP INDEX key_dhcp6_identifier_subnet_id ON hosts;
CREATE UNIQUE INDEX key_dhcp6_identifier_subnet_id ON hosts (dhcp_identifier ASC , dhcp_identifier_type ASC , dhcp6_subnet_id ASC);
# Create index to search for reservations using IP address and subnet id.
# This unique index guarantees that there is only one occurrence of the
# particular IPv4 address for a given subnet.
CREATE UNIQUE INDEX key_dhcp4_ipv4_address_subnet_id ON hosts (ipv4_address ASC , dhcp4_subnet_id ASC);
# Create index to search for reservations using address/prefix and prefix
# length.
CREATE UNIQUE INDEX key_dhcp6_address_prefix_len ON ipv6_reservations (address ASC , prefix_len ASC);
# Create a table mapping host identifiers to their names. Values in this
# table are used as a foreign key in hosts table to guarantee that only
# identifiers present in host_identifier_type table are used in hosts
# table.
CREATE TABLE IF NOT EXISTS host_identifier_type (
type TINYINT PRIMARY KEY NOT NULL, # Lease type code.
name VARCHAR(32) # Name of the lease type
) ENGINE = INNODB;
START TRANSACTION;
INSERT INTO host_identifier_type VALUES (0, 'hw-address');
INSERT INTO host_identifier_type VALUES (1, 'duid');
INSERT INTO host_identifier_type VALUES (2, 'circuit-id');
COMMIT;
# Add a constraint that any identifier type value added to the hosts
# must map to a value in the host_identifier_type table.
ALTER TABLE hosts
ADD CONSTRAINT fk_host_identifier_type FOREIGN KEY (dhcp_identifier_type)
REFERENCES host_identifier_type (type);
# Store DHCPv6 option code as 16-bit unsigned integer.
ALTER TABLE dhcp6_options MODIFY code SMALLINT UNSIGNED NOT NULL;
# Subnet identifier is unsigned.
ALTER TABLE dhcp4_options MODIFY dhcp4_subnet_id INT UNSIGNED NULL;
ALTER TABLE dhcp6_options MODIFY dhcp6_subnet_id INT UNSIGNED NULL;
# Scopes associate DHCP options stored in dhcp4_options and
# dhcp6_options tables with hosts, subnets, classes or indicate
# that they are global options.
CREATE TABLE IF NOT EXISTS dhcp_option_scope (
scope_id TINYINT UNSIGNED PRIMARY KEY NOT NULL,
scope_name VARCHAR(32)
) ENGINE = INNODB;
START TRANSACTION;
INSERT INTO dhcp_option_scope VALUES (0, 'global');
INSERT INTO dhcp_option_scope VALUES (1, 'subnet');
INSERT INTO dhcp_option_scope VALUES (2, 'client-class');
INSERT INTO dhcp_option_scope VALUES (3, 'host');
COMMIT;
# Add scopes into table holding DHCPv4 options
ALTER TABLE dhcp4_options ADD COLUMN scope_id TINYINT UNSIGNED NOT NULL;
ALTER TABLE dhcp4_options
ADD CONSTRAINT fk_dhcp4_option_scope FOREIGN KEY (scope_id)
REFERENCES dhcp_option_scope (scope_id);
# Add scopes into table holding DHCPv6 options
ALTER TABLE dhcp6_options ADD COLUMN scope_id TINYINT UNSIGNED NOT NULL;
ALTER TABLE dhcp6_options
ADD CONSTRAINT fk_dhcp6_option_scope FOREIGN KEY (scope_id)
REFERENCES dhcp_option_scope (scope_id);
# Add UNSIGNED to reservation_id
ALTER TABLE ipv6_reservations
MODIFY reservation_id INT UNSIGNED NOT NULL AUTO_INCREMENT;
# Add columns holding reservations for siaddr, sname and file fields
# carried within DHCPv4 message.
ALTER TABLE hosts ADD COLUMN dhcp4_next_server INT UNSIGNED NULL;
ALTER TABLE hosts ADD COLUMN dhcp4_server_hostname VARCHAR(64) NULL;
ALTER TABLE hosts ADD COLUMN dhcp4_boot_file_name VARCHAR(128) NULL;
# Update the schema version number
UPDATE schema_version
SET version = '5', minor = '0';
# This line concludes database upgrade to version 5.0.
# Add missing 'client-id' and new 'flex-id' host identifier types.
INSERT INTO host_identifier_type VALUES (3, 'client-id');
INSERT INTO host_identifier_type VALUES (4, 'flex-id');
# Recreate the trigger removing dependent host entries.
DROP TRIGGER host_BDEL;
DELIMITER $$
CREATE TRIGGER host_BDEL BEFORE DELETE ON hosts FOR EACH ROW
-- Edit trigger body code below this line. Do not edit lines above this one
BEGIN
DELETE FROM ipv6_reservations WHERE ipv6_reservations.host_id = OLD.host_id;
DELETE FROM dhcp4_options WHERE dhcp4_options.host_id = OLD.host_id;
DELETE FROM dhcp6_options WHERE dhcp6_options.host_id = OLD.host_id;
END
$$
DELIMITER ;
# Update the schema version number
UPDATE schema_version
SET version = '5', minor = '1';
# This line concludes database upgrade to version 5.1.
# Make subnet_id column types consistent with lease table columns
ALTER TABLE dhcp4_options MODIFY dhcp4_subnet_id INT UNSIGNED;
ALTER TABLE dhcp6_options MODIFY dhcp6_subnet_id INT UNSIGNED;
# Update the schema version number
UPDATE schema_version
SET version = '5', minor = '2';
# This line concludes database upgrade to version 5.2.
# Add user context into table holding hosts
ALTER TABLE hosts ADD COLUMN user_context TEXT NULL;
# Add user contexts into tables holding DHCP options
ALTER TABLE dhcp4_options ADD COLUMN user_context TEXT NULL;
ALTER TABLE dhcp6_options ADD COLUMN user_context TEXT NULL;
# Create index for searching leases by subnet identifier.
CREATE INDEX lease4_by_subnet_id ON lease4 (subnet_id);
# Create for searching leases by subnet identifier and lease type.
CREATE INDEX lease6_by_subnet_id_lease_type ON lease6 (subnet_id, lease_type);
# The index by iaid_subnet_id_duid is not the best choice because there are
# cases when we don't specify subnet identifier while searching leases. The
# index will be universal if the subnet_id is the right most column in the
# index.
DROP INDEX lease6_by_iaid_subnet_id_duid on lease6;
CREATE INDEX lease6_by_duid_iaid_subnet_id ON lease6 (duid, iaid, subnet_id);
# Update the schema version number
UPDATE schema_version
SET version = '6', minor = '0';
# This line concludes database upgrade to version 6.0.
# Notes:
#
# Indexes
# =======
# It is likely that additional indexes will be needed. However, the
# increase in lookup performance from these will come at the expense
# of a decrease in performance during insert operations due to the need
# to update the indexes. For this reason, the need for additional indexes
# will be determined by experiment during performance tests.
#
# The most likely additional indexes will cover the following columns:
#
# hwaddr and client_id
# For lease stability: if a client requests a new lease, try to find an
# existing or recently expired lease for it so that it can keep using the
# same IP address.
#
# Field Sizes
# ===========
# If any of the VARxxx field sizes are altered, the lengths in the MySQL
# backend source file (mysql_lease_mgr.cc) must be correspondingly changed.
#
# Portability
# ===========
# The 'ENGINE = INNODB' on some tables is not portable to another database
# and will need to be removed.
#
# Some columns contain binary data so are stored as VARBINARY instead of
# VARCHAR. This may be non-portable between databases: in this case, the
# definition should be changed to VARCHAR.
|
--
-- PostgreSQL database dump
--
SET statement_timeout = 0;
SET lock_timeout = 0;
SET client_encoding = 'UTF8';
SET standard_conforming_strings = on;
SET check_function_bodies = false;
SET client_min_messages = warning;
SET search_path = public, pg_catalog;
--
-- Name: spatialreferences; Type: VIEW; Schema: public; Owner: schwingbach-user
--
CREATE VIEW spatialreferences AS
SELECT 3 AS spatialreferenceid,
4326 AS srsid,
'WGS84'::character varying AS srsname;
ALTER TABLE public.spatialreferences OWNER TO "schwingbach-user";
--
-- PostgreSQL database dump complete
--
|
-- attach3.test
--
-- execsql {
-- CREATE TABLE main.t4(a, b, c);
-- CREATE TABLE aux.t4(a, b, c);
-- CREATE TEMP TRIGGER tst_trigger BEFORE INSERT ON aux.t4 BEGIN
-- SELECT 'hello world';
-- END;
-- SELECT count(*) FROM sqlite_temp_master;
-- }
CREATE TABLE main.t4(a, b, c);
CREATE TABLE aux.t4(a, b, c);
CREATE TEMP TRIGGER tst_trigger BEFORE INSERT ON aux.t4 BEGIN
SELECT 'hello world';
END;
SELECT count(*) FROM sqlite_temp_master; |
<filename>server/conf/db/migration/default/V101__recreate_ship_image.sql
drop table ship_image;
create table ship_image(
id int not null,
image mediumblob not null,
filename char(13) not null,
member_id bigint not null,
swf_id smallint not null,
version smallint not null,
primary key (id, swf_id, version),
unique key (filename, swf_id, version)
) engine = ARIA, default charset=utf8mb4;
|
-- Copyright (c) Microsoft Corporation.
-- Licensed under the MIT License.
CREATE PROC [Persisted].[ObtainSector] AS
-- ==============================================================================================================
-- Author: Adatis
-- Description: Performs a full data load. Incremental loads are not supported in this script
-- A Scratch Table is a temporary table used to store the data and remove duplicates. It is used instead of CTEs because it is more performante and reliable
-- We use CTAS as a work around for unsupported features, namely; Merge Statements & Joins on UPDATES/DELETES.
-- Although Insert/Update is a more performant approach, for simplicity, an alternative to MERGE is applied
-- ==============================================================================================================
BEGIN
BEGIN TRY
IF OBJECT_ID ('Scratch.Sector','U') IS NOT NULL
DROP TABLE [Scratch].[Sector];
-- RE-CREATE CTAS AND POPULATE WITH NEW VALUES
CREATE TABLE [Scratch].[Sector]
WITH
(
CLUSTERED COLUMNSTORE INDEX,
DISTRIBUTION = ROUND_ROBIN
)
AS
SELECT
[SectorChangeHash]
,[IatiIdentifier]
,[Name]
,[SectorCode]
,[CategoryName]
,[SectorPercentage]
FROM
-- CREATE A CHANGE HASH COLUMN TO COMPARE WITH EXISTING RECORDS IN THE PERSISTED TABLE
(
SELECT
HASHBYTES('SHA2_256', CONCAT_WS('|',
ISNULL(UPPER([iati-identifier]),'UKNNOWN'),
ISNULL(UPPER([name]),'UKNNOWN'),
ISNULL(UPPER([sector_code]),'UKNNOWN'),
ISNULL(UPPER([category-name]),'UKNNOWN'),
ISNULL(UPPER([sector_percentage]),0)
)) AS [SectorChangeHash]
,[iati-identifier] AS [IatiIdentifier]
,[name] AS [Name]
,[sector_code] AS [SectorCode]
,[category-name] AS [CategoryName]
,CAST([sector_percentage] AS DECIMAL(18,4)) AS [SectorPercentage]
FROM
(
-- APPLY ROW NUMBER TO REMOVE DUPLICATES AND ONLY SELECT THE MOST RECENT RECORDS
SELECT DISTINCT
[iati-identifier]
,[name]
,[sector_code]
,[category-name]
,[sector_percentage]
,ROW_NUMBER() OVER(PARTITION BY [iati-identifier], [sector_code] ORDER BY [iati-identifier] DESC) AS RowOrdinal
FROM [External].[IATISector]
) A
WHERE RowOrdinal = 1
) B
OPTION(LABEL = 'Scratch.Sector.Obtain');
-- GET THE MAX IDENTITY KEY FROM THE PERSISTED TABLE
DECLARE @maxKey INT = (SELECT ISNULL(MAX(SectorKey),0) FROM [Persisted].[Sector])
-- CREATE A TEMP TABLE USING CTAS TO HANDLE MERGE OPERATIONS
CREATE TABLE [Persisted].[Sector_Upsert]
WITH
(
CLUSTERED COLUMNSTORE INDEX,
DISTRIBUTION = ROUND_ROBIN
)
AS
-- NEW ROWS AND NEW VERSIONS OF ROWS
SELECT
ROW_NUMBER() OVER(ORDER BY [SectorChangeHash] DESC) + @maxKey AS SectorKey
,S.[SectorChangeHash]
,S.[IatiIdentifier]
,S.[Name]
,S.[SectorCode]
,S.[CategoryName]
,S.[SectorPercentage]
,GETDATE() AS [InsertedDate]
FROM [Scratch].[Sector] AS S
UNION ALL
-- KEEP ROWS THAT ARE NOT BEING TOUCHED
SELECT
P.SectorKey
,P.[SectorChangeHash]
,P.[IatiIdentifier]
,P.[Name]
,P.[SectorCode]
,P.[CategoryName]
,P.[SectorPercentage]
,GETDATE() AS [InsertedDate]
FROM [Persisted].[Sector] AS P
WHERE NOT EXISTS
(
SELECT *
FROM [Scratch].[Sector] S
WHERE S.[SectorChangeHash] = P.[SectorChangeHash]
)
OPTION(LABEL = 'Persisted.Sector.Obtain');
-- KEEP LATEST CTAS AND DELETE PREVIOUS ONE
RENAME OBJECT [Persisted].[Sector] TO [Sector_old];
RENAME OBJECT [Persisted].[Sector_Upsert] TO [Sector];
DROP TABLE [Persisted].[Sector_old];
END TRY
BEGIN CATCH
--CTAS FAILED, MARK PROCESS AS FAILED AND THROW ERROR
DECLARE @ErrorMsg VARCHAR(250)
SET @ErrorMsg = 'Error loading table Persisted.Sector: ' + ERROR_MESSAGE()
RAISERROR (@ErrorMsg, 16, 1)
END CATCH
END
|
<gh_stars>10-100
CREATE TABLE `Banphrase` (
`id` INT(11) UNSIGNED NOT NULL AUTO_INCREMENT,
`group_id` INT(11) UNSIGNED NULL DEFAULT NULL,
`enabled` TINYINT(1) NULL DEFAULT 1 COMMENT 'NULL = Inherit from group',
`description` TEXT NULL COMMENT 'Optional description of the banphrase, i.e. racism or banned emote',
`phrase` TEXT NOT NULL COMMENT 'The banned phrase itself. This can be a regular expression, it all depends on the "operator" of the banphrase',
`length` INT(11) UNSIGNED NULL DEFAULT 60 COMMENT 'NULL = Inherit from group, 0 = permaban, >0 = timeout for X seconds',
`warning_id` INT(11) UNSIGNED NULL COMMENT 'NULL = Inherit from group, anything else is an ID to a warning "scale"',
`case_sensitive` TINYINT(1) NULL COMMENT 'NULL = Inherit from group',
`type` INT(11) NULL DEFAULT 0 COMMENT 'NULL = Inherit from group, 0 = contains, more IDs can be found in the go code lol xd',
`sub_immunity` TINYINT(1) NULL DEFAULT 0 COMMENT 'NULL = Inherit from group',
`remove_accents` TINYINT(1) NULL DEFAULT 0 COMMENT 'NULL = Inherit from group',
PRIMARY KEY (`id`),
FOREIGN KEY (warning_id)
REFERENCES WarningScale(id)
ON DELETE SET NULL,
FOREIGN KEY (group_id)
REFERENCES BanphraseGroup(id)
ON DELETE SET NULL
)
COMMENT='Store banned phrases'
COLLATE='utf8mb4_general_ci'
ENGINE=InnoDB
;
|
<reponame>LinLeng/sqlworkshops
use WideWorldImporters
go
exec initialize
go |
alter table product_raw add column hc tinyint(1) default 1;
|
<gh_stars>0
create table tasks (
id bigint not null,
name varchar(255),
description varchar(255),
assignee varchar(255),
primary key (id)
) engine=InnoDB;
insert into tasks (id, name, description, assignee) value (1, 'Task 1', 'I have something TODO', 'Crocker');
insert into tasks (id, name, description, assignee) value (2, 'Task 2', 'Oh great, something else', 'Crocker');
insert into tasks (id, name, description, assignee) value (3, 'Task 3', 'At least this is not for me', 'Not Crocker'); |
<gh_stars>1-10
INSERT INTO `user` VALUES ('1', 'tom', '123');
INSERT INTO `user` VALUES ('2', 'lucy', '321');
|
CREATE TABLE IF NOT EXISTS users_groups
( user_id BIGINT REFERENCES users NOT NULL
, group_id INTEGER REFERENCES groups NOT NULL
);
|
CREATE TABLE IF NOT EXISTS account_era_sequences
(
id BIGSERIAL NOT NULL,
era DECIMAL(65, 0) NOT NULL,
start_height DECIMAL(65, 0) NOT NULL,
end_height DECIMAL(65, 0) NOT NULL,
time TIMESTAMP WITH TIME ZONE NOT NULL,
stash_account TEXT NOT NULL,
controller_account TEXT NOT NULL,
validator_stash_account TEXT NOT NULL,
validator_controller_account TEXT NOT NULL,
stake DECIMAL(65, 0) NOT NULL,
PRIMARY KEY (id)
);
-- Indexes
CREATE index idx_account_era_sequences_era on account_era_sequences (era);
CREATE index idx_account_era_sequences_heights on account_era_sequences (start_height, end_height);
CREATE index idx_account_era_sequences_time on account_era_sequences (time);
CREATE index idx_account_era_sequences_stash_account on account_era_sequences (stash_account);
CREATE index idx_account_era_sequences_validator_stash_account on account_era_sequences (validator_stash_account);
|
<filename>packages/hasura/migrations/default/1628843679047_alter_table_public_mesures_drop_constraint_mesures_editor_id_mandataire_id_numero_dossier_key/up.sql
alter table "public"."mesures" drop constraint "mesures_editor_id_mandataire_id_numero_dossier_key";
|
/*
Navicat MySQL Data Transfer
Source Server : aaa
Source Server Version : 50715
Source Host : localhost:3306
Source Database : secondhandbookstore
Target Server Type : MYSQL
Target Server Version : 50715
File Encoding : 65001
Date: 2022-02-05 21:44:44
*/
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for admininfo
-- ----------------------------
DROP TABLE IF EXISTS `admininfo`;
CREATE TABLE `admininfo` (
`adminId` int(10) NOT NULL AUTO_INCREMENT,
`adminName` varchar(50) NOT NULL,
`adminPhone` varchar(11) NOT NULL,
`adminCreateTime` datetime NOT NULL,
`adminSex` varchar(2) DEFAULT NULL,
`adminAge` int(10) NOT NULL,
`adminAvatar` varchar(200) DEFAULT NULL,
`adminTypeId` int(2) NOT NULL DEFAULT '1',
PRIMARY KEY (`adminId`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of admininfo
-- ----------------------------
INSERT INTO `admininfo` VALUES ('1', '彼得潘', '1000123546', '2021-11-25 13:50:33', '男', '22', '', '5');
INSERT INTO `admininfo` VALUES ('2', '爱德华', '23123123', '2021-12-14 20:56:23', '女', '23', null, '2');
-- ----------------------------
-- Table structure for adminlogin
-- ----------------------------
DROP TABLE IF EXISTS `adminlogin`;
CREATE TABLE `adminlogin` (
`adminId` int(10) NOT NULL,
`adminNum` varchar(30) NOT NULL,
`adminPassword` varchar(50) NOT NULL,
`modifyTime` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of adminlogin
-- ----------------------------
INSERT INTO `adminlogin` VALUES ('1', 'admin', '21232F297A57A5A743894A0E4A801FC3', '2021-11-25 22:28:51');
INSERT INTO `adminlogin` VALUES ('2', 'aidehua', '21232F297A57A5A743894A0E4A801FC3', '2021-12-02 19:33:58');
-- ----------------------------
-- Table structure for admintype
-- ----------------------------
DROP TABLE IF EXISTS `admintype`;
CREATE TABLE `admintype` (
`adminTypeId` int(2) NOT NULL AUTO_INCREMENT,
`typeName` varchar(50) NOT NULL,
`note` varchar(200) DEFAULT NULL,
PRIMARY KEY (`adminTypeId`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of admintype
-- ----------------------------
INSERT INTO `admintype` VALUES ('1', '一级管理员', '图书管理');
INSERT INTO `admintype` VALUES ('2', '二级管理员', '图书、类型管理');
INSERT INTO `admintype` VALUES ('3', '三级管理员·', '图书、类型、用户管理');
INSERT INTO `admintype` VALUES ('4', '四级管理员', '图书、类型、用户、管理员管理');
INSERT INTO `admintype` VALUES ('5', '五级管理员', '图书、类型、用户、管理员、权限管理');
-- ----------------------------
-- Table structure for bookimage
-- ----------------------------
DROP TABLE IF EXISTS `bookimage`;
CREATE TABLE `bookimage` (
`bookId` int(10) NOT NULL,
`url` varchar(200) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of bookimage
-- ----------------------------
INSERT INTO `bookimage` VALUES ('12', 'book4.jpg');
INSERT INTO `bookimage` VALUES ('123', 'book1.jpg');
INSERT INTO `bookimage` VALUES ('127', 'book1.jpg');
INSERT INTO `bookimage` VALUES ('131', 'book1.jpg');
INSERT INTO `bookimage` VALUES ('132', 'book5.jpg');
INSERT INTO `bookimage` VALUES ('213', 'book1.jpg');
INSERT INTO `bookimage` VALUES ('321', 'book1.jpg');
INSERT INTO `bookimage` VALUES ('326', 'book1.jpg');
INSERT INTO `bookimage` VALUES ('534', 'book1.jpg');
INSERT INTO `bookimage` VALUES ('867', 'book2.jpg');
INSERT INTO `bookimage` VALUES ('2342', 'book1.jpg');
INSERT INTO `bookimage` VALUES ('423432', 'book3.jpg');
INSERT INTO `bookimage` VALUES ('41412', 'law.jpg');
INSERT INTO `bookimage` VALUES ('2', 'b.jpg');
INSERT INTO `bookimage` VALUES ('4353453', 'law.jpg');
-- ----------------------------
-- Table structure for bookinfo
-- ----------------------------
DROP TABLE IF EXISTS `bookinfo`;
CREATE TABLE `bookinfo` (
`bookId` int(10) NOT NULL AUTO_INCREMENT,
`bookName` varchar(50) NOT NULL,
`bookLevel` int(2) NOT NULL,
`bookPrice` decimal(10,2) NOT NULL,
`bookSortId` int(20) NOT NULL,
`bookCount` int(10) NOT NULL,
`bookAuthor` varchar(50) NOT NULL,
`bookPublisher` varchar(50) NOT NULL,
`display` varchar(5) NOT NULL,
`bookSales` int(10) NOT NULL,
`userId` int(10) NOT NULL,
PRIMARY KEY (`bookId`)
) ENGINE=InnoDB AUTO_INCREMENT=4353454 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of bookinfo
-- ----------------------------
INSERT INTO `bookinfo` VALUES ('1', '1', '1', '1.00', '4', '1', '1', '1', '是', '1', '1');
INSERT INTO `bookinfo` VALUES ('2', '经济学', '5', '30.00', '7', '90', 'Alice', '人民邮电出版社', '否', '0', '1');
INSERT INTO `bookinfo` VALUES ('3', '法学通论', '10', '30.00', '8', '10', '吴汉东', '高等教育出版社', '否', '0', '1');
INSERT INTO `bookinfo` VALUES ('12', '经济学原理', '9', '23.00', '7', '30', '格里高利·曼昆著', '人民出版社', '否', '21', '18');
INSERT INTO `bookinfo` VALUES ('123', '数据库开发', '9', '20.00', '1', '10', '彼得潘学', 'xx出版社', '否', '3', '1');
INSERT INTO `bookinfo` VALUES ('127', 'Java从入门到精通', '9', '30.00', '1', '50', 'Pywcc', 'xxxxx出版社', '是', '10', '2');
INSERT INTO `bookinfo` VALUES ('131', '追风筝的人', '9', '43.00', '4', '5', '卡勒德·胡赛尼', '上海人民出版社', '否', '1', '1');
INSERT INTO `bookinfo` VALUES ('132', '高等数学', '10', '24.50', '3', '21', '同济大学', '高等教育出版社', '否', '13', '1');
INSERT INTO `bookinfo` VALUES ('213', '工程线性代数', '9', '12.00', '3', '12', '同济大学', '高等教育出版社', '否', '11', '1');
INSERT INTO `bookinfo` VALUES ('321', '深入分析Java Web技术内幕', '5', '20.00', '1', '40', '许令波', '电子工业出版社', '否', '12', '23');
INSERT INTO `bookinfo` VALUES ('326', '算法与数据结构——C语言描述', '7', '10.50', '1', '2', '张乃孝', '高等教育出版社', '否', '0', '20');
INSERT INTO `bookinfo` VALUES ('534', 'Spring Boot实战', '10', '34.00', '1', '1', '<NAME>', '人民邮电出版社', '否', '1', '5');
INSERT INTO `bookinfo` VALUES ('867', '心理学与生活', '10', '56.00', '18', '67', '理查德·格里格', '人民邮电出版社', '否', '61', '21');
INSERT INTO `bookinfo` VALUES ('2342', '钢铁是怎样炼成的', '6', '40.00', '2', '100', '奥斯特洛夫斯基', 'xxxxxxxx', '否', '24', '1');
INSERT INTO `bookinfo` VALUES ('12321', '啊发撒法第四', '10', '50.00', '8', '100', '撒打算', 'xx', '否', '50', '7');
INSERT INTO `bookinfo` VALUES ('41412', '钢铁是怎样练成的', '10', '10.00', '2', '10', 'xxxxxxxxx', 'xxx', '是', '0', '2');
INSERT INTO `bookinfo` VALUES ('423432', 'Linux内核设计与实现', '7', '50.00', '1', '200', '奥古斯覅', 'xx', '否', '47', '17');
INSERT INTO `bookinfo` VALUES ('4353453', '12221', '3', '3.00', '9', '32', 'xxxxxxxxx', '高等教育出版社', '否', '1', '2');
-- ----------------------------
-- Table structure for booksort
-- ----------------------------
DROP TABLE IF EXISTS `booksort`;
CREATE TABLE `booksort` (
`bookSortId` int(20) NOT NULL AUTO_INCREMENT,
`bookSort` varchar(50) NOT NULL,
`note` varchar(200) DEFAULT NULL,
PRIMARY KEY (`bookSortId`)
) ENGINE=InnoDB AUTO_INCREMENT=19 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of booksort
-- ----------------------------
INSERT INTO `booksort` VALUES ('1', '计算机科学', '关于计算机编程书记');
INSERT INTO `booksort` VALUES ('2', '文学', '关于文学');
INSERT INTO `booksort` VALUES ('3', '数学', '高中数学、高考数学、大学数学、考研大学');
INSERT INTO `booksort` VALUES ('4', '小说', '经典小说、古代小说、现代小说');
INSERT INTO `booksort` VALUES ('5', '外文', '外国文献');
INSERT INTO `booksort` VALUES ('6', '时尚杂志', '');
INSERT INTO `booksort` VALUES ('7', '经济学', '');
INSERT INTO `booksort` VALUES ('8', '法学', '');
INSERT INTO `booksort` VALUES ('9', '统计学', '');
INSERT INTO `booksort` VALUES ('10', '社会科学', '');
INSERT INTO `booksort` VALUES ('11', '自然科学', '');
INSERT INTO `booksort` VALUES ('18', '心理学', null);
-- ----------------------------
-- Table structure for orderlist
-- ----------------------------
DROP TABLE IF EXISTS `orderlist`;
CREATE TABLE `orderlist` (
`orderId` int(10) NOT NULL AUTO_INCREMENT,
`userId` int(10) NOT NULL,
`bookId` int(10) NOT NULL,
`orderTime` datetime NOT NULL,
PRIMARY KEY (`orderId`)
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of orderlist
-- ----------------------------
INSERT INTO `orderlist` VALUES ('1', '2', '867', '2021-12-07 22:12:23');
INSERT INTO `orderlist` VALUES ('2', '2', '867', '2021-12-07 22:12:23');
INSERT INTO `orderlist` VALUES ('3', '1', '12', '2021-12-07 22:12:23');
INSERT INTO `orderlist` VALUES ('4', '1', '12', '2021-12-07 23:32:10');
INSERT INTO `orderlist` VALUES ('5', '1', '132', '2021-12-07 23:32:10');
INSERT INTO `orderlist` VALUES ('6', '1', '132', '2021-12-08 23:04:45');
INSERT INTO `orderlist` VALUES ('7', '1', '2342', '2021-12-08 23:04:45');
INSERT INTO `orderlist` VALUES ('8', '2', '2342', '2021-12-10 10:43:55');
INSERT INTO `orderlist` VALUES ('9', '2', '423432', '2021-12-10 10:43:55');
INSERT INTO `orderlist` VALUES ('10', '2', '132', '2021-12-10 10:43:55');
-- ----------------------------
-- Table structure for shoppingcart
-- ----------------------------
DROP TABLE IF EXISTS `shoppingcart`;
CREATE TABLE `shoppingcart` (
`cartId` int(10) NOT NULL AUTO_INCREMENT,
`userId` int(10) NOT NULL,
`bookId` int(10) NOT NULL,
PRIMARY KEY (`cartId`)
) ENGINE=InnoDB AUTO_INCREMENT=22 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of shoppingcart
-- ----------------------------
INSERT INTO `shoppingcart` VALUES ('4', '2', '867');
INSERT INTO `shoppingcart` VALUES ('5', '2', '867');
INSERT INTO `shoppingcart` VALUES ('7', '1', '12');
INSERT INTO `shoppingcart` VALUES ('15', '2', '132');
INSERT INTO `shoppingcart` VALUES ('18', '1', '423432');
INSERT INTO `shoppingcart` VALUES ('19', '1', '2');
INSERT INTO `shoppingcart` VALUES ('21', '2', '12');
-- ----------------------------
-- Table structure for userinfo
-- ----------------------------
DROP TABLE IF EXISTS `userinfo`;
CREATE TABLE `userinfo` (
`userId` int(10) NOT NULL AUTO_INCREMENT,
`userName` varchar(50) NOT NULL,
`userPhone` varchar(11) NOT NULL,
`userCreateTime` datetime NOT NULL,
`userSex` varchar(2) NOT NULL,
`userAge` int(3) NOT NULL,
`userAvatar` varchar(200) DEFAULT NULL,
PRIMARY KEY (`userId`)
) ENGINE=InnoDB AUTO_INCREMENT=22 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of userinfo
-- ----------------------------
INSERT INTO `userinfo` VALUES ('1', '范德萨', '1231234098', '2021-11-26 00:00:00', '男', '12', '');
INSERT INTO `userinfo` VALUES ('2', '大富贵', '1213789456', '2021-11-26 00:00:00', '女', '11', null);
INSERT INTO `userinfo` VALUES ('3', '胡高峰', '123127890', '2021-11-10 20:28:26', '女', '21', null);
INSERT INTO `userinfo` VALUES ('4', '史蒂夫', '1212312', '2021-11-09 20:39:36', '女', '12', null);
INSERT INTO `userinfo` VALUES ('5', '弗杜戈', '121234124', '2021-11-10 20:39:46', '女', '23', null);
INSERT INTO `userinfo` VALUES ('7', '傅顾皓', '12312452332', '2021-11-09 20:39:56', '女', '23', null);
INSERT INTO `userinfo` VALUES ('10', '阿瑟东', '152343465', '2021-11-02 21:07:37', '女', '32', null);
INSERT INTO `userinfo` VALUES ('11', '华国锋', '12332587923', '2021-11-03 21:07:49', '女', '23', '');
INSERT INTO `userinfo` VALUES ('12', '华夫格', '1230980324', '2021-11-17 21:08:24', '女', '23', '');
INSERT INTO `userinfo` VALUES ('13', '黑杰克', '12964556', '2021-11-09 21:08:38', '女', '76', null);
INSERT INTO `userinfo` VALUES ('14', '郭师傅', '1234324', '2021-12-02 11:48:03', '男', '12', null);
INSERT INTO `userinfo` VALUES ('15', '景福宫', '1231454323', '2021-12-02 11:48:35', '男', '12', null);
INSERT INTO `userinfo` VALUES ('16', '沈殿霞', '12378564', '2021-12-02 11:52:48', '男', '12', null);
INSERT INTO `userinfo` VALUES ('17', '黄光剑', '34534534', '2021-12-02 11:53:15', '女', '45', null);
INSERT INTO `userinfo` VALUES ('18', '额外人', '3412', '2021-12-02 11:56:36', '男', '12', null);
INSERT INTO `userinfo` VALUES ('19', '高浮雕', '32423', '2021-12-02 11:59:17', '男', '43', null);
INSERT INTO `userinfo` VALUES ('20', '郭昊仑', '1235464', '2021-12-02 11:59:50', '男', '12', null);
INSERT INTO `userinfo` VALUES ('21', '斯蒂芬', '21312', '2021-12-02 12:00:27', '男', '42', null);
-- ----------------------------
-- Table structure for userlogin
-- ----------------------------
DROP TABLE IF EXISTS `userlogin`;
CREATE TABLE `userlogin` (
`userId` int(10) NOT NULL AUTO_INCREMENT,
`userNum` varchar(30) NOT NULL,
`userPassword` varchar(50) NOT NULL,
`modifyTime` datetime DEFAULT NULL,
PRIMARY KEY (`userId`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of userlogin
-- ----------------------------
INSERT INTO `userlogin` VALUES ('1', 'zhangsan', 'E10ADC3949BA59ABBE56E057F20F883E', '2021-11-26 17:31:48');
INSERT INTO `userlogin` VALUES ('2', 'lisi', 'E10ADC3949BA59ABBE56E057F20F883E', '2021-11-26 17:33:08');
INSERT INTO `userlogin` VALUES ('4', 'wangwu', 'E10ADC3949BA59ABBE56E057F20F883E', '2021-12-08 22:40:08');
INSERT INTO `userlogin` VALUES ('5', 'zhaoliu', '27311020EFC4CE2806FECA0AAB933FBD', '2021-12-10 10:32:21');
|
<gh_stars>10-100
/*
Run this script on:
Profiles RNS Version 2.6.0
to update its data to:
Profiles RNS Version 2.7.0
*** You are recommended to back up your database before running this script!
*** You should review each step of this script to ensure that it will not overwrite any customizations you have made to ProfilesRNS.
*** Make sure you run the ProfilesRNS_Upgrade_Schema.sql file before running this file.
*/
update [Ontology.Presentation].[XML] set PresentationXML =
'<Presentation PresentationClass="profile">
<PageOptions Columns="3" />
<WindowName>{{{rdf:RDF[1]/rdf:Description[1]/rdfs:label[1]}}}</WindowName>
<PageColumns>3</PageColumns>
<PageTitle>{{{rdf:RDF[1]/rdf:Description[1]/rdfs:label[1]}}}</PageTitle>
<PageBackLinkName />
<PageBackLinkURL />
<PageSubTitle />
<PageDescription />
<PanelTabType>Fixed</PanelTabType>
<PanelList>
<Panel Type="active">
<Module ID="MiniSearch" />
<Module ID="MainMenu" />
</Panel>
<Panel Type="main" TabSort="0" TabType="Default">
<Module ID="CustomViewConceptMeshInfo">
<ParamList />
</Module>
</Panel>
<Panel Type="main" TabSort="0" TabType="Default">
<Module ID="CustomViewConceptPublication">
<ParamList>
<Param Name="TimelineCaption">This graph shows the total number of publications written about "@ConceptName" by people in this website by year, and whether "@ConceptName" was a major or minor topic of these publications. <!--In all years combined, a total of [[[TODO:PUBLICATION COUNT]]] publications were written by people in Profiles.--></Param>
<Param Name="CitedCaption">Below are the publications written about "@ConceptName" that have been cited the most by articles in Pubmed Central.</Param>
<Param Name="NewestCaption">Below are the most recent publications written about "@ConceptName" by people in Profiles.</Param>
<Param Name="OldestCaption">Below are the earliest publications written about "@ConceptName" by people in Profiles.</Param>
</ParamList>
</Module>
</Panel>
<Panel Type="passive">
<Module ID="PassiveList">
<ParamList>
<Param Name="DataURI">rdf:RDF/rdf:Description/@rdf:about</Param>
<Param Name="InfoCaption">People</Param>
<Param Name="Description">People who have written about this concept.</Param>
<Param Name="MaxDisplay">5</Param>
<Param Name="ListNode">rdf:RDF/rdf:Description[@rdf:about= /rdf:RDF[1]/rdf:Description[1]/vivo:researchAreaOf/@rdf:resource]</Param>
<Param Name="ItemURLText">{{{rdf:Description/rdfs:label}}}</Param>
<Param Name="ItemText" />
<Param Name="ItemURL">{{{rdf:Description/@rdf:about}}}</Param>
<Param Name="MoreURL">/search/default.aspx?searchtype=people&searchfor={{{rdf:RDF/rdf:Description/rdfs:label}}}&classuri=http://xmlns.com/foaf/0.1/Person&erpage=15&offset=0&exactPhrase=true</Param>
<Param Name="MoreText">See all people</Param>
</ParamList>
</Module>
<Module ID="CustomViewConceptSimilarMesh">
<ParamList>
<Param Name="InfoCaption">Similar Concepts</Param>
<Param Name="Description">People who have written about this concept.</Param>
</ParamList>
</Module>
<Module ID="CustomViewConceptTopJournal">
<ParamList>
<Param Name="InfoCaption">Top Journals</Param>
<Param Name="Description">Top journals in which articles about this concept have been published.</Param>
</ParamList>
</Module>
</Panel>
</PanelList>
</Presentation>'
where Type= 'P' and Subject= 'http://www.w3.org/2004/02/skos/core#Concept' and Predicate is null and Object is null
--*****************************************************************************************
--*****************************************************************************************
--*****************************************************************************************
--*****
--***** Finalize changes
--*****
--*****************************************************************************************
--*****************************************************************************************
--*****************************************************************************************
-- The next two rows update fields such as nodeID values, and table identifiers. This should not affect any existing customizations
EXEC [Ontology.].[UpdateDerivedFields]
EXEC [Ontology.].[UpdateCounts]
EXEC [Ontology.].CleanUp @action='UpdateIDs'
-- Update the RDF tables and cache
EXEC [Framework.].[RunJobGroup] @JobGroup = 3
GO |
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE PROCEDURE [dbo].[archiveAuditLog]
AS
DECLARE @exectime DATE;
SET @exectime = GETDATE();
PRINT 'Backing up data'
-- Insert all the records that are past last 3 months into the Audit backup tables
INSERT INTO dbo.[AuditLogsBackup]
SELECT *
FROM dbo.[AuditLogs] AL
WHERE NOT EXISTS (
SELECT 1
FROM dbo.[AuditLogsBackup] ALB
WHERE ALB.id = AL.id
AND AL.createdAt < DATEADD(MONTH, - 3, @exectime)
)
AND AL.createdAt < DATEADD(MONTH, - 3, @exectime)
INSERT INTO dbo.[AuditLogMetaBackup] (
id
,auditId
,[key]
,[value]
)
SELECT [alm].[id]
,[alm].[auditId]
,[alm].[key]
,[alm].[value]
FROM AuditLogMeta [alm]
INNER JOIN dbo.AuditLogsBackup [al] ON [alm].[auditId] = [al].[id]
WHERE NOT EXISTS (
SELECT 1
FROM dbo.AuditLogMetaBackUp ALB
WHERE ALB.id = alm.id
)
-- End of Insertion
-- Delete all the records past last 3 months from the main Audit Log tables
PRINT 'Deleting data'
DELETE ALM
FROM dbo.AuditLogMeta ALM
INNER JOIN dbo.AuditLogs AL ON ALM.auditId = AL.id
WHERE AL.createdAt < DATEADD(MONTH, - 3, @exectime);
DELETE AL
FROM dbo.AuditLogs AL
WHERE AL.createdAt < DATEADD(MONTH, - 3, @exectime);
-- End of deletion
GO
|
<filename>eSchedule.sql
CREATE DATABASE eSchedule;
USE eSchedule;
CREATE TABLE Announcements(
Id INT NOT NULL AUTO_INCREMENT,
DateAndTime DATETIME NOT NULL,
Announcement TEXT NOT NULL,
Professor VARCHAR(30) NOT NULL,
PRIMARY KEY(Id)
);
CREATE TABLE Users(
Id INT NOT NULL AUTO_INCREMENT,
Username VARCHAR(30) NOT NULL,
Userpass VARCHAR(30) NOT NULL,
Usertype VARCHAR(30) NOT NULL,
PRIMARY KEY(Id)
);
INSERT INTO Users(Username,Userpass,Usertype) VALUES('adminX','passwordY','admin'); |
-- phpMyAdmin SQL Dump
-- version 5.0.1
-- https://www.phpmyadmin.net/
--
-- Host: 127.0.0.1
-- Generation Time: Feb 12, 2020 at 12:05 AM
-- Server version: 10.4.11-MariaDB
-- PHP Version: 7.2.27
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: `funtav`
--
-- --------------------------------------------------------
--
-- Table structure for table `customer`
--
CREATE TABLE `customer` (
`Id` int(11) NOT NULL,
`email` varchar(100) NOT NULL,
`password` varchar(100) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `customer`
--
INSERT INTO `customer` (`Id`, `email`, `password`) VALUES
(1, '<EMAIL>', <PASSWORD>'),
(5, '<EMAIL>', <PASSWORD>'),
(6, '<EMAIL>', <PASSWORD>ewC'),
(7, '<EMAIL>', <PASSWORD>');
-- --------------------------------------------------------
--
-- Table structure for table `users`
--
CREATE TABLE `users` (
`id` bigint(20) UNSIGNED NOT NULL,
`name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`email` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`email_verified_at` timestamp NULL DEFAULT NULL,
`password` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Indexes for dumped tables
--
--
-- Indexes for table `customer`
--
ALTER TABLE `customer`
ADD PRIMARY KEY (`Id`);
--
-- Indexes for table `users`
--
ALTER TABLE `users`
ADD PRIMARY KEY (`id`),
ADD UNIQUE KEY `users_email_unique` (`email`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `customer`
--
ALTER TABLE `customer`
MODIFY `Id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8;
--
-- AUTO_INCREMENT for table `users`
--
ALTER TABLE `users`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;
COMMIT;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
<filename>DB/tmsdup_previous.sql
-- phpMyAdmin SQL Dump
-- version 5.0.4
-- https://www.phpmyadmin.net/
--
-- Host: 127.0.0.1
-- Generation Time: Apr 11, 2021 at 05:37 AM
-- Server version: 10.4.17-MariaDB
-- PHP Version: 7.4.13
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: `tmsdup_previous`
--
-- --------------------------------------------------------
--
-- Table structure for table `adviser_fields_tbl`
--
CREATE TABLE `adviser_fields_tbl` (
`adviser_field_id` int(11) NOT NULL,
`adviser_id` int(11) NOT NULL,
`field` char(100) NOT NULL,
`adviser_field_status` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `adviser_fields_tbl`
--
INSERT INTO `adviser_fields_tbl` (`adviser_field_id`, `adviser_id`, `field`, `adviser_field_status`) VALUES
(1, 8, 'Arduino', 0),
(2, 8, 'Web Development', 0),
(3, 8, 'Data Science', 0),
(4, 8, 'RPI', 0);
-- --------------------------------------------------------
--
-- Table structure for table `group_members_tbl`
--
CREATE TABLE `group_members_tbl` (
`group_members_id` int(11) NOT NULL,
`group` int(11) NOT NULL,
`member_id` int(11) NOT NULL,
`group_member_status` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
-- --------------------------------------------------------
--
-- Table structure for table `group_tbl`
--
CREATE TABLE `group_tbl` (
`group_id` int(11) NOT NULL,
`group_name` char(100) DEFAULT NULL,
`adviser` int(11) NOT NULL,
`description` char(100) NOT NULL,
`group_status` int(255) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `group_tbl`
--
INSERT INTO `group_tbl` (`group_id`, `group_name`, `adviser`, `description`, `group_status`) VALUES
(54, 'Group 1', 3, '', 0),
(55, 'Group 2', 13, '', 0),
(56, 'Group 3', 4, '', 0);
-- --------------------------------------------------------
--
-- Table structure for table `minutes_panels_tbl`
--
CREATE TABLE `minutes_panels_tbl` (
`minutes_panel_id` int(11) NOT NULL,
`minutes_id` int(255) NOT NULL,
`panelist_id` int(255) NOT NULL,
`minutes_panell_status` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
-- --------------------------------------------------------
--
-- Table structure for table `minutes_tbl`
--
CREATE TABLE `minutes_tbl` (
`minutes_id` int(11) NOT NULL,
`group_id` int(255) NOT NULL,
`secretary_id` int(255) NOT NULL,
`adviser_id` int(255) NOT NULL,
`phase_id` int(255) NOT NULL,
`date` date NOT NULL,
`venue` char(100) NOT NULL,
`general comments` varchar(255) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
-- --------------------------------------------------------
--
-- Table structure for table `phases_tbl`
--
CREATE TABLE `phases_tbl` (
`phase_id` int(11) NOT NULL,
`phase_name` char(100) DEFAULT NULL,
`date_start` date NOT NULL,
`date_end` date NOT NULL,
`passing_score` int(255) NOT NULL,
`phase_status` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `phases_tbl`
--
INSERT INTO `phases_tbl` (`phase_id`, `phase_name`, `date_start`, `date_end`, `passing_score`, `phase_status`) VALUES
(1, 'Concept Proposal', '0000-00-00', '0000-00-00', 0, 0),
(2, 'Project Proposal', '0000-00-00', '0000-00-00', 0, 0),
(3, 'Project Implementation', '0000-00-00', '0000-00-00', 0, 0);
-- --------------------------------------------------------
--
-- Table structure for table `raw_scores_tbl`
--
CREATE TABLE `raw_scores_tbl` (
`raw_scores_id` int(255) NOT NULL,
`rubric` int(255) NOT NULL,
`panel` int(11) NOT NULL,
`score` int(255) NOT NULL,
`raw_score_status` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
-- --------------------------------------------------------
--
-- Table structure for table `rubrics_tbl`
--
CREATE TABLE `rubrics_tbl` (
`rubric_id` int(255) NOT NULL,
`phase` int(255) NOT NULL,
`rubric_name` char(100) NOT NULL,
`max_score` int(255) NOT NULL,
`min_score` int(255) NOT NULL,
`parent_rubric_id` int(255) NOT NULL,
`rubric_type` char(100) NOT NULL,
`rubric_status` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
-- --------------------------------------------------------
--
-- Table structure for table `schedules_tbl`
--
CREATE TABLE `schedules_tbl` (
`schedule_id` int(11) NOT NULL,
`group_sc` int(255) NOT NULL,
`phase_sc` int(255) NOT NULL,
`date` date NOT NULL,
`time_start` time NOT NULL,
`time_end` time NOT NULL,
`venue` char(100) NOT NULL,
`phase_status` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `schedules_tbl`
--
INSERT INTO `schedules_tbl` (`schedule_id`, `group_sc`, `phase_sc`, `date`, `time_start`, `time_end`, `venue`, `phase_status`) VALUES
(1, 54, 2, '0000-00-00', '00:00:00', '00:00:00', '', 0),
(2, 55, 2, '2021-04-08', '00:20:00', '00:20:00', 'dgfdffg', 0),
(3, 55, 2, '2021-04-09', '00:25:00', '00:25:00', 'gmeet', 0),
(4, 55, 3, '2021-04-02', '01:36:00', '02:37:00', 'ict building', 0),
(5, 54, 3, '2021-02-19', '00:44:00', '01:44:00', 'canteen', 0),
(6, 56, 3, '2020-07-07', '15:03:00', '16:06:00', 'ITB', 0);
-- --------------------------------------------------------
--
-- Table structure for table `thesis_documents_tbl`
--
CREATE TABLE `thesis_documents_tbl` (
`thesis_document_id` int(11) NOT NULL,
`thesis_id` int(11) NOT NULL,
`name` char(100) NOT NULL,
`type` char(100) NOT NULL,
`server_directory` char(100) NOT NULL,
`thesis_document_status` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `thesis_documents_tbl`
--
INSERT INTO `thesis_documents_tbl` (`thesis_document_id`, `thesis_id`, `name`, `type`, `server_directory`, `thesis_document_status`) VALUES
(12, 1, 'AB277133 (3).docx', '', '', 1),
(13, 1, 'Joemar-S-docxfinal (1) (1).docx', '', '', 1),
(14, 1, 'A8.PNG', '', '', 1),
(15, 1, 'Cisco3_finaltask_steps.docx', '', '', 1),
(16, 1, '3d-illustration-hat-and-diploma-with-books-and-thesis-in-the-background-PECTY6.jpg', '', '', 1),
(17, 1, 'THESIS-MANAGEMENT-SYSTEM.pdf', '', '', 1);
-- --------------------------------------------------------
--
-- Table structure for table `thesis_panels_tbl`
--
CREATE TABLE `thesis_panels_tbl` (
`thesis_panel_id` int(11) NOT NULL,
`group_ad` int(255) NOT NULL,
`panelist_id` int(255) NOT NULL,
`thesis_panel_status` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `thesis_panels_tbl`
--
INSERT INTO `thesis_panels_tbl` (`thesis_panel_id`, `group_ad`, `panelist_id`, `thesis_panel_status`) VALUES
(2, 54, 7, 0),
(3, 54, 6, 0),
(4, 54, 13, 0),
(5, 54, 12, 0),
(6, 54, 4, 0),
(7, 55, 3, 0),
(8, 55, 6, 0),
(9, 55, 11, 0),
(10, 56, 7, 0),
(11, 56, 8, 0),
(12, 56, 12, 0),
(14, 55, 13, 0);
-- --------------------------------------------------------
--
-- Table structure for table `thesis_phase_tbl`
--
CREATE TABLE `thesis_phase_tbl` (
`thesis_phase_id` int(11) NOT NULL,
`thesis_id` int(255) NOT NULL,
`phase_id` int(255) NOT NULL,
`thesis_phase_status` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
-- --------------------------------------------------------
--
-- Table structure for table `thesis_tbl`
--
CREATE TABLE `thesis_tbl` (
`thesis_id` int(11) NOT NULL,
`group_id` int(11) NOT NULL,
`thesis_title` char(100) NOT NULL,
`thesis_description` char(100) NOT NULL,
`thesis_status` int(11) NOT NULL,
`date_started` date NOT NULL,
`date_ended` date NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `thesis_tbl`
--
INSERT INTO `thesis_tbl` (`thesis_id`, `group_id`, `thesis_title`, `thesis_description`, `thesis_status`, `date_started`, `date_ended`) VALUES
(1, 54, '', '', 0, '0000-00-00', '0000-00-00');
-- --------------------------------------------------------
--
-- Table structure for table `users_tbl`
--
CREATE TABLE `users_tbl` (
`user_id` int(11) NOT NULL,
`name` varchar(250) NOT NULL,
`username` varchar(250) NOT NULL,
`email` varchar(250) NOT NULL,
`userpassword` varchar(250) NOT NULL,
`type` char(100) DEFAULT NULL,
`is_active` int(11) NOT NULL,
`user_status` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `users_tbl`
--
INSERT INTO `users_tbl` (`user_id`, `name`, `username`, `email`, `userpassword`, `type`, `is_active`, `user_status`) VALUES
(1, 'Super Admin', 'superadmin123', '<EMAIL>', '<PASSWORD>', 'super admin', 0, 0),
(2, 'Chairman', 'chairman123', '<EMAIL>', '<PASSWORD>', 'chairman', 0, 0),
(3, '<NAME>', 'llevado123', '<EMAIL>', '<PASSWORD>c4c34a16891f84e7b', 'faculty', 0, 0),
(4, '<NAME>', 'naive123', '<EMAIL>', '827ccb0eea8a706c4c34a16891f84e7b', 'faculty', 0, 0),
(5, '<NAME>', 'uy123', '<EMAIL>', '827ccb0eea8a706c4c34a16891f84e7b', 'faculty', 0, 0),
(6, '<NAME>', 'estrera123', '<EMAIL>', '827ccb0eea8a706c4c34a16891f84e7b', 'faculty', 0, 0),
(7, '<NAME>', 'calo123', '<EMAIL>', '827ccb0eea8a706c4c34a16891f84e7b', 'faculty', 0, 0),
(8, '<NAME> ', 'musk123', '<EMAIL>', '827ccb0eea8a706c4c34a16891f84e7b', 'faculty', 0, 0),
(10, '<NAME>', 'gates123', '<EMAIL>', '827ccb0eea8a706c4c34a16891f84e7b', 'faculty', 0, 0),
(11, '<NAME>', 'pachica123', '<EMAIL>', '827ccb0eea8a706c4c34a16891f84e7b', 'faculty', 0, 0),
(12, '<NAME>', 'garrido123', '<EMAIL>', '827ccb0eea8a706c4c34a16891f84e7b', 'faculty', 0, 0),
(13, '<NAME>', 'dal123', '<EMAIL>', '827ccb0eea8a706c4c34a16891f84e7b', 'faculty', 0, 0),
(14, '<NAME>', 'geds123', '<EMAIL>', '202cb962ac59075b964b07152d234b70', 'student', 1, 0),
(15, '<NAME> ', 'jebjeb123', '<EMAIL>', '827ccb0eea8a706c4c34a16891f84e7b', 'student', 1, 0),
(16, '<NAME>', 'paps123', '<EMAIL>', '827ccb0eea8a706c4c34a16891f84e7b', 'student', 0, 0),
(17, '<NAME>', 'kiking123', '<EMAIL>', '827ccb0eea8a706c4c34a16891f84e7b', 'student', 0, 0),
(18, '<NAME>', 'brybry123', '<EMAIL>', '827ccb0eea8a706c4c34a16891f84e7b', 'student', 0, 0),
(19, '<NAME>', 'hanz123', '<EMAIL>', '827ccb0eea8a706c4c34a16891f84e7b', 'student', 0, 0),
(20, '<NAME>', 'jus123', '<EMAIL>', '827ccb0eea8a706c4c34a16891f84e7b', 'student', 0, 0),
(21, '<NAME>', 'diamond123', '<EMAIL>', '827ccb0eea8a706c4c34a16891f84e7b', 'student', 0, 0),
(22, '<NAME> ', 'junna123', '<EMAIL>', '827ccb0eea8a706c4c34a16891f84e7b', 'student', 0, 0),
(23, '<NAME>', 'echem123', '<EMAIL>', '827ccb0eea8a706c4c34a16891f84e7b', 'student', 0, 0),
(24, '<NAME>', 'son123', '<EMAIL>', '827ccb0eea8a706c4c34a16891f84e7b', 'student', 1, 0),
(38, 'Secretary', 'secretary123', '<EMAIL>', '202cb962ac59075b964b07152d234b70', 'secretary', 0, 0);
-- --------------------------------------------------------
--
-- Table structure for table `user_profiles_tbl`
--
CREATE TABLE `user_profiles_tbl` (
`profile_id` int(11) NOT NULL,
`user_profile_id` int(11) NOT NULL,
`gender` char(100) NOT NULL,
`contact_number` int(255) NOT NULL,
`user_profile_status` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Indexes for dumped tables
--
--
-- Indexes for table `adviser_fields_tbl`
--
ALTER TABLE `adviser_fields_tbl`
ADD PRIMARY KEY (`adviser_field_id`),
ADD KEY `adviser_id` (`adviser_id`);
--
-- Indexes for table `group_members_tbl`
--
ALTER TABLE `group_members_tbl`
ADD PRIMARY KEY (`group_members_id`),
ADD KEY `member_id` (`member_id`),
ADD KEY `group` (`group`);
--
-- Indexes for table `group_tbl`
--
ALTER TABLE `group_tbl`
ADD PRIMARY KEY (`group_id`);
--
-- Indexes for table `minutes_panels_tbl`
--
ALTER TABLE `minutes_panels_tbl`
ADD PRIMARY KEY (`minutes_panel_id`),
ADD KEY `minutes_id` (`minutes_id`),
ADD KEY `panelist_id` (`panelist_id`);
--
-- Indexes for table `minutes_tbl`
--
ALTER TABLE `minutes_tbl`
ADD PRIMARY KEY (`minutes_id`),
ADD KEY `group_id` (`group_id`),
ADD KEY `secretary_id` (`secretary_id`),
ADD KEY `adviser_id` (`adviser_id`),
ADD KEY `phase_id` (`phase_id`);
--
-- Indexes for table `phases_tbl`
--
ALTER TABLE `phases_tbl`
ADD PRIMARY KEY (`phase_id`);
--
-- Indexes for table `raw_scores_tbl`
--
ALTER TABLE `raw_scores_tbl`
ADD PRIMARY KEY (`raw_scores_id`),
ADD KEY `rubric` (`rubric`),
ADD KEY `panel` (`panel`);
--
-- Indexes for table `rubrics_tbl`
--
ALTER TABLE `rubrics_tbl`
ADD PRIMARY KEY (`rubric_id`),
ADD KEY `phase` (`phase`);
--
-- Indexes for table `schedules_tbl`
--
ALTER TABLE `schedules_tbl`
ADD PRIMARY KEY (`schedule_id`),
ADD KEY `group_sc` (`group_sc`),
ADD KEY `phase_sc` (`phase_sc`);
--
-- Indexes for table `thesis_documents_tbl`
--
ALTER TABLE `thesis_documents_tbl`
ADD PRIMARY KEY (`thesis_document_id`),
ADD KEY `thesis_id` (`thesis_id`);
--
-- Indexes for table `thesis_panels_tbl`
--
ALTER TABLE `thesis_panels_tbl`
ADD PRIMARY KEY (`thesis_panel_id`),
ADD KEY `group_ad` (`group_ad`),
ADD KEY `panelist_id` (`panelist_id`);
--
-- Indexes for table `thesis_phase_tbl`
--
ALTER TABLE `thesis_phase_tbl`
ADD PRIMARY KEY (`thesis_phase_id`),
ADD KEY `thesis_id` (`thesis_id`),
ADD KEY `phase_id` (`phase_id`);
--
-- Indexes for table `thesis_tbl`
--
ALTER TABLE `thesis_tbl`
ADD PRIMARY KEY (`thesis_id`),
ADD KEY `group_id` (`group_id`);
--
-- Indexes for table `users_tbl`
--
ALTER TABLE `users_tbl`
ADD PRIMARY KEY (`user_id`);
--
-- Indexes for table `user_profiles_tbl`
--
ALTER TABLE `user_profiles_tbl`
ADD PRIMARY KEY (`profile_id`),
ADD KEY `user_profile_id` (`user_profile_id`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `adviser_fields_tbl`
--
ALTER TABLE `adviser_fields_tbl`
MODIFY `adviser_field_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;
--
-- AUTO_INCREMENT for table `group_members_tbl`
--
ALTER TABLE `group_members_tbl`
MODIFY `group_members_id` int(11) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `group_tbl`
--
ALTER TABLE `group_tbl`
MODIFY `group_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=61;
--
-- AUTO_INCREMENT for table `minutes_panels_tbl`
--
ALTER TABLE `minutes_panels_tbl`
MODIFY `minutes_panel_id` int(11) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `minutes_tbl`
--
ALTER TABLE `minutes_tbl`
MODIFY `minutes_id` int(11) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `phases_tbl`
--
ALTER TABLE `phases_tbl`
MODIFY `phase_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;
--
-- AUTO_INCREMENT for table `raw_scores_tbl`
--
ALTER TABLE `raw_scores_tbl`
MODIFY `raw_scores_id` int(255) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `rubrics_tbl`
--
ALTER TABLE `rubrics_tbl`
MODIFY `rubric_id` int(255) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `schedules_tbl`
--
ALTER TABLE `schedules_tbl`
MODIFY `schedule_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7;
--
-- AUTO_INCREMENT for table `thesis_documents_tbl`
--
ALTER TABLE `thesis_documents_tbl`
MODIFY `thesis_document_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=18;
--
-- AUTO_INCREMENT for table `thesis_panels_tbl`
--
ALTER TABLE `thesis_panels_tbl`
MODIFY `thesis_panel_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=15;
--
-- AUTO_INCREMENT for table `thesis_phase_tbl`
--
ALTER TABLE `thesis_phase_tbl`
MODIFY `thesis_phase_id` int(11) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `thesis_tbl`
--
ALTER TABLE `thesis_tbl`
MODIFY `thesis_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
--
-- AUTO_INCREMENT for table `users_tbl`
--
ALTER TABLE `users_tbl`
MODIFY `user_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=63;
--
-- AUTO_INCREMENT for table `user_profiles_tbl`
--
ALTER TABLE `user_profiles_tbl`
MODIFY `profile_id` int(11) NOT NULL AUTO_INCREMENT;
--
-- Constraints for dumped tables
--
--
-- Constraints for table `adviser_fields_tbl`
--
ALTER TABLE `adviser_fields_tbl`
ADD CONSTRAINT `adviser_fields_tbl_ibfk_1` FOREIGN KEY (`adviser_id`) REFERENCES `users_tbl` (`user_id`);
--
-- Constraints for table `group_members_tbl`
--
ALTER TABLE `group_members_tbl`
ADD CONSTRAINT `group_members_tbl_ibfk_1` FOREIGN KEY (`member_id`) REFERENCES `users_tbl` (`user_id`),
ADD CONSTRAINT `group_members_tbl_ibfk_2` FOREIGN KEY (`group`) REFERENCES `group_tbl` (`group_id`);
--
-- Constraints for table `minutes_panels_tbl`
--
ALTER TABLE `minutes_panels_tbl`
ADD CONSTRAINT `minutes_panels_tbl_ibfk_1` FOREIGN KEY (`minutes_id`) REFERENCES `minutes_tbl` (`minutes_id`),
ADD CONSTRAINT `minutes_panels_tbl_ibfk_2` FOREIGN KEY (`panelist_id`) REFERENCES `users_tbl` (`user_id`);
--
-- Constraints for table `minutes_tbl`
--
ALTER TABLE `minutes_tbl`
ADD CONSTRAINT `minutes_tbl_ibfk_1` FOREIGN KEY (`group_id`) REFERENCES `group_tbl` (`group_id`),
ADD CONSTRAINT `minutes_tbl_ibfk_2` FOREIGN KEY (`secretary_id`) REFERENCES `users_tbl` (`user_id`),
ADD CONSTRAINT `minutes_tbl_ibfk_3` FOREIGN KEY (`adviser_id`) REFERENCES `users_tbl` (`user_id`),
ADD CONSTRAINT `minutes_tbl_ibfk_4` FOREIGN KEY (`phase_id`) REFERENCES `phases_tbl` (`phase_id`);
--
-- Constraints for table `raw_scores_tbl`
--
ALTER TABLE `raw_scores_tbl`
ADD CONSTRAINT `raw_scores_tbl_ibfk_1` FOREIGN KEY (`rubric`) REFERENCES `rubrics_tbl` (`rubric_id`),
ADD CONSTRAINT `raw_scores_tbl_ibfk_2` FOREIGN KEY (`panel`) REFERENCES `users_tbl` (`user_id`);
--
-- Constraints for table `rubrics_tbl`
--
ALTER TABLE `rubrics_tbl`
ADD CONSTRAINT `rubrics_tbl_ibfk_1` FOREIGN KEY (`phase`) REFERENCES `phases_tbl` (`phase_id`);
--
-- Constraints for table `schedules_tbl`
--
ALTER TABLE `schedules_tbl`
ADD CONSTRAINT `schedules_tbl_ibfk_1` FOREIGN KEY (`group_sc`) REFERENCES `group_tbl` (`group_id`),
ADD CONSTRAINT `schedules_tbl_ibfk_2` FOREIGN KEY (`phase_sc`) REFERENCES `phases_tbl` (`phase_id`);
--
-- Constraints for table `thesis_documents_tbl`
--
ALTER TABLE `thesis_documents_tbl`
ADD CONSTRAINT `thesis_documents_tbl_ibfk_1` FOREIGN KEY (`thesis_id`) REFERENCES `thesis_tbl` (`thesis_id`);
--
-- Constraints for table `thesis_panels_tbl`
--
ALTER TABLE `thesis_panels_tbl`
ADD CONSTRAINT `thesis_panels_tbl_ibfk_1` FOREIGN KEY (`group_ad`) REFERENCES `group_tbl` (`group_id`),
ADD CONSTRAINT `thesis_panels_tbl_ibfk_2` FOREIGN KEY (`panelist_id`) REFERENCES `users_tbl` (`user_id`);
--
-- Constraints for table `thesis_phase_tbl`
--
ALTER TABLE `thesis_phase_tbl`
ADD CONSTRAINT `thesis_phase_tbl_ibfk_1` FOREIGN KEY (`thesis_id`) REFERENCES `thesis_tbl` (`thesis_id`),
ADD CONSTRAINT `thesis_phase_tbl_ibfk_2` FOREIGN KEY (`phase_id`) REFERENCES `phases_tbl` (`phase_id`);
--
-- Constraints for table `thesis_tbl`
--
ALTER TABLE `thesis_tbl`
ADD CONSTRAINT `thesis_tbl_ibfk_1` FOREIGN KEY (`group_id`) REFERENCES `group_tbl` (`group_id`);
--
-- Constraints for table `user_profiles_tbl`
--
ALTER TABLE `user_profiles_tbl`
ADD CONSTRAINT `user_profiles_tbl_ibfk_1` FOREIGN KEY (`user_profile_id`) REFERENCES `users_tbl` (`user_id`);
COMMIT;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
-- phpMyAdmin SQL Dump
-- version 4.9.7deb1
-- https://www.phpmyadmin.net/
--
-- Host: localhost:3306
-- Generation Time: May 18, 2021 at 04:56 PM
-- Server version: 8.0.25-0ubuntu0.20.10.1
-- PHP Version: 7.4.9
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: `canva2`
--
-- --------------------------------------------------------
--
-- Table structure for table `css_data`
--
CREATE TABLE `css_data` (
`id` int NOT NULL,
`resource_id` bigint NOT NULL,
`file` varchar(255) NOT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
--
-- Dumping data for table `css_data`
--
INSERT INTO `css_data` (`id`, `resource_id`, `file`, `updated_at`, `created_at`) VALUES
(5, 12, 'style.css,owl.theme.default.min.css,owl.carousel.min.css,magnific-popup.css,icomoon.css,flexslider.css,bootstrap.css,animate.css', '2021-05-17 06:59:47', '2021-05-17 06:59:47'),
(7, 14, 'style.css,owl.theme.default.min.css,owl.carousel.min.css,magnific-popup.css,icomoon.css,flexslider.css,bootstrap.css,animate.css', '2021-05-17 17:13:09', '2021-05-17 17:13:09'),
(8, 15, 'style.css,owl.theme.default.min.css,owl.carousel.min.css,magnific-popup.css,icomoon.css,flexslider.css,bootstrap.css,animate.css', '2021-05-17 19:51:32', '2021-05-17 19:51:32');
-- --------------------------------------------------------
--
-- Table structure for table `failed_jobs`
--
CREATE TABLE `failed_jobs` (
`id` bigint UNSIGNED NOT NULL,
`uuid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`connection` text COLLATE utf8mb4_unicode_ci NOT NULL,
`queue` text COLLATE utf8mb4_unicode_ci NOT NULL,
`payload` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`exception` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`failed_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `html_data`
--
CREATE TABLE `html_data` (
`id` int NOT NULL,
`resource_id` bigint NOT NULL,
`source_code` text NOT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
--
-- Dumping data for table `html_data`
--
INSERT INTO `html_data` (`id`, `resource_id`, `source_code`, `updated_at`, `created_at`) VALUES
(12, 12, '\r\n<meta charset=\"utf-8\">\r\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\r\n<title>Wedding — 100% Free Fully Responsive HTML5 Template by FREEHTML5.co</title>\r\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\r\n\r\n\r\n\r\n\r\n<div id=\"page\">\r\n<nav class=\"fh5co-nav\" role=\"navigation\">\r\n <div class=\"container\">\r\n <div class=\"row\">\r\n <div class=\"col-xs-2\">\r\n <div id=\"fh5co-logo\"><a href=\"index.html\">Wedding<strong>.</strong></a></div>\r\n </div>\r\n <div class=\"col-xs-10 text-right menu-1\">\r\n <ul>\r\n <li class=\"active\"><a href=\"index.html\">Home</a></li>\r\n <li><a href=\"about.html\">Story</a></li>\r\n <li class=\"has-dropdown\">\r\n <a href=\"services.html\">Services</a>\r\n <ul class=\"dropdown\">\r\n <li><a href=\"#\">Web Design</a></li>\r\n <li><a href=\"#\">eCommerce</a></li>\r\n <li><a href=\"#\">Branding</a></li>\r\n <li><a href=\"#\">API</a></li>\r\n </ul>\r\n </li>\r\n <li class=\"has-dropdown\">\r\n <a href=\"gallery.html\">Gallery</a>\r\n <ul class=\"dropdown\">\r\n <li><a href=\"#\">HTML5</a></li>\r\n <li><a href=\"#\">CSS3</a></li>\r\n <li><a href=\"#\">Sass</a></li>\r\n <li><a href=\"#\">jQuery</a></li>\r\n </ul>\r\n </li>\r\n <li><a href=\"contact.html\">Contact</a></li>\r\n </ul>\r\n </div>\r\n </div>\r\n \r\n </div>\r\n</nav>\r\n\r\n<header id=\"fh5co-header\" class=\"fh5co-cover\" role=\"banner\" data-stellar-background-ratio=\"0.5\">\r\n <div class=\"overlay\"></div>\r\n <div class=\"container\">\r\n <div class=\"row\">\r\n <div class=\"col-md-8 col-md-offset-2 text-center\">\r\n <div class=\"display-t\">\r\n <div class=\"display-tc animate-box\" data-animate-effect=\"fadeIn\">\r\n <h1><NAME>; Sheila</h1>\r\n <h2>We Are Getting Married</h2>\r\n <div class=\"simply-countdown simply-countdown-one\"></div>\r\n <p><a href=\"#\" class=\"btn btn-default btn-sm\">Save the date</a></p>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n</header>\r\n\r\n<div id=\"fh5co-couple\">\r\n <div class=\"container\">\r\n <div class=\"row\">\r\n <div class=\"col-md-8 col-md-offset-2 text-center fh5co-heading animate-box\">\r\n <h2>Hello!</h2>\r\n <h3>November 28th, 2016 New York, USA</h3>\r\n <p>We invited you to celebrate our wedding</p>\r\n </div>\r\n </div>\r\n <div class=\"couple-wrap animate-box\">\r\n <div class=\"couple-half\">\r\n <div class=\"groom\">\r\n <img src=\"\" alt=\"groom\" class=\"img-responsive\">\r\n </div>\r\n <div class=\"desc-groom\">\r\n <h3><NAME></h3>\r\n <p>daskjdsadhasdhkaksjdhskj</p>\r\n </div>\r\n </div>\r\n <p class=\"heart text-center\"><i class=\"icon-heart2\"></i></p>\r\n <div class=\"couple-half\">\r\n <div class=\"bride\">\r\n <img src=\"\" alt=\"groom\" class=\"img-responsive\">\r\n </div>\r\n <div class=\"desc-bride\">\r\n <h3><NAME></h3>\r\n <p>Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove</p>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n</div>\r\n\r\n<div id=\"fh5co-event\" class=\"fh5co-bg\" >\r\n <div class=\"overlay\"></div>\r\n <div class=\"container\">\r\n <div class=\"row\">\r\n <div class=\"col-md-8 col-md-offset-2 text-center fh5co-heading animate-box\">\r\n <span>Our Special Events</span>\r\n <h2>Wedding Events</h2>\r\n </div>\r\n </div>\r\n <div class=\"row\">\r\n <div class=\"display-t\">\r\n <div class=\"display-tc\">\r\n <div class=\"col-md-10 col-md-offset-1\">\r\n <div class=\"col-md-6 col-sm-6 text-center\">\r\n <div class=\"event-wrap animate-box\">\r\n <h3>Main Ceremony</h3>\r\n <div class=\"event-col\">\r\n <i class=\"icon-clock\"></i>\r\n <span>4:00 PM</span>\r\n <span>6:00 PM</span>\r\n </div>\r\n <div class=\"event-col\">\r\n <i class=\"icon-calendar\"></i>\r\n <span>Monday 28</span>\r\n <span>November, 2016</span>\r\n </div>\r\n <p>Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean.</p>\r\n </div>\r\n </div>\r\n <div class=\"col-md-6 col-sm-6 text-center\">\r\n <div class=\"event-wrap animate-box\">\r\n <h3>Wedding Party</h3>\r\n <div class=\"event-col\">\r\n <i class=\"icon-clock\"></i>\r\n <span>7:00 PM</span>\r\n <span>12:00 AM</span>\r\n </div>\r\n <div class=\"event-col\">\r\n <i class=\"icon-calendar\"></i>\r\n <span>Monday 28</span>\r\n <span>November, 2016</span>\r\n </div>\r\n <p>Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean.</p>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n</div>\r\n\r\n\r\n<div id=\"fh5co-gallery\" class=\"fh5co-section-gray\">\r\n <div class=\"container\">\r\n <div class=\"row\">\r\n <div class=\"col-md-8 col-md-offset-2 text-center fh5co-heading animate-box\">\r\n <span>Our Memories</span>\r\n <h2>Wedding Gallery</h2>\r\n <p>Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts.</p>\r\n </div>\r\n </div>\r\n <div class=\"row row-bottom-padded-md\">\r\n <div class=\"col-md-12\">\r\n <ul id=\"fh5co-gallery-list\">\r\n \r\n <li class=\"one-third animate-box\" data-animate-effect=\"fadeIn\" > \r\n <a href=\"\">\r\n <div class=\"case-studies-summary\">\r\n <span>14 Photos</span>\r\n <h2>Two Glas of Juice</h2>\r\n </div>\r\n </a>\r\n </li>\r\n <li class=\"one-third animate-box\" data-animate-effect=\"fadeIn\">\r\n <a href=\"#\" class=\"color-2\">\r\n <div class=\"case-studies-summary\">\r\n <span>30 Photos</span>\r\n <h2>Timer starts now!</h2>\r\n </div>\r\n </a>\r\n </li>\r\n\r\n\r\n <li class=\"one-third animate-box\" data-animate-effect=\"fadeIn\">\r\n <a href=\"#\" class=\"color-3\">\r\n <div class=\"case-studies-summary\">\r\n <span>90 Photos</span>\r\n <h2>Beautiful sunset</h2>\r\n </div>\r\n </a>\r\n </li>\r\n <li class=\"one-third animate-box\" data-animate-effect=\"fadeIn\">\r\n <a href=\"#\" class=\"color-4\">\r\n <div class=\"case-studies-summary\">\r\n <span>12 Photos</span>\r\n <h2>Company\'s Conference Room</h2>\r\n </div>\r\n </a>\r\n </li>\r\n\r\n <li class=\"one-third animate-box\" data-animate-effect=\"fadeIn\">\r\n <a href=\"#\" class=\"color-3\">\r\n <div class=\"case-studies-summary\">\r\n <span>50 Photos</span>\r\n <h2>Useful baskets</h2>\r\n </div>\r\n </a>\r\n </li>\r\n <li class=\"one-third animate-box\" data-animate-effect=\"fadeIn\">\r\n <a href=\"#\" class=\"color-4\">\r\n <div class=\"case-studies-summary\">\r\n <span>45 Photos</span>\r\n <h2>Skater man in the road</h2>\r\n </div>\r\n </a>\r\n </li>\r\n\r\n <li class=\"one-third animate-box\" data-animate-effect=\"fadeIn\">\r\n <a href=\"#\" class=\"color-4\">\r\n <div class=\"case-studies-summary\">\r\n <span>35 Photos</span>\r\n <h2>Two Glas of Juice</h2>\r\n </div>\r\n </a>\r\n </li>\r\n\r\n <li class=\"one-third animate-box\" data-animate-effect=\"fadeIn\"> \r\n <a href=\"#\" class=\"color-5\">\r\n <div class=\"case-studies-summary\">\r\n <span>90 Photos</span>\r\n <h2>Timer starts now!</h2>\r\n </div>\r\n </a>\r\n </li>\r\n <li class=\"one-third animate-box\" data-animate-effect=\"fadeIn\">\r\n <a href=\"#\" class=\"color-6\">\r\n <div class=\"case-studies-summary\">\r\n <span>56 Photos</span>\r\n <h2>Beautiful sunset</h2>\r\n </div>\r\n </a>\r\n </li>\r\n </ul> \r\n </div>\r\n </div>\r\n </div>\r\n</div>\r\n\r\n<div id=\"fh5co-counter\" class=\"fh5co-bg fh5co-counter\">\r\n <div class=\"overlay\"></div>\r\n <div class=\"container\">\r\n <div class=\"row\">\r\n <div class=\"display-t\">\r\n <div class=\"display-tc\">\r\n <div class=\"col-md-3 col-sm-6 animate-box\">\r\n <div class=\"feature-center\">\r\n <span class=\"icon\">\r\n <i class=\"icon-users\"></i>\r\n </span>\r\n\r\n <span class=\"counter js-counter\" data-from=\"0\" data-to=\"500\" data-speed=\"5000\" data-refresh-interval=\"50\">1</span>\r\n <span class=\"counter-label\">Estimated Guest</span>\r\n\r\n </div>\r\n </div>\r\n <div class=\"col-md-3 col-sm-6 animate-box\">\r\n <div class=\"feature-center\">\r\n <span class=\"icon\">\r\n <i class=\"icon-user\"></i>\r\n </span>\r\n\r\n <span class=\"counter js-counter\" data-from=\"0\" data-to=\"1000\" data-speed=\"5000\" data-refresh-interval=\"50\">1</span>\r\n <span class=\"counter-label\">We Catter</span>\r\n </div>\r\n </div>\r\n <div class=\"col-md-3 col-sm-6 animate-box\">\r\n <div class=\"feature-center\">\r\n <span class=\"icon\">\r\n <i class=\"icon-calendar\"></i>\r\n </span>\r\n <span class=\"counter js-counter\" data-from=\"0\" data-to=\"402\" data-speed=\"5000\" data-refresh-interval=\"50\">1</span>\r\n <span class=\"counter-label\">Events Done</span>\r\n </div>\r\n </div>\r\n <div class=\"col-md-3 col-sm-6 animate-box\">\r\n <div class=\"feature-center\">\r\n <span class=\"icon\">\r\n <i class=\"icon-clock\"></i>\r\n </span>\r\n\r\n <span class=\"counter js-counter\" data-from=\"0\" data-to=\"2345\" data-speed=\"5000\" data-refresh-interval=\"50\">1</span>\r\n <span class=\"counter-label\">Hours Spent</span>\r\n\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n</div>\r\n\r\n<div id=\"fh5co-testimonial\">\r\n <div class=\"container\">\r\n <div class=\"row\">\r\n <div class=\"row animate-box\">\r\n <div class=\"col-md-8 col-md-offset-2 text-center fh5co-heading\">\r\n <span>Best Wishes</span>\r\n <h2>Friends Wishes</h2>\r\n </div>\r\n </div>\r\n <div class=\"row\">\r\n <div class=\"col-md-12 animate-box\">\r\n <div class=\"wrap-testimony\">\r\n <div class=\"owl-carousel-fullwidth\">\r\n <div class=\"item\">\r\n <div class=\"testimony-slide active text-center\">\r\n <figure>\r\n <img src=\"images/couple-1.jpg\" alt=\"user\">\r\n </figure>\r\n <span><NAME>, via <a href=\"#\" class=\"twitter\">Twitter</a></span>\r\n <blockquote>\r\n <p>\"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the Semantics\"</p>\r\n </blockquote>\r\n </div>\r\n </div>\r\n <div class=\"item\">\r\n <div class=\"testimony-slide active text-center\">\r\n <figure>\r\n <img src=\"images/couple-2.jpg\" alt=\"user\">\r\n </figure>\r\n <span><NAME>, via <a href=\"#\" class=\"twitter\">Twitter</a></span>\r\n <blockquote>\r\n <p>\"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, at the coast of the Semantics, a large language ocean.\"</p>\r\n </blockquote>\r\n </div>\r\n </div>\r\n <div class=\"item\">\r\n <div class=\"testimony-slide active text-center\">\r\n <figure>\r\n <img src=\"images/couple-3.jpg\" alt=\"user\">\r\n </figure>\r\n <span><NAME>, via <a href=\"#\" class=\"twitter\">Twitter</a></span>\r\n <blockquote>\r\n <p>\"Far far away, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean.\"</p>\r\n </blockquote>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n</div>\r\n\r\n<div id=\"fh5co-services\" class=\"fh5co-section-gray\">\r\n <div class=\"container\">\r\n \r\n <div class=\"row animate-box\">\r\n <div class=\"col-md-8 col-md-offset-2 text-center fh5co-heading\">\r\n <h2>We Offer Services</h2>\r\n <p>Dignissimos asperiores vitae velit veniam totam fuga molestias accusamus alias autem provident. Odit ab aliquam dolor eius.</p>\r\n </div>\r\n </div>\r\n\r\n <div class=\"row\">\r\n <div class=\"col-md-6\">\r\n <div class=\"feature-left animate-box\" data-animate-effect=\"fadeInLeft\">\r\n <span class=\"icon\">\r\n <i class=\"icon-calendar\"></i>\r\n </span>\r\n <div class=\"feature-copy\">\r\n <h3>We Organized Events</h3>\r\n <p>Facilis ipsum reprehenderit nemo molestias. Aut cum mollitia reprehenderit. Eos cumque dicta adipisci architecto culpa amet.</p>\r\n </div>\r\n </div>\r\n\r\n <div class=\"feature-left animate-box\" data-animate-effect=\"fadeInLeft\">\r\n <span class=\"icon\">\r\n <i class=\"icon-image\"></i>\r\n </span>\r\n <div class=\"feature-copy\">\r\n <h3>Photoshoot</h3>\r\n <p>Facilis ipsum reprehenderit nemo molestias. Aut cum mollitia reprehenderit. Eos cumque dicta adipisci architecto culpa amet.</p>\r\n </div>\r\n </div>\r\n\r\n <div class=\"feature-left animate-box\" data-animate-effect=\"fadeInLeft\">\r\n <span class=\"icon\">\r\n <i class=\"icon-video\"></i>\r\n </span>\r\n <div class=\"feature-copy\">\r\n <h3>Video Editing</h3>\r\n <p>Facilis ipsum reprehenderit nemo molestias. Aut cum mollitia reprehenderit. Eos cumque dicta adipisci architecto culpa amet.</p>\r\n </div>\r\n </div>\r\n\r\n </div>\r\n\r\n <div class=\"col-md-6 animate-box\">\r\n <div class=\"fh5co-video fh5co-bg\">\"\r\n <a href=\"https://vimeo.com/channels/staffpicks/93951774\" class=\"popup-vimeo\"><i class=\"icon-video2\"></i></a>\r\n <div class=\"overlay\"></div>\r\n </div>\r\n </div>\r\n </div>\r\n\r\n \r\n </div>\r\n</div>\r\n\r\n\r\n<div id=\"fh5co-started\" class=\"fh5co-bg\">\r\n <div class=\"overlay\"></div>\r\n <div class=\"container\">\r\n <div class=\"row animate-box\">\r\n <div class=\"col-md-8 col-md-offset-2 text-center fh5co-heading\">\r\n <h2>Are You Attending?</h2>\r\n <p>Please Fill-up the form to notify you that you\'re attending. Thanks.</p>\r\n </div>\r\n </div>\r\n <div class=\"row animate-box\">\r\n <div class=\"col-md-10 col-md-offset-1\">\r\n <form class=\"form-inline\">\r\n <div class=\"col-md-4 col-sm-4\">\r\n <div class=\"form-group\">\r\n <label for=\"name\" class=\"sr-only\">Name</label>\r\n <input type=\"name\" class=\"form-control\" id=\"name\" placeholder=\"Name\">\r\n </div>\r\n </div>\r\n <div class=\"col-md-4 col-sm-4\">\r\n <div class=\"form-group\">\r\n <label for=\"email\" class=\"sr-only\">Email</label>\r\n <input type=\"email\" class=\"form-control\" id=\"email\" placeholder=\"Email\">\r\n </div>\r\n </div>\r\n <div class=\"col-md-4 col-sm-4\">\r\n <button type=\"submit\" class=\"btn btn-default btn-block\">I am Attending</button>\r\n </div>\r\n </form>\r\n </div>\r\n </div>\r\n </div>\r\n</div>\r\n\r\n<footer id=\"fh5co-footer\" role=\"contentinfo\">\r\n <div class=\"container\">\r\n\r\n <div class=\"row copyright\">\r\n <div class=\"col-md-12 text-center\">\r\n <p>\r\n <small class=\"block\">© 2016 Free HTML5. All Rights Reserved.</small> \r\n <small class=\"block\">Designed by <a href=\"http://freehtml5.co/\" target=\"_blank\">FREEHTML5.co</a> Demo Images: <a href=\"http://unsplash.co/\" target=\"_blank\">Unsplash</a></small>\r\n </p>\r\n <p>\r\n </p><ul class=\"fh5co-social-icons\">\r\n <li><a href=\"#\"><i class=\"icon-twitter\"></i></a></li>\r\n <li><a href=\"#\"><i class=\"icon-facebook\"></i></a></li>\r\n <li><a href=\"#\"><i class=\"icon-linkedin\"></i></a></li>\r\n <li><a href=\"#\"><i class=\"icon-dribbble\"></i></a></li>\r\n </ul>\r\n <p></p>\r\n </div>\r\n </div>\r\n\r\n </div>\r\n</footer>\r\n</div>\r\n\r\n\r\n<div class=\"gototop js-top\">\r\n <a href=\"#\" class=\"js-gotop\"><i class=\"icon-arrow-up\"></i></a>\r\n</div>\r\n<script src=\"https://code.jquery.com/jquery-3.6.0.js\" integrity=\"sha256-H+K7U5CnXl1h5ywQfKtSj8PCmoN9aaq30gDh27Xc0jk=\" crossorigin=\"anonymous\"></script>\r\n\r\n<script>\r\nvar d = new Date(new Date().getTime() + 200 * 120 * 120 * 2000);\r\n\r\n// default example\r\nsimplyCountdown(\'.simply-countdown-one\', {\r\n year: d.getFullYear(),\r\n month: d.getMonth() + 1,\r\n day: d.getDate()\r\n});\r\n\r\n//jQuery example\r\n$(\'#simply-countdown-losange\').simplyCountdown({\r\n year: d.getFullYear(),\r\n month: d.getMonth() + 1,\r\n day: d.getDate(),\r\n enableUtc: false\r\n});\r\n</script>', '2021-05-17 06:59:47', '2021-05-17 06:59:47'),
(14, 14, '\r\n<meta charset=\"utf-8\">\r\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\r\n<title>Wedding — 100% Free Fully Responsive HTML5 Template by FREEHTML5.co</title>\r\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\r\n\r\n\r\n\r\n\r\n<div id=\"page\">\r\n<nav class=\"fh5co-nav\" role=\"navigation\">\r\n <div class=\"container\">\r\n <div class=\"row\">\r\n <div class=\"col-xs-2\">\r\n <div id=\"fh5co-logo\"><a href=\"index.html\">Wedding<strong>.</strong></a></div>\r\n </div>\r\n <div class=\"col-xs-10 text-right menu-1\">\r\n <ul>\r\n <li class=\"active\"><a href=\"index.html\">Home</a></li>\r\n <li><a href=\"about.html\">Story</a></li>\r\n <li class=\"has-dropdown\">\r\n <a href=\"services.html\">Services</a>\r\n <ul class=\"dropdown\">\r\n <li><a href=\"#\">Web Design</a></li>\r\n <li><a href=\"#\">eCommerce</a></li>\r\n <li><a href=\"#\">Branding</a></li>\r\n <li><a href=\"#\">API</a></li>\r\n </ul>\r\n </li>\r\n <li class=\"has-dropdown\">\r\n <a href=\"gallery.html\">Gallery</a>\r\n <ul class=\"dropdown\">\r\n <li><a href=\"#\">HTML5</a></li>\r\n <li><a href=\"#\">CSS3</a></li>\r\n <li><a href=\"#\">Sass</a></li>\r\n <li><a href=\"#\">jQuery</a></li>\r\n </ul>\r\n </li>\r\n <li><a href=\"contact.html\">Contact</a></li>\r\n </ul>\r\n </div>\r\n </div>\r\n \r\n </div>\r\n</nav>\r\n\r\n<header id=\"fh5co-header\" class=\"fh5co-cover\" role=\"banner\" data-stellar-background-ratio=\"0.5\">\r\n <div class=\"overlay\"></div>\r\n <div class=\"container\">\r\n <div class=\"row\">\r\n <div class=\"col-md-8 col-md-offset-2 text-center\">\r\n <div class=\"display-t\">\r\n <div class=\"display-tc animate-box\" data-animate-effect=\"fadeIn\">\r\n <h1>Joefrey & Sheila</h1>\r\n <h2>We Are Getting Married</h2>\r\n <div class=\"simply-countdown simply-countdown-one\"></div>\r\n <p><a href=\"#\" class=\"btn btn-default btn-sm\">Save the date</a></p>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n</header>\r\n\r\n<div id=\"fh5co-couple\">\r\n <div class=\"container\">\r\n <div class=\"row\">\r\n <div class=\"col-md-8 col-md-offset-2 text-center fh5co-heading animate-box\">\r\n <h2>Hello!</h2>\r\n <h3>November 28th, 2016 New York, USA</h3>\r\n <p>We invited you to celebrate our wedding</p>\r\n </div>\r\n </div>\r\n <div class=\"couple-wrap animate-box\">\r\n <div class=\"couple-half\">\r\n <div class=\"groom\">\r\n <img src=\"\" alt=\"groom\" class=\"img-responsive\">\r\n </div>\r\n <div class=\"desc-groom\">\r\n <h3><NAME></h3>\r\n <p>daskjdsadhasdhkaksjdhskj</p>\r\n </div>\r\n </div>\r\n <p class=\"heart text-center\"><i class=\"icon-heart2\"></i></p>\r\n <div class=\"couple-half\">\r\n <div class=\"bride\">\r\n <img src=\"\" alt=\"groom\" class=\"img-responsive\">\r\n </div>\r\n <div class=\"desc-bride\">\r\n <h3><NAME></h3>\r\n <p>Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove</p>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n</div>\r\n\r\n<div id=\"fh5co-event\" class=\"fh5co-bg\" >\r\n <div class=\"overlay\"></div>\r\n <div class=\"container\">\r\n <div class=\"row\">\r\n <div class=\"col-md-8 col-md-offset-2 text-center fh5co-heading animate-box\">\r\n <span>Our Special Events</span>\r\n <h2>Wedding Events</h2>\r\n </div>\r\n </div>\r\n <div class=\"row\">\r\n <div class=\"display-t\">\r\n <div class=\"display-tc\">\r\n <div class=\"col-md-10 col-md-offset-1\">\r\n <div class=\"col-md-6 col-sm-6 text-center\">\r\n <div class=\"event-wrap animate-box\">\r\n <h3>Main Ceremony</h3>\r\n <div class=\"event-col\">\r\n <i class=\"icon-clock\"></i>\r\n <span>4:00 PM</span>\r\n <span>6:00 PM</span>\r\n </div>\r\n <div class=\"event-col\">\r\n <i class=\"icon-calendar\"></i>\r\n <span>Monday 28</span>\r\n <span>November, 2016</span>\r\n </div>\r\n <p>Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean.</p>\r\n </div>\r\n </div>\r\n <div class=\"col-md-6 col-sm-6 text-center\">\r\n <div class=\"event-wrap animate-box\">\r\n <h3>Wedding Party</h3>\r\n <div class=\"event-col\">\r\n <i class=\"icon-clock\"></i>\r\n <span>7:00 PM</span>\r\n <span>12:00 AM</span>\r\n </div>\r\n <div class=\"event-col\">\r\n <i class=\"icon-calendar\"></i>\r\n <span>Monday 28</span>\r\n <span>November, 2016</span>\r\n </div>\r\n <p>Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean.</p>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n</div>\r\n\r\n\r\n<div id=\"fh5co-gallery\" class=\"fh5co-section-gray\">\r\n <div class=\"container\">\r\n <div class=\"row\">\r\n <div class=\"col-md-8 col-md-offset-2 text-center fh5co-heading animate-box\">\r\n <span>Our Memories</span>\r\n <h2>Wedding Gallery</h2>\r\n <p>Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts.</p>\r\n </div>\r\n </div>\r\n <div class=\"row row-bottom-padded-md\">\r\n <div class=\"col-md-12\">\r\n <ul id=\"fh5co-gallery-list\">\r\n \r\n <li class=\"one-third animate-box\" data-animate-effect=\"fadeIn\" > \r\n <a href=\"\">\r\n <div class=\"case-studies-summary\">\r\n <span>14 Photos</span>\r\n <h2>Two Glas of Juice</h2>\r\n </div>\r\n </a>\r\n </li>\r\n <li class=\"one-third animate-box\" data-animate-effect=\"fadeIn\">\r\n <a href=\"#\" class=\"color-2\">\r\n <div class=\"case-studies-summary\">\r\n <span>30 Photos</span>\r\n <h2>Timer starts now!</h2>\r\n </div>\r\n </a>\r\n </li>\r\n\r\n\r\n <li class=\"one-third animate-box\" data-animate-effect=\"fadeIn\">\r\n <a href=\"#\" class=\"color-3\">\r\n <div class=\"case-studies-summary\">\r\n <span>90 Photos</span>\r\n <h2>Beautiful sunset</h2>\r\n </div>\r\n </a>\r\n </li>\r\n <li class=\"one-third animate-box\" data-animate-effect=\"fadeIn\">\r\n <a href=\"#\" class=\"color-4\">\r\n <div class=\"case-studies-summary\">\r\n <span>12 Photos</span>\r\n <h2>Company\'s Conference Room</h2>\r\n </div>\r\n </a>\r\n </li>\r\n\r\n <li class=\"one-third animate-box\" data-animate-effect=\"fadeIn\">\r\n <a href=\"#\" class=\"color-3\">\r\n <div class=\"case-studies-summary\">\r\n <span>50 Photos</span>\r\n <h2>Useful baskets</h2>\r\n </div>\r\n </a>\r\n </li>\r\n <li class=\"one-third animate-box\" data-animate-effect=\"fadeIn\">\r\n <a href=\"#\" class=\"color-4\">\r\n <div class=\"case-studies-summary\">\r\n <span>45 Photos</span>\r\n <h2>Skater man in the road</h2>\r\n </div>\r\n </a>\r\n </li>\r\n\r\n <li class=\"one-third animate-box\" data-animate-effect=\"fadeIn\">\r\n <a href=\"#\" class=\"color-4\">\r\n <div class=\"case-studies-summary\">\r\n <span>35 Photos</span>\r\n <h2>Two Glas of Juice</h2>\r\n </div>\r\n </a>\r\n </li>\r\n\r\n <li class=\"one-third animate-box\" data-animate-effect=\"fadeIn\"> \r\n <a href=\"#\" class=\"color-5\">\r\n <div class=\"case-studies-summary\">\r\n <span>90 Photos</span>\r\n <h2>Timer starts now!</h2>\r\n </div>\r\n </a>\r\n </li>\r\n <li class=\"one-third animate-box\" data-animate-effect=\"fadeIn\">\r\n <a href=\"#\" class=\"color-6\">\r\n <div class=\"case-studies-summary\">\r\n <span>56 Photos</span>\r\n <h2>Beautiful sunset</h2>\r\n </div>\r\n </a>\r\n </li>\r\n </ul> \r\n </div>\r\n </div>\r\n </div>\r\n</div>\r\n\r\n<div id=\"fh5co-counter\" class=\"fh5co-bg fh5co-counter\">\r\n <div class=\"overlay\"></div>\r\n <div class=\"container\">\r\n <div class=\"row\">\r\n <div class=\"display-t\">\r\n <div class=\"display-tc\">\r\n <div class=\"col-md-3 col-sm-6 animate-box\">\r\n <div class=\"feature-center\">\r\n <span class=\"icon\">\r\n <i class=\"icon-users\"></i>\r\n </span>\r\n\r\n <span class=\"counter js-counter\" data-from=\"0\" data-to=\"500\" data-speed=\"5000\" data-refresh-interval=\"50\">1</span>\r\n <span class=\"counter-label\">Estimated Guest</span>\r\n\r\n </div>\r\n </div>\r\n <div class=\"col-md-3 col-sm-6 animate-box\">\r\n <div class=\"feature-center\">\r\n <span class=\"icon\">\r\n <i class=\"icon-user\"></i>\r\n </span>\r\n\r\n <span class=\"counter js-counter\" data-from=\"0\" data-to=\"1000\" data-speed=\"5000\" data-refresh-interval=\"50\">1</span>\r\n <span class=\"counter-label\">We Catter</span>\r\n </div>\r\n </div>\r\n <div class=\"col-md-3 col-sm-6 animate-box\">\r\n <div class=\"feature-center\">\r\n <span class=\"icon\">\r\n <i class=\"icon-calendar\"></i>\r\n </span>\r\n <span class=\"counter js-counter\" data-from=\"0\" data-to=\"402\" data-speed=\"5000\" data-refresh-interval=\"50\">1</span>\r\n <span class=\"counter-label\">Events Done</span>\r\n </div>\r\n </div>\r\n <div class=\"col-md-3 col-sm-6 animate-box\">\r\n <div class=\"feature-center\">\r\n <span class=\"icon\">\r\n <i class=\"icon-clock\"></i>\r\n </span>\r\n\r\n <span class=\"counter js-counter\" data-from=\"0\" data-to=\"2345\" data-speed=\"5000\" data-refresh-interval=\"50\">1</span>\r\n <span class=\"counter-label\">Hours Spent</span>\r\n\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n</div>\r\n\r\n<div id=\"fh5co-testimonial\">\r\n <div class=\"container\">\r\n <div class=\"row\">\r\n <div class=\"row animate-box\">\r\n <div class=\"col-md-8 col-md-offset-2 text-center fh5co-heading\">\r\n <span>Best Wishes</span>\r\n <h2>Friends Wishes</h2>\r\n </div>\r\n </div>\r\n <div class=\"row\">\r\n <div class=\"col-md-12 animate-box\">\r\n <div class=\"wrap-testimony\">\r\n <div class=\"owl-carousel-fullwidth\">\r\n <div class=\"item\">\r\n <div class=\"testimony-slide active text-center\">\r\n <figure>\r\n <img src=\"images/couple-1.jpg\" alt=\"user\">\r\n </figure>\r\n <span><NAME>, via <a href=\"#\" class=\"twitter\">Twitter</a></span>\r\n <blockquote>\r\n <p>\"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the Semantics\"</p>\r\n </blockquote>\r\n </div>\r\n </div>\r\n <div class=\"item\">\r\n <div class=\"testimony-slide active text-center\">\r\n <figure>\r\n <img src=\"images/couple-2.jpg\" alt=\"user\">\r\n </figure>\r\n <span><NAME>, via <a href=\"#\" class=\"twitter\">Twitter</a></span>\r\n <blockquote>\r\n <p>\"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, at the coast of the Semantics, a large language ocean.\"</p>\r\n </blockquote>\r\n </div>\r\n </div>\r\n <div class=\"item\">\r\n <div class=\"testimony-slide active text-center\">\r\n <figure>\r\n <img src=\"images/couple-3.jpg\" alt=\"user\">\r\n </figure>\r\n <span><NAME>, via <a href=\"#\" class=\"twitter\">Twitter</a></span>\r\n <blockquote>\r\n <p>\"Far far away, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean.\"</p>\r\n </blockquote>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n</div>\r\n\r\n<div id=\"fh5co-services\" class=\"fh5co-section-gray\">\r\n <div class=\"container\">\r\n \r\n <div class=\"row animate-box\">\r\n <div class=\"col-md-8 col-md-offset-2 text-center fh5co-heading\">\r\n <h2>We Offer Services</h2>\r\n <p>Dignissimos asperiores vitae velit veniam totam fuga molestias accusamus alias autem provident. Odit ab aliquam dolor eius.</p>\r\n </div>\r\n </div>\r\n\r\n <div class=\"row\">\r\n <div class=\"col-md-6\">\r\n <div class=\"feature-left animate-box\" data-animate-effect=\"fadeInLeft\">\r\n <span class=\"icon\">\r\n <i class=\"icon-calendar\"></i>\r\n </span>\r\n <div class=\"feature-copy\">\r\n <h3>We Organized Events</h3>\r\n <p>Facilis ipsum reprehenderit nemo molestias. Aut cum mollitia reprehenderit. Eos cumque dicta adipisci architecto culpa amet.</p>\r\n </div>\r\n </div>\r\n\r\n <div class=\"feature-left animate-box\" data-animate-effect=\"fadeInLeft\">\r\n <span class=\"icon\">\r\n <i class=\"icon-image\"></i>\r\n </span>\r\n <div class=\"feature-copy\">\r\n <h3>Photoshoot</h3>\r\n <p>Facilis ipsum reprehenderit nemo molestias. Aut cum mollitia reprehenderit. Eos cumque dicta adipisci architecto culpa amet.</p>\r\n </div>\r\n </div>\r\n\r\n <div class=\"feature-left animate-box\" data-animate-effect=\"fadeInLeft\">\r\n <span class=\"icon\">\r\n <i class=\"icon-video\"></i>\r\n </span>\r\n <div class=\"feature-copy\">\r\n <h3>Video Editing</h3>\r\n <p>Facilis ipsum reprehenderit nemo molestias. Aut cum mollitia reprehenderit. Eos cumque dicta adipisci architecto culpa amet.</p>\r\n </div>\r\n </div>\r\n\r\n </div>\r\n\r\n <div class=\"col-md-6 animate-box\">\r\n <div class=\"fh5co-video fh5co-bg\">\"\r\n <a href=\"https://vimeo.com/channels/staffpicks/93951774\" class=\"popup-vimeo\"><i class=\"icon-video2\"></i></a>\r\n <div class=\"overlay\"></div>\r\n </div>\r\n </div>\r\n </div>\r\n\r\n \r\n </div>\r\n</div>\r\n\r\n\r\n<div id=\"fh5co-started\" class=\"fh5co-bg\">\r\n <div class=\"overlay\"></div>\r\n <div class=\"container\">\r\n <div class=\"row animate-box\">\r\n <div class=\"col-md-8 col-md-offset-2 text-center fh5co-heading\">\r\n <h2>Are You Attending?</h2>\r\n <p>Please Fill-up the form to notify you that you\'re attending. Thanks.</p>\r\n </div>\r\n </div>\r\n <div class=\"row animate-box\">\r\n <div class=\"col-md-10 col-md-offset-1\">\r\n <form class=\"form-inline\">\r\n <div class=\"col-md-4 col-sm-4\">\r\n <div class=\"form-group\">\r\n <label for=\"name\" class=\"sr-only\">Name</label>\r\n <input type=\"name\" class=\"form-control\" id=\"name\" placeholder=\"Name\">\r\n </div>\r\n </div>\r\n <div class=\"col-md-4 col-sm-4\">\r\n <div class=\"form-group\">\r\n <label for=\"email\" class=\"sr-only\">Email</label>\r\n <input type=\"email\" class=\"form-control\" id=\"email\" placeholder=\"Email\">\r\n </div>\r\n </div>\r\n <div class=\"col-md-4 col-sm-4\">\r\n <button type=\"submit\" class=\"btn btn-default btn-block\">I am Attending</button>\r\n </div>\r\n </form>\r\n </div>\r\n </div>\r\n </div>\r\n</div>\r\n\r\n<footer id=\"fh5co-footer\" role=\"contentinfo\">\r\n <div class=\"container\">\r\n\r\n <div class=\"row copyright\">\r\n <div class=\"col-md-12 text-center\">\r\n <p>\r\n <small class=\"block\">© 2016 Free HTML5. All Rights Reserved.</small> \r\n <small class=\"block\">Designed by <a href=\"http://freehtml5.co/\" target=\"_blank\">FREEHTML5.co</a> Demo Images: <a href=\"http://unsplash.co/\" target=\"_blank\">Unsplash</a></small>\r\n </p>\r\n <p>\r\n </p><ul class=\"fh5co-social-icons\">\r\n <li><a href=\"#\"><i class=\"icon-twitter\"></i></a></li>\r\n <li><a href=\"#\"><i class=\"icon-facebook\"></i></a></li>\r\n <li><a href=\"#\"><i class=\"icon-linkedin\"></i></a></li>\r\n <li><a href=\"#\"><i class=\"icon-dribbble\"></i></a></li>\r\n </ul>\r\n <p></p>\r\n </div>\r\n </div>\r\n\r\n </div>\r\n</footer>\r\n</div>\r\n\r\n\r\n<div class=\"gototop js-top\">\r\n <a href=\"#\" class=\"js-gotop\"><i class=\"icon-arrow-up\"></i></a>\r\n</div>\r\n<script src=\"https://code.jquery.com/jquery-3.6.0.js\" integrity=\"sha256-H+K7U5CnXl1h5ywQfKtSj8PCmoN9aaq30gDh27Xc0jk=\" crossorigin=\"anonymous\"></script>\r\n\r\n<script>\r\nvar d = new Date(new Date().getTime() + 200 * 120 * 120 * 2000);\r\n\r\n// default example\r\nsimplyCountdown(\'.simply-countdown-one\', {\r\n year: d.getFullYear(),\r\n month: d.getMonth() + 1,\r\n day: d.getDate()\r\n});\r\n\r\n//jQuery example\r\n$(\'#simply-countdown-losange\').simplyCountdown({\r\n year: d.getFullYear(),\r\n month: d.getMonth() + 1,\r\n day: d.getDate(),\r\n enableUtc: false\r\n});\r\n</script>', '2021-05-17 17:13:09', '2021-05-17 17:13:09');
INSERT INTO `html_data` (`id`, `resource_id`, `source_code`, `updated_at`, `created_at`) VALUES
(15, 15, '<meta charset=\"utf-8\">\r\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\r\n<title>Wedding — 100% Free Fully Responsive HTML5 Template by FREEHTML5.co</title>\r\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\r\n\r\n\r\n\r\n\r\n<div id=\"page\">\r\n<nav class=\"fh5co-nav\" role=\"navigation\">\r\n <div class=\"container\">\r\n <div class=\"row\">\r\n <div class=\"col-xs-2\">\r\n <div id=\"fh5co-logo\"><a href=\"index.html\">Wedding<strong>.</strong></a></div>\r\n </div>\r\n <div class=\"col-xs-10 text-right menu-1\">\r\n <ul>\r\n <li class=\"active\"><a href=\"index.html\">Home</a></li>\r\n <li><a href=\"about.html\">Story</a></li>\r\n <li class=\"has-dropdown\">\r\n <a href=\"services.html\">Services</a>\r\n <ul class=\"dropdown\">\r\n <li><a href=\"#\">Web Design</a></li>\r\n <li><a href=\"#\">eCommerce</a></li>\r\n <li><a href=\"#\">Branding</a></li>\r\n <li><a href=\"#\">API</a></li>\r\n </ul>\r\n </li>\r\n <li class=\"has-dropdown\">\r\n <a href=\"gallery.html\">Gallery</a>\r\n <ul class=\"dropdown\">\r\n <li><a href=\"#\">HTML5</a></li>\r\n <li><a href=\"#\">CSS3</a></li>\r\n <li><a href=\"#\">Sass</a></li>\r\n <li><a href=\"#\">jQuery</a></li>\r\n </ul>\r\n </li>\r\n <li><a href=\"contact.html\">Contact</a></li>\r\n </ul>\r\n </div>\r\n </div>\r\n \r\n </div>\r\n</nav>\r\n\r\n<header id=\"fh5co-header\" class=\"fh5co-cover\" role=\"banner\" data-stellar-background-ratio=\"0.5\">\r\n <div class=\"overlay\"></div>\r\n <div class=\"container\">\r\n <div class=\"row\">\r\n <div class=\"col-md-8 col-md-offset-2 text-center\">\r\n <div class=\"display-t\">\r\n <div class=\"display-tc animate-box\" data-animate-effect=\"fadeIn\">\r\n <h1>Joefrey & Sheila</h1>\r\n <h2>We Are Getting Married</h2>\r\n <div class=\"simply-countdown simply-countdown-one\"></div>\r\n <p><a href=\"#\" class=\"btn btn-default btn-sm\">Save the date</a></p>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n</header>\r\n\r\n<div id=\"fh5co-couple\">\r\n <div class=\"container\">\r\n <div class=\"row\">\r\n <div class=\"col-md-8 col-md-offset-2 text-center fh5co-heading animate-box\">\r\n <h2>Hello!</h2>\r\n <h3>November 28th, 2016 New York, USA</h3>\r\n <p>We invited you to celebrate our wedding</p>\r\n </div>\r\n </div>\r\n <div class=\"couple-wrap animate-box\">\r\n <div class=\"couple-half\">\r\n <div class=\"groom\">\r\n <img src=\"\" alt=\"groom\" class=\"img-responsive\">\r\n </div>\r\n <div class=\"desc-groom\">\r\n <h3><NAME></h3>\r\n <p>daskjdsadhasdhkaksjdhskj</p>\r\n </div>\r\n </div>\r\n <p class=\"heart text-center\"><i class=\"icon-heart2\"></i></p>\r\n <div class=\"couple-half\">\r\n <div class=\"bride\">\r\n <img src=\"\" alt=\"groom\" class=\"img-responsive\">\r\n </div>\r\n <div class=\"desc-bride\">\r\n <h3><NAME></h3>\r\n <p>Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove</p>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n</div>\r\n\r\n<div id=\"fh5co-event\" class=\"fh5co-bg\" >\r\n <div class=\"overlay\"></div>\r\n <div class=\"container\">\r\n <div class=\"row\">\r\n <div class=\"col-md-8 col-md-offset-2 text-center fh5co-heading animate-box\">\r\n <span>Our Special Events</span>\r\n <h2>Wedding Events</h2>\r\n </div>\r\n </div>\r\n <div class=\"row\">\r\n <div class=\"display-t\">\r\n <div class=\"display-tc\">\r\n <div class=\"col-md-10 col-md-offset-1\">\r\n <div class=\"col-md-6 col-sm-6 text-center\">\r\n <div class=\"event-wrap animate-box\">\r\n <h3>Main Ceremony</h3>\r\n <div class=\"event-col\">\r\n <i class=\"icon-clock\"></i>\r\n <span>4:00 PM</span>\r\n <span>6:00 PM</span>\r\n </div>\r\n <div class=\"event-col\">\r\n <i class=\"icon-calendar\"></i>\r\n <span>Monday 28</span>\r\n <span>November, 2016</span>\r\n </div>\r\n <p>Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean.</p>\r\n </div>\r\n </div>\r\n <div class=\"col-md-6 col-sm-6 text-center\">\r\n <div class=\"event-wrap animate-box\">\r\n <h3>Wedding Party</h3>\r\n <div class=\"event-col\">\r\n <i class=\"icon-clock\"></i>\r\n <span>7:00 PM</span>\r\n <span>12:00 AM</span>\r\n </div>\r\n <div class=\"event-col\">\r\n <i class=\"icon-calendar\"></i>\r\n <span>Monday 28</span>\r\n <span>November, 2016</span>\r\n </div>\r\n <p>Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean.</p>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n</div>\r\n\r\n\r\n<div id=\"fh5co-gallery\" class=\"fh5co-section-gray\">\r\n <div class=\"container\">\r\n <div class=\"row\">\r\n <div class=\"col-md-8 col-md-offset-2 text-center fh5co-heading animate-box\">\r\n <span>Our Memories</span>\r\n <h2>Wedding Gallery</h2>\r\n <p>Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts.</p>\r\n </div>\r\n </div>\r\n <div class=\"row row-bottom-padded-md\">\r\n <div class=\"col-md-12\">\r\n <ul id=\"fh5co-gallery-list\">\r\n \r\n <li class=\"one-third animate-box\" data-animate-effect=\"fadeIn\" > \r\n <a href=\"\">\r\n <div class=\"case-studies-summary\">\r\n <span>14 Photos</span>\r\n <h2>Two Glas of Juice</h2>\r\n </div>\r\n </a>\r\n </li>\r\n <li class=\"one-third animate-box\" data-animate-effect=\"fadeIn\">\r\n <a href=\"#\" class=\"color-2\">\r\n <div class=\"case-studies-summary\">\r\n <span>30 Photos</span>\r\n <h2>Timer starts now!</h2>\r\n </div>\r\n </a>\r\n </li>\r\n\r\n\r\n <li class=\"one-third animate-box\" data-animate-effect=\"fadeIn\">\r\n <a href=\"#\" class=\"color-3\">\r\n <div class=\"case-studies-summary\">\r\n <span>90 Photos</span>\r\n <h2>Beautiful sunset</h2>\r\n </div>\r\n </a>\r\n </li>\r\n <li class=\"one-third animate-box\" data-animate-effect=\"fadeIn\">\r\n <a href=\"#\" class=\"color-4\">\r\n <div class=\"case-studies-summary\">\r\n <span>12 Photos</span>\r\n <h2>Company\'s Conference Room</h2>\r\n </div>\r\n </a>\r\n </li>\r\n\r\n <li class=\"one-third animate-box\" data-animate-effect=\"fadeIn\">\r\n <a href=\"#\" class=\"color-3\">\r\n <div class=\"case-studies-summary\">\r\n <span>50 Photos</span>\r\n <h2>Useful baskets</h2>\r\n </div>\r\n </a>\r\n </li>\r\n <li class=\"one-third animate-box\" data-animate-effect=\"fadeIn\">\r\n <a href=\"#\" class=\"color-4\">\r\n <div class=\"case-studies-summary\">\r\n <span>45 Photos</span>\r\n <h2>Skater man in the road</h2>\r\n </div>\r\n </a>\r\n </li>\r\n\r\n <li class=\"one-third animate-box\" data-animate-effect=\"fadeIn\">\r\n <a href=\"#\" class=\"color-4\">\r\n <div class=\"case-studies-summary\">\r\n <span>35 Photos</span>\r\n <h2>Two Glas of Juice</h2>\r\n </div>\r\n </a>\r\n </li>\r\n\r\n <li class=\"one-third animate-box\" data-animate-effect=\"fadeIn\"> \r\n <a href=\"#\" class=\"color-5\">\r\n <div class=\"case-studies-summary\">\r\n <span>90 Photos</span>\r\n <h2>Timer starts now!</h2>\r\n </div>\r\n </a>\r\n </li>\r\n <li class=\"one-third animate-box\" data-animate-effect=\"fadeIn\">\r\n <a href=\"#\" class=\"color-6\">\r\n <div class=\"case-studies-summary\">\r\n <span>56 Photos</span>\r\n <h2>Beautiful sunset</h2>\r\n </div>\r\n </a>\r\n </li>\r\n </ul> \r\n </div>\r\n </div>\r\n </div>\r\n</div>\r\n\r\n<div id=\"fh5co-counter\" class=\"fh5co-bg fh5co-counter\">\r\n <div class=\"overlay\"></div>\r\n <div class=\"container\">\r\n <div class=\"row\">\r\n <div class=\"display-t\">\r\n <div class=\"display-tc\">\r\n <div class=\"col-md-3 col-sm-6 animate-box\">\r\n <div class=\"feature-center\">\r\n <span class=\"icon\">\r\n <i class=\"icon-users\"></i>\r\n </span>\r\n\r\n <span class=\"counter js-counter\" data-from=\"0\" data-to=\"500\" data-speed=\"5000\" data-refresh-interval=\"50\">1</span>\r\n <span class=\"counter-label\">Estimated Guest</span>\r\n\r\n </div>\r\n </div>\r\n <div class=\"col-md-3 col-sm-6 animate-box\">\r\n <div class=\"feature-center\">\r\n <span class=\"icon\">\r\n <i class=\"icon-user\"></i>\r\n </span>\r\n\r\n <span class=\"counter js-counter\" data-from=\"0\" data-to=\"1000\" data-speed=\"5000\" data-refresh-interval=\"50\">1</span>\r\n <span class=\"counter-label\">We Catter</span>\r\n </div>\r\n </div>\r\n <div class=\"col-md-3 col-sm-6 animate-box\">\r\n <div class=\"feature-center\">\r\n <span class=\"icon\">\r\n <i class=\"icon-calendar\"></i>\r\n </span>\r\n <span class=\"counter js-counter\" data-from=\"0\" data-to=\"402\" data-speed=\"5000\" data-refresh-interval=\"50\">1</span>\r\n <span class=\"counter-label\">Events Done</span>\r\n </div>\r\n </div>\r\n <div class=\"col-md-3 col-sm-6 animate-box\">\r\n <div class=\"feature-center\">\r\n <span class=\"icon\">\r\n <i class=\"icon-clock\"></i>\r\n </span>\r\n\r\n <span class=\"counter js-counter\" data-from=\"0\" data-to=\"2345\" data-speed=\"5000\" data-refresh-interval=\"50\">1</span>\r\n <span class=\"counter-label\">Hours Spent</span>\r\n\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n</div>\r\n\r\n<div id=\"fh5co-testimonial\">\r\n <div class=\"container\">\r\n <div class=\"row\">\r\n <div class=\"row animate-box\">\r\n <div class=\"col-md-8 col-md-offset-2 text-center fh5co-heading\">\r\n <span>Best Wishes</span>\r\n <h2>Friends Wishes</h2>\r\n </div>\r\n </div>\r\n <div class=\"row\">\r\n <div class=\"col-md-12 animate-box\">\r\n <div class=\"wrap-testimony\">\r\n <div class=\"owl-carousel-fullwidth\">\r\n <div class=\"item\">\r\n <div class=\"testimony-slide active text-center\">\r\n <figure>\r\n <img src=\"images/couple-1.jpg\" alt=\"user\">\r\n </figure>\r\n <span><NAME>, via <a href=\"#\" class=\"twitter\">Twitter</a></span>\r\n <blockquote>\r\n <p>\"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the Semantics\"</p>\r\n </blockquote>\r\n </div>\r\n </div>\r\n <div class=\"item\">\r\n <div class=\"testimony-slide active text-center\">\r\n <figure>\r\n <img src=\"images/couple-2.jpg\" alt=\"user\">\r\n </figure>\r\n <span><NAME>, via <a href=\"#\" class=\"twitter\">Twitter</a></span>\r\n <blockquote>\r\n <p>\"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, at the coast of the Semantics, a large language ocean.\"</p>\r\n </blockquote>\r\n </div>\r\n </div>\r\n <div class=\"item\">\r\n <div class=\"testimony-slide active text-center\">\r\n <figure>\r\n <img src=\"images/couple-3.jpg\" alt=\"user\">\r\n </figure>\r\n <span><NAME>, via <a href=\"#\" class=\"twitter\">Twitter</a></span>\r\n <blockquote>\r\n <p>\"Far far away, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean.\"</p>\r\n </blockquote>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n</div>\r\n\r\n<div id=\"fh5co-services\" class=\"fh5co-section-gray\">\r\n <div class=\"container\">\r\n \r\n <div class=\"row animate-box\">\r\n <div class=\"col-md-8 col-md-offset-2 text-center fh5co-heading\">\r\n <h2>We Offer Services</h2>\r\n <p>Dignissimos asperiores vitae velit veniam totam fuga molestias accusamus alias autem provident. Odit ab aliquam dolor eius.</p>\r\n </div>\r\n </div>\r\n\r\n <div class=\"row\">\r\n <div class=\"col-md-6\">\r\n <div class=\"feature-left animate-box\" data-animate-effect=\"fadeInLeft\">\r\n <span class=\"icon\">\r\n <i class=\"icon-calendar\"></i>\r\n </span>\r\n <div class=\"feature-copy\">\r\n <h3>We Organized Events</h3>\r\n <p>Facilis ipsum reprehenderit nemo molestias. Aut cum mollitia reprehenderit. Eos cumque dicta adipisci architecto culpa amet.</p>\r\n </div>\r\n </div>\r\n\r\n <div class=\"feature-left animate-box\" data-animate-effect=\"fadeInLeft\">\r\n <span class=\"icon\">\r\n <i class=\"icon-image\"></i>\r\n </span>\r\n <div class=\"feature-copy\">\r\n <h3>Photoshoot</h3>\r\n <p>Facilis ipsum reprehenderit nemo molestias. Aut cum mollitia reprehenderit. Eos cumque dicta adipisci architecto culpa amet.</p>\r\n </div>\r\n </div>\r\n\r\n <div class=\"feature-left animate-box\" data-animate-effect=\"fadeInLeft\">\r\n <span class=\"icon\">\r\n <i class=\"icon-video\"></i>\r\n </span>\r\n <div class=\"feature-copy\">\r\n <h3>Video Editing</h3>\r\n <p>Facilis ipsum reprehenderit nemo molestias. Aut cum mollitia reprehenderit. Eos cumque dicta adipisci architecto culpa amet.</p>\r\n </div>\r\n </div>\r\n\r\n </div>\r\n\r\n <div class=\"col-md-6 animate-box\">\r\n <div class=\"fh5co-video fh5co-bg\">\"\r\n <a href=\"https://vimeo.com/channels/staffpicks/93951774\" class=\"popup-vimeo\"><i class=\"icon-video2\"></i></a>\r\n <div class=\"overlay\"></div>\r\n </div>\r\n </div>\r\n </div>\r\n\r\n \r\n </div>\r\n</div>\r\n\r\n\r\n<div id=\"fh5co-started\" class=\"fh5co-bg\">\r\n <div class=\"overlay\"></div>\r\n <div class=\"container\">\r\n <div class=\"row animate-box\">\r\n <div class=\"col-md-8 col-md-offset-2 text-center fh5co-heading\">\r\n <h2>Are You Attending?</h2>\r\n <p>Please Fill-up the form to notify you that you\'re attending. Thanks.</p>\r\n </div>\r\n </div>\r\n <div class=\"row animate-box\">\r\n <div class=\"col-md-10 col-md-offset-1\">\r\n <form class=\"form-inline\">\r\n <div class=\"col-md-4 col-sm-4\">\r\n <div class=\"form-group\">\r\n <label for=\"name\" class=\"sr-only\">Name</label>\r\n <input type=\"name\" class=\"form-control\" id=\"name\" placeholder=\"Name\">\r\n </div>\r\n </div>\r\n <div class=\"col-md-4 col-sm-4\">\r\n <div class=\"form-group\">\r\n <label for=\"email\" class=\"sr-only\">Email</label>\r\n <input type=\"email\" class=\"form-control\" id=\"email\" placeholder=\"Email\">\r\n </div>\r\n </div>\r\n <div class=\"col-md-4 col-sm-4\">\r\n <button type=\"submit\" class=\"btn btn-default btn-block\">I am Attending</button>\r\n </div>\r\n </form>\r\n </div>\r\n </div>\r\n </div>\r\n</div>\r\n\r\n<footer id=\"fh5co-footer\" role=\"contentinfo\">\r\n <div class=\"container\">\r\n\r\n <div class=\"row copyright\">\r\n <div class=\"col-md-12 text-center\">\r\n <p>\r\n <small class=\"block\">© 2016 Free HTML5. All Rights Reserved.</small> \r\n <small class=\"block\">Designed by <a href=\"http://freehtml5.co/\" target=\"_blank\">FREEHTML5.co</a> Demo Images: <a href=\"http://unsplash.co/\" target=\"_blank\">Unsplash</a></small>\r\n </p>\r\n <p>\r\n </p><ul class=\"fh5co-social-icons\">\r\n <li><a href=\"#\"><i class=\"icon-twitter\"></i></a></li>\r\n <li><a href=\"#\"><i class=\"icon-facebook\"></i></a></li>\r\n <li><a href=\"#\"><i class=\"icon-linkedin\"></i></a></li>\r\n <li><a href=\"#\"><i class=\"icon-dribbble\"></i></a></li>\r\n </ul>\r\n <p></p>\r\n </div>\r\n </div>\r\n\r\n </div>\r\n</footer>\r\n</div>\r\n\r\n\r\n<div class=\"gototop js-top\">\r\n <a href=\"#\" class=\"js-gotop\"><i class=\"icon-arrow-up\"></i></a>\r\n</div>\r\n<script src=\"https://code.jquery.com/jquery-3.6.0.js\" integrity=\"sha256-H+K7U5CnXl1h5ywQfKtSj8PCmoN9aaq30gDh27Xc0jk=\" crossorigin=\"anonymous\"></script>\r\n\r\n<script>\r\nvar d = new Date(new Date().getTime() + 200 * 120 * 120 * 2000);\r\n\r\n// default example\r\nsimplyCountdown(\'.simply-countdown-one\', {\r\n year: d.getFullYear(),\r\n month: d.getMonth() + 1,\r\n day: d.getDate()\r\n});\r\n\r\n//jQuery example\r\n$(\'#simply-countdown-losange\').simplyCountdown({\r\n year: d.getFullYear(),\r\n month: d.getMonth() + 1,\r\n day: d.getDate(),\r\n enableUtc: false\r\n});\r\n</script>', '2021-05-17 19:51:32', '2021-05-17 19:51:32');
-- --------------------------------------------------------
--
-- Table structure for table `js_data`
--
CREATE TABLE `js_data` (
`id` bigint NOT NULL,
`resource_id` bigint NOT NULL,
`file` varchar(255) NOT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
--
-- Dumping data for table `js_data`
--
INSERT INTO `js_data` (`id`, `resource_id`, `file`, `updated_at`, `created_at`) VALUES
(2, 12, 'simplyCountdown.js,respond.min.js,owl.carousel.min.js,modernizr-2.6.2.min.js,main.js,magnific-popup-options.js,jquery.waypoints.min.js,jquery.stellar.min.js,jquery.min.js,jquery.magnific-popup.min.js,jquery.easing.1.3.js', '2021-05-17 06:59:47', '2021-05-17 06:59:47'),
(4, 14, 'simplyCountdown.js,respond.min.js,owl.carousel.min.js,modernizr-2.6.2.min.js,main.js,magnific-popup-options.js,jquery.waypoints.min.js,jquery.stellar.min.js,jquery.min.js,jquery.magnific-popup.min.js,jquery.easing.1.3.js', '2021-05-17 17:13:09', '2021-05-17 17:13:09'),
(5, 15, 'simplyCountdown.js,respond.min.js,owl.carousel.min.js,modernizr-2.6.2.min.js,main.js,magnific-popup-options.js,jquery.waypoints.min.js,jquery.stellar.min.js,jquery.min.js,jquery.magnific-popup.min.js,jquery.easing.1.3.js', '2021-05-17 19:51:32', '2021-05-17 19:51:32');
-- --------------------------------------------------------
--
-- Table structure for table `migrations`
--
CREATE TABLE `migrations` (
`id` int UNSIGNED NOT NULL,
`migration` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`batch` int NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `migrations`
--
INSERT INTO `migrations` (`id`, `migration`, `batch`) VALUES
(1, '2014_10_12_000000_create_users_table', 1),
(2, '2014_10_12_100000_create_password_resets_table', 1),
(3, '2019_08_19_000000_create_failed_jobs_table', 1);
-- --------------------------------------------------------
--
-- Table structure for table `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;
-- --------------------------------------------------------
--
-- Table structure for table `resource`
--
CREATE TABLE `resource` (
`id` bigint NOT NULL,
`title` varchar(255) NOT NULL,
`author` varchar(255) NOT NULL,
`thumb` varchar(255) NOT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
--
-- Dumping data for table `resource`
--
INSERT INTO `resource` (`id`, `title`, `author`, `thumb`, `updated_at`, `created_at`) VALUES
(12, 'Weeding Template', '/tmp/php1AjY1p', '/resource/img/1621259987_wedding.png', '2021-05-17 06:59:47', '2021-05-17 06:59:47'),
(14, 'wedding 2', '/tmp/phpUFEK8f', '/resource/img/1621296789_wedding.png', '2021-05-17 17:13:09', '2021-05-17 17:13:09'),
(15, 'wedding 3', '/tmp/phpZ5q8DH', '/resource/img/1621306292_wedding.png', '2021-05-17 19:51:32', '2021-05-17 19:51:32');
-- --------------------------------------------------------
--
-- Table structure for table `users`
--
CREATE TABLE `users` (
`id` bigint UNSIGNED NOT NULL,
`name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`email` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`email_verified_at` timestamp NULL DEFAULT NULL,
`password` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `users`
--
INSERT INTO `users` (`id`, `name`, `email`, `email_verified_at`, `password`, `remember_token`, `created_at`, `updated_at`) VALUES
(1, 'admin', '<EMAIL>', NULL, '$2y$10$qXlogh4vFucNzTHUqXQDdeYA/QkiQQyeXBcgk9Mz00vsIBXDjQ9cS', NULL, '2021-05-15 18:39:10', '2021-05-15 18:39:10'),
(2, 'shiki', '<EMAIL>', NULL, '$2y$10$.tXe3ZYTlYrjpWXGtSHEj.KZFYmNIJ/c4lCqggt4mbMi6bDodNa2C', NULL, '2021-05-17 05:19:09', '2021-05-17 05:19:09'),
(3, 'shini', '<EMAIL>', NULL, '$2y$10$J4kY.xtrymRfZV.nFqPFIu0gU4D09e6GeZF5s4NEVb8hl.HIFhXIi', NULL, '2021-05-17 17:04:41', '2021-05-17 17:04:41'),
(4, 'shinra', '<EMAIL>', NULL, '$2y$10$r.0vWd8Dg/ZRbptanXAze.LGo1ZCTxjsflz5Ox85psTF8lmaOkyPK', NULL, '2021-05-17 17:13:42', '2021-05-17 17:13:42'),
(5, 'naruto', '<EMAIL>', NULL, '$2y$10$HffMz75RyeNHCWzkWeLJ8OO2/yBluAFjGEhutO6YrCVNDtfiapaCG', NULL, '2021-05-17 19:52:25', '2021-05-17 19:52:25');
-- --------------------------------------------------------
--
-- Table structure for table `view_client`
--
CREATE TABLE `view_client` (
`id` int NOT NULL,
`user_id` bigint NOT NULL,
`resource_id` bigint NOT NULL,
`code` text NOT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
--
-- Dumping data for table `view_client`
--
INSERT INTO `view_client` (`id`, `user_id`, `resource_id`, `code`, `updated_at`, `created_at`) VALUES
(3, 2, 12, '<meta charset=\"utf-8\">\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n<title>Wedding — 100% Free Fully Responsive HTML5 Template by FREEHTML5.co</title>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n\n <link href=\"https://fonts.googleapis.com/css?family=Work+Sans:400,300,600,400italic,700\" rel=\"stylesheet\" type=\"text/css\">\n <link href=\"https://fonts.googleapis.com/css?family=Sacramento\" rel=\"stylesheet\">\n \n\n\n\n<div id=\"page\">\n<nav class=\"fh5co-nav\" role=\"navigation\">\n <div class=\"container\">\n <div class=\"row\">\n <div class=\"col-xs-2\">\n <div id=\"fh5co-logo\"><a href=\"index.html\">Wedding<strong>.</strong></a></div>\n </div>\n <div class=\"col-xs-10 text-right menu-1\">\n <ul>\n <li class=\"active\"><a href=\"index.html\">Home</a></li>\n <li><a href=\"about.html\">Story</a></li>\n <li class=\"has-dropdown\">\n <a href=\"services.html\">Services</a>\n <ul class=\"dropdown\">\n <li><a href=\"#\">Web Design</a></li>\n <li><a href=\"#\">eCommerce</a></li>\n <li><a href=\"#\">Branding</a></li>\n <li><a href=\"#\">API</a></li>\n </ul>\n </li>\n <li class=\"has-dropdown\">\n <a href=\"gallery.html\">Gallery</a>\n <ul class=\"dropdown\">\n <li><a href=\"#\">HTML5</a></li>\n <li><a href=\"#\">CSS3</a></li>\n <li><a href=\"#\">Sass</a></li>\n <li><a href=\"#\">jQuery</a></li>\n </ul>\n </li>\n <li><a href=\"contact.html\">Contact</a></li>\n </ul>\n </div>\n </div>\n \n </div>\n</nav>\n\n<header id=\"fh5co-header\" class=\"fh5co-cover\" role=\"banner\" data-stellar-background-ratio=\"0.5\">\n <div class=\"overlay\"></div>\n <div class=\"container\">\n <div class=\"row\">\n <div class=\"col-md-8 col-md-offset-2 text-center\">\n <div class=\"display-t\">\n <div class=\"display-tc animate-box\" data-animate-effect=\"fadeIn\">\n <h1>Joefrey & Sheila</h1>\n <h2>We Are Getting Married</h2>\n <div class=\"simply-countdown simply-countdown-one\"></div>\n <p><a href=\"#\" class=\"btn btn-default btn-sm\">Save the date</a></p>\n </div>\n </div>\n </div>\n </div>\n </div>\n</header>\n\n<div id=\"fh5co-couple\">\n <div class=\"container\">\n <div class=\"row\">\n <div class=\"col-md-8 col-md-offset-2 text-center fh5co-heading animate-box\">\n <h2>Hello!</h2>\n <h3>November 28th, 2016 New York, USA</h3>\n <p>We invited you to celebrate our wedding</p>\n </div>\n </div>\n <div class=\"couple-wrap animate-box\">\n <div class=\"couple-half\">\n <div class=\"groom\">\n <img src=\"https://i.pinimg.com/236x/33/7d/50/337d502384b8f632572da407acb3baa9.jpg\" alt=\"groom\" class=\"img-responsive\">\n </div>\n <div class=\"desc-groom\">\n <h3>Uesugi san</h3>\n <p>belajar jan bodo</p>\n </div>\n </div>\n <p class=\"heart text-center\">Love</p>\n <div class=\"couple-half\">\n <div class=\"bride\">\n <img src=\"https://cdn.myanimelist.net/images/characters/11/401235.jpg\" alt=\"groom\" class=\"img-responsive\">\n </div>\n <div class=\"desc-bride\">\n <h3>Ichika Nakano</h3>\n <p>gakmauu ahh</p>\n </div>\n </div>\n </div>\n </div>\n</div>\n\n<div id=\"fh5co-event\" class=\"fh5co-bg\">\n <div class=\"overlay\"></div>\n <div class=\"container\">\n <div class=\"row\">\n <div class=\"col-md-8 col-md-offset-2 text-center fh5co-heading animate-box\">\n <span>Our Special Events</span>\n <h2>Wedding Events</h2>\n </div>\n </div>\n <div class=\"row\">\n <div class=\"display-t\">\n <div class=\"display-tc\">\n <div class=\"col-md-10 col-md-offset-1\">\n <div class=\"col-md-6 col-sm-6 text-center\">\n <div class=\"event-wrap animate-box\">\n <h3>Main Ceremony</h3>\n <div class=\"event-col\">\n <i class=\"icon-clock\"></i>\n <span>4:00 PM</span>\n <span>6:00 PM</span>\n </div>\n <div class=\"event-col\">\n <i class=\"icon-calendar\"></i>\n <span>Monday 28</span>\n <span>November, 2016</span>\n </div>\n <p>Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean.</p>\n </div>\n </div>\n <div class=\"col-md-6 col-sm-6 text-center\">\n <div class=\"event-wrap animate-box\">\n <h3>Wedding Party</h3>\n <div class=\"event-col\">\n <i class=\"icon-clock\"></i>\n <span>7:00 PM</span>\n <span>12:00 AM</span>\n </div>\n <div class=\"event-col\">\n <i class=\"icon-calendar\"></i>\n <span>Monday 28</span>\n <span>November, 2016</span>\n </div>\n <p>Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean.</p>\n </div>\n </div>\n </div>\n </div>\n </div>\n </div>\n </div>\n</div>\n\n\n<div id=\"fh5co-gallery\" class=\"fh5co-section-gray\">\n <div class=\"container\">\n <div class=\"row\">\n <div class=\"col-md-8 col-md-offset-2 text-center fh5co-heading animate-box\">\n <span>Our Memories</span>\n <h2>Wedding Gallery</h2>\n <p>Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts.</p>\n </div>\n </div>\n <div class=\"row row-bottom-padded-md\">\n <div class=\"col-md-12\">\n <ul id=\"fh5co-gallery-list\">\n \n <li class=\"one-third animate-box\" data-animate-effect=\"fadeIn\"> \n <a href=\"\">\n <div class=\"case-studies-summary\">\n <span>14 Photos</span>\n <h2>Two Glas of Juice</h2>\n </div>\n </a>\n </li>\n <li class=\"one-third animate-box\" data-animate-effect=\"fadeIn\">\n <a href=\"#\" class=\"color-2\">\n <div class=\"case-studies-summary\">\n <span>30 Photos</span>\n <h2>Timer starts now!</h2>\n </div>\n </a>\n </li>\n\n\n <li class=\"one-third animate-box\" data-animate-effect=\"fadeIn\">\n <a href=\"#\" class=\"color-3\">\n <div class=\"case-studies-summary\">\n <span>90 Photos</span>\n <h2>Beautiful sunset</h2>\n </div>\n </a>\n </li>\n <li class=\"one-third animate-box\" data-animate-effect=\"fadeIn\">\n <a href=\"#\" class=\"color-4\">\n <div class=\"case-studies-summary\">\n <span>12 Photos</span>\n <h2>Company\'s Conference Room</h2>\n </div>\n </a>\n </li>\n\n <li class=\"one-third animate-box\" data-animate-effect=\"fadeIn\">\n <a href=\"#\" class=\"color-3\">\n <div class=\"case-studies-summary\">\n <span>50 Photos</span>\n <h2>Useful baskets</h2>\n </div>\n </a>\n </li>\n <li class=\"one-third animate-box\" data-animate-effect=\"fadeIn\">\n <a href=\"#\" class=\"color-4\">\n <div class=\"case-studies-summary\">\n <span>45 Photos</span>\n <h2>Skater man in the road</h2>\n </div>\n </a>\n </li>\n\n <li class=\"one-third animate-box\" data-animate-effect=\"fadeIn\">\n <a href=\"#\" class=\"color-4\">\n <div class=\"case-studies-summary\">\n <span>35 Photos</span>\n <h2>Two Glas of Juice</h2>\n </div>\n </a>\n </li>\n\n <li class=\"one-third animate-box\" data-animate-effect=\"fadeIn\"> \n <a href=\"#\" class=\"color-5\">\n <div class=\"case-studies-summary\">\n <span>90 Photos</span>\n <h2>Timer starts now!</h2>\n </div>\n </a>\n </li>\n <li class=\"one-third animate-box\" data-animate-effect=\"fadeIn\">\n <a href=\"#\" class=\"color-6\">\n <div class=\"case-studies-summary\">\n <span>56 Photos</span>\n <h2>Beautiful sunset</h2>\n </div>\n </a>\n </li>\n </ul> \n </div>\n </div>\n </div>\n</div>\n\n<div id=\"fh5co-counter\" class=\"fh5co-bg fh5co-counter\">\n <div class=\"overlay\"></div>\n <div class=\"container\">\n <div class=\"row\">\n <div class=\"display-t\">\n <div class=\"display-tc\">\n <div class=\"col-md-3 col-sm-6 animate-box\">\n <div class=\"feature-center\">\n <span class=\"icon\">\n <i class=\"icon-users\"></i>\n </span>\n\n <span class=\"counter js-counter\" data-from=\"0\" data-to=\"500\" data-speed=\"5000\" data-refresh-interval=\"50\">1</span>\n <span class=\"counter-label\">Estimated Guest</span>\n\n </div>\n </div>\n <div class=\"col-md-3 col-sm-6 animate-box\">\n <div class=\"feature-center\">\n <span class=\"icon\">\n <i class=\"icon-user\"></i>\n </span>\n\n <span class=\"counter js-counter\" data-from=\"0\" data-to=\"1000\" data-speed=\"5000\" data-refresh-interval=\"50\">1</span>\n <span class=\"counter-label\">We Catter</span>\n </div>\n </div>\n <div class=\"col-md-3 col-sm-6 animate-box\">\n <div class=\"feature-center\">\n <span class=\"icon\">\n <i class=\"icon-calendar\"></i>\n </span>\n <span class=\"counter js-counter\" data-from=\"0\" data-to=\"402\" data-speed=\"5000\" data-refresh-interval=\"50\">1</span>\n <span class=\"counter-label\">Events Done</span>\n </div>\n </div>\n <div class=\"col-md-3 col-sm-6 animate-box\">\n <div class=\"feature-center\">\n <span class=\"icon\">\n <i class=\"icon-clock\"></i>\n </span>\n\n <span class=\"counter js-counter\" data-from=\"0\" data-to=\"2345\" data-speed=\"5000\" data-refresh-interval=\"50\">1</span>\n <span class=\"counter-label\">Hours Spent</span>\n\n </div>\n </div>\n </div>\n </div>\n </div>\n </div>\n</div>\n\n<div id=\"fh5co-testimonial\">\n <div class=\"container\">\n <div class=\"row\">\n <div class=\"row animate-box\">\n <div class=\"col-md-8 col-md-offset-2 text-center fh5co-heading\">\n <span>Best Wishes</span>\n <h2>Friends Wishes</h2>\n </div>\n </div>\n <div class=\"row\">\n <div class=\"col-md-12 animate-box\">\n <div class=\"wrap-testimony\">\n <div class=\"owl-carousel-fullwidth\">\n <div class=\"item\">\n <div class=\"testimony-slide active text-center\">\n <figure>\n <img src=\"images/couple-1.jpg\" alt=\"user\">\n </figure>\n <span><NAME>, via <a href=\"#\" class=\"twitter\">Twitter</a></span>\n <blockquote>\n <p>\"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the Semantics\"</p>\n </blockquote>\n </div>\n </div>\n <div class=\"item\">\n <div class=\"testimony-slide active text-center\">\n <figure>\n <img src=\"images/couple-2.jpg\" alt=\"user\">\n </figure>\n <span><NAME>, via <a href=\"#\" class=\"twitter\">Twitter</a></span>\n <blockquote>\n <p>\"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, at the coast of the Semantics, a large language ocean.\"</p>\n </blockquote>\n </div>\n </div>\n <div class=\"item\">\n <div class=\"testimony-slide active text-center\">\n <figure>\n <img src=\"images/couple-3.jpg\" alt=\"user\">\n </figure>\n <span><NAME>, via <a href=\"#\" class=\"twitter\">Twitter</a></span>\n <blockquote>\n <p>\"Far far away, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean.\"</p>\n </blockquote>\n </div>\n </div>\n </div>\n </div>\n </div>\n </div>\n </div>\n </div>\n</div>\n\n<div id=\"fh5co-services\" class=\"fh5co-section-gray\">\n <div class=\"container\">\n \n <div class=\"row animate-box\">\n <div class=\"col-md-8 col-md-offset-2 text-center fh5co-heading\">\n <h2>We Offer Services</h2>\n <p>Dignissimos asperiores vitae velit veniam totam fuga molestias accusamus alias autem provident. Odit ab aliquam dolor eius.</p>\n </div>\n </div>\n\n <div class=\"row\">\n <div class=\"col-md-6\">\n <div class=\"feature-left animate-box\" data-animate-effect=\"fadeInLeft\">\n <span class=\"icon\">\n <i class=\"icon-calendar\"></i>\n </span>\n <div class=\"feature-copy\">\n <h3>We Organized Events</h3>\n <p>Facilis ipsum reprehenderit nemo molestias. Aut cum mollitia reprehenderit. Eos cumque dicta adipisci architecto culpa amet.</p>\n </div>\n </div>\n\n <div class=\"feature-left animate-box\" data-animate-effect=\"fadeInLeft\">\n <span class=\"icon\">\n <i class=\"icon-image\"></i>\n </span>\n <div class=\"feature-copy\">\n <h3>Photoshoot</h3>\n <p>Facilis ipsum reprehenderit nemo molestias. Aut cum mollitia reprehenderit. Eos cumque dicta adipisci architecto culpa amet.</p>\n </div>\n </div>\n\n <div class=\"feature-left animate-box\" data-animate-effect=\"fadeInLeft\">\n <span class=\"icon\">\n <i class=\"icon-video\"></i>\n </span>\n <div class=\"feature-copy\">\n <h3>Video Editing</h3>\n <p>Facilis ipsum reprehenderit nemo molestias. Aut cum mollitia reprehenderit. Eos cumque dicta adipisci architecto culpa amet.</p>\n </div>\n </div>\n\n </div>\n\n <div class=\"col-md-6 animate-box\">\n <div class=\"fh5co-video fh5co-bg\">\"\n <a href=\"https://vimeo.com/channels/staffpicks/93951774\" class=\"popup-vimeo\"><i class=\"icon-video2\"></i></a>\n <div class=\"overlay\"></div>\n </div>\n </div>\n </div>\n\n \n </div>\n</div>\n\n\n<div id=\"fh5co-started\" class=\"fh5co-bg\">\n <div class=\"overlay\"></div>\n <div class=\"container\">\n <div class=\"row animate-box\">\n <div class=\"col-md-8 col-md-offset-2 text-center fh5co-heading\">\n <h2>Are You Attending?</h2>\n <p>Please Fill-up the form to notify you that you\'re attending. Thanks.</p>\n </div>\n </div>\n <div class=\"row animate-box\">\n <div class=\"col-md-10 col-md-offset-1\">\n <form class=\"form-inline\">\n <div class=\"col-md-4 col-sm-4\">\n <div class=\"form-group\">\n <label for=\"name\" class=\"sr-only\">Name</label>\n <input type=\"name\" class=\"form-control\" id=\"name\" placeholder=\"Name\">\n </div>\n </div>\n <div class=\"col-md-4 col-sm-4\">\n <div class=\"form-group\">\n <label for=\"email\" class=\"sr-only\">Email</label>\n <input type=\"email\" class=\"form-control\" id=\"email\" placeholder=\"Email\">\n </div>\n </div>\n <div class=\"col-md-4 col-sm-4\">\n <button type=\"submit\" class=\"btn btn-default btn-block\">I am Attending</button>\n </div>\n </form>\n </div>\n </div>\n </div>\n</div>\n\n<footer id=\"fh5co-footer\" role=\"contentinfo\">\n <div class=\"container\">\n\n <div class=\"row copyright\">\n <div class=\"col-md-12 text-center\">\n <p>\n <small class=\"block\">© 2016 Free HTML5. All Rights Reserved.</small> \n <small class=\"block\">Designed by <a href=\"http://freehtml5.co/\" target=\"_blank\">FREEHTML5.co</a> Demo Images: <a href=\"http://unsplash.co/\" target=\"_blank\">Unsplash</a></small>\n </p>\n <p>\n </p><ul class=\"fh5co-social-icons\">\n <li><a href=\"#\"><i class=\"icon-twitter\"></i></a></li>\n <li><a href=\"#\"><i class=\"icon-facebook\"></i></a></li>\n <li><a href=\"#\"><i class=\"icon-linkedin\"></i></a></li>\n <li><a href=\"#\"><i class=\"icon-dribbble\"></i></a></li>\n </ul>\n <p></p>\n </div>\n </div>\n\n </div>\n</footer>\n</div>\n\n\n<div class=\"gototop js-top\">\n <a href=\"#\" class=\"js-gotop\"><i class=\"icon-arrow-up\"></i></a>\n</div>\n<script src=\"https://code.jquery.com/jquery-3.6.0.js\" integrity=\"sha256-H+K7U5CnXl1h5ywQfKtSj8PCmoN9aaq30gDh27Xc0jk=\" crossorigin=\"anonymous\"></script>\n\n<script>\nvar d = new Date(new Date().getTime() + 200 * 120 * 120 * 2000);\n\n// default example\nsimplyCountdown(\'.simply-countdown-one\', {\n year: d.getFullYear(),\n month: d.getMonth() + 1,\n day: d.getDate()\n});\n\n//jQuery example\n$(\'#simply-countdown-losange\').simplyCountdown({\n year: d.getFullYear(),\n month: d.getMonth() + 1,\n day: d.getDate(),\n enableUtc: false\n});\n</script>', '2021-05-17 07:14:35', '2021-05-17 07:07:57');
INSERT INTO `view_client` (`id`, `user_id`, `resource_id`, `code`, `updated_at`, `created_at`) VALUES
(5, 4, 12, '<meta charset=\"utf-8\">\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n<title>Wedding — 100% Free Fully Responsive HTML5 Template by FREEHTML5.co</title>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n\n\n\n\n<div id=\"page\">\n<nav class=\"fh5co-nav\" role=\"navigation\">\n <div class=\"container\">\n <div class=\"row\">\n <div class=\"col-xs-2\">\n <div id=\"fh5co-logo\"><a href=\"index.html\">Wedding<strong>.</strong></a></div>\n </div>\n <div class=\"col-xs-10 text-right menu-1\">\n <ul>\n <li class=\"active\"><a href=\"index.html\">Home</a></li>\n <li><a href=\"about.html\">Story</a></li>\n <li class=\"has-dropdown\">\n <a href=\"services.html\">Services</a>\n <ul class=\"dropdown\">\n <li><a href=\"#\">Web Design</a></li>\n <li><a href=\"#\">eCommerce</a></li>\n <li><a href=\"#\">Branding</a></li>\n <li><a href=\"#\">API</a></li>\n </ul>\n </li>\n <li class=\"has-dropdown\">\n <a href=\"gallery.html\">Gallery</a>\n <ul class=\"dropdown\">\n <li><a href=\"#\">HTML5</a></li>\n <li><a href=\"#\">CSS3</a></li>\n <li><a href=\"#\">Sass</a></li>\n <li><a href=\"#\">jQuery</a></li>\n </ul>\n </li>\n <li><a href=\"contact.html\">Contact</a></li>\n </ul>\n </div>\n </div>\n \n </div>\n</nav>\n\n<header id=\"fh5co-header\" class=\"fh5co-cover\" role=\"banner\" data-stellar-background-ratio=\"0.5\">\n <div class=\"overlay\"></div>\n <div class=\"container\">\n <div class=\"row\">\n <div class=\"col-md-8 col-md-offset-2 text-center\">\n <div class=\"display-t\">\n <div class=\"display-tc animate-box\" data-animate-effect=\"fadeIn\">\n <h1>Shinra & Aqua</h1>\n <h2>kami mau nikah</h2>\n <div class=\"simply-countdown simply-countdown-one\"></div>\n <p><a href=\"#\" class=\"btn btn-default btn-sm\">Save the date</a></p>\n </div>\n </div>\n </div>\n </div>\n </div>\n</header>\n\n<div id=\"fh5co-couple\">\n <div class=\"container\">\n <div class=\"row\">\n <div class=\"col-md-8 col-md-offset-2 text-center fh5co-heading animate-box\">\n <h2>Konichiwa minna</h2>\n <h3>November 28th, 2016 New York, USA</h3>\n <p>We invited you to celebrate our wedding</p>\n </div>\n </div>\n <div class=\"couple-wrap animate-box\">\n <div class=\"couple-half\">\n <div class=\"groom\">\n <img src=\"data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wCEAAoHCBYWFRgWFRYZGRgaGhwfHBocHBwhHBocHhwcGhwcHhocIS4lJB4rIxgeJjgmKy8xNTU1HCQ7QDszPy40NTEBDAwMEA8QHhISHjEhJCExNDE0NDE0NDQxNDE0NDQxNDQ0NDQ0MT80NDQ0NDQ0NDQ/MTQ0NDE0NDExMT8xNDExMf/AABEIAOAA4QMBIgACEQEDEQH/xAAbAAABBQEBAAAAAAAAAAAAAAAAAQIDBQYEB//EAEYQAAEDAQQFCAgCCAUFAQAAAAEAAhEDBBIhMQVBUWFxBiJSgZGh0fATMkJykrHB0mKiFCNTgsLh4vEHFSQzshYXQ2NzNP/EABgBAAMBAQAAAAAAAAAAAAAAAAABAgME/8QAIBEBAQACAgMBAQEBAAAAAAAAAAECESExAxJBE2FRIv/aAAwDAQACEQMRAD8AwTn7ErKxGZkfJMCR4w7Pmo02TVKiZ6V2chK/MJo86kSB1/pIug+ZXM6s45fLxQz1D7yYAiQbddlfeMGARjx4JtWrBgYqOk+Ht4H5JuZPFGuT2no2mMHAQdY1cQpKjgNQPnauSpkVJUybwRYNueq2TeAjgmh3DsHgugGM1zkiDAMznq7E4kE+YamnilCUKtA0Hj2p0nb3lBQjQK17tTndpSmo6IJcRsJKaUkI0CBTUrQ9vqvcNwJ/mooSlFmzWbKjnsIvuI1g3VBYbY9vNvlrdXNB6ty5adUtMjz58FGMlHrOj2tLe57mEl94YYACMxrCC/Bvuj5BcLnc0gZEAx1hd9MsIbLxMYiR4pyaTlyWlTvEzs6lM44QpBUGQyTXvBH8kyMY8ggiJBwnKd66adqqn2WdpXE+pdxGYxT9IWg3W3ZbeEmMxulRljurxuosPTVv2bPjPghZu8fJPihT6RXuUFMqZLrFif0fzN8Ux9jfHqnqx2b1e4nVMeMUBTPsj5m449ST9FePYd2FGy0iZ6jve8EjAp22d9w813rH2TOpRmzv6DvhPgjcGiU/Xb1/LNJdxPEoNFxcPWbgdRUTqTtYJ34/JA0krOwKR9fKNgUMboSqpIRDjniUEJUBUAgolCYAQgoSASQlQEAISBKgBJCWUIBp7fMrssrGHPE7Dw1DWuVJCWguGMAwGA2JcVX2a1luB5zdmEjgVZsF4XmmRHkJE5axwPBPtgm57g+SbaBzXcCp7Y6Qz3B9FOXaselfd4JFLKEHpZJwckhCxWdKUICVAIE+9vTUqRnA7068dpTQVw6TtF1t0es7uGvwTk3dFa5dKWwvN0HmjvO3guBJKexl4gNzJgbycgujGajO8moU9vsvo6j2TJaRJ33Wk95XOVXwgCiV0W+mGVHs6JgcM1zhEoKUKWz2dz3XWCXQSBrMCSBviVEjYCQBKUJgBACCkBSBUBCEAEJNm4ohLCAsaFGnUExcdru/MDKE+z2d9J0+swnnRmN8eCrrNVLHBw6941jzuWnpRdBBwPfKnoOOpRDnBmQdhIz/ALrtdolhu892AA9UH+JRsZz2R0graVj5MrLNNMJNKv8AyVnTd8A+5IrWUKPbJep/ilSApvpW7UgrN6Q7VWkpAEspjazekO0INVvSb2hLkHylBTBWZ0m9oR6ZvSb2hA2keYE6lnbRWvuLjryG7UFaaSri5daQS4gYHVr8OtV9poBjWiQSZJOeUADvWmE0nKudabQmgnC0UQ7P0ZqOHRxho87Fxck9HitaGg+q0Fx2YER349S9Hs1nAtNR8ZUqTBwl7j9FWWWuDxx+151ytspba3taJvXHAbRcA/hKo5XpfKbRt602WtGF9rH8CSWntJHWFh+UOizZ6z2ewecw7WHVxGI6t6MctzRZY87WnKqwBlqpvjmVLhnVgQHDsjtVRprRrrPVdTcMM2Ha3Ufp1LcaVsZtVgY9nrtpsezbIbDhxInrAXRatHst9lpvPNeWBzX9F8Q4H8JMyEplo7jt55oV920Ujq9I0dTjdPzWh5XaBLSarGwfbA1jpjftWbrWV9Grce0te1wkdYgg6wdq9kr0Q9pB/snldXYxm5ZXiQRrVvyn0SbPWgCGOxZszxHUfmqqnSc6buN1pceAiSrl3Nos1TUFCHKiCIQhIFRKRIEAsK40NacCw6sRw1jztVOpKNUscHDUe7WOxKwNPTPPb7wVkFV2Z0luRktIO5W0FYeXtph0b5yCE665KsmijLztPaUXjtPakCVaIPY9209qlDjtPaVG0JwKWzLePSPai+dp7UJEthE+lL2uPsggTGvM90Ks02OczgcuIVyuS1UL76Z1AmeoSPkqxy52nKbi8/w6skNfUIxJDewmVswwAkjXEnh/dUHJqyzRddN0+kJBGo3WjETiDrHywItm29ocGPIY85NJwd7jjg7hmNYCLd1ePEdT2A4HHLuMjxVZp/QzLTTLHG68SWP6J+05EK1SBKbh2bUfJKm9lE0arbr6byNxaTea5p1txPYrOxWRtMOaz1S9zg3ol2LgN0yetdJHnUqe08oad4sog1XjA3PUb79T1RwEncnzS4iTTeg6VpaL/NezFrwBIGZB2t3Ls/SC/wBTFv7Q5fuj2uOW85KCnZi7nV3tecwxuDGnPI4vO93GAu+diKcU/KDQ4tFnczEvbLmEnG/snYctmI2LB8kLMXWh4I9Wm+8055taRG3FeqqgsmifR2+pVaOY+nO6+XC8O4HrVY5caK487ea6Ssvoqr2HIHD3TiO5cwWr5f2K5UY8ZPaR1tM/XuWTaVrjdxllNUqEIVJCEBCYClbZ3ObeaJEwRrHVsUastEjmu2T9ApoT6AqXiGSQQ4QRmQeOsZLVih+N/az7FnrLZWOqtcAWvvCHNMY79R61pWFc/lvLXDoz0P4n/k+xClhCyXwzYYluqQtSXVog1LCdCAEjIUhToSAI0AEoQlaECL7RWl6NCiBUeQ5znlrQ1znOAugmGAri0ppyy1w5j22l7WgktZR9QD2jeEtifWwzVtya0a17WVCTgKjYmJBeD/AUumeTL31Huo3A2oIeSYIBAaRvYQ0EjaFtjjLNiWW6t05OSVmYS6pTfaSwYMZWwaJmXNgwdYnVitO9gcCCJBznJNs9kbSYym3JjGtnbAiTvwTyoy7VOlJaeTbKj5q1az2aqRebg7BJ6zO9FpsVVhDLNSoBke215IPutgdZKu1NZjiQjHvVLLicPPbBpO0VKgbU/RqDedzzQloLJkc541gjNLoW326tVdTpvptADnXxRAEAwDEjPZPyWv0hycp1XX7zmGSSAZbJzMHKTjhGtd2jtGU6DSKYiTJJMl3XsGoLX1h5ZeP13N7Z19m0g3E1qcf/AAw/K9dfJy1VatAPq3SXOddLWloLJhrok5wTnkQujlDVL4s1Mw6oP1jh/wCOl7RkZOf6reLj7K6qbA0BrRDWgADUABgOwKM5J0jDd5Zb/EWlNmY7o1B2FrgfkFhNKWa48N/9bCeNxs98r0zlZZvSUWU4m/Wpjqvc48A0ErD8uGBtrdHRYR2J434WUZ+UqEStWYQgBIUASrTRUXD7/wBAqwq10YOZO0nz3JULKw/7jPeC0TVnLA79YwR7QWnaxYeXtpgS6fIQnQNiFi0Z0Um9BvYfFIKbeg3v8VMkhacoR+jb0B3+KPRs6I/N4qSEsINC6m3ojtd4pTSb0e933KQpAjkkfo2dH8z/ALkoos6P5n/cpISo5NrOTzS2hTukDnPJBkyL7+bJOHHFWzba7XSdO5zLvaSDH7q4dCGLPTH4fqVLbsWZ4S29q5peA7HVhKcys6FxmQbbw990wHRhBmYzxga+2CugKFlBjTLWNDogEAAxhhhqw7lMi3apwEyowOEHcd+Bn5p6EjRFjhEPqAgATemYGZDgRPUnOa84Go+NgLWz1taD2FPAQU/al6wyjZw0EtEScc5J2knEneU+EQiUqJNGOYDBImDI3GCJHUSOteb8r6BfVr1vZpvp027zcvO7CR2r0sFU2kNBtqUvRE4Oq33nWZeXujjN3cOCrHLQym4xnJ3kk+vFSqSyl7MevUG0T6rd5z2a1rP8isIaaVynORJMvBOH+4cQd0q0qgvmmwljWiHObALcMGNkQHRGMYAjWZEtCmWtuEC6BAIAAI2FoyO2MDPUHcqmYyPJNN6NNnrOpEyBi13SYcjhrwg8Cq8Bbr/EiiIov1y9vVg4dkHtWFla43cZ5TVISr2wM/VtG6e0z9VVVLOQGCOc+TwmAO5X1FsADUmk+ytN9oHSHHqV42k7pO+IeCqLM4ekYNd4LRBiw8va8EHoD03do8EKe6lWfLXaghOATnsCbjMR15dStAASsSgbkJAj2pimckgJhGAlATi3chqQa/Qp/wBPT936ldrmggg4yII6lW8nnfqGjY54/MSO4hWcIXDXMBzExBx1HanIKITMShLKSEgJQgFCAEhTk0eSgFlKkCgtNctEMbfeZutkDLMknAAYdutAZ99C6XYD0rSecIvF5xDgc4N4YbDGS0bqkFrc3HuAGLj1wPJVTZrLVD772CZmXOHrHNxuzg0YAd4hU+muVTKN5tnIqVT69QxcaRhA2xqaMBrMzNa2Vsiu/wARbWHVWUgZuNLncXxHc0H95ZvRtmvuk5Nx4nUPO5RkPqOe9xc52DnvdnzoAJO+cIVzZWBrGgbJn6ytsZqaY5XdMbTvVp1MAH7zs+6O1dVQkZD+SGQNXnyFImjaLRzpqMP4gTuWqBWdsFEB7IHtCeorSALDy9xpgbeHmUJ13eexCz00UJY7pj4P60Fjtbx8H9alIkp5YtEOcMd0x8P9SLjun+T+pTQkDUgj9E7p/k/qR6F3T/KPFThKQg3MGHpn4R4oDD0z8IU11LCCW3Jh8F7CZmHgkAbGuGH7vetCSsZZq5pva8eycd7Tg4dneAtk0hw1EEdRBCTSXhG6pzQ5rS6dl0YHXziBCY21N9qWe+IHxHmnqKdaa1xt66TuHiuejpFpMFj2k4YgEdrSY64QHcDhu860LnNkbMtlh2tw7W+qesFSsve0QdhAjDeNqejPRCEJAEIASpj3BoJcQAMych2oBXvABJMACSdUa5WUt/K9lGq5rqJdIaQ5rhejGA5rgI256122y3X3BuIZPNbBlxHtO2DYDx3DCcqqZbaSTk5rSN0C7/CexVjjzynK6js09ytqWhvo2N9Gw+sAZe8bC4AQNwz2xgm6K5PyL1W83YwRP70gjqhT6A0TdAqPbzz6oPsjb7x7loGhPK64iO+ao9IWEMovIe4klpdNyCbzRODAQNgnDALipjmt4BXnKEf6d8fh/wCbVTWccxkZwqw6Tl2kpiFKExuBT7oWjNJZcXtxIxGIzHCZHcr1tmP7Sp2s+xU1kMPZ7wV/OxY+Ttrgh/RD+0qdrfsQp7pQs2ioASFSvbsTHBWgka0gCUhEJAiVLCQhAF1CAlIQZIV5yftQLfRHNuLd7NnUTHAhUgT2PcxzXs9Zpkb9oO4iR1oOXVbBNDG7BPAJtmtDXsD25OGG3YQd4OB4KUFJYCChQVrWxhhz2g9GcfhGKAnlAVY/Ss4MYT+J5ujqGLu0BclZ73+u8kbBzW9gxPWSE9BYWnSTGkhvPdsBwB/E7VwxO5VVttBgvqOwbjA9VvAazvOPDJPAAGocEylZ/TVLoPMpkF2Eku1NEjVmepEFhNFWRz3ekdIJ3M5rdTQRJ785KbyhsVNz6XN/2xe44kNB3A3itIxgAgYDYqDShms7c1g+bv4kbLLpzhKEiUnehDh09/8Anf8Au/8AJqq7MwFrCeiFa6eeP0d4nO7rHSCqrMeY33QtMOmeXaRzBKR74TiVE9i0SmsLpqMH4gtO1qy+jyBUYTgARngAtGLXT6bPjb4rLydrwTxu70KH9Mp9On8bfFCz00Vhpke2exo+iZ6I63u/J9q6SVGFSUfoz03/AJPsSeiPTf8Ak+1TAIuoCL0X43/k+xHo/wAT+1v2qRBCAj9EOk89Y+1L6IdJ/wAXgE8pQEgjbRG1x/fd9Ev6O38Xxv8AFSgJUzSWGu+lNz1XGS10ux24mQeuFJadK1yOa5rTIGDRrMe0TtXFabQGMc92TROGfAKtsemrM8Bjm3Hxg9zWxeAmbzTOe2FWOPsm5erQ3i8BznvdIyLjGOotEN7krbjBAutGzALKVeU1FpNyzh+fOeQLxOsCDAOxQ/8AVrh6tnpDt+gCr8x+38awWphcYe0AYesOcdmeQ+fBStrsJgOBO4hZNnK2qcqVMD97xVhZuXNZggU6U6zD5P5k/wAy/a/41dCkyOc6Sdk4cCF1Wa4xt1rsJJxJJkmTi7FZA/4hWj9nS/P9yP8AuFaP2dP8/wByPyP9v42f6Uzps+IeKzlvDH1nmGOxaBIacLjDE9ZVf/3Cr66VI/H9ya/lzfBa+yUnD3iOyWlL8tFfLt3iys1U2fA3wTm2dnQZ8DPBcmire2syQCC0wQdsTIPnJWTGrO8Kin5Q0Wii4hjQcMQ1oxvDWAq2i3mM91veFccox/p38R8wqmzDmM90LTBGXaRjIQ54BT7qRzBOIVpT2Jn6xh/EFpBPnwWdsI57PeHzWlass+2mPRLyEXkijhW4q3BMhPdKZKZBOYM0gSlAMAToSwhAJdSwhKUAQlhNTKlZrRLnBo2kiO9Gg5NLi8xzJ1TAzPOAaN0n5LEvpSYy2rcf5oxjHuEPF9oJGIxbzYInIhYvMyt8JwxyvJrLNkJzwVu3k4/MFhHF32riso57PfZ/yC2tmeA0YiYxx1nEqqGYOga2xh4O8QFyWqyuYQHxJnIzkYK3KyGm3zUaNjB2uJd9QnKViulEpAlTSRLKAUSgNLyUbzHn8YHcPFaNo8+eKzPJq0Max997W8/WQPZard2mKAwNVnUZ+S5spfat8b/yh5Qv/VOHCfiC4LI3mN90J2ndKUXUiGPa4mBDZORB6slw2HSTHBrJIIAGIwJygFXjKWSyTC3WglDZ4yrQ6LCOez3gtDCz9mfD2k6iPMBXbbSD7L49x/1Czz7aY9Oi6lUPpfwVPhchZ6XwqSx+t4+A/ei4/pD4f6lKEqCQXHdM/CPFOLD03djfqFK1cekdINpMk4uya3aeOzan3St0ZbrU2mJe906mgMvHgLmWWKoK2mqxm64gahDCfiu/RcNeu57i9xlx+WoDcNiatscJO2WWVvTp/wAyrHOq7uHyCR2mKzfbJ3GCOsxK4nv1BQNxV+sEtdVp0jUqes8kdGTHZr61z3d09ic1sqZrYRqToex7Kzgw0/ZLrx2zAH0CjbmUoai51I0m0pTSBu7kt1AaEFKUP2EjhKR1QkyZJ2nPvQXbvPFIATmmYLuHb/JJfOzv/knhqEEbikc+Mk19TUO3w8VDM4BGj0c+ocpPDVOUwhK1sJWtngjUijWsnJTCkOKc1qVxQVpxqOIxe+PePiprNb3syJcNYcfkTiua7OY6k5LRbq/0dpFj3NY7mkkZ5HgezOFsGCBGz+y8vK1XJvTRJFGoZPsPOv8AATrOw6+OeWeP1pjl8aeAhJKFm0ViUhKBs/mnFIIatUMaXOwAEngsZbrUajy92AyA2DZ9Vb8pLZMUhuc/+Fv17FQOW3jx+sssvhGDX54JKjoTiud7pM+fPgtYiEclAxQVOxkDvT2orRGCCllT2AN9Iy9lPfqHbCm3U2lNT0S8tnBuxpmTx2Lh8kb1prVaWsbJInUNZPnWs0ZmTrmeOtZ+PK5c07IQIhLCFqkedSEIQB52KKq/UOvwS1KmoZqFxhByGOxwCd2Ia2E5glNRWsncuhpCRoS4JVNoJSBAE8B80s9qCCEIhACQbRnt+X90sIAQa2/6hr9IfCEKphCXrD9q/9k=\" alt=\"groom\" class=\"img-responsive\">\n </div>\n <div class=\"desc-groom\">\n <h3><NAME></h3>\n <p>daskjdsadhasdhkaksjdhskj</p>\n </div>\n </div>\n <p class=\"heart text-center\"><i class=\"icon-heart2\"></i></p>\n <div class=\"couple-half\">\n <div class=\"bride\">\n <img src=\"data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wCEAAkGBxMTEhUTEhMWFRMXFxcXGBcVGBIXFxcZGxUaGBgYGhgdHSggHRolHxUYITUiJSkrLi4uFx8zODMsNygtLisBCgoKDg0OGxAQGi0lICYtLS8tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLf/AABEIAPsAyQMBIgACEQEDEQH/xAAbAAEAAgMBAQAAAAAAAAAAAAAABQYDBAcCAf/EAEQQAAEDAQQIAwUFBQcEAwAAAAEAAhEDBBIhMQUGE0FRYXGBIpGhMkJiscEHI1Jy0RSCkqKyM0OjwuHw8RUWJWNTVHP/xAAaAQEAAwEBAQAAAAAAAAAAAAAAAgMEAQUG/8QAMREAAgECBAMGBgIDAQAAAAAAAAECAxEEEiFBMVFhEyJxgZHwBTKhscHR4fEUM5JS/9oADAMBAAIRAxEAPwDuKIiAIiIAiIgCIiAIiIAiIgCIqtrRpB5YW0yQC8UxGb3bxO4CCOvIYyjFydkRlJRV2Tto0jSYbrni8cQ0eJ0cYGMLF/1Vv4H+TflelQ+itGNosDQBePtHievALdLFb2UeZmeIlfREjZrdTeYDvF+EgtPkVtqvVKQOY6cRzBzBW1ZLaWm7UMtODXnOdwd+vmoSp21RZTrqWj4kuiIqy8IiIAiIgCIiAIiIAiIgCIiAIiIAiIgCIiALnmn9PMovp0wwvq0Xlzmkw0EtIBJ3k3r2HEKx6fLnvpsYNo0F20aCIGHhLjlhjhzyVVZqE91WrUfXa0VHlwa1pcWjcLxInyV+ElDtWqqajbjzfLTUoxK7iytXvwNrR2uIe5rKlMNL4DS18tBJgX5GHqrfT0fPtvJ5NN1o8sfMqlVvs+EEC0GY3sH0KsOjmOoVZe1raVyLzJIvSILhGAiccc81PGSpqUewTad79OXHV3+lupXhkrPPa+3X8fs2NO2IMoPfTc5j2w4G845ESIMjESq1Y9OmXMrgObleAgwR7zd+/EeSndbNJs2Wya4Oc+JggwwGST1iO6pdHEudxIA6AZ+ZKsw0M0G5eRyulmsjpWiK9+kJMlpLZzmMj3EHut9VzUhpFB2OG0dHIQ3BWNY5rLJo1Qd4phERRJBERAEREAREQBERAEREAREQBERAFG6RtJnZsMGJc4ZtbwHxGD0z4LfqPABJyAJPZVy1VzsXu95wLj1dgB2F0dlOnHMyqrPLEz6Krh1MEC62TA5TgTxJ4rcvKJZXFJjvw02tEDe6JPzC2rFaC6lTJzLGk9SJKudr6GTa5uF68uesJesdXxNI4j/hEiOYr+ldFteXVKQAF4iowiBIPtDhz3b1q0NH1HVBTi4eL4DQOIOTug9FPWCsLzzmHgOI5xdcPML7Z34OYcbhjHe0iWnyMdlepySsgmtyf0fY20ababcgM95OZJ5krbVSqsLY2YAE+KC8GOIDTnyW/ZrNWeJbaBHJzn9jMQVjlC3FmyFbNwX2J5Fp2CxmmDNR9QkyS4kxyaNwW4qy4IiIAiIgCIiAIiIAiIgCIiAIiIDQ0yYov5w3+JwB+agra8QAcBebPQG8f6VNafdFL9+mP8Rqg7W29dp/jcGdoJd6A+avptRi5P3oZK8XKpGK3/Zg0fWFUgugNvOqGSBkbtMGehP7q9WO1m+1k+HZNI/MM8fyrFSdYqV5td9nDy9xh76ZIF43cCcMPmvOitHsa2oaRBuuvMDTLXNGTgRhiCW4LPGv3rvoap4a8Mq2zPz2/Rv22thdHtPlo6nD6rFo20gsDbwLmyw4gmWYE/LzWO12ZtY0gXQ0uJ/N4cB6+i0dIWGhTr0thsm1JMNaWB0tafCcZ8Q9Qr51clSz4WMtOhno3XG5v2d0VXN5F46OcD87y816Z219roNwZ+yYccD/ABBey8EsqDfLDOYnEA8CHCO6yPshqvugBw2brzD7wLmiAeK0XS1MyTbsgbQB7UtPPL+LJegWzeDoP4mug9yM+6+0Q1nhfScR8O0Y8ciBAd1CmbDo+hAe2jBI99vj73sQqpVUuKLoUL6p/R3NTRtorPcAH3mA+Iloy4BwiSp1eQIyXpZ5O7NkIuKs3cIiLhIIiIAiIgCIiAIiIAiIgCIiAjtOtmi7kWO8ngqv22sGFjneyHw7oWuaT6qyaXIFCqTjFN5/lMKo6ZN6gHAxjTd5n/VXU45oyitzNVajVhJ+7O5Da76nD9lpNsbWjZudfvRJa4Zl0ScQBPNT+o+im2eyUwGXHOEvAc5wLpIvCcpAnus+rOktrTDXf2jBB5tyBHyKl3kxhE7p4rLUnJLs5LVG+nBXzxehCaW0e4h1Nt65UbUgskFpuE3ZGQJAx5kKjfZ3q4KlaobVZcNl7ZfIa72SLowlxxEmRdXVKZMCYmMY4rV0nbm0WFxxccGt/E79OJSFWVstrt2RyVGK1vZat+9iGdZtmXUqZc5jGMDpJc+9BIfO90BpIUjoC1XrRO51K70eHEkeh8lFavlxFRzzLnPxj8oP1W5Y6gaTWH/y3jHBsU3egctqg1TyvieZKou2zLhf+C5IiLMbgiIgCIiAIiIAiIgCIiAIiIAiIgCIiA0dNH7l/OB5uA+qqVsH3FRv4CfIEOHoQrVpz+yj42f1hUj9sBr1qJyqNInCL0EDzy7BaaC0b97GPEayXRFb0rpWpZmh9MeIVHAOx8PvDLOZy5K26ua1MtFJprBt6BeuiQ13xNzblnkqDpi11HNfTcxoD4IOJiN454BROhNKVLO8gYOcAMpBjHL6hMVTdWV4GzDWpq09Ds9s05TZJZDjvcfCzu459pXPaustatay0hr23yxpEgBs+7jG6eajbbpWtaIYRegyGtbGOUnetrRlgqU3Co5zZAPhjDHnuKrw9CVOWaWhdWcZwaWpd9H1dnZ3P5uI5m9db6gJoCp4XUzux6h3tes+a0LZag2nRpHA3Wvdwk+y0nqSfJfbDWuVWu3Hwno7/WFuSvFs8Vx0L9oesXUmz7TfAercJ7iD3W+oLRNa7VLTk8Yfmb+o/pU6vOnHK7HoUp5oJhERRLAiIgCIiAIiIAiIgCIiAIiIAsVesGNLnGAFlUZpB16o1m5ovnrMN/zHsFxuyudiruxTderG3Zm0guo1rwFNtM+KpUcYY14m7OO4bs1NVLBFChTrtFSsG3i4RTIcAJcLo4kDstLW7QjrSaJFY0tm4lt0Yl5ydenANAJnhKiNXalmpur1GVn1C27TNStUk1D7Rc0E4NkxhwTO+yunrflwu9CGIappskqmhLPVoGlWo3KmMVqYDoMmHYGeEiFXm6jhuJq0K2PhALp/hAJlSVut3gLqb8cMW5QTj4shhOK1KNqa5zLrRTuyQSWtdzyOI5nBWQbUZNzV9lz99LmKli5yg5ZdFvy/vb6XN7R+r9NrCHtqtcThsmi6B8UkElbNp1apiiaja1R0w0NuiS8uu3cccytnRdpaSTeDsJmQcsTkqBZ9dbdTkB7KjJc5oc1ssmYgiDhO8rtHtakmuVvqW0MS6qbehPNfWr16tOy0aB2b7j61UOfLgIMNPhAEQOgW4dU6tJjqrq7qroJcwC6wCMbjRw4KT1DsGxsrATedUDaxPHaCYnfEQrKq54icKjyvh9fHxN0aEJQSfvwK/o20mpTDgfG3f8Tcj0OB7q2WO0CowPG/McCMCOxwXPdFWkU6kT924lvQhxDT9PJWvRto2b4PsPMdH5A9Dl1jitdeGl17TPOoyyTcGT6IiyG0IiIAiIgCIiAIiIAiIgCIiAg7frGyi5wqU33GmL7YIyBxEyM16pvvTUOF7HHCGx4QeGGPcrQrEOfV3jaOB7QFVte7a+lRbTpvc1tQkOE+6BkDmASRksFKvKrX7Dm7J/s1umoQz9CP1y1sNVzqNA/dAXS8Zvx8Qb8JgCd/QqC1d0aK9a6fdaXxh4rpEN6GVGLLZrS+mb1N5YSC2WmDBzEr6GVBxounSdnzMGdSlefA6noyyCrWFN0XWC+5gIJgGGh0YCTu+Fa9Zw/aLQ2iyQ2oGeGID9m0lpG4Y58itX7JoFO1POd5knfAa45qh2DTNVlR9em8h1R73HeDecTiN+aw/wCPWyyhCSclzVk+luXqVf49DJ2bTUej18b/ANGfTzWMtFRtImAYJBzdHjjlM4KOX0mcTiTieu9fF6lKGSEYt3aSV+ZOTTbaR1H7PbWX2amCf7M1KXaRUb6EhW1c6+zC041KXPaTu9i7HXEnsuhucBmY64LxMXG1aRtoPuFI0jZwyrUZGF4kdHeL6lTOj6wqU4OY8J/VaOsjHPrMNBoqS2HQYDSDhJiPePktbRlpLHw6IktdGIkGJHdb6FaFWCgn3ktV9DzMVRlFuVtG9C+aKtV9sOPjbgefB3f5grfVWo2nZvD9wwcOLd/cZ/8AKs7XAiRiCs9SGVl9Gpnj1PSIirLQiIgCIiAIiIAiIgCwWutcYXb8gOJODR3JCzrQruvVA3cwXj+YyGjsJPkgOe6T0dbrA99WkTaaD3F7wRLmuOLiQMR1HcKt6z6wstQpXGua5t+8DGBN3I7967S+pEcyB5qg/axYabaNKsGND9rdc4AAkFhOJ34tV1KnSdaNRx7y3Wl9Larg9N9HuccpqLjfTkc3ReS7GOS9L1SkvH2aWmGWxn/qD/IPB+YVAsrYaByHyyV4+zxsULfUPu0bn8rz+ipoGACpp/7J+X2Ovgj6ixvqQJK9sGGKuOFv1BoNLnOdN6TcIc4ZNhwgHGQfQq77BvCesn5qhaIa5lFhaYf7YPBxxE8sYU5Yhpeqxrmss4a4SHE/SSvn/ifw6tOtng9HzdtfeprwuKhGOWS1T2RZZgchiqa18ieOPmZ+ql/+z7ZXwtdsDWb2UW58pwHoVE1bFsHOoySKZLQTmQPZJ7ELT8IwfYOV5JtpcL2SXVpc1ttxKcdW7RKy4e/wTWh7dfaWn2mGD03FWbQNqzpHdiz8u8dj6ELndGsWVA4b8O4/UT5Kz2e1Hw1GZgyPq09RIW/EUcy08jDTnklfYu6LDZa4exr25OAIWZeYegEREAREQBERAEREB5c6BJyC0LHJF45vJceh9kdmgBfax2jrv920+L4nfh6Df5cVnXUDT0m+GtP/ALKf9QXPvtLtJqYT92y65g/MSC49REcuqv2mqF+mGfifTHYvE+kqg69QatoG4NAHK6wLXhIqVTyZVVdonOYIe3hkP0W0iLcRL5qrTuaItr/xX/Rgb9SqGuiaKEaCrHjtP6wFztU0fmm+p17GN9MEgncs9ChtHBg3/KMV4UloFovuO8Nw7nH5BaEruxCTsrk7RdLQeQ+SuWpFtlj6JzabzfyuzHY/1Kk2c+GOEjyMKQ0Lb9jWZUPszDvynA+WfZcxFPPTa34+n8FVKWWSOkU6kveNzbo7kEn6Kla5ULtovbnsB7jwn5BXDRwP3jiIvVHEdBAB9FCa9WUmmyqPcJDvyugT5x5rzsPLLVXoaaqvBlJr+zzGI7YqU0Pasbu52I6qMleLM6Bhm0x5HD0heu43MTWh0TVy13XGkTg6XN6+8O+fmrGufWe0Ehr2mHYEHg4K72C1CrTa8bxiOByI814+JpZJX5/c1Yed425G0iIsxoCIiAIiIAtO2VD7DTDnDE/hbvd13Dn0Wa0Vgxpcew3knIDmStejSIkuxe7Fx+QHIfrxQHulTDQGtEAYBekWG0PIADfbcYb9SeQGPpvUjgptv1PhpnzfHyAPmeS5Rr7aYtFZm9zz/DA+eS65LKNMkmGMBc5x4DFzifMrhGsWk/2m01K8QHHAfCMGzzj5rVg75m+hCok7EciL6BuAk5ADMncFvIHSNHs/8DU/JUP+J/oubLs2j9CPZow2Z3tmk8EcHOl0diYXGeuazYeV3LxJS2CzWKvceHbsj0P+57LCi1EGros1M4uHOfMf8rKVH6Lr3mDi3wntl6LclaY8LmZrY6roatfs9J3Gm30EfRbNoote1zHCWuBBHIqv6i2u9ZyzfTcR2d4h9fJWRfP1IZJuPJm+Lukzk9ts5pVH03ZscR14HuIK1WHxOHQ/T6K06/WS7UZVGT23T+ZuXofRVMnxDm0+hH6r2qE+0pqXu5inHLJomtD1sC3uPqrRqvboqGmcnyRye3PzA9FR7DVuvB7Hupez2q5VJGbbtQc4MEenqq8TSzxa9PEjCWWdzpqLwx4IBGREhe14h6IREQBEWlbKmVNpxdmR7rd567h15IDwHbR973GyGczk53zA7rOvjGgAACABAHADJfVI4fHOABJMAYk8AvFipkk1HYF2DR+Fu7ucz2G5YwNo6PcacficPd6DM844FSK4zpWtcdPUbKKQrAua95loAJLQMyDmAS3DeoJ+r2jLeL1mqNY857IgH96k79AqZ9oOlv2i2vIMsp/dt4eE+I93E+QVYFTxQMxjI3L0qWE7ikpNNmWVbvNW0L5b/s3tTD90+nVHMljvIyPVSGpWplSnW29raGCnixpLTLvxmMAB8+io1m1ltlJwDLTVDYyLi4esratutltq0zTqV3FjhDgAwSOBIEwpujXay3XvyO9rDjYtuhddzU0m686LNU+6pg5Ag+B55uMjuOC86d+z2s+0VH0DTFJ7i7xEgtJMuEAZTPmudKwu14t9wM25AAi8Gsvnq6M12WGlFp0rLZ3+5yNbTvFms32Yuzq2loG+4wn1cfosjtDaHsuNavtXD3S+9/JT+q5nbNJV67yKtapUAzDnuI8skAjJFh6kvmn6B1lsi6ad1ms1Z9KnZ6OzYyWh0NbM5C6MhO88VrSqqpvRtrvtg+0M+Y3FbKMIwWRFMpOTuy2anaR2VpAJ8FTwHr7p88O66SuLSur6v6Q29nZU96LrvzNwd+vdef8AEKVpKot9H4mihLSxpa62a/ZXEZsLX9gYd6Ermrj4h0P0XY7ZZxUpvpnJ7XN8xC4w8kOaDn4geoVnw+V4uPJ/cjXWqZsXlJGt97Sd+JhB+f0UTKzCrjS5OA/m/wBV6EomZnWNXat6z0+IF3+Ex9FKKv6m1JovHCofVoP1VgXzlWOWcl1PRg7xTCIirJGOo8NBJMACSTkAMyuN6T1+tRr1X0HhtNxhoLGk3W4DPjie66frTZ9rZ30b7mmoLvgi8RvGOQ4ngqLZ/s0ZA2locTvuNaB2mVooVKELur5aXIShUl8hX36+W8/3wHSnT/RZNFW23W+qKTrRVLAL1QtN0NYM/ZjE5DmrXZ9QLKx9Odo+XgEPdgQJcRAA3BTWszzYLK59ioU2mQHENHhb+Ige1HPir3iqTVqUNebSRHspp95+hhoa20G2YVLNRqVaTABFM05aBxbekHjgqvp3XW3Wikf2azPpUnCDUAc50ciBh1APVVLQ2lX2aqarI8RN9uTXyZMxkeB3LzS0zaKdRzqFWo1hcSym515rQcbpnCBlhuWRU60JO0YyXFN3/wCWlv14PkXWjJLVrwt667dCJIjP2ssc+kLy1sHnGJ7q+6Q0HWt1OnXD6JqhsObT9k87+d7kclH2X/xzotFm2laofA8kGm1oGMOj2p3RwWmHxanOneKvP/wnr6tLS2t7cOuhQ8HNTs+HO34Vys1aDovXXRmDddB7wvgKulXXqqATsaZAExL1AHRla0Xq9GzVG0nOkNwwMSbu8tmYMKeHx85N9vFQWzzJq/Lb1+wr4XJbI23ys+HMil5e6BKlKWgLU4wLPU7tIHmVtGw1LBUp1bRQFS9gwBwuB/x4bhiBy5LRVxtGCtGSlLZJq7frp5+V+BTChOT1TS5tP378yG0boyq8eCm95zN1pMcpX20Wd9NxbUY5jhGDgQYVptOt9qIOz2dPgAyfmVq2SzW3SjRVfsminLA4gtL5MkRjlGfNYqfxGrF5qyjGG/eu1xt46rZddjTUwiStBty8Fb+PUrLjEf76K0WDVkMYK1sq7BmYbP3h/SeAkrYs2otcEF9WmwAgyJcRBmcYCiNci81nbSo2oZEOafDBGAAnDoo1seq840sNUVnxaTv4K6trz1O0cK4Jyqx4cF+7fYy19KUnV9nQbULMcal0EcxvI6q+/ZtXM12Th4HRzxafkFyfR9p2b5OIIgneArbpL9o0e6z1qdSDVpX4iREg3HD3hBC9B2lQVLM3La+r011ZQ041M1tOh2NUCpoS9Wt7APZaKjOrnbQfIhSWrGvNG0wyrFGtwJ8Dz8Ljv5HFWSz0GivUdGL6bJ53S4f5gvOUp0W1az0+jT/BdZTRxuV6p5jqPms+lrNsq9Wn+F7gOk+H0ha1E+JvUfNfRxalHMtzDazsdO1GPhrcL7f6ArQq1qM37qoeNT5MaFZV81if90vFm2l8i8DBabS1glxgTAzJJ4ADElRlr0yGjdTGQNQiezBiT1hSdqbLSLocYkNdEE7lW6Ogq1V96tdpjg27IHBoGA6mSs8r7F8FHcw19OASWNfUdGLnDEjk0YxygKSs9Z0A1AA4gQxsuI49fkFsVNFBoa2iGtAMuLpJJjBxObiM4J4Les1lawYYk5uOZ6n6ZKvs9dWTdRW0Rr2SzOLg94uxN1sycREndMTgOK3atMOBa4AtIIIORBzCyIrUklYqbbd2cG1w0O2yWp9JjpZAc3i0HJp5j5Qo/RrQarQRIx/pK61rhqWy1na0zs68RPuvjIO58wqLo7Uy2NrDaU9mxrgHPJaRBN3wgHE4rYqqcHd7HIaSTNU2CJNNzmE8CVq1rDUOZvdST810OvqiyPBUeD8V1w74AqAr6HtDCQaTjG9ovA8xH1WaM4SN2hVXWB+9vyW1Z9OWmlgKrsMLrocBG7FWSwaDrVHhpY5jd7nAiByBzK29K6l05vN2hG/xAmeMQo1XSek1fyuOHArNbXS1eyCwGMwzH5womvbalWHVXuefiOA6DIK62HUKnXpVXNe8PHhZJbBIbJBwykgKr2bV20khmyMyQYLNxM+8lOnh4RThFJ/UrUpObTZGr1SaSYbMngrZS0BXyFmdhhJ2Y9S5b1PVSufdYwHAm8JA3nwj6qxzjzJ2XMqdDRNaobrWlx4CXee4d1r6W0WWNumdrfAuxiDvEDFdqs9FrGhrQGgbgAF8p0W7ambovSSTAnBhGee9VRxHe4EJ/Kzimr2rr61qpUazXU2ucLwcC1xbBOAPEDNdT151ZbWs9FlPwupkMYc4bdyI3+yFaK9hpveyo5gL2Elrt4kQceGOS8aUBuSBN1wdAzIGcc4JPZXVKzbUo6NfcyKKekuBwDSWjKtB12qwjgfdPQq6fZlp6qbS2hVqF7Nm8MvYlplronOIacFfatFlRsOa17SMnAOBHdQVj1Us9C2UrRTvUwCfDmy8WkAY4tBnzA4qz/OjVpuFVa7Nc/x5fQSwzhLNB6e/Urmv9K7banxBjv5Y/wAqibHZnGKnuh4b1JBPoB6qc+0YTbYAkmmwQMySXQFJWjQpp07HZY+8e5z6nUgA+QMdl6tOuqdCknv9o6v7GSUG5S98S2ar2e5Zqc5uF8/vGflCl14YwAADICAva8KTcm29zWlbQIiLh0IiIAiIgC17bSvU3NGZBjrmPWFsIgIelUvNDhvAK9rGxl1z2cHSOjvEO0kjssiyNWdjYndXCIiHTLokAMd/+jyfP9IWlYWAMaYEkT54/VbdhwFXrPmwfotezDwN/K35BWT+VFMPmZlREVZcF9sbZrflZ6uP6M9UWTRTcHP/ABOMdG+H5gnup013iuq+6SCIi0GYgNL0W08T/ZuN8tOQc03nAcnAHDiOa0dLUnUKl4Xn0n4XXEkc2icjvHccFansBEEAjgcVjtNnbUaWPEtIg/74qDgmTU7FS0bYqdS1C1VH7RsNbSP4HDCKnxjcfrCsf7BNp27vdp3GDhJl7upwHbmo6x6Bcx7wXg0yMCMHz8Qi6QRnzE4KeoU7rQ2SYAEnMxxU1KbXee1vI5JRT7pkREQiEREAREQBERAEREBW9btJCyBloLS5kim8NiYMlrhPAyP3lF2TXexP/vbh4VGub6xHqpT7QaYOj68iYa0jkQ4Yrhq10MHTrwbd0+hCVedN2R2z/uKyf/ZpfxhaGkNeLHTBioaruFME/wAxgLj6+lWx+F076yb9+ZF4yeyR2HU3WA2plseW3Lt2BMw246JPHwlamreutnq02NrOFGqAAQ7BroES12XYrf1a0dTpWR2zbd2lEl+LjeMESZPNcv1msjKVsqU6bbrARDZJjDniqaeHo1pSgrq3Dp/Z11pwSlx5nZP+o0YnbU4432R81G27W6x0s67XHhTl59MPVcZuBfFbH4VC+s36JfsPGS2RetJ6+VqzhSsjNnfIaHOgvJJgQMm5811axUNnTYz8LQ3yESuZ/Zho6k4NrOYDUFWA4zh4HZDILqiz1404vJTVrerOwlKSzSYREVBMIiIAiIgCIiA//9k=\" alt=\"groom\" class=\"img-responsive\">\n </div>\n <div class=\"desc-bride\">\n <h3><NAME></h3>\n <p>Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove</p>\n </div>\n </div>\n </div>\n </div>\n</div>\n\n<div id=\"fh5co-event\" class=\"fh5co-bg\">\n <div class=\"overlay\"></div>\n <div class=\"container\">\n <div class=\"row\">\n <div class=\"col-md-8 col-md-offset-2 text-center fh5co-heading animate-box\">\n <span>Our Special Events</span>\n <h2>Wedding Events</h2>\n </div>\n </div>\n <div class=\"row\">\n <div class=\"display-t\">\n <div class=\"display-tc\">\n <div class=\"col-md-10 col-md-offset-1\">\n <div class=\"col-md-6 col-sm-6 text-center\">\n <div class=\"event-wrap animate-box\">\n <h3>Main Ceremony</h3>\n <div class=\"event-col\">\n <i class=\"icon-clock\"></i>\n <span>4:00 PM</span>\n <span>6:00 PM</span>\n </div>\n <div class=\"event-col\">\n <i class=\"icon-calendar\"></i>\n <span>Monday 28</span>\n <span>November, 2016</span>\n </div>\n <p>Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean.</p>\n </div>\n </div>\n <div class=\"col-md-6 col-sm-6 text-center\">\n <div class=\"event-wrap animate-box\">\n <h3>Wedding Party</h3>\n <div class=\"event-col\">\n <i class=\"icon-clock\"></i>\n <span>7:00 PM</span>\n <span>12:00 AM</span>\n </div>\n <div class=\"event-col\">\n <i class=\"icon-calendar\"></i>\n <span>Monday 28</span>\n <span>November, 2016</span>\n </div>\n <p>Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean.</p>\n </div>\n </div>\n </div>\n </div>\n </div>\n </div>\n </div>\n</div>\n\n\n<div id=\"fh5co-gallery\" class=\"fh5co-section-gray\">\n <div class=\"container\">\n <div class=\"row\">\n <div class=\"col-md-8 col-md-offset-2 text-center fh5co-heading animate-box\">\n <span>Our Memories</span>\n <h2>Wedding Gallery</h2>\n <p>Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts.</p>\n </div>\n </div>\n <div class=\"row row-bottom-padded-md\">\n <div class=\"col-md-12\">\n <ul id=\"fh5co-gallery-list\">\n \n <li class=\"one-third animate-box\" data-animate-effect=\"fadeIn\"> \n <a href=\"\">\n <div class=\"case-studies-summary\">\n <span>14 Photos</span>\n <h2>Two Glas of Juice</h2>\n </div>\n </a>\n </li>\n <li class=\"one-third animate-box\" data-animate-effect=\"fadeIn\">\n <a href=\"#\" class=\"color-2\">\n <div class=\"case-studies-summary\">\n <span>30 Photos</span>\n <h2>Timer starts now!</h2>\n </div>\n </a>\n </li>\n\n\n <li class=\"one-third animate-box\" data-animate-effect=\"fadeIn\">\n <a href=\"#\" class=\"color-3\">\n <div class=\"case-studies-summary\">\n <span>90 Photos</span>\n <h2>Beautiful sunset</h2>\n </div>\n </a>\n </li>\n <li class=\"one-third animate-box\" data-animate-effect=\"fadeIn\">\n <a href=\"#\" class=\"color-4\">\n <div class=\"case-studies-summary\">\n <span>12 Photos</span>\n <h2>Company\'s Conference Room</h2>\n </div>\n </a>\n </li>\n\n <li class=\"one-third animate-box\" data-animate-effect=\"fadeIn\">\n <a href=\"#\" class=\"color-3\">\n <div class=\"case-studies-summary\">\n <span>50 Photos</span>\n <h2>Useful baskets</h2>\n </div>\n </a>\n </li>\n <li class=\"one-third animate-box\" data-animate-effect=\"fadeIn\">\n <a href=\"#\" class=\"color-4\">\n <div class=\"case-studies-summary\">\n <span>45 Photos</span>\n <h2>Skater man in the road</h2>\n </div>\n </a>\n </li>\n\n <li class=\"one-third animate-box\" data-animate-effect=\"fadeIn\">\n <a href=\"#\" class=\"color-4\">\n <div class=\"case-studies-summary\">\n <span>35 Photos</span>\n <h2>Two Glas of Juice</h2>\n </div>\n </a>\n </li>\n\n <li class=\"one-third animate-box\" data-animate-effect=\"fadeIn\"> \n <a href=\"#\" class=\"color-5\">\n <div class=\"case-studies-summary\">\n <span>90 Photos</span>\n <h2>Timer starts now!</h2>\n </div>\n </a>\n </li>\n <li class=\"one-third animate-box\" data-animate-effect=\"fadeIn\">\n <a href=\"#\" class=\"color-6\">\n <div class=\"case-studies-summary\">\n <span>56 Photos</span>\n <h2>Beautiful sunset</h2>\n </div>\n </a>\n </li>\n </ul> \n </div>\n </div>\n </div>\n</div>\n\n<div id=\"fh5co-counter\" class=\"fh5co-bg fh5co-counter\">\n <div class=\"overlay\"></div>\n <div class=\"container\">\n <div class=\"row\">\n <div class=\"display-t\">\n <div class=\"display-tc\">\n <div class=\"col-md-3 col-sm-6 animate-box\">\n <div class=\"feature-center\">\n <span class=\"icon\">\n <i class=\"icon-users\"></i>\n </span>\n\n <span class=\"counter js-counter\" data-from=\"0\" data-to=\"500\" data-speed=\"5000\" data-refresh-interval=\"50\">1</span>\n <span class=\"counter-label\">Estimated Guest</span>\n\n </div>\n </div>\n <div class=\"col-md-3 col-sm-6 animate-box\">\n <div class=\"feature-center\">\n <span class=\"icon\">\n <i class=\"icon-user\"></i>\n </span>\n\n <span class=\"counter js-counter\" data-from=\"0\" data-to=\"1000\" data-speed=\"5000\" data-refresh-interval=\"50\">1</span>\n <span class=\"counter-label\">We Catter</span>\n </div>\n </div>\n <div class=\"col-md-3 col-sm-6 animate-box\">\n <div class=\"feature-center\">\n <span class=\"icon\">\n <i class=\"icon-calendar\"></i>\n </span>\n <span class=\"counter js-counter\" data-from=\"0\" data-to=\"402\" data-speed=\"5000\" data-refresh-interval=\"50\">1</span>\n <span class=\"counter-label\">Events Done</span>\n </div>\n </div>\n <div class=\"col-md-3 col-sm-6 animate-box\">\n <div class=\"feature-center\">\n <span class=\"icon\">\n <i class=\"icon-clock\"></i>\n </span>\n\n <span class=\"counter js-counter\" data-from=\"0\" data-to=\"2345\" data-speed=\"5000\" data-refresh-interval=\"50\">1</span>\n <span class=\"counter-label\">Hours Spent</span>\n\n </div>\n </div>\n </div>\n </div>\n </div>\n </div>\n</div>\n\n<div id=\"fh5co-testimonial\">\n <div class=\"container\">\n <div class=\"row\">\n <div class=\"row animate-box\">\n <div class=\"col-md-8 col-md-offset-2 text-center fh5co-heading\">\n <span>Best Wishes</span>\n <h2>Friends Wishes</h2>\n </div>\n </div>\n <div class=\"row\">\n <div class=\"col-md-12 animate-box\">\n <div class=\"wrap-testimony\">\n <div class=\"owl-carousel-fullwidth\">\n <div class=\"item\">\n <div class=\"testimony-slide active text-center\">\n <figure>\n <img src=\"images/couple-1.jpg\" alt=\"user\">\n </figure>\n <span><NAME>, via <a href=\"#\" class=\"twitter\">Twitter</a></span>\n <blockquote>\n <p>\"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the Semantics\"</p>\n </blockquote>\n </div>\n </div>\n <div class=\"item\">\n <div class=\"testimony-slide active text-center\">\n <figure>\n <img src=\"images/couple-2.jpg\" alt=\"user\">\n </figure>\n <span><NAME>, via <a href=\"#\" class=\"twitter\">Twitter</a></span>\n <blockquote>\n <p>\"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, at the coast of the Semantics, a large language ocean.\"</p>\n </blockquote>\n </div>\n </div>\n <div class=\"item\">\n <div class=\"testimony-slide active text-center\">\n <figure>\n <img src=\"images/couple-3.jpg\" alt=\"user\">\n </figure>\n <span><NAME>, via <a href=\"#\" class=\"twitter\">Twitter</a></span>\n <blockquote>\n <p>\"Far far away, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean.\"</p>\n </blockquote>\n </div>\n </div>\n </div>\n </div>\n </div>\n </div>\n </div>\n </div>\n</div>\n\n<div id=\"fh5co-services\" class=\"fh5co-section-gray\">\n <div class=\"container\">\n \n <div class=\"row animate-box\">\n <div class=\"col-md-8 col-md-offset-2 text-center fh5co-heading\">\n <h2>We Offer Services</h2>\n <p>Dignissimos asperiores vitae velit veniam totam fuga molestias accusamus alias autem provident. Odit ab aliquam dolor eius.</p>\n </div>\n </div>\n\n <div class=\"row\">\n <div class=\"col-md-6\">\n <div class=\"feature-left animate-box\" data-animate-effect=\"fadeInLeft\">\n <span class=\"icon\">\n <i class=\"icon-calendar\"></i>\n </span>\n <div class=\"feature-copy\">\n <h3>We Organized Events</h3>\n <p>Facilis ipsum reprehenderit nemo molestias. Aut cum mollitia reprehenderit. Eos cumque dicta adipisci architecto culpa amet.</p>\n </div>\n </div>\n\n <div class=\"feature-left animate-box\" data-animate-effect=\"fadeInLeft\">\n <span class=\"icon\">\n <i class=\"icon-image\"></i>\n </span>\n <div class=\"feature-copy\">\n <h3>Photoshoot</h3>\n <p>Facilis ipsum reprehenderit nemo molestias. Aut cum mollitia reprehenderit. Eos cumque dicta adipisci architecto culpa amet.</p>\n </div>\n </div>\n\n <div class=\"feature-left animate-box\" data-animate-effect=\"fadeInLeft\">\n <span class=\"icon\">\n <i class=\"icon-video\"></i>\n </span>\n <div class=\"feature-copy\">\n <h3>Video Editing</h3>\n <p>Facilis ipsum reprehenderit nemo molestias. Aut cum mollitia reprehenderit. Eos cumque dicta adipisci architecto culpa amet.</p>\n </div>\n </div>\n\n </div>\n\n <div class=\"col-md-6 animate-box\">\n <div class=\"fh5co-video fh5co-bg\">\"\n <a href=\"https://vimeo.com/channels/staffpicks/93951774\" class=\"popup-vimeo\"><i class=\"icon-video2\"></i></a>\n <div class=\"overlay\"></div>\n </div>\n </div>\n </div>\n\n \n </div>\n</div>\n\n\n<div id=\"fh5co-started\" class=\"fh5co-bg\">\n <div class=\"overlay\"></div>\n <div class=\"container\">\n <div class=\"row animate-box\">\n <div class=\"col-md-8 col-md-offset-2 text-center fh5co-heading\">\n <h2>Are You Attending?</h2>\n <p>Please Fill-up the form to notify you that you\'re attending. Thanks.</p>\n </div>\n </div>\n <div class=\"row animate-box\">\n <div class=\"col-md-10 col-md-offset-1\">\n <form class=\"form-inline\">\n <div class=\"col-md-4 col-sm-4\">\n <div class=\"form-group\">\n <label for=\"name\" class=\"sr-only\">Name</label>\n <input type=\"name\" class=\"form-control\" id=\"name\" placeholder=\"Name\">\n </div>\n </div>\n <div class=\"col-md-4 col-sm-4\">\n <div class=\"form-group\">\n <label for=\"email\" class=\"sr-only\">Email</label>\n <input type=\"email\" class=\"form-control\" id=\"email\" placeholder=\"Email\">\n </div>\n </div>\n <div class=\"col-md-4 col-sm-4\">\n <button type=\"submit\" class=\"btn btn-default btn-block\">I am Attending</button>\n </div>\n </form>\n </div>\n </div>\n </div>\n</div>\n\n<footer id=\"fh5co-footer\" role=\"contentinfo\">\n <div class=\"container\">\n\n <div class=\"row copyright\">\n <div class=\"col-md-12 text-center\">\n <p>\n <small class=\"block\">© 2016 Free HTML5. All Rights Reserved.</small> \n <small class=\"block\">Designed by <a href=\"http://freehtml5.co/\" target=\"_blank\">FREEHTML5.co</a> Demo Images: <a href=\"http://unsplash.co/\" target=\"_blank\">Unsplash</a></small>\n </p>\n <p>\n </p><ul class=\"fh5co-social-icons\">\n <li><a href=\"#\"><i class=\"icon-twitter\"></i></a></li>\n <li><a href=\"#\"><i class=\"icon-facebook\"></i></a></li>\n <li><a href=\"#\"><i class=\"icon-linkedin\"></i></a></li>\n <li><a href=\"#\"><i class=\"icon-dribbble\"></i></a></li>\n </ul>\n <p></p>\n </div>\n </div>\n\n </div>\n</footer>\n</div>\n\n\n<div class=\"gototop js-top\">\n <a href=\"#\" class=\"js-gotop\"><i class=\"icon-arrow-up\"></i></a>\n</div>\n<script src=\"https://code.jquery.com/jquery-3.6.0.js\" integrity=\"sha256-H+K7U5CnXl1h5ywQfKtSj8PCmoN9aaq30gDh27Xc0jk=\" crossorigin=\"anonymous\"></script>\n\n<script>\nvar d = new Date(new Date().getTime() + 200 * 120 * 120 * 2000);\n\n// default example\nsimplyCountdown(\'.simply-countdown-one\', {\n year: d.getFullYear(),\n month: d.getMonth() + 1,\n day: d.getDate()\n});\n\n//jQuery example\n$(\'#simply-countdown-losange\').simplyCountdown({\n year: d.getFullYear(),\n month: d.getMonth() + 1,\n day: d.getDate(),\n enableUtc: false\n});\n</script>', '2021-05-17 19:35:22', '2021-05-17 17:13:57');
INSERT INTO `view_client` (`id`, `user_id`, `resource_id`, `code`, `updated_at`, `created_at`) VALUES
(6, 5, 15, '<meta charset=\"utf-8\">\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n<title>Wedding — 100% Free Fully Responsive HTML5 Template by FREEHTML5.co</title>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n\n\n\n\n<div id=\"page\">\n<nav class=\"fh5co-nav\" role=\"navigation\">\n <div class=\"container\">\n <div class=\"row\">\n <div class=\"col-xs-2\">\n <div id=\"fh5co-logo\"><a href=\"index.html\">Wedding<strong>.</strong></a></div>\n </div>\n <div class=\"col-xs-10 text-right menu-1\">\n <ul>\n <li class=\"active\"><a href=\"index.html\">Home</a></li>\n <li><a href=\"about.html\">Story</a></li>\n <li class=\"has-dropdown\">\n <a href=\"services.html\">Services</a>\n <ul class=\"dropdown\">\n <li><a href=\"#\">Web Design</a></li>\n <li><a href=\"#\">eCommerce</a></li>\n <li><a href=\"#\">Branding</a></li>\n <li><a href=\"#\">API</a></li>\n </ul>\n </li>\n <li class=\"has-dropdown\">\n <a href=\"gallery.html\">Gallery</a>\n <ul class=\"dropdown\">\n <li><a href=\"#\">HTML5</a></li>\n <li><a href=\"#\">CSS3</a></li>\n <li><a href=\"#\">Sass</a></li>\n <li><a href=\"#\">jQuery</a></li>\n </ul>\n </li>\n <li><a href=\"contact.html\">Contact</a></li>\n </ul>\n </div>\n </div>\n \n </div>\n</nav>\n\n<header id=\"fh5co-header\" class=\"fh5co-cover\" role=\"banner\" data-stellar-background-ratio=\"0.5\">\n <div class=\"overlay\"></div>\n <div class=\"container\">\n <div class=\"row\">\n <div class=\"col-md-8 col-md-offset-2 text-center\">\n <div class=\"display-t\">\n <div class=\"display-tc animate-box\" data-animate-effect=\"fadeIn\">\n <h1>Naruto & Hinata</h1>\n <h2>We Are Getting Married</h2>\n <div class=\"simply-countdown simply-countdown-one\"></div>\n <p><a href=\"#\" class=\"btn btn-default btn-sm\">Save the date</a></p>\n </div>\n </div>\n </div>\n </div>\n </div>\n</header>\n\n<div id=\"fh5co-couple\">\n <div class=\"container\">\n <div class=\"row\">\n <div class=\"col-md-8 col-md-offset-2 text-center fh5co-heading animate-box\">\n <h2>Hello Konoha !</h2>\n <h3>November 28th, 2016 New York, USA</h3>\n <p>We invited you to celebrate our wedding</p>\n </div>\n </div>\n <div class=\"couple-wrap animate-box\">\n <div class=\"couple-half\">\n <div class=\"groom\">\n <img src=\"data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wCEAAoHCBIUEhcTFBQXFxcYHBcYGhcbGxgcGhccFxobGxodGBcbHywkGyApIRoaJjglKS4wMzQzHSI5PjkyPSwyMzABCwsLEA4QHhISHTYqJCo1MjI4MjIyNDUyNDs9MjIyNDIyNDIwMDQ4NDIyMjIyNDI7MjI0MjUyMzIyMjIwMjIyMv/AABEIAOEA4QMBIgACEQEDEQH/xAAcAAEAAgMBAQEAAAAAAAAAAAAABQYDBAcBAgj/xABIEAACAQIEAwUDCQUFBQkAAAABAgADEQQSITEFQVEGEyJhcTKBkRQjQlJicqGx0QeCksHwU6KywuEzNENUcxUWFySjs8PS8f/EAB<KEY>AEREAREQBERAEREA8lXdHxrlkOWgLqtTfvBfxGmPpA29o6WC2v4hLK6gggi4OhHUGehQBYaSk4KSp9ExbTtFH4lSVKj0aa/TQb6sSiBQSeZYkfCVjsTmY1ahObMRd7ABiTm0GrC+Ym17bdJc8BQ7zHux2R6jn1Viig+8Zh92cr4Vxf5HTfwjPZVDEDKltGJ+keVl23mGlxKEpS+W/wBjbLK4qP0stvGky1TVd1pALTVKpJLjKXLCmg1ObPY3IHhG/KBr9qCHy0FqValiAzg1HAO+WlTACA6dDPnhnBamMfvcXVamh1Cm4dweRc+FB9keL0Mv/DuF0KCBKVNUA6DfzJ5nzOs2lmS6LY9O3yyiJw/i2I8bsaSDXM9TLYDW4SnoPeRMDdnEUNUrYq31myIgudsxbObnSwsWN9peMc9R3CspRBYjVSW/hJ1v8LX3Iy/C8KNOlXxtRMxoJUNCnrYZULMxtrmZrgsNcoFrXbNnGUskqujTJjjjjuopQ4XgVAL4vFICQM70Gp09dru1Gw9SR7pvYnsdUy56VRaikXF9mB5iolwRb7PvnmA4hURhUrVa1RqpoqqgU+4PeMQ6shNxZNQVA1te4uJdODcNXDUu6W2UPVYZfZAeo7KB0AVgPdNc0Xi9zHTTjmvg5RjsFWpqtKoCtlyITqrAFmIDA2bVmNgbgEbSNp8TZcLVwlTa6tT6owdSy/dYZjfr97TtnEeHpWpsjgHMCNR12J9N77ict7S9lXRRWpXZcoYodXVSL3U/TUD97Tnyx8SLajL/AF9zSeJx5iTHYrine0O7c3elZfNkPsH3WK+4HnLtwbibUGsbmmx8Q3yk/SUfmo33Gujcg7NGtQx9ENTcEsA9N1ZS9M+2CrAG1lJHK6DpP0LS4XhWUMtGkQQCDkU3BGhuRM/yzWVzi6+hDzJw2yVm/TcEAggg6gjUEHYgzJMVGkqKFVQqjQKAAAOgA2mWdpyiIiAIiIAiIgCIiAIiIAiIgCIiAIiIBEcFwhQ1nYavVqkdciuwX8Sx/enIuzOEp1+JYk1Ub5hndKRGubOwJK82XwgfeB3sZ3OV3jfC6K1kxaoq1R829QaMyPoFa2jePu7E6i2m5lJKk6NMb8ys5zj69bJQxVQ5GxIZ6VJe6SlSorlOaq7oWawqISQybmxWwMtvBK2amo+iVzJZswtexAbmt9jzBHSZOJ8PWsKaFcgpElait4sr+3TyMpAU2XnplWwn3gqdOmgy2VLKtME7Ivs7m5JuT1sRfWZzcHFV2dOFZFN30bTKDuNtZkFRguUOVB3tbX3kae6fE9mKbXR1yipKmRFPs5g1IYUFuCSLlmCk66KxIA8gLSTqM/0VU+rEfkpmWYXz3uuUjobj+8L2/hhycnyyqhGK4VfY9ps9/EoHmGzD8VB/CRbufCrIA1Ooxpg80HzaFunjdTpyAO4kmlQk2KlT8QfRh/Ox8pp8RoqCahPiIpoq+aszG3qG16Bbyksak037ckSjdMjuNs1GiK5RatSmzECp4wwKNdbHRMxGuUDT3WtfZHjWGxeGV8PcKvhamxJakd8puTp0O1ttrCu1qffUmptdr1FRdTu4AsT1AY+4rKBiFxXB8e/dMQFOotdXpnVWK81I3A2IIBFgR14+jj1K83B+gYla7LdraGNQAEJVtdqZN7jm1M/SX8RzG17LNTmEREAREQBERAEREAREQBERAEREAREQDyR3HUvhqhAuVXOAeZpkOPxWSUxuoIIIuDoR1vATorKgjc3PM7X93KRVXDGnp9AaKeg5A+mmvOSGHplQVJJZCUYnclTbMemYWYDown2x1VbquY2zt7IPIEXFyeQuByuCQDx07o9belHcYMBQKrqSSetr25bACZlrqfZu/wBwM9vXIDaS9LhdMe0M56vYj3JbKPW15nxOi5jUNJQNSO7A95dSB+E1WH5ZzS1X+KK3ia1SmQz0z3ZF7nRwBucvTXnlOmxmd82629DcX/eG3wMx47DrVdCS7pTtYuBcsCG8PhDWuAbne1hoTfPM8iinSNsTlJXIx06gbSxBG6ncX/AjzFxvMOLwmcqQbFbi5FxZrXFrjmqn3TzH4ooAq+2232RzYjy6czYSIZ2Vgqsygq2YAnU3XW/XfUanrM5SUY2zTkl+GYhFxNOiNRd7knVnVSbnkQtgNrBigFstpm7ddmvllIPTHz9IHLy7xdyhO1+ak7G+wYmVrB8VopisOrEGmXemSDY03ptTynTYBrKQdMrk7TqU6NPJyhbPP1HrPzhQz0ql0LU2RiRa6tTcHW3NTe9x6+c7J2J7VDGJkqWFdBdhsHXbOo+FxyJ6ETS7b9jPlN8Rhsq1wPEp0WsBtc/RcbBtjseRXlvD8dUo1RUQlKtJyCCNUZSVZXX4qRzF5sZdn6LiRfAOLJisOlddMw8S81YaMp9Dz5ix5yUklRERAEREAREQBERAEREAREQBERAEREAgeMYOzisPZ+mB1AsrnyAuD5ZTplmhXpB1Knn+B3BHmDY+6WsiV/HYFqRzKC1PmBq1P7o+knluvmPZxyQb5R1YMqS2yMdbiVTY1ES/NU8XuLMw/CaqurNclnYfSa5y/dvot+i2mQFWF9GB1HMEfzn0AANNBMXKT7Z1xxQj0j2Ya9cIOp5D9Zir4sDRdT15f6yAx/GqFMEtUDsDbIrKz38xfT32/ISFFvo0bSVskWa5LHc7mata+dbC/gqE+SplZmPkBf8ADrKxje1VRrCkgQcy3iYny5AfH3SoY/tPjnc3xDoVZgO7tTI5EZkAYg2GhJ2E0enclUujnyaqKVR7LX+0Ls42G7jG01slZVFVdbLVZczXHRx+KdSJ0r9nnaH5Zg1zG9SlZHudW08LHzIBB81ac47G8TqYzhnEcDXdqhp0TXol2LMpUFrZjrYOqEfeM8/YxjynEHpA+CrSY26tTKsp/hL/ABnQlXB57dndJwv9rfCjhuILiaei4hcx6Z6dlcEdCCh9S07pOf8A7ZcGH4ctTnSqo1/J70yPiy/CSEVz9lPaMLXOHY2Stsv1aijQj7wGX1CCdjn5Qw2IenUWpTOV0IZT0Km4PxAn6g4JxFcThqWIXQVUV7fVLC5U+YNx7oDJCIiCBERAEREAREQBERAEREAREQBERAE8nsQDmXbzj3yPELTw6jO695UVr5BmJC5QNmJVifIXtdryu4vtTWamjEeNs1xqEAU2BADZjfrmXY6GYv2hOW4pX1uF7pR5fNLcfFjISv7NL/pn/wB2qP5R4cXzRrHLJKkzYxHGsTUJLVCt7rlQsqW22vrca3JO+ltBI+2o9D/lnh5ev8j/AKRfxW8v5y6SXRSUnLls9A38/wBAP5SAxw+cf7xk6pOZh6W94/0kPjkzuuQXLKpsOpv8NAJLKm92X4wMI9drH53DV6AI5NUUZCfLMij3yY/ZjWVOKUCzKqgVrsxAAHdPbU6b2kBh+F63qH3LfX1MkkpKvsgD+uZ5yu0k77V7V8PXQ4uifuurf4byr9vu0OCxHDa9KnXV3YIVUZrkrURhYW+zecsn0iMdgT/XU6Q0l2Em+ivkW0Ok7f8AsY4j3mAeid6NRgPuVPGP7xf4Sp9mOzlKuj1cQpZFcU0pXK53yhjmcahQpB8J116WNu4Zwv5NmOFpJRFZbMUqN3llDZGWnUzLUtnJvdGsfdKknQRPZzng3aCvg6vcYpjUpuwK1mdiVVrjNd9St7XUkFLNvtOjSE7Eo7XXZ7ERJKiIiAIiIAiIgCIiAIiIB5MdasiC7sqjqSAPiZXOM9saFFzRpI+Jri/zVMXy2+uwBy+YAJGlxIbCdoKtY95ikFCxZUQ5lKjS7NnsWJIte2w03MrKW1WaQxubovlOorC6sGB5ggj4iVfjfbzBYe6qxrOPo07FR96p7I9BcjpNTEYbDVhdhTbMCubwEkNoQbghgfqkEeUiK/ZrBM2XLZhtuim24HdhRf3G3ntKLKvdGstNJdM59j8c9evUrOLGq9Ryt75btYLfmADa/lPvG2vTA5U6X99e8/8Aklg7Q9lEpUzWw+fKl+8pmxKDcsumo5ny1va8geK0MlQU8xzIlJKns2zqgBAsNlGVOt0J5zeElJcGMoOLpmiallDEgCwJPLWYWxQJGQGpvqu3L6W3WZ+7Xpf1ufzhhcW1A/H3dPz9JYqRbVKz1GCm2ymx0W192tvqdpvYTCrTGmpO7fp0EzKgUWAAA5CfUUBExrUzMQNl0J6noPTn/wDsx1al3FNfVj0Xp6naAZr39Pz/ANP69d3BvfTmNR5jb9B7lPWagnqMQQRuJWcdyLwltdls4E1Qip3ZDIFZnp+LOfm6iq1NQDdhc3GhIBsGKgC4VzmqVL6gMl+hDBshU+XzW22cnc6c4wHEDTqBqZKkgkfzHxF9Oanylv4DxMVFyv4nRSrroC9LQZhtbLdVYjbLSJIBYjKDrgtki73ext8bwRrUWW2aot2Xa5bKSPTvFVkOoGdENtZZuy2PWpRVVcuFRMrMQWIIIs5AF2BXewuCOd5EuBlIpuxc5MpKMoGVwwZrgBiCL8r8huZXOAY5cLxEkaU6rZWHRatnp7fVzILnYZpaTp2USclR1mJ5PZJQREQBERAEREATya2Jx1KmQKlRELaKGZVLelzrKJ+0vtMaa/I6LWdheqw+ijDRAeRbc/Z+9oQJt+3vDVrdy2ICm5UOQRTJG/zlsoH2jp5yr9ue25JbDYR7LqHqqdW6rSYbDqw93U8w4jSvTva+Q5rdQNwfK35RiMeiqCPESLgDz69PSWoF/wCwarTp1apW5YhBbcKgDHKPMtt9kS4rjaZFw1/TWVnstgKqYZUIBqas9zlVGY3yXAY3UWB0O0l6fB1t873ZvcsAo1JN28bcjc8r25zjyU5NnqYltikSVPIwDgDUXBsNjtrPKtMk66r02KnqpmRrkeEgHkbXHwuLzHSZ9nAv9Yeyf5g+XwJmZpx0e0wQfELm1gw5joRyP4cxuQKV2s7MZc2IoDTVqlMcr6l08uZHLcaaC9zyWhNxdopPEpqmcSiWvtl2f7onEUl+aPtoP+Gx5r9knlyPkQBUgnx6id8ZqStHmzg4OmfU1cdXKgInttoPLz/r+U2bHr7+f6fhNcYW1TvL5ja1jy9CB0v8ZJU+mK0qfko+J/1MxcMQ5TUb2nN/cP6P4TX4qzkqoUgdTsWOg1H9azYxOJSmoQC5ta1+VramCDaTa/XX9PwtPqaNDiSHRvCfiPjNwVF5EH0Igk8ckEMDt+B0/Qe8CbuG4+KdRKmoyEElWIYj6QU6a22vcXtcGaef1+B/SM56H8P1lHBN2XU2lRdcR27wIW9M4iqfqJTCZj9tjonmaajU3tKPjeJ1cTUao6OhY+yAQqjYBGI0soUAm22pmGtXq/Rp6dSyn8AZovxCqDYgKemUj85LiiIy2uz9RcO4hRrLmo1UqKDlJRg1ja9iQdDYg++bs5B+xHE1KlTFEgZQtIEi9ixL5dOoAb4zr8qUEREAREgu0HGPkmF78hqjEoqUwVBdnIAUHKfM7HQGATsie0fGUwmGeu+pGiL9dz7K/wAyeQBPKR2F7SCpw1seqm6I7NSzLo1O4Kl8nlvl2I0lWr8Up418ImNwtQJXzHDsMRmUs1h41REI1yi5BIDG2hMAoHEcdUr1HrVGz1H1JO3ko+qo2A5TXVrje/K58tLeVrWtytaXRaXC1w1erVwrpXouKRw/yioSzEkLZ7DTwvrl+gd9JN4Xsxwe6rVXuq7hM9Lv6jZHYCyltBm2Gw/KXXPSIlJR7ZzAye7M9hhmGIxSnu7g06OxqaXBqXtlUa+E721sNDeOH8A4GKqNTZWqA3QGqz62NrKSQbbjobHcSxMME6KTUVkqHItypDte1gLam4lZqfSRbHkxdtlaZlVQq25tZNQbmwy35AZVvoNOQmsM4TNnzE23AtcmwGgU7m0tlLC4LuWqIyinrmdSAPCdSWA1t1kJxLDYaojtha4bLbOqsGNibBhpob2F7jrfSc7wySbo7YavG2op99GsleonmPsi1v3WJv7jfyMkMDjVqDfW5HMag2IIOoI6GRaNUA8QDdSCAfeDYaDncX+qNprpiVUZla/ia+XW6lycxttYEkHmBYXuJlVnU2WmJqYbFBtG0PXkf9ZsypJXe3WK7vBlQdarqnuF3Pu8FvfOay6ftEr3NBAdLVWPr4AP80pc7MKqJ5uodzYiImxiDNdsHTJJKC58z+V5sRAMK4SmPoL8BMoFtBPYgCIiAJ8uisLMAR5z6iAT3ZDtS3DKVSklJHWo+fMzEEHKq5SQNR4dPUy58O/ahSawr0Gp3+kjCoo8yCFPwvOWsoIsRcHQjrI75E9Ns9M3HNdiR06GRRB+gf8Av5wz/mP/AE63/wBInEdJ7I2g7Z217TrgqPhs1aoCKanYW3dx9UdOZ06kQvGMJjMZicHTp5kp0aaVzWamWptVspXTQMRpoD9Juk5zxvilTFYh69Tdzou4RB7KDyA+JuecwDGVf7Sp/G36xtBf6XDMZh14jhGR6i1qb1UqU6bCm1Rh41UC9ib2y3+h5ianAuF4pa2CahhsRTen4cQ9dT3eQsMwpBySvhz+yBuPOUv5bV/tKn8bfrHy2r/aVP42/WTtB1Di3Ac/HMPV7hmplA7uFOTvKYfIWa1gfDT08hM9bD1kxl8PTrrnqg1VZVNFlvq6tfQ87b/keUfLKv8AaVP42/WPltX+0qfxt+stBuNmeTFvrmqO18LwzDiGLcqwRlo5WIIVrJY5Taxt5TS4XwXJxCqxVu7S70rg5A1ULnyHbkRYbe6c04Z2mTDo4rVKpYlWQL4mbQhhd/CB7O5G+kxf+Izgn/y4I5HvCpt9oZTr6GQ8sk2q9qJWlxtJuXTb6OhYHvBw6phjQrioVqEXpvlN2uAGtuek2sIX+RPTY4gELTF3phAlioIptlGb1NzpOKcb7SYys4zs9IAeFFLrYHmdbsdtTp0AmtS7Q41Vyriqtuhdj/ivJnkck1XfJXHgWOald19DquPxNCggNZ730VWsSx6ImgJ8/PUyJbtCrh+7VkRVNRy+UEZVCIq2JAJqGmL8tT6cxxNepUYvUdnY7sxLH0ueXlN2riXXCrTLH51s565KZKoDzsWLn91egnPHGl2d2TUylwuEWvh/bpKYFOqj1AugqJlv6FSQD6gj05yaTtrgCNarL5Gm/wDlUicpkpw7gNaqA2iIdQza3H2VGp99hIyQguXwWxZsr8seSzce4xQxNRTRcsEWx8LLYkn6wHSRRNt5g47wdMPTR6ZcnMVZid7i420A8J+MgTL4pRcfL0Y54yjJ7uywtiaY3dfiJibiFIfS+Ab9JBxNLMiaPEqf2vhH/adP7Xw/1kLPUQsbAXP9dYsE2OJU/rEe4/yEyJiqZ2dfjb85GU+GVDuQv4n8NPxmwnCl5sx9LD9ZPIJAG+09mrTwFNTcA363P8jNkCCT2IiAIiIBJfJML/zf90RIy3lEUD2IiAIiIAiIkgjOM7J+9/lkW2xiJV9guHaz/d6fqv5SoRExw+k31PrE2+I/8H/o0v8ANPYmxzmnOi8K/wB3o/8ATp/4FnkTj1npO/8AD/W/saPav/dW+8n5ykxEtpf0yuv/AFREROk4hPGiIBMcI9mb8RLIkREQBERAEREA+oiIB//Z\" alt=\"groom\" class=\"img-responsive\">\n </div>\n <div class=\"desc-groom\">\n <h3><NAME></h3>\n <p>daskjdsadhasdhkaksjdhskj</p>\n </div>\n </div>\n <p class=\"heart text-center\"><i class=\"icon-heart2\"></i></p>\n <div class=\"couple-half\">\n <div class=\"bride\">\n <img src=\"data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wCEAAoHCBYWFRgWFhYYGRgaHBgcGBwcGBgcGhwcHhgcGhocHBgcIS4lHB4rHxoYJjgmKy8xNTU1GiQ7QDs0Py40NTEBDAwMEA8QHhISHjQrJCs0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NP/AABEIALkBEAMBIgACEQEDEQH/xAAcAAACAgMBAQAAAAAAAAAAAAAEBQMGAQIHAAj/xABEEAACAQIEAwUFBAcHAgcAAAABAhEAAwQSITEFQVEiYXGBkQYTMqGxQlLB8AdicoKy0eEUIzM0c5LxosIVFiRTY7PS/8QAGQEAAwEBAQAAAAAAAAAAAAAAAQIDAAQF/8QAIxEAAwEAAQQDAQEBAQAAAAAAAAECESEDEjFBIjJRE2FxQv/aAAwDAQACEQMRAD8A5xWQK9W6JUyZJaSpsXY7AYAyNzRGEszqdth41tiiUJCxrA12jwpE+QMGweFGQgiWOo6ihHcB+ysRpB69aMRGgqsljMRS84dmggMWJgnv6eNUl63oEavoSTE8o2qInrW1y0UJB35ionNVSCbomY70bhJU7+FTcGtKQxMedNLuCQiAAD3UlUlwJVY8F2It6hpkbT31qqxTDD4VQDnI7taFvooBKye6gmvBlRouXY861NkHTaozcB1MCsi6eXqfwFUUhWsKCBV15bUHmEjn4a/SsnXeT416io/RlP6MLWKRREn0qNXTMTmPdKmBQdeo/wA1+g7EH2RuQQ3PQivXsRrrpQA68+ux9a8SZk9rxodjT0Dg3XFAzWGuTpGlA3jrpWUukUX4BgZcw415dKkw2BJUk6fd761wbBoHM791OO1GVRtz5Vz1dTwEWKhAg6GoTdqfEOwJzb0Mo1JOlGX7ZjDSRIBo3hhEF2Ouw9KgwzkyAJA51LetG2STpMGhT3gwzTCBlzTqeXKo8NbdX11A2qPC4rQCjhi1Ak61B6mYExALyByEseXhSh03FP3xIdSBp160uxmHgZwNOfnTSwoTMK0NT3kqE1VMYlRanAiANzoK8iVCmJIacoJ2WeRrJaYcYfhzlRLQwMjpHQ0Fj3dHAZe7N1oe5j71shSY/Giji841M+PM0O1p76FZLw8dssDsIA+tQ4+86NlBgEz4k99bJhROdiVmMoB599B8XxMsF1Eda0raMjV2CmScxjnUVmz7x8qwPGoVM0XgSymUWSdKvmIDCMNwt1JBMU5sWIWDqaCwuLbRX1b50W98ETMdKlWvyTrWRYi2DyjkO6gb8gwNoopAI1Ou9BMhd1RTuYPnRhNvBpXOEuA4W10kiAoO52P86Lw3DM7OJkJoCNJb+Qp4wWzaMbKp8z/U1FgFW3bXMwBPaYkganWu6YSxFNwifhllELFZygkkk6wO40PwbAI6FnUGSY30A0+s1ninEkZGRTJJA8hrM17BcVtoir2pA1gc+fOj8dDyH2+HWwAMimOZEk1Bf4fbzoMgg55jSdJFRXeOplOUNMGJAieXOo34wha2xDdmc2nVY0111otyDGEDglvLBmddQe/TTbaleP4bkdFDSHMAkRBkbx405Ti9k/bjxB/lS7ieKFy0rgiVcjv5wfpQpTnAVoDe4NcIPYmCRoRPkOYoOzw5mDEkDLIIPIjkauuHuZkVuoB+VIOOWMjhwNG3HUjcfjU+rD7dkD5E1iyy9oGKY4fFZVK6ms4liVXbLAI7xSy5fJzQQI276438lyKGreV59KhvWSdj4UFbvga862fEyDJPdB2rdjT4BhZOFYJrQMkMGiNOdE4rDo8giTGxMVVbXEXEdswI+RmmFzi4JOVSTtrzpK6dbox65by9kb7ju7q2usBEsDIkxyNQLbe2czEcj1HWO6g8TdDvI0JPlRU6wYHXLuTt6HfTx5xzo7B4h7iSQMp7Ov4VX8VmmGopL+RYVzoDoepouPiFG9+3BKncUG61ImKzmTv+FZdaGNeRjZMWFaYkAfOmwyMhZACTsD+FI7GUNLCRG3WicNiWVwI0HwjpTVP4Bkhtq6duQ0kAnuoBbTBoG4mj72JzRI7zAqduGOw7JgwDrzB2oymK3gqfFOYknT60LcZmOpJo7HkBtoiNO/nQd7qKokkMbizFNcHcC2zHxb+FLUGb7WvSj8NliDRa0Wiey8iW1brQ169rA6/Oi7DgDYa0I1sZwRtqTSqVoqCSsAmfGs8Juoj53OwJAiSSdB8qGe5II6mPxPyrWm6ax6PKDcZxJ3BXZSSe+JkAmgiZ3r1aOTIAHee4f8wKq3vkojevBTyG2p7hMT8x616mnDcNmw+KePgS0o/euqT8k+dLTxGS1iuvV6sTRAeU1mpsTbjIfvIrfVD81NQmsnoWF4TiTpoDK/dOo8ulF3+IJcRkbsn4knUTzE+vrSgGs0yp+AYbM5KFRy1E9Onr9aV6/OmdtMzKOpj8+cUTe4f2W07x+NR7cYlPGIiteWiLtqDrWLNkkmBNY28HrNmdaY8LwrZw2kLyPyih0skEA6TRzplg5iOg8qFS2sF0JvESVESdX29KW4mwCAQIYa1vZtpmJdtgDI/OtFO6uA4PwnUdRUGu1hE+MQTI86gXY0TiyCxIXKOlREaVZLgZEKvlo1HzCgWFT2TBjrS1OoITgVBZpGw0r1tCzEcufcPGiOH4UlHYffA+U0fh8HmEDzNVXgnVcidLhDHKf608wltmLPMdgR3jby1qLF8CM5UBZjueQms4Lg94SBIK9ltdImsBtMT8VSGnrWvuCYhddO/zo/iOFK9k7qdaJ4JZkM53iBQTGbydBP8Aw7KksBPXuqNrWmm1OsSmZGAHKgbPwNptRETYHaFTXEEgA70ww+FT3YZtAdzQ+IuW/eKEmNBJ61kDQLEoAwHMAz8qjppx7ChGSPtJPnJpXTotHg9RGHtf3F251u27S/uo7t8yvpXuH4F7zhLalmOsaCBpJJPITXTPZ/gF/DYcIvuFAYubl1iTmbchFAAEaDt1PqX24kXid5Oc4Xg2IufBZuHvykD/AHNAq68D9mroweItOoV7klQWBjKq5ZKzHamnrYbExP8Aa7HiMJcZf93vabcFt3YPvGs3AR8aB0Md6MW9Q1QrqU+OCkzK55OWn2JxfRP9/wDSoj7FYzNORIiPjXrXahhU+79aixGG7JyIpbkGZlXzIBPyo/1v/Ddkf6cb49wS9at4fMjEhHDlQWCn3juAWA6PVfrsxw+Izw+LsqR9hMMxAE82NyT46VBi+Ape0c4a83UKbVzyYMxoz1muGgV00/ByJ7WSF/VUjwZQw+RrWrJ7ZcGbDuhyMEyKgJIMskjcR9mOQ2NVurzXctI0seHs0a9NfTWrKi9me7Sqw+3p9at/DjKJ3qv0FCiVorfFMKQ2ZhEiQKH4eCC2mm1Wrj+Hm1m5g/Wq5wxvjWNzSryD/wAkNxIOtE27QcE6kgaVK+HC6nU9OVEcCw5Zyu+b5U4m8AeC4cXmRpFCjCOpJ1iR4V0e5gYQgDYaUg/suZGHcKUHcys3bAIJ6TQpsys91OLmHhcoGus/StMNYm2epBpaZSRHYSXArZBLHoK8ZVu+s29POihmO+Eo2VxyDr6wacYBYdl5x+IoT2ZbN70HkymPUU4S3/fL+sQPTU00+CN/Zj/C2QIMR19KEYQ9zxBpmgg0ruaXXHWPwrEkVLjadp+8VJwlB7tfCpvaUQRylT9aF4ZeAtwdxtSLyzor6Inz5G1EgmontqpOX4TPzqa3ioOoBFQYpwSTyO1USJBlnDh0CnQQf6UFjOBsjIZzKW3HLxonDXYgTTDE3pSPP0opC60xR7SWjkstyAZD4zI/7vSkNP8Ait4NZK8wc3p+Y86r4oo6Ol9S4fozUf2pi0QLbSTt8aVYcd7Q372Ie1hUSUdUa65DojHdVIkMY1hSsc4OlJP0WoGxNwEAj3ZBBEggsNCDvV9s8HXD2nt2E7JuG6iqFGVjBKmSOzOaI2DRGlc1Z3vTqW9qwU3MJxRAX/tFp4BJXI6TGsBs7AT1ynwp1wJ1up70DKWEMB2SGgE5kGiuJ1I0OjDepbt+86ECyysREs6QJ0mAxo3DYVE+Fcpyop78ogExoTHOhXb6GW6ZwzMQQ3xKYJjRtiGHiCPOa3uJIIBgkESOXfW1eqYxTL3EcTnNvCKmRXCNccntvrmiVJcgAy0gSCANKzxDFcSsozsuHvgalCrIY7jqD5xVj4ghAQJaYlGVxl92FIgoV1YahWJ25CoMfed1Ce5uAOQGMLAXdtQeggd5FUlThN6JMFxK1xPD3LNxMlxB20MB0feVQktC6dogAmuS3kysyzOUkT1gx+Fd2t8KRLl7ElFF24IJgSqKIVR02k9SegFcIuPLMepJ9TNP0vLSBfhaRvtVz9mQGtAnkCPQxVMfkPzp+RT7gt4qmhjUz6zVaWnPfga8cbsR3iqvgVhj4mnvGMRKKep/ClmBt6BupP1pF5F9FixPDgbeaIOWo/Y7Cy7HoKY4pwMOI5gChOFzaSR9o03oQt96z2T4VVsMk5x4U0fixywaSviwrtGkiaApE+CBR2A2I+U0iwF+WIPKfrTxMWQp76q2MYo5Zef40lIrD9AvEUi40VO+CII8qixDB3U9coP40+S8uix3Vk8QbZB7MX1Vr08wI8Zp/grqtcUztVFsXypNGDEkwZpu7ECp1nT81Lsa+W8p6gfypFwPjWXsXCY5MfpR3tBdDG0ysIPPptrTS9INNPAH2wT4D4j8aD4YoNoz1o/2nYPbQgzrvVeN/KhE89qSnlFpWwTviQrtG01jF3yQI0HWl3vx4UTcxUqE5D50e7g3abWrvMk0Z/4iIgzNKEBJ0rZrTBoIg1p45BUoMxOIBQxz09dKXpzHp+fWiLqEJrzI/Pyofn5D8apJWPBev0VH/wBTc/0/+4V1euPfozxAXG5T9tHA8QVP0muwVzdX7M6p+qM16sV6pjGa9UFzFIrZS3aiY7q2tXlecrAxoY5HoRyoaHCWvVivUQAfFrmSxcbojH0FfPi7Cu7+1r5cHiD/APG/8JrhNX6Psl1PRErdth0C/jTLDYkC2U55p8oH9aUWW/vH/O0CiUPa300+tUp/EjS4HWOxE4dF5gt6RpQZu5UQDxre+gZAqnbb+tBOCAB0qM0JqzCyvxENZRT8XP8AnUI4iwgfZBqvnEHTU6VOMYCKNNvMEcju9xIltNudDX8UM/dzNK3vGNKFbEciaybZu0fWsXJKx4UJirYJlttfpQGDxPaAJ0pjfcMh8aLHlYxPZAzDxox8SYPyoFD2p76kI3rNaGlyZwwE6id/WtgjA6jeoS0GamGIzb0GzV5Jc5G0dxrY45yMp1ANS4XCqwktFHWcNaE8+utD+nbwK0iG5iv7vIRqDPy2pcgVm1MCnb4a2eR08aFfDJEZCO+TS/03yFNJYBrgAdQw8KmNlVBWVnzqRLIGwMVjIaV0YHbsiZ1rJcnWCT1rZsKTWwwTU3cDAXEXCco1gE+G1QM3aA7j9RRWKtlSo7j+FL7zw6/nfSrw/jpWVwWP2SxITEoxYKYYKWIAzfEok7Tly/vV3K1cDqGUyGAIPca+bccOwfL61fv0Ve1oWMFeaASfcMTpJ1NsnlrJXxI6UnVnnSsV6Or16s1o4JBAMHkYmPLnUCpFicKHg/aGxrfD2AggedRe5f8A93/oWtktON7hP7qD6Cti8m15hPXq1RSAAWLHqYk+gAresYq36Rb4TAuJ+Ioo75Yaek1xkmrR+kT2mGJxC2LTTaslpYbPcggkdVXUDqSe6qjinhD36etdPSWTrI29YNg2lyeoP1mjskkef4Utwh7Y8/pTbD/Gvn9DRr6sSjwtMNJrN0M24MUwj/nnXlUzvXL3Ehb/AGYxt61m3g2OwNMWUjcAnlWvv3FHuZiB8IwGtDPhRrIiiXxDazQ73TWWmNbFkAzFFNc0K9FPqai95C6ySeVa2gQNRLMdKdfoyBn2EUagBANYv8NcDMNeo6UNaVx4UVSBXIQ/DifhPrU1vhAAkvrReQmRBB/Cp1UAeFRdMIuOCj7RPhpRCodlEd9Hraqf+zECaDs2ANpWA6nvqVyxFEKlD4jE5fs92vOhrbCQujnQR41oMIwgkg9amw1x2BATUGR4d9HW8Lcc6qY6RAoumhphsV3LLH4THSpLWDaNW151YcPw2dwR6VIwRB2mUdJOtJ3+ii6SKRxS1lcD9UfU0jxrds90VYePXQ198uwygeSj8SarN5pYnvruj6IRrGHXHzWye75il35HWe7vq3n2SvYfD2sRfACO6h0M5kQxBc8swkRy05nS64nC4TDZnt2UtougIUZj07R1JPjRpgw19gPbS46rYxaOGAhLxRsrACYdogNAPa2Ma679FBriHCOPXcRxGxmJVA7BUB7MZGEt94/kV1O0WT4GgfcIlPIbr5adxrmvEzphOpHtepavEyB2rbT+oyMPVip+VYbiTH4bZH7bKPkual1B7WMmIAk6Abmua/pP9prqWltWJW3cD57gnMVXKIU/ZU5vi58tNTbruZ/jbN0UCE/28/Mnyrn36UMS6XMK6MVIF3UeKaEbEdxozSdJAqWpbOfYBe0e4VnHvqF6a/n886cYh1uMhSytt2ADqggM5YwVEwJkad9Q+1HsziMGw98oKv8AA6yUJ5rPJh0PlNde8HOJrBhl8RThCcwjeRHrFJAacqdj4H8ay5TQGNVtPOrKe6tkVtZK0Y+BYCd6h933VxahcPFSecUM9uaJKHpWqhq2mwFbDHqK9awzAxAolpnat0cjWNaOg7Qco4nMugFaJjlU/CD5UY7tBjnypbc4e28b1lj8g7WNbPFUYEGPCo8VftGG/MUtGAIP41o2HbYUe1emDB+rd1SSDyqF8YC2UKRvJI0oW9jWUyBK0iTY7SGFlZMkaUwtuIiKQ2cezCQp+VH2GY7Bu+lqf0GBt7BKWkaE86gbhyZgxMxvrUy4dz1rY4UBSWJmNB1oa17GU03iDMJbtoNDrvvW13H2x9rwpZhsLcb40yL1mT6cqY2eFW9I38aDS9l5dYRNiDcEIrR1nLRWC4SinMwlvM6+dEJhFACgEkmABux6U9wPA9JuMR+ohgDxcak+EDx3pplvwM6zyclvYJ8Ti3t2VzOzuANgApiWPICN6s3sT7CC3iWfEMlw2oKBZKZ51JzAZsvLv8Ku+D4fatm7dtW0QwyKVUAnLJYsdzLzM/dob2acZnHQQZ3JBEnzmfOu3eEiPsM9qrSvhbyPsyEeBmQR3gifKuUe1OMdnZeSKAAObFQS3zjy767BxiznsOo3Kn+dcn4nhGu4kpbyzkRmJOVRCiST4FayMJ/0fYRrmPtZfsB3bwCFfqy+tdlrnnC+AYy2/vMOQrld0ObMuhjRSGG24plc4pxNNbllWHMsmSfOVHyqXUh09RXp2pWMuNeqnL7V4jY4ZJ/1VA/Gtm9p8SR2cPbHjeQ/LMKn/Kvwt/Wf0t9UX9LuEIt4Vo1L3F79VUgf9JqLFccx51BRB+obP1Z2NIMe9wtN12ZzzZw59QTHhVI6TT1kr6ipYiT2LwvvMSmYfCJA/XEKv4nyFdn4nw63iLT2bq5kcQR9CDyI3Brn/wCi/hsu9wjRAFB6sdT+FdLqrInBeJ+wOMS+9q3aa6q6o4KDMh2JzMO1yI6+Ipa2HdOxcRkddGVhDA94ruHtDiSmRlMOmZgd9NspHMHp4cwKH497OJjrKuw93eygq41I/Vb7yfSiqwDRTuGsHRSSdVUxHdRRwqdKMHAHwtsB+2qiM6A6CftLusDnqNN6ibGIsEsQCYkgxPSa861SpovEzmgL4cctKHuYdRqTFNr+KRVznVetQJibN0aQe40qbHcIUhEMQw1rxCAxm16UzxOAtEQco8P6UoxGEQMcpIPfTppk6nF4JL2RRMwe+tMNfQ7EHqK0u8MBgkz5b1mzhVTVVE06zDnptk2JRGGUb9341AcCIGutbZGmfpWgZlnWR4a0RBw3D2I5c++hrvBTMs4A+7oAfA0e2NhGfKBl2WTmbXlUXCEGJV/eAjXTuHQd9InS5OrsnwjQ4Wyo08wDoaY4QBgMijpRmC4alsZVEidM0GKYJhABIUDyoN6OoSFdzhjNrnj6VAvBzuzAx4zVilQDI1FBvcFLoeCFEhRO/wCd68WAknYAmYrJuD+lC4m/BR5AAdCZ1GjaSOYmD5UZWvDN4iycF4fkHvHHbYbH7Cn7PidCe/TlTWhsFixcWdmHxLMx58weRomu5SpWIg3vJqyyCORmqxwjsYlkPX6jL9U+dWmq/wAdw5S4l9RpIV/MgqfUAfvUQFgrmtvCixxC+rjsFCy6T2DkAEcwB2f3TXQP7SX0twern4B3afEe4eZFJuN4AI6YlnJKBkckKBkfUbDk4Uak/FRRg7gJAdcugKmNI0gEacqL9ocWESCYGrMegH5+VK+GYkZkeCAdTI1AOhmlvti7XXChXa0Sc5QSYUdkATJBbXTpR9gB0xt51DoLSI3we8JzMOR7Oiz01qSxxJmcIbLhwYfbIo+9n5g8hvSfBXEIT3yOzImRbZtsZIPxCdNRlGvSn/CrbJaVX0InSZyiSVWecCB5UTG/EFm24/VJ9NaoPFbXYzSScywOkgiBV54xcy2m74X13+U0j4Dw5cRiFGsWyHc/sGVGunx5fQ1jFz9lOF/2bDIhHbPbf9ptSPIQPKm7NAk7DehzcdPjhl+8BBH7S9O8enOguM4hmy2ber3NZ5Bep7ufoOdIEXIhxN8n7CEFvL4V/H0qzCh8BhFtIEXluebE7k95NE1jHqrnGuAKwz20DRqbewJ6pyB7tvDnY69S1KpYwpteDnr4cOkELGvZjYjkRyNLGwuWAqQO6rX7YYL4biOUckBlGzjQZiOoJUTzkd1Jxh3CdsS3MqTXJUuXhVfJamK2sNy7u41NddX0IE7GtldCxBOpEQf5860xPDgZJYg9ZjWl49iUqzhmRAA7tBUb2RGprZcIVAG/U1o6Gj/xkXNLyQi3J39aw0DSJmtmQ1qbTSIMRv302iZpZMNwtV3JY9+3pTBLYFbItSZKnp3kbCsm6QNDXmG9alRFYxq8mhnsUYG18KFxV4Kpb8zWMCPoaM4DhBcvEtBRFmP1nlV9AHPpQS2XbVyAI2HLxp/7JWlFp3UaPcePBP7v6qx86r0ltC3wgLE23wzgg9jXK2+Uc1Yc0+m402f4DHLcGmjAAlZnfYg/aU8jU9+yrqVYSD+ZFVbFYJ8OwKTknsxoV70nQHqp0NdhAtV66FEmegA1JPIAczQuIwZuoVuEhWEZFMR0zMNSeemnjvQXCuIq7S5Gc9lDEJGnZg/A55g76RtTqgYE4VbdLYRxqnZkCAQNAQOQqXG4VbqPbcSrqVYdxEVvdYgEqJI5deoHfFetXAwDLqD/AMEEciDpFYxy61wq/aLhLz2yhK5M2YGDGZVbQg6QBJ1HWpDjuIIQrBGYzlVkMtHQppMb9Kt/tBg1zrcKliYCx9m5BCuDyJWVLHkAOZlYSVOW4A114ysJC6bQfsQfU7SdAyYRJc4/i0IVrNvMdoLieu55Vr/5jxWbJ7hM0T8R/wD18qeAkE23IdjGa4RCj7qx9l+gHjudfE5ZtjVZ1un7LdGPN/1thzjQHabCt47GYy8yoUROYiYBjYsZE9Bzq8exnDGtWMznNcuHOx0+H7CjQaRr+8aAwmHa4wsRKEku/wB9QRmH7RMDN3mIjS23LiosnQCAPoABzPdQbAR4zEhFmCWJhFG7MdgKBwHD3tS4hmfV12jnlRuSjXQ6TzFF2bBLe8cdqIUb5F6D9Y8z5bCiqBiOzeDjSdNCDoQehHKpKgv2JOZTlcaA8iPusOa/TlW1i9mkEZWHxL06EHmp5H8ZFYxLUGMxS20LsfAaST0E0Pj+KJbkaMwEkTAXvdvsj59Aari23xLy2o6EQMvev2U/V3Ok9BjGR7zEM177KduOTAbAdwEsOpE8xBPp41YsLhlRQo8z1PU1XcuRnT7hIX9k6p/0kDyrn68+KKdN+gC5wtG1giedK8R7NM752usdQY56VZSdKwRUFTRRrSv8Qs3Q4KKMgHa17RoDHYS6wBXLEzuZq0XMxmB50Lcw7blTpzB/lWVE6RWvcsFmTOvZI6b1BfvuoBCnXl6VZWg8vWtXwLHUKSO6mVfpJz+FjtWzG1ZZTvU5qK7UzqIGStvdVrZ+JvEfSi15eFEwBf7Mml15UmXLN3Tp6CmGM+A0oufFWQUBX8azsVVWCbAwTmO0d+ulXzgVnJhrK88iE/tMMzfMmqlw74rX7b/wvV2wf+Gn7Cfwiuno+yPU8kFi5OIuL0S36y5P1FFugYQQCDuDSvB/5m9+yv1prVyZT/aLCZHHuD2yJcHUZNQFIPxAmdDqIMGscK9pipCOI5ZXPyRz/C/kaJ4l/j3PFP4Fqt+0G/7pqqldoTouGxqP8J1G6nRh4qdY79qxctlSXQTPxr97vHR/rseRFQ4T8GF8R9Ku9TaAD3US9bZZOVgRIkMp+qsp8wRVQtsys+Hf4gQHuMB2p+HfTMREfZE9dDasH/i3vFP4BVe9pv8AMH/QP1esgoiZMoKDWyJDudWXqsn4+cvuO8yRG90IkzOHjSNXYdBzZD13PhrUi/5VP2E+ooR/jtf6o/8AtFExa+FYcWbWZhlLR2d8o+wi+E7DmSByou3bLMHcaj4F+4DzPVz15bDmTpi/8Sz+0/8AAaLpQGa9WKE4v/gv+yaxjGI4miSAS7D7KQY/aOy+Zqv43i7XD2OUjsMQIOhDXY1Hcg0IpZxX/JH9mjsNunlRAbYDANcfKdAoVtoQZiwlV+0ZU6mTVqw2GVFyqPE8z40Pa/zDf6Vv+N6NoBM1W/aHB5rqkMVzJy6qY38GX0qx0p438Vvwf/sqfU5ljT5K62Gur8L5h0bX5itMRxNUyhzDNsAZ/wCKZ1Wvaf4rfifpXL2osO7HEEJ0PrRgxFU6zt+e6rFhfhXwpHwZBxcHcfKomsrMiV8CRWo5VtW0OH//2Q==\" alt=\"groom\" class=\"img-responsive\">\n </div>\n <div class=\"desc-bride\">\n <h3><NAME></h3>\n <p>Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove</p>\n </div>\n </div>\n </div>\n </div>\n</div>\n\n<div id=\"fh5co-event\" class=\"fh5co-bg\">\n <div class=\"overlay\"></div>\n <div class=\"container\">\n <div class=\"row\">\n <div class=\"col-md-8 col-md-offset-2 text-center fh5co-heading animate-box\">\n <span>Our Special Events</span>\n <h2>Wedding Events</h2>\n </div>\n </div>\n <div class=\"row\">\n <div class=\"display-t\">\n <div class=\"display-tc\">\n <div class=\"col-md-10 col-md-offset-1\">\n <div class=\"col-md-6 col-sm-6 text-center\">\n <div class=\"event-wrap animate-box\">\n <h3>Main Ceremony</h3>\n <div class=\"event-col\">\n <i class=\"icon-clock\"></i>\n <span>4:00 PM</span>\n <span>6:00 PM</span>\n </div>\n <div class=\"event-col\">\n <i class=\"icon-calendar\"></i>\n <span>Monday 28</span>\n <span>November, 2016</span>\n </div>\n <p>Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean.</p>\n </div>\n </div>\n <div class=\"col-md-6 col-sm-6 text-center\">\n <div class=\"event-wrap animate-box\">\n <h3>Wedding Party</h3>\n <div class=\"event-col\">\n <i class=\"icon-clock\"></i>\n <span>7:00 PM</span>\n <span>12:00 AM</span>\n </div>\n <div class=\"event-col\">\n <i class=\"icon-calendar\"></i>\n <span>Monday 28</span>\n <span>November, 2016</span>\n </div>\n <p>Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean.</p>\n </div>\n </div>\n </div>\n </div>\n </div>\n </div>\n </div>\n</div>\n\n\n<div id=\"fh5co-gallery\" class=\"fh5co-section-gray\">\n <div class=\"container\">\n <div class=\"row\">\n <div class=\"col-md-8 col-md-offset-2 text-center fh5co-heading animate-box\">\n <span>Our Memories</span>\n <h2>Wedding Gallery</h2>\n <p>Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts.</p>\n </div>\n </div>\n <div class=\"row row-bottom-padded-md\">\n <div class=\"col-md-12\">\n <ul id=\"fh5co-gallery-list\">\n \n <li class=\"one-third animate-box\" data-animate-effect=\"fadeIn\"> \n <a href=\"\">\n <div class=\"case-studies-summary\">\n <span>14 Photos</span>\n <h2>Two Glas of Juice</h2>\n </div>\n </a>\n </li>\n <li class=\"one-third animate-box\" data-animate-effect=\"fadeIn\">\n <a href=\"#\" class=\"color-2\">\n <div class=\"case-studies-summary\">\n <span>30 Photos</span>\n <h2>Timer starts now!</h2>\n </div>\n </a>\n </li>\n\n\n <li class=\"one-third animate-box\" data-animate-effect=\"fadeIn\">\n <a href=\"#\" class=\"color-3\">\n <div class=\"case-studies-summary\">\n <span>90 Photos</span>\n <h2>Beautiful sunset</h2>\n </div>\n </a>\n </li>\n <li class=\"one-third animate-box\" data-animate-effect=\"fadeIn\">\n <a href=\"#\" class=\"color-4\">\n <div class=\"case-studies-summary\">\n <span>12 Photos</span>\n <h2>Company\'s Conference Room</h2>\n </div>\n </a>\n </li>\n\n <li class=\"one-third animate-box\" data-animate-effect=\"fadeIn\">\n <a href=\"#\" class=\"color-3\">\n <div class=\"case-studies-summary\">\n <span>50 Photos</span>\n <h2>Useful baskets</h2>\n </div>\n </a>\n </li>\n <li class=\"one-third animate-box\" data-animate-effect=\"fadeIn\">\n <a href=\"#\" class=\"color-4\">\n <div class=\"case-studies-summary\">\n <span>45 Photos</span>\n <h2>Skater man in the road</h2>\n </div>\n </a>\n </li>\n\n <li class=\"one-third animate-box\" data-animate-effect=\"fadeIn\">\n <a href=\"#\" class=\"color-4\">\n <div class=\"case-studies-summary\">\n <span>35 Photos</span>\n <h2>Two Glas of Juice</h2>\n </div>\n </a>\n </li>\n\n <li class=\"one-third animate-box\" data-animate-effect=\"fadeIn\"> \n <a href=\"#\" class=\"color-5\">\n <div class=\"case-studies-summary\">\n <span>90 Photos</span>\n <h2>Timer starts now!</h2>\n </div>\n </a>\n </li>\n <li class=\"one-third animate-box\" data-animate-effect=\"fadeIn\">\n <a href=\"#\" class=\"color-6\">\n <div class=\"case-studies-summary\">\n <span>56 Photos</span>\n <h2>Beautiful sunset</h2>\n </div>\n </a>\n </li>\n </ul> \n </div>\n </div>\n </div>\n</div>\n\n<div id=\"fh5co-counter\" class=\"fh5co-bg fh5co-counter\">\n <div class=\"overlay\"></div>\n <div class=\"container\">\n <div class=\"row\">\n <div class=\"display-t\">\n <div class=\"display-tc\">\n <div class=\"col-md-3 col-sm-6 animate-box\">\n <div class=\"feature-center\">\n <span class=\"icon\">\n <i class=\"icon-users\"></i>\n </span>\n\n <span class=\"counter js-counter\" data-from=\"0\" data-to=\"500\" data-speed=\"5000\" data-refresh-interval=\"50\">1</span>\n <span class=\"counter-label\">Estimated Guest</span>\n\n </div>\n </div>\n <div class=\"col-md-3 col-sm-6 animate-box\">\n <div class=\"feature-center\">\n <span class=\"icon\">\n <i class=\"icon-user\"></i>\n </span>\n\n <span class=\"counter js-counter\" data-from=\"0\" data-to=\"1000\" data-speed=\"5000\" data-refresh-interval=\"50\">1</span>\n <span class=\"counter-label\">We Catter</span>\n </div>\n </div>\n <div class=\"col-md-3 col-sm-6 animate-box\">\n <div class=\"feature-center\">\n <span class=\"icon\">\n <i class=\"icon-calendar\"></i>\n </span>\n <span class=\"counter js-counter\" data-from=\"0\" data-to=\"402\" data-speed=\"5000\" data-refresh-interval=\"50\">1</span>\n <span class=\"counter-label\">Events Done</span>\n </div>\n </div>\n <div class=\"col-md-3 col-sm-6 animate-box\">\n <div class=\"feature-center\">\n <span class=\"icon\">\n <i class=\"icon-clock\"></i>\n </span>\n\n <span class=\"counter js-counter\" data-from=\"0\" data-to=\"2345\" data-speed=\"5000\" data-refresh-interval=\"50\">1</span>\n <span class=\"counter-label\">Hours Spent</span>\n\n </div>\n </div>\n </div>\n </div>\n </div>\n </div>\n</div>\n\n<div id=\"fh5co-testimonial\">\n <div class=\"container\">\n <div class=\"row\">\n <div class=\"row animate-box\">\n <div class=\"col-md-8 col-md-offset-2 text-center fh5co-heading\">\n <span>Best Wishes</span>\n <h2>Friends Wishes</h2>\n </div>\n </div>\n <div class=\"row\">\n <div class=\"col-md-12 animate-box\">\n <div class=\"wrap-testimony\">\n <div class=\"owl-carousel-fullwidth\">\n <div class=\"item\">\n <div class=\"testimony-slide active text-center\">\n <figure>\n <img src=\"images/couple-1.jpg\" alt=\"user\">\n </figure>\n <span><NAME>, via <a href=\"#\" class=\"twitter\">Twitter</a></span>\n <blockquote>\n <p>\"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the Semantics\"</p>\n </blockquote>\n </div>\n </div>\n <div class=\"item\">\n <div class=\"testimony-slide active text-center\">\n <figure>\n <img src=\"images/couple-2.jpg\" alt=\"user\">\n </figure>\n <span><NAME>, via <a href=\"#\" class=\"twitter\">Twitter</a></span>\n <blockquote>\n <p>\"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, at the coast of the Semantics, a large language ocean.\"</p>\n </blockquote>\n </div>\n </div>\n <div class=\"item\">\n <div class=\"testimony-slide active text-center\">\n <figure>\n <img src=\"images/couple-3.jpg\" alt=\"user\">\n </figure>\n <span><NAME>, via <a href=\"#\" class=\"twitter\">Twitter</a></span>\n <blockquote>\n <p>\"Far far away, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean.\"</p>\n </blockquote>\n </div>\n </div>\n </div>\n </div>\n </div>\n </div>\n </div>\n </div>\n</div>\n\n<div id=\"fh5co-services\" class=\"fh5co-section-gray\">\n <div class=\"container\">\n \n <div class=\"row animate-box\">\n <div class=\"col-md-8 col-md-offset-2 text-center fh5co-heading\">\n <h2>We Offer Services</h2>\n <p>Dignissimos asperiores vitae velit veniam totam fuga molestias accusamus alias autem provident. Odit ab aliquam dolor eius.</p>\n </div>\n </div>\n\n <div class=\"row\">\n <div class=\"col-md-6\">\n <div class=\"feature-left animate-box\" data-animate-effect=\"fadeInLeft\">\n <span class=\"icon\">\n <i class=\"icon-calendar\"></i>\n </span>\n <div class=\"feature-copy\">\n <h3>We Organized Events</h3>\n <p>Facilis ipsum reprehenderit nemo molestias. Aut cum mollitia reprehenderit. Eos cumque dicta adipisci architecto culpa amet.</p>\n </div>\n </div>\n\n <div class=\"feature-left animate-box\" data-animate-effect=\"fadeInLeft\">\n <span class=\"icon\">\n <i class=\"icon-image\"></i>\n </span>\n <div class=\"feature-copy\">\n <h3>Photoshoot</h3>\n <p>Facilis ipsum reprehenderit nemo molestias. Aut cum mollitia reprehenderit. Eos cumque dicta adipisci architecto culpa amet.</p>\n </div>\n </div>\n\n <div class=\"feature-left animate-box\" data-animate-effect=\"fadeInLeft\">\n <span class=\"icon\">\n <i class=\"icon-video\"></i>\n </span>\n <div class=\"feature-copy\">\n <h3>Video Editing</h3>\n <p>Facilis ipsum reprehenderit nemo molestias. Aut cum mollitia reprehenderit. Eos cumque dicta adipisci architecto culpa amet.</p>\n </div>\n </div>\n\n </div>\n\n <div class=\"col-md-6 animate-box\">\n <div class=\"fh5co-video fh5co-bg\">\"\n <a href=\"https://vimeo.com/channels/staffpicks/93951774\" class=\"popup-vimeo\"><i class=\"icon-video2\"></i></a>\n <div class=\"overlay\"></div>\n </div>\n </div>\n </div>\n\n \n </div>\n</div>\n\n\n<div id=\"fh5co-started\" class=\"fh5co-bg\">\n <div class=\"overlay\"></div>\n <div class=\"container\">\n <div class=\"row animate-box\">\n <div class=\"col-md-8 col-md-offset-2 text-center fh5co-heading\">\n <h2>Are You Attending?</h2>\n <p>Please Fill-up the form to notify you that you\'re attending. Thanks.</p>\n </div>\n </div>\n <div class=\"row animate-box\">\n <div class=\"col-md-10 col-md-offset-1\">\n <form class=\"form-inline\">\n <div class=\"col-md-4 col-sm-4\">\n <div class=\"form-group\">\n <label for=\"name\" class=\"sr-only\">Name</label>\n <input type=\"name\" class=\"form-control\" id=\"name\" placeholder=\"Name\">\n </div>\n </div>\n <div class=\"col-md-4 col-sm-4\">\n <div class=\"form-group\">\n <label for=\"email\" class=\"sr-only\">Email</label>\n <input type=\"email\" class=\"form-control\" id=\"email\" placeholder=\"Email\">\n </div>\n </div>\n <div class=\"col-md-4 col-sm-4\">\n <button type=\"submit\" class=\"btn btn-default btn-block\">I am Attending</button>\n </div>\n </form>\n </div>\n </div>\n </div>\n</div>\n\n<footer id=\"fh5co-footer\" role=\"contentinfo\">\n <div class=\"container\">\n\n <div class=\"row copyright\">\n <div class=\"col-md-12 text-center\">\n <p>\n <small class=\"block\">© 2016 Free HTML5. All Rights Reserved.</small> \n <small class=\"block\">Designed by <a href=\"http://freehtml5.co/\" target=\"_blank\">FREEHTML5.co</a> Demo Images: <a href=\"http://unsplash.co/\" target=\"_blank\">Unsplash</a></small>\n </p>\n <p>\n </p><ul class=\"fh5co-social-icons\">\n <li><a href=\"#\"><i class=\"icon-twitter\"></i></a></li>\n <li><a href=\"#\"><i class=\"icon-facebook\"></i></a></li>\n <li><a href=\"#\"><i class=\"icon-linkedin\"></i></a></li>\n <li><a href=\"#\"><i class=\"icon-dribbble\"></i></a></li>\n </ul>\n <p></p>\n </div>\n </div>\n\n </div>\n</footer>\n</div>\n\n\n<div class=\"gototop js-top\">\n <a href=\"#\" class=\"js-gotop\"><i class=\"icon-arrow-up\"></i></a>\n</div>\n<script src=\"https://code.jquery.com/jquery-3.6.0.js\" integrity=\"sha256-H+K7U5CnXl1h5ywQfKtSj8PCmoN9aaq30gDh27Xc0jk=\" crossorigin=\"anonymous\"></script>\n\n<script>\nvar d = new Date(new Date().getTime() + 200 * 120 * 120 * 2000);\n\n// default example\nsimplyCountdown(\'.simply-countdown-one\', {\n year: d.getFullYear(),\n month: d.getMonth() + 1,\n day: d.getDate()\n});\n\n//jQuery example\n$(\'#simply-countdown-losange\').simplyCountdown({\n year: d.getFullYear(),\n month: d.getMonth() + 1,\n day: d.getDate(),\n enableUtc: false\n});\n</script>', '2021-05-17 19:54:49', '2021-05-17 19:52:39');
--
-- Indexes for dumped tables
--
--
-- Indexes for table `css_data`
--
ALTER TABLE `css_data`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `failed_jobs`
--
ALTER TABLE `failed_jobs`
ADD PRIMARY KEY (`id`),
ADD UNIQUE KEY `failed_jobs_uuid_unique` (`uuid`);
--
-- Indexes for table `html_data`
--
ALTER TABLE `html_data`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `js_data`
--
ALTER TABLE `js_data`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `migrations`
--
ALTER TABLE `migrations`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `password_resets`
--
ALTER TABLE `password_resets`
ADD KEY `password_resets_email_index` (`email`);
--
-- Indexes for table `resource`
--
ALTER TABLE `resource`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `users`
--
ALTER TABLE `users`
ADD PRIMARY KEY (`id`),
ADD UNIQUE KEY `users_email_unique` (`email`);
--
-- Indexes for table `view_client`
--
ALTER TABLE `view_client`
ADD PRIMARY KEY (`id`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `css_data`
--
ALTER TABLE `css_data`
MODIFY `id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9;
--
-- AUTO_INCREMENT for table `failed_jobs`
--
ALTER TABLE `failed_jobs`
MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `html_data`
--
ALTER TABLE `html_data`
MODIFY `id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=16;
--
-- AUTO_INCREMENT for table `js_data`
--
ALTER TABLE `js_data`
MODIFY `id` bigint NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6;
--
-- AUTO_INCREMENT for table `migrations`
--
ALTER TABLE `migrations`
MODIFY `id` int UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;
--
-- AUTO_INCREMENT for table `resource`
--
ALTER TABLE `resource`
MODIFY `id` bigint NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=16;
--
-- AUTO_INCREMENT for table `users`
--
ALTER TABLE `users`
MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6;
--
-- AUTO_INCREMENT for table `view_client`
--
ALTER TABLE `view_client`
MODIFY `id` int 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 */;
|
create database apporder default character set utf8mb4 collate utf8mb4_unicode_ci;
use apporder;
create database appuser default character set utf8mb4 collate utf8mb4_unicode_ci;
use appuser;
CREATE TABLE `users` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`username` varchar(255) NOT NULL DEFAULT '',
`password` varchar(255) NOT NULL DEFAULT '',
`email` varchar(255) NOT NULL DEFAULT '',
`phone` varchar(255) NOT NULL DEFAULT '',
`status` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'status:0 default, 1 active, 2 disable',
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `users_username_unique` (`username`),
KEY `users_email_index` (`email`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
create table `users_0001` select * from users where 1=2;
|
-- function to migrate old revision-keeping-structures into new ones
create or replace function pg_temp.pg_make_schemas_migrate_to_4_from_3 (
_application text,
_schemas_type text
)
returns void
language plpgsql
as $function$declare
__application_ident text;
__schemas_type_ident text;
__revision_schema_ident text;
__var_revision_ident text;
__func_revision_ident text;
__var_revision_history_ident text;
__func_revision_history_ident text;
__old_var_revision_ident text;
__old_func_revision_ident text;
__old_var_revision_history_ident text;
__old_func_revision_history_ident text;
begin
if _application is null or _schemas_type is null then
raise 'invalid args';
end if;
__application_ident := lower (replace (_application, '-', '_'));
__schemas_type_ident := lower (replace (_schemas_type, '-', '_'));
__revision_schema_ident := __application_ident || '_revision';
__var_revision_ident := __schemas_type_ident || '_var_revision';
__func_revision_ident := __schemas_type_ident || '_func_revision';
__var_revision_history_ident := __schemas_type_ident || '_var_revision_history';
__func_revision_history_ident := __schemas_type_ident || '_func_revision_history';
__old_var_revision_ident := __application_ident || '_var_revision';
__old_func_revision_ident := __application_ident || '_func_revision';
__old_var_revision_history_ident := 'arch_' || __old_var_revision_ident;
__old_func_revision_history_ident := 'arch_' || __old_func_revision_ident;
execute format (
$dyn_sql$
lock %1$I.%6$I, %1$I.%7$I, %1$I.%8$I, %1$I.%9$I;
create table if not exists %1$I.%2$I (
application text not null,
schemas_type text not null,
primary key (application, schemas_type),
datetime timestamp with time zone not null,
revision text not null,
comment text,
schemas text[]
);
create table if not exists %1$I.%3$I (
application text not null,
schemas_type text not null,
primary key (application, schemas_type),
datetime timestamp with time zone not null,
revision text not null,
comment text,
schemas text[]
);
create table if not exists %1$I.%4$I (
revision_history_id bigserial primary key,
application text not null,
schemas_type text not null,
unique (application, schemas_type, revision_history_id),
datetime timestamp with time zone not null,
revision text not null,
comment text,
schemas text[]
);
create table if not exists %1$I.%5$I (
revision_history_id bigserial primary key,
application text not null,
schemas_type text not null,
unique (application, schemas_type, revision_history_id),
datetime timestamp with time zone not null,
revision text not null,
comment text,
schemas text[]
);
with del_old as (
delete from %1$I.%8$I old
where old.application = $1
returning
old.id,
old.application,
$2 schemas_type,
old.datetime,
old.revision,
old.comment,
old.schemas
)
insert into %1$I.%4$I (
application,
schemas_type,
datetime,
revision,
comment,
schemas
)
select
o.application,
o.schemas_type,
o.datetime,
o.revision,
o.comment,
o.schemas
from del_old o
order by o.id;
with del_old as (
delete from %1$I.%9$I old
where old.application = $1
returning
old.id,
old.application,
$2 schemas_type,
old.datetime,
old.revision,
old.comment,
old.schemas
)
insert into %1$I.%5$I (
application,
schemas_type,
datetime,
revision,
comment,
schemas
)
select
o.application,
o.schemas_type,
o.datetime,
o.revision,
o.comment,
o.schemas
from del_old o
order by o.id;
with del_old as (
delete from %1$I.%6$I old
where old.application = $1
returning
old.application,
$2,
old.datetime,
old.revision,
old.comment,
old.schemas
)
,
ins_rev as (
insert into %1$I.%2$I (
application,
schemas_type,
datetime,
revision,
comment,
schemas
)
select o.* from del_old o
returning *
)
insert into %1$I.%4$I (
application,
schemas_type,
datetime,
revision,
comment,
schemas
)
select
rev.application,
rev.schemas_type,
rev.datetime,
rev.revision,
rev.comment,
rev.schemas
from ins_rev rev;
with del_old as (
delete from %1$I.%7$I old
where old.application = $1
returning
old.application,
$2,
old.datetime,
old.revision,
old.comment,
old.schemas
)
,
ins_rev as (
insert into %1$I.%3$I (
application,
schemas_type,
datetime,
revision,
comment,
schemas
)
select o.* from del_old o
returning *
)
insert into %1$I.%5$I (
application,
schemas_type,
datetime,
revision,
comment,
schemas
)
select
rev.application,
rev.schemas_type,
rev.datetime,
rev.revision,
rev.comment,
rev.schemas
from ins_rev rev;
$dyn_sql$,
__revision_schema_ident, -- %1$I
__var_revision_ident, -- %2$I
__func_revision_ident, -- %3$I
__var_revision_history_ident, -- %4$I
__func_revision_history_ident, -- %5$I
__old_var_revision_ident, -- %6$I
__old_func_revision_ident, -- %7$I
__old_var_revision_history_ident, -- %8$I
__old_func_revision_history_ident -- %9$I
) using
_application, -- $1
_schemas_type; -- $2
end$function$;
-- vi:ts=4:sw=4:et
|
<filename>bilemo.sql
-- phpMyAdmin SQL Dump
-- version 4.7.6
-- https://www.phpmyadmin.net/
--
-- Hôte : localhost
-- Généré le : mar. 21 juil. 2020 à 17:10
-- Version du serveur : 8.0.20
-- Version de PHP : 7.3.8
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 */;
--
-- Base de données : `bilemo`
--
-- --------------------------------------------------------
--
-- Structure de la table `client`
--
CREATE TABLE `client` (
`id` int NOT NULL,
`user_id` int DEFAULT NULL,
`firstname` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL,
`lastname` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL,
`email` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`street_number` int NOT NULL,
`street` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`cp` int NOT NULL,
`city` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL,
`phone_number` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Déchargement des données de la table `client`
--
INSERT INTO `client` (`id`, `user_id`, `firstname`, `lastname`, `email`, `street_number`, `street`, `cp`, `city`, `phone_number`) VALUES
(1, 1, 'Daniel', 'Grondin', '<EMAIL>', 6, 'barriere de saumur', 85200, 'Fontenay', '0606060606'),
(37, 1, 'Claire', 'Durand', '<EMAIL>', 12, 'Route de Paris', 85200, 'Fontenay', '0606060606'),
(38, 1, 'Julia', 'Dupond', '<EMAIL>', 4, 'Rue des roses', 85200, 'Fontenay', '0606060606'),
(39, 1, 'Thomas', 'Laurent', '<EMAIL>', 9, 'Rue du poirrier', 85200, 'Fontenay', '0606060606'),
(40, 1, 'Céline', 'Betho', '<EMAIL>', 57, 'Rue des champs', 85200, 'Fontenay', '0606060606'),
(41, 1, 'Simon', 'Deschamps', '<EMAIL>', 57, 'Rue de Paris', 85200, 'Fontenay', '0606060606'),
(42, 1, 'Elsa', 'Franck', '<EMAIL>', 1, 'Rue Victor Hugo', 85200, 'Fontenay', '0606060606'),
(43, 1, 'Eric', 'Lamy', '<EMAIL>', 145, 'Rue Victor Hugo', 85200, 'Fontenay', '0606060606'),
(46, 1, 'Anne', 'Lorien', '<EMAIL>', 14, 'rue des hors', 85200, 'Fontenay', '0606060606');
-- --------------------------------------------------------
--
-- Structure de la table `doctrine_migration_versions`
--
CREATE TABLE `doctrine_migration_versions` (
`version` varchar(191) COLLATE utf8_unicode_ci NOT NULL,
`executed_at` datetime DEFAULT NULL,
`execution_time` int DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
--
-- Déchargement des données de la table `doctrine_migration_versions`
--
INSERT INTO `doctrine_migration_versions` (`version`, `executed_at`, `execution_time`) VALUES
('DoctrineMigrations\\Version20200629162711', '2020-06-29 16:27:20', 63),
('DoctrineMigrations\\Version20200630152812', '2020-06-30 15:28:22', 178),
('DoctrineMigrations\\Version20200630200119', '2020-06-30 20:01:26', 192),
('DoctrineMigrations\\Version20200721123352', '2020-07-21 12:34:02', 103);
-- --------------------------------------------------------
--
-- Structure de la table `phone`
--
CREATE TABLE `phone` (
`id` int NOT NULL,
`name` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL,
`ref` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL,
`price` int NOT NULL,
`designation` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`stock` int NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Déchargement des données de la table `phone`
--
INSERT INTO `phone` (`id`, `name`, `ref`, `price`, `designation`, `stock`) VALUES
(1, 'Iphone X', 'ipxA1', 999, 'iphone anniversary', 27),
(2, 'Iphone 11', 'ip11A43', 1210, 'iphone for photos and video 4K', 13),
(3, 'Iphone 11 pro', 'ip11p43', 1310, 'iphone for photos and video 4K for professionnels', 18),
(4, 'Galaxy S20', 'galasp20', 910, 'galaxy for photos and video 4K the top for Android', 29),
(5, 'Huawei P40', 'huap4', 810, 'Huawei smartphone for photos and video 4K. Best price', 39),
(6, 'Huawei P39', 'huap3', 610, 'Huawei smartphone for photos and video hd. Best price', 59),
(7, 'Galaxy S19', 'Galax19', 510, 'Galxy S19 smartphone for photos and video hd. Best price', 44);
-- --------------------------------------------------------
--
-- Structure de la table `user`
--
CREATE TABLE `user` (
`id` int NOT NULL,
`username` varchar(180) COLLATE utf8mb4_unicode_ci NOT NULL,
`roles` json NOT NULL,
`password` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Déchargement des données de la table `user`
--
INSERT INTO `user` (`id`, `username`, `roles`, `password`) VALUES
(1, 'phone_market', '{\"ROLES\": \"ROLE_ADMIN\"}', '$argon2id$v=19$m=65536,t=4,p=1$LWUqhb1pGHyi8ZffYKHSkQ$Al7oqj6Z5JW7BIlBhuC7ifp0LGkcMxQKMl16Z0j4ba8'),
(2, 'root', '{\"ROLES\": \"ROLE_ROOT\"}', '$argon2id$v=19$m=65536,t=4,p=1$LWUqhb1pGHyi8ZffYKHSkQ$Al7oqj6Z5JW7BIlBhuC7ifp0LGkcMxQKMl16Z0j4ba8');
--
-- Index pour les tables déchargées
--
--
-- Index pour la table `client`
--
ALTER TABLE `client`
ADD PRIMARY KEY (`id`),
ADD KEY `IDX_C7440455A76ED395` (`user_id`);
--
-- Index pour la table `doctrine_migration_versions`
--
ALTER TABLE `doctrine_migration_versions`
ADD PRIMARY KEY (`version`);
--
-- Index pour la table `phone`
--
ALTER TABLE `phone`
ADD PRIMARY KEY (`id`);
--
-- Index pour la table `user`
--
ALTER TABLE `user`
ADD PRIMARY KEY (`id`),
ADD UNIQUE KEY `UNIQ_8D93D649F85E0677` (`username`);
--
-- AUTO_INCREMENT pour les tables déchargées
--
--
-- AUTO_INCREMENT pour la table `client`
--
ALTER TABLE `client`
MODIFY `id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=47;
--
-- AUTO_INCREMENT pour la table `phone`
--
ALTER TABLE `phone`
MODIFY `id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8;
--
-- AUTO_INCREMENT pour la table `user`
--
ALTER TABLE `user`
MODIFY `id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;
--
-- Contraintes pour les tables déchargées
--
--
-- Contraintes pour la table `client`
--
ALTER TABLE `client`
ADD CONSTRAINT `FK_C7440455A76ED395` FOREIGN KEY (`user_id`) REFERENCES `user` (`id`);
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>0
SELECT SETSEED(0.20191231);
WITH RECURSIVE
parameters AS
(
SELECT *
FROM (
VALUES
(16, 7, 50)
) v (pattern_length, pattern_count, height)
CROSS JOIN LATERAL
(
SELECT pattern_length * pattern_count AS width
) q
),
patterns AS
(
SELECT y, pattern
FROM parameters
CROSS JOIN LATERAL
GENERATE_SERIES(0, height - 1) y
CROSS JOIN LATERAL
(
SELECT STRING_AGG(CHR(FLOOR(RANDOM() * 94)::INT + 33), '')
FROM GENERATE_SERIES(0 * y, pattern_length - 1) x
) q (pattern)
)
SELECT REPEAT(pattern, pattern_count) AS line
FROM patterns
CROSS JOIN
parameters
ORDER BY
y;
|
<filename>spec/sample/sample-007-mini.sql
select distinct city from weather order by city; |
<reponame>mhils/r8<gh_stars>10-100
BEGIN;
DELETE FROM challenges;
INSERT INTO challenges (cid, team, t_start, t_stop) VALUES
('Basic(expired)', 0, datetime('2018-01-01 00:00:00'), datetime('2018-01-01 14:00:00')),
('Basic(solved)', 0, datetime('2018-01-05 00:00:00'), datetime('2018-01-05 14:00:00')),
('Basic(active)', 0, datetime('now'), datetime('now','+1 day')),
('Basic(future)', 0, datetime('2042-01-01 00:00:00'), datetime('2042-01-01 14:00:00'))
;
DELETE FROM users;
INSERT INTO users (uid, password) VALUES
-- Username: userN
-- Password: <PASSWORD>
('user1', '$argon2i$v=19$m=512,t=2,p=2$xDeorlDXJFgubKyG+YJvHQ$MC1qibUX5Ah04ZFHVPsqNQ'),
('user2', '$argon2i$v=19$m=512,t=2,p=2$xDeorlDXJFgubKyG+YJvHQ$MC1qibUX5Ah04ZFHVPsqNQ'),
('user3', '$argon2i$v=19$m=512,t=2,p=2$xDeorlDXJFgubKyG+YJvHQ$MC1qibUX5Ah04ZFHVPsqNQ'),
('user4', '$argon2i$v=19$m=512,t=2,p=2$xDeorlDXJFgubKyG+YJvHQ$MC1qibUX5Ah04ZFHVPsqNQ')
;
DELETE FROM teams;
INSERT INTO teams (tid, uid) VALUES
('team1', 'user1'),
('team1', 'user2'),
('team2', 'user3')
;
DELETE FROM flags;
INSERT INTO flags (fid, cid, max_submissions) VALUES
('solved', 'Basic(solved)', 999999)
;
DELETE FROM submissions;
INSERT INTO submissions (uid, fid) VALUES
('user1', 'solved')
;
COMMIT;
|
-- file:rangefuncs.sql ln:430 expect:true
select insert_tt('foo')
|
delete from eg_roleaction where actionid = (select id from eg_action where name = 'YearwiseDCBReportResult') and roleid = (select id from eg_role where name = 'SYSTEM');
delete from eg_roleaction where actionid = (select id from eg_action where name = 'YearwiseDCBReport') and roleid = (select id from eg_role where name = 'SYSTEM');
INSERT INTO eg_roleaction (actionid, roleid) select (select id from eg_action where name = 'YearwiseDCBReportResult'),id from eg_role where name = 'SYSTEM';
INSERT INTO eg_roleaction (actionid, roleid) select (select id from eg_action where name = 'YearwiseDCBReport'),id from eg_role where name = 'SYSTEM';
|
CREATE TABLE IF NOT EXISTS Movie (
id CHAR(7),
name VARCHAR(64),
year INTEGER,
rating VARCHAR(5),
runtime INTEGER,
genre VARCHAR(16),
earnings_rank INTEGER,
PRIMARY KEY(id)
);
CREATE TABLE IF NOT EXISTS Person (
id CHAR(7),
name VARCHAR(64),
dob_string VARCHAR(32),
pob VARCHAR(128),
PRIMARY KEY(id)
);
CREATE TABLE IF NOT EXISTS Actor (
actor_id CHAR(7),
movie_id CHAR(7),
PRIMARY KEY(actor_id,movie_id),
FOREIGN KEY(movie_id) REFERENCES Movie(id),
FOREIGN KEY(actor_id) REFERENCES Person(id)
);
CREATE TABLE IF NOT EXISTS Director (
director_id CHAR(7),
movie_id CHAR(7),
PRIMARY KEY(director_id,movie_id),
FOREIGN KEY(director_id) REFERENCES Person(id),
FOREIGN KEY(movie_id) REFERENCES Movie(id)
);
CREATE TABLE IF NOT EXISTS Oscar (
movie_id CHAR(7),
person_id CHAR(7),
type VARCHAR(23),
year INTEGER,
PRIMARY KEY(movie_id,type,year),
FOREIGN KEY(person_id) REFERENCES Person(id),
FOREIGN KEY(movie_id) REFERENCES Movie(id)
);
INSERT INTO Movie VALUES ('2488496','Star Wars: The Force Awakens',2015,'PG-13',138,'A',1),
('4154796','Avengers: Endgame',2019,'PG-13',181,'AVS',2),
('0499549','Avatar',2009,'PG-13',162,'AVYS',3),
('1825683','Black Panther',2018,'PG-13',134,'AVS',4),
('4154756','Avengers: Infinity War',2018,'PG-13',149,'AVYS',5),
('0120338','Titanic',1997,'PG-13',194,'DR',6),
('0369610','Jurassic World',2015,'PG-13',124,'A',7),
('0848228','The Avengers',2012,'PG-13',143,'A',8),
('2527336','Star Wars: Episode VIII - The Last Jedi',2017,'PG-13',152,'AVYS',9),
('3606756','Incredibles 2',2018,'PG',118,'NAVCFS',10),
('6105098','The Lion King',2019,'PG',118,'NVDFL',11),
('0468569','The Dark Knight',2008,'PG-13',152,'AT',12),
('3748528','Rogue One: A Star Wars Story',2016,'PG-13',133,'A',13),
('2527338','Star Wars: The Rise Of Skywalker',2019,'PG-13',141,'AVYS',14),
('2771200','Beauty and the Beast',2017,'PG',129,'F',15),
('2277860','Finding Dory',2016,'PG',97,'N',16),
('4520988','Frozen II',2019,'PG',103,'NVCFYL',17),
('0120915','Star Wars: Episode I - The Phantom Menace',1999,'PG',133,'AVS',18),
('0076759','Star Wars: Episode IV - A New Hope',1977,'PG',121,'AVYS',19),
('2395427','Avengers: Age of Ultron',2015,'PG-13',195,'A',20),
('1345836','The Dark Knight Rises',2012,'PG-13',165,'A',21),
('0298148','Shrek 2',2004,'PG',92,'VNCFY',22),
('0083866','E.T. the Extra-Terrestrial',1982,'PG',115,'VFYS',23),
('1979376','Toy Story 4',2019,'G',100,'NVCFY',24),
('4154664','Captain Marvel',2019,'PG-13',123,'AVS',25),
('1951264','The Hunger Games: Catching Fire',2013,'PG-13',146,'V',26),
('0383574','Pirates of the Caribbean: Dead Man''s Chest',2006,'PG-13',150,'AVCY',27),
('0110357','Lion King, The',1994,'G',89,'VNCFL',28),
('4881806','Jurassic World: Fallen Kingdom',2018,'PG-13',128,'AVS',29),
('0435761','Toy Story 3',2010,'G',103,'VNCFY',30),
('0451279','Wonder Woman',2017,'PG-13',141,'A',31),
('1300854','Iron Man 3',2013,'PG-13',130,'A',32),
('3498820','Captain America: Civil War',2016,'PG-13',147,'A',33),
('1392170','The Hunger Games',2012,'PG-13',142,'A',34),
('0145487','Spider-Man',2002,'PG-13',121,'AYST',35),
('2283362','Jumanji: Welcome to the Jungle',2017,'PG-13',119,'AVCY',36),
('0107290','Jurassic Park',1993,'PG-13',127,'AVHS',37),
('1055369','Transformers: Revenge of the Fallen',2009,'PG-13',150,'AVS',38),
('2294629','Frozen',2013,'PG',102,'N',39),
('6320628','Spider-Man: Far from Home',2019,'PG-13',129,'AVS',40),
('3896198','Guardians of the Galaxy Vol. 2',2017,'PG-13',136,'A',41),
('1201607','Harry Potter and the Deathly Hallows: Part 2',2011,'PG-13',130,'VDYM',42),
('0266543','Finding Nemo',2003,'G',100,'VNCF',43),
('0121766','Star Wars: Episode III - Revenge of the Sith',2005,'PG-13',140,'AVYS',44),
('0167260','Lord of the Rings: The Return of the King, The',2003,'PG-13',201,'AVY',45),
('0316654','Spider-Man 2',2004,'PG-13',127,'AYST',46),
('0335345','Passion of the Christ, The',2004,'R',127,'D',47),
('2709768','The Secret Life of Pets',2016,'PG',87,'N',48),
('1690953','Despicable Me 2',2013,'PG',98,'N',49),
('3040964','The Jungle Book',2016,'PG',106,'V',50),
('1431045','Deadpool',2016,'R',108,'A',51),
('2096673','Inside Out',2015,'PG',94,'N',52),
('6139732','Aladdin',2019,'PG',128,'VFYLR',53),
('2820852','Furious 7',2015,'PG-13',140,'A',54),
('1399103','Transformers: Dark of the Moon',2011,'PG-13',157,'AVS',55),
('2179136','American Sniper',2015,'R',133,'A',56),
('0167261','Lord of the Rings: The Two Towers, The',2002,'PG-13',179,'AVY',57),
('2948356','Zootopia',2016,'PG',108,'N',58),
('1951265','The Hunger Games: Mockingjay - Part 1',2014,'PG-13',123,'V',59),
('0413300','Spider-Man 3',2007,'PG-13',140,'AVST',60),
('2293640','Minions',2015,'PG',91,'N',61),
('7286456','Joker',2019,'R',122,'DT',62),
('1477834','Aquaman',2018,'PG-13',143,'AVYS',63),
('2250912','Spider-Man: Homecoming',2017,'PG-13',133,'A',64),
('1014759','Alice in Wonderland',2010,'PG',108,'VFY',65),
('2015381','Guardians of the Galaxy',2014,'PG-13',121,'A',66),
('0109830','For<NAME>',1994,'PG-13',142,'CD',67),
('2975590','Batman v Superman: Dawn of Justice',2016,'PG-13',183,'A',68),
('1396484','It',2017,'R',135,'D',69),
('1386697','Suicide Squad',2016,'PG-13',123,'A',70),
('5463162','Deadpool 2',2018,'R',119,'AVCS',71),
('0413267','Shrek the Third',2007,'PG',92,'NVCFY',72),
('7975244','Jumanji: The Next Level',2019,'PG-13',123,'AVCY',73),
('0418279','Transformers',2007,'PG-13',144,'AVCST',74),
('0371746','Iron Man',2008,'PG-13',126,'AVDST',75),
('0241527','Harry Potter and the Sorcerer''s Stone',2001,'PG',152,'VFY',76),
('0367882','Indiana Jones and the Kingdom of the Crystal Skull',2008,'PG-13',122,'AV',77),
('0120737','Lord of the Rings: The Fellowship of the Ring, The',2001,'PG-13',178,'AVY',78),
('3501632','Thor: Ragnarok',2017,'PG-13',130,'AVCYS',79),
('1228705','Iron Man 2',2010,'PG-13',124,'AVS',80),
('0121765','Star Wars: Episode II - Attack of the Clones',2002,'PG',143,'AVS',81),
('0449088','Pirates of the Caribbean: At World''s End',2007,'PG-13',168,'AVCY',82),
('0086190','Star Wars: Episode VI - Return of the Jedi',1983,'PG',134,'AVYS',83),
('0116629','Independence Day',1996,'PG-13',145,'AS',84),
('0325980','Pirates of the Caribbean: The Curse of the Black Pearl',2003,'PG-13',143,'AVCY',85),
('1074638','Skyfall',2012,'PG-13',143,'A',86),
('0903624','The Hobbit: An Unexpected Journey',2012,'PG-13',169,'V',87),
('0417741','Harry Potter and the Half-Blood Prince',2009,'PG',153,'AVFYMR',88),
('1325004','The Twilight Saga: Eclipse',2010,'PG-13',124,'DYR',89),
('1259571','The Twilight Saga: New Moon',2009,'PG-13',130,'DYR',90),
('0926084','Harry Potter and the Deathly Hallows: Part 1',2010,'PG-13',146,'VDYM',91),
('0167404','Sixth Sense, The',1999,'PG-13',107,'DMT',92),
('1049413','Up',2009,'PG',96,'AVNCF',93),
('0080684','Star Wars: Episode V - The Empire Strikes Back',1980,'PG',124,'AVYS',94),
('1375666','Inception',2010,'PG-13',148,'AMST',95),
('0373889','Harry Potter and the Order of the Phoenix',2007,'PG-13',138,'ADFY',96),
('1673434','The Twilight Saga: Breaking Dawn - Part 2',2012,'PG-13',115,'V',97),
('0363771','The Chronicles of Narnia: The Lion, the Witch and the Wardrobe',2005,'PG',140,'AVDFY',98),
('0770828','Man of Steel',2013,'PG-13',143,'A',99),
('0198781','Monsters, Inc.',2001,'G',92,'NCFY',100),
('0330373','Harry Potter and the Goblet of Fire',2005,'PG-13',157,'VYMT',101),
('0099785','Home Alone',1990,'PG',103,'CF',102),
('1951266','The Hunger Games: Mockingjay - Part 2',2015,'PG-13',137,'S',103),
('0234215','Matrix Reloaded, The',2003,'R',138,'AST',104),
('1324999','The Twilight Saga: Breaking Dawn - Part 1',2011,'PG-13',117,'V',105),
('0290002','Meet the Fockers',2004,'PG-13',115,'C',106),
('1119646','The Hangover',2009,'R',100,'CM',107),
('1454468','Gravity',2013,'PG-13',91,'S',108),
('2709692','The Grinch',2018,'PG',85,'NFY',109),
('3470600','Sing',2016,'PG',108,'N',110),
('1453405','Monsters University',2013,'G',104,'N',111),
('0126029','Shrek',2001,'PG',90,'VNCFYR',112),
('3469046','Despicable Me 3',2017,'PG',90,'N',113),
('0295297','Harry Potter and the Chamber of Secrets',2002,'PG',161,'VFYM',114),
('0948470','The Amazing Spider-Man',2012,'PG-13',136,'A',115),
('0317705','The Incredibles',2004,'PG',115,'AVNCFS',116),
('0073195','Jaws',1975,'PG',124,'VHT',117),
('0170016','How the Grinch Stole Christmas',2000,'PG',104,'CFY',118),
('1843866','Captain America: The Winter Soldier',2014,'PG-13',136,'A',119),
('1170358','The Hobbit: The Desolation of Smaug',2013,'PG-13',161,'V',120),
('1490017','The Lego Movie',2014,'PG',100,'N',121),
('0796366','Star Trek',2009,'PG-13',127,'AVS',122),
('0480249','I Am Legend',2007,'PG-13',101,'DHST',123),
('0878804','The Blind Side',2009,'PG-13',129,'D',124),
('2310332','The Hobbit: The Battle of the Five Armies',2014,'PG-13',144,'V',125),
('1411697','The Hangover Part II',2011,'R',102,'C',126),
('1323594','Despicable Me',2010,'PG',95,'NCF',127),
('0096895','Batman',1989,'PG-13',126,'AYT',128),
('0477347','Night at the Museum',2006,'PG',108,'AVCFY',129),
('0119654','Men in Black',1997,'PG-13',98,'ACS',130),
('0304141','Harry Potter and the Prisoner of Azkaban',2004,'PG',141,'VFY',131),
('3521164','Moana',2016,'PG',107,'N',132),
('0082971','Indiana Jones and the Raiders of the Lost Ark',1981,'PG',115,'AV',133),
('0120363','Toy Story 2',1999,'G',92,'NCFY',134),
('2109248','Transformers: Age of Extinction',2014,'PG-13',165,'A',135),
('0317219','Cars',2006,'G',124,'NCF',136),
('0087332','Ghostbusters',1984,'PG',105,'ACYS',137),
('0315327','Bruce Almighty',2003,'PG-13',101,'CYR',138),
('0117998','Twister',1996,'PG-13',113,'ADT',139),
('0259446','My Big Fat Greek Wedding',2002,'PG',96,'CR',140),
('1587310','Maleficent',2014,'PG',97,'A',141),
('1298650','Pirates of the Caribbean: On Stranger Tides',2011,'PG-13',137,'AVY',142),
('0892791','Shrek Forever After',2010,'PG',93,'VNCFY',143),
('1905041','Fast and Furious 6',2013,'PG-13',130,'A',144),
('1217209','Brave',2012,'PG',93,'N',145),
('1623205','Oz the Great and Powerful',2013,'PG',130,'V',146),
('0086960','Beverly Hills Cop',1984,'R',105,'AC',147),
('0376994','X-Men: The Last Stand',2006,'PG-13',104,'AVST',148),
('0407304','War of the Worlds',2005,'PG-13',116,'AVST',149),
('3183660','Fantastic Beasts and Where to Find Them',2016,'PG-13',133,'V',150),
('1877832','X-Men: Days of Future Past',2014,'PG-13',131,'A',151),
('0162222','Cast Away',2000,'PG-13',143,'VD',152),
('0070047','Exorcist, The',1973,'R',122,'DH',153),
('1211837','Doctor Strange',2016,'PG-13',109,'A',154),
('0119567','Lost World: Jurassic Park, The',1997,'PG-13',129,'AVHST',155),
('0974015','Justice League',2017,'PG-13',0,'AVYS',156),
('1408101','Star Trek Into Darkness',2013,'PG-13',132,'A',157),
('3659388','The Martian',2015,'PG-13',151,'V',158),
('0286106','Signs',2002,'PG-13',106,'DHST',159),
('0448157','Hancock',2008,'PG-13',92,'ACDYT',160),
('0440963','The Bourne Ultimatum',2007,'PG-13',111,'AVMT',161),
('3315342','Logan',2017,'R',122,'A',162),
('0266915','Rush Hour 2',2001,'PG-13',90,'ACT',163),
('4630562','The Fate of the Furious',2017,'PG-13',149,'A',164),
('0910970','WALL-E',2008,'G',98,'VNCFRS',165),
('0114709','Toy Story',1995,'G',81,'NCFY',166),
('2245084','Big Hero 6',2014,'PG',102,'N',167),
('4912910','Mission: Impossible - Fallout',2018,'PG-13',147,'AVT',168),
('0465234','National Treasure: Book of Secrets',2007,'PG',124,'AVCMT',169),
('1231580','Alvin and the Chipmunks: The Squeakquel',2009,'PG',88,'NCFY',170),
('0107614','<NAME>',1993,'PG-13',125,'CD',171),
('0101414','Beauty and the Beast',1991,'G',84,'NFLR',172),
('1637725','Ted',2012,'R',106,'C',173),
('0360717','King Kong',2005,'PG-13',187,'AVDT',174),
('0099653','Ghost',1990,'PG-13',128,'DYRT',175),
('0892769','How to Train Your Dragon',2010,'PG',98,'VNCFY',176),
('0382625','The Da Vinci Code',2006,'PG-13',149,'DMT',177),
('0103639','Aladdin',1992,'G',90,'NCFYL',178),
('0952640','Alvin and the Chipmunks',2007,'PG',92,'CFY',179),
('0120815','Saving Private Ryan',1998,'R',170,'ADW',180),
('1727824','Bohemian Rhapsody',2018,'PG-13',134,'D',181),
('5095030','Ant-Man and the Wasp',2018,'PG-13',118,'AVS',182),
('1277953','Madagascar 3: Europe''s Most Wanted',2012,'PG',93,'N',183),
('0441773','<NAME>',2008,'PG',92,'ANCF',184),
('0120755','Mission: Impossible II',2000,'PG-13',123,'AT',185),
('1517451','A Star Is Born',2018,'R',136,'DR',186),
('0290334','X2: X-Men United',2003,'PG-13',133,'AYST',187),
('1482459','Dr. Seuss'' The Lorax',2012,'PG',86,'N',188),
('3778644','Solo: A Star Wars Story',2018,'PG-13',135,'AVYS',189),
('1270797','Venom',2018,'PG-13',112,'AST',190),
('0295178','<NAME> in Goldmember',2002,'PG-13',94,'AVC',191),
('7349950','It Chapter Two',2019,'R',169,'DYH',192),
('0088763','Back to the Future',1985,'PG',111,'VCS',193),
('0416449','300',2006,'R',117,'ADW',194),
('2380307','Coco',2017,'PG',105,'NVCFYM',195),
('1596343','Fast Five',2011,'PG-13',130,'AT',196),
('1229238','Mission: Impossible - Ghost Protocol',2011,'PG-13',133,'A',197),
('0396269','Wedding Crashers',2005,'R',119,'CR',198),
('0988045','<NAME>',2009,'PG-13',128,'AVMT',199),
('2103281','Dawn of the Planet of the Apes',2014,'PG-13',130,'A',200),
('0372784','Batman Begins',2005,'PG-13',141,'AVYT',NULL),
('0367594','Charlie and the Chocolate Factory',2005,'PG',115,'VCFY',NULL),
('0382932','Ratatouille',2007,'G',110,'NCF',NULL),
('1981115','Thor: The Dark World',2013,'PG-13',112,'A',NULL),
('0145660','Austin Powers: The Spy Who Shagged Me',1999,'PG-13',95,'AC',NULL),
('0103064','Terminator 2: Judgment Day',1991,'R',137,'ADST',NULL),
('1872181','The Amazing Spider-Man 2',2014,'PG-13',142,'A',NULL),
('0816711','World War Z',2013,'PG-13',123,'A',NULL),
('0209163','Mummy Returns, The',2001,'PG-13',130,'AVY',NULL),
('0120591','Armageddon',1998,'PG-13',144,'AST',NULL),
('1661199','Cinderella',2015,'PG',105,'D',NULL),
('0398286','Tangled',2010,'PG',100,'NCFYLR',NULL),
('0831387','Godzilla',2014,'PG-13',123,'A',NULL),
('0348150','Superman Returns',2006,'PG-13',154,'AVYS',NULL),
('2379713','Spectre',2015,'PG-13',148,'A',NULL),
('0031381','Gone with the Wind',1939,'G',238,'DRW',NULL),
('0213149','Pearl Harbor',2001,'PG-13',183,'ADRW',NULL),
('0892782','Monsters vs Aliens',2009,'PG',94,'ANFS',NULL),
('0366548','Happy Feet',2006,'PG',109,'NVCFL',NULL),
('0097576','Indiana Jones and the Last Crusade',1989,'PG-13',127,'AV',NULL),
('1080016','Ice Age: Dawn of the Dinosaurs',2009,'PG',94,'AVNCFR',NULL),
('0438097','Ice Age: The Meltdown',2006,'PG',91,'VNCF',NULL),
('2381249','Mission: Impossible - Rogue Nation',2015,'PG-13',131,'A',NULL),
('0351283','Madagascar',2005,'PG',86,'VNCF',NULL),
('1099212','Twilight',2008,'PG-13',122,'DYRT',NULL),
('2294449','22 Jump Street',2014,'R',112,'A',NULL),
('1216475','Cars 2',2011,'G',106,'VNCF',NULL),
('1291150','Teenage Mutant Ninja Turtles',2014,'PG-13',101,'A',NULL),
('0120912','Men in Black II',2002,'PG-13',88,'ACS',NULL),
('1772341','Wreck-It Ralph',2012,'PG',108,'N',NULL),
('0077631','Grease',1978,'PG',110,'CLR',NULL),
('0816692','Interstellar',2014,'PG-13',169,'V',NULL),
('0172495','Gladiator',2000,'R',155,'AD',NULL),
('0481499','The Croods',2013,'PG',98,'N',NULL),
('1515091','Sherlock Holmes: A Game of Shadows',2011,'PG-13',129,'A',NULL),
('0319262','The Day After Tomorrow',2004,'PG-13',124,'AVDST',NULL),
('0356910','Mr. and Mrs. Smith',2005,'PG-13',120,'ACRT',NULL),
('0029583','Snow White and the Seven Dwarfs',1937,'G',83,'NFL',NULL),
('2848292','Pitch Perfect 2',2015,'PG-13',115,'C',NULL),
('0099348','Dances with Wolves',1990,'PG-13',180,'VDE',NULL),
('0112462','Batman Forever',1995,'PG-13',122,'AVYRT',NULL),
('0106977','Fugitive, The',1993,'PG-13',130,'AMT',NULL),
('0240772','Ocean''s Eleven',2001,'PG-13',116,'CT',NULL),
('0338348','The Polar Express',2004,'G',99,'VNFY',NULL),
('0462538','The Simpsons Movie',2007,'PG-13',87,'NC',NULL),
('0207201','What Women Want',2000,'PG-13',127,'CYR',NULL),
('0177971','Perfect Storm, The',2000,'PG-13',129,'AVDT',NULL),
('0443272','Lincoln',2012,'PG-13',150,'D',NULL),
('0119528','<NAME>',1997,'PG-13',86,'CY',NULL),
('0163025','Jurassic Park III',2001,'PG-13',92,'AVHST',NULL),
('0800369','Thor',2011,'PG-13',115,'AVY',NULL),
('0117060','Mission: Impossible',1996,'PG-13',110,'AVT',NULL),
('0133152','Planet of the Apes',2001,'PG-13',119,'AS',NULL),
('0479952','Madagascar: Escape 2 Africa',2008,'PG',89,'AVNCF',NULL),
('0458525','X-Men Origins: Wolverine',2009,'PG-13',107,'AYST',NULL),
('0087469','Indiana Jones and the Temple of Doom',1984,'PG-13',118,'AV',NULL),
('0092099','Top Gun',1986,'PG',110,'ADR',NULL),
('1409024','Men in Black 3',2012,'PG-13',106,'A',NULL),
('0100405','Pretty Woman',1990,'R',119,'CR',NULL),
('0386588','Hitch',2005,'PG-13',118,'CR',NULL),
('1078912','Night at the Museum: Battle of the Smithsonian',2009,'PG',105,'AVCFY',NULL),
('0084805','Tootsie',1982,'PG',119,'CR',NULL),
('1318514','Rise of the Planet of the Apes',2011,'PG-13',105,'ADST',NULL),
('0458339','Captain America: The First Avenger',2011,'PG-13',124,'AVST',NULL),
('1155076','The Karate Kid',2010,'PG',140,'ADF',NULL),
('0129387','There''s Something About Mary',1998,'R',119,'CR',NULL),
('0268380','Ice Age',2002,'PG',81,'VNCF',NULL),
('0372183','The Bourne Supremacy',2004,'PG-13',108,'AVDMT',NULL),
('0090555','Crocodile Dundee',1986,'PG-13',98,'VC',NULL),
('0104431','Home Alone 2: Lost in New York',1992,'PG',120,'CF',NULL),
('0319343','Elf',2003,'PG',95,'CFY',NULL),
('0368891','National Treasure',2004,'PG',131,'AV',NULL),
('0095953','Rain Man',1988,'R',133,'CD',NULL),
('0118571','Air Force One',1997,'R',124,'ADT',NULL),
('0112384','Apollo 13',1995,'PG',140,'D',NULL),
('1104001','TRON: Legacy',2010,'PG',127,'AVST',NULL),
('0133093','Matrix, The',1999,'R',136,'AST',NULL),
('0120855','Tarzan',1999,'G',88,'VNF',NULL),
('1403865','True Grit',2010,'PG-13',110,'VDE',NULL),
('0268978','Beautiful Mind, A',2001,'PG-13',135,'DHM',NULL),
('0299658','Chicago',2002,'PG-13',113,'CDL',NULL),
('1454029','The Help',2011,'PG-13',146,'D',NULL),
('1478338','Bridesmaids',2011,'R',125,'C',NULL),
('0830515','Quantum of Solace',2008,'PG-13',106,'AVT',NULL),
('0486946','Wild Hogs',2007,'PG-13',100,'AVC',NULL),
('0094137','Three Men and a Baby',1987,'PG',102,'CF',NULL),
('0381061','<NAME>',2006,'PG-13',144,'AVT',NULL),
('0212338','Meet the Parents',2000,'PG-13',108,'C',NULL),
('1190080','2012',2009,'PG-13',158,'AVDST',NULL),
('0102798','<NAME>: Prince of Thieves',1991,'PG-13',143,'AVD',NULL),
('1302011','<NAME>',2011,'PG',91,'AVNCF',NULL),
('0212985','Hannibal',2001,'R',131,'HT',NULL),
('0264464','Catch Me If You Can',2002,'PG-13',141,'DT',NULL),
('1041829','The Proposal',2009,'PG-13',108,'CDR',NULL),
('0142342','Big Daddy',1999,'PG-13',93,'C',NULL),
('0059742','Sound of Music, The',1965,'G',174,'DFL',NULL),
('0800320','Clash of the Titans',2010,'PG-13',106,'AVDY',NULL),
('0103776','Batman Returns',1992,'PG-13',126,'AYRT',NULL),
('0120623','A Bug''s Life',1998,'G',96,'VNCF',NULL),
('0454921','The Pursuit of Happyness',2006,'PG-13',117,'D',NULL),
('1375670','Grown Ups',2010,'PG-13',102,'C',NULL),
('0120484','Waterboy, The',1998,'PG-13',90,'C',NULL),
('0307453','Shark Tale',2004,'PG',90,'NCF',NULL),
('0246460','Die Another Day',2002,'PG-13',132,'AVT',NULL),
('0070735','Sting, The',1973,'PG',129,'CD',NULL),
('0106918','Firm, The',1993,'R',154,'DT',NULL),
('0398165','The Longest Yard',2005,'PG-13',113,'ACD',NULL),
('0120903','X-Men',2000,'PG-13',104,'AYST',NULL),
('0175142','Scary Movie',2000,'R',88,'CH',NULL),
('0093010','Fatal Attraction',1987,'R',123,'DHT',NULL),
('0161081','What Lies Beneath',2000,'PG-13',130,'HMT',NULL),
('0120616','The Mummy',1999,'PG-13',124,'AVCYH',NULL),
('1013752','Fast and Furious',2009,'PG-13',107,'ADT',NULL),
('0327084','Over the Hedge',2006,'PG',83,'VNCF',NULL),
('0120667','Fantastic Four',2005,'PG-13',106,'AVYS',NULL),
('0451079','Horton Hears a Who!',2008,'G',88,'VNCF',NULL),
('0096438','Who Framed Roger Rabbit',1988,'PG',103,'ANCFYT',NULL),
('0092644','Beverly Hills Cop II',1987,'R',100,'AC',NULL),
('0116695','<NAME>',1996,'R',138,'CDR',NULL),
('0267913','Scooby-Doo',2002,'PG',87,'VCFYM',NULL),
('0055254','One Hundred and One Dalmatians',1961,'G',79,'NCFT',NULL),
('1000774','Sex and the City',2008,'R',148,'CDR',NULL),
('0163187','Runaway Bride',1999,'PG',116,'CR',NULL),
('0089880','Rambo: First Blood Part II',1985,'R',94,'AW',NULL),
('0181852','Terminator 3: Rise of the Machines',2003,'R',109,'AST',NULL),
('0478311','Knocked Up',2007,'R',129,'CDR',NULL),
('0415306','Talladega Nights: The Ballad of Ricky Bobby',2006,'PG-13',108,'AC',NULL),
('0087363','Gremlins',1984,'PG',106,'ACYH',NULL),
('1205489','Gran Torino',2009,'R',116,'D',NULL),
('0119822','As Good As It Gets',1997,'PG-13',139,'CDR',NULL),
('0097733','Lethal Weapon 2',1989,'R',113,'ACT',NULL),
('1114740','<NAME>: Mall Cop',2009,'PG',91,'ACF',NULL),
('0111503','True Lies',1994,'R',144,'AVCRT',NULL),
('0275847','Lilo and Stitch',2002,'PG',85,'NCFS',NULL),
('0252866','American Pie 2',2001,'R',105,'C',NULL),
('0936501','Taken',2009,'PG-13',93,'ADT',NULL),
('0111070','Santa Clause, The',1994,'PG',97,'CFY',NULL),
('0343818','I, Robot',2004,'PG-13',115,'AST',NULL),
('0104714','Lethal Weapon 3',1992,'R',118,'ACT',NULL),
('0232500','Fast and the Furious, The',2001,'PG-13',106,'AT',NULL),
('1046173','<NAME>: The Rise of Cobra',2009,'PG-13',118,'AVST',NULL),
('0118998','<NAME>',1998,'PG-13',85,'CF',NULL),
('0467406','Juno',2007,'PG-13',96,'CD',NULL),
('0061852','Jungle Book, The',1967,'G',78,'NCFL',NULL),
('0499448','The Chronicles of Narnia: <NAME>',2008,'PG',144,'AVDYT',NULL),
('0077975','Animal House',1978,'R',109,'C',NULL),
('0114148','Pocahontas',1995,'G',81,'NFLR',NULL),
('0104257','Few Good Men, A',1992,'R',138,'DT',NULL),
('0295701','XXX',2002,'PG-13',124,'AVT',NULL),
('0120812','Rush Hour',1998,'PG-13',97,'ACT',NULL),
('0185937','Blair Witch Project, The',1999,'R',86,'HMT',NULL),
('0120647','Deep Impact',1998,'PG-13',120,'DST',NULL),
('0097778','Look Who''s Talking',1989,'PG-13',93,'CR',NULL),
('0293564','Rush Hour 3',2007,'PG-13',91,'ACT',NULL),
('0164912','<NAME>',1999,'PG',84,'VCFY',NULL),
('0073629','Rocky Horror Picture Show, The',1975,'R',100,'CHLS',NULL),
('0105417','Sister Act',1992,'PG',100,'AC',NULL),
('0795421','Mamma Mia!',2008,'PG-13',108,'CLR',NULL),
('0242653','Matrix Revolutions, The',2003,'R',129,'AST',NULL),
('0304669','Santa Clause 2, The',2002,'G',105,'CFYR',NULL),
('0349205','Cheaper by the Dozen',2003,'PG',98,'CD',NULL),
('0172156','Bad Boys II',2003,'R',147,'ACT',NULL),
('0119217','Good Will Hunting',1997,'R',126,'D',NULL),
('0091763','Platoon',1986,'R',120,'ADW',NULL),
('0130623','Dinosaur',2000,'PG',82,'VNF',NULL),
('0389860','Click',2006,'PG-13',107,'CDY',NULL),
('0120689','Green Mile, The',1999,'R',188,'DY',NULL),
('0117438','Ransom',1996,'R',121,'ADT',NULL),
('0115433','101 Dalmatians',1996,'G',103,'VCF',NULL),
('0120685','Godzilla',1998,'PG-13',140,'AST',NULL),
('0371606','Chicken Little',2005,'G',81,'ANCFS',NULL),
('0100758','Teenage Mutant Ninja Turtles',1990,'PG',93,'AFY',NULL),
('0129290','Patch Adams',1998,'PG-13',115,'CD',NULL),
('0068646','Godfather, The',1972,'R',175,'D',NULL),
('0078346','Superman',1978,'PG',143,'AVS',NULL),
('0117500','Rock, The',1996,'R',136,'ADT',NULL),
('0305224','Anger Management',2003,'PG-13',106,'C',NULL),
('0317919','Mission: Impossible III',2006,'PG-13',126,'AVT',NULL),
('0332452','Troy',2004,'R',163,'AVDRW',NULL),
('0305669','Bringing Down the House',2003,'PG-13',105,'C',NULL),
('0286716','Hulk',2003,'PG-13',138,'ADS',NULL),
('0181689','Minority Report',2002,'PG-13',145,'ADMST',NULL),
('0146316','Lara Croft: Tomb Raider',2001,'PG-13',100,'AVY',NULL),
('0102926','Silence of the Lambs, The',1991,'R',118,'HT',NULL),
('0097523','Honey, I Shrunk the Kids',1989,'PG',101,'VCFS',NULL),
('0109813','Flintstones, The',1994,'PG',91,'CFY',NULL),
('0169547','American Beauty',1999,'R',122,'D',NULL),
('0084434','Officer and a Gentleman, An',1982,'R',122,'DR',NULL),
('0122151','Lethal Weapon 4',1998,'R',127,'ACT',NULL),
('0076666','Saturday Night Fever',1977,'PG',118,'DR',NULL),
('0405159','Million Dollar Baby',2004,'PG-13',132,'D',NULL),
('0350258','Ray',2004,'PG-13',152,'D',NULL),
('0338751','The Aviator',2004,'PG-13',170,'D',NULL),
('0327056','Mystic River',2003,'R',137,'DM',NULL),
('0340855','Monster',2003,'R',109,'D',NULL),
('0159365','<NAME>',2003,'R',152,'DRW',NULL),
('0253474','Pianist, The',2002,'R',150,'DW',NULL),
('0274558','Hours, The',2002,'PG-13',114,'D',NULL),
('0268126','Adaptation.',2002,'R',114,'CD',NULL),
('0139654','Training Day',2001,'R',120,'DT',NULL),
('0285742','Monster''s Ball',2001,'NC-17',111,'DR',NULL),
('0280778','Iris',2001,'R',91,'D',NULL),
('0195685','<NAME>',2000,'R',130,'D',NULL),
('0181865','Traffic',2000,'R',147,'DT',NULL),
('0183659','Pollock',2000,'R',122,'D',NULL),
('0171804','Boys Don''t Cry',1999,'NC-17',118,'D',NULL),
('0124315','Cider House Rules, The',1999,'PG-13',126,'DR',NULL),
('0172493','Girl, Interrupted',1999,'R',127,'D',NULL),
('0138097','Shakespeare in Love',1998,'R',122,'CDR',NULL),
('0118799','Vita e bella, La',1997,'PG-13',122,'CDRW',NULL),
('0118564','Affliction',1997,'R',114,'D',NULL),
('0119488','L.A. Confidential',1997,'R',138,'DMT',NULL),
('0116209','English Patient, The',1996,'R',160,'DR',NULL),
('0117631','Shine',1996,'PG-13',105,'DR',NULL),
('0116282','Fargo',1996,'R',98,'CT',NULL),
('0112573','Braveheart',1995,'R',177,'ADW',NULL),
('0113627','Leaving Las Vegas',1995,'R',111,'DR',NULL),
('0112818','Dead Man Walking',1995,'R',122,'D',NULL),
('0114814','Usual Suspects, The',1995,'R',106,'MT',NULL),
('0113819','Mighty Aphrodite',1995,'R',98,'C',NULL),
('0109306','Blue Sky',1994,'PG-13',101,'DR',NULL),
('0109707','<NAME>',1994,'R',127,'CD',NULL),
('0109348','Bullets Over Broadway',1994,'R',98,'CR',NULL),
('0108052','Schindler''s List',1993,'R',197,'DW',NULL),
('0107818','Philadelphia',1993,'PG-13',125,'D',NULL),
('0107822','Piano, The',1993,'R',121,'DR',NULL),
('0105695','Unforgiven',1992,'R',131,'DE',NULL),
('0105323','Scent of a Woman',1992,'R',157,'CD',NULL),
('0104454','Howards End',1992,'PG',140,'D',NULL),
('0104952','<NAME>',1992,'R',120,'C',NULL),
('0101587','City Slickers',1991,'PG-13',112,'VCE',NULL),
('0101889','Fisher King, The',1991,'R',137,'CDYR',NULL),
('0100486','Reversal of Fortune',1990,'R',111,'D',NULL),
('0100157','Misery',1990,'R',107,'DHT',NULL),
('0099685','Goodfellas',1990,'R',145,'D',NULL),
('0097239','Driving Miss Daisy',1989,'PG',99,'CD',NULL),
('0097937','My Left Foot',1989,'R',98,'D',NULL),
('0097441','Glory',1989,'R',122,'DW',NULL),
('0096969','Born on the Fourth of July',1989,'R',145,'DW',NULL),
('0094608','Accused, The',1988,'R',111,'DT',NULL),
('0095159','Fish Called Wanda, A',1988,'R',108,'C',NULL),
('0094606','Accidental Tourist, The',1988,'PG',121,'DR',NULL),
('0093389','Last Emperor, The',1987,'PG-13',160,'D',NULL),
('0094291','Wall Street',1987,'R',125,'D',NULL),
('0093565','Moonstruck',1987,'PG',102,'CR',NULL),
('0094226','Untouchables, The',1987,'R',119,'D',NULL),
('0090863','Color of Money, The',1986,'R',119,'D',NULL),
('0090830','Children of a Lesser God',1986,'R',119,'D',NULL),
('0091167','Hannah and Her Sisters',1986,'PG-13',103,'CDR',NULL),
('0089755','Out of Africa',1985,'PG',150,'DR',NULL),
('0089424','Kiss of the Spider Woman',1985,'R',120,'D',NULL),
('0090203','Trip to Bountiful, The',1985,'PG',108,'D',NULL),
('0088933','Cocoon',1985,'PG-13',117,'VCDS',NULL),
('0089841','Prizzi''s Honor',1985,'R',130,'CDR',NULL),
('0086879','Amadeus',1984,'PG',160,'D',NULL),
('0087921','Places in the Heart',1984,'PG',112,'D',NULL),
('0087553','Killing Fields, The',1984,'R',141,'DW',NULL),
('0087892','Passage to India, A',1984,'PG',163,'D',NULL),
('0086425','Terms of Endearment',1983,'PG',132,'CDR',NULL),
('0086423','Tender Mercies',1983,'PG',92,'D',NULL),
('0086617','Year of Living Dangerously, The',1982,'PG',117,'DR',NULL),
('0083987','Gandhi',1982,'PG',188,'D',NULL),
('0084707','Sophie''s Choice',1982,'R',150,'D',NULL),
('0082158','Chariots of Fire',1981,'PG',123,'D',NULL),
('0082846','On Golden Pond',1981,'PG',109,'D',NULL),
('0082031','Arthur',1981,'PG',97,'CR',NULL),
('0082979','Reds',1981,'PG',194,'D',NULL),
('0081283','Ordinary People',1980,'R',124,'D',NULL),
('0081398','Raging Bull',1980,'R',129,'D',NULL),
('0080549','Coal Miner''s Daughter',1980,'PG',125,'D',NULL),
('0081150','Melvin and Howard',1980,'R',95,'CD',NULL),
('0079417','Kramer vs. Kramer',1979,'PG',105,'D',NULL),
('0079638','<NAME>',1979,'PG',110,'D',NULL),
('0078841','Being There',1979,'PG',130,'CD',NULL),
('0077416','Deer Hunter, The',1978,'R',183,'DW',NULL),
('0077362','Coming Home',1978,'R',126,'DW',NULL),
('0077289','California Suite',1978,'PG',103,'CD',NULL),
('0075686','<NAME>',1977,'PG',93,'CR',NULL),
('0076095','Goodbye Girl, The',1977,'PG',110,'CR',NULL),
('0076245','Julia',1977,'PG',118,'D',NULL),
('0075148','Rocky',1976,'PG',119,'DR',NULL),
('0074958','Network',1976,'R',120,'CD',NULL),
('0074119','All the President''s Men',1976,'PG',138,'DT',NULL),
('0073486','One Flew Over the Cuckoo''s Nest',1975,'R',133,'CD',NULL),
('0073766','Sunshine Boys, The',1975,'PG',111,'C',NULL),
('0073692','Shampoo',1975,'R',109,'CR',NULL),
('0071562','Godfather: Part II, The',1974,'R',200,'D',NULL),
('0071598','<NAME>',1974,'R',115,'D',NULL),
('0071115','Alice Doesn''t Live Here Anymore',1974,'PG',112,'D',NULL),
('0071877','Murder on the Orient Express',1974,'PG',128,'M',NULL),
('0070640','Save the Tiger',1973,'R',100,'D',NULL),
('0070819','Touch of Class, A',1973,'PG',105,'C',NULL),
('0070509','Paper Chase, The',1973,'PG',112,'D',NULL),
('0070510','Paper Moon',1973,'PG',102,'CD',NULL),
('0068327','Cabaret',1972,'PG',124,'DLW',NULL),
('0068326','Butterflies Are Free',1972,'PG',109,'CDR',NULL),
('0067116','French Connection, The',1971,'R',104,'ADT',NULL),
('0067309','Klute',1971,'R',114,'DMT',NULL),
('0067328','Last Picture Show, The',1971,'R',118,'D',NULL),
('0066206','Patton',1970,'M',170,'DW',NULL),
('0066579','Women in Love',1969,'R',131,'DR',NULL),
('0066319','Ryan''s Daughter',1970,'GP',187,'DR',NULL),
('0065377','Airport',1970,'G',137,'DT',NULL),
('0064665','Midnight Cowboy',1969,'R',113,'D',NULL),
('0065126','True Grit',1969,'G',128,'VE',NULL),
('0064840','Prime of Miss Jean Brodie, The',1969,'M',116,'D',NULL),
('0065088','They Shoot Horses, Don''t They?',1969,'M',120,'D',NULL),
('0064117','Cactus Flower',1969,'M',103,'C',NULL),
('0063385','Oliver!',1968,'G',153,'DFL',NULL),
('0062794','Charly',1968,'PG',103,'DS',NULL),
('0062994','Funny Girl',1968,'G',151,'DLR',NULL),
('0063654','Subject Was Roses, The',1968,'G',107,'D',NULL),
('0063522','Rosemary''s Baby',1968,NULL,136,'DHT',NULL),
('0061811','In the Heat of the Night',1967,NULL,109,'DM',NULL),
('0061735','Guess Who''s Coming to Dinner',1967,NULL,108,'CD',NULL),
('0061512','Cool Hand Luke',1967,NULL,126,'D',NULL),
('0061418','<NAME> Clyde',1967,'M',111,'DR',NULL),
('0061722','Graduate, The',1967,'PG',105,'CDR',NULL),
('0060665','Man for All Seasons, A',1966,NULL,120,'D',NULL),
('0061184','Who''s Afraid of Virginia Woolf?',1966,NULL,134,'DT',NULL),
('0060424','Fortune Cookie, The',1966,NULL,125,'CDR',NULL),
('0059017','Cat Ballou',1965,NULL,97,'CE',NULL),
('0059084','Darling',1965,NULL,128,'D',NULL),
('0059798','Thousand Clowns, A',1965,NULL,118,'CDR',NULL),
('0059573','Patch of Blue, A',1965,NULL,105,'D',NULL),
('0058385','My Fair Lady',1964,'G',170,'CDFLR',NULL),
('0058331','<NAME>',1964,'G',140,'CDFYL',NULL),
('0058672','Topkapi',1964,NULL,119,'VCT',NULL),
('0057831','<NAME>',1964,NULL,142,'D',NULL),
('0057590','<NAME>',1963,NULL,121,'VCR',NULL),
('0057251','Lilies of the Field',1963,NULL,94,'CD',NULL),
('0057163','Hud',1963,NULL,112,'DE',NULL),
('0057634','V.I.P.s, The',1963,NULL,119,'D',NULL),
('0056172','Lawrence of Arabia',1962,'PG',216,'VDW',NULL),
('0056592','To Kill a Mockingbird',1962,NULL,129,'D',NULL),
('0056241','Miracle Worker, The',1962,NULL,106,'D',NULL),
('0056541','Sweet Bird of Youth',1962,NULL,120,'D',NULL),
('0055614','West Side Story',1961,NULL,151,'DLR',NULL),
('0055031','Judgment at Nuremberg',1961,NULL,178,'D',NULL),
('0054749','Ciociara, La',1960,NULL,100,'DW',NULL),
('0053604','Apartment, The',1960,NULL,125,'CDR',NULL),
('0053793','<NAME>',1960,NULL,146,'D',NULL),
('0053622','BUtterfield 8',1960,NULL,109,'D',NULL),
('0054331','Spartacus',1960,'PG-13',184,'ADRW',NULL),
('0052618','Ben-Hur',1959,'G',212,'AVDR',NULL),
('0053226','Room at the Top',1959,NULL,115,'D',NULL),
('0052738','Diary of <NAME>, The',1959,NULL,180,'DW',NULL),
('0051658','Gigi',1958,'G',119,'CLR',NULL),
('0052182','Separate Tables',1958,NULL,100,'D',NULL),
('0051758','I Want to Live!',1958,NULL,120,'D',NULL),
('0051411','Big Country, The',1958,NULL,165,'DRE',NULL),
('0050212','Bridge on the River Kwai, The',1957,'PG',161,'VDW',NULL),
('0051077','Three Faces of Eve, The',1957,NULL,91,'D',NULL),
('0050933','Sayonara',1957,NULL,147,'DR',NULL),
('0048960','Around the World in Eighty Days',1956,NULL,188,'VC',NULL),
('0049408','King and I, The',1956,'G',133,'VCDFLR',NULL),
('0048947','Anastasia',1956,NULL,105,'D',NULL),
('0049456','Lust for Life',1956,NULL,122,'D',NULL),
('0049966','Written on the Wind',1956,NULL,99,'D',NULL),
('0049261','Giant',1956,'G',201,'D',NULL),
('0048356','Marty',1955,NULL,91,'CDR',NULL),
('0048563','Rose Tattoo, The',1955,NULL,117,'DR',NULL),
('0048380','<NAME>',1955,NULL,123,'CDW',NULL),
('0048028','East of Eden',1955,NULL,115,'D',NULL),
('0047296','On the Waterfront',1954,NULL,108,'DR',NULL),
('0046874','Country Girl, The',1954,NULL,104,'D',NULL),
('0046754','Barefoot Contessa, The',1954,NULL,128,'D',NULL),
('0045793','From Here to Eternity',1953,NULL,118,'DRW',NULL),
('0046359','Stalag 17',1953,NULL,120,'CDW',NULL),
('0046250','Roman Holiday',1953,NULL,118,'CDR',NULL),
('0044672','Greatest Show on Earth, The',1952,NULL,152,'DFR',NULL),
('0044706','High Noon',1952,NULL,85,'TE',NULL),
('0044509','Come Back, Little Sheba',1952,NULL,99,'D',NULL),
('0045296','Viva Zapata!',1952,NULL,113,'D',NULL),
('0044391','Bad and the Beautiful, The',1952,NULL,118,'D',NULL),
('0045061','Quiet Man, The',1952,NULL,129,'CDR',NULL),
('0043278','American in Paris, An',1951,NULL,113,'LR',NULL),
('0043265','African Queen, The',1951,NULL,105,'VCRW',NULL),
('0044081','Streetcar Named Desire, A',1951,NULL,122,'D',NULL),
('0043924','Place in the Sun, A',1951,NULL,122,'DR',NULL),
('0042192','All About Eve',1950,NULL,138,'D',NULL),
('0042367','<NAME>',1950,NULL,112,'D',NULL),
('0042276','Born Yesterday',1950,NULL,103,'CD',NULL),
('0042546','Harvey',1950,NULL,104,'CFY',NULL),
('0041113','All the King''s Men',1949,NULL,109,'D',NULL),
('0041452','Heiress, The',1949,NULL,115,'DR',NULL),
('0041996','Twelve O''Clock High',1949,NULL,132,'DW',NULL),
('0041587','Letter to Three Wives, A',1949,NULL,103,'CD',NULL),
('0040416','Hamlet',1948,NULL,155,'DRT',NULL),
('0040495','<NAME>',1948,NULL,102,'D',NULL),
('0040897','Treasure of the Sierra Madre, The',1948,NULL,126,'VD',NULL),
('0040506','Key Largo',1948,NULL,101,'DT',NULL),
('0039416','Gentleman''s Agreement',1947,NULL,118,'DR',NULL),
('0039335','Double Life, A',1947,NULL,104,'D',NULL),
('0039370','Farmer''s Daughter, The',1947,NULL,97,'C',NULL),
('0039628','Miracle on 34th Street',1947,NULL,96,'CDFYR',NULL),
('0036868','Best Years of Our Lives, The',1946,NULL,172,'DR',NULL),
('0039040','To Each His Own',1946,NULL,122,'D',NULL),
('0038873','Razor''s Edge, The',1946,NULL,146,'D',NULL),
('0037884','Lost Weekend, The',1945,NULL,101,'D',NULL),
('0037913','<NAME>',1945,NULL,111,'DMR',NULL),
('0038190','Tree Grows in Brooklyn, A',1945,NULL,128,'D',NULL),
('0037120','National Velvet',1944,'G',123,'DF',NULL),
('0036872','Going My Way',1944,NULL,130,'CD',NULL),
('0036855','Gaslight',1944,NULL,114,'MT',NULL),
('0037135','None But the Lonely Heart',1944,NULL,113,'D',NULL),
('0034583','Casablanca',1942,'PG',102,'DR',NULL),
('0036515','Watch on the Rhine',1943,NULL,114,'D',NULL),
('0036377','Song of Bernadette, The',1943,NULL,156,'D',NULL),
('0036172','More the Merrier, The',1943,NULL,104,'C',NULL),
('0035896','For Whom the Bell Tolls',1943,NULL,170,'VDRW',NULL),
('0035093','Mrs. Miniver',1942,NULL,134,'DRW',NULL),
('0035575','<NAME>',1942,NULL,126,'D',NULL),
('0033774','<NAME>',1942,NULL,107,'DR',NULL),
('0033729','How Green Was My Valley',1941,NULL,118,'DR',NULL),
('0034167','Sergeant York',1941,NULL,134,'DW',NULL),
('0034248','Suspicion',1941,NULL,99,'MT',NULL),
('0033677','Great Lie, The',1941,NULL,108,'D',NULL),
('0032976','Rebecca',1940,NULL,130,'DMRT',NULL),
('0032904','Philadelphia Story, The',1940,NULL,112,'CR',NULL),
('0032671','Kitty Foyle: The Natural History of a Woman',1940,NULL,108,'D',NULL),
('0033253','Westerner, The',1940,NULL,100,'E',NULL),
('0032551','Grapes of Wrath, The',1940,NULL,128,'D',NULL),
('0031385','Goodbye, Mr. Chips',1939,NULL,114,'D',NULL),
('0031971','Stagecoach',1939,NULL,96,'ADRE',NULL),
('0030993','You Can''t Take It with You',1938,NULL,126,'CR',NULL),
('0029942','Boys Town',1938,NULL,96,'D',NULL),
('0030287','Jezebel',1938,NULL,103,'D',NULL),
('0030317','Kentucky',1938,NULL,95,'DR',NULL),
('0029146','Life of Emile Zola, The',1937,NULL,116,'D',NULL),
('0028691','Captains Courageous',1937,NULL,115,'VD',NULL),
('0028944','Good Earth, The',1937,NULL,138,'D',NULL),
('0029047','In Old Chicago',1937,NULL,96,'ADL',NULL),
('0028597','Awful Truth, The',1937,NULL,91,'CR',NULL),
('0027698','Great Ziegfeld, The',1936,NULL,176,'L',NULL),
('0028313','Story of Louis Pasteur, The',1935,NULL,87,'D',NULL),
('0027459','Come and Get It',1936,NULL,99,'D',NULL),
('0027300','Anthony Adverse',1936,NULL,141,'VR',NULL),
('0027996','Mr. Deeds Goes to Town',1936,NULL,115,'C',NULL),
('0026752','Mutiny on the Bounty',1935,NULL,132,'VD',NULL),
('0026529','Informer, The',1935,NULL,91,'D',NULL),
('0026261','Dangerous',1935,NULL,79,'D',NULL),
('0025316','It Happened One Night',1934,NULL,105,'VCR',NULL),
('0023876','Cavalcade',1933,NULL,110,'D',NULL),
('0024473','Private Life of Henry VIII., The',1933,NULL,97,'D',NULL),
('0024353','Morning Glory',1933,NULL,74,'D',NULL),
('0022958','Grand Hotel',1932,NULL,112,'D',NULL),
('0021730','Champ, The',1931,NULL,87,'D',NULL),
('0022386','Sin of Madelon Claudet, The',1931,NULL,75,'D',NULL),
('0021635','Bad Girl',1931,NULL,90,'D',NULL),
('0021746','Cimarron',1931,NULL,131,'DE',NULL),
('0021885','Free Soul, A',1931,NULL,91,'D',NULL),
('0021148','<NAME>',1930,NULL,66,'CD',NULL),
('0022397','Skippy',1931,NULL,85,'CDF',NULL),
('0019729','Broadway Melody, The',1929,NULL,110,'L',NULL),
('0020018','In Old Arizona',1929,NULL,95,'E',NULL),
('0019788','Coquette',1929,NULL,76,'D',NULL),
('0019824','Divine Lady, The',1929,NULL,99,'D',NULL),
('0018578','Wings',1927,NULL,139,'ADRW',NULL),
('0019071','Last Command, The',1928,NULL,85,'VD',NULL),
('0018379','Seventh Heaven',1927,NULL,110,'DR',NULL),
('0018515','Two Arabian Knights',1927,NULL,90,'CR',NULL),
('0375679','Crash',2004,'R',113,'D',NULL),
('0379725','Capote',2005,'R',114,'D',NULL),
('0358273','Walk the Line',2005,'PG-13',136,'DR',NULL),
('0365737','Syriana',2005,'R',126,'DT',NULL),
('0387131','The Constant Gardener',2005,'R',129,'DT',NULL),
('0388795','Brokeback Mountain',2005,'R',134,'DR',NULL),
('0407887','The Departed',2006,'R',151,'DT',NULL),
('0455590','The Last King of Scotland',2006,'R',121,'DT',NULL),
('0436697','The Queen',2006,'PG-13',103,'D',NULL),
('0449059','Little Miss Sunshine',2006,'R',101,'CD',NULL),
('0443489','Dreamgirls',2006,'PG-13',131,'DL',NULL),
('0477348','No Country for Old Men',2007,'R',122,'DT',NULL),
('0469494','There Will Be Blood',2008,'R',158,'D',NULL),
('0450188','Mome, La',2007,'PG-13',140,'D',NULL),
('0465538','<NAME>',2007,'R',119,'ADT',NULL),
('1013753','Milk',2009,'R',128,'DR',NULL),
('0976051','The Reader',2009,'R',124,'DR',NULL),
('0497465','<NAME>',2008,'PG-13',96,'DR',NULL),
('1010048','Slumdog Millionaire',2008,'R',120,'DR',NULL),
('0887912','The Hurt Locker',2008,'R',131,'ADTW',NULL),
('1263670','Crazy Heart',2010,'R',112,'DR',NULL),
('0361748','Inglourious Basterds',2009,'R',153,'DTW',NULL),
('0929632','Precious: Based on the Novel Push by Sapphire',2009,'R',109,'D',NULL),
('0063227','The Lion in Winter',1968,'PG',134,'D',NULL),
('1504320','The King''s Speech',2010,'R',118,'D',NULL),
('0947798','Black Swan',2010,'R',108,'DMT',NULL),
('0964517','The Fighter',2010,'R',116,'D',NULL),
('1655442','The Artist',2012,'PG-13',100,'C',NULL),
('1007029','The Iron Lady',2012,'PG-13',105,'D',NULL),
('1532503','Beginners',2011,'R',105,'C',NULL),
('1024648','Argo',2012,'R',130,'D',NULL),
('1045658','Silver Linings Playbook',2012,'R',122,'C',NULL),
('1853728','Django Unchained',2012,'R',165,'V',NULL),
('1707386','Les Miserables',2012,'PG-13',158,'D',NULL),
('0454876','Life of Pi',2012,'PG',127,'V',NULL),
('1800241','American Hustle',2013,'R',138,'D',NULL),
('2024544','12 Years a Slave',2013,'R',134,'D',NULL),
('0790636','Dallas Buyers Club',2013,'R',117,'D',NULL),
('2334873','Blue Jasmine',2013,'PG-13',98,'C',NULL),
('2562232','Birdman: Or',2014,'R',119,'C',NULL),
('2980516','The Theory of Everything',2014,'PG-13',123,'D',NULL),
('3316960','Still Alice',2015,'PG-13',101,'D',NULL),
('2582802','Whiplash',2014,'R',107,'D',NULL),
('1065073','Boyhood',2014,'R',165,'D',NULL),
('1895587','Spotlight',2015,'R',128,'BD',NULL),
('1663202','The Revenant',2016,'R',156,'VDT',NULL),
('3170832','Room',2016,'R',118,'D',NULL),
('3682448','Bridge of Spies',2015,'PG-13',142,'DHT',NULL),
('0810819','The Danish Girl',2016,'R',119,'BDR',NULL),
('4975722','Moonlight',2016,'R',111,'D',NULL),
('4034228','Manchester by the Sea',2016,'R',137,'D',NULL),
('3783958','La La Land',2016,'PG-13',128,'C',NULL),
('2671706','Fences',2016,'PG-13',139,'D',NULL),
('5580390','The Shape of Water',2017,'R',123,'VDYHRT',NULL),
('4555426','Darkest Hour',2017,'PG-13',125,'DW',NULL),
('5027774','Three Billboards Outside Ebbing, Missouri',2017,'R',115,'CD',NULL),
('5580036','I, Tonya',2018,'R',120,'CD',NULL),
('6966692','Green Book',2018,'PG-13',130,'CD',NULL),
('5083738','The Favourite',2018,'R',119,'D',NULL),
('7125860','If Beale Street Could Talk',2018,'R',119,'DR',NULL),
('6155172','Roma',2018,'R',135,'D',NULL),
('6751668','Parasite',2019,'R',132,'CDT',NULL),
('7549996','Judy',2019,'PG-13',118,'DR',NULL),
('7131622','Once Upon a Time... In Hollywood',2019,'R',161,'CD',NULL),
('7653254','Marriage Story',2019,'R',137,'CDR',NULL);
INSERT INTO Person VALUES ('0000002','<NAME>','1924-09-16','New York, New York, USA'),
('0000004','<NAME>','1949-01-24','Chicago, Illinois, USA'),
('0000006','<NAME>','1915-08-29','Stockholm, Sweden'),
('0000007','<NAME>','1899-12-25','New York, New York, USA'),
('0000008','<NAME>','1924-04-03','Omaha, Nebraska, USA'),
('0000009','<NAME>','1925-11-10','Pontrhydyfen, Wales, UK'),
('0000010','<NAME>','1899-07-17','Yonkers, New York, USA'),
('0000011','<NAME>','1901-05-07','Helena, Montana, USA'),
('0000012','<NAME>','1908-04-05','Lowell, Massachusetts, USA'),
('0000014','<NAME>','1916-07-01','Tokyo, Japan'),
('0000015','<NAME>','1931-02-08','Marion, Indiana, USA'),
('0000017','<NAME>','1901-12-27','Schoneberg, Germany'),
('0000018','<NAME>','1916-12-09','Amsterdam, New York, USA'),
('0000020','<NAME>','1905-05-16','Grand Island, Nebraska, USA'),
('0000021','<NAME>','1917-10-22','Tokyo, Japan'),
('0000022','<NAME>','1901-02-01','Cadiz, Ohio, USA'),
('0000024','<NAME>','1904-04-14','South Kensington, London, England, UK'),
('0000026','<NAME>','1904-01-18','Bristol, England, UK'),
('0000027','<NAME>','1914-04-02','Marylebone, London, England, UK'),
('0000028','<NAME>','1918-10-17','Brooklyn, New York, USA'),
('0000030','<NAME>','1929-05-04','Brussels, Belgium'),
('0000031','<NAME>','1907-05-12','Hartford, Connecticut, USA'),
('0000032','<NAME>','1924-10-04','Evanston, Illinois, USA'),
('0000033','<NAME>','1899-08-13','Leytonstone, London, England, UK'),
('0000034','<NAME>','1918-04-17','O''Fallon, Illinois, USA'),
('0000037','<NAME>','1912-08-23','Pittsburgh, Pennsylvania, USA'),
('0000038','<NAME>','1929-11-12','Philadelphia, Pennsylvania, USA'),
('0000039','<NAME>','1921-09-30','Helensburgh, Scotland, UK'),
('0000040','<NAME>','1928-07-26','Bronx, New York, USA'),
('0000044','<NAME>','1913-11-02','New York, New York, USA'),
('0000046','<NAME>','1913-11-05','Darjeeling, West Bengal, British India. [now India]'),
('0000047','<NAME>','1934-09-20','Pozzuoli, Italy'),
('0000053','<NAME>','1917-08-06','Bridgeport, Connecticut, USA'),
('0000056','<NAME>','1925-01-26','Shaker Heights, Ohio, USA'),
('0000057','<NAME>','1909-03-01','London, England, UK'),
('0000058','<NAME>','1920-08-17','Ranelagh, County Dublin, Ireland (now Ranelagh, Dublin, Ireland)'),
('0000059','<NAME>','1907-05-22','Dorking, Surrey, England, UK'),
('0000060','<NAME>','1916-04-05','La Jolla, California, USA'),
('0000061','<NAME>','1913-05-05','Cincinnati, Ohio, USA'),
('0000063','<NAME>','1915-04-21','Chihuahua, Mexico'),
('0000064','<NAME>','1893-12-12','Bucharest, Romania'),
('0000069','<NAME>','1915-12-12','Hoboken, New Jersey, USA'),
('0000071','<NAME>','1908-05-20','Indiana, Pennsylvania, USA'),
('0000072','<NAME>','1932-02-27','Hampstead, London, England, UK'),
('0000074','<NAME>','1920-11-19','Brooklyn, New York, USA'),
('0000075','<NAME>','1900-04-05','Milwaukee, Wisconsin, USA'),
('0000076','<NAME>','1932-02-06','Paris, France'),
('0000078','<NAME>','1907-05-26','Winterset, Iowa, USA'),
('0000080','<NAME>','1915-05-06','Kenosha, Wisconsin, USA'),
('0000081','<NAME>','1938-07-20','San Francisco, California, USA'),
('0000092','<NAME>','1939-10-27','Weston-Super-Mare, Somerset, England, UK'),
('0000093','<NAME>','1963-12-18','Shawnee, Oklahoma, USA'),
('0000095','<NAME>','1935-12-01','Brooklyn, New York, USA'),
('0000098','<NAME>','1969-02-11','<NAME>, California, USA'),
('0000099','<NAME>','1968-04-08','Chicago, Illinois, USA'),
('0000100','<NAME>','1955-01-06','Newcastle-upon-Tyne, England, UK'),
('0000101','<NAME>','1952-07-01','Ottawa, Ontario, Canada'),
('0000102','<NAME>','1958-07-08','Philadelphia, Pennsylvania, USA'),
('0000103','<NAME>','1974-05-21','Point Reyes, California, USA'),
('0000104','<NAME>','1960-08-10','Malaga, Spain'),
('0000106','<NAME>','1975-02-22','Culver City, California, USA'),
('0000107','<NAME>','1953-12-08','Athens, Georgia, USA'),
('0000111','<NAME>','1962-03-21','New York, New York, USA'),
('0000112','<NAME>','1953-05-16','Navan, County Meath, Ireland'),
('0000113','<NAME>','1964-07-26','Arlington, Virginia, USA'),
('0000114','<NAME>','1957-12-13','Brooklyn, New York, USA'),
('0000115','<NAME>','1964-01-07','Long Beach, California, USA'),
('0000116','<NAME>','1954-08-14','Kapuskasing, Ontario, Canada'),
('0000119','<NAME>','1967-01-02','Honolulu, Hawaii, USA'),
('0000120','<NAME>','1962-01-17','Newmarket, Ontario, Canada'),
('0000121','Phoebe Cates','1963-07-16','New York, New York, USA'),
('0000123','<NAME>','1961-05-06','Lexington, Kentucky, USA'),
('0000124','<NAME>','1970-12-12','Catskill Mountains, New York, USA'),
('0000125','<NAME>','1930-08-25','Edinburgh, Midlothian, Scotland, UK'),
('0000126','<NAME>','1955-01-18','Lynwood, California, USA'),
('0000128','<NAME>','1964-04-07','Wellington, North Island, New Zealand'),
('0000129','<NAME>','1962-07-03','Syracuse, New York, USA'),
('0000130','<NAME>','1958-11-22','Los Angeles, California, USA'),
('0000131','<NAME>','1966-06-28','Evanston, Illinois, USA'),
('0000132','<NAME>','1979-04-12','New York, New York, USA'),
('0000133','<NAME>','1956-01-21','Wareham, Massachusetts, USA'),
('0000134','<NAME>','1943-08-17','New York, New York, USA'),
('0000136','<NAME>','1963-06-09','Owensboro, Kentucky, USA'),
('0000138','<NAME>','1974-11-11','Hollywood, California, USA'),
('0000139','<NAME>','1972-08-30','San Diego, California, USA'),
('0000140','<NAME>','1944-09-25','New Brunswick, New Jersey, USA'),
('0000142','<NAME>','1930-05-31','St. Francis Hospital, San Francisco, California, USA'),
('0000144','<NAME>','1962-10-26','London, England, UK'),
('0000146','<NAME>','1962-12-22','Suffolk, England, UK'),
('0000148','<NAME>','1942-07-13','Chicago, Illinois, USA'),
('0000149','<NAME>','1962-11-19','Los Angeles, California, USA'),
('0000150','<NAME>','1961-06-09','Edmonton, Alberta, Canada'),
('0000151','<NAME>','1937-06-01','Memphis, Tennessee, USA'),
('0000152','<NAME>','1949-08-31','Philadelphia, Pennsylvania, USA'),
('0000154','<NAME>','1956-01-03','Peekskill, New York, USA'),
('0000155','<NAME>','1955-11-13','New York, New York, USA'),
('0000156','<NAME>','1952-10-22','Pittsburgh, Pennsylvania, USA'),
('0000157','<NAME>','1956-09-26','Salisbury, Maryland, USA'),
('0000158','<NAME>','1956-07-09','Concord, California, USA'),
('0000160','<NAME>','1970-11-06','Austin, Texas, USA'),
('0000163','<NAME>','1937-08-08','Los Angeles, California, USA'),
('0000164','<NAME>','1937-12-31','Margam, near Port Talbot, West Glamorgan, Wales, UK'),
('0000165','<NAME>','1954-03-01','Duncan, Oklahoma, USA'),
('0000166','<NAME>','1963-06-15','Los Angeles, California, USA'),
('0000168','<NAME>','1948-12-21','Washington, District of Columbia, USA'),
('0000169','<NAME>','1946-09-15','San Saba, Texas, USA'),
('0000172','<NAME>','1939-05-13','Brooklyn, New York, USA'),
('0000173','<NAME>','1967-06-20','Honolulu, Hawaii, USA'),
('0000174','<NAME>','1959-12-31','Los Angeles, California, USA'),
('0000177','<NAME>','1947-10-24','St. Louis, Missouri, USA'),
('0000178','<NAME>','1965-01-22','New York, New York, USA'),
('0000179','<NAME>','1972-12-29','Lewisham, London, England, UK'),
('0000180','<NAME>','1908-03-25','Croydon, Surrey, England, UK'),
('0000184','<NAME>','1944-05-14','Modesto, California, USA'),
('0000188','<NAME>','1945-08-14','Waco, Texas, USA'),
('0000191','<NAME>','1971-03-31','Crieff, Perthshire, Scotland, UK'),
('0000193','<NAME>','1962-11-11','Roswell, New Mexico, USA'),
('0000194','<NAME>','1960-12-03','Fayetteville, North Carolina, USA'),
('0000195','<NAME>','1950-09-21','Wilmette, Illinois, USA'),
('0000196','<NAME>','1963-05-25','Scarborough, Ontario, Canada'),
('0000197','<NAME>','1937-04-22','Neptune, New Jersey, USA'),
('0000198','<NAME>','1958-03-21','New Cross, London, England, UK'),
('0000199','<NAME>','1940-04-25','South Bronx, New York, New York, USA'),
('0000200','<NAME>','1955-05-17','Fort Worth, Texas, USA'),
('0000201','<NAME>','1958-04-29','Santa Ana, California, USA'),
('0000204','<NAME>','1981-06-09','Jerusalem, Israel'),
('0000206','<NAME>','1964-09-02','Beirut, Lebanon'),
('0000207','<NAME>','1980-02-12','Santa Monica, California, USA'),
('0000209','<NAME>','1958-10-16','West Covina, California, USA'),
('0000210','<NAME>','1967-10-28','Smyrna, Georgia, USA'),
('0000213','<NAME>','1971-10-29','Winona, Minnesota, USA'),
('0000215','<NAME>','1946-10-04','New York City, New York, USA'),
('0000216','<NAME>','1947-07-30','Thal, Styria, Austria'),
('0000217','<NAME>','1942-11-17','Queens, New York, USA'),
('0000218','<NAME>','1960-05-24','Redruth, Cornwall, England, UK'),
('0000221','<NAME>','1965-09-03','New York, New York, USA'),
('0000223','<NAME>','1963-10-06','Wilmington, Delaware, USA'),
('0000225','<NAME>','1969-08-18','New York, New York, USA'),
('0000226','<NAME>','1968-09-25','Philadelphia, Pennsylvania, USA'),
('0000227','<NAME>','1967-09-28','Tenafly, New Jersey, USA'),
('0000228','<NAME>','1959-07-26','South Orange, New Jersey, USA'),
('0000229','<NAME>','1946-12-18','Cincinnati, Ohio, USA'),
('0000230','<NAME>','1946-07-06','New York, New York, USA'),
('0000231','<NAME>','1946-09-15','New York, New York, USA'),
('0000236','<NAME>','1958-09-16','Harbor City, California, USA'),
('0000237','<NAME>','1954-02-18','Englewood, New Jersey, USA'),
('0000239','<NAME>','1977-07-01','Portland, Maine, USA'),
('0000240','<NAME>','1970-01-20','Lynchburg, Virginia, USA'),
('0000242','<NAME>','1971-06-05','Dorchester, Massachusetts, USA'),
('0000243','<NAME>','1954-12-28','Mount Vernon, New York, USA'),
('0000244','<NAME>','1949-10-08','New York, New York, USA'),
('0000245','<NAME>','1952-07-21','Chicago, Illinois, USA'),
('0000246','<NAME>','1955-03-19','Idar-Oberstein, West Germany'),
('0000247','<NAME>','1946-05-01','Guangzhou, China'),
('0000250','<NAME>','1969-04-25','Katy, Texas, USA'),
('0000255','<NAME>','1972-08-15','Berkeley, California, USA'),
('0000257','<NAME>','1936-01-28','New York, New York, USA'),
('0000261','<NAME>','1951-10-05','Carrollton, Illinois, USA'),
('0000263','<NAME>','1951-01-12','Wichita, Kansas, USA'),
('0000267','<NAME>','1935-10-01','Walton-on-Thames, Surrey, England, UK'),
('0000270','<NAME>','1970-02-04','Laleham, Middlesex, England, UK'),
('0000271','<NAME>','1947-08-25','Los Angeles, California, USA'),
('0000276','<NAME>','1971-02-25','Santa Monica, California, USA'),
('0000277','<NAME>','1923-08-29','Cambridge, Cambridgeshire, England, UK'),
('0000278','<NAME>','1958-02-13','Stockholm, Sweden'),
('0000279','<NAME>','1964-04-25','Queens, New York, USA'),
('0000285','<NAME>','1958-04-03','Massapequa, Long Island, New York, USA'),
('0000286','<NAME>','1966-05-12','Massapequa, Long Island, New York, USA'),
('0000288','<NAME>','1974-01-30','Haverfordwest, Pembrokeshire, Wales, UK'),
('0000289','<NAME>','1954-04-16','New York, New York, USA'),
('0000293','<NAME>','1959-04-17','Sheffield, Yorkshire, England, UK'),
('0000295','<NAME>','1973-07-26','London, England, UK'),
('0000297','<NAME>','1949-05-31','Chicago, Illinois, USA'),
('0000298','<NAME>','1946-05-09','Beverly Hills, Los Angeles, California, USA'),
('0000300','<NAME>','1964-03-09','Paris, France'),
('0000301','<NAME>','1982-03-11','Los Angeles, California, USA'),
('0000302','<NAME>','1944-09-13','Weybridge, Surrey, England, UK'),
('0000306','<NAME>','1937-10-09','Mexborough, Yorkshire, England, UK'),
('0000307','<NAME>','1966-05-26','<NAME>, London, England, UK'),
('0000308','<NAME>','1917-01-24','Hamden, Connecticut, USA'),
('0000313','<NAME>','1949-12-04','Los Angeles, California, USA'),
('0000318','<NAME>','1958-08-25','Burbank, California, USA'),
('0000321','<NAME>','1950-05-12','Dublin, Ireland'),
('0000322','<NAME>','1965-08-14','St. Tropez, Var, Provence-Alpes-Cote d''Azur, France'),
('0000329','<NAME>','1954-04-07','Hong Kong'),
('0000330','<NAME>','1944-02-13','New York, New York, USA'),
('0000333','Cher','1946-05-20','El Centro, California, USA'),
('0000332','<NAME>','1964-11-29','Kansas City, Missouri, USA'),
('0000334','Yun-Fat Chow','1955-05-18','Lamma Island, Hong Kong'),
('0000335','<NAME>','1947-03-19','Greenwich, Connecticut, USA'),
('0000336','<NAME>','1928-08-31','Laurel, Nebraska, USA'),
('0000338','<NAME>','1939-04-07','Detroit, Michigan, USA'),
('0000342','<NAME>','1940-01-27','Los Angeles, California, USA'),
('0000345','<NAME>','1947-03-14','Long Beach, Long Island, New York, USA'),
('0000346','<NAME>','1980-08-26','New York, New York, USA'),
('0000347','<NAME>','1946-04-19','Grappnhall, Cheshire, England, UK'),
('0000349','<NAME>','1962-10-11','New York, USA'),
('0000352','<NAME>','1959-06-30','Brooklyn, New York, USA'),
('0000353','<NAME>','1955-07-22','Appleton, Wisconsin, USA'),
('0000354','<NAME>','1970-10-08','Cambridge, Massachusetts, USA'),
('0000355','<NAME>','1946-02-21','Salisbury, Wiltshire, England, UK'),
('0000358','<NAME>','1957-04-29','London, England, UK'),
('0000360','<NAME>','1962-08-29','Santa Rosa, California, USA'),
('0000361','<NAME>','1940-09-11','Newark, New Jersey, USA'),
('0000362','<NAME>','1944-11-17','Neptune, New Jersey, USA'),
('0000368','<NAME>','1967-02-10','Los Angeles, California, USA'),
('0000369','<NAME>','1964-02-18','New Rochelle, New York, USA'),
('0000377','<NAME>','1947-10-29','Brooklyn, New York, USA'),
('0000378','<NAME>','1970-01-31','London, England, UK'),
('0000379','<NAME>','1982-04-30','Point Pleasant, New Jersey, USA'),
('0000380','<NAME>','1931-01-05','San Diego, California, USA'),
('0000381','<NAME>','1962-07-19','Santa Barbara, California, USA'),
('0000385','<NAME>','1944-08-09','Sacramento, California, USA'),
('0000386','<NAME>','1955-11-10','Stuttgart, Baden-Wurttemberg, Germany'),
('0000388','<NAME>','1944-03-24','Emporia, Kansas, USA'),
('0000398','<NAME>','1946-11-06','Pasadena, California, USA'),
('0000400','<NAME>','1960-03-09','Philadelphia, Pennsylvania, USA'),
('0000401','<NAME>','1961-07-30','Augusta, Georgia, USA'),
('0000402','<NAME>','1956-10-21','Beverly Hills, Los Angeles, California, USA'),
('0000404','<NAME>','1937-12-21','New York, New York, USA'),
('0000406','<NAME>','1894-02-01','Cape Elizabeth, Maine, USA'),
('0000409','<NAME>','1968-12-03','Indianapolis, Indiana, USA'),
('0000411','<NAME>','1977-08-02','Pasadena, California, USA'),
('0000412','<NAME>','1956-04-12','Havana, Cuba'),
('0000414','<NAME>','1949-12-11','Lakewood, Ohio, USA'),
('0000415','<NAME>','1965-10-28','Chicago, Illinois, USA'),
('0000416','<NAME>','1940-11-22','Minneapolis, Minnesota, USA'),
('0000417','<NAME>','1964-04-20','New York, New York, USA'),
('0000418','<NAME>','1946-07-22','San Francisco, California, USA'),
('0000420','<NAME>','1966-10-22','Naples, Campania, Italy'),
('0000421','<NAME> Jr.','1968-01-02','The Bronx, New York, USA'),
('0000422','<NAME>','1952-06-20','St. Louis, Missouri, USA'),
('0000430','<NAME>','1958-08-24','New York, New York, USA'),
('0000431','<NAME>','1944-12-31','Santa Barbara, California, USA'),
('0000432','<NAME>','1930-01-30','San Bernardino, California, USA'),
('0000434','<NAME>','1951-09-25','Oakland, California, USA'),
('0000436','<NAME>','1945-03-24','Reno, Nevada, USA'),
('0000438','<NAME>','1950-11-28','Englewood, New Jersey, USA'),
('0000443','<NAME>','1945-11-21','Washington, District of Columbia, USA'),
('0000450','<NAME>','1967-07-23','Fairport, New York, USA'),
('0000452','<NAME>','1963-10-28','Bristol, Pennsylvania, USA'),
('0000456','<NAME>','1958-03-20','Conyers, Georgia, USA'),
('0000458','<NAME>','1950-03-20','Washington, District of Columbia, USA'),
('0000459','<NAME>','1960-08-16','Malibu, California, USA'),
('0000460','<NAME>','1948-09-19','Cowes, Isle of Wight, England, UK'),
('0000463','<NAME>','1965-11-05','Amsterdam, Noord-Holland, Netherlands'),
('0000469','<NAME>','1931-01-17','Arkabutla, Mississippi, USA'),
('0000470','<NAME>','1947-09-28','Buffalo, New York, USA'),
('0000471','<NAME>','1940-03-09','San Juan, Puerto Rico'),
('0000473','<NAME>','1946-01-05','Los Angeles, California, USA'),
('0000474','<NAME>','1951-09-05','Coraopolis, Pennsylvania, USA'),
('0000480','<NAME>','1961-03-11','Montreal, Quebec, Canada'),
('0000484','<NAME>','1950-08-03','Chicago, Illinois, USA'),
('0000487','<NAME>','1954-10-23','Pingtung, Taiwan'),
('0000489','<NAME>','1922-05-27','Belgravia, London, England, UK'),
('0000491','<NAME>','1964-07-22','Bogota, Colombia'),
('0000493','<NAME>','1925-02-08','Newton, Massachusetts, USA'),
('0000495','<NAME>','1966-02-25','New York, New York, USA'),
('0000498','<NAME>','1970-01-24','Lansing, Michigan, USA'),
('0000501','<NAME>','1955-12-18','Newark, New Jersey, USA'),
('0000502','<NAME>','1938-10-22','Stamford, Connecticut, USA'),
('0000504','<NAME>','1971-12-19','Trenton, New Jersey, USA'),
('0000506','<NAME>','1961-01-13','New York, New York, USA'),
('0000507','<NAME>','1964-03-17','Charlottesville, Virginia, USA'),
('0000511','<NAME>','1934-04-24','Richmond, Virginia, USA'),
('0000513','<NAME>','1950-03-13','Miami, Florida, USA'),
('0000518','<NAME>','1953-12-09','Christopher, Illinois, USA'),
('0000527','<NAME>','1920-10-01','New York City, New York, USA'),
('0000531','<NAME>','1957-06-23','Chicago, Illinois, USA'),
('0000534','<NAME>','1957-07-09','Newport Beach, California, USA'),
('0000547','<NAME>','1953-05-24','London, England, UK'),
('0000552','<NAME>','1961-04-03','Brooklyn, New York, USA'),
('0000553','<NAME>','1952-06-07','Ballymena, Co. Antrim, Northern Ireland, UK'),
('0000554','<NAME>','1947-09-14','Omagh, Co. Tyrone, Northern Ireland, UK'),
('0000556','<NAME>','1948-09-26','Cambridge, Cambridgeshire, England, UK'),
('0000557','<NAME>','1963-07-15','Rodovre, Denmark'),
('0000559','<NAME>','1931-03-26','Boston, Massachusetts, USA'),
('0000560','<NAME>','1941-02-08','Omaha, Nebraska, USA'),
('0000563','<NAME>','1970-06-26','Winnetka, Illinois, USA'),
('0000564','<NAME>','1932-08-02','Connemara, County Galway, Ireland'),
('0000569','<NAME>','1972-09-28','Los Angeles, California, USA'),
('0000572','<NAME>','1965-03-25','Nelsonville, Ohio, USA'),
('0000576','<NAME>','1960-08-17','Santa Monica, California, USA'),
('0000581','<NAME>','1909-02-11','Wilkes-Barre, Pennsylvania, USA'),
('0000582','<NAME>','1943-02-09','Newark, New Jersey, USA'),
('0000583','<NAME>','1941-03-14','Emden, Lower Saxony, Germany'),
('0000586','<NAME>','1971-09-18','Baltimore, Maryland, USA'),
('0000591','<NAME>','1933-08-18','Paris, France'),
('0000592','<NAME>','1945-02-07','Warrington, Cheshire, England, UK'),
('0000593','<NAME>','1962-10-13','Honolulu, Hawaii, USA'),
('0000597','<NAME>','1953-12-17','Hornell, New York, USA'),
('0000598','<NAME>','1954-04-09','Houston, Texas, USA'),
('0000600','<NAME>','1959-10-23','Franklin, Michigan, USA'),
('0000601','<NAME>','1944-11-21','Chicago, Illinois, USA'),
('0000602','<NAME>','1937-08-18','Santa Monica, California, USA'),
('0000603','<NAME>','1937-01-30','London, England, UK'),
('0000604','<NAME>','1965-05-24','Chicago, Illinois, USA'),
('0000606','<NAME>','1948-07-30','Casablanca, Morocco'),
('0000608','<NAME>','1936-02-11','Waycross, Georgia, USA'),
('0000609','<NAME>','1959-05-12','New York, New York, USA'),
('0000613','<NAME>','1965-01-09','London, England, UK'),
('0000614','<NAME>','1946-02-21','Hammersmith, London, England, UK'),
('0000619','<NAME>','1961-05-14','London, England, UK'),
('0000623','<NAME>','1954-02-17','Burbank, California, USA'),
('0000624','<NAME>','1962-11-14','West Orange or Hoboken, New Jersey, USA'),
('0000631','<NAME>','1937-11-30','South Shields, Tyne and Wear, England, UK'),
('0000633','<NAME>','1945-01-29','Detroit, Michigan, USA'),
('0000634','<NAME>','1925-09-08','Southsea, Hampshire, England, UK'),
('0000640','<NAME>','1940-08-03','Dayton, Ohio, USA'),
('0000641','<NAME>','1955-03-17','Blue Island, Illinois, USA'),
('0000643','<NAME>','1933-08-25','Detroit, Michigan, USA'),
('0000644','<NAME>','1963-12-15','Massapequa, Long Island, New York, USA'),
('0000649','<NAME>','1939-04-13','Brooklyn, New York, USA'),
('0000651','<NAME>','1949-12-25','Quitman, Texas, USA'),
('0000658','<NAME>','1949-06-22','Summit, New Jersey, USA'),
('0000659','<NAME>','1942-04-24','Brooklyn, New York, USA'),
('0000661','<NAME>','1935-07-17','Saint John, New Brunswick, Canada'),
('0000662','<NAME>','1966-12-21','London, England, UK'),
('0000664','<NAME>','1952-08-18','Houston, Texas, USA'),
('0000665','<NAME>','1961-11-14','Shoreham, New York, USA'),
('0000668','<NAME>','1959-04-15','Paddington, London, England, UK'),
('0000670','<NAME>','1961-05-31','Rochester, Minnesota, USA'),
('0000671','<NAME>','1955-08-04','Hot Springs, Arkansas, USA'),
('0000673','<NAME>','1964-12-04','Brooklyn, New York, USA'),
('0000675','<NAME>','1963-06-10','Tulsa, Oklahoma, USA'),
('0000676','<NAME>','1972-08-31','Atlanta, Georgia, USA'),
('0000678','<NAME>','1954-06-19','Springfield, Missouri, USA'),
('0000681','<NAME>','1970-03-28','Minneapolis, Minnesota, USA'),
('0000685','<NAME>','1938-12-29','Yonkers, New York, USA'),
('0000686','<NAME>','1943-03-31','Queens, New York, USA'),
('0000688','<NAME>','1956-07-11','Meridian, Mississippi, USA'),
('0000697','<NAME>','1906-06-22','Sucha, Austria-Hungary. [now in Poland]'),
('0000700','<NAME>','1955-05-16','Cleveland Heights, Ohio, USA'),
('0000701','<NAME>','1975-10-05','Reading, Berkshire, England, UK'),
('0000702','<NAME>','1976-03-22','Baton Rouge, Louisiana, USA'),
('0000704','<NAME>','1981-01-28','Cedar Rapids, Iowa, USA'),
('0000705','<NAME>','1966-04-08','Dallas, Texas, USA'),
('0000706','<NAME>','1962-08-06','Ipoh, Perak, Malaysia'),
('0000708','<NAME>','1966-02-24','Chicago, Illinois, USA'),
('0000709','<NAME>','1952-05-14','Chicago, Illinois, USA'),
('0000716','<NAME>','1962-06-19','San Fernando, California, USA'),
('0000719','<NAME>','1939-10-24','Pittsburgh, Pennsylvania, USA'),
('0000722','<NAME>','1928-02-29','North Kensington, London, England, UK'),
('0000725','<NAME>','1971-01-06','Little Rock, Arkansas, USA'),
('0000732','<NAME>','1933-06-20','Brooklyn, New York, USA'),
('0000734','<NAME>','1908-04-22','Rock Island, Illinois, USA'),
('0000737','<NAME>','1939-10-28','Boston, Massachusetts, USA'),
('0000741','<NAME>','1953-06-13','Denver, Colorado, USA'),
('0000747','<NAME>','1908-05-31','Kenosha, Wisconsin, USA'),
('0000752','<NAME>','1897-02-10','Adelaide, South Australia, Australia'),
('0000763','<NAME>','1909-01-01','Covington County, Mississippi, USA'),
('0000776','<NAME>','1941-02-10','Aylesbury, Buckinghamshire, England, UK'),
('0000781','<NAME>','1908-04-30','Mill Valley, California, USA'),
('0000782','Asia Argento','1975-09-20','Rome, Italy'),
('0000792','<NAME>','1959-03-06','Ottumwa, Iowa, USA'),
('0000795','<NAME>','1900-10-17','Plattsburg, New York, USA'),
('0000797','<NAME>','1929-09-02','Ogden, Utah, USA'),
('0000799','<NAME>','1929-11-15','Kansas City, Kansas, USA'),
('0000802','<NAME>','1906-05-03','Quincy, Illinois, USA'),
('0000814','<NAME>','1935-12-21','Oak Park, Illinois, USA'),
('0000817','<NAME>','1908-12-28','Minneapolis, Minnesota, USA'),
('0000824','<NAME>','1939-08-25','Luton, Bedfordshire, England, UK'),
('0000825','<NAME>','1952-10-07','Birmingham, Alabama, USA'),
('0000837','<NAME>','1945-08-16','Chicago, Illinois, USA'),
('0000842','<NAME>','1914-11-04','The Bronx, New York, USA'),
('0000843','<NAME>','1931-09-17','The Bronx, New York, USA'),
('0000855','<NAME>','1939-03-14','Hempstead, Long Island, New York, USA'),
('0000856','<NAME>','1879-08-15','Philadelphia, Pennsylvania, USA'),
('0000858','<NAME>','1882-02-14','Philadelphia, Pennsylvania, USA'),
('0000859','<NAME>','1878-04-28','Philadelphia, Pennsylvania, USA'),
('0000861','<NAME>','1924-03-28','Dublin, Ireland'),
('0000869','<NAME>','1934-02-17','Allestree, Derbyshire, England, UK'),
('0000870','<NAME>','1948-06-28','Memphis, Tennessee, USA'),
('0000879','<NAME>','1923-05-07','Michigan City, Indiana, USA'),
('0000881','<NAME>','1965-02-17','Los Angeles, California, USA'),
('0000882','<NAME>','1948-07-06','Mainneville, France'),
('0000885','<NAME>','1937-07-06','Louisville, Kentucky, USA'),
('0000886','<NAME>','1937-03-30','Richmond, Virginia, USA'),
('0000891','<NAME>','1885-04-01','Kansas City, Missouri, USA'),
('0000897','<NAME>','1904-06-17','Chicago, Illinois, USA'),
('0000899','<NAME>','1964-09-30','Citta di Castello, Perugia, Italy'),
('0000901','<NAME>','1933-04-09','Neuilly-sur-Seine, Hauts-de-Seine, France'),
('0000905','<NAME>','1952-10-27','Misericordia, Arezzo, Tuscany, Italy'),
('0000906','<NAME>','1958-05-29','Topeka, Kansas, USA'),
('0000907','<NAME>','1938-05-22','New York, New York, USA'),
('0000913','<NAME>','1956-01-21','Dallas, Texas, USA'),
('0000914','<NAME>','1932-09-29','Waxahachie, Texas, USA'),
('0000915','<NAME>','1940-08-16','Sydney, New South Wales, Australia'),
('0000925','<NAME>','1937-08-03','London, England, UK'),
('0000931','<NAME>','1962-05-02','Westchester, New York, USA'),
('0000932','<NAME>','1966-08-14','Cleveland, Ohio, USA'),
('0000934','<NAME>','1940-03-16','Parma, Emilia-Romagna, Italy'),
('0000937','<NAME>','1938-02-20','Avoca, Iowa, USA'),
('0000942','<NAME>','1924-05-02','Vienna, Austria'),
('0000946','<NAME>','1909-10-25','New York, New York, USA'),
('0000949','<NAME>','1969-05-14','Melbourne, Victoria, Australia'),
('0000951','<NAME>','1906-08-30','New York, New York, USA'),
('0000953','<NAME>','1939-07-30','Kingston, New York, USA'),
('0000955','<NAME>','1903-04-09','Benkelman, Nebraska, USA'),
('0000957','<NAME>','1943-10-22','Eindhoven, Noord-Brabant, Netherlands'),
('0000959','<NAME>','1949-06-01','Snyder, Texas, USA'),
('0000960','<NAME>','1946-02-24','San Mateo, California, USA'),
('0000961','<NAME>','1951-08-30','Santa Barbara, California, USA'),
('0000963','<NAME>','1931-07-04','Glengormley, Northern Ireland, UK'),
('0000964','<NAME>','1897-08-28','Figeac, Lot, Midi-Pyrenees, France'),
('0000966','<NAME>','1949-10-02','Bay Ridge, Brooklyn, New York, USA'),
('0000968','<NAME>','1950-06-08','Maringa, Parana, Brazil'),
('0000971','<NAME>','1960-08-10','Cesena, Italy'),
('0000974','<NAME>','1894-07-25','Swampscott, Massachusetts, USA'),
('0000976','<NAME>','1951-08-08','The Bronx, New York, New York, USA'),
('0000977','<NAME>','1941-12-09','Hollywood, California, USA'),
('0000978','<NAME>','1913-01-15','San Leandro, California, USA'),
('0000979','<NAME>','1924-09-27','Salt Lake City, Utah, USA'),
('0000980','<NAME>','1949-05-24','Lincoln, Lincolnshire, England, UK'),
('0000983','<NAME>','1947-07-22','Beverly Hills, Los Angeles, California, USA'),
('0000985','<NAME>','1940-05-09','North Bergen, New Jersey, USA'),
('0000989','<NAME>','1915-07-07','Vladivostock, Czarist Russia (now Vladivostock, Russia)'),
('0000990','<NAME>','1947-07-03','Fort Worth, Texas, USA'),
('0000995','<NAME>','1932-12-07','Detroit, Michigan, USA'),
('0000999','Red Buttons','1919-02-05','New York, New York, USA'),
('0001001','<NAME>','1939-03-26','The Bronx, New York, USA'),
('0001003','<NAME>','1949-06-13','London, England, UK'),
('0001005','<NAME>','1954-04-30','Wellington, New Zealand'),
('0001008','<NAME>','1897-05-18','Bisacquino, Sicily, Italy'),
('0001009','<NAME>','1953-11-03','Fort Worth, Texas, USA'),
('0001017','<NAME>','1906-02-05','New York, New York, USA'),
('0001019','<NAME>','1954-03-24','Hollywood, California, USA'),
('0001023','<NAME>','1929-12-09','New York, New York, USA'),
('0001026','<NAME>','1945-08-02','Haddonfield, New Jersey, USA'),
('0001029','<NAME>','1968-09-26','Mount Vernon, Washington, USA'),
('0001030','<NAME>','1935-08-12','Boston, Massachusetts, USA'),
('0001040','<NAME>','1961-04-26','Shanghai, China'),
('0001046','<NAME>','1941-04-14','Chabua, Assam, India'),
('0001047','<NAME>','1939-02-03','New York, New York, USA'),
('0001050','Montgomery Clift','1920-10-17','Omaha, Nebraska, USA'),
('0001054','<NAME>','1954-11-29','Minneapolis, Minnesota, USA'),
('0001055','<NAME>','1903-09-13','Paris, France'),
('0001056','<NAME>','1932-01-03','Austin, Texas, USA'),
('0001057','<NAME>','1972-11-01','Sydney, New South Wales, Australia'),
('0001059','<NAME>','1950-03-30','Rutherglen, Scotland, UK'),
('0001060','<NAME>','1958-09-10','Spangler, Pennsylvania, USA'),
('0001063','<NAME>','1950-10-05','New York, New York, USA'),
('0001069','<NAME>','1948-03-29','New Rochelle, New York, USA'),
('0001072','<NAME>','1905-05-15','Petersburg, Virginia, USA'),
('0001074','<NAME>','1938-07-23','Cloudcroft, New Mexico, USA'),
('0001075','<NAME>','1942-10-10','Colver, Pennsylvania, USA'),
('0001076','<NAME>','1904-03-23','San Antonio, Texas, USA'),
('0001077','<NAME>','1926-11-30','Los Angeles, California, USA'),
('0001078','<NAME>','1903-05-02','Tacoma, Washington, USA'),
('0001080','<NAME>','1948-05-12','New York, New York, USA'),
('0001081','<NAME>','1957-07-13','Palm Springs, California, USA'),
('0001088','<NAME>','1913-05-26','Kenley, Surrey, England, UK'),
('0001089','<NAME>','1959-01-01','Toronto, Ontario, Canada'),
('0001099','<NAME>','1955-02-19','Athens, Georgia, USA'),
('0001100','<NAME>','1943-02-03','Philadelphia, Pennsylvania, USA'),
('0001101','<NAME>','1947-12-29','San Diego, California, USA'),
('0001102','<NAME>','1946-11-28','Morristown, New Jersey, USA'),
('0001104','<NAME>','1959-01-28','Montebeliard, France'),
('0001105','<NAME>','1923-10-16','Dallas, Texas, USA'),
('0001111','<NAME>','1969-10-08','Traverse City, Michigan, USA'),
('0001112','<NAME>','1947-01-01','Chicago, Illinois, USA'),
('0001114','<NAME>','1955-04-23','Perth, Western Australia, Australia'),
('0001115','<NAME>','1917-12-18','Cogdell, Georgia, USA'),
('0001120','<NAME>','1902-07-07','Sora, Latium, Italy'),
('0001121','<NAME>','1942-04-09','Brooklyn, New York, USA'),
('0001122','<NAME>','1958-01-26','Metairie, Louisiana, USA'),
('0001124','<NAME>','1881-08-12','Ashfield, Massachusetts, USA'),
('0001125','<NAME>','1967-02-19','Santurce, Puerto Rico'),
('0001129','<NAME>','1944-02-22','Baldwin, Long Island, New York, USA'),
('0001131','<NAME>','1966-01-13','Lewiston, Maine, USA'),
('0001132','<NAME>','1934-12-09','York, North Yorkshire, England, UK'),
('0001133','<NAME>','1938-07-09','Bridgeport, Connecticut, USA'),
('0001135','<NAME>','1926-08-12','Hollywood, California, USA'),
('0001136','<NAME>','1936-06-04','Chicago, Illinois, USA'),
('0001149','<NAME>','1930-04-24','New York, New York, USA'),
('0001156','<NAME>','1931-06-20','Lowell, Massachusetts, USA'),
('0001157','<NAME>','1946-12-14','Elmhurst, New York, USA'),
('0001159','<NAME>','1941-01-14','Bascom, Florida, USA'),
('0001164','<NAME>','1923-02-28','Highland Falls, New York, USA'),
('0001182','<NAME>','1972-04-20','Sharonville, Ohio, USA'),
('0001185','<NAME>','1936-12-22','New York, New York, USA'),
('0001186','<NAME>','1922-05-31','Ealing, London, England, UK'),
('0001191','<NAME>','1966-09-09','Brooklyn, New York, USA'),
('0001195','<NAME> Jr.','1909-12-09','New York, New York, USA'),
('0001201','<NAME>','1945-02-09','Los Angeles, California, USA'),
('0001207','<NAME>','1909-01-08','Santurce, Puerto Rico'),
('0001209','<NAME>','1956-11-27','Mitchell Field Air Force Base, East Meadow, Long Island, New York, USA'),
('0001212','<NAME>','1970-05-27','Salisbury, Wiltshire, England, UK'),
('0001213','<NAME>','1954-06-06','Brooklyn, New York, USA'),
('0001214','<NAME>','1948-02-28','Carlisle, Cumbria, England, UK'),
('0001215','<NAME>','1936-05-09','Salford, Manchester, England, UK'),
('0001221','<NAME>','1934-07-22','Birmingham, Alabama, USA'),
('0001223','<NAME>','1970-03-24','Davenport, Iowa, USA'),
('0001225','<NAME>','1924-04-20','Leiden, Zuid-Holland, Netherlands'),
('0001232','<NAME>','1932-02-18','Caslav, Czechoslovakia'),
('0001242','<NAME>','1958-01-04','Washington, District of Columbia, USA'),
('0001243','<NAME>','1935-08-29','Chicago, Illinois, USA'),
('0001247','<NAME>','1919-02-11','Budapest, Hungary'),
('0001256','<NAME>','1905-09-18','Stockholm, Sweden'),
('0001257','<NAME>','1922-12-24','Grabtown, North Carolina, USA'),
('0001258','<NAME>','1928-04-07','Norman, Oklahoma, USA'),
('0001264','<NAME>','1977-04-14','New York, New York, USA'),
('0001274','<NAME>','1943-03-25','Cambridge, Massachusetts, USA'),
('0001277','<NAME>','1941-01-26','Pittsburgh, Pennsylvania, USA'),
('0001282','<NAME>','1960-05-20','Los Angeles, California, USA'),
('0001283','<NAME> Jr.','1936-05-27','Brooklyn, New York, USA'),
('0001284','<NAME>','1917-11-23','Malaya. [now Malaysia]'),
('0001287','<NAME>','1970-01-29','Milwaukee, Wisconsin, USA'),
('0001288','<NAME>','1955-02-21','St. Thomas, Virgin Islands'),
('0001293','<NAME>','1974-02-08','Overbrook Park, Philadelphia, Pennsylvania, USA'),
('0001295','<NAME>','1952-06-22','Six Nations Reserve, Ontario, Canada'),
('0001297','<NAME>','1932-04-11','Cleveland, Ohio, USA'),
('0001304','<NAME>','1926-07-10','New York, New York, USA'),
('0001311','<NAME>','1931-09-10','Toledo, Ohio, USA'),
('0001314','<NAME>','1962-04-23','East Kilbride, Scotland, UK'),
('0001315','<NAME>','1959-08-14','La Jolla, California, USA'),
('0001321','<NAME>','1930-10-01','Limerick, Ireland'),
('0001322','<NAME>','1908-03-05','Huyton, Lancashire, England, UK'),
('0001326','<NAME>','1978-07-21','San Francisco, California, USA'),
('0001328','<NAME>','1896-05-30','Goshen, Indiana, USA'),
('0001329','<NAME>','1929-04-05','Coventry, Warwickshire, England, UK'),
('0001333','<NAME>','1918-06-30','Brooklyn, New York, USA'),
('0001334','<NAME>','1945-03-07','Washington, District of Columbia, USA'),
('0001336','<NAME>','1910-12-13','Walters, Oklahoma, USA'),
('0001346','<NAME>','1943-07-21','Washington, District of Columbia, USA'),
('0001347','<NAME>','1948-02-05','Hollywood, California, USA'),
('0001351','<NAME>','1921-12-20','Minneapolis, Minnesotaa, USA'),
('0001357','<NAME>','1939-10-08','Lightning Ridge, New South Wales, Australia'),
('0001358','<NAME>','1925-02-17','Cleveland, Ohio, USA'),
('0001359','<NAME>','1905-01-04','Cedartown, Georgia, USA'),
('0001364','<NAME>','1942-10-26','Bury St. Edmunds, Suffolk, England, UK'),
('0001366','<NAME>','1893-04-03','London, England, UK'),
('0001369','<NAME>','1925-11-17','Winnetka, Illinois, USA'),
('0001371','<NAME>','1953-12-06','Whitewater, Wisconsin, USA'),
('0001372','<NAME>','1964-09-22','Chicago, Illinois, USA'),
('0001373','<NAME>','1945-04-02','Morristown, New Jersey, USA'),
('0001375','<NAME>','1922-11-12','Detroit, Michigan, USA'),
('0001378','<NAME>','1951-07-08','Santa Monica, California, USA'),
('0001379','<NAME>','1906-08-05','Missouri, USA'),
('0001392','<NAME>','1961-10-31','Pukerua Bay, North Island, New Zealand'),
('0001395','<NAME>','1926-10-10','Long Beach, Long Island, New York, USA'),
('0001401','<NAME>','1975-06-04','Los Angeles, California, USA'),
('0001404','<NAME>','1942-09-29','Boston, Massachusetts, USA'),
('0001406','<NAME>','1952-06-18','Cleveland, Ohio, USA'),
('0001410','<NAME>','1949-01-14','Miami, Florida, USA'),
('0001415','<NAME>','1909-09-07','Constantinople, Ottoman Empire'),
('0001418','<NAME>','1954-05-08','Knoxville, Tennessee, USA'),
('0001421','<NAME>','1925-02-18','New York, New York, USA'),
('0001426','<NAME>','1943-12-31','Scarborough, Yorkshire, England, UK'),
('0001427','<NAME>','1963-06-17','Logansport, Indiana, USA'),
('0001445','<NAME>','1931-06-20','Brooklyn, New York, USA'),
('0001447','<NAME>','1956-02-03','Jersey City, New Jersey, USA'),
('0001448','<NAME>','1949-04-20','Cloquet, Minnesota, USA'),
('0001450','<NAME>','1925-10-16','London, England, UK'),
('0001451','<NAME>','1970-03-18','Newark, New Jersey, USA'),
('0001452','<NAME>','1899-07-01','Victoria Hotel, Scarborough, Yorkshire, England, UK'),
('0001453','<NAME>','1932-01-22','Detroit, Michigan, USA'),
('0001454','<NAME>','1965-04-16','Frankfurt-am-Main, Hessen, Germany'),
('0001458','<NAME>','1926-04-30','Des Moines, Iowa, USA'),
('0001459','<NAME>','1957-08-18','Worcester, Massachusetts, USA'),
('0001460','<NAME>','1957-01-01',NULL),
('0001469','<NAME>','1942-04-06','Baltimore, Maryland, USA'),
('0001475','<NAME>','1945-10-19','Rochester, New York, USA'),
('0001485','<NAME>','1905-08-02','Radersburg, Montana, USA'),
('0001486','<NAME>','1924-06-25','Philadelphia, Pennsylvania, USA'),
('0001490','<NAME>','1941-03-04','Peterborough, Cambridgeshire, England, UK'),
('0001492','<NAME>','1959-02-22','Yakima, Washington, USA'),
('0001493','<NAME>','1954-04-10','Dallas, Texas, USA'),
('0001494','<NAME>','1961-11-04','Huntington, Long Island, New York, USA'),
('0001496','<NAME>','1950-09-11','Chicago, Illinois, USA'),
('0001497','<NAME>','1975-06-27','Santa Monica, California, USA'),
('0001500','<NAME>','1912-03-22','Gary, Indiana, USA'),
('0001509','<NAME>','1917-06-07','Steubenville, Ohio, USA'),
('0001511','<NAME>','1924-02-19','New York, New York, USA'),
('0001512','<NAME>','1958-11-17','Lombard, Illinois, USA'),
('0001513','<NAME>','1947-12-31','Glendale, California, USA'),
('0001519','<NAME>','1944-08-11','Carnoustie, Tayside, Scotland, UK'),
('0001521','<NAME>','1952-04-28','Wilkes-Barre, Pennsylvania, USA'),
('0001522','<NAME>','1928-09-17','<NAME>, London, England, UK'),
('0001525','<NAME>','1959-08-03','New York, New York, USA'),
('0001537','<NAME>','1907-01-03','Neath, Vale of Glamorgan, Wales, UK'),
('0001545','<NAME>','1935-04-19','Dagenham, Essex, England, UK'),
('0001546','<NAME>','1936-12-29','Brooklyn, New York, USA'),
('0001547','<NAME>','1900-12-06','Clinton, Massachusetts, USA'),
('0001548','<NAME>','1954-04-18','Toronto, Ontario, Canada'),
('0001549','<NAME>','1931-12-11','Humacao, Puerto Rico'),
('0001550','<NAME>','1960-11-29','The Bronx, New York, USA'),
('0001556','<NAME>','1953-10-11','Hamilton, Massachusetts, USA'),
('0001557','<NAME>','1958-10-20','Manhattan, New York, USA'),
('0001562','<NAME>','1957-02-06','San Diego, California, USA'),
('0001565','<NAME>','1942-03-28','St. Albans, Hertfordshire, England, UK'),
('0001566','<NAME>','1931-11-06','Berlin, Germany'),
('0001567','<NAME>','1965-07-03','Elling, Frederikshavn, Denmark'),
('0001573','<NAME>','1954-03-04','Toronto, Ontario, Canada'),
('0001575','<NAME>','1963-11-05','Los Angeles, California, USA'),
('0001583','<NAME>','1935-10-20','New York, New York, USA'),
('0001584','<NAME>','1967-12-16','Brisbane, Queensland, Australia'),
('0001587','<NAME>','1928-04-07','The Bronx, New York, New York, USA'),
('0001588','<NAME>','1919-02-18','Lattimer Mines, Pennsylvania, USA'),
('0001589','<NAME>','1943-05-05','Ranmoor, Sheffield, Yorkshire, England, UK'),
('0001592','<NAME>','1951-09-12','Hoboken, New Jersey, USA'),
('0001593','<NAME>','1982-07-24','Winnipeg, Manitoba, Canada'),
('0001598','<NAME>','1958-11-05','Marietta, Georgia, USA'),
('0001599','<NAME>','1954-06-14','Charleston, South Carolina, USA'),
('0001602','<NAME>','1967-10-05','Ely, Cambridgeshire, England, UK'),
('0001610','<NAME>','1960-11-18','Queens, New York, USA'),
('0001618','<NAME>','1974-10-28','San Juan, Puerto Rico'),
('0001623','<NAME>','1965-01-08','Elmira, New York, USA'),
('0001624','<NAME>','1960-01-12','Windsor, Ontario, Canada'),
('0001626','<NAME>','1927-12-13','Toronto, Ontario, Canada'),
('0001627','<NAME>','1927-02-20','Miami, Florida, USA'),
('0001628','<NAME>','1934-07-01','Lafayette, Indiana, USA'),
('0001629','<NAME>','1957-10-30','San Francisco, California, USA'),
('0001632','<NAME>','1969-06-01','Dover, Delaware, USA'),
('0001635','<NAME>','1892-07-29','Pittsburgh, Pennsylvania, USA'),
('0001637','<NAME>','1911-05-27','St. Louis, Missouri, USA'),
('0001638','<NAME>','1941-06-10','Berlin, Germany'),
('0001639','<NAME>','1963-09-23','Egypt'),
('0001642','<NAME>','1950-10-01','Houston, Texas, USA'),
('0001647','<NAME>','1889-11-10','London, England, UK'),
('0001656','<NAME>','1921-01-27','Denison, Iowa, USA'),
('0001657','<NAME>','1938-02-13','Wimbledon, London, England, UK'),
('0001659','<NAME>','1952-09-25','New York, New York, USA'),
('0001661','<NAME>','1947-03-06','The Bronx, New York, USA'),
('0001662','<NAME>','1957-05-21','Wilmington, Delaware, USA'),
('0001664','<NAME>','1953-12-31','Boston, Massachusetts, USA'),
('0001669','<NAME>','1958-03-03','Southport, Lancashire, England, UK'),
('0001673','<NAME>','1922-07-26','Chicago, Illinois, USA'),
('0001674','<NAME>','1966-02-07','Georgetown, South Carolina, USA'),
('0001677','<NAME>','1911-07-16','Independence, Missouri, USA'),
('0001682','<NAME>','1920-09-23','Brooklyn, New York, USA'),
('0001684','<NAME>','1940-01-29','Hollywood, California, USA'),
('0001689','<NAME>','1948-02-28','Queens, New York, USA'),
('0001691','<NAME>','1951-07-06','Toowoomba, Queensland, Australia'),
('0001692','<NAME>','1927-07-03','Southampton, Hampshire, England, UK'),
('0001693','<NAME>','1924-07-04','Newark, New Jersey, USA'),
('0001695','<NAME>','1906-07-03','St. Petersburg, Russia'),
('0001696','<NAME>','1958-01-04','Otley, Yorkshire, England, UK'),
('0001698','<NAME>','1949-08-25','Old Bethpage, Long Island, New York, USA'),
('0001702','<NAME>','1932-11-10','Orange, New Jersey, USA'),
('0001703','<NAME>','1930-12-08','Vienna, Austria'),
('0001707','<NAME>','1946-07-22','Grand Rapids, Michigan, USA'),
('0001708','<NAME>','1939-08-29','New York, New York, USA'),
('0001710','<NAME>','1966-11-02','Astoria, New York, USA'),
('0001711','<NAME>','1964-03-24','Wethersfield, Connecticut, USA'),
('0001715','<NAME>','1927-10-18','Wise, Virginia, USA'),
('0001716','<NAME>','1944-07-21','Stockton-on-Tees, England, UK'),
('0001719','<NAME>','1934-02-13','Great Neck, Long Island, New York, USA'),
('0001721','<NAME>','1974-11-18','Springfield, Massachusetts, USA'),
('0001723','<NAME>','1960-01-01',NULL),
('0001725','<NAME>','1932-04-10','Alexandria, Egypt'),
('0001726','<NAME>','1951-02-24','St. Thomas, Ontario, Canada'),
('0001727','<NAME>','1927-08-09','Westhoughton, Lancashire, England, UK'),
('0001728','<NAME>','1943-11-12','New York, New York, USA'),
('0001732','<NAME>','1950-02-18','Memphis, Tennessee, USA'),
('0001735','<NAME>','1946-04-25','Lake Success, Long Island, New York, USA'),
('0001739','<NAME>','1929-01-31','Crouch Hill, London, England, UK'),
('0001741','<NAME>','1965-09-17','New York, New York, USA'),
('0001744','<NAME>','1961-09-29','Detroit, Michigan, USA'),
('0001745','<NAME>','1951-06-13','Goteborg, Bohuslan, Sweden'),
('0001747','<NAME>','1953-10-30','Van Nuys, California, USA'),
('0001749','<NAME>','1934-12-28','Ilford, Essex, England, UK'),
('0001752','<NAME>','1963-01-14','Atlanta, Georgia, USA'),
('0001756','<NAME>','1953-04-01','New York, New York, USA'),
('0001758','<NAME>','1957-02-27','Battersea, London, England, UK'),
('0001763','<NAME>','1979-12-05','Harlingen, Texas, USA'),
('0001768','<NAME>','1925-04-14','Westhampton, New York, USA'),
('0001772','<NAME>','1940-07-13','Mirfield, Yorkshire, England, UK'),
('0001773','<NAME>','1942-10-31','Peoria, Illinois, USA'),
('0001774','<NAME>','1965-11-30','New York, New York, USA'),
('0001780','<NAME>','1953-08-27','Arbra, Halsingland, Sweden'),
('0001787','<NAME>','1944-07-08','San Francisco, California, USA'),
('0001788','<NAME>','1909-06-07','London, England, UK'),
('0001791','<NAME>','1911-08-05','Filley, Nebraska, USA'),
('0001792','<NAME>','1930-01-11','Sydney, New South Wales, Australia'),
('0001794','<NAME>','1971-09-09','San Antonio, Texas, USA'),
('0001795','<NAME>','1981-09-08','Bethlehem, Pennsylvania, USA'),
('0001800','<NAME>','1931-02-06','Temple, Texas, USA'),
('0001802','<NAME>','1961-09-21','New York, New York, USA'),
('0001805','<NAME>','1921-02-08','Wallace, Idaho, USA'),
('0001806','<NAME>','1957-02-28','Brooklyn, New York, USA'),
('0001811','<NAME>','1921-04-16','London, England, UK'),
('0001813','<NAME>','1925-12-13','West Plains, Missouri, USA'),
('0001814','<NAME>','1952-07-24','Louisville, Kentucky, USA'),
('0001815','<NAME>','1949-06-15','Lexington, Kentucky, USA'),
('0001820','<NAME>','1921-02-24','New York, New York, USA'),
('0001822','<NAME>','1930-02-10','Detroit, Michigan, USA'),
('0001826','<NAME>','1935-03-22','Ogdensburg, New York, USA'),
('0001827','<NAME>','1914-12-02','New Orleans, Louisiana, USA'),
('0001832','<NAME>','1940-11-15','Cambridge, Massachusetts, USA'),
('0001835','<NAME>','1948-01-14','New Orleans, Louisiana, USA'),
('0001836','<NAME>','1961-03-04','Queens, New York, USA'),
('0001837','<NAME>','1944-08-21','Sydney, New South Wales, Australia'),
('0001838','<NAME>','1971-03-07','London, England, UK'),
('0001845','<NAME>','1961-07-15','Longview, Texas, USA'),
('0001847','<NAME>','1914-12-26','Sunrise, Minnesota, USA'),
('0001848','<NAME>','1948-03-28','Kansas City, Missouri, USA'),
('0001850','<NAME>','1937-04-06','New York, New York, USA'),
('0001854','<NAME>','1958-10-26','Los Angeles, California, USA'),
('0001855','<NAME>','1959-04-15','Philadelphia, Pennsylvania, USA'),
('0001857','<NAME>','1945-10-30','New York, New York, USA'),
('0001859','<NAME>','1922-08-18','East Saint Louis, Illinois, USA'),
('0001868','<NAME>','1942-03-27','Fulmer, Buckinghamshire, England, UK'),
('0001876','<NAME>','1969-09-25','Swansea, West Glamorgan, Wales, UK'),
('0001880','<NAME>','1952-10-08','Chicago, Illinois, USA'),
('0001884','<NAME>','1929-04-10','Lund, Skane, Sweden'),
('0001902','<NAME>','1951-02-20','Los Angeles, California, USA'),
('0001915','<NAME>','1943-05-09','Maspeth, New York, USA'),
('0001919','<NAME>','1907-12-22','Croydon, Surrey, England, UK'),
('0001924','<NAME>','1938-03-25','Duncan, Oklahoma, USA'),
('0001948','<NAME>','1891-01-01','Cambridge, Massachusetts, USA'),
('0001954','<NAME>','1931-02-15','London, England, UK'),
('0001955','<NAME>','1928-08-16','Mount Kisco, New York, USA'),
('0001958','<NAME>','1921-03-28','Hampstead, London, England, UK'),
('0001966','<NAME>','1905-07-29','Brooklyn, New York, USA'),
('0001967','<NAME>','1935-10-18','Philadelphia, Pennsylvania, USA'),
('0001970','<NAME>','1943-06-22','Alt Aussee, Austria'),
('0001982','<NAME>','1918-07-06','London, England, UK'),
('0001989','<NAME>','1931-07-01','Boulogne-Billancourt, Paris, France'),
('0001993','<NAME>','1966-11-23','Paris, France'),
('0001995','<NAME>','1934-09-16','Norwood, Ohio, USA'),
('0002001','<NAME>','1888-09-12','Paris, France'),
('0002011','<NAME>','1911-12-08','New York, New York, USA'),
('0002013','<NAME>','1877-06-17','Savannah, Georgia, USA'),
('0002022','<NAME>','1925-05-25','Barstow, California, USA'),
('0002024','<NAME>','1911-12-09','Philadelphia, Pennsylvania, USA'),
('0002025','<NAME>','1911-07-18','London, Ontario, Canada'),
('0002027','<NAME>','1947-12-16','London, England, UK'),
('0002030','<NAME>','1899-07-07','New York, New York, USA'),
('0002031','<NAME>','1886-12-24','Budapest, Austria-Hungary (now Hungary)'),
('0002034','<NAME>','1879-10-15','Palmyra, Missouri, USA'),
('0002048','<NAME>','1901-04-05','Macon, Georgia, USA'),
('0002050','<NAME>','1898-12-20','Louisville, Kentucky, USA'),
('0002060','<NAME>','1957-05-05','Dharan, Saudi Arabia'),
('0002068','<NAME>','1913-09-19','Seattle, Washington, USA'),
('0002070','<NAME>','1920-09-01','Los Angeles, California, USA'),
('0002071','<NAME>','1967-07-16','Irvine, California, USA'),
('0002075','<NAME>','1916-09-28','London, England, UK'),
('0002080','<NAME>','1927-06-23','Chicago, Illinois, USA'),
('0002081','<NAME>','1937-04-13','Chelsea, London, England, UK'),
('0002084','<NAME>','1945-02-17','Dublin, Ireland'),
('0002090','<NAME>','1964-02-14','New York, New York, USA'),
('0002092','<NAME>','1913-03-04','New York, New York, USA'),
('0002093','<NAME>','1904-09-29','London, England, UK'),
('0002103','<NAME>','1935-03-27','London, England, UK'),
('0002106','<NAME>','1896-10-30','Quincy, Massachusetts, USA'),
('0002108','<NAME>','1923-11-28','Los Angeles, California, USA'),
('0002110','<NAME>','1959-03-09','Pine Ridge Reservation, South Dakota, USA'),
('0002119','Arsenio Hall','1955-02-12','Cleveland, Ohio, USA'),
('0002120','<NAME>','1946-06-02','Stockholm, Sweden'),
('0002128','<NAME>','1950-08-15','Mammoth Spring, Arkansas, USA'),
('0002131','<NAME>','1928-10-01','Jonischkis, Lithuania'),
('0002132','<NAME>','1954-05-07','The Bronx, New York, New York, USA'),
('0002134','<NAME>','1908-01-10','Trieste, Austria-Hungary. [now in Italy]'),
('0002139','<NAME>','1935-03-15','The Bronx, New York, USA'),
('0002141','<NAME>','1919-04-29','New York, New York, USA'),
('0002144','<NAME>','1902-09-22','Bucharest, Romania'),
('0002145','<NAME>','1913-09-29','Cliftonville, Kent, England, UK'),
('0002148','<NAME>','1948-09-26','Marshalltown, Iowa, USA'),
('0002149','<NAME>','1921-02-26','Battle Creek, Michigan, USA'),
('0002190','<NAME>','1902-11-09','London, England, UK'),
('0002199','<NAME>','1946-02-07','Mar del Plata, Buenos Aires, Argentina'),
('0002245','<NAME>',NULL,NULL),
('0002338','<NAME>','1921-03-01','Brighton, East Sussex, England, UK'),
('0002436','<NAME>','1973-09-07','Houston, Texas, USA'),
('0002536','<NAME>','1986-09-12','New York, New York, USA'),
('0002546','<NAME>','1979-02-09','Newport, Rhode Island, USA'),
('0003225','<NAME>','1901-03-25','Hartford, Connecticut, USA'),
('0003244','<NAME>','1968-07-01','L''Hospitalet del Llobregat, Barcelona, Cataluna, Spain'),
('0003318','<NAME>','1913-11-24','Bremerton, Washington, USA'),
('0003418','<NAME>','1949-03-12','Cornwall, New York, USA'),
('0003506','<NAME>','1964-01-01','New York, New York, USA'),
('0003593','<NAME>','1907-04-29','Vienna, Austria-Hungary (now Austria)'),
('0003817','<NAME>','1957-12-10','Chicago, Illinois, USA'),
('0004051','<NAME>','1946-06-01','Dundee, Scotland, UK'),
('0004282','<NAME>','1930-09-16','Ossining, New York, USA'),
('0004309','<NAME>','1936-07-05','Goessel, Kansas, USA'),
('0004376','<NAME>','1974-07-22','Dulmen, Germany'),
('0004517','<NAME>','1959-09-23','Newark, New Jersey, USA'),
('0004647','<NAME>','1931-05-28','Johnstown, Pennsylvania, USA'),
('0004695','<NAME>','1981-04-28','Pomona, California, USA'),
('0004710','<NAME>','1969-01-17','London, England, UK'),
('0004724','<NAME>','1952-05-02','Buffalo, New York, USA'),
('0004738','<NAME>','1968-08-14','London, England, UK'),
('0004747','<NAME>','1978-09-04','Jonesboro, Arkansas, USA'),
('0004755','<NAME>','1978-05-12','Hasbrouck Heights, New Jersey, USA'),
('0004778','<NAME>','1973-04-14','New York, New York, USA'),
('0004794','<NAME>','1936-04-22','Delight, Arkansas, USA'),
('0004802','<NAME>','1975-06-25','Redwood City, California, USA'),
('0004821','<NAME>','1963-08-30','Lowell, Massachusetts, USA'),
('0004874','<NAME>','1967-07-18','New York, New York, USA'),
('0004912','<NAME>','1970-11-23','Tel Aviv, Israel'),
('0004929','<NAME>','1963-01-04','Toronto, Ontario, Canada'),
('0004937','<NAME>','1967-12-13','Terrell, Texas, USA'),
('0004951','<NAME>','1960-04-14','Woodland Hills, California, USA'),
('0004988','<NAME>','1977-11-24','Sacramento, California, USA'),
('0004989','<NAME>','1974-03-24','Washington, District of Columbia, USA'),
('0004996','<NAME>','1965-12-03','Chicago, Illinois, USA'),
('0005017','<NAME>','1978-12-18','Toledo, Ohio, USA'),
('0005069','<NAME>','1969-01-01','Rockville, Maryland, USA'),
('0005093','<NAME>','1971-01-15','Los Angeles, California, USA'),
('0005098','<NAME>','1979-03-14','Hinsdale, Illinois, USA'),
('0005124','<NAME>','1957-01-12','Hollywood, California, USA'),
('0005132','<NAME>','1979-04-04','Perth, Western Australia, Australia'),
('0005134','<NAME>','1970-04-25','Orange, California, USA'),
('0005148','<NAME>','1952-11-18','Eltham, London, England, UK'),
('0005151','<NAME>','1990-10-22','Westlake Village, California, USA'),
('0005156','<NAME>','1986-05-19','Glendale, California, USA'),
('0005157','<NAME>','1989-03-05','Fort Collins, Colorado, USA'),
('0005162','<NAME>','1930-01-03','New York, New York, USA'),
('0005188','<NAME>','1973-09-18','Stillwater, Oklahoma, USA'),
('0005190','<NAME>','1934-11-13','New York, New York, USA'),
('0005196','<NAME>','1930-04-25','Brooklyn, New York, USA'),
('0005212','<NAME>','1939-05-25','Burnley, Lancashire, England, UK'),
('0005222','<NAME>','1965-08-01','Reading, Berkshire, England, UK'),
('0005231','<NAME>','1974-05-24','New York, New York, USA'),
('0005237','<NAME>','1954-01-06','Ryde, Isle of Wight, England, UK'),
('0005251','<NAME>','1967-08-21','Vancouver, British Columbia, Canada'),
('0005253','<NAME>','1983-01-01',NULL),
('0005256','<NAME>','1970-09-21','Binghamton, New York, USA'),
('0005261','<NAME>','1977-11-10','Atlanta, Georgia, USA'),
('0005266','<NAME>','1946-04-04','Spokane, Washington, USA'),
('0005272','<NAME>','1980-07-10','Las Vegas, Nevada, USA'),
('0005273','<NAME>','1972-06-28','Boston, Massachusetts, USA'),
('0005278','<NAME>','1974-02-17','New York, New York, USA'),
('0005280','<NAME>','1962-03-21','Commack, Long Island, New York, USA'),
('0005286','<NAME>','1988-04-10','Los Angeles, California, USA'),
('0005303','<NAME>','1967-09-08','Harrisburg, Pennsylvania, USA'),
('0005305','<NAME>','1977-10-31','Toms River, New Jersey, USA'),
('0005316','<NAME>','1947-09-23','Tulsa, Oklahoma, USA'),
('0005321','<NAME>','1971-06-30','Cleveland, Ohio, USA'),
('0005327','<NAME>.','1976-03-08','Los Angeles, California, USA'),
('0005331','<NAME>','1962-03-22','Rome, Italy'),
('0005366','<NAME>',NULL,'Albuquerque, New Mexico, USA'),
('0005380','<NAME>','1957-12-21','Queens, New York, USA'),
('0005398','<NAME>','1976-07-11','Los Angeles, California, USA'),
('0005436','<NAME>','1968-01-06','Los Angeles, California, USA'),
('0005443','<NAME>','1959-09-13','Seattle, Washington, USA'),
('0005460','<NAME>','1953-02-08','Newport, Arkansas, USA'),
('0005466','<NAME>','1981-03-28','New York, New York, USA'),
('0005476','<NAME>','1974-07-30','Lincoln, Nebraska, USA'),
('0005491','<NAME>','1965-02-03','Boston, Massachusetts, USA'),
('0005517','Gabrielle Union','1973-10-29','Omaha, Nebraska, USA'),
('0005520','<NAME>','1974-02-09','Phoenix, Arizona, USA'),
('0005540','<NAME>','1958-06-08','New York, New York, USA'),
('0005562','<NAME>','1968-11-18','Dallas, Texas, USA'),
('0005569','<NAME>','1952-11-08','Tulsa, Oklahoma, USA'),
('0006452','<NAME>','1913-09-29','Brooklyn, New York, New York, USA'),
('0006487','<NAME>','1949-02-06','Dublin, Ireland'),
('0006625','<NAME>','1956-05-04','Dublin, Ireland'),
('0006800','<NAME>','1937-04-27','Hastings, Nebraska, USA'),
('0006889','<NAME>','1927-05-13','Brooklyn, New York, New York, USA'),
('0006890','<NAME>','1922-01-21','Hurstpierpoint, West Sussex, England, UK'),
('0006893','<NAME>','1932-02-24','Montreal, Quebec, Canada'),
('0006960','<NAME>','1949-04-08','Portsmouth, Hampshire, England, UK'),
('0007217','<NAME>','1910-10-27','Carman, Manitoba, Canada'),
('0007222','<NAME>','1907-04-11','Philadelphia, Pennsylvania, USA'),
('0007223','<NAME>','1905-11-02','New York, New York, USA'),
('0009190','<NAME>','1966-06-27','New York, New York, USA'),
('0011741','<NAME>','1913-08-04','Omaha, Nebraska, USA'),
('0014883','<NAME>','1945-09-12','Dublin, Ireland'),
('0016776','<NAME>','1907-06-16','Malden, Massachusetts, USA'),
('0019221','<NAME>','1948-09-11','Gadsden, Alabama, USA'),
('0019569','<NAME>','1941-12-03','Indianola, Mississippi, USA'),
('0021249','<NAME>',NULL,NULL),
('0025309','<NAME>','1939-12-27','Newark, New Jersey, USA'),
('0026286','<NAME> Jr.',NULL,NULL),
('0027156','<NAME>','1920-04-03','Birmingham, Alabama, USA'),
('0027183','<NAME>','1920-01-30','London, England, UK'),
('0028625','<NAME>','1952-01-01','Baton Rouge, Louisiana, USA'),
('0029456','<NAME>','1909-02-09','Oxford, Oxfordshire, England, UK'),
('0030991','<NAME>',NULL,NULL),
('0031398','<NAME>','1934-01-23','Oklahoma City, Oklahoma, USA'),
('0031655','<NAME>','1970-01-01','Cairns, Queensland, Australia'),
('0032370','<NAME>',NULL,NULL),
('0033758','<NAME>',NULL,NULL),
('0035159','<NAME>','1898-09-01','Charlottesville, Virginia, USA'),
('0036427','<NAME>','1890-02-18','New York, New York, USA'),
('0037410','<NAME>','1969-07-16','Colombia'),
('0039226','<NAME>','1948-02-22','Springfield, Massachusetts, USA'),
('0040012','<NAME>','1996-11-27','California, USA'),
('0040058','<NAME>',NULL,NULL),
('0040374','<NAME>','1895-01-20','Grange, Missouri, USA'),
('0040586','<NAME>','1934-06-16','Clapton, London, England, UK'),
('0041165','<NAME>','1878-05-02','Syracuse, New York, USA'),
('0041681','<NAME>','1905-11-17','St. Petersburg, Russia'),
('0045324','<NAME>',NULL,NULL),
('0045968','<NAME>','1906-11-13','Broseley, Shropshire, England, UK'),
('0046420','<NAME>',NULL,NULL),
('0047810','<NAME>','1891-12-07','Los Angeles, California, USA'),
('0048127','<NAME>','1944-01-01','Lauban, Germany'),
('0049079','<NAME>',NULL,NULL),
('0051509','<NAME>','1968-08-09','Melbourne, Victoria, Australia'),
('0051628','<NAME>','1882-09-30','Philadelphia, Pennsylvania, USA'),
('0051856','<NAME>','1946-10-15','Calcutta, West Bengal, India'),
('0054135','<NAME>','1893-01-26','Milwaukee, Wisconsin, USA'),
('0056187','<NAME>','1971-10-13','London, England, UK'),
('0058581','<NAME>','1978-07-21','West Bloomfield, Michigan, USA'),
('0059215','<NAME>','1986-01-24','London, England, UK'),
('0059431','<NAME>','1982-04-09','Ottawa, Ontario, Canada'),
('0061770','<NAME>',NULL,NULL),
('0062642','<NAME>','1923-01-01','Porterville, California, USA'),
('0062828','<NAME>','1889-03-29','Columbus, Ohio, USA'),
('0063571','<NAME>',NULL,NULL),
('0064600','<NAME>','1888-02-10','Abilene, Kansas, USA'),
('0065320','<NAME>','1950-01-01','Old Lyme, Connecticut, USA'),
('0065942','<NAME>','1967-07-22','Anchorage, Alaska, USA'),
('0068206','<NAME>',NULL,NULL),
('0070592','<NAME>',NULL,NULL),
('0070801','<NAME>','1938-09-17','Silver City, New Mexico, USA'),
('0071636','<NAME>','1906-05-19','Tacoma, Washington, USA'),
('0071851','<NAME>',NULL,NULL),
('0072578','<NAME>','1918-08-10','London, England, UK'),
('0074426','<NAME>',NULL,NULL),
('0074596','<NAME>','1909-09-13','Vienna, Austria'),
('0077720','<NAME>','1948-09-04','Los Angeles, California, USA'),
('0079273','<NAME>','1971-05-27','London, England, UK'),
('0082979','<NAME>',NULL,NULL),
('0083348','<NAME>','1957-09-11','Kalispell, Montana, USA'),
('0083781','<NAME>',NULL,NULL),
('0085312','<NAME>','1969-08-28','Hermosa Beach, California, USA'),
('0085782','<NAME>','1895-07-13','Salisbury, North Carolina, USA'),
('0086198','<NAME>','1923-12-11','Cliffside Park, New Jersey, USA'),
('0086322','<NAME>','1949-12-05','Bennington, Vermont, USA'),
('0088520','<NAME>','1916-03-31','New York City, New York, USA'),
('0089217','<NAME>','1977-01-13','Canterbury, Kent, England, UK'),
('0089244','<NAME>','1939-08-07','Lynn, Massachusetts, USA'),
('0089348','<NAME>','1924-01-01','New Haven, Connecticut, USA'),
('0089408','<NAME>','1957-07-01','Fayetteville, Arkansas, USA'),
('0094036','<NAME>','1912-10-01','Philadelphia, Pennsylvania, USA'),
('0094135','<NAME>','1888-05-03','Chicago, Illinois, USA'),
('0095017','<NAME>','1963-11-10','England, UK'),
('0095804','<NAME>','1898-08-30','New York, New York, USA'),
('0097648','<NAME>','1893-04-23','Salt Lake City, Utah, USA'),
('0097842','<NAME>','1930-09-26','Jersey City, New Jersey, USA'),
('0098378','<NAME>','1983-01-02','Los Angeles, California, USA'),
('0100758','<NAME>','1915-12-27','Coldwater, Mississippi, USA'),
('0100942','<NAME>',NULL,NULL),
('0101955','<NAME>','1895-06-05','Hendrysburg, Ohio, USA'),
('0101992','<NAME>',NULL,NULL),
('0102566','<NAME>','1929-10-28','Rennes, France'),
('0103071','<NAME>','1937-11-10','Tyler, Texas, USA'),
('0103537','<NAME>','1948-09-02','Shreveport, Louisiana, USA'),
('0103567','<NAME>','1892-11-02','New York, New York, USA'),
('0103785','<NAME>','1975-04-06','South Orange, New Jersey, USA'),
('0104051','<NAME>',NULL,NULL),
('0105169','<NAME>',NULL,NULL),
('0105462','<NAME>','1923-02-07','Elyria, Ohio, USA'),
('0107151','<NAME>','1890-03-25','Philadelphia, Pennsylvania, USA'),
('0107574','<NAME>','1899-10-20','Tampa, Florida, USA'),
('0107575','<NAME>','1904-03-15','Shannonsbridge, County Dublin, Ireland'),
('0108287','<NAME>','1980-04-26','Panama City, Panama'),
('0108511','<NAME>','1891-10-29','New York, New York, USA'),
('0108745','<NAME>','1936-02-03','Paris, Arkansas, USA'),
('0109773','<NAME>',NULL,NULL),
('0110480','<NAME>','1903-01-16','Reading, Pennsylvania, USA'),
('0111013','<NAME>','1979-12-15','San Diego, California, USA'),
('0111376','<NAME>','1934-03-14','Stanmore, Middlesex, England, UK'),
('0111612','<NAME>','1887-06-01','London, England, UK'),
('0111948','<NAME>','1947-01-09','Los Angeles, California, USA'),
('0112218','<NAME>','1912-05-18','Philadelphia, Pennsylvania, USA'),
('0112395','<NAME>','1895-02-27','New York, New York, USA'),
('0113284','<NAME>','1890-05-10','Clinton, Massachusetts, USA'),
('0113505','<NAME>',NULL,NULL),
('0113769','<NAME>','1920-03-22','Desdemona, Texas, USA'),
('0113867','<NAME>','1884-02-11','New York, New York, USA'),
('0113902','<NAME>','1904-09-01','Dothan, Alabama, USA'),
('0114386','<NAME>','1917-07-08','London, England, UK'),
('0114787','<NAME>','1972-12-27','Lusk, Wyoming, USA'),
('0114847','<NAME>','1928-03-24','Vienna, Austria'),
('0115558','<NAME>','1895-02-14','Ensenada, Mexico'),
('0117035','<NAME>',NULL,NULL),
('0118081','<NAME>',NULL,NULL),
('0118333','<NAME>',NULL,NULL),
('0119988','<NAME>','1912-03-21','London, England, UK'),
('0121282','<NAME>','1907-03-04','Los Angeles, California, USA'),
('0122653','<NAME>','1968-01-29','Woodside, Queens County, New York, USA'),
('0122675','<NAME>','1896-01-20','New York, New York, USA'),
('0123680','<NAME>','1923-12-05','New York City, New York, USA'),
('0124100','<NAME>','1935-01-01',NULL),
('0124877','<NAME>','1894-12-17','San Francisco, California, USA'),
('0128050','<NAME>','1922-06-11','Limassol, Cyprus'),
('0129955','<NAME>','1950-03-30','New York City, New York, USA'),
('0130282','<NAME>','1942-01-09','Dallas, Texas, USA'),
('0130286','<NAME>','1935-11-22','Philadelphia, Pennsylvania, USA'),
('0134201','<NAME>','1922-04-24','Salmon, Idaho, USA'),
('0134594','Cantinflas','1911-08-12','Mexico City, Mexico'),
('0136797','<NAME>','1962-08-16','Concord, Massachusetts, USA'),
('0137140','<NAME>','1964-06-07','Sydney, New South Wales, Australia'),
('0138770','<NAME>','1918-11-04','Mount Vernon, New York, USA'),
('0138885','<NAME>','1897-09-05','St. Louis, Missouri, USA'),
('0143295','<NAME>','1967-06-06','Washington, District of Columbia, USA'),
('0143314','<NAME>','1916-05-16','Bridgeport, Connecticut, USA'),
('0144710','<NAME>','1933-09-04','The Bronx, New York, USA'),
('0147503','<NAME>',NULL,NULL),
('0149654','<NAME>',NULL,NULL),
('0151654','<NAME>','1976-10-14','Taipei, Taiwan'),
('0152638','<NAME>','1973-08-24','Washington, District of Columbia, USA'),
('0153182','<NAME>','1949-08-11','Edinburgh, Scotland, UK'),
('0153738','<NAME>','1990-07-24','Los Angeles, California, USA'),
('0154226','<NAME>','1982-10-31','Nanaimo, British Columbia, Canada'),
('0154530','<NAME>',NULL,NULL),
('0154804','<NAME>','1916-10-21','Florence, Tuscany, Italy'),
('0156187','<NAME>','1967-03-03','Burbank, California, USA'),
('0159789','<NAME>','1981-04-19','Vancouver, British Columbia, Canada'),
('0160130','<NAME>','1892-01-19','Vienna, Austria'),
('0161862','<NAME>','1889-08-30','Ischia, Italy'),
('0162541','<NAME>','1935-10-31','New York, New York, USA'),
('0162557','<NAME>','1901-05-19',NULL),
('0162904','<NAME>',NULL,NULL),
('0163404','<NAME>','1914-09-11','Fresno, California, USA'),
('0166256','<NAME>','1953-04-25','Sioux City, Iowa, USA'),
('0168641','<NAME>','1914-12-23','Alligator, Mississippi, USA'),
('0170225','<NAME>','1924-01-19','Providence, Rhode Island, USA'),
('0170550','<NAME>','1956-09-20','Park Ridge, Illinois, USA'),
('0170713','Nat ''<NAME>','1919-03-17','Montgomery, Alabama, USA'),
('0171513','<NAME>','1957-05-26','Brooklyn, New York, USA'),
('0171873','<NAME> Jr.','1902-02-12','New York, New York, USA'),
('0172287','<NAME>','1883-01-30','Atlantic City, New Jersey, USA'),
('0172615','<NAME>','1889-12-10','Sacramento, California, USA'),
('0172903','<NAME>','1891-02-09','Richmond, Surrey, England, UK'),
('0173418','<NAME>','1892-09-11','Jacksonville, Oregon, USA'),
('0173714','<NAME>','1893-07-25','Shreveport, Louisiana, USA'),
('0175369','<NAME>','1887-04-08','Cincinnati, Ohio, USA'),
('0176073','<NAME>','1927-05-22','Reading, Pennsylvania, USA'),
('0176867','<NAME>','1924-12-13','Glendale, California, USA'),
('0177879','<NAME>','1930-09-30','Hartford, Connecticut, USA'),
('0177933','<NAME>','1951-07-09','Kansas City, Missouri, USA'),
('0178066','<NAME>','1888-12-18','Lewisham, London, England, UK'),
('0178114','<NAME>','1922-09-15','Los Angeles, California, USA'),
('0178176','<NAME>','1988-11-17',NULL),
('0178997','<NAME>','1966-02-03','New York, USA'),
('0179173','<NAME>','1961-05-09','Wheeling, West Virginia, USA'),
('0179960','<NAME>',NULL,NULL),
('0181305','<NAME>','1925-01-01','Milan, Lombardy, Italy'),
('0181902','<NAME>','1941-01-04','Tuscany, Italy'),
('0181920','<NAME>','1948-01-01','Scotland, UK'),
('0181960','<NAME>','1876-09-24','Cheltenham, Gloucestershire, England, UK'),
('0183464','<NAME>',NULL,NULL),
('0184429','<NAME>','1928-11-20','Cleveland, Ohio, USA'),
('0185819','<NAME>','1968-01-01','Chester, England, UK'),
('0185883','<NAME>','1912-02-04','Nashville, Tennessee, USA'),
('0187724','<NAME>','1956-05-09','Hamilton, Ontario, Canada'),
('0187769','<NAME>','1910-08-06','Wallasey, Cheshire, England, UK'),
('0187886','<NAME>','1930-09-15','New York, New York, USA'),
('0187981','<NAME>','1880-07-27','Bow, London, England, UK'),
('0188520','<NAME>',NULL,NULL),
('0190744','<NAME>','1966-06-30','New Zealand'),
('0190859','<NAME>','1961-11-28','Mexico City, Distrito Federal, Mexico'),
('0191412','<NAME>','1989-07-21','New York City, New York, USA'),
('0191745','<NAME>','1900-08-21','London, England, UK'),
('0191899','<NAME>','1888-10-09','New York, New York, USA'),
('0191944','<NAME>','1967-08-13','Los Angeles, California, USA'),
('0192258','<NAME>','1888-08-02','St. Louis, Missouri, USA'),
('0192801','<NAME>',NULL,'London, England, UK'),
('0192958','<NAME>','1878-01-20','Edinburgh, Scotland, UK'),
('0194742','<NAME>','1908-05-08','Merida, Yucatan, Mexico'),
('0195422','<NAME>','1908-08-10','Cairo, Egypt'),
('0196247','<NAME>','1909-05-04','Cleveland, Ohio, USA'),
('0197636','<NAME>','1961-05-02','Dorset, England, UK'),
('0200017','<NAME>',NULL,NULL),
('0200122','<NAME>','1927-03-31','Brooklyn, New York, USA'),
('0200981','<NAME>','1948-07-08','Los Angeles, California, USA'),
('0201227','<NAME>','1876-03-18','New Orleans, Louisiana, USA'),
('0201509','<NAME>',NULL,NULL),
('0202088','<NAME>','1911-12-18','Middletown, Connecticut, USA'),
('0202501','<NAME>','1935-11-05','New York, New York, USA'),
('0202589','<NAME>','1917-01-01','Moline, Illinois, USA'),
('0202603','<NAME>','1973-03-01','Suffolk, England, UK'),
('0206257','<NAME>','1979-05-09','New York, New York, USA'),
('0208772','<NAME>',NULL,NULL),
('0209340','<NAME>','1955-01-01','New York, New York, USA'),
('0214430','<NAME>','1958-03-06','Cumberland, Maryland, USA'),
('0215015','<NAME>','1975-01-06','Oklahoma, USA'),
('0217935','<NAME>','1935-08-04','Hackensack, New Jersey, USA'),
('0222596','<NAME>','1905-10-07','Flagstaff, Arizona, USA'),
('0225767','<NAME>',NULL,NULL),
('0226189','<NAME>','1893-07-15','Ludwigshafen am Rhein, Rhineland-Palatinate, Germany'),
('0226820','<NAME>',NULL,'London, England, UK'),
('0226858','<NAME>','1903-03-17','New York, New York, USA'),
('0226887','<NAME>','1917-07-17','Lima, Ohio, USA'),
('0227039','<NAME>','1939-10-13','Hope, Arkansas, USA'),
('0227226','<NAME>',NULL,NULL),
('0227540','<NAME>',NULL,'Columbus, Ohio, USA'),
('0228715','<NAME>','1893-07-18','St. Paul, Minnesota, USA'),
('0228853','<NAME>','1931-04-06','New York, New York, USA'),
('0229694','<NAME>','1969-01-01',NULL),
('0231946','<NAME>','1974-12-22','Upper Darby, Pennsylvania, USA'),
('0232019','<NAME>','1917-05-18','Aberdeen, Aberdeenshire, Scotland, UK'),
('0232196','<NAME>','1905-03-18','Withington, Manchester, England, UK'),
('0233145','<NAME>','1966-01-01','Dublin, Ireland'),
('0233562','<NAME>','1993-02-07','Los Angeles, California, USA'),
('0234541','<NAME>','1923-05-26','Guernsey, Channel Islands, UK'),
('0235627','<NAME>','1928-03-18','Columbia, Mississippi, USA'),
('0235835','<NAME>','1923-05-15','Detroit, Michigan, USA'),
('0236866','<NAME>','1917-10-02','New York, New York, USA'),
('0237597','<NAME>','1868-11-09','Cobourg, Ontario, Canada'),
('0238105','<NAME>','1938-11-21','Chicago, Illinois, USA'),
('0238445','<NAME>','1922-01-31','Logan, West Virginia, USA'),
('0240381','<NAME>','1987-09-28','Houston, Texas, USA'),
('0240797','<NAME>','1946-09-05','Wheaton, Illinois, USA'),
('0241523','<NAME>','1889-10-13','Hamilton, Ontario, Canada'),
('0242041','<NAME>','1895-08-13','Luttrellville, Virginia, USA'),
('0242656','<NAME>','1956-02-26','Chicago, Illinois, USA'),
('0242972','<NAME>','1901-01-25','Baltimore, Maryland, USA'),
('0243454','<NAME>','1918-05-14','Teddington, Middlesex, England, UK'),
('0243842','<NAME>','1923-05-05','Brindisi, Italy'),
('0245112','<NAME>','1977-09-25','Los Angeles, California, USA'),
('0245579','<NAME>','1874-02-03','Liverpool, England, UK'),
('0246004','<NAME>','1929-03-30','Augusta, Maine, USA'),
('0249893','<NAME>','1895-06-14','Hannibal, Missouri, USA'),
('0251708','<NAME>','1947-01-21','New Haven, Connecticut, USA'),
('0251755','<NAME>','1908-12-11','New York, New York, USA'),
('0253141','<NAME>','1904-08-30','San Francisco, California, USA'),
('0254402','<NAME>','1960-05-31','New York, New York, USA'),
('0258089','<NAME>','1933-11-24','San Francisco, California, USA'),
('0262635','<NAME>','1981-06-13','Sudbury, Massachusetts, USA'),
('0262725','<NAME>','1888-02-08','London, England, UK'),
('0262923','<NAME>','1971-01-01','New York, New York, USA'),
('0262968','<NAME>','1964-02-25','Avonmouth, Bristol, England, UK'),
('0263052','<NAME>','1901-06-03','Dorchester, Dorset, England, UK'),
('0264236','<NAME>','1943-03-28','Barnstaple, Devon, England, UK'),
('0264278','<NAME>','1918-04-07','Mars, Pennsylvania, USA'),
('0265363','<NAME>',NULL,NULL),
('0266824','<NAME>','1994-02-23','Conyers, Georgia, USA'),
('0268190','<NAME>','1901-08-09','Onset Bay, Massachusetts, USA'),
('0268199','<NAME>','1976-05-31','Castleknock, Dublin, Ireland'),
('0268297','<NAME>',NULL,NULL),
('0268370','<NAME>',NULL,'Cumberland, Rhode Island, USA'),
('0268380','<NAME>','1956-12-17','Phoenixville, Pennsylvania, USA'),
('0269463','<NAME>','1966-10-19','Queens, New York, USA'),
('0269647','<NAME>','1915-05-05','New York, New York, USA'),
('0272059','<NAME>','1902-03-12','Liverpool, England, UK'),
('0274913','<NAME>','1948-01-01','Hannover, Lower Saxony, West Germany'),
('0277975','<NAME>','1926-08-06','Farnworth, Lancashire, England, UK'),
('0278052','<NAME>','1956-01-01','Evanston, Illinois, USA'),
('0279472','<NAME>','1928-08-10','Philadelphia, Pennsylvania, USA'),
('0279545','<NAME>','1976-02-03','Muscat, Oman'),
('0280178','<NAME>','1888-03-10','Dublin, Ireland'),
('0280242','<NAME>','1913-11-24','Dublin, Ireland'),
('0280707','<NAME>','1901-03-13','Dobbs Ferry, New York, USA'),
('0281486','<NAME>','1950-08-27','Washington, District of Columbia, USA'),
('0281808','<NAME>','1883-02-23','Pasadena, California, USA'),
('0282665','<NAME>',NULL,NULL),
('0285922','<NAME>','1898-02-12','Bolton, Lancashire, England, UK'),
('0286335','<NAME>',NULL,NULL),
('0288003','<NAME>','1900-08-24','Ocean City, New Jersey, USA'),
('0288976','<NAME>','1974-01-01','England, UK'),
('0289038','<NAME>','1939-05-19','London, England, UK'),
('0290556','<NAME>','1978-04-19','Palo Alto, California, USA'),
('0291035','<NAME>','1913-08-13','Chicago, Illinois, USA'),
('0291512','<NAME>','1950-02-03','Yokohama, Japan'),
('0291548','<NAME>','1893-03-21','San Francisco, California, USA'),
('0293455','<NAME>','1950-02-05','Cleaveland, Ohio, USA'),
('0293550','<NAME>','1943-01-18','Barnet, Hertfordshire, England, UK'),
('0298807','<NAME>','1966-01-19','Pittsburgh, Pennsylvania, USA'),
('0300265','<NAME>',NULL,NULL),
('0300866','<NAME>','1965-05-06','Louisville, Kentucky, USA'),
('0301348','<NAME>','1904-07-23','Oklahoma City, Oklahoma, USA'),
('0306696','<NAME>','1922-01-07','Naples, Italy'),
('0308882','<NAME>','1937-08-16','New York, New York, USA'),
('0309588','<NAME>','1915-09-24','St. Paul, Minnesota, USA'),
('0310850','<NAME>','1974-09-04','Washington, District of Columbia, USA'),
('0310980','<NAME>','1906-10-06','Philadelphia, Pennsylvania, USA'),
('0314358','<NAME>','1971-12-18','Rome, Italy'),
('0314671','<NAME>','1901-06-12','Italy'),
('0314776','<NAME>','1951-10-16','London, England, UK'),
('0314867','<NAME>','1914-04-20','Chattanooga, Tennessee, USA'),
('0316079','<NAME>','1967-06-06','New York, USA'),
('0316284','<NAME>','1942-08-01','La Spezia, Italy'),
('0316701','<NAME>','1996-01-01',NULL),
('0318527','<NAME>','1908-07-25','New York, New York, USA'),
('0320006','<NAME>','1897-12-09','London, England, UK'),
('0322299','<NAME>','1882-05-23','New York, New York, USA'),
('0322407','<NAME>','1955-11-09','Belfast, Ireland, UK'),
('0322513','<NAME>','1961-06-24','Edinburgh, Scotland, UK'),
('0323344','<NAME>','1940-02-19',NULL),
('0325959','<NAME>',NULL,'New York, New York, USA'),
('0326809','<NAME>','1892-05-28','Baltimore, Maryland, USA'),
('0327160','<NAME>',NULL,NULL),
('0328604','<NAME>','1933-12-09','Monte Santo, MG, Brazil'),
('0328751','<NAME>','1959-11-13','London, England, UK'),
('0329433','<NAME>','1910-07-28','San Francisco, California, USA'),
('0329773','<NAME>','1974-06-22','Evanston, Illinois, USA'),
('0330456','<NAME>','1909-09-06','Baltimore, Maryland, USA'),
('0330619','<NAME>','1938-01-01','Chester, Pennsylvania, USA'),
('0330961','<NAME>','1912-05-23','Newport, Isle of Wight, England, UK'),
('0331186','<NAME>','1945-01-28','Beverly Hills, California, USA'),
('0331532','<NAME>','1958-01-02','Los Angeles, California, USA'),
('0332539','<NAME>','1891-03-20','Feltham, Middlesex, England, UK'),
('0334175','<NAME>',NULL,NULL),
('0334375','<NAME>','1911-02-20','Canterbury, Kent, England, UK'),
('0334581','<NAME>','1862-08-04','Bergen, Norway'),
('0335519','<NAME>','1927-10-31','New York, New York, USA'),
('0335788','<NAME>','1869-12-20','Xenia, Ohio, USA'),
('0337595','<NAME>','1889-07-11','Perris, California, USA'),
('0337885','<NAME>','1913-11-05','Somerset, England, UK'),
('0338191','<NAME>','1920-10-22','The Bronx, New York, USA'),
('0338901','<NAME>','1918-08-25','Plymouth, Devon, England, UK'),
('0339030','<NAME>','1955-08-13','Cheam, Surrey, England, UK'),
('0339304','<NAME>','1956-08-12','Noranda, Quebec, Canada'),
('0339343','<NAME>','1921-03-04','Chelsea, London, England, UK'),
('0340706','<NAME>','1917-03-22','Los Angeles, California, USA'),
('0340926','<NAME>','1932-04-06','Hamburg, Germany'),
('0341124','<NAME>',NULL,NULL),
('0341464','<NAME>','1894-11-24','Texarkana, Texas, USA'),
('0341518','<NAME>','1912-05-30','<NAME>, Anglesey, Wales, UK'),
('0341743','<NAME>','1947-07-31','Thornaby-on-Tees, Cleveland, England, UK'),
('0342488','<NAME>','1988-08-24','Hertfordshire, England, UK'),
('0343260','<NAME>','1929-01-09','Antwerp, Antwerp, Belgium'),
('0344435','<NAME>','1973-10-06','Cardiff, Wales, UK'),
('0347858','<NAME>','1953-07-01','Maningrida, Arnhem Land, Northern Territory, Australia'),
('0348409','<NAME>','1945-11-15','Santa Monica, California, USA'),
('0350079','<NAME>','1957-01-01','Cayey, Puerto Rico'),
('0350250','<NAME>','1915-02-08','Alexandria, Egypt'),
('0350324','<NAME>','1875-09-26','Vale of Glamorgan, Wales, UK'),
('0350453','<NAME>','1980-12-19','Los Angeles, California, USA'),
('0353467','<NAME>','1919-06-12','Gottingen, Germany'),
('0353673','<NAME>','1953-03-10','London, Ontario, Canada'),
('0353916','<NAME>','1921-10-29','<NAME>, Indiana, USA'),
('0354279','<NAME>','1945-02-20','Los Angeles, California, USA'),
('0358069','<NAME>','1923-03-24','Washington, North Carolina, USA'),
('0358076','<NAME>','1899-09-09','Lynn, Massachusetts, USA'),
('0359774','<NAME>','1934-03-04','Memphis, Tennessee, USA'),
('0360567','<NAME>','1874-05-16','London, England, UK'),
('0361823','<NAME>','1931-09-20','Haifa, Israel'),
('0362567','<NAME>','1893-02-19','Stourbridge, England, UK'),
('0364455','<NAME>','1935-07-25','Evanston, Illinois, USA'),
('0364915','<NAME>','1925-12-02','Grosse Point Park, Michigan, USA'),
('0365201','<NAME>','1904-06-24','Linton, Indiana, USA'),
('0365281','<NAME>','1927-09-19','Ashby, Suffolk, England, UK'),
('0366667','<NAME>',NULL,NULL),
('0366946','<NAME>','1943-12-23','Youngstown, Ohio, USA'),
('0368516','<NAME>','1910-08-15','Stockholm, Sweden'),
('0368871','<NAME>','1898-03-13','Sacramento, California, USA'),
('0369513','<NAME>','1975-03-22','Santa Barbara, California, USA'),
('0369814','<NAME>','1949-11-06','London, England, UK'),
('0370144','<NAME>','1910-09-14','Wood Green, London, England, UK'),
('0370564','<NAME>','1889-06-10','Nanaura, Chiba, Japan'),
('0370821','<NAME>','1905-03-10','London, England, UK'),
('0371040','<NAME>','1900-10-10','Washington, District of Columbia, USA'),
('0371824','<NAME>','1948-07-24','Billericay, Essex, England, UK'),
('0372217','<NAME>','1944-08-25','New Rochelle, New York, USA'),
('0372475','<NAME>',NULL,NULL),
('0373012','<NAME>','1919-03-29','Columbus, Ohio, USA'),
('0374348','<NAME>',NULL,NULL),
('0375629','<NAME>','1942-05-26','Marvell, Arkansas, USA'),
('0376540','<NAME>','1974-10-08','Auckland, New Zealand'),
('0377416','<NAME>','1911-01-01',NULL),
('0377888','<NAME>','1971-05-25','Rye, New York, USA'),
('0378893','<NAME>','1958-11-10','San Antonio, Texas, USA'),
('0380965','<NAME>','1886-07-12','Copenhagen, Denmark'),
('0382676','<NAME>','1928-09-19','Brooklyn, New York, USA'),
('0382722','<NAME>','1934-05-18','Los Angeles, California, USA'),
('0382956','<NAME>','1953-03-04','Uganda'),
('0383603','<NAME>','1992-02-14','London, England, UK'),
('0384276','<NAME>','1895-04-25','Douglas, Kansas, USA'),
('0384908','<NAME>','1912-08-15','Bramhall, Cheshire, England, UK'),
('0384916','<NAME>','1932-12-20','Denison, Texas, USA'),
('0385757','<NAME>','1924-07-19','Denver, Colorado, USA'),
('0387432','<NAME>','1968-06-29','Newburyport, Massachusetts, USA'),
('0387556','<NAME>','1906-05-01','New York, New York, USA'),
('0390192','<NAME>','1908-09-05','London, England, UK'),
('0391062','<NAME>','1921-06-21','New York, New York, USA'),
('0391072','<NAME>','1937-07-02','Jasper, Alabama, USA'),
('0391361','<NAME>','1890-10-01','London, England, UK'),
('0392529','<NAME>','1918-02-05','Beverly Hills, Los Angeles, California, USA'),
('0394244','<NAME>','1902-10-18','Bainbridge, Georgia, USA'),
('0396819','<NAME>','1923-11-06','Tonypandy, Wales, UK'),
('0397397','<NAME>','1913-04-14','Cleveland, Ohio, USA'),
('0399345','<NAME>','1914-07-27','Wiener Neustadt, Austria-Hungary, now Austria'),
('0399853','<NAME>','1936-08-25','London, England, UK'),
('0401434','<NAME>','1890-10-03','Louisville, Kentucky, USA'),
('0401449','<NAME>','1886-01-03','Newtonville, Massachusetts, USA'),
('0402558','<NAME>','1900-01-30','Buenos Aires, Argentina'),
('0404046','<NAME>','1914-10-30','Providence, Rhode Island, USA'),
('0404158','<NAME>','1884-04-06','Toronto, Ontario, Canada'),
('0404360','<NAME>','1903-10-12','Seattle, Washington, USA'),
('0405035','<NAME>','1903-05-12','Bourton-on-the-Water, Gloucestershire, England, UK'),
('0409869','<NAME>','1914-01-30','Vancouver, British Columbia, Canada'),
('0410347','<NAME>','1950-04-11','Santa Monica, California, USA'),
('0412322','<NAME>','1909-06-14','Hunt, Illinois, USA'),
('0412465','<NAME>','1928-06-07','Berkeley, California, USA'),
('0413168','<NAME>','1968-10-12','Sydney, New South Wales, Australia'),
('0413559','<NAME>','1936-05-09','Birkenhead, Cheshire, England, UK'),
('0413561','<NAME>','1923-12-19','Glasgow, Scotland, UK'),
('0415591','<NAME>','1903-11-07','Columbus Grove, Ohio, USA'),
('0416673','<NAME>','1965-04-26','Stony Brook, New York, USA'),
('0417824','<NAME>','1917-04-01','Ogden, Utah, USA'),
('0417829','<NAME>','1908-02-15','New York, New York, USA'),
('0417837','<NAME>','1884-07-23','Rorschach, Switzerland'),
('0419051','<NAME>',NULL,NULL),
('0422015','<NAME>','1885-12-30','New York, New York, USA'),
('0422484','<NAME>','1926-07-21','Toronto, Ontario, Canada'),
('0423646','<NAME>','1945-11-17','London, England, UK'),
('0424216','<NAME>','1971-03-11','Knoxville, Tennessee, USA'),
('0424318','<NAME>','1923-10-05','Pretoria, South Africa'),
('0424534','<NAME>','1983-08-09','Camarillo, California, USA'),
('0424565','<NAME>','1918-06-13','Foraker, Shidler, Oklahoma, USA'),
('0424743','<NAME>','1908-12-18','Ellerker Gate, Richmond, Surrey, England, UK'),
('0425287','<NAME>','1997-05-20','Valencia, California, USA'),
('0425913','<NAME>','1897-12-05','Columbus, Georgia, USA'),
('0425928','<NAME>',NULL,NULL),
('0426333','<NAME>',NULL,NULL),
('0427728','<NAME>','1956-11-21','Paris, Tennessee, USA'),
('0427756','<NAME>','1941-08-18','Jackson, Tennessee, USA'),
('0428354','<NAME>','1919-03-02','Tulsa, Oklahoma, USA'),
('0428923','<NAME>','1969-08-21','Gold Coast, Queensland, Australia'),
('0429250','<NAME>','1934-03-31','Charleroi, Pennsylvania, USA'),
('0429923','<NAME>','1906-08-09','Clarksville, Tennessee, USA'),
('0430460','<NAME>','1902-11-23','Dawson City, Yukon Territory, Canada'),
('0431139','<NAME>','1919-06-19','Marseille, France'),
('0432827','<NAME>','1924-01-16','Guadalajara, Jalisco, Mexico'),
('0438279','<NAME>','1947-11-25','Paris, France'),
('0439334','<NAME>','1919-10-24','Wilno, Poland (which is now Vilnius, Lithuania)'),
('0439850','<NAME>','1891-09-07','San Bernardino, California, USA. (usually erroneously given as 1893)'),
('0440885','<NAME>','1962-10-24','Baltimore, Maryland, USA'),
('0441501','<NAME>','1933-12-22','Pittsburgh, Pennsylvania, USA'),
('0442512','<NAME>',NULL,NULL),
('0443401','<NAME>','1918-11-11','New York, New York, USA'),
('0443577','<NAME>','1940-05-15','New York, New York, USA'),
('0444321','<NAME>','1918-10-09','Petrograd, Soviet Union (now St. Petersburg, Russia)'),
('0445246','<NAME>','1899-02-27','Boston, Massachusetts, USA'),
('0445290','<NAME>','1898-02-10','Fowler, Indiana, USA. (some sources say 1896)'),
('0445523','<NAME>','1893-08-22','Capetown, South Africa'),
('0446303','<NAME>','1929-07-11','Dublin, Ireland'),
('0447913','<NAME>','1914-02-17','Worcester, Massachusetts, USA'),
('0448097','<NAME>',NULL,'Los Angeles, California, USA'),
('0449984','<NAME>','1923-04-29','Philadelphia, Pennsylvania, USA'),
('0450810','<NAME>','1919-11-20','Port Arthur, Texas, USA'),
('0452953','<NAME>','1926-11-25','London, England, UK'),
('0453248','<NAME>',NULL,NULL),
('0454558','<NAME>','1889-10-31','New York, New York, USA'),
('0454771','<NAME>','1886-01-24','Christiansburg, Virginia, USA'),
('0454865','<NAME>',NULL,NULL),
('0455767','<NAME>','1954-01-29','Lincoln, Illinois, USA'),
('0456124','<NAME>','1949-04-28','New York, New York, USA'),
('0457655','<NAME>','1948-10-31','Leicester, Leicestershire, England, UK'),
('0459170','<NAME>','1946-07-20','Philadelphia, Pennsylvania, USA'),
('0460874','<NAME>','1906-05-04','East Sheen, Surrey, England, UK'),
('0461136','<NAME>','1985-03-26','Teddington, Middlesex, England, UK'),
('0461455','<NAME>','1924-07-21','Morgantown, West Virginia, USA'),
('0461498','<NAME>','1981-09-04','Houston, Texas, USA'),
('0466099','<NAME>','1893-09-16','Pusztaturpaszto, Austria-Hungary (now Hungary)'),
('0467085','<NAME>','1933-06-14','Lodz, Poland'),
('0467396','<NAME>','1905-05-01','Berlin, Germany'),
('0468957','<NAME>','1958-01-07','Fairfield, Connecticut, USA'),
('0470981','<NAME>','1962-09-08','Dessau, East Germany'),
('0472710','<NAME>','1978-05-15','New York, New York, USA'),
('0472816','<NAME>','1922-03-20','Winnipeg, Manitoba, Canada'),
('0474122','<NAME>','1958-05-20','New York, USA'),
('0479951','<NAME>','1935-09-28','Harrow, London, England, UK'),
('0483787','<NAME>','1914-12-10','New Orleans, Louisiana, USA'),
('0484770','<NAME>',NULL,NULL),
('0485943','<NAME>','1896-08-10','Memphis, Tennessee, USA'),
('0488267','<NAME>',NULL,NULL),
('0488306','<NAME>','1970-03-20','Hollywood, California, USA'),
('0490477','<NAME>','1980-07-26',NULL),
('0490639','<NAME>','1921-06-18','Sheboygan, Wisconsin, USA'),
('0491402','<NAME>','1959-06-11','Oxford, Oxfordshire, England, UK'),
('0491406','<NAME>','1897-03-25','Dumfries, Dumfriesshire, Scotland, UK'),
('0492566','<NAME>',NULL,NULL),
('0493026','<NAME>',NULL,NULL),
('0494432','<NAME>','1952-09-22','Rahway, New Jersey, USA'),
('0496819','<NAME>','1913-01-02','Igtham, Kent, England, UK'),
('0500021','<NAME>','1882-01-31','Chicago, Illinois, USA'),
('0500038','<NAME>','1937-10-11','New York, New York, USA'),
('0500343','<NAME>','1962-11-06','San Diego, California, USA'),
('0500552','<NAME>','1898-10-06','Menominee, Michigan, USA'),
('0501183','<NAME>','1923-04-15','Brooklyn, New York, USA'),
('0501185','<NAME>','1948-06-25','Brooklyn, New York, USA'),
('0502015','<NAME>','1964-11-16','Chicago, Illinois, USA'),
('0502360','<NAME>','1939-11-21','Springfield, Illinois, USA'),
('0502671','<NAME>','1975-06-17','Houston, Texas, USA'),
('0502752','<NAME>','1889-10-07','Chicago, Illinois, USA'),
('0503777','<NAME>','1900-10-15','San Francisco, California, USA'),
('0504125','<NAME>','1925-01-26','Detroit, Michigan, USA'),
('0504492','<NAME>','1958-07-11','Oxford, Oxfordshire, England, UK'),
('0504962','<NAME>',NULL,'New York, New York, USA'),
('0505152','<NAME>','1952-08-06','Highland Park, Illinois, USA'),
('0505157','<NAME>','1906-12-27','Pittsburgh, Pennsylvania, USA'),
('0505971','<NAME>','1958-05-29','Parma, Ohio, USA'),
('0506405','<NAME>','1946-12-17','Hamilton, Ontario, Canada'),
('0506613','<NAME>',NULL,NULL),
('0506784','<NAME>','1920-11-16','Veranopolis, RS, Brazil'),
('0507659','<NAME>','1947-06-29','Brooklyn, New York, USA'),
('0510134','<NAME>','1891-05-26','Budapest, Austria-Hungary (now Budapest, Hungary)'),
('0510731','<NAME>','1965-01-01',NULL),
('0511614','<NAME>','1939-12-08','Worthing, Sussex, England, UK'),
('0511695','<NAME>','1921-03-10','Timmins, Ontario, Canada'),
('0512267','<NAME>','1910-09-19','Dubuque, Iowa, USA'),
('0513520','<NAME>','1946-05-10','Hull, Yorkshire, England, UK'),
('0514783','<NAME>',NULL,NULL),
('0514822','<NAME>','1902-05-10','Kiev, Russian Empire (now Ukraine)'),
('0515979','<NAME>','1886-02-02','Glasgow, Scotland, UK'),
('0516215','<NAME>','1935-10-19','Brooklyn, New York, USA'),
('0516876','<NAME>','1891-07-18','London, Ontario, Canada'),
('0517444','<NAME>','1914-01-31','Blountstown, Florida, USA'),
('0517597','<NAME>','1908-10-05','Texarkana, Texas, USA'),
('0518057','<NAME>','1940-08-12','Bari, Italy'),
('0518085','<NAME>','1979-10-08','Ghent, New York, USA'),
('0518394','<NAME>',NULL,NULL),
('0518687','<NAME>',NULL,'Pittsburgh, Pennsylvania, USA'),
('0518821','<NAME>','1952-10-13','Hong Kong'),
('0518880','<NAME>','1910-06-18','Baltimore, Maryland, USA'),
('0521300','<NAME>','1904-11-15','Vienna, Austria'),
('0521781','<NAME>',NULL,NULL),
('0521861','<NAME>',NULL,NULL),
('0521937','<NAME>','1915-01-09','New York, New York, USA'),
('0522281','<NAME>','1898-09-10','Midland, Texas, USA'),
('0522927','<NAME>','1890-03-03','San Jose, California, USA'),
('0524197','<NAME>','1971-06-20','Arkansas, USA'),
('0524839','Ludacris','1977-09-11','Champaign, Illinois, USA'),
('0526707','<NAME>','1930-01-01','China'),
('0526985','<NAME>','1949-04-21','Northport, Long Island, New York, USA'),
('0527501','<NAME>','1962-03-21','Ridgewood, New Jersey, USA'),
('0528331','<NAME>','1960-07-14','Dolton, Illinois, USA'),
('0528718','<NAME>','1943-04-03','Bath, Somerset, England, UK. [now Bath and North East Somerset, England, UK]'),
('0531759','<NAME>','1875-06-06','Waterbury, Connecticut, USA'),
('0532277','<NAME>','1913-03-29','Dublin, Ireland'),
('0533692','<NAME>','1902-12-25','Columbia, South Carolina, USA'),
('0534045','<NAME>','1908-08-30','Kankakee, Illinois, USA'),
('0534085','<NAME>','1966-12-19','New York, New York, USA'),
('0536167','<NAME>','1908-03-07','Rome, Latium, Italy'),
('0538655','<NAME>','1963-06-10','Richland Center, Wisconsin, USA'),
('0540416','<NAME>','1925-01-30','Chicago, Illinois, USA'),
('0541766','<NAME>','1888-05-14','Wolverhampton, Staffordshire, England, UK'),
('0542702','<NAME>','1912-08-08','Brooklyn, New York, New York, USA'),
('0542720','<NAME>','1920-01-30','Lawrence, Kansas, USA'),
('0542858','<NAME>',NULL,NULL),
('0543287','<NAME>','1916-07-17','Cincinnati, Ohio, USA'),
('0544064','<NAME>','1920-12-21','New York, New York, USA'),
('0545298','<NAME>','1897-08-31','Racine, Wisconsin, USA'),
('0549280','<NAME>','1911-01-30','Philadelphia, Pennsylvania, USA'),
('0549539','<NAME>',NULL,NULL),
('0549658','<NAME>','1938-04-17','Cardiff, Wales, UK'),
('0551128','<NAME>','1960-10-17','Madison, Wisconsin, USA'),
('0553349','<NAME>','1935-01-13','Grosseto, Italy'),
('0556850','<NAME>','1942-04-03','St. Louis, Missouri, USA'),
('0557339','<NAME>','1896-08-30','Toronto, Ontario, Canada'),
('0557751','<NAME>','1934-06-01','Houston, Texas, USA'),
('0559144','<NAME>','1965-08-24','Morton Grove, Illinois, USA'),
('0560093','<NAME>','1984-03-14','Chicago, Illinois, USA'),
('0561809','<NAME>','1942-01-01','Ontario Province, Canada'),
('0562920','<NAME>','1920-11-30','St. Louis, Missouri, USA'),
('0564589','<NAME>','1944-07-28','York, Pennsylvania, USA'),
('0564790','<NAME>','1918-03-17','Joliet, Illinois, USA'),
('0564970','<NAME>','1898-10-03','Los Angeles, California, USA'),
('0565731','<NAME>','1959-08-18','Chicago, Illinois, USA'),
('0566948','<NAME>','1905-11-05','South Pasadena, California, USA'),
('0567408','<NAME>','1895-06-10','Wichita, Kansas, USA'),
('0567852','<NAME>','1961-05-16','Montreal, Quebec, Canada'),
('0569410','<NAME>','1912-11-05','New York, New York, USA'),
('0570192','<NAME>','1916-06-14','Omaha, Nebraska, USA'),
('0570451','<NAME>','1898-05-23','Homestead, Pennsylvania, USA'),
('0570912','<NAME>','1968-01-01','Philadelphia, Pennsylvania, USA'),
('0571630','<NAME>','1966-06-10','Pompton Plains, New Jersey, USA'),
('0571674','<NAME>','1920-03-16','Sydney, New South Wales, Australia'),
('0572142','<NAME>','1883-12-11','Tunbridge Wells, Kent, England'),
('0573037','<NAME>','1968-07-27','Sydney, New South Wales, Australia'),
('0573640','<NAME>','1913-07-29','New York, New York, USA'),
('0575552','<NAME>','1914-09-14','New York, New York, USA'),
('0576345','<NAME>','1952-11-09','Queens, New York, USA'),
('0576851','<NAME>','1934-05-01','Mosman, Sydney, New South Wales, Australia'),
('0576987','<NAME>','1955-11-09','Sao Paulo, Sao Paulo, Brazil'),
('0577982','<NAME>','1989-03-13','London, England, UK'),
('0578949','<NAME>','1974-03-05','Houston, Texas, USA'),
('0579663','<NAME>','1890-02-18','Pittsburgh, Pennsylvania, USA'),
('0580240','<NAME>','1882-08-13','Seville, Spain'),
('0580479','<NAME>','1920-10-18','Athens, Greece'),
('0580565','<NAME>','1908-11-16','Cleveland, Ohio, USA'),
('0580607','<NAME>','1947-10-22','River Edge, New Jersey, USA'),
('0581277','<NAME>','1925-12-09','New York, New York, USA'),
('0581282','<NAME>','1915-08-02','Hartford, Connecticut, USA'),
('0583600','<NAME>','1949-12-08','Pennsylvania, USA'),
('0584052','<NAME>',NULL,NULL),
('0587249','<NAME>','1932-09-09','New York, New York, USA'),
('0587277','<NAME>','1895-09-30','Kishinew, Russia (now Chisinau, Moldova)'),
('0587340','<NAME>','1948-01-01','St. Louis, Missouri, USA'),
('0587401','<NAME>','1933-03-03','Havana, Cuba'),
('0587944','<NAME>','1958-02-06','Los Angeles, California, USA'),
('0587955','<NAME>','1966-12-30','New York, New York, USA'),
('0588553','<NAME>','1939-04-22','Long Island City, New York, USA'),
('0588777','<NAME>','1953-10-15','Valley Stream, Long Island, New York, USA'),
('0590055','<NAME>','1908-02-22','Felixstowe, Suffolk, England, UK'),
('0591034','<NAME>','1888-03-18','Italy'),
('0591450','<NAME>',NULL,NULL),
('0591485','<NAME>','1946-03-12','Los Angeles, California, USA'),
('0591486','<NAME>','1903-02-28','Chicago, Illinois, USA'),
('0593310','<NAME>','1970-03-27','Los Angeles, California, USA'),
('0593612','<NAME>','1903-08-14','Havana, Cuba'),
('0593775','<NAME>','1892-07-11','Elizabeth, New Jersey, USA'),
('0596520','<NAME>','1935-01-06','Great Falls, Montana, USA'),
('0597410','<NAME>','1993-07-26','St. Louis, Missouri, USA'),
('0600531','<NAME>','1924-01-08','London, England, UK'),
('0601214','<NAME>',NULL,NULL),
('0601596','<NAME>','1888-01-08','County Meath, Ireland'),
('0601930','<NAME>','1929-01-07','Los Angeles, California, USA'),
('0604605','<NAME>','1908-12-20','Prentice, Wisconsin, USA'),
('0604656','<NAME>','1890-06-01','New York, New York, USA'),
('0605080','<NAME>','1986-11-26','Chicago, Illinois, USA'),
('0605164','<NAME>','1962-05-01','Bucharest, Romania'),
('0605904','<NAME>','1909-12-12','Ottumwa, Iowa, USA'),
('0605923','<NAME>','1908-05-26','Semley, Wiltshire, England, UK'),
('0608012','<NAME>','1947-10-18','New York, New York, USA'),
('0608090','<NAME>','1977-05-13','Nottingham, England, UK'),
('0608440','<NAME>','1987-04-27','Sheepscombe, England, UK'),
('0608909','<NAME>','1910-01-28','Brooklyn, New York, USA'),
('0609236','<NAME>','1961-11-28','Woodbridge, Connecticut, USA'),
('0610127','<NAME>','1940-01-01','Lemessos, Cyprus'),
('0612322','<NAME>','1925-08-23','The Bronx, New York, New York, USA'),
('0612743','<NAME>','1898-08-21','St. Helens, Lancashire, England, UK'),
('0612847','<NAME>','1895-09-22','Lemberg, Austria-Hungary. [now Lviv, Ukraine]'),
('0613789','<NAME>',NULL,'Ohio, USA'),
('0614816','<NAME>',NULL,NULL),
('0617130','<NAME>',NULL,'Sarasota, Florida, USA'),
('0621008','<NAME>','1936-04-12','Scottsville, Kentucky, USA'),
('0622553','<NAME>','1945-12-06','Middleton, Connecticut, USA'),
('0623658','<NAME>','1926-01-20','Packard, Kentucky, USA'),
('0623768','<NAME>','1911-04-23','London, England, UK'),
('0624535','<NAME>','1900-02-26','Craiova, Dolj, Romania'),
('0625099','Nelly','1974-11-02','Austin, Texas, USA'),
('0625680','<NAME>','1916-08-12','New York, New York, USA'),
('0625729','<NAME>',NULL,NULL),
('0627878','<NAME>','1929-09-05','Oak Park, Illinois, USA'),
('0628273','<NAME>',NULL,NULL),
('0628955','<NAME>','1940-03-22','Samrong Young, Cambodia'),
('0630100','<NAME>','1959-01-01','Singapore'),
('0632426','<NAME>','1897-05-31','Bologna, Italy'),
('0634240','<NAME>','1970-07-30','London, England, UK'),
('0634313','<NAME>','1902-08-11','San Francisco, California, USA'),
('0634342','<NAME>','1954-06-09','Philadelphia, Pennsylvania, USA'),
('0634509','<NAME>','1986-06-20',NULL),
('0639529','<NAME>','1915-09-10','New York, New York, USA'),
('0639782','<NAME>','1942-03-25','Cheltenham, Gloucestershire, England, UK'),
('0640299','<NAME>',NULL,NULL),
('0640413','<NAME>','1964-11-15','Illinois, USA'),
('0640547','<NAME>','1880-10-23','Belfast, Ireland, UK (now Belfast, Northern Ireland, UK)'),
('0640838','<NAME>','1963-01-01',NULL),
('0641314','<NAME>','1956-01-01','Ft. Lauderdale, Florida, USA'),
('0641939','<NAME>','1941-04-20','Los Angeles, California, USA'),
('0641966','<NAME>','1910-07-17','St. Louis, Missouri, USA'),
('0642042','<NAME>','1874-10-08','Oakland, California, USA'),
('0643000','<NAME>','1915-08-28','New York, New York, USA'),
('0643105','<NAME>','1928-07-05','Depoy, Kentucky, USA'),
('0643211','<NAME>','1902-03-23','Fort Payne, Alabama, USA'),
('0644048','<NAME>','1906-07-18','Philadelphia, Pennsylvania, USA'),
('0652109','<NAME>','1937-02-26',NULL),
('0653239','<NAME>',NULL,NULL),
('0654239','<NAME>','1887-08-05','Wheathampstead, Hertfordshire, England, UK'),
('0654434','<NAME>','1925-01-17','Golden, British Columbia, Canada'),
('0656105','<NAME>','1910-08-04','Flushing, New York, USA'),
('0656183','<NAME>','1924-11-22','Kirksville, Missouri, USA'),
('0656929','<NAME>','1964-08-10','New York, New York, USA'),
('0658133','<NAME>','1926-11-01','East Chicago, Indiana, USA'),
('0659363','<NAME>','1989-08-21','Palisades, New York, USA'),
('0659573','<NAME>','1946-04-08','Philadelphia, Pennsylvania, USA'),
('0660327','<NAME>','1926-09-03','Chilimodion, Corynth, Greece'),
('0660407','<NAME>','1952-07-17',NULL),
('0662223','<NAME>','1922-06-26','Cedarville, Ohio, USA'),
('0663820','<NAME>','1927-11-20','Marblehead, Massachusetts, USA'),
('0664756','<NAME>',NULL,NULL),
('0667542','<NAME>','1932-06-19','Cagliari, Sardinia, Italy'),
('0668093','<NAME>','1900-12-17','Piraeus, Athens, Greece'),
('0668361','<NAME>','1912-05-23','Roanoke, Virginia, USA'),
('0669046','<NAME>','1950-01-01','Lancaster, Pennsylvania, USA'),
('0669629','<NAME>','1945-08-23','Leeds, Yorkshire, England, UK'),
('0671957','<NAME>','1922-09-27','Philadelphia, Pennsylvania, USA'),
('0674012','<NAME>','1938-05-12','Passaic, New Jersey, USA'),
('0676492','<NAME>','1926-10-15','Canton, Ohio, USA'),
('0679406','<NAME>',NULL,NULL),
('0681933','<NAME>','1892-04-08','Toronto, Ontario, Canada'),
('0682074','<NAME>','1897-09-23','East St. John, New Brunswick, Canada'),
('0683253','<NAME>','1979-01-27','London, England, UK'),
('0687506','<NAME>','1929-10-28','Brigg, North Lincolnshire, England, UK'),
('0689488','<NAME>','1939-05-30','Passaic, New Jersey, USA'),
('0691600','<NAME>','1988-12-16','London, England, UK'),
('0693281','<NAME>','1904-11-13','New York, New York, USA'),
('0694066','<NAME>','1947-08-31','Liberia Yonkers, New York, USA'),
('0694090','<NAME>','1904-11-14','Mountain View, Arkansas, USA'),
('0694403','<NAME>','1894-03-14','New York, New York, USA'),
('0694580','<NAME>','1931-12-20','San Francisco, California, USA'),
('0695937','<NAME>','1906-12-05','Vienna, Austria'),
('0696193','<NAME>','1933-09-14','Modesto, California, USA'),
('0697515','<NAME>','1910-12-07','New Orleans, Louisiana, USA'),
('0697733','<NAME>','1913-01-26','Nichols, New York, USA'),
('0697785','<NAME>','1936-02-14','Jennings, Florida, USA'),
('0698764','<NAME>','1930-12-13','Philadelphia, Pennsylvania, USA'),
('0700869','<NAME>','1932-06-22','India'),
('0702841','<NAME>','1971-08-20','Saigon, Vietnam'),
('0703033','<NAME>','1913-09-07','Ainsdale, Sefton, England, UK'),
('0703600','<NAME>','1907-03-31','Philadelphia, Pennsylvania, USA'),
('0703946','<NAME>','1944-05-28','Belfast, Northern Ireland, UK'),
('0705356','<NAME>','1989-07-23','Fulham, London, England, UK'),
('0706162','<NAME>','1985-01-01','Adelaide, Australia'),
('0707023','<NAME>','1910-01-12','Dusseldorf, Germany'),
('0707814','<NAME>','1900-11-21','South Pittsburg, Tennessee, USA'),
('0708081','<NAME>','1889-07-15','San Francisco, California, USA'),
('0709907','<NAME>','1915-06-01','New York, New York, USA'),
('0713281','<NAME>','1901-12-14','Minneapolis, Minnesota, USA'),
('0714310','<NAME>','1948-09-01','Philadelphia, Pennsylvania, USA'),
('0714835','<NAME>','1927-01-26','New York, New York, USA'),
('0715346','<NAME>','1906-12-30','London, England, UK'),
('0715477','<NAME>','1937-03-20','Atlanta, Georgia, USA'),
('0718627','<NAME>','1909-06-26','Munich, Germany'),
('0718645','<NAME>','1946-10-27','Komarno, Czechoslovakia [now in Slovakia]'),
('0720843','<NAME>','1903-06-25','New York, New York, USA'),
('0721073','<NAME>','1917-09-20','La Coruna, Galicia, Spain'),
('0721728','<NAME>','1925-04-04','Cleveland, Ohio, USA'),
('0721817','<NAME>','1952-01-17','San Antonio, Texas, USA'),
('0722315','<NAME>','1947-03-23','Poughkeepsie, New York, USA'),
('0722636','<NAME>','1944-05-05','Salisbury, Wiltshire, England, UK'),
('0723658','<NAME>','1891-10-13','Buffalo, New York, USA'),
('0723707','<NAME>','1938-10-29','Pittsburgh, Pennsylvania, USA'),
('0723968','<NAME>','1920-07-12','Vicksburg, Mississippi, USA'),
('0724732','<NAME>','1902-12-19','Tivoli Road, Cheltenham, Gloucestershire, England, UK'),
('0724798','<NAME>','1928-06-05','Shipley, Yorkshire, England, UK'),
('0725543','<NAME>','1926-05-08','New York, New York, USA'),
('0725897','<NAME>','1891-07-17','Southampton, Hampshire, England, UK'),
('0728688','<NAME>','1914-03-02','New York, New York, USA'),
('0730385','<NAME>','1918-10-11','New York, New York, USA'),
('0731634','<NAME>','1939-10-22','New York, New York, USA'),
('0731772','<NAME>','1925-09-09','La Jolla, California, USA'),
('0732062','<NAME>','1886-01-01','Runnels, Texas, USA'),
('0732703','<NAME>',NULL,NULL),
('0734236','<NAME>','1949-08-24','Bangor, Maine, USA'),
('0734368','<NAME>','1953-11-20',NULL),
('0735442','<NAME>','1978-07-12','Bexar County, Texas, USA'),
('0735538','<NAME>',NULL,NULL),
('0736777','Charles ''Buddy'' Rogers','1904-08-13','Olathe, Kansas, USA'),
('0736930','<NAME>',NULL,NULL),
('0738354','<NAME>','1920-11-08','Pompano Beach, Florida, USA'),
('0740220','<NAME>',NULL,NULL),
('0742341','<NAME>','1927-01-01',NULL),
('0743218','<NAME>','1909-02-23','New York, New York, USA'),
('0744035','<NAME>','1908-03-16','New York, New York, USA'),
('0744235','<NAME>','1947-01-01','Trenton, New Jersey, USA'),
('0746125','<NAME>','1979-10-09','Des Moines, Iowa, USA'),
('0746896','<NAME>','1962-01-01','Albury, North West Victoria Border, Australia'),
('0748207','<NAME>','1959-12-21','Grumo Appula, Italy'),
('0748620','<NAME>','1969-04-06','Passaic, New Jersey, USA'),
('0749484','<NAME>','1889-06-11','Los Angeles, California, USA'),
('0751174','<NAME>','1914-01-14','North Sydney, Nova Scotia, Canada'),
('0751946','<NAME>','1920-11-02','Vancouver, British Columbia, Canada'),
('0751983','<NAME>','1892-05-11','Balham, London, England, UK'),
('0753073','<NAME>','1934-03-23','New York, New York, USA'),
('0755974','<NAME>',NULL,'Toronto, Ontario, Canada'),
('0757256','<NAME>','1921-11-08','New York, New York, USA'),
('0761052','<NAME>','1970-03-14','San Juan, Puerto Rico'),
('0761587','<NAME>','1953-04-16','Austin, Texas, USA'),
('0765546','<NAME>','1940-05-22','Quebec City, Quebec, Canada'),
('0765597','<NAME>','1971-03-07','Scott Air Force Base, Illinois, USA'),
('0766975','<NAME>',NULL,NULL),
('0768321','<NAME>','1916-12-13',NULL),
('0768795','<NAME>','1932-06-22','Sutton Abinger, Surrey, England, UK'),
('0769311','<NAME>','1955-08-27','Savannah, Georgia, USA'),
('0769874','<NAME>','1920-05-30','Tokyo, Japan'),
('0771493','<NAME>','1955-05-27','Bethesda, Maryland, USA'),
('0771584','<NAME>','1896-03-22','Vienna, Austria'),
('0772259','<NAME>','1926-02-16','London, England, UK'),
('0775447','<NAME>','1941-08-26','Teheran, Iran'),
('0778642','<NAME>','1955-09-12','New Rochelle, New York, USA'),
('0779084','<NAME>','1965-11-25','Glenrothes, Fife, Scotland, UK'),
('0779549','<NAME>','1912-09-22','Jamesport, Missouri, USA'),
('0779923','<NAME>','1914-02-24','Austin, Texas, USA'),
('0780684','<NAME>','1921-07-07','Anaheim, California, USA'),
('0780765','<NAME>','1935-09-28','London, England, UK'),
('0780833','<NAME>','1911-04-17','South Bend, Indiana, USA'),
('0781029','<NAME>','1938-11-13','Marshalltown, Iowa, USA'),
('0781183','<NAME>','1921-09-08','Swansea, Wales, UK'),
('0781238','<NAME>','1961-03-29','Endicott, New York, USA'),
('0781842','<NAME>',NULL,NULL),
('0783629','<NAME>','1875-10-20','Cincinnati, Ohio, USA'),
('0785435','<NAME>','1931-11-03','New York, New York, USA'),
('0786022','<NAME>','1942-08-17','New Delhi, British India (now India)'),
('0786639','<NAME>','1980-02-21','Staten Island, New York, USA'),
('0786806','<NAME>',NULL,NULL),
('0788009','<NAME>','1949-11-29','Chicago, Illinois, USA'),
('0788202','<NAME>',NULL,NULL),
('0788940','<NAME>','1945-03-12','Sydney, New South Wales, Australia'),
('0789716','<NAME>','1958-07-10','County Cork, Ireland'),
('0790454','<NAME>','1902-08-10','Montreal, Quebec, Canada'),
('0792156','<NAME>',NULL,NULL),
('0792202','<NAME>','1976-07-14','Dublin, Ireland'),
('0792514','<NAME>','1885-10-11','San Francisco, California, USA'),
('0795864','<NAME>','1898-12-06','Atwood, Colorado, USA'),
('0796117','<NAME>','1970-08-06','Pondicherry, Tamil-Nadu province, India'),
('0797531','<NAME>','1921-03-25','Wiesbaden, Germany'),
('0798779','<NAME>','1946-07-02','New York, New York, USA'),
('0799033','<NAME>','1927-08-03','Boston, Massachusetts, USA'),
('0800328','<NAME>','1941-10-13','Newark, New Jersey, USA'),
('0801231','<NAME>',NULL,NULL),
('0801672','<NAME>','1938-04-28','Kingston, Jamaica'),
('0802032','<NAME>',NULL,NULL),
('0802831','<NAME>','1942-07-29','Brooklyn, New York, USA'),
('0802862','<NAME>','1897-04-26','Hamburg, Germany'),
('0803785','<NAME>','1896-11-28','Vienna, Austria'),
('0804375','<NAME>','1863-07-25','London, England, UK'),
('0805317','<NAME>','1926-02-17',NULL),
('0806041','<NAME>','1909-10-01','New York, New York, USA'),
('0807580','<NAME>','1863-07-21','London, England, UK'),
('0808559','<NAME>','1990-01-21','Monrovia, California, USA'),
('0809514','<NAME>','1930-02-20','New Haven, Connecticut, USA'),
('0811202','<NAME>','1946-10-27','Park Ridge, Illinois, USA'),
('0812453','<NAME>','1889-12-26','Moscow, Russia'),
('0814085','<NAME>','1962-03-20','Indianpolis, Indiana, USA'),
('0814216','<NAME>','1899-02-15','Litchfield, Minnesota, USA'),
('0815433','<NAME>','1909-01-22','Valley City, North Dakota, USA'),
('0816007','<NAME>','1889-01-16','Yalta, Ukraine, Russian Empire [now independent Ukraine]'),
('0817983','<NAME>','1946-12-20','New York, New York, USA'),
('0819850','<NAME>','1992-08-04','Arezzo, Italy'),
('0819851','<NAME>','1992-08-04','Arezzo, Italy'),
('0820105','<NAME>','1886-03-25','Tiverton, Devon, England, UK'),
('0820643','<NAME>. John','1905-10-09','Chicago, Illinois, USA'),
('0820821','<NAME>','1873-11-24','New Orleans, Louisiana, USA'),
('0821041','<NAME>','1919-01-13','Los Angeles, California, USA'),
('0822034','<NAME>','1908-01-11','The Bronx, New York, USA'),
('0822972','<NAME>','1925-06-21','Troy, New York, USA'),
('0823563','<NAME>','1950-07-29','Queens, New York, USA'),
('0827137','<NAME>','1931-07-14','Bristol, Somerset, England, UK'),
('0827170','<NAME>','1969-04-21','Middlesex Hospital, London, England, UK'),
('0827274','<NAME>',NULL,NULL),
('0827577','<NAME>','1917-11-13','New Castle, Pennsylvania, USA'),
('0827663','<NAME>','1957-08-28','Bethesda, Maryland, USA'),
('0827973','<NAME>','1930-01-13','Washington, District of Columbia, USA'),
('0828419','<NAME>','1904-12-18','Oakland, California, USA'),
('0829038','<NAME>','1905-03-31','Buxton, Derbyshire, England, UK'),
('0829537','<NAME>','1962-11-28','New York, New York, USA'),
('0831872','<NAME>','1873-08-19','Longmont, Colorado, USA'),
('0832011','<NAME>','1879-11-15','Worcester, Massachusetts, USA'),
('0833152','<NAME>','1914-08-02','Old Westbury, New York, USA'),
('0833519','<NAME>','1948-04-28','New York, New York, USA'),
('0833865','<NAME>','1913-11-08','New York, New York, USA'),
('0835021','<NAME>','1924-08-17','Chicago, Illinois, USA'),
('0837959','<NAME>','1912-08-29','New York, New York, USA'),
('0840133','<NAME>','1955-04-17','Boise, Idaho, USA'),
('0842421','<NAME>','1932-12-29','Omaha, Nebraska, USA'),
('0842770','<NAME>','1960-11-05','London, England, UK'),
('0843059','<NAME>','1923-05-04','Oldham, Lancashire, England, UK'),
('0846987','<NAME>','1932-07-24','Seattle, Washington, USA'),
('0848414','<NAME>','1950-01-01','Wellington, New Zealand'),
('0848560','<NAME>','1934-12-30','Los Angeles, California, USA'),
('0848667','<NAME>','1899-10-29','Tiflis, Georgia, Russian Empire. [now Tbilisi, Georgia]'),
('0851537','<NAME>','1899-02-23','Chicago, Illinois, USA'),
('0851582','<NAME>','1976-08-09','Beaumont, Puy-de-Dome, France'),
('0852118','<NAME>',NULL,NULL),
('0852279','<NAME>','1920-12-13','Freeport, Pennsylvania, USA'),
('0852347','<NAME>','1894-05-20','Wilmington, Delaware, USA'),
('0852965','<NAME>','1969-09-04','London, England, UK'),
('0853130','<NAME>','1895-08-13','New York, New York, USA'),
('0855035','<NAME>',NULL,'Chicago, Illinois, USA'),
('0855039','<NAME>','1971-04-18','Bathgate, West Lothian, Scotland, UK'),
('0855564','<NAME>','1965-07-08','Ivoryton, Connecticut, USA'),
('0856062','<NAME>','1909-03-07','San Francisco, California, USA'),
('0858525','<NAME>','1948-07-27','St. Louis, Missouri, USA'),
('0858977','<NAME>','1888-03-24','London, England, UK'),
('0864869','<NAME>','1901-07-14','New York, New York, USA'),
('0865286','<NAME>','1959-01-01','Adelaide, Australia'),
('0866835','<NAME>','1917-05-07','Henley-on-Thames, Oxfordshire, England, UK'),
('0867144','<NAME>','1905-02-27','Niagara Falls, New York, USA'),
('0872456','<NAME>','1910-03-08','New York, New York, USA'),
('0873148','<NAME>','1942-01-01','Yorkville, New York, USA'),
('0873779','<NAME>',NULL,'La Crescenta, California, USA'),
('0875861','<NAME>','1919-02-12','Plainfield, Indiana, USA'),
('0876138','<NAME>','1971-03-16','El Paso, Texas, USA'),
('0876645','<NAME>','1959-03-14','McKeesport, Pennsylvania, USA'),
('0880855','<NAME>','1929-04-03','Otaru, Hokkaido, Japan'),
('0881038','<NAME>','1953-11-06','Glendale, California, USA'),
('0881631','<NAME>','1972-06-07','Wellington, New Zealand'),
('0882853','<NAME>','1939-11-18','Brooklyn, New York, USA'),
('0886888','<NAME>','1914-12-30','Oakland, California, USA'),
('0889511','<NAME>','1891-03-31','Kisvarda, Austria-Hungary (now Kisvarda, Szambolcs-Szatmar, Hungary)'),
('0889522','<NAME>','1962-09-24','Winnipeg, Manitoba, Canada'),
('0889846','<NAME>',NULL,'Michoacan, Mexico'),
('0891349','<NAME>','1885-01-01','Odessa, Ukraine, Russian Empire. [now independent Ukraine]'),
('0891998','<NAME>','1893-01-22','Potsdam, Germany'),
('0896542','<NAME>','1894-02-08','Galveston, Texas, USA'),
('0897808','<NAME>','1920-01-09','Madrid, Spain'),
('0898634','<NAME>','1939-08-04','Jersey City, New Jersey, USA'),
('0898782','<NAME>','1924-01-01',NULL),
('0899681','<NAME>','1972-09-09','Sibenik, Yugoslavia (now Sibenik, Republic of Croatia)'),
('0903049','<NAME>','1894-05-29','Vienna, Austria-Hungary (now Austria)'),
('0903677','<NAME>','1962-06-16','Pretoria, South Africa'),
('0905152','<NAME>','1967-12-29','Chicago, Illinois, USA'),
('0905993','<NAME>','1949-06-22','Los Angeles, California, USA'),
('0907942','<NAME>','1948-02-29','Sydney, New South Wales, Australia'),
('0908094','<NAME>','1973-09-12','Glendale, California, USA'),
('0908861','<NAME>','1933-04-14','Tottenham, London, England'),
('0908914','<NAME>','1949-12-14','Kansas City, Missouri, USA'),
('0912001','<NAME>','1920-09-18','Newark, New Jersey, USA'),
('0912478','<NAME>','1875-10-26','London, England, UK'),
('0912966','<NAME>','1946-03-05','South Bend, Indiana, USA'),
('0913488','<NAME>','1977-01-31','Bronx, New York, USA'),
('0914612','<NAME>','1990-04-15','Oxford, England, UK'),
('0914778','<NAME>','1879-05-27','Quebec, Canada'),
('0915208','<NAME>','1968-09-28','Shoreham, Kent, England, UK'),
('0915536','<NAME>','1914-01-30','Traverse City, Michigan, USA'),
('0915868','<NAME>','1979-07-18','Chicago, Illinois, USA'),
('0915989','<NAME>','1960-04-04','Nigeria'),
('0916067','<NAME>','1889-11-11','Indianapolis, Indiana, USA'),
('0917188','<NAME>',NULL,NULL),
('0918334','<NAME>','1975-10-05','New York, New York, USA'),
('0919798','<NAME>','1945-02-16','Denver, Colorado, USA'),
('0919991','<NAME>','1977-04-26','New York, New York, USA'),
('0920074','<NAME>','1896-02-29','Brookline, Massachusetts, USA'),
('0921202','<NAME>','1941-08-17','Munich, Germany'),
('0922165','<NAME>',NULL,NULL),
('0922346','<NAME>',NULL,NULL),
('0922671','Floyd ''<NAME>'' Westerman','1935-01-01','South Dakota, USA'),
('0922967','<NAME>','1924-08-21','Cleveland, Ohio, USA'),
('0923210','<NAME>','1951-12-04','Cincinnati, Ohio, USA'),
('0924009','<NAME>',NULL,NULL),
('0925096','<NAME>','1965-05-13','Dunedin, Florida, USA'),
('0925369','<NAME>','1953-08-04','Oak Ridge, Tennessee, USA'),
('0925418','<NAME>','1914-01-01','<NAME>, New Jersey, USA'),
('0925943','<NAME>','1969-09-08','Brooklyn, New York, USA'),
('0926599','<NAME>','1865-06-19','Liverpool, England, UK'),
('0926636','<NAME>','1906-06-04','Winthrop, Massachusetts, USA'),
('0926897','<NAME>','1916-06-13','St. Louis, Missouri, USA'),
('0928425','<NAME>','1915-10-13','New York, New York, USA'),
('0929489','<NAME>','1948-12-12','Leeds, West Yorkshire, England, UK'),
('0930524','<NAME>',NULL,NULL),
('0930732','<NAME>','1880-03-30','Croyden, Surrey, England, UK'),
('0930990','<NAME>','1960-09-01',NULL),
('0931321','<NAME>','1973-07-25','The Bronx, New York, USA'),
('0931404','<NAME>','1968-01-01','Camden Town, North London, England, UK'),
('0932112','<NAME>','1960-03-04','Saint Louis, Missouri, USA'),
('0934179','<NAME>','1946-12-25','Guildford, England, UK'),
('0934362','<NAME>','1946-06-03','Scarborough, North Yorkshire, England, UK'),
('0935345','<NAME>','1944-02-21','Washington, District of Columbia, USA'),
('0936404','<NAME>','1914-09-10','Winchester, Indiana, USA'),
('0936476','<NAME>','1918-05-15','Montreal, Quebec, Canada'),
('0936730','<NAME>','1926-04-12','Atlanta, Georgia, USA'),
('0938372','<NAME>','1902-04-20','Newark-on-Trent, Nottinghamshire, England, UK'),
('0938464','<NAME>','1880-03-28','New York, New York, USA'),
('0939378','<NAME>','1927-07-30','San Francisco, California, USA'),
('0939931','<NAME>','1892-02-09','Brooklyn, New York, USA'),
('0939992','<NAME>','1883-07-10','Philadelphia, Pennsylvania, USA'),
('0940579','<NAME>','1906-12-02','Brandon, Manitoba, Canada'),
('0940946','<NAME>','1930-02-27','Thomasville, Georgia, USA'),
('0941316','<NAME>','1967-04-14','Toronto, Ontario, Canada'),
('0942195','<NAME>','1950-04-15',NULL),
('0942220','<NAME>','1915-05-05','London, England, UK'),
('0942863','<NAME>','1918-10-27','New York, New York, USA'),
('0943237','<NAME>','1951-10-09','Union Township, New Jersey, USA'),
('0943553','<NAME>','1911-08-12','Campgaw, New Jersey, USA'),
('0943758','<NAME>','1902-07-01','Mulhouse, Haut-Rhin, Alsace, France'),
('0943837','<NAME>','1914-01-04','St. Joseph, Missouri, USA'),
('0944087','<NAME>','1906-01-16','London, England, UK'),
('0948078','<NAME>','1929-01-01','Beijing, China'),
('0948772','<NAME>','1941-01-09','London, England, UK'),
('0949350','<NAME>','1940-04-30','New York, New York, USA'),
('0949574','<NAME>','1913-11-04','St. Cloud, Minnesota, USA'),
('0949835','<NAME>','1913-01-06','Salt Lake City, Utah, USA'),
('0950079','<NAME>','1931-05-19',NULL),
('0950867','<NAME>','1937-11-05','Los Angeles, California, USA'),
('0950935','<NAME>','1971-08-22','Washington, District of Columbia, USA'),
('0955471','<NAME>','1979-02-09','Beijing, China'),
('0958387','<NAME>','1950-03-11','Milwaukee, Wisconsin, USA'),
('0959034','<NAME>','1942-01-11','Brooklyn, New York, USA'),
('1019674','<NAME>','1976-09-22','Wellington, New Zealand'),
('1024264','<NAME>',NULL,'Crossville, Tennessee, USA'),
('1046097','<NAME>','1976-10-07','London, Ontario, Canada'),
('1060253','<NAME>','1959-12-31','Everett, Washington, USA'),
('1071252','<NAME>','1994-05-04','California, USA'),
('1102875','Amber Rules',NULL,NULL),
('1102991','<NAME>',NULL,NULL),
('1103162','<NAME>','1970-03-13','Los Angeles, California, USA'),
('1113550','<NAME>','1996-09-16','New York, New York, USA'),
('1131138','<NAME>',NULL,NULL),
('1196732','Saunders Triplets',NULL,NULL),
('1329048','<NAME>',NULL,NULL),
('1342727','<NAME>','1991-09-05','London, England, UK'),
('1369391','<NAME>',NULL,NULL),
('0329481','<NAME>','1978-05-22','Memphis, Tennessee, USA'),
('1315378','<NAME>','1978-11-23','London, England, UK'),
('1470128','<NAME>',NULL,NULL),
('1591496','<NAME>','1976-08-26','Columbia, South Carolina, USA'),
('1664542','<NAME>','1966-03-05','Ft. Lauderdale, Florida, USA'),
('0002006','<NAME>','1960-06-17','El Paso, Texas, USA'),
('0333410','<NAME>','1978-07-12','New York, New York, USA'),
('1249256','Larry The Cable Guy','1963-02-17','Pawnee City, Nebraska, USA'),
('0893659','<NAME>','1964-03-16','Oak Ridge, Tennessee, USA'),
('0000205','<NAME>','1968-11-08','Baltimore, Maryland, USA'),
('0005405','<NAME>','1976-10-03','Cottage Grove, Minnesota, USA'),
('0669681','<NAME>','1986-11-10','New York, New York, USA'),
('0757858','<NAME>','1968-07-20','Rio de Janeiro, Rio de Janeiro, Brazil'),
('0843100','<NAME>','1964-03-07','Portsmouth, Virginia, USA'),
('0000638','<NAME>','1931-03-22','Montreal, Quebec, Canada'),
('1151921','<NAME>',NULL,'Pine Bluff, Arkansas, USA'),
('2713985','<NAME>','1999-01-01',NULL),
('2336223','<NAME>',NULL,NULL),
('0001327','<NAME>','1952-07-17','Baltimore, Maryland, USA'),
('0160988','<NAME>','1970-09-10','Hollywood, Los Angeles, California, USA'),
('1738584','<NAME>',NULL,NULL),
('1893372','<NAME>',NULL,NULL),
('1316767','<NAME>','1970-05-10','Houston, Texas, USA'),
('0906756','<NAME>',NULL,NULL),
('0942482','<NAME>','1965-12-07','Washington, District of Columbia, USA'),
('0468003','<NAME>','1970-12-30',NULL),
('0404111','<NAME>','1962-05-14','Rome, Lazio, Italy'),
('1597084','<NAME>',NULL,NULL),
('0686502','<NAME>',NULL,NULL),
('1345143','<NAME>',NULL,NULL),
('0001082','<NAME>','1968-07-08','Manhasset, New York, USA'),
('1157358','<NAME>','1976-03-23','Winthrop, Iowa, USA'),
('0588087','<NAME>',NULL,NULL),
('2144593','<NAME>',NULL,NULL),
('2178650','<NAME>',NULL,NULL),
('0946734','<NAME>','1963-01-01','St. Helens, Merseyside, England, UK'),
('0001303','<NAME>','1971-08-29','Sarasota, Florida, USA'),
('0167850','<NAME>','1935-06-16','Cleveland, Ohio, USA'),
('0000657','<NAME>','1949-01-26','San Francisco, California, USA'),
('0175916','<NAME>','1974-09-05','Burton-on-Trent, Staffordshire, England, UK'),
('0652663','<NAME>','1969-01-27','Portsmouth, Virginia, USA'),
('0000453','<NAME>','1931-09-12','Goodmayes, Essex, England, UK'),
('0738918','<NAME>','1972-04-15',NULL),
('0812307','<NAME>',NULL,NULL),
('0016141','<NAME>','1962-07-20','Sacramento, California, USA'),
('0101603','<NAME>','1973-12-01','El Paso, Texas, USA'),
('0305261','<NAME>',NULL,'La Puente, California, USA'),
('1146844','<NAME>',NULL,NULL),
('0004306','<NAME>','1945-03-03','Chinchilla, Queensland, Australia'),
('0144657','<NAME>','1957-10-29','Chicago, Illinois, USA'),
('0001413','<NAME>','1950-09-07','Los Angeles, California, USA'),
('0004813','<NAME>','1957-10-25','Kettering, Ohio, USA'),
('0810379','<NAME>','1964-07-03','Paris, France'),
('0790434','<NAME>','1943-12-23','Los Angeles, California, USA'),
('0798899','<NAME>','1957-03-15','New York, New York, USA'),
('1200692','<NAME>','1980-07-05','Paris, France'),
('0586568','<NAME>','1965-11-22','Copenhagen, Denmark'),
('0132709','<NAME>','1940-10-24','Hastings, New Zealand'),
('1535523','<NAME>','1998-07-08','Los Angeles, California, USA'),
('0628601','<NAME>','1972-11-06','London, England, UK'),
('0397788','<NAME>',NULL,NULL),
('0439170','<NAME>','1923-11-28','Wilkes Barre, Pennsylvania, USA'),
('0610831','<NAME>','1967-05-20','Rome, Italy'),
('0479471','<NAME>','1986-06-11','Los Angeles, California, USA'),
('1083271','<NAME>','1986-05-16','Rockwood, Tennessee, USA'),
('0241049','<NAME>','1972-11-14','Minot, North Dakota, USA'),
('0879085','<NAME>','1978-12-30','Watts Quarters, Los Angeles, California, USA'),
('1592225','<NAME>','1984-07-11','Launceston, Tasmania, Australia'),
('0124930','<NAME>','1969-11-13','Glasgow, Scotland, UK'),
('0372176','<NAME>','1973-10-03','Bermuda'),
('0922035','<NAME>','1969-10-15','Sheffield, Yorkshire, England, UK'),
('0920992','<NAME>','1965-09-21','Marrickville, Sydney, New South Wales, Australia'),
('0716490','<NAME>','1965-05-16','Swansea, Wales, UK'),
('0811583','<NAME>','1966-03-01','Green Bay, Wisconsin, USA'),
('0065608','<NAME>','1968-09-16','Hollywood, California, USA'),
('0736622','<NAME>','1982-04-15','Vancouver, British Columbia, Canada'),
('0001337','<NAME>','1978-11-24','Washington, District of Columbia, USA'),
('0005182','<NAME>','1972-03-26','San Francisco, California, USA'),
('0781981','<NAME>','1980-01-18','Los Angeles, California, USA'),
('0031976','<NAME>','1967-12-06','Syosset, New York, USA'),
('0564215','<NAME>','1979-04-21','Glasgow, Scotland, UK'),
('0000096','<NAME>','1968-08-09','Chicago, Illinois, USA'),
('0564402','<NAME>','1957-08-25','Cambridge, Cambridgeshire, England, UK'),
('0531817','<NAME>','1967-10-28','Glasgow, Scotland, UK'),
('0000545','<NAME>','1945-07-26','Chiswick, London, England, UK'),
('0421105','<NAME>','1957-05-10','Essex, England, UK'),
('0019885','<NAME>','1953-10-26','London, England, UK'),
('0843401','<NAME>','1934-01-06','London, England, UK'),
('0001241','<NAME>','1941-06-20','Leicester, England, UK'),
('0200452','<NAME>','1984-06-19','Wilton, Connecticut, USA'),
('0000273','<NAME>','1934-03-26','New York City, New York, USA'),
('0206760','<NAME>','1957-07-07','Alameda County, California, USA'),
('1617685','<NAME>','1981-09-12','Chicago, Illinois, USA'),
('0174374','<NAME>','1955-10-22','New York, New York, USA'),
('0001507','<NAME>','1946-07-13','Los Angeles, California, USA'),
('0631490','<NAME>','1949-12-12','Caterham, Surrey, England, UK'),
('0001173','<NAME>','1968-03-12','Cupertino, California, USA'),
('0000323','<NAME>','1933-03-14','Rotherhithe, London, England, UK'),
('0350454','M<NAME>','1977-11-16','Lower East Side, New York, New York, USA'),
('0000375','<NAME> Jr.','1965-04-04','New York, New York, USA'),
('0005024','<NAME>','1969-03-11','Chicago, Illinois, USA'),
('0004753','<NAME>','1974-11-17','Bismarck, North Dakota, USA'),
('0935653','<NAME>','1957-02-19','Hackney, London, England, UK'),
('0103797','<NAME>','1983-04-15','Sao Paulo, Brazil'),
('2253071','<NAME>',NULL,NULL),
('0724757','<NAME>','1967-11-23','Chicago, Illinois, USA'),
('2405238','<NAME>','2000-10-31','Los Angeles, California, USA'),
('1349376','<NAME>',NULL,NULL),
('0000234','<NAME>','1975-08-07','Benoni, Gauteng, South Africa'),
('0000867','<NAME>','1969-01-14','Rye, New York, USA'),
('2052567','<NAME>',NULL,NULL),
('0550371','<NAME>','1968-01-01',NULL),
('0000916','<NAME>','1964-03-11','New York, New York, USA'),
('0123785','<NAME>','1948-07-12','Jamesville, New York, USA'),
('2264184','<NAME>',NULL,NULL),
('0307531','<NAME>','1962-06-05','Chicago, Illinois, USA'),
('0929609','<NAME>','1939-09-18','Shaker Heights, Ohio, USA'),
('3050831','MacInTalk',NULL,NULL),
('0004056','<NAME>','1965-12-03','Boston, Massachusetts, USA'),
('1208167','<NAME>','1976-07-15','Algermissen, Lower Saxony, Germany'),
('0005509','<NAME>','1963-08-08','New York, New York, USA'),
('0189144','<NAME>','1964-04-04','Atlanta, Georgia, USA'),
('0724460','<NAME>','1979-09-11','Baton Rouge, Louisiana, USA'),
('0519043','<NAME>','1978-06-02','Fairfield, Connecticut, USA'),
('0384722','<NAME>',NULL,NULL),
('0574534','<NAME>','1942-09-29','Blackburn, Lancashire, England, UK'),
('0651706','<NAME>',NULL,NULL),
('0000993','<NAME>','1933-04-26','San Antonio, Texas, USA'),
('0004715','<NAME>','1970-05-04','Toronto, Ontario, Canada'),
('0371755','<NAME>',NULL,NULL),
('0000326','<NAME>','1956-08-21','Liverpool, England, UK'),
('0004862','<NAME>','1965-02-23','Boulder, Colorado, USA'),
('0633223','<NAME>','1966-04-09','New York, New York, USA'),
('0636562','<NAME>','1954-11-13','Madison, Wisconsin, USA'),
('0455078','<NAME>','1954-09-14','Scranton, Pennsylvania, USA'),
('0680983','<NAME>','1987-02-21','Halifax, Nova Scotia, Canada'),
('0148418','<NAME>','1988-06-07','Brampton, Ontario, Canada'),
('0004950','<NAME>','1972-04-17','Houston, Texas, USA'),
('0005049','<NAME>','1959-11-19','Dayton, Ohio, USA'),
('0718646','<NAME>','1977-10-19','Montreal, Quebec, Canada'),
('1602660','<NAME>','1981-08-20','England, UK'),
('1670137','<NAME>','1995-07-09','Ilkley, Yorkshire, England, UK'),
('0011470','<NAME>','1966-12-01','Auckland, New Zealand'),
('0760796','<NAME>','1960-10-12','Tokyo, Japan'),
('0040939','<NAME>','1965-01-04','Tel Aviv, Israel'),
('0711840','<NAME>','1969-03-28','Miami Beach, Florida, USA'),
('1086543','<NAME>','1985-12-03','Allentown, Pennsylvania, USA'),
('1893071','<NAME>','1956-01-07','Central Square, New York, USA'),
('0000147','<NAME>','1960-09-10','Grayshott, Hampshire, England, UK'),
('1630273','<NAME>','1957-06-17',NULL),
('0000849','<NAME>','1969-03-01','Las Palmas de Gran Canaria, Gran Canaria, Canary Islands, Spain'),
('0000982','<NAME>','1968-02-12','Los Angeles, California, USA'),
('0000437','<NAME>','1961-07-23','Midland, Texas, USA'),
('0531808','<NAME>','1976-02-23','Glasgow, Scotland, UK'),
('0001053','<NAME>','1957-09-21','Minneapolis, Minnesota, USA'),
('2872491','<NAME>',NULL,NULL),
('2872058','<NAME>',NULL,NULL),
('2871845','<NAME>',NULL,NULL),
('2872133','<NAME>',NULL,NULL),
('0000759','<NAME>','1970-06-26','Studio City, California, USA'),
('0182839','<NAME>','1975-09-30','Paris, France'),
('0856500','<NAME>','1971-01-17','Lyon, Rhone, France'),
('0339621','<NAME>','1953-09-08','Paris, France'),
('0782561','<NAME>','1966-06-22','Paris, France'),
('0746162','<NAME>','1967-01-26','Dunkerque, Nord, France'),
('0196860','<NAME>','1967-06-26','La Ciotat, Bouches-du-Rhone, France'),
('0001574','<NAME>','1955-04-24','Mount Vernon, New York, USA'),
('2796342','<NAME>',NULL,NULL),
('0006904','<NAME>','1956-09-11','Manhattan, New York, USA'),
('2917590','<NAME>','1989-08-21','London, England, UK'),
('2973712','<NAME>','2000-02-03','Los Angeles, California, USA'),
('0677037','<NAME>','1961-01','Wooster, Ohio, USA'),
('0177896','<NAME>','1975-01-05','Philadelphia, Pennsylvania, USA'),
('1159180','<NAME>','1974-01-24','Atlanta, Georgia, USA'),
('0302108','<NAME>','1969-10-01','Wilkesboro, North Carolina, USA'),
('1517976','<NAME>','1980-08-26','Los Angeles, California, USA'),
('0704270','<NAME>','1977-06-02','Pittsburgh, Pennsylvania, USA'),
('1148186','<NAME>','1991-12-15','New Jersey, USA'),
('0228327','<NAME>',NULL,NULL),
('1616586','<NAME>',NULL,NULL),
('0281068','<NAME>','1965-05-19','Honolulu, Hawaii, USA'),
('1723600','<NAME>',NULL,NULL),
('0829576','<NAME>','1990-04-09','Los Angeles, California, USA'),
('1500155','<NAME>','1986-05-13','London, England, UK'),
('0121605','<NAME>','1966-11-25','Bellingham, Washington, USA'),
('2230865','<NAME>','1987-02-21','Jacksonville, Florida, USA'),
('1223023','<NAME>','1988-05-17','West Los Angeles, California, USA'),
('0000630','<NAME>','1967-10-04','San Francisco, California, USA'),
('1443238','<NAME>','1975-03-15','Los Angeles, California, U.S.A'),
('1211488','<NAME>','1979-06-01','Texas, USA'),
('0010736','<NAME>','1974-08-20','Aviano, Italy'),
('1385871','<NAME>','1979-11-14','Berdyansk, Ukraine'),
('0023832','<NAME>','1965-10-25','Neuilly-sur-Seine, Hauts-de-Seine, France'),
('0005351','<NAME>','1976-10-23','Vancouver, British Columbia, Canada'),
('0924508','<NAME>','1922-01-17','Oak Park, Illinois, USA'),
('0651159','<NAME>','1968-05-23','Brooklyn, New York, USA'),
('1542291','<NAME>','1978-05-31','Suffern, New York, USA'),
('3057402','<NAME>','1991-11-04','Fresno, California, USA'),
('3115704','<NAME>',NULL,'Lansing, Michigan, USA'),
('0355083','<NAME>','1963-02-12','Seattle, Washington, USA'),
('1218757','<NAME>','1978-11-08','Sydney, New South Wales, Australia'),
('1724323','<NAME>','1979-07-16','Grundy, Virginia, USA'),
('2263115','<NAME>','1993-07-01','Bryan, Texas, USA'),
('1192254','<NAME>','1983-09-21','Columbus, Ohio, USA'),
('0650702','<NAME>','1960-08-06','San Francisco, California, USA'),
('0340973','<NAME>','1957-06-17','Glendale, California, USA'),
('0913175','<NAME>','1961-02-23','San Francisco, California, USA'),
('0015382','<NAME>','1967-08-22','Islington, London, England, UK'),
('0001172','<NAME>','1964-02-16','Salford, Lancashire, England, UK'),
('0280081','<NAME>','1976-08-13','Paris, France'),
('0330687','<NAME>','1981-02-17','Los Angeles, California, USA'),
('1795989','<NAME>','1997-07-13','Fallbrook, California, USA'),
('0386472','<NAME>','1985-03-13','Palms, California, USA'),
('0526019','<NAME>','1979-12-29','Mexico City, Distrito Federal, Mexico'),
('0354198','<NAME>','1969-02-18','Munich, Germany'),
('1269088','<NAME>','1990-07-04','Bargteheide, Schleswig Holstein, Germany'),
('0521443','<NAME>','1960-11-15','Hamburg, Germany'),
('0356017','<NAME>','1982-05-19','London, England, UK'),
('0424060','<NAME>','1984-11-22','New York City, New York, USA'),
('0004851','<NAME>','1974-04-28','Madrid, Spain'),
('0919525','<NAME>',NULL,NULL),
('2353862','<NAME>','1990-04-23','Harrow, London, England, UK'),
('0438463','<NAME>','1959-12-24','Chembur, Maharashtra, India'),
('0958861','<NAME>',NULL,NULL),
('2951768','<NAME>','1984-10-18','Bombay, Maharashtra, India'),
('0795661','<NAME>',NULL,NULL),
('0230032','<NAME>','1968-08-10','Bloomington, Minnesota, USA'),
('0680846','<NAME>','1970-12-20','Brooklyn, New York, USA'),
('1224299','<NAME>',NULL,NULL),
('0970447','<NAME>','1968-07-11','Lubbock, Texas, USA'),
('0862211','<NAME>',NULL,NULL),
('0362566','<NAME>','1955-10-21','Cameron, Texas, USA'),
('0569891','<NAME>',NULL,NULL),
('0004303','<NAME>','1963-05-12','South Africa'),
('0281945','<NAME>','1966-05-01','Detroit, Michigan, USA'),
('0510912','<NAME>',1973,'Taipei, Taiwan'),
('0139867','<NAME>',NULL,NULL),
('0603628','<NAME>',NULL,NULL),
('0000965','<NAME>','1956-10-20','Manchester, England, UK'),
('0941777','<NAME>','1976-08-02','Godalming, Surrey, England, UK'),
('0757855','<NAME>','1978-06-19','New Jersey, USA'),
('0002332','<NAME>','1952-07-11','New York City, New York, USA'),
('0881279','<NAME>','1967-08-08','Cleveland, Ohio, USA'),
('1985859','<NAME>','1989-10-14','Canberra, Australia'),
('0004266','<NAME>','1982-11-12','Brooklyn, New York, USA'),
('0005377','<NAME>','1968-11-05','Daly City, California, USA'),
('1210124','<NAME>','1992-02-11','Grand Rapids, Michigan, USA'),
('1882152','<NAME>','1983-12-10','Hamilton, Victoria, Australia'),
('0397171','<NAME>','1981-03-02','Los Angeles, California, USA'),
('1720541','<NAME>','1969-09-26','UK'),
('0419363','<NAME>',NULL,NULL),
('0447695','<NAME>','1985-08-09','Portland, Maine, USA'),
('0919363','<NAME>','1969-11-30','New York City, New York, USA'),
('0362766','<NAME>','1977-09-15','Hammersmith, London, England, UK'),
('0913822','<NAME>','1959-10-21','Uonuma, Japan'),
('0005210','<NAME>','1967-05-01','Delhi, Louisiana, USA'),
('2466842','<NAME>','1984-08-15','Bronx, New York City, New York, USA'),
('2934314','<NAME>','1989-03-18','Guildford, Surrey, England, UK'),
('0359387','<NAME>','1957-01-01','Longview, Texas, USA'),
('1258970','<NAME>','1975-06-04','Grays, Essex, England, UK'),
('1853544','<NAME>',NULL,NULL),
('0593610','<NAME>',NULL,NULL),
('1157048','<NAME>','1980-09-29','Lake Charles, Louisiana, USA'),
('1693763','<NAME>','1980-03-09','Las Vegas, Nevada, USA'),
('0272401','<NAME>','1962-05-17','Glasgow, Scotland, UK'),
('1065229','America Ferrera','1984-04-18','Los Angeles, California, USA'),
('1706767','<NAME>','1983-12-20','Los Angeles, California, USA'),
('0213450','<NAME>','1970-06-07',NULL),
('0835016','<NAME>','1963-01-01','London, England, UK'),
('0005363','<NAME>','1968-09-10','Hatfield, Hertfordshire, England, UK'),
('0378245','<NAME>','1970-09-11','Washington, District of Columbia, USA'),
('3924219','<NAME>',NULL,NULL),
('0950552','<NAME>','1958-01-01','Beijing, China'),
('0958969','<NAME>','1965-07-01','Netherlands'),
('0001605','<NAME>','1972-01-11','New York City, New York, USA'),
('0252230','<NAME>','1974-07-10','Forest Gate, London, England, UK'),
('0002076','<NAME>','1966-09-25','Putney, London, England, UK'),
('2605345','<NAME>','1986-01-12','Gravesend, Kent, England, UK'),
('0504642','<NAME>','1973-06-17','Paris, France'),
('0005450','<NAME>','1964-07-22','Birmingham, Michigan, USA'),
('0001705','<NAME>','1963-10-31','San Francisco, California, USA'),
('0719637','<NAME>','1971-01-07','Modesto, California, USA'),
('1107001','<NAME>','1979-09-23','New Orleans, Louisiana, USA'),
('1310016','<NAME>','1974-05-13','Toms River, New Jersey, USA'),
('0000941','<NAME>','1951-11-27','San Carlos, California, USA'),
('0443856','<NAME>','1952-09-26','Buffalo, New York, USA'),
('2485687','<NAME>',NULL,NULL),
('0379200','<NAME>','1946-03-29','Brooklyn, New York, USA'),
('0101005','<NAME>','1938-01-01','Denver, Colorado, USA'),
('0178376','<NAME>',NULL,NULL),
('0491259','<NAME>','1983-02-21','Paris, France'),
('0910607','<NAME>','1956-10-04','Vienna, Austria'),
('0744834','<NAME>','1972-04-18','Boston, Massachusetts, USA'),
('1055413','<NAME>','1977-04-02','Heidelberg, Germany'),
('0000233','<NAME>','1963-03-27','Knoxville, Tennessee, USA'),
('2829737','<NAME>','1983-05-06','Bedford-Stuyvesant, Brooklyn, New York City, New York, USA'),
('0594898','Mo''Nique','1967-12-11','Woodlawn, Maryland, USA'),
('1745736','<NAME>','1975-12-05','Los Angeles, California, USA'),
('0001014','<NAME>','1969-03-27','Huntington, New York, USA'),
('0791868','<NAME>','1967-04-22','Chicago, Illinois, USA'),
('0200005','<NAME>','1959-12-24','Philadelphia, Pennsylvania, USA'),
('0145284','<NAME>','1940-01-14','Croydon, Surrey, England, UK'),
('0856050','<NAME>','1945-08-15','Bristol, England, UK'),
('0367431','<NAME>','1931-06-03','London, England, UK'),
('2492819','<NAME>','1987-04-18','Plymouth, Devon, England, UK'),
('0421822','<NAME>',1969,'Greensboro, North Carolina, USA'),
('0573618','<NAME>','1956-04-27','Bristol, England, UK'),
('0601553','<NAME>','1984-04-10','Nashua, New Hampshire, USA'),
('0614220','<NAME>','1959-03-07','Corona, New York, USA'),
('0000579','<NAME>','1950-04-13','New York City, New York, USA'),
('0301370','<NAME>','1948-01-18','Jackson, Mississippi, USA'),
('1977355','<NAME>',NULL,NULL),
('0397174','<NAME>',NULL,NULL),
('0607865','<NAME>','1971-12-01','London, England, UK'),
('0412850','<NAME>','1962-02-07','Aden, Yemen'),
('0506977','<NAME>',NULL,NULL),
('1165110','<NAME>','1983-08-11','Melbourne, Victoria, Australia'),
('2017943','<NAME>','1982-04-05','London, England, UK'),
('1659221','<NAME>','1983-08-13','Constanta, Romania'),
('0002653','<NAME>','1950-05-13','Austin, Texas, USA'),
('1330560','<NAME>','1984-09-03','Roseau, Minnesota, USA'),
('1312575','<NAME>','1984-03-10','New York City, New York, USA'),
('0000310','<NAME>','1950-05-12','Elgin, Illinois, USA'),
('0289656','<NAME>','1968-03-14','Leeds, England, UK'),
('2676052','<NAME>','1974-05-03','USA'),
('0271657','<NAME>','1987-09-22','Kensington, London, England, UK'),
('1012501','Rup<NAME>','1972-10-26','England, UK'),
('2794962','<NAME>','1996-12-11','California, USA'),
('1325419','<NAME>','1973-08-22','Canandaigua, New York, USA'),
('0126284','<NAME>','1979-07-24','Balmain, Sydney, New South Wales, Australia'),
('0748973','<NAME>','1972-07-27','Gainesville, Florida, USA'),
('2608689','<NAME>','1980-05-02','Kansas City, Missouri, USA'),
('0565250','<NAME>','1970-08-26','Plainfield, Illinois, USA'),
('0270552','<NAME>','1962-09-17','Royal Oak, Michigan, USA'),
('0950775','<NAME>',NULL,NULL),
('0001394','<NAME>','1938-10-22','Leytonstone, London, England, UK'),
('0691928','<NAME>',1967,'England, UK'),
('0228960','<NAME>',NULL,NULL),
('0393799','<NAME>',1972,'London, England, UK'),
('0005109','<NAME>','1983-08-14','Chernovtsy, Chernivtsi, Ukraine'),
('0004716','<NAME>','1969-02-12','Brooklyn, New York, USA'),
('0502425','<NAME>','1960-09-14','New York City, New York, USA'),
('3923953','<NAME>',NULL,NULL),
('0751102','<NAME>','1958-08-20','New York City, New York, USA'),
('1089991','<NAME>','1981-02-09','Westminster, London, England, UK'),
('0001608','<NAME>','1970-04-04','Campbell River, British Columbia, Canada'),
('0000110','<NAME>','1960-12-10','Belfast, Northern Ireland, UK'),
('0749263','<NAME>','1967-11-22','Kenosha, Wisconsin, USA'),
('0923736','<NAME>','1964-06-23','New York City, New York, USA'),
('0001804','<NAME>','1960-11-11','Peekskill, New York, USA'),
('2225369','<NAME>','1990-08-15','Louisville, Kentucky, USA'),
('3094377','<NAME>','2000-06-01','Albuquerque, New Mexico, USA'),
('2955013','<NAME>','1990-01-13','Melbourne, Victoria, Australia'),
('0002657','<NAME>','1956-11-03','Los Angeles, California, USA'),
('0083655','<NAME>','1953-07-13','San Antonio, Texas, USA'),
('1940449','<NAME>','1983-08-20','Los Angeles, California, USA'),
('1297015','<NAME>','1988-11-06','Scottsdale, Arizona, USA'),
('0406975','<NAME>','1967-07-22','Haverfordwest, Pembrokeshire, Wales, UK'),
('1989536','<NAME>','1974-08-31',NULL),
('0175262','<NAME>','1942-11-24','Anderston, Glasgow, Scotland, UK'),
('0910278','<NAME>','1950-02-22','Smethwick, West Midlands, England, UK'),
('0028764','<NAME>',NULL,NULL),
('0152312','<NAME>',NULL,NULL),
('0532235','<NAME>','1973-10-26','Kent, Connecticut, USA'),
('0570364','<NAME>','1971-11-20','Rome, Lazio, Italy'),
('0000610','<NAME>','1974-12-17','Los Angeles, California, USA'),
('1374980','<NAME>','1987-10-18','San Luis Obispo, California, USA'),
('2357847','<NAME>','1989-12-13','Reading, Pennsylvania, USA'),
('0719208','<NAME>',NULL,NULL),
('0049633','<NAME>',NULL,NULL),
('0670408','<NAME>','1970-02-14','Gloucester, Gloucestershire, England, UK'),
('0638824','<NAME>','1960-11-08',NULL),
('0636426','<NAME>','1979-12-28',NULL),
('0364813','<NAME>','1961-08-24','London, England, UK'),
('1318596','<NAME>','1974-01-10','New Zealand'),
('0205626','<NAME>','1965-08-11','Saint Matthews, South Carolina, USA'),
('0818055','<NAME>','1970-05-25','Montgomery, Alabama, USA'),
('1567113','<NAME>','1977-03-24','Sacramento, California, USA'),
('0853238','<NAME>',NULL,NULL),
('0241121','<NAME>','1972-06-19','Rueil-Malmaison, Hauts-de-Seine, France'),
('0067367','<NAME>','1976-07-07','Buenos Aires, Argentina'),
('0000542','<NAME>','1964-01-13','Los Angeles, California, USA'),
('0371890','<NAME>','1967-03-29','Paris, France'),
('0114742','<NAME>','1946-05-06','Bristol, England, UK'),
('1927126','<NAME>',NULL,NULL),
('3564817','Phoebe Waller-Bridge',NULL,NULL),
('0502097','<NAME>',NULL,NULL),
('0590122','<NAME>',1966,'Berekley, California, USA'),
('0000948','<NAME>','1961-12-16','Pittsburgh, Pennsylvania, USA'),
('0000973','<NAME>','1963-12-16','San Francisco, California, USA'),
('1388927','<NAME>','1993-05-14','Los Angeles, California, USA'),
('0365140','<NAME>','1976-09-06','London, England, UK'),
('0293509','<NAME>','1971-09-08','Aldershot, Hampshire, England, UK'),
('0035514','<NAME>','1971-08-22','Leicester, Leicestershire, England, UK'),
('0832792','<NAME>',1955,'Edinburgh, Scotland, UK'),
('0574615','<NAME>',1961,'Glasgow, Scotland, UK'),
('0004906','<NAME>','1973-11-26','Queens, New York City, New York, USA'),
('0714147','<NAME>','1975-06-15','Bloomfield, Michigan, USA'),
('0147147','<NAME>','1983-05-05','Jersey, Channel Islands, UK'),
('0788335','<NAME>','1974-08-07','Lexington, Kentucky, USA'),
('0425005','<NAME>','1972-05-02','Hayward, California, USA'),
('0931329','<NAME>','1980-09-09','Kalispell, Montana, USA'),
('0798971','<NAME>','1970-12-01','Bedford, New Hampshire, USA'),
('1442113','<NAME>','1973-05-27','Macon, Georgia, USA'),
('0601781','<NAME>',NULL,NULL),
('0001416','<NAME>','1959-03-23','Miami, Florida, USA'),
('0210320','<NAME>',NULL,NULL),
('0761498','<NAME>','1960-03-12','Colorado, USA'),
('0000652','<NAME>','1960-02-07','Boston, Massachusetts, USA'),
('0186505','<NAME>','1956-03-07','Canoga Park, California, USA'),
('0001255','<NAME>','1949-03-16','London, Ontario, Canada'),
('0915865','<NAME>','1947-05-25','Sydney, New South Wales, Australia'),
('4139037','<NAME>',NULL,NULL),
('0451234','<NAME>','1967-01-07','Jaipur, Rajasthan, India'),
('4853568','<NAME>',NULL,NULL),
('5306953','<NAME>',NULL,NULL),
('1300009','<NAME>',NULL,NULL),
('0257969','<NAME>','1975-09-22','Houston, Texas, USA'),
('2020146','<NAME>',1989,'Israel'),
('0197647','<NAME>','1978-05-01','New York City, New York, USA'),
('0091253','<NAME>',NULL,NULL),
('0286975','<NAME>','1969-11-30','Illertissen, Bavaria, Germany'),
('0768959','<NAME>',NULL,NULL),
('4425051','<NAME>','1992-04-24',NULL),
('1193262','<NAME>',NULL,NULL),
('0480808','<NAME>','1940-08-02',NULL),
('0068338','<NAME>','1980-07-18','Huntington Woods, Michigan, USA'),
('0579953','<NAME>','1971-05-30','Syosset, New York, USA'),
('2676147','<NAME>','1985-03-26','Lancaster, Pennsylvania, USA'),
('1265802','<NAME>','1981-02-23','Hollywood, Florida, USA'),
('2949014','<NAME>',NULL,NULL),
('1601644','<NAME>',NULL,NULL),
('0695435','<NAME>','1979-06-21','Virginia, Minnesota, USA'),
('1176985','<NAME>','1969-01-18','Washington, District of Columbia, USA'),
('0348181','<NAME>','1970-08-05','Saint Louis, Missouri, USA'),
('1241511','<NAME>',NULL,NULL),
('2060857','<NAME>',NULL,NULL),
('0751577','<NAME>',NULL,NULL),
('0751648','<NAME>',NULL,NULL),
('0006969','<NAME>','1974-02-10','Pittsfield, Massachusetts, USA'),
('1911947','<NAME>',NULL,NULL),
('1555340','<NAME>','1982-12-29','Los Angeles County, California, USA'),
('0123262','<NAME>',NULL,NULL),
('0520488','<NAME>','1975-07-12','Miami, Florida, USA'),
('2443758','<NAME>','1995-01-09','Westchester County, New York, USA'),
('2930503','<NAME>','1992-01-23','Longmont, Colorado, USA'),
('1102577','<NAME>','1998-04-09','Conyers, Georgia, USA'),
('1663205','<NAME>','1973-11-27','Johannesburg, South Africa'),
('0544334','<NAME>','1956-03-12','Brighton, East Sussex, England, UK'),
('0001767','<NAME>','1956-01-09','London, England, UK'),
('0834902','<NAME>',NULL,NULL),
('0785227','<NAME>','1964-04-20','Ruislip, London, England, UK'),
('0164809','<NAME>','1969-07-17','Winton, Queensland, Australia'),
('0005392','<NAME>','1976-03-23','Fountain Valley, California, USA'),
('1527905','<NAME>','1982-07-09','Pontefract, Yorkshire, England, UK'),
('0716257','<NAME>','1966-04-27','Rockville Center, New York, USA'),
('0851930','<NAME>',1965,NULL),
('2851530','<NAME>','1987-02-06','Allentown, Pennsylvania, USA'),
('0272173','<NAME>','1958-08-22','Boston, Massachusetts, USA'),
('1093951','<NAME>-Johnson','1990-06-13','High Wycombe, Buckinghamshire, England, UK'),
('2640264','<NAME>',NULL,NULL),
('0647634','<NAME>','1989-02-16','Sherman Oaks, California, USA'),
('2284484','<NAME>',NULL,NULL),
('0751518','<NAME>','1986-07-10','Los Angeles, California, USA'),
('0828226','<NAME>','1986-10-07','Los Angeles, California, USA'),
('2024927','<NAME>','1984-11-28','Grand Forks, North Dakota, USA'),
('0279720','<NAME>','1984-03-13','Vancouver, British Columbia, Canada'),
('0509448','<NAME>','1976-09-15','Johannesburg, South Africa'),
('4833412','<NAME>',NULL,NULL),
('6003176','<NAME>',NULL,NULL),
('0061262','<NAME>','1963-03-01','New Orleans, Louisiana, USA'),
('2588606','<NAME>','1969-10-09','London, England, UK'),
('0000190','<NAME>','1969-11-04','Uvalde, Texas, USA'),
('0001467','<NAME>','1971-12-26','Bossier City, Louisiana, USA'),
('0641354','<NAME>','1962-01-17','Kansas City, Missouri, USA'),
('0001872','<NAME>','1967-11-13','Marshall, Minnesota, USA'),
('0885249','<NAME>',1963,'Montreal, Quebec, Canada'),
('0137516','<NAME>',NULL,NULL),
('0176384','<NAME>','1952-05-06','Melrose, Massachusetts, USA'),
('1973610','<NAME>',NULL,NULL),
('2143282','<NAME>','1983-03-01','Mexico City, Distrito Federal, Mexico'),
('1475594','<NAME>','1980-04-26','Cullman, Alabama, USA'),
('1339223','<NAME>',NULL,NULL),
('1119880','<NAME>','1976-09-13','San Francisco, California, USA'),
('0688132','<NAME>','1971-09-16','Burlington, Massachusetts, USA'),
('0809613','<NAME>','1951-07-10','Lemay, Missouri, USA'),
('0454236','<NAME>','1956-11-22','Trenton, New Jersey, USA'),
('0352778','<NAME>','1978-06-07','Tulsa, Oklahoma, USA'),
('0085400','<NAME>','1948-08-30','Silver Spring, Maryland, USA'),
('0215455','<NAME>','1959-12-31','Philippines'),
('0005458','<NAME>','1967-07-26','Shirebrook, Derbyshire, England, UK'),
('1490123','<NAME>','1977-02-26','Kuching, Sarawak, Malaysia'),
('0358316','<NAME>','1971-03-10','St. Louis, Missouri, USA'),
('0176869','<NAME>','1965-10-14','Middleton, Manchester, England, UK'),
('0272581','<NAME>','1983-10-19','Sweden'),
('0003160','<NAME>',1968,'Princeton, New Jersey, USA'),
('0973177','<NAME>','1986-10-22','West Chester, Pennsylvania, USA'),
('6518675','<NAME>',NULL,NULL),
('0715314','<NAME>','1965-05-01','Bixby, Oklahoma, USA'),
('0731826','<NAME>',NULL,NULL),
('1242688','<NAME>','1992-10-12','Union, Kentucky, USA'),
('0012523','<NAME>','1965-11-26','Northbrook, Illinois, USA'),
('3994407','<NAME>',NULL,'Portland, Oregon, USA'),
('2024644','<NAME>','1979-11-28','USA'),
('2554352','<NAME>','1981-06-04','Denver, Colorado, USA'),
('1512166','<NAME>','1983-04-10','San Francisco, California, USA'),
('2320658','<NAME>',NULL,NULL),
('0930261','<NAME>',NULL,NULL),
('3237775','<NAME>','2000-11-10','USA'),
('3154303','<NAME>',NULL,NULL),
('4141252','<NAME>','1989-04-05','Esher, Surrey, England, UK'),
('0534635','<NAME>','1986-06-18','Elderslie, Renfrewshire, Scotland, UK'),
('1996829','<NAME>',1979,'London, England, UK'),
('2313103','<NAME>','1980-03-02','Sydney, New South Wales, Australia'),
('0811242','<NAME>','1986-03-09','Tampa, Florida, USA'),
('2799457','<NAME>','1987-09-23','New York City, New York, USA'),
('2196179','<NAME>',NULL,NULL),
('3691128','<NAME>',NULL,NULL),
('0327944','<NAME>','1963-08-15','Mexico City, Distrito Federal, Mexico'),
('1519666','<NAME>','1982-01-06','London, England, UK'),
('0428065','<NAME>','1983-10-17','Birmingham, West Midlands, England, UK'),
('4350114','<NAME>',NULL,NULL),
('6240141','<NAME>',NULL,NULL),
('6887408','<NAME>',NULL,NULL),
('1016428','<NAME>','1963-04-30','Truro, Cornwall, England, UK'),
('0574460','<NAME>','1977-07-23','Gainesville, Florida, USA'),
('1446060','<NAME>','1987-05-13','Richmond, Virginia, USA'),
('0322144','<NAME>','2015-03-10','Flushing, Queens, New York City, New York, USA'),
('0922903','Wash Westmoreland','1966-03-04','Leeds, England, UK'),
('1886602','<NAME>','1987-02-20','Downingtown, Pennsylvania, USA'),
('0799777','<NAME>','1955-01-09','Detroit, Michigan, USA'),
('0001663','<NAME>','1957-03-30','New York City, New York, USA'),
('2552034','<NAME>','1988-10-04','Littleton, Colorado, USA'),
('3271473','<NAME>',NULL,'Kensington, Connecticut, USA'),
('3227090','<NAME>','1985-01-19','Providence, Rhode Island, USA'),
('1294664','<NAME>','1994-08-27','Austin, Texas, USA'),
('6567391','<NAME>',NULL,NULL),
('1085951','<NAME>','1994-05-29','San Miguel de Allende, Guanajuato, Mexico'),
('0697637','<NAME>',NULL,NULL),
('0000500','<NAME>','1960-07-30','Houston, Texas, USA'),
('3485845','<NAME>','1983-11-19','San Diego, California, USA'),
('5397459','<NAME>','1992-04-10','London, England, UK'),
('0642145','<NAME>','1946-04-12','Youngstown, Ohio, USA'),
('0647698','<NAME>','1975-08-18','Portland, Oregon, USA'),
('5348776','<NAME>',NULL,NULL),
('0533691','<NAME>',NULL,NULL),
('5888481','<NAME>','2003-12-22','New York City, New York, USA'),
('0252961','<NAME>','1972-09-06','Hackney, London, England, UK'),
('0127373','<NAME>.K.','1967-09-12','Washington, District of Columbia, USA'),
('0832314','<NAME>','1971-09-09','Kansas City, Kansas, USA'),
('0366389','<NAME>','1979-07-06','Philadelphia, Pennsylvania, USA'),
('2809577','<NAME>','1982-03-25','Milton, Massachusetts, USA'),
('0155528','<NAME>',NULL,NULL),
('4175221','<NAME>',NULL,NULL),
('4534098','<NAME>','1983-03-29','Camden, London, England, UK'),
('0073088','<NAME>','1970-05-25','Vancouver, British Columbia, Canada'),
('1292973','<NAME>','1978-12-01','Cologne, North Rhine-Westphalia, Germany'),
('1783265','<NAME>',NULL,NULL),
('1535594','<NAME>','1977-12-01','Canton, Ohio, USA'),
('0251986','<NAME>','1983-10-05','New York City, New York, USA'),
('2968738','<NAME>',NULL,NULL),
('0054697','<NAME>','1977-02-18','Chicago, Illinois, USA'),
('3053338','Margot Robbie','1990-07-02','Dalby, Queensland, Australia'),
('0246024','<NAME>','1978-08-27','Toronto, Canada'),
('0043742','<NAME>','1968-01-18','Champaign, Illinois, USA'),
('0671567','<NAME>','1976-01-13','Chicago, Illinois, USA'),
('2244205','<NAME>','1985-07-01','Paris, France'),
('0805476','<NAME>','1962-08-13','Boston, Massachusetts, USA'),
('0565336','<NAME>','1966-06-07','New Providence, New Jersey, USA'),
('1727304','<NAME>','1983-05-12','Dublin, Ireland'),
('2401020','<NAME>','1993-01-28','England, UK'),
('5569442','<NAME>','1998-08-06','Albuquerque, New Mexico, USA'),
('0488953','<NAME>','1989-10-01','Sacramento, California, USA'),
('5016878','<NAME>','2006-10-05','Vancouver, British Columbia, Canada'),
('0108703','<NAME>','1968-03-15','Chapel Hill, North Carolina, USA'),
('3223622','<NAME>',NULL,NULL),
('1049433','<NAME>','1966-11-30','Dublin, Ireland'),
('0753314','<NAME>','1960-01-18','Ashford, Kent, England, UK'),
('0518511','<NAME>','1976-03-25','Bronx, New York, USA'),
('0894141','<NAME>',NULL,NULL),
('2795735','<NAME>',NULL,NULL),
('0404427','<NAME>',NULL,NULL),
('2539953','<NAME>','1988-10-03','Gothenburg, Vastra Gotalands lan, Sweden'),
('0797860','<NAME>',NULL,'Stockholm, Sweden'),
('0771621','<NAME>',NULL,NULL),
('1720028','<NAME>','1986-04-22','Austin, Texas, USA'),
('0947447','<NAME>','1963-07-27','Canton, China'),
('0422638','<NAME>','1963-01-05','Tangshan, China'),
('1405398','<NAME>','1982-10-10','Croydon, Surrey, England, UK'),
('1812656','<NAME>','1979-04-15','Pontypool, Wales, UK'),
('2933757','<NAME>','1985-04-30','R<NAME>, Israel'),
('0396812','<NAME>','1962-05-14','Rome, Lazio, Italy'),
('0420941','<NAME>','1971-07-24','George Air Force Base, Victorville, California, USA'),
('4043618','<NAME>','1996-06-01','Kingston upon Thames, England, UK'),
('1218281','<NAME>','1981-06-28','Fountain, Colorado, USA'),
('1134029','<NAME>',1972,'Epping, Essex, England, UK'),
('2888554','<NAME>',NULL,NULL),
('0005295','<NAME>','1969-10-19','Conifer, Colorado, USA'),
('3269138','<NAME>',NULL,NULL),
('7635388','<NAME>','2000-11-22','Kohala, Hawaii, USA'),
('1344302','<NAME>','1971-10-20','Auckland, New Zealand'),
('0607325','<NAME>','1960-12-26','Rotorua, North Island, New Zealand'),
('0615780','<NAME>','1953-11-08','Chicago, Illinois, USA'),
('0714866','<NAME>',NULL,NULL),
('2580832','<NAME>',NULL,NULL),
('0072758','<NAME>','1953-06-11','Tasmania, Australia'),
('0846925','<NAME>','1971-08-02','Santa Barbara, California, USA'),
('1212722','<NAME>','1976-07-19','Hammersmith, London, England, UK'),
('0938950','<NAME>',1970,'Manchester, England, UK'),
('0220600','<NAME>','1966-07-16','Denver, Colorado, USA'),
('6748436','<NAME>',NULL,NULL),
('2933542','<NAME>','1981-09-01','Prestonsburg, Kentucky, USA'),
('0580351','<NAME>','1974-11-24','Bristol, England, UK'),
('0336620','<NAME>','1969-07-17','New York City, New York, USA'),
('5897057','<NAME>',NULL,NULL),
('5582294','<NAME>',NULL,NULL),
('6096118','<NAME>','2002-02-13','Brooklyn, New York City, New York, USA'),
('6016511','<NAME>',NULL,NULL),
('7483475','<NAME>',NULL,NULL),
('0615592','<NAME>',NULL,NULL),
('0991810','<NAME>','1974-02-16','Oakland, California, USA'),
('8401402','<NAME>',NULL,NULL),
('5429086','<NAME>',NULL,NULL),
('7683379','<NAME>',NULL,NULL),
('1847117','<NAME>','1985-12-01','Kansas City, Kansas, USA'),
('1503575','<NAME>','1979-11-19','Miami, Florida, USA'),
('0000729','<NAME>','1975-08-12','Falmouth, Massachusetts, USA'),
('7164242','<NAME>',NULL,NULL),
('0151419','<NAME>','1965-09-17','Buffalo, New York, USA'),
('0232426','<NAME>',NULL,NULL),
('8587165','<NAME>',NULL,NULL),
('0518836','<NAME>','1962-10-16','New York City, New York, USA'),
('0331516','<NAME>','1980-11-12','London, Ontario, Canada'),
('2353430','<NAME>','1985-08-29','Santa Rosa, California, USA'),
('0881814','<NAME>',NULL,NULL),
('3235876','<NAME>',NULL,NULL),
('0376610','<NAME>','1949-08-31','Kansas City, Missouri, USA'),
('5381254','<NAME>',NULL,'Oxfordshire, England, UK'),
('0395203','<NAME>','1974-05-15','San Francisco, California, USA'),
('1569276','<NAME>','1977-11-29','Anderson, South Carolina, USA'),
('0430107','<NAME>','1987-02-09','Santa Ana, California, USA'),
('1775091','<NAME>','1978-02-14','Grinnell, Iowa, USA'),
('3363032','<NAME>','1986-05-23','Oakland, California, USA'),
('3915784','<NAME>','1992-03-17','Peckham, London, England, UK'),
('0426059','<NAME>','1973-12-17','Silver Spring, Maryland, USA'),
('1102970','<NAME>','1969-12-27','Muskogee, Oklahoma, USA'),
('9133740','<NAME>',NULL,NULL),
('1245863','<NAME>','1983-03-10','Camberwell, London, England, UK'),
('6819854','<NAME>','1995-08-09','Los Angeles, California, USA'),
('4427331','<NAME>','1987-02-20','Oakland, California, USA'),
('1291105','<NAME>','1975-05-09','Barcelona, Catalonia, Spain'),
('2394794','<NAME>','1987-11-28','Inverness, Scotland, UK'),
('1055302','<NAME>','1974-03-21','New Zealand'),
('0440458','<NAME>','1974-10-28','Detroit, Michigan, USA'),
('1072555','<NAME>','1979-06-02','Rio de Janeiro, Rio de Janeiro, Brazil'),
('5421877','<NAME>',NULL,'Wellington, New Zealand'),
('5939164','<NAME>',NULL,NULL),
('0500610','<NAME>',NULL,NULL),
('0169806','<NAME>','1975-08-16','Wellington, New Zealand'),
('3009232','<NAME>','1992-09-30','Hoboken, New Jersey, USA'),
('1431940','<NAME>','1979-08-03','Fort Saskatchewan, Alberta, Canada'),
('0324658','<NAME>','1971-11-10','Birmingham, Alabama, USA'),
('0134072','<NAME>','1970-05-03','Union City, New Jersey, USA'),
('0715636','<NAME>','1964-07-03','Raleigh, North Carolina, USA'),
('2403277','<NAME>','1989-11-22','Los Angeles, California, USA'),
('6934058','<NAME>','1986-10-03','Espoo, Finland'),
('3592338','<NAME>','1986-10-23','London, England, UK'),
('2255973','<NAME>','1983-09-25','Edwards Air Force Base, California, USA'),
('0305558','<NAME>','1978-11-30','Guadalajara, Jalisco, Mexico'),
('0005513','<NAME>','1975-10-03','Downey, California, USA'),
('0896149','<NAME>',NULL,NULL),
('2937122','<NAME>',NULL,NULL),
('1020089','<NAME>','1976-04-27','Dulwich, London, England, UK'),
('0420955','<NAME>','1947-05-04','DeKalb, Illinois, USA'),
('0836121','<NAME>','1968-07-05','Long Beach, California, USA'),
('0868219','<NAME>','1964-10-09','Guadalajara, Jalisco, Mexico'),
('0578853','<NAME>','1969-04-03','Melbourne, Victoria, Australia'),
('0681975','<NAME>','1940-06-07','Chester, England, UK'),
('0942504','<NAME>','1972-08-25','London, England, UK'),
('2655177','<NAME>','1989-12-07','Garland, Texas, USA'),
('0174403','<NAME>','1983-01-04','Tipperary, Ireland'),
('6019128','<NAME>',NULL,NULL),
('1732981','<NAME>','1970-03-26','Camberwell, London, England, UK'),
('0629855','<NAME>','1971-07-01','Medford, Massachusetts, USA'),
('3236159','<NAME>','1986-10-15','Grand Rapids, Michigan, USA'),
('0318916','<NAME>','1967-09-01','Sydney, New South Wales, Australia'),
('5645519','<NAME>',NULL,NULL),
('1056659','<NAME>','1977-04-23','Birmingham, England, UK'),
('0434712','<NAME>','1942-11-30','New Brighton, South Africa'),
('0001633','<NAME>ts','1952-10-28','Nashville, Tennessee, USA'),
('0355024','<NAME>','1970-09-30','West Point, New York, USA'),
('1221047','Keegan-<NAME>','1971-03-22','Southfield, Michigan, USA'),
('2155757','<NAME>',NULL,NULL),
('1349818','<NAME>','1979-10-20','Newton, Massachusetts, USA'),
('0281396','<NAME>','1976-09-20','Berkeley, California, USA'),
('4565815','<NAME>','1991-09-17','Cairo, Egypt'),
('4305463','<NAME>','1993-05-06','London, England, UK'),
('3092471','<NAME>','1983-01-16','The Hague, Zuid-Holland, Netherlands'),
('1041023','<NAME>','1968-06-02','Iran'),
('0597388','<NAME>','1979-08-01','Honolulu, Hawaii, USA'),
('0933940','<NAME>','1973-07-03','Norfolk, Virginia, USA'),
('7372981','<NAME>',NULL,NULL),
('0429069','<NAME>','1976-02-25','Los Angeles, California, USA'),
('1214289','<NAME>','1973-04-05','Virginia Beach, Virginia, USA'),
('1023255','<NAME>',NULL,NULL),
('0608714','<NAME>','1971-03-05',NULL),
('1785339','<NAME>','1981-05-12','Los Angeles, California, USA'),
('2377903','<NAME>',NULL,'New York City, New York, USA'),
('3152605','<NAME>','1983-11-24','London, England, UK'),
('5228887','<NAME>','1991-01-02','Bournemouth, Dorset, England, UK'),
('0001515','<NAME>','1983-09-21','Rhinebeck, New York, USA'),
('3078932','<NAME>','1986-03-28','Manhattan, New York City, New York, USA'),
('0001048','<NAME>','1957-09-29','Brooklyn, New York, USA'),
('1969169','<NAME>','1989-05-28','Hendon, London, England, UK'),
('1981893','<NAME>','1982-12-01','Wembley, London, England, UK'),
('2020278','<NAME>',NULL,NULL),
('1169428','<NAME>','1977-11-19','Albany, New York, USA'),
('0281508','<NAME>','1974-10-31','Washington, District of Columbia, USA'),
('1724319','<NAME>',NULL,'Chicago, Illinois, USA'),
('1221253','<NAME>',NULL,NULL),
('1469236','<NAME>','1974-01-30','Norwich, Norfolk, England, UK'),
('5938343','<NAME>',NULL,NULL),
('3179464','<NAME>','1993-02-24',NULL),
('0487166','<NAME>',NULL,'Athens, Greece'),
('8460487','KiKi Layne',NULL,NULL),
('4150847','<NAME>','1993-12-16','Scarborough, Toronto, Ontario, Canada'),
('3500582','<NAME>',NULL,NULL),
('0231458','<NAME>','1969-11-28','Philadelphia, Pennsylvania, USA'),
('8611957','<NAME>','1993-12-11','Tlaxiaco, Oaxaca, Mexico'),
('0211920','<NAME>',NULL,'Mexico City, Mexico'),
('9948845','<NAME>',NULL,NULL),
('9985727','<NAME>',NULL,NULL),
('5841958','<NAME>',NULL,NULL),
('1250791','<NAME>','1976-04-05','St. Louis, Missouri, USA'),
('0175814','<NAME>','1953-03-15','Monroe, Georgia, USA'),
('0191442','<NAME>','1956-08-26','Houston, Texas, USA'),
('5377144','Awkwafina','1988-06-02','New York City, New York, USA'),
('2248149','<NAME>','1974-02-11','Portland, Oregon, USA'),
('1216008','<NAME>','1981-08-29','Auckland, New Zealand'),
('0814280','<NAME>','1967-01-17','Gim-hae, South Gyeongsang Povince, South Korea'),
('1310525','Lee Sun-kyun','1975-03-02','Seoul, South Korea'),
('1856097','Cho Yeo-jeong','1981-02-10','South Korea'),
('6079248','Choi Woo-sik','1990-03-26','South Korea'),
('6476224','Park So-dam','1991-09-08','South Korea'),
('0094435','<NAME>','1969-09-14','Daegu, South Korea'),
('2976580','<NAME>','1989-12-28','Killarney, Ireland'),
('1587729','<NAME>','1984-10-28','Lenox, Massachusetts, USA'),
('0001722','<NAME>','1967-10-29','Twickenham, Middlesex, England, UK'),
('0002091','<NAME>','1940-10-19','Cabra, Dublin, Ireland'),
('3734458','<NAME>',NULL,'Highgate, London, England, UK'),
('4960279','<NAME>','1994-10-23','Montana, USA'),
('7309485','<NAME>',NULL,NULL),
('0000876','<NAME>','1969-09-03','Brooklyn, New York City, New York, USA');
INSERT INTO Actor VALUES ('0000138','0120338'),
('0000701','0120338'),
('0000708','0120338'),
('0000870','0120338'),
('0000200','0120338'),
('0000434','0076759'),
('0000148','0076759'),
('0000402','0076759'),
('0001088','0076759'),
('0000027','0076759'),
('0000196','0298148'),
('0000552','0298148'),
('0000139','0298148'),
('0000267','0298148'),
('0000104','0298148'),
('0001794','0083866'),
('0908914','0083866'),
('0534085','0083866'),
('0000106','0083866'),
('0001075','0083866'),
('0000553','0120915'),
('0000191','0120915'),
('0000204','0120915'),
('0005157','0120915'),
('0000278','0120915'),
('0001497','0145487'),
('0000353','0145487'),
('0000379','0145487'),
('0290556','0145487'),
('0731772','0145487'),
('0000191','0121766'),
('0000204','0121766'),
('0159789','0121766'),
('0001519','0121766'),
('0000168','0121766'),
('0032370','0167260'),
('0040012','0167260'),
('0000276','0167260'),
('0040058','0167260'),
('0045324','0167260'),
('0001497','0316654'),
('0000379','0316654'),
('0290556','0316654'),
('0000547','0316654'),
('0365281','0316654'),
('0001029','0335345'),
('0000899','0335345'),
('0314358','0335345'),
('0605164','0335345'),
('0748207','0335345'),
('0000554','0107290'),
('0000368','0107290'),
('0000156','0107290'),
('0000277','0107290'),
('0669629','0107290'),
('0000704','0167261'),
('0005212','0167261'),
('0000239','0167261'),
('0001557','0167261'),
('0000276','0167261'),
('0000983','0266543'),
('0001122','0266543'),
('1071252','0266543'),
('0000353','0266543'),
('0004951','0266543'),
('0000158','0109830'),
('0000705','0109830'),
('0000641','0109830'),
('0932112','0109830'),
('0000398','0109830'),
('0001795','0110357'),
('0000111','0110357'),
('0915868','0110357'),
('0930990','0110357'),
('0000460','0110357'),
('0001321','0241527'),
('0001749','0241527'),
('0001059','0241527'),
('1196732','0241527'),
('0705356','0241527'),
('0032370','0120737'),
('0000276','0120737'),
('1019674','0120737'),
('0000293','0120737'),
('0000949','0120737'),
('0000191','0121765'),
('0000204','0121765'),
('0159789','0121765'),
('0000489','0121765'),
('0000168','0121765'),
('0000434','0086190'),
('0000148','0086190'),
('0000402','0086190'),
('0001850','0086190'),
('0000355','0086190'),
('0000597','0116629'),
('0001521','0116629'),
('0000156','0116629'),
('0002139','0116629'),
('0171513','0116629'),
('0000136','0325980'),
('0001691','0325980'),
('0089217','0325980'),
('0461136','0325980'),
('0202603','0325980'),
('0000246','0167404'),
('0005286','0167404'),
('0001057','0167404'),
('0931404','0167404'),
('0059215','0167404'),
('0000434','0080684'),
('0000148','0080684'),
('0000402','0080684'),
('0001850','0080684'),
('0000355','0080684'),
('0843059','0330373'),
('0001758','0330373'),
('0855039','0330373'),
('0705356','0330373'),
('0914612','0330373'),
('0000346','0099785'),
('0000582','0099785'),
('0827663','0099785'),
('0001334','0099785'),
('0089348','0099785'),
('1670137','0363771'),
('1342727','0363771'),
('0608440','0363771'),
('0691600','0363771'),
('0842770','0363771'),
('0030991','0234215'),
('0031655','0234215'),
('1060253','0234215'),
('1369391','0234215'),
('0048127','0234215'),
('0000134','0290002'),
('0001774','0290002'),
('0000163','0290002'),
('0000659','0290002'),
('0001100','0290002'),
('0000196','0126029'),
('0000552','0126029'),
('0000139','0126029'),
('0001475','0126029'),
('0001993','0126029'),
('0705356','0295297'),
('0914612','0295297'),
('0342488','0295297'),
('0341743','0295297'),
('0789716','0295297'),
('0005266','0317705'),
('0000456','0317705'),
('0000168','0317705'),
('0005134','0317705'),
('0521861','0317705'),
('0000120','0170016'),
('0597410','0170016'),
('0001787','0170016'),
('0004724','0170016'),
('0410347','0170016'),
('0001702','0073195'),
('0001727','0073195'),
('0000377','0073195'),
('0308882','0073195'),
('0358069','0073195'),
('0000422','0198781'),
('0000345','0198781'),
('0316701','0198781'),
('0000114','0198781'),
('0000336','0198781'),
('0000474','0096895'),
('0000197','0096895'),
('0000107','0096895'),
('0943237','0096895'),
('0385757','0096895'),
('0000169','0119654'),
('0000226','0119654'),
('0000400','0119654'),
('0000352','0119654'),
('0001800','0119654'),
('0705356','0304141'),
('0341743','0304141'),
('0274913','0304141'),
('0789716','0304141'),
('0577982','0304141'),
('0000158','0120363'),
('0000741','0120363'),
('0000349','0120363'),
('0001288','0120363'),
('0725543','0120363'),
('0000120','0315327'),
('0000151','0315327'),
('0000098','0315327'),
('0001311','0315327'),
('0004738','0315327'),
('0000148','0082971'),
('0000261','0082971'),
('0293550','0082971'),
('0479951','0082971'),
('0722636','0082971'),
('0000166','0117998'),
('0000200','0117998'),
('0000144','0117998'),
('0000415','0117998'),
('0000450','0117998'),
('0889522','0259446'),
('0179173','0259446'),
('0443577','0259446'),
('0176073','0259446'),
('0137140','0259446'),
('0000195','0087332'),
('0000101','0087332'),
('0000244','0087332'),
('0000601','0087332'),
('0001548','0087332'),
('0000552','0086960'),
('0001662','0086960'),
('0039226','0086960'),
('0002060','0086960'),
('0001074','0086960'),
('0000129','0407304'),
('0266824','0407304'),
('0154226','0407304'),
('0001584','0407304'),
('0000209','0407304'),
('0584052','0162222'),
('0925096','0162222'),
('0162904','0162222'),
('0111948','0162222'),
('1329048','0162222'),
('0000156','0119567'),
('0000194','0119567'),
('0000592','0119567'),
('0000277','0119567'),
('0000681','0119567'),
('0000154','0286106'),
('0001618','0286106'),
('0191412','0286106'),
('1113550','0286106'),
('0427728','0286106'),
('0000329','0266915'),
('0000676','0266915'),
('0518821','0266915'),
('0955471','0266915'),
('0761052','0266915'),
('0000245','0107614'),
('0000398','0107614'),
('0000112','0107614'),
('0001213','0107614'),
('0391072','0107614'),
('0000664','0099653'),
('0000193','0099653'),
('0000155','0099653'),
('0001282','0099653'),
('0493026','0099653'),
('0918334','0103639'),
('0000245','0103639'),
('0488306','0103639'),
('0293455','0103639'),
('0919798','0103639'),
('0000158','0120815'),
('0122653','0120815'),
('0001744','0120815'),
('0000354','0120815'),
('0001111','0120815'),
('0915208','0360717'),
('0085312','0360717'),
('0004778','0360717'),
('0470981','0360717'),
('0004988','0360717'),
('0000129','0120755'),
('0779084','0120755'),
('0628601','0120755'),
('0000609','0120755'),
('0746896','0120755'),
('0001772','0290334'),
('0413168','0290334'),
('0005212','0290334'),
('0000932','0290334'),
('0000463','0290334'),
('0000196','0295178'),
('0461498','0295178'),
('0001293','0295178'),
('0001868','0295178'),
('0001822','0295178'),
('0000150','0088763'),
('0000502','0088763'),
('0000670','0088763'),
('0000417','0088763'),
('0001855','0088763'),
('0005562','0396269'),
('0000681','0396269'),
('0000686','0396269'),
('1046097','0396269'),
('0279545','0396269'),
('0000136','0367594'),
('0383603','0367594'),
('0446303','0367594'),
('0000307','0367594'),
('0852965','0367594'),
('0000196','0145660'),
('0001287','0145660'),
('0001868','0145660'),
('0001822','0145660'),
('0000507','0145660'),
('0000288','0372784'),
('0000323','0372784'),
('0000553','0372784'),
('0005017','0372784'),
('0000198','0372784'),
('0000216','0103064'),
('0000157','0103064'),
('0000411','0103064'),
('0001598','0103064'),
('0608012','0103064'),
('0000995','0070047'),
('0001884','0070047'),
('0588553','0070047'),
('0002011','0070047'),
('0935345','0070047'),
('0000409','0209163'),
('0001838','0209163'),
('0001314','0209163'),
('0903677','0209163'),
('0004912','0209163'),
('0000246','0120591'),
('0000671','0120591'),
('0000255','0120591'),
('0000239','0120591'),
('0001599','0120591'),
('0593775','0031381'),
('0641966','0031381'),
('0000046','0031381'),
('0450810','0031381'),
('0751946','0031381'),
('0000255','0213149'),
('0001326','0213149'),
('0000295','0213149'),
('0000421','0213149'),
('0000685','0213149'),
('0000148','0097576'),
('0000125','0097576'),
('0001186','0097576'),
('0233145','0097576'),
('0722636','0097576'),
('0001774','0351283'),
('0001674','0351283'),
('0001710','0351283'),
('0000586','0351283'),
('0056187','0351283'),
('0000158','0114709'),
('0000741','0114709'),
('0725543','0114709'),
('0001815','0114709'),
('0001728','0114709'),
('0000169','0120912'),
('0000226','0120912'),
('0206257','0120912'),
('0001223','0120912'),
('0424216','0120912'),
('0000128','0172495'),
('0001618','0172495'),
('0001567','0172495'),
('0001657','0172495'),
('0001321','0172495'),
('0000598','0319262'),
('0350453','0319262'),
('0002536','0319262'),
('0005231','0319262'),
('0761587','0319262'),
('0000093','0356910'),
('0001401','0356910'),
('0000681','0356910'),
('0111013','0356910'),
('0913488','0356910'),
('0041165','0029583'),
('0118081','0029583'),
('0143314','0029583'),
('0172287','0029583'),
('0173418','0029583'),
('0000126','0099348'),
('0001521','0099348'),
('0001295','0099348'),
('0002110','0099348'),
('0922671','0099348'),
('0000174','0112462'),
('0000169','0112462'),
('0000120','0112462'),
('0000173','0112462'),
('0000563','0112462'),
('0000148','0106977'),
('0000169','0106977'),
('0000688','0106977'),
('0000194','0106977'),
('0001592','0106977'),
('0000123','0240772'),
('0083781','0240772'),
('0634342','0240772'),
('0282665','0240772'),
('1131138','0240772'),
('0000154','0207201'),
('0000166','0207201'),
('0000673','0207201'),
('0000257','0207201'),
('0424534','0207201'),
('0000123','0177971'),
('0000242','0177971'),
('0000178','0177971'),
('0000261','0177971'),
('0001209','0177971'),
('0000120','0119528'),
('0005491','0119528'),
('0178176','0119528'),
('0000144','0119528'),
('0359774','0119528'),
('0000237','0077631'),
('0000556','0077631'),
('0000330','0077631'),
('0001063','0077631'),
('0669046','0077631'),
('0000554','0163025'),
('0000513','0163025'),
('0000495','0163025'),
('0005273','0163025'),
('0605080','0163025'),
('0000129','0117060'),
('0000685','0117060'),
('0000322','0117060'),
('0001089','0117060'),
('0000606','0117060'),
('0000242','0133152'),
('0000619','0133152'),
('0000307','0133152'),
('0003817','0133152'),
('0316079','0133152'),
('0000148','0087469'),
('0001009','0087469'),
('0702841','0087469'),
('0700869','0087469'),
('0786022','0087469'),
('0000152','0100405'),
('0000210','0100405'),
('0000897','0100405'),
('0004517','0100405'),
('0000624','0100405'),
('0000226','0386588'),
('0578949','0386588'),
('0416673','0386588'),
('0005520','0386588'),
('1024264','0386588'),
('0000163','0084805'),
('0001448','0084805'),
('0000414','0084805'),
('0001056','0084805'),
('0001164','0084805'),
('0000129','0092099'),
('0000534','0092099'),
('0000174','0092099'),
('0000381','0092099'),
('0000643','0092099'),
('0000139','0129387'),
('0000369','0129387'),
('0001774','0129387'),
('0262968','0129387'),
('0254402','0129387'),
('0005380','0268380'),
('0000491','0268380'),
('0001459','0268380'),
('0899681','0268380'),
('0085312','0268380'),
('0000354','0372183'),
('0004376','0372183'),
('0004051','0372183'),
('0005466','0372183'),
('0881631','0372183'),
('0001357','0090555'),
('0468957','0090555'),
('0576851','0090555'),
('0347858','0090555'),
('0802032','0090555'),
('0000158','0338348'),
('0366667','0338348'),
('0214430','0338348'),
('0310850','0338348'),
('0778642','0338348'),
('0000346','0104431'),
('0000582','0104431'),
('0827663','0104431'),
('0001573','0104431'),
('0001334','0104431'),
('0002071','0319343'),
('0001001','0319343'),
('0627878','0319343'),
('0000799','0319343'),
('0005460','0319343'),
('0000115','0368891'),
('1208167','0368891'),
('0058581','0368891'),
('0000293','0368891'),
('0000685','0368891'),
('0000163','0095953'),
('0000129','0095953'),
('0000420','0095953'),
('0596520','0095953'),
('0613789','0095953'),
('0000148','0118571'),
('0000198','0118571'),
('0000335','0118571'),
('0187724','0118571'),
('0560093','0118571'),
('0000158','0112384'),
('0000200','0112384'),
('0000102','0112384'),
('0000641','0112384'),
('0000438','0112384'),
('0000206','0133093'),
('0000401','0133093'),
('0005251','0133093'),
('0915989','0133093'),
('0001592','0133093'),
('0641314','0101414'),
('0000913','0101414'),
('0925369','0101414'),
('0001583','0101414'),
('0001773','0101414'),
('0001282','0120855'),
('0000378','0120855'),
('0000335','0120855'),
('0000306','0120855'),
('0001329','0120855'),
('0000128','0268978'),
('0000438','0268978'),
('0000124','0268978'),
('0001626','0268978'),
('0079273','0268978'),
('0000250','0299658'),
('0001876','0299658'),
('0000152','0299658'),
('0001451','0299658'),
('0000604','0299658'),
('0000633','0094137'),
('0000430','0094137'),
('0001101','0094137'),
('0001802','0094137'),
('0171513','0094137'),
('0000134','0212338'),
('0001774','0212338'),
('0001632','0212338'),
('0001100','0212338'),
('0215015','0212338'),
('0000126','0102798'),
('0000151','0102798'),
('0001512','0102798'),
('0000225','0102798'),
('0000614','0102798'),
('0000164','0212985'),
('0000194','0212985'),
('0316284','0212985'),
('0000198','0212985'),
('0000501','0212985'),
('0000138','0264464'),
('0000158','0264464'),
('0000686','0264464'),
('0000640','0264464'),
('0000882','0264464'),
('0001191','0142342'),
('0000725','0142342'),
('0829537','0142342'),
('0819850','0142342'),
('0819851','0142342'),
('0000267','0059742'),
('0001626','0059742'),
('0662223','0059742'),
('0370821','0059742'),
('0939931','0059742'),
('0000474','0103776'),
('0000362','0103776'),
('0000201','0103776'),
('0000686','0103776'),
('0001284','0103776'),
('0004929','0120623'),
('0000228','0120623'),
('0000506','0120623'),
('0659363','0120623'),
('0226887','0120623'),
('0001191','0120484'),
('0000870','0120484'),
('0000103','0120484'),
('0001857','0120484'),
('0715477','0120484'),
('0000226','0307453'),
('0000134','0307453'),
('0000250','0307453'),
('0085312','0307453'),
('0001401','0307453'),
('0000112','0246460'),
('0000932','0246460'),
('0827170','0246460'),
('0683253','0246460'),
('0950935','0246460'),
('0000056','0070735'),
('0000602','0070735'),
('0001727','0070735'),
('0001164','0070735'),
('0001827','0070735'),
('0000129','0106918'),
('0000675','0106918'),
('0000432','0106918'),
('0001358','0106918'),
('0455767','0106918'),
('0001191','0398165'),
('0001674','0398165'),
('0000608','0398165'),
('0625099','0398165'),
('1664542','0398165'),
('0413168','0120903'),
('0001772','0120903'),
('0005212','0120903'),
('0000463','0120903'),
('0005188','0120903'),
('0001182','0175142'),
('0792156','0175142'),
('0601214','0175142'),
('0046420','0175142'),
('0334175','0175142'),
('0000140','0093010'),
('0000335','0093010'),
('0000271','0093010'),
('0490477','0093010'),
('0659573','0093010'),
('0000148','0161081'),
('0000201','0161081'),
('0769311','0161081'),
('0608012','0161081'),
('0001664','0161081'),
('0000409','0120616'),
('0001838','0120616'),
('0001314','0120616'),
('0903677','0120616'),
('0640413','0120616'),
('0344435','0120667'),
('0004695','0120667'),
('0262635','0120667'),
('0004821','0120667'),
('0573037','0120667'),
('0001364','0096438'),
('0000502','0096438'),
('0001026','0096438'),
('0281486','0096438'),
('0443401','0096438'),
('0000552','0092644'),
('0001662','0092644'),
('0039226','0092644'),
('0001638','0092644'),
('0001074','0092644'),
('0000129','0116695'),
('0000421','0116695'),
('0000250','0116695'),
('0000593','0116695'),
('0005278','0116695'),
('0005327','0267913'),
('0001264','0267913'),
('0000498','0267913'),
('0004802','0267913'),
('0000100','0267913'),
('0001792','0055254'),
('0314867','0055254'),
('0061770','0055254'),
('0200017','0055254'),
('0942220','0055254'),
('0000210','0163187'),
('0000152','0163187'),
('0000349','0163187'),
('0001185','0163187'),
('0001854','0163187'),
('0000230','0089880'),
('0001077','0089880'),
('0621008','0089880'),
('0000925','0089880'),
('0630100','0089880'),
('0000216','0181852'),
('0001763','0181852'),
('0000132','0181852'),
('0518085','0181852'),
('0028625','0181852'),
('0002090','0087363'),
('0000121','0087363'),
('0001924','0087363'),
('0564589','0087363'),
('0391072','0087363'),
('0000197','0119822'),
('0000166','0119822'),
('0001427','0119822'),
('0000421','0119822'),
('0000240','0119822'),
('0000154','0097733'),
('0000418','0097733'),
('0000582','0097733'),
('0000722','0097733'),
('0640299','0097733'),
('0000216','0111503'),
('0000130','0111503'),
('0000792','0111503'),
('0000200','0111503'),
('0000119','0111503'),
('0153738','0275847'),
('0761498','0275847'),
('0000119','0275847'),
('0001773','0275847'),
('0567852','0275847'),
('0004755','0252866'),
('0002436','0252866'),
('0004989','0252866'),
('0005098','0252866'),
('0005272','0252866'),
('0000741','0111070'),
('0187724','0111070'),
('0001662','0111070'),
('0005156','0111070'),
('0472710','0111070'),
('0000226','0343818'),
('0005256','0343818'),
('0876138','0343818'),
('0000342','0343818'),
('0339304','0343818'),
('0000154','0104714'),
('0000418','0104714'),
('0000582','0104714'),
('0000623','0104714'),
('0934179','0104714'),
('0908094','0232500'),
('0004874','0232500'),
('0735442','0232500'),
('0108287','0232500'),
('0950935','0232500'),
('0000552','0118998'),
('0001115','0118998'),
('0001624','0118998'),
('0001967','0118998'),
('0771493','0118998'),
('0000237','0076666'),
('0331186','0076666'),
('0587944','0076666'),
('0129955','0076666'),
('0660407','0076666'),
('0365201','0061852'),
('0001982','0061852'),
('0697515','0061852'),
('0001695','0061852'),
('0001359','0061852'),
('0000004','0077975'),
('0001513','0077975'),
('0006893','0077975'),
('0089244','0077975'),
('0001371','0077975'),
('0065942','0114148'),
('0474122','0114148'),
('0000154','0114148'),
('0001773','0114148'),
('0440885','0114148'),
('0000129','0104257'),
('0000197','0104257'),
('0000193','0104257'),
('0000102','0104257'),
('0000662','0104257'),
('0004874','0295701'),
('0000782','0295701'),
('0190744','0295701'),
('0000168','0295701'),
('0740220','0295701'),
('0504962','0120812'),
('0000329','0120812'),
('0929489','0120812'),
('0002245','0120812'),
('0514783','0120812'),
('0231946','0185937'),
('0502671','0185937'),
('0931321','0185937'),
('0341124','0185937'),
('0454865','0185937'),
('0000380','0120647'),
('0000495','0120647'),
('0000704','0120647'),
('0000603','0120647'),
('0000151','0120647'),
('0000237','0097778'),
('0000263','0097778'),
('0001156','0097778'),
('0001719','0097778'),
('0001820','0097778'),
('0000150','0164912'),
('0000133','0164912'),
('0491402','0164912'),
('0005151','0164912'),
('0001447','0164912'),
('0000347','0073629'),
('0000215','0073629'),
('0000960','0073629'),
('0639782','0073629'),
('0703946','0073629'),
('0000155','0105417'),
('0001749','0105417'),
('0001562','0105417'),
('0538655','0105417'),
('0926897','0105417'),
('0019569','0242653'),
('1470128','0242653'),
('0048127','0242653'),
('0063571','0242653'),
('0068206','0242653'),
('0000741','0304669'),
('0593310','0304669'),
('0472710','0304669'),
('0005156','0304669'),
('0001662','0304669'),
('0000188','0349205'),
('0001372','0349205'),
('0005305','0349205'),
('0919991','0349205'),
('0240381','0349205'),
('0001454','0172156'),
('0000226','0172156'),
('0003244','0172156'),
('0005517','0172156'),
('0001780','0172156'),
('0000245','0119217'),
('0000354','0119217'),
('0000255','0119217'),
('0001745','0119217'),
('0000378','0119217'),
('0000297','0091763'),
('0000353','0091763'),
('0000221','0091763'),
('0001845','0091763'),
('0005331','0091763'),
('0000665','0130623'),
('0005569','0130623'),
('0001115','0130623'),
('0143295','0130623'),
('0659363','0130623'),
('0000158','0120689'),
('0001556','0120689'),
('0001372','0120689'),
('0003817','0120689'),
('0000342','0120689'),
('0000154','0117438'),
('0000623','0117438'),
('0634509','0117438'),
('0000641','0117438'),
('0005148','0117438'),
('0000335','0115433'),
('0001099','0115433'),
('0000613','0115433'),
('0687506','0115433'),
('0491402','0115433'),
('0000111','0120685'),
('0000606','0120685'),
('0001623','0120685'),
('0000279','0120685'),
('0242656','0120685'),
('0387432','0100758'),
('0000480','0100758'),
('0656929','0100758'),
('0785435','0100758'),
('0286335','0100758'),
('0000245','0129290'),
('0518687','0129290'),
('0005321','0129290'),
('0000450','0129290'),
('0348409','0129290'),
('0000008','0068646'),
('0000199','0068646'),
('0001001','0068646'),
('0144710','0068646'),
('0000380','0068646'),
('0000008','0078346'),
('0000432','0078346'),
('0001659','0078346'),
('0000885','0078346'),
('0178114','0078346'),
('0000125','0117500'),
('0000115','0117500'),
('0000438','0117500'),
('0817983','0117500'),
('0001556','0117500'),
('0103785','0371606'),
('0005190','0371606'),
('0461455','0371606'),
('0001772','0371606'),
('0781238','0371606'),
('0001191','0305224'),
('0000197','0305224'),
('0000673','0305224'),
('0350079','0305224'),
('0521781','0305224'),
('0002103','0332452'),
('0004051','0332452'),
('0428923','0332452'),
('0549539','0332452'),
('0808559','0332452'),
('0000188','0305669'),
('0001451','0305669'),
('0506405','0305669'),
('0687506','0305669'),
('0005443','0305669'),
('0051509','0286716'),
('0000124','0286716'),
('0000385','0286716'),
('0524197','0286716'),
('0000560','0286716'),
('0000129','0181689'),
('0268199','0181689'),
('0004996','0181689'),
('0001884','0181689'),
('0608090','0181689'),
('0001401','0146316'),
('0000685','0146316'),
('0322513','0146316'),
('0852965','0146316'),
('0185819','0146316'),
('0000149','0102926'),
('0000164','0102926'),
('0001277','0102926'),
('0372217','0102926'),
('0505971','0102926'),
('0001548','0097523'),
('0001242','0097523'),
('0833519','0097523'),
('0840133','0097523'),
('0114787','0097523'),
('0000422','0109813'),
('0001610','0109813'),
('0001548','0109813'),
('0005280','0109813'),
('0001492','0109813'),
('0000228','0169547'),
('0000906','0169547'),
('0000301','0169547'),
('0004747','0169547'),
('0002546','0169547'),
('0000152','0084434'),
('0000700','0084434'),
('0001418','0084434'),
('0005162','0084434'),
('0089408','0084434'),
('0000154','0122151'),
('0000418','0122151'),
('0000582','0122151'),
('0000623','0122151'),
('0001674','0122151'),
('0000142','0405159'),
('0005476','0405159'),
('0000151','0405159'),
('0059431','0405159'),
('1591496','0405159'),
('0004937','0350258'),
('0913488','0350258'),
('0005093','0350258'),
('0694066','0350258'),
('0502015','0350258'),
('0000138','0338751'),
('0000949','0338751'),
('0000295','0338751'),
('0000604','0338751'),
('0000285','0338751'),
('0000576','0327056'),
('0000209','0327056'),
('0000102','0327056'),
('0000401','0327056'),
('0001315','0327056'),
('0000234','0340855'),
('0000207','0340855'),
('0001136','0340855'),
('0855564','0340855'),
('0179960','0340855'),
('0000179','0159365'),
('0000173','0159365'),
('0000250','0159365'),
('0040586','0159365'),
('0322407','0159365'),
('0004778','0253474'),
('0470981','0253474'),
('0277975','0253474'),
('0513520','0253474'),
('0288976','0253474'),
('0000173','0274558'),
('0000194','0274558'),
('0000658','0274558'),
('0226820','0274558'),
('0001669','0274558'),
('0000115','0268126'),
('0000658','0268126'),
('0177933','0268126'),
('0786806','0268126'),
('0842770','0268126'),
('0000243','0139654'),
('0000160','0139654'),
('0001277','0139654'),
('0000297','0139654'),
('0950867','0139654'),
('0000671','0285742'),
('0801231','0285742'),
('1102991','0285742'),
('0005132','0285742'),
('1102875','0285742'),
('0000932','0285742'),
('0001132','0280778'),
('0000980','0280778'),
('0000701','0280778'),
('0095017','0280778'),
('0934362','0280778'),
('0000210','0195685'),
('0109773','0195685'),
('0225767','0195685'),
('0001215','0195685'),
('0735538','0195685'),
('0001125','0181865'),
('0889846','0181865'),
('0154530','0181865'),
('0005398','0181865'),
('0587401','0181865'),
('0000438','0183659'),
('0001315','0183659'),
('0101005','0183659'),
('0000124','0183659'),
('0001069','0183659'),
('0005476','0171804'),
('0001721','0171804'),
('0765597','0171804'),
('0786639','0171804'),
('0329773','0171804'),
('0001497','0124315'),
('0000234','0124315'),
('0005148','0124315'),
('0748620','0124315'),
('0000323','0124315'),
('0000213','0172493'),
('0001401','0172493'),
('0245112','0172493'),
('0005261','0172493'),
('0005253','0172493'),
('0000569','0138097'),
('0001691','0138097'),
('0001212','0138097'),
('0929489','0138097'),
('0640838','0138097'),
('0000905','0118799'),
('0000971','0118799'),
('0243842','0118799'),
('0082979','0118799'),
('0518057','0118799'),
('0000560','0118564'),
('0000651','0118564'),
('0000336','0118564'),
('0000353','0118564'),
('0002148','0118564'),
('0001132','0138097'),
('0000228','0119488'),
('0000128','0119488'),
('0001602','0119488'),
('0000342','0119488'),
('0000107','0119488'),
('0000146','0116209'),
('0000300','0116209'),
('0000353','0116209'),
('0000218','0116209'),
('0004710','0116209'),
('0001691','0117631'),
('0104051','0117631'),
('0865286','0117631'),
('0371824','0117631'),
('0706162','0117631'),
('0000531','0116282'),
('0000513','0116282'),
('0000114','0116282'),
('0696193','0116282'),
('0001780','0116282'),
('0000154','0112573'),
('0732703','0112573'),
('0492566','0112573'),
('0625729','0112573'),
('0181920','0112573'),
('0000115','0113627'),
('0000223','0113627'),
('0001696','0113627'),
('0507659','0113627'),
('0001836','0113627'),
('0000215','0112818'),
('0000576','0112818'),
('0698764','0112818'),
('0000855','0112818'),
('0000388','0112818'),
('0000286','0114814'),
('0000321','0114814'),
('0001125','0114814'),
('0001629','0114814'),
('0000228','0114814'),
('0086322','0113819'),
('0147503','0113819'),
('0149654','0113819'),
('0209340','0113819'),
('0227226','0113819'),
('0000227','0113819'),
('0001448','0109306'),
('0000169','0109306'),
('0000959','0109306'),
('0811202','0109306'),
('0000504','0109306'),
('0000136','0109707'),
('0001445','0109707'),
('0000572','0109707'),
('0000099','0109707'),
('0000470','0109707'),
('0000131','0109348'),
('0912001','0109348'),
('0001848','0109348'),
('0802831','0109348'),
('0000236','0109348'),
('0000553','0108052'),
('0001426','0108052'),
('0000146','0108052'),
('0328751','0108052'),
('0755974','0108052'),
('0000158','0107818'),
('0000243','0107818'),
('0561809','0107818'),
('0453248','0107818'),
('0278052','0107818'),
('0000456','0107822'),
('0000172','0107822'),
('0000554','0107822'),
('0001593','0107822'),
('0907942','0107822'),
('0000142','0105695'),
('0000432','0105695'),
('0000151','0105695'),
('0001321','0105695'),
('0941316','0105695'),
('0000199','0105323'),
('0000563','0105323'),
('0714310','0105323'),
('0000270','0105323'),
('0000450','0105323'),
('0000603','0104454'),
('0000307','0104454'),
('0071851','0104454'),
('0000668','0104454'),
('0768795','0104454'),
('0000582','0104952'),
('0001494','0104952'),
('0000673','0104952'),
('0925943','0104952'),
('0001304','0104952'),
('0000345','0101587'),
('0827663','0101587'),
('0456124','0101587'),
('0923210','0101587'),
('0000644','0101587'),
('0001588','0101587'),
('0000313','0101889'),
('0117035','0101889'),
('0000245','0101889'),
('0518394','0101889'),
('0001689','0101889'),
('0000335','0100486'),
('0000460','0100486'),
('0798779','0100486'),
('0001711','0100486'),
('0353467','0100486'),
('0001001','0100157'),
('0000870','0100157'),
('0002070','0100157'),
('0827973','0100157'),
('0000002','0100157'),
('0000134','0099685'),
('0000501','0099685'),
('0000582','0099685'),
('0000966','0099685'),
('0000649','0099685'),
('0000151','0097239'),
('0001788','0097239'),
('0000101','0097239'),
('0526985','0097239'),
('0738354','0097239'),
('0000358','0097937'),
('0002084','0097937'),
('0924009','0097937'),
('0792202','0097937'),
('0188520','0097937'),
('0000111','0097441'),
('0000243','0097441'),
('0000144','0097441'),
('0000151','0097441'),
('0448097','0097441'),
('0000129','0096969'),
('0488267','0096969'),
('0000855','0096969'),
('0442512','0096969'),
('0262923','0096969'),
('0000534','0094608'),
('0000149','0094608'),
('0183464','0094608'),
('0744235','0094608'),
('0372475','0094608'),
('0000092','0095159'),
('0000130','0095159'),
('0000177','0095159'),
('0001589','0095159'),
('0014883','0095159'),
('0000458','0094606'),
('0000678','0094606'),
('0000133','0094606'),
('0942195','0094606'),
('0001773','0094606'),
('0518821','0093389'),
('0001040','0093389'),
('0000564','0093389'),
('0948078','0093389'),
('0939378','0093389'),
('0000221','0094291'),
('0876645','0094291'),
('0184429','0094291'),
('0679406','0094291'),
('0001525','0094291'),
('0000140','0094291'),
('0000333','0093565'),
('0000115','0093565'),
('0306696','0093565'),
('0001156','0093565'),
('0000732','0093565'),
('0000126','0094226'),
('0000125','0094226'),
('0001747','0094226'),
('0000412','0094226'),
('0000134','0094226'),
('0000056','0090863'),
('0000129','0090863'),
('0001512','0090863'),
('0001726','0090863'),
('0001806','0090863'),
('0000458','0090830'),
('0559144','0090830'),
('0001453','0090830'),
('0097842','0090830'),
('0327160','0090830'),
('0001347','0091167'),
('0000402','0091167'),
('0000323','0091167'),
('0001201','0091167'),
('0001848','0091167'),
('0000658','0089755'),
('0000602','0089755'),
('0001970','0089755'),
('0457655','0089755'),
('0100942','0089755'),
('0000458','0089424'),
('0000471','0089424'),
('0000968','0089424'),
('0506784','0089424'),
('0328604','0089424'),
('0656183','0090203'),
('0001334','0090203'),
('0323344','0090203'),
('0103071','0090203'),
('0000360','0090203'),
('0000747','0088933'),
('0000979','0088933'),
('0002025','0088933'),
('0001133','0088933'),
('0318527','0088933'),
('0000197','0089841'),
('0000678','0089841'),
('0005162','0089841'),
('0709907','0089841'),
('0382676','0089841'),
('0001378','0089841'),
('0000719','0086879'),
('0001371','0086879'),
('0000931','0086879'),
('0001003','0086879'),
('0234541','0086879'),
('0000398','0087921'),
('0001080','0087921'),
('0000438','0087921'),
('0001496','0087921'),
('0000518','0087921'),
('0001832','0087553'),
('0628955','0087553'),
('0000518','0087553'),
('0001696','0087553'),
('0005266','0087553'),
('0001114','0087892'),
('0051856','0087892'),
('0001919','0087892'),
('0289038','0087892'),
('0000027','0087892'),
('0000511','0086425'),
('0000700','0086425'),
('0000197','0086425'),
('0000362','0086425'),
('0001099','0086425'),
('0000380','0086423'),
('0002128','0086423'),
('0000990','0086423'),
('0000979','0086423'),
('0000289','0086423'),
('0001373','0086617'),
('0000154','0086617'),
('0734368','0086617'),
('0484770','0086617'),
('0208772','0086617'),
('0001426','0083987'),
('0000298','0083987'),
('0002081','0083987'),
('0000024','0083987'),
('0002145','0083987'),
('0000658','0084707'),
('0000177','0084707'),
('0001493','0084707'),
('0439334','0084707'),
('0628273','0084707'),
('0001283','0084434'),
('0268297','0082158'),
('0369814','0082158'),
('0153182','0082158'),
('0002027','0082158'),
('0314776','0082158'),
('0000031','0082846'),
('0000020','0082846'),
('0000404','0082846'),
('0571630','0082846'),
('0001056','0082846'),
('0001545','0082031'),
('0591485','0082031'),
('0000024','0082031'),
('0280242','0082031'),
('0251708','0082031'),
('0000886','0082979'),
('0000473','0082979'),
('0001346','0082979'),
('0467085','0082979'),
('0000197','0082979'),
('0822972','0082979'),
('0000661','0081283'),
('0001546','0081283'),
('0002139','0081283'),
('0000459','0081283'),
('0001826','0081283'),
('0000134','0081398'),
('0001550','0081398'),
('0000582','0081398'),
('0898634','0081398'),
('0170225','0081398'),
('0000651','0080549'),
('0000169','0080549'),
('0375629','0080549'),
('0101992','0080549'),
('0026286','0080549'),
('0001673','0081150'),
('0494432','0081150'),
('0156187','0081150'),
('0005460','0081150'),
('0852118','0081150'),
('0000163','0079417'),
('0000658','0079417'),
('0000737','0079417'),
('0377888','0079417'),
('0003318','0079417'),
('0000398','0079638'),
('0000977','0079638'),
('0500038','0079638'),
('0385757','0079638'),
('0062642','0079638'),
('0000634','0078841'),
('0000511','0078841'),
('0002048','0078841'),
('0912001','0078841'),
('0246004','0078841'),
('0000134','0077416'),
('0001030','0077416'),
('0001698','0077416'),
('0000686','0077416'),
('0000658','0077416'),
('0000404','0077362'),
('0000685','0077362'),
('0001136','0077362'),
('0587340','0077362'),
('0001019','0077362'),
('0000404','0077289'),
('0000257','0077289'),
('0001749','0077289'),
('0000323','0077289'),
('0000527','0077289'),
('0000095','0075686'),
('0000473','0075686'),
('0731634','0075686'),
('0001406','0075686'),
('0800328','0075686'),
('0000377','0076095'),
('0556850','0076095'),
('0191944','0076095'),
('0070801','0076095'),
('0722315','0076095'),
('0000404','0076245'),
('0000603','0076245'),
('0001673','0076245'),
('0001703','0076245'),
('0001358','0076245'),
('0000230','0075148'),
('0001735','0075148'),
('0949350','0075148'),
('0001835','0075148'),
('0580565','0075148'),
('0001159','0074958'),
('0000034','0074958'),
('0002075','0074958'),
('0000380','0074958'),
('0011741','0074958'),
('0000163','0074119'),
('0000602','0074119'),
('0912001','0074119'),
('0000842','0074119'),
('0001358','0074119'),
('0001673','0074119'),
('0833152','0074958'),
('0000197','0073486'),
('0001221','0073486'),
('0714835','0073486'),
('0077720','0073486'),
('0110480','0073486'),
('0000527','0073766'),
('0122675','0073766'),
('0000907','0073766'),
('0580607','0073766'),
('0217935','0073766'),
('0000886','0073692'),
('0001046','0073692'),
('0000443','0073692'),
('0335519','0073692'),
('0912001','0073692'),
('0000199','0071562'),
('0000380','0071562'),
('0000473','0071562'),
('0000134','0071562'),
('0001030','0071562'),
('0138770','0071598'),
('0258089','0071598'),
('0074596','0071598'),
('0565731','0071598'),
('0518880','0071598'),
('0070592','0071115'),
('0000995','0071115'),
('0527501','0071115'),
('0124100','0071115'),
('0325959','0071115'),
('0001215','0071877'),
('0000002','0071877'),
('0000842','0071877'),
('0000006','0071877'),
('0000302','0071877'),
('0000493','0070640'),
('0318527','0070640'),
('0374348','0070640'),
('0123680','0070640'),
('0809514','0070640'),
('0001719','0070819'),
('0413559','0070819'),
('0000649','0070819'),
('0130282','0070819'),
('0511695','0070819'),
('0000961','0070509'),
('0905993','0070509'),
('0002144','0070509'),
('0065320','0070509'),
('0622553','0070509'),
('0641939','0070510'),
('0001575','0070510'),
('0001404','0070510'),
('0384916','0070510'),
('0425928','0070510'),
('0591485','0068327'),
('0001868','0068327'),
('0340926','0068327'),
('0001297','0068327'),
('0921202','0068327'),
('0000443','0068326'),
('0001902','0068326'),
('0373012','0068326'),
('0001274','0068326'),
('0912966','0068326'),
('0000432','0067116'),
('0721073','0067116'),
('0001702','0067116'),
('0516215','0067116'),
('0102566','0067116'),
('0000404','0067309'),
('0000661','0067309'),
('0162541','0067309'),
('0001702','0067309'),
('0873148','0067309'),
('0000961','0067328'),
('0000313','0067328'),
('0001732','0067328'),
('0424565','0067328'),
('0001458','0067328'),
('0001715','0066206'),
('0001500','0066206'),
('0950079','0066206'),
('0835021','0066206'),
('0517444','0066206'),
('0000869','0066579'),
('0001657','0066579'),
('0413559','0066579'),
('0511614','0066579'),
('0111376','0066579'),
('0000053','0066319'),
('0002145','0066319'),
('0427756','0066319'),
('0590055','0066319'),
('0571674','0066319'),
('0000044','0065377'),
('0001509','0065377'),
('0781029','0065377'),
('0000302','0065377'),
('0001421','0065377'),
('0371040','0065377'),
('0000163','0064665'),
('0000685','0064665'),
('0587249','0064665'),
('0569410','0064665'),
('0882853','0064665'),
('0000078','0065126'),
('0004794','0065126'),
('0200981','0065126'),
('0805317','0065126'),
('0000380','0065126'),
('0001749','0064840'),
('0827137','0064840'),
('0291512','0064840'),
('0413561','0064840'),
('0424743','0064840'),
('0000404','0065088'),
('0765546','0065088'),
('0948772','0065088'),
('0949574','0065088'),
('0000999','0065088'),
('0000527','0064117'),
('0000006','0064117'),
('0000443','0064117'),
('0922967','0064117'),
('0502360','0064117'),
('0600531','0063385'),
('0908861','0063385'),
('0001657','0063385'),
('0781183','0063385'),
('0504492','0063385'),
('0731772','0062794'),
('0001954','0062794'),
('0803785','0062794'),
('0417824','0062794'),
('0925418','0062794'),
('0000659','0062994'),
('0001725','0062994'),
('0575552','0062994'),
('0004282','0062994'),
('0682074','0062994'),
('0623658','0063654'),
('0016776','0063654'),
('0000640','0063654'),
('0768321','0063654'),
('0930524','0063654'),
('0001201','0063522'),
('0001023','0063522'),
('0002106','0063522'),
('0085782','0063522'),
('0263052','0063522'),
('0001627','0061811'),
('0001768','0061811'),
('0643105','0061811'),
('0335519','0061811'),
('0309588','0061811'),
('0000075','0061735'),
('0001627','0061735'),
('0000031','0061735'),
('0445523','0061735'),
('0723968','0061735'),
('0000056','0061512'),
('0001421','0061512'),
('0134201','0061512'),
('0031398','0061512'),
('0238105','0061512'),
('0000886','0061418'),
('0001159','0061418'),
('0689488','0061418'),
('0000432','0061418'),
('0663820','0061418'),
('0000843','0061722'),
('0000163','0061722'),
('0001684','0061722'),
('0200122','0061722'),
('0358069','0061722'),
('0006890','0060665'),
('0384908','0060665'),
('0571674','0060665'),
('0001727','0060665'),
('0000080','0060665'),
('0000072','0061184'),
('0000009','0061184'),
('0001719','0061184'),
('0006800','0061184'),
('0000493','0060424'),
('0000527','0060424'),
('0723707','0060424'),
('0922165','0060424'),
('0652109','0060424'),
('0000404','0059017'),
('0001511','0059017'),
('0130286','0059017'),
('0382722','0059017'),
('0170713','0059017'),
('0002131','0059084'),
('0001958','0059084'),
('0001046','0059084'),
('0897808','0059084'),
('0192801','0059084'),
('0001673','0059798'),
('0364455','0059798'),
('0000842','0059798'),
('0757256','0059798'),
('0200122','0059798'),
('0001627','0059573'),
('0001859','0059573'),
('0366946','0059573'),
('0285922','0059573'),
('0228853','0059573'),
('0000030','0058385'),
('0001322','0058385'),
('0391361','0058385'),
('0405035','0058385'),
('0178066','0058385'),
('0000267','0058331'),
('0001813','0058331'),
('0866835','0058331'),
('0424318','0058331'),
('0045968','0058331'),
('0580479','0058672'),
('0001811','0058672'),
('0001703','0058672'),
('0605923','0058672'),
('0353916','0058672'),
('0000063','0057831'),
('0000869','0057831'),
('0660327','0057831'),
('0444321','0057831'),
('0610127','0057831'),
('0001215','0057590'),
('0948772','0057590'),
('0341518','0057590'),
('0262725','0057590'),
('0339343','0057590'),
('0001627','0057251'),
('0803785','0057251'),
('0542858','0057251'),
('0187886','0057251'),
('0419051','0057251'),
('0000056','0057163'),
('0002048','0057163'),
('0623658','0057163'),
('0001121','0057163'),
('0000946','0057163'),
('0000072','0057634'),
('0000009','0057634'),
('0431139','0057634'),
('0553349','0057634'),
('0751983','0057634'),
('0000564','0056172'),
('0000027','0056172'),
('0000063','0056172'),
('0370144','0056172'),
('0001725','0056172'),
('0000060','0056592'),
('0000825','0056592'),
('0019221','0056592'),
('0000380','0056592'),
('0576345','0056592'),
('0000843','0056241'),
('0430460','0056241'),
('0842421','0056241'),
('0697785','0056241'),
('0173714','0056241'),
('0000056','0056541'),
('0656183','0056541'),
('0004309','0056541'),
('0003225','0056541'),
('0001800','0056541'),
('0001157','0056241'),
('0000081','0055614'),
('0000937','0055614'),
('0848560','0055614'),
('0001549','0055614'),
('0001995','0055614'),
('0000075','0055031'),
('0000044','0055031'),
('0001847','0055031'),
('0000017','0055031'),
('0001703','0055031'),
('0000047','0054749'),
('0000901','0054749'),
('0113505','0054749'),
('0632426','0054749'),
('0154804','0054749'),
('0000493','0053604'),
('0000511','0053604'),
('0534045','0053604'),
('0001827','0053604'),
('0472816','0053604'),
('0000044','0053793'),
('0001739','0053793'),
('0447913','0053793'),
('0415591','0053793'),
('0429250','0053793'),
('0000072','0053622'),
('0002131','0053622'),
('0279472','0053622'),
('0581277','0053622'),
('0242972','0053622'),
('0000018','0054331'),
('0000059','0054331'),
('0001739','0054331'),
('0001452','0054331'),
('0001811','0054331'),
('0000032','0052618'),
('0370144','0052618'),
('0361823','0052618'),
('0000963','0052618'),
('0341518','0052618'),
('0797531','0053226'),
('0002131','0053226'),
('0780765','0053226'),
('0938372','0053226'),
('0396819','0053226'),
('0674012','0052738'),
('0771584','0052738'),
('0001859','0052738'),
('0000937','0052738'),
('0399345','0052738'),
('0001989','0051658'),
('0002001','0051658'),
('0431139','0051658'),
('0320006','0051658'),
('0001247','0051658'),
('0000039','0052182'),
('0000028','0052182'),
('0000057','0052182'),
('0384908','0052182'),
('0000044','0052182'),
('0001333','0051758'),
('0643000','0051758'),
('0898782','0051758'),
('0000942','0051758'),
('0490639','0051758'),
('0000060','0051411'),
('0001739','0051411'),
('0004647','0051411'),
('0000032','0051411'),
('0412322','0051411'),
('0000034','0050212'),
('0370144','0050212'),
('0000027','0050212'),
('0370564','0050212'),
('0232019','0050212'),
('0940946','0051077'),
('0915536','0051077'),
('0002011','0051077'),
('0422015','0051077'),
('0614816','0051077'),
('0000008','0050933'),
('0654434','0050933'),
('0001258','0050933'),
('0779549','0050933'),
('0846987','0050933'),
('0000999','0050933'),
('0880855','0050933'),
('0000057','0048960'),
('0134594','0048960'),
('0192958','0048960'),
('0605923','0048960'),
('0820105','0048960'),
('0000039','0049408'),
('0000989','0049408'),
('0001549','0049408'),
('0072578','0049408'),
('0766975','0049408'),
('0000006','0048947'),
('0000989','0048947'),
('0371040','0048947'),
('0848667','0048947'),
('0402558','0048947'),
('0000018','0049456'),
('0000063','0049456'),
('0232019','0049456'),
('0114386','0049456'),
('0806041','0049456'),
('0001369','0049966'),
('0000002','0049966'),
('0821041','0049966'),
('0540416','0049966'),
('0445290','0049966'),
('0000072','0049261'),
('0001369','0049261'),
('0000015','0049261'),
('0004647','0049261'),
('0936730','0049261'),
('0000308','0048356'),
('0086198','0048356'),
('0591034','0048356'),
('0162557','0048356'),
('0544064','0048356'),
('0536167','0048563'),
('0000044','0048563'),
('0667542','0048563'),
('0177879','0048563'),
('0340706','0048563'),
('0000020','0048380'),
('0000010','0048380'),
('0001635','0048380'),
('0000493','0048380'),
('0658133','0048380'),
('0364915','0048028'),
('0000015','0048028'),
('0557339','0048028'),
('0412322','0048028'),
('0202501','0048028'),
('0886888','0048028'),
('0000008','0047296'),
('0001500','0047296'),
('0002011','0047296'),
('0001768','0047296'),
('0377416','0047296'),
('0001078','0046874'),
('0000038','0046874'),
('0000034','0046874'),
('0743218','0046874'),
('0721728','0046874'),
('0000007','0046754'),
('0001257','0046754'),
('0639529','0046754'),
('0330961','0046754'),
('0181305','0046754'),
('0001693','0047296'),
('0000044','0045793'),
('0001050','0045793'),
('0000039','0045793'),
('0001656','0045793'),
('0000069','0045793'),
('0000034','0046359'),
('0852279','0046359'),
('0695937','0046359'),
('0833865','0046359'),
('0501183','0046359'),
('0000060','0046250'),
('0000030','0046250'),
('0000734','0046250'),
('0694403','0046250'),
('0930732','0046250'),
('0002149','0044672'),
('0928425','0044672'),
('0000032','0044672'),
('0483787','0044672'),
('0002108','0044672'),
('0000011','0044706'),
('0593775','0044706'),
('0000978','0044706'),
('0432827','0044706'),
('0000038','0044706'),
('0000044','0044509'),
('0095804','0044509'),
('0601930','0044509'),
('0001395','0044509'),
('0643211','0044509'),
('0000008','0045296'),
('0676492','0045296'),
('0000063','0045296'),
('0936476','0045296'),
('0608909','0045296'),
('0001805','0044391'),
('0000018','0044391'),
('0682074','0044391'),
('0694090','0044391'),
('0837959','0044391'),
('0002108','0044391'),
('0000078','0045061'),
('0000058','0045061'),
('0280178','0045061'),
('0000955','0045061'),
('0572142','0045061'),
('0000037','0043278'),
('0001989','0043278'),
('0505157','0043278'),
('0350250','0043278'),
('0001225','0043278'),
('0000007','0043265'),
('0000031','0043265'),
('0605923','0043265'),
('0119988','0043265'),
('0000942','0043265'),
('0000046','0044081'),
('0000008','0044081'),
('0001375','0044081'),
('0001500','0044081'),
('0094036','0044081'),
('0001050','0043924'),
('0000072','0043924'),
('0001859','0043924'),
('0720843','0043924'),
('0105462','0043924'),
('0000012','0042192'),
('0000879','0042192'),
('0001695','0042192'),
('0002141','0042192'),
('0581282','0042192'),
('0001207','0042367'),
('0694580','0042367'),
('0697733','0042367'),
('0138885','0042367'),
('0163404','0042367'),
('0391062','0042276'),
('0002024','0042276'),
('0000034','0042276'),
('0820643','0042276'),
('0653239','0042276'),
('0000071','0042546'),
('0401449','0042546'),
('0235627','0042546'),
('0236866','0042546'),
('0445523','0042546'),
('0002024','0041113'),
('0409869','0041113'),
('0238445','0041113'),
('0001135','0041113'),
('0564790','0041113'),
('0000014','0041452'),
('0001050','0041452'),
('0724732','0041452'),
('0394244','0041452'),
('0114847','0041452'),
('0000060','0041996'),
('0549280','0041996'),
('0581282','0041996'),
('0593612','0041996'),
('0415591','0041996'),
('0002022','0041587'),
('0001105','0041587'),
('0815433','0041587'),
('0000018','0041587'),
('0007222','0041587'),
('0491406','0040416'),
('0460874','0040416'),
('0703033','0040416'),
('0532277','0040416'),
('0930732','0040416'),
('0000059','0040416'),
('0943837','0040495'),
('0000817','0040495'),
('0001948','0040495'),
('0001547','0040495'),
('0573640','0040495'),
('0000007','0040897'),
('0404158','0040897'),
('0392529','0040897'),
('0071636','0040897'),
('0533692','0040897'),
('0000007','0040506'),
('0000064','0040506'),
('0000002','0040506'),
('0000859','0040506'),
('0872456','0040506'),
('0000060','0039416'),
('0570192','0039416'),
('0002092','0039416'),
('0002141','0039416'),
('0720843','0039416'),
('0172903','0039335'),
('0368516','0039335'),
('0639529','0039335'),
('0001859','0039335'),
('0172615','0039335'),
('0949835','0039370'),
('0001072','0039370'),
('0000856','0039370'),
('0001948','0039370'),
('0387556','0039370'),
('0000058','0039628'),
('0668361','0039628'),
('0350324','0039628'),
('0516876','0039628'),
('0000081','0039628'),
('0001485','0036868'),
('0545298','0036868'),
('0000763','0036868'),
('0942863','0036868'),
('0562920','0036868'),
('0000014','0039040'),
('0027156','0039040'),
('0191745','0039040'),
('0856062','0039040'),
('0329433','0039040'),
('0751174','0036868'),
('0000061','0038873'),
('0000074','0038873'),
('0668361','0038873'),
('0000879','0038873'),
('0916067','0038873'),
('0001537','0037884'),
('0943837','0037884'),
('0856062','0037884'),
('0196247','0037884'),
('0235835','0037884'),
('0001076','0037913'),
('0007217','0037913'),
('0779923','0037913'),
('0000781','0037913'),
('0001955','0037913'),
('0570192','0038190'),
('0000951','0038190'),
('0007223','0038190'),
('0634313','0038190'),
('0322299','0038190'),
('0001682','0037120'),
('0187981','0037120'),
('0000072','0037120'),
('0720843','0037120'),
('0001450','0037120'),
('0001078','0036872'),
('0280178','0036872'),
('0570451','0036872'),
('0113769','0036872'),
('0516876','0036872'),
('0000964','0036855'),
('0000006','0036855'),
('0001072','0036855'),
('0926599','0036855'),
('0001450','0036855'),
('0000026','0037135'),
('0000856','0037135'),
('0280178','0037135'),
('0243454','0037135'),
('0943553','0037135'),
('0000007','0034583'),
('0000006','0034583'),
('0002134','0034583'),
('0001647','0034583'),
('0891998','0034583'),
('0000012','0036515'),
('0280242','0036515'),
('0914778','0036515'),
('0094135','0036515'),
('0510134','0036515'),
('0428354','0036377'),
('0264278','0036377'),
('0001948','0036377'),
('0001637','0036377'),
('0002011','0036377'),
('0000795','0036172'),
('0566948','0036172'),
('0002013','0036172'),
('0301348','0036172'),
('0071636','0036172'),
('0000011','0035896'),
('0000006','0035896'),
('0848667','0035896'),
('0194742','0035896'),
('0812453','0035896'),
('0668093','0035896'),
('0002093','0035093'),
('0682074','0035093'),
('0942863','0035093'),
('0926599','0035093'),
('0654239','0035093'),
('0000010','0035575'),
('0504125','0035575'),
('0404158','0035575'),
('0926636','0035575'),
('0543287','0035575'),
('0001791','0033774'),
('0001805','0033774'),
('0036427','0033774'),
('0001336','0033774'),
('0827577','0033774'),
('0682074','0033729'),
('0000058','0033729'),
('0496819','0033729'),
('0187981','0033729'),
('0001522','0033729'),
('0000011','0034167'),
('0000974','0034167'),
('0504125','0034167'),
('0864869','0034167'),
('0725897','0034167'),
('0000026','0034248'),
('0000021','0034248'),
('0362567','0034248'),
('0115558','0034248'),
('0926599','0034248'),
('0000012','0033677'),
('0107575','0033677'),
('0000802','0033677'),
('0914778','0033677'),
('0567408','0033677'),
('0000059','0032976'),
('0000021','0032976'),
('0001695','0032976'),
('0000752','0032976'),
('0178066','0032976'),
('0000026','0032904'),
('0000031','0032904'),
('0000071','0032904'),
('0404046','0032904'),
('0397397','0032904'),
('0001677','0032671'),
('0604605','0032671'),
('0185883','0032671'),
('0161862','0032671'),
('0181960','0032671'),
('0000011','0033253'),
('0000974','0033253'),
('0202589','0033253'),
('0831872','0033253'),
('0875861','0033253'),
('0000020','0032551'),
('0002034','0032551'),
('0001017','0032551'),
('0335788','0032551'),
('0100758','0032551'),
('0232196','0031385'),
('0002093','0031385'),
('0452953','0031385'),
('0590055','0031385'),
('0002134','0031385'),
('0872456','0031971'),
('0000078','0031971'),
('0222596','0031971'),
('0001017','0031971'),
('0593775','0031971'),
('0567408','0031381'),
('0000795','0030993'),
('0000859','0030993'),
('0000071','0030993'),
('0036427','0030993'),
('0041681','0030993'),
('0000075','0029942'),
('0001682','0029942'),
('0401434','0029942'),
('0272059','0029942'),
('0721728','0029942'),
('0000012','0030287'),
('0000020','0030287'),
('0107575','0030287'),
('0512267','0030287'),
('0187981','0030287'),
('0949835','0030317'),
('0338901','0030317'),
('0000974','0030317'),
('0241523','0030317'),
('0605904','0030317'),
('0047810','0030287'),
('0612847','0029146'),
('0814216','0029146'),
('0771584','0029146'),
('0390192','0029146'),
('0187981','0029146'),
('0000861','0028691'),
('0000075','0028691'),
('0000859','0028691'),
('0002048','0028691'),
('0335788','0028691'),
('0612847','0028944'),
('0707023','0028944'),
('0175369','0028944'),
('0521300','0028944'),
('0335788','0028944'),
('0000061','0029047'),
('0269647','0029047'),
('0000747','0029047'),
('0103567','0029047'),
('0222596','0029047'),
('0002050','0028597'),
('0000026','0028597'),
('0000897','0028597'),
('0195422','0028597'),
('0192258','0028597'),
('0001635','0027698'),
('0001485','0027698'),
('0707023','0027698'),
('0604656','0027698'),
('0108511','0027698'),
('0612847','0028313'),
('0404360','0028313'),
('0521937','0028313'),
('0940579','0028313'),
('0500021','0028313'),
('0036427','0027459'),
('0566948','0027459'),
('0002068','0027459'),
('0000974','0027459'),
('0160130','0027459'),
('0545298','0027300'),
('0000014','0027300'),
('0940579','0027300'),
('0521937','0027300'),
('0350324','0027300'),
('0814216','0027300'),
('0000011','0027996'),
('0000795','0027996'),
('0051628','0027996'),
('0822034','0027996'),
('0241523','0027996'),
('0001452','0026752'),
('0000022','0026752'),
('0867144','0026752'),
('0612743','0026752'),
('0703600','0026752'),
('0572142','0026529'),
('0029456','0026529'),
('0288003','0026529'),
('0334375','0026529'),
('0285922','0026529'),
('0000012','0026261'),
('0867144','0026261'),
('0512267','0026261'),
('0804375','0026261'),
('0253141','0026261'),
('0000022','0025316'),
('0001055','0025316'),
('0175369','0025316'),
('0439850','0025316'),
('0858977','0025316'),
('0944087','0023876'),
('0111612','0023876'),
('0640547','0023876'),
('0612743','0023876'),
('0580240','0023876'),
('0001452','0024473'),
('0232196','0024473'),
('0245579','0024473'),
('0541766','0024473'),
('0360567','0024473'),
('0000031','0024353'),
('0001195','0024353'),
('0579663','0024353'),
('0242041','0024353'),
('0807580','0024353'),
('0001256','0022958'),
('0000858','0022958'),
('0001076','0022958'),
('0000891','0022958'),
('0000859','0022958'),
('0000891','0021730'),
('0178114','0021730'),
('0723658','0021730'),
('0040374','0021730'),
('0112395','0021730'),
('0371040','0022386'),
('0832011','0022386'),
('0358076','0022386'),
('0249893','0022386'),
('0380965','0022386'),
('0251755','0021635'),
('0007223','0021635'),
('0326809','0021635'),
('0201227','0021635'),
('0280707','0021635'),
('0228715','0021746'),
('0002050','0021746'),
('0852347','0021746'),
('0642042','0021746'),
('0171873','0021746'),
('0790454','0021885'),
('0001366','0021885'),
('0000859','0021885'),
('0322299','0021885'),
('0000022','0021885'),
('0237597','0021148'),
('0000891','0021148'),
('0429923','0021148'),
('0708081','0021148'),
('0226858','0021148'),
('0178114','0022397'),
('0176867','0022397'),
('0338191','0022397'),
('0780684','0022397'),
('0732062','0022397'),
('0454558','0019729'),
('0656105','0019729'),
('0522281','0019729'),
('0062828','0020018'),
('0522927','0020018'),
('0121282','0020018'),
('0531759','0020018'),
('0113867','0020018'),
('0681933','0019788'),
('0113902','0019788'),
('0601596','0019788'),
('0820821','0019788'),
('0417829','0019788'),
('0341464','0019824'),
('0889511','0019824'),
('0912478','0019824'),
('0445246','0019824'),
('0237597','0019824'),
('0001966','0018578'),
('0736777','0018578'),
('0035159','0018578'),
('0707814','0018578'),
('0107151','0018578'),
('0417837','0019071'),
('0107574','0019071'),
('0001635','0019071'),
('0713281','0019071'),
('0816007','0019071'),
('0310980','0018379'),
('0268190','0018379'),
('0054135','0018379'),
('0334581','0018379'),
('0124877','0018379'),
('0101955','0018515'),
('0000802','0018515'),
('0938464','0018515'),
('0891349','0018515'),
('0445246','0018515'),
('0001497','0413300'),
('0000379','0413300'),
('0290556','0413300'),
('0002006','0413300'),
('0333410','0413300'),
('0005562','0317219'),
('0000056','0317219'),
('0001372','0317219'),
('1249256','0317219'),
('0001507','0317219'),
('0000136','0383574'),
('0089217','0383574'),
('0461136','0383574'),
('0202603','0383574'),
('0631490','0383574'),
('0413168','0376994'),
('0000932','0376994'),
('0005212','0376994'),
('0001772','0376994'),
('0000463','0376994'),
('0000158','0382625'),
('0851582','0382625'),
('0005212','0382625'),
('0000606','0382625'),
('0079273','0382625'),
('0746125','0348150'),
('0098378','0348150'),
('0000228','0348150'),
('0005188','0348150'),
('0000205','0348150'),
('0005380','0438097'),
('0000491','0438097'),
('0001459','0438097'),
('0005405','0438097'),
('0669681','0438097'),
('0000246','0327084'),
('0788009','0327084'),
('0136797','0327084'),
('0843100','0327084'),
('0000638','0327084'),
('0170550','0415306'),
('0528331','0415306'),
('1151921','0415306'),
('2713985','0415306'),
('2336223','0415306'),
('0001191','0389860'),
('0000295','0389860'),
('0000686','0389860'),
('0001327','0389860'),
('0001857','0389860'),
('0037410','0375679'),
('0049079','0375679'),
('0000113','0375679'),
('0000332','0375679'),
('0160988','0375679'),
('1738584','0379725'),
('0827274','0379725'),
('0000450','0379725'),
('0033758','0379725'),
('1893372','0379725'),
('0001618','0358273'),
('0000702','0358273'),
('0329481','0358273'),
('0001598','0358273'),
('1316767','0358273'),
('1315378','0365737'),
('0000123','0365737'),
('0906756','0365737'),
('0001626','0365737'),
('0942482','0365737'),
('0000146','0387131'),
('0001838','0387131'),
('0468003','0387131'),
('0404111','0387131'),
('1597084','0387131'),
('0005132','0388795'),
('0350453','0388795'),
('0001642','0388795'),
('0686502','0388795'),
('1345143','0388795'),
('0000129','0317919'),
('0000450','0317919'),
('0000609','0317919'),
('0001082','0317919'),
('1157358','0317919'),
('0000196','0413267'),
('0000552','0413267'),
('0000139','0413267'),
('0000104','0413267'),
('0000267','0413267'),
('0000136','0449088'),
('0001691','0449088'),
('0089217','0449088'),
('0461136','0449088'),
('0202603','0449088'),
('0705356','0373889'),
('0914612','0373889'),
('0342488','0373889'),
('2144593','0373889'),
('2178650','0373889'),
('0001774','0477347'),
('0001303','0477347'),
('0001813','0477347'),
('0001682','0477347'),
('0167850','0477347'),
('0000354','0440963'),
('0005466','0440963'),
('0000657','0440963'),
('0001277','0440963'),
('0175916','0440963'),
('0652663','0382932'),
('0000453','0382932'),
('0738918','0382932'),
('0001133','0382932'),
('0812307','0382932'),
('0016141','0366548'),
('0101603','0366548'),
('0305261','0366548'),
('1146844','0366548'),
('0000245','0366548'),
('0144657','0462538'),
('0001413','0462538'),
('0004813','0462538'),
('0810379','0462538'),
('0790434','0462538'),
('0185819','0381061'),
('1200692','0381061'),
('0586568','0381061'),
('0001132','0381061'),
('0942482','0381061'),
('0000226','0454921'),
('1535523','0454921'),
('0628601','0454921'),
('0397788','0454921'),
('0439170','0454921'),
('0479471','0418279'),
('1083271','0418279'),
('0241049','0418279'),
('0879085','0418279'),
('1592225','0418279'),
('0124930','0416449'),
('0372176','0416449'),
('0922035','0416449'),
('0920992','0416449'),
('0716490','0416449'),
('0000741','0486946'),
('0000237','0486946'),
('0001454','0486946'),
('0000513','0486946'),
('0000501','0486946'),
('0736622','0478311'),
('0001337','0478311'),
('0748620','0478311'),
('0005182','0478311'),
('0781981','0478311'),
('0000138','0407887'),
('0000354','0407887'),
('0000197','0407887'),
('0000242','0407887'),
('0000640','0407887'),
('0001845','0455590'),
('0564215','0455590'),
('0913488','0455590'),
('0000096','0455590'),
('0564402','0455590'),
('0000545','0436697'),
('0000342','0436697'),
('0421105','0436697'),
('0019885','0436697'),
('0843401','0436697'),
('1113550','0449059'),
('0001427','0449059'),
('0200452','0449059'),
('0000273','0449059'),
('0001057','0449059'),
('0004937','0443489'),
('0461498','0443489'),
('0000552','0443489'),
('0000418','0443489'),
('1617685','0443489'),
('0000288','0468569'),
('0005132','0468569'),
('0001173','0468569'),
('0000323','0468569'),
('0350454','0468569'),
('0000375','0371746'),
('0005024','0371746'),
('0000313','0371746'),
('0000569','0371746'),
('0004753','0371746'),
('0000148','0367882'),
('0000949','0367882'),
('0000261','0367882'),
('0479471','0367882'),
('0935653','0367882'),
('0000226','0480249'),
('0103797','0480249'),
('2253071','0480249'),
('0724757','0480249'),
('2405238','0480249'),
('0000226','0448157'),
('0000234','0448157'),
('0000867','0448157'),
('2052567','0448157'),
('0550371','0448157'),
('0123785','0910970'),
('2264184','0910970'),
('0307531','0910970'),
('0929609','0910970'),
('3050831','0910970'),
('0000115','0465234'),
('0058581','0465234'),
('1208167','0465234'),
('0000685','0465234'),
('0000545','0465234'),
('0005134','0952640'),
('0189144','0952640'),
('0724460','0952640'),
('0528331','0952640'),
('0519043','0952640'),
('0085312','0441773'),
('0000163','0441773'),
('0001401','0441773'),
('0574534','0441773'),
('0000329','0441773'),
('0000120','0451079'),
('0136797','0451079'),
('0000993','0451079'),
('0004715','0451079'),
('0736622','0451079'),
('0000572','1000774'),
('0000326','1000774'),
('0004862','1000774'),
('0633223','1000774'),
('0636562','1000774'),
('0680983','0467406'),
('0148418','0467406'),
('0004950','0467406'),
('0000867','0467406'),
('0005049','0467406'),
('1602660','0499448'),
('1670137','0499448'),
('1342727','0499448'),
('0608440','0499448'),
('0691600','0499448'),
('0000676','0293564'),
('0000329','0293564'),
('0001884','0293564'),
('0760796','0293564'),
('0040939','0293564'),
('1086543','0795421'),
('0001745','0795421'),
('0000112','0795421'),
('1893071','0795421'),
('0000147','0795421'),
('0000169','0477348'),
('0000849','0477348'),
('0000982','0477348'),
('0000437','0477348'),
('0531808','0477348'),
('0000358','0469494'),
('2872491','0469494'),
('2872058','0469494'),
('2871845','0469494'),
('2872133','0469494'),
('0182839','0450188'),
('0856500','0450188'),
('0339621','0450188'),
('0782561','0450188'),
('0746162','0450188'),
('0929489','0465538'),
('0001574','0465538'),
('0001628','0465538'),
('2796342','0465538'),
('0842770','0465538'),
('0479471','1055369'),
('1083271','1055369'),
('0241049','1055369'),
('0879085','1055369'),
('0001806','1055369'),
('0705356','0417741'),
('0342488','0417741'),
('0914612','0417741'),
('0000980','0417741'),
('2917590','0417741'),
('0000799','1049413'),
('0001626','1049413'),
('2973712','1049413'),
('0677037','1049413'),
('0005148','1049413'),
('0177896','1119646'),
('1159180','1119646'),
('0302108','1119646'),
('0058581','1119646'),
('0001287','1119646'),
('1517976','0796366'),
('0704270','0796366'),
('0000559','0796366'),
('0051509','0796366'),
('0339304','0796366'),
('0000702','0892782'),
('0736622','0892782'),
('0491402','0892782'),
('0004715','0892782'),
('0000662','0892782'),
('1148186','1080016'),
('0228327','1080016'),
('1616586','1080016'),
('0281068','1080016'),
('1723600','1080016'),
('0829576','1099212'),
('1500155','1099212'),
('0121605','1099212'),
('2230865','1099212'),
('1223023','1099212'),
('0001774','0479952'),
('0001674','0479952'),
('0001710','0479952'),
('0000586','0479952'),
('0056187','0479952'),
('0413168','0458525'),
('0000630','0458525'),
('0404111','0458525'),
('1443238','0458525'),
('1211488','0458525'),
('0001774','1078912'),
('0010736','1078912'),
('0005562','1078912'),
('0000279','1078912'),
('0000245','1078912'),
('0185819','0830515'),
('1385871','0830515'),
('0023832','0830515'),
('0001132','0830515'),
('0316284','0830515'),
('0000113','1041829'),
('0005351','1041829'),
('0005460','1041829'),
('0005266','1041829'),
('0924508','1041829'),
('0004874','1013752'),
('0908094','1013752'),
('0108287','1013752'),
('0735442','1013752'),
('0651159','1013752'),
('0000142','1205489'),
('1542291','1205489'),
('3057402','1205489'),
('3115704','1205489'),
('0355083','1205489'),
('0416673','1114740'),
('1218757','1114740'),
('1724323','1114740'),
('2263115','1114740'),
('0004309','1114740'),
('0000553','0936501'),
('1192254','0936501'),
('0650702','0936501'),
('0340973','0936501'),
('0913175','0936501'),
('0015382','1046173'),
('0001172','1046173'),
('0280081','1046173'),
('0330687','1046173'),
('1795989','1046173'),
('0000576','1013753'),
('0386472','1013753'),
('0000982','1013753'),
('0526019','1013753'),
('0290556','1013753'),
('0000146','0976051'),
('0354198','0976051'),
('1269088','0976051'),
('0000701','0976051'),
('0521443','0976051'),
('0356017','0497465'),
('0424060','0497465'),
('0000849','0497465'),
('0004851','0497465'),
('0919525','0497465'),
('2353862','1010048'),
('0438463','1010048'),
('0958861','1010048'),
('2951768','1010048'),
('0795661','1010048'),
('0941777','0499549'),
('0757855','0499549'),
('0000244','0499549'),
('0002332','0499549'),
('0735442','0499549'),
('0000158','0435761'),
('0000741','0435761'),
('0000349','0435761'),
('0000885','0435761'),
('0725543','0435761'),
('0000136','1014759'),
('1985859','1014759'),
('0000307','1014759'),
('0004266','1014759'),
('0000417','1014759'),
('0000375','1228705'),
('0000332','1228705'),
('0424060','1228705'),
('0000569','1228705'),
('0005377','1228705'),
('0829576','1325004'),
('1500155','1325004'),
('1210124','1325004'),
('1882152','1325004'),
('0397171','1325004'),
('0829576','1259571'),
('0419363','1259571'),
('1500155','1259571'),
('0121605','1259571'),
('0447695','1259571'),
('0000138','1375666'),
('0330687','1375666'),
('0680983','1375666'),
('0362766','1375666'),
('0913822','1375666'),
('0000113','0878804'),
('0005210','0878804'),
('2466842','0878804'),
('2052567','0878804'),
('2934314','0878804'),
('0136797','1323594'),
('0781981','1323594'),
('1258970','1323594'),
('0000267','1323594'),
('0004715','1323594'),
('0000196','0892791'),
('0000552','0892791'),
('0000139','0892791'),
('0000104','0892791'),
('0000267','0892791'),
('1157048','1231580'),
('0189144','1231580'),
('0005134','1231580'),
('0519043','1231580'),
('1693763','1231580'),
('0059431','0892769'),
('0124930','0892769'),
('0272401','0892769'),
('1065229','0892769'),
('1706767','0892769'),
('0000375','0988045'),
('0000179','0988045'),
('1046097','0988045'),
('0835016','0988045'),
('0550371','0988045'),
('1535523','1155076'),
('0000329','1155076'),
('0378245','1155076'),
('3924219','1155076'),
('0950552','1155076'),
('0000131','1190080'),
('0001605','1190080'),
('0252230','1190080'),
('0628601','1190080'),
('0001624','1190080'),
('0941777','0800320'),
('0000553','0800320'),
('0000146','0800320'),
('0002076','0800320'),
('2605345','0800320'),
('0001191','1375670'),
('0416673','1375670'),
('0001674','1375670'),
('0005450','1375670'),
('0001705','1375670'),
('0719637','0887912'),
('1107001','0887912'),
('1310016','0887912'),
('0001602','0887912'),
('0000146','0887912'),
('0000313','1263670'),
('0443856','1263670'),
('2485687','1263670'),
('0379200','1263670'),
('0101005','1263670'),
('0000093','0361748'),
('0491259','0361748'),
('0910607','0361748'),
('0744834','0361748'),
('1055413','0361748'),
('2829737','0929632'),
('0594898','0929632'),
('1745736','0929632'),
('0001014','0929632'),
('0791868','0929632'),
('0000564','0063227'),
('0000031','0063227'),
('0000164','0063227'),
('0145284','0063227'),
('0856050','0063227'),
('0705356','1201607'),
('0342488','1201607'),
('0914612','1201607'),
('0000146','1201607'),
('0000614','1201607'),
('0479471','1399103'),
('0241049','1399103'),
('0001806','1399103'),
('0879085','1399103'),
('2492819','1399103'),
('0631490','0926084'),
('0914612','0926084'),
('0341743','0926084'),
('0577982','0926084'),
('0705356','0926084'),
('0177896','1411697'),
('1159180','1411697'),
('0302108','1411697'),
('0058581','1411697'),
('0421822','1411697'),
('0000136','1298650'),
('0004851','1298650'),
('0001691','1298650'),
('0574534','1298650'),
('0573618','1298650'),
('0004874','1596343'),
('0908094','1596343'),
('0108287','1596343'),
('0879085','1596343'),
('0524839','1596343'),
('0601553','0398286'),
('1157048','0398286'),
('0614220','0398286'),
('0000579','0398286'),
('0301370','0398286'),
('1249256','1216475'),
('0005562','1216475'),
('0000323','1216475'),
('0607865','1216475'),
('0412850','1216475'),
('1165110','0800369'),
('0000204','0800369'),
('1089991','0800369'),
('0000164','0800369'),
('0001745','0800369'),
('0262635','0458339'),
('2017943','0458339'),
('1659221','0458339'),
('0000169','0458339'),
('0915989','0458339'),
('0000313','1104001'),
('1330560','1104001'),
('1312575','1104001'),
('0000310','1104001'),
('0289656','1104001'),
('0290556','1318514'),
('2951768','1318514'),
('0001475','1318514'),
('0004051','1318514'),
('0271657','1318514'),
('0000313','1403865'),
('2794962','1403865'),
('0000354','1403865'),
('0000982','1403865'),
('0001608','1403865'),
('1325419','1478338'),
('0126284','1478338'),
('0748973','1478338'),
('2608689','1478338'),
('0565250','1478338'),
('0085312','1302011'),
('0001401','1302011'),
('0000163','1302011'),
('0000198','1302011'),
('0000329','1302011'),
('0000147','1504320'),
('0000307','1504320'),
('0001394','1504320'),
('0691928','1504320'),
('0228960','1504320'),
('0000204','0947798'),
('0005109','0947798'),
('0001993','0947798'),
('0001347','0947798'),
('0000213','0947798'),
('0000242','0964517'),
('0000288','0964517'),
('0010736','0964517'),
('0502425','0964517'),
('3923953','0964517'),
('0000375','0848228'),
('0262635','0848228'),
('0749263','0848228'),
('1165110','0848228'),
('0424060','0848228'),
('0000288','1345836'),
('0000198','1345836'),
('0362766','1345836'),
('0330687','1345836'),
('0004266','1345836'),
('0001804','1392170'),
('0004747','1392170'),
('2225369','1392170'),
('3094377','1392170'),
('2955013','1392170'),
('1210124','1324999'),
('0121605','1324999'),
('0083655','1324999'),
('0829576','1324999'),
('1500155','1324999'),
('1940449','0948470'),
('1297015','0948470'),
('0406975','0948470'),
('0001459','0948470'),
('0000640','0948470'),
('0531808','1217209'),
('0175262','1217209'),
('0000668','1217209'),
('0910278','1217209'),
('0001059','1217209'),
('0000242','1637725'),
('0005109','1637725'),
('0532235','1637725'),
('0570364','1637725'),
('0000610','1637725'),
('0001774','1277953'),
('0001674','1277953'),
('0001710','1277953'),
('0000586','1277953'),
('0056187','1277953'),
('0000362','1482459'),
('1159180','1482459'),
('1374980','1482459'),
('2357847','1482459'),
('0924508','1482459'),
('0000129','1229238'),
('1745736','1229238'),
('0670408','1229238'),
('0719637','1229238'),
('0638824','1229238'),
('0000375','1515091'),
('0000179','1515091'),
('0636426','1515091'),
('1046097','1515091'),
('0364813','1515091'),
('0000226','1409024'),
('0000169','1409024'),
('0000982','1409024'),
('1318596','1409024'),
('0000668','1409024'),
('1297015','1454029'),
('0205626','1454029'),
('0397171','1454029'),
('0818055','1454029'),
('1567113','1454029'),
('0241121','1655442'),
('0067367','1655442'),
('0000422','1655442'),
('0000342','1655442'),
('0000542','1655442'),
('0000658','1007029'),
('0000980','1007029'),
('0114742','1007029'),
('1927126','1007029'),
('3564817','1007029'),
('0000191','1532503'),
('0001626','1532503'),
('0491259','1532503'),
('0899681','1532503'),
('0502097','1532503'),
('0000375','1300854'),
('0000569','1300854'),
('0000332','1300854'),
('0001602','1300854'),
('0356017','1300854'),
('0136797','1690953'),
('1325419','1690953'),
('0000973','1690953'),
('1388927','1690953'),
('1258970','1690953'),
('0185819','1074638'),
('0001132','1074638'),
('0000849','1074638'),
('0000146','1074638'),
('0365140','1074638'),
('0005212','0903624'),
('0293509','0903624'),
('0035514','0903624'),
('0832792','0903624'),
('0574615','0903624'),
('0829576','1673434'),
('1500155','1673434'),
('1210124','1673434'),
('0004906','1673434'),
('0714147','1673434'),
('0147147','0770828'),
('0010736','0770828'),
('0788335','0770828'),
('0000178','0770828'),
('0000128','0770828'),
('0000345','1453405'),
('0000422','1453405'),
('0000114','1453405'),
('0000545','1453405'),
('0812307','1453405'),
('0004874','1905041'),
('0908094','1905041'),
('0425005','1905041'),
('0108287','1905041'),
('0735442','1905041'),
('0290556','1623205'),
('0005109','1623205'),
('0001838','1623205'),
('0931329','1623205'),
('0103785','1623205'),
('1517976','1408101'),
('0704270','1408101'),
('0757855','1408101'),
('0881631','1408101'),
('0670408','1408101'),
('0000604','1772341'),
('0798971','1772341'),
('1442113','1772341'),
('0528331','1772341'),
('0876138','1772341'),
('0000115','0481499'),
('1297015','0481499'),
('0005351','0481499'),
('0001416','0481499'),
('0001458','0481499'),
('0000358','0443272'),
('0000398','0443272'),
('0000657','0443272'),
('0330687','0443272'),
('0000652','0443272'),
('0000255','1024648'),
('0186505','1024648'),
('0000273','1024648'),
('0000422','1024648'),
('0001255','1024648'),
('0177896','1045658'),
('2225369','1045658'),
('0000134','1045658'),
('0915865','1045658'),
('0000676','1045658'),
('0004937','1853728'),
('0910607','1853728'),
('0000138','1853728'),
('0913488','1853728'),
('0000168','1853728'),
('0413168','1707386'),
('0000128','1707386'),
('0004266','1707386'),
('1086543','1707386'),
('0056187','1707386'),
('4139037','0454876'),
('0451234','0454876'),
('4853568','0454876'),
('5306953','0454876'),
('1300009','0454876'),
('0000093','0816711'),
('0257969','0816711'),
('2020146','0816711'),
('0197647','0816711'),
('0091253','0816711'),
('0000288','1800241'),
('0177896','1800241'),
('0010736','1800241'),
('0719637','1800241'),
('2225369','1800241'),
('2225369','1951264'),
('2955013','1951264'),
('4425051','1951264'),
('1193262','1951264'),
('0480808','1951264'),
('0068338','2294629'),
('0579953','2294629'),
('2676147','2294629'),
('1265802','2294629'),
('2949014','2294629'),
('0695435','2015381'),
('0757855','2015381'),
('1176985','2015381'),
('0004874','2015381'),
('0177896','2015381'),
('0000113','1454468'),
('0000123','1454468'),
('0000438','1454468'),
('1241511','1454468'),
('2060857','1454468'),
('0262635','1843866'),
('0424060','1843866'),
('1659221','1843866'),
('1107001','1843866'),
('0000602','1843866'),
('0005212','1170358'),
('0293509','1170358'),
('0035514','1170358'),
('0832792','1170358'),
('0574615','1170358'),
('0004715','1490017'),
('0006969','1490017'),
('1911947','1490017'),
('1555340','1490017'),
('0123262','1490017'),
('0000242','2109248'),
('0001804','2109248'),
('0001288','2109248'),
('2443758','2109248'),
('2930503','2109248'),
('0001401','1587310'),
('1102577','1587310'),
('1663205','1587310'),
('0544334','1587310'),
('0001767','1587310'),
('0413168','1877832'),
('0564215','1877832'),
('1055413','1877832'),
('2225369','1877832'),
('0000932','1877832'),
('0785227','2103281'),
('0164809','2103281'),
('0000198','2103281'),
('0005392','2103281'),
('1527905','2103281'),
('1165110','1981115'),
('0000204','1981115'),
('1089991','1981115'),
('0000164','1981115'),
('0001172','1981115'),
('1940449','1872181'),
('1297015','1872181'),
('0004937','1872181'),
('2851530','1872181'),
('0272173','1872181'),
('1093951','0831387'),
('2640264','0831387'),
('0913822','0831387'),
('0186505','0831387'),
('0647634','0831387'),
('1706767','2294449'),
('1475594','2294449'),
('0001780','2294449'),
('0751518','2294449'),
('0828226','2294449'),
('1083271','1291150'),
('0004715','1291150'),
('0001209','1291150'),
('2024927','1291150'),
('0279720','1291150'),
('0252230','2024544'),
('4833412','2024544'),
('6003176','2024544'),
('0061262','2024544'),
('2143282','2024544'),
('0000190','0790636'),
('0004950','0790636'),
('0001467','0790636'),
('0641354','0790636'),
('0001872','0790636'),
('0000949','2334873'),
('0137516','2334873'),
('0176384','2334873'),
('1973610','2334873'),
('0000285','2334873'),
('0695435','0369610'),
('0397171','0369610'),
('0451234','0369610'),
('0000352','0369610'),
('1339223','0369610'),
('0000375','2395427'),
('1165110','2395427'),
('0749263','2395427'),
('0262635','2395427'),
('0424060','2395427'),
('0688132','2096673'),
('0809613','2096673'),
('0454236','2096673'),
('0352778','2096673'),
('0085400','2096673'),
('0004874','2820852'),
('0908094','2820852'),
('0005458','2820852'),
('0735442','2820852'),
('0108287','2820852'),
('0000113','2293640'),
('0358316','2293640'),
('0000474','2293640'),
('0005049','2293640'),
('0176869','2293640'),
('0000129','2381249'),
('0719637','2381249'),
('0670408','2381249'),
('0272581','2381249'),
('0000609','2381249'),
('0005212','2310332'),
('0293509','2310332'),
('0035514','2310332'),
('0832792','2310332'),
('0574615','2310332'),
('0177896','2179136'),
('0973177','2179136'),
('6518675','2179136'),
('0715314','2179136'),
('0731826','2179136'),
('2225369','1951265'),
('1242688','1951265'),
('2955013','1951265'),
('0000437','1951265'),
('0000661','1951265'),
('0012523','2245084'),
('3994407','2245084'),
('2024644','2245084'),
('2554352','2245084'),
('1512166','2245084'),
('0000995','0816692'),
('0000190','0816692'),
('3237775','0816692'),
('0001475','0816692'),
('3154303','0816692'),
('0000949','1661199'),
('4141252','1661199'),
('0534635','1661199'),
('0000307','1661199'),
('1996829','1661199'),
('0447695','2848292'),
('2313103','2848292'),
('2794962','2848292'),
('0811242','2848292'),
('2799457','2848292'),
('0000474','2562232'),
('1297015','2562232'),
('2196179','2562232'),
('3691128','2562232'),
('0302108','2562232'),
('1519666','2980516'),
('0428065','2980516'),
('4350114','2980516'),
('6240141','2980516'),
('6887408','2980516'),
('0000194','3316960'),
('0098378','3316960'),
('0574460','3316960'),
('1446060','3316960'),
('0000285','3316960'),
('1886602','2582802'),
('0799777','2582802'),
('0001663','2582802'),
('2552034','2582802'),
('3271473','2582802'),
('1294664','1065073'),
('0000099','1065073'),
('6567391','1065073'),
('1085951','1065073'),
('0697637','1065073'),
('0000148','2488496'),
('0000434','2488496'),
('0000402','2488496'),
('3485845','2488496'),
('5397459','2488496'),
('0001122','2277860'),
('0000983','2277860'),
('0642145','2277860'),
('0647698','2277860'),
('5348776','2277860'),
('0262635','3498820'),
('0000375','3498820'),
('0424060','3498820'),
('1659221','3498820'),
('1107001','3498820'),
('5888481','3040964'),
('0000195','3040964'),
('0001426','3040964'),
('0252961','3040964'),
('2143282','3040964'),
('0127373','2709768'),
('0832314','2709768'),
('0366389','2709768'),
('2809577','2709768'),
('2608689','2709768'),
('0005351','1431045'),
('4175221','1431045'),
('4534098','1431045'),
('0073088','1431045'),
('1292973','1431045'),
('0329481','2948356'),
('0000867','2948356'),
('0252961','2948356'),
('2809577','2948356'),
('1535594','2948356'),
('0000255','2975590'),
('0147147','2975590'),
('0010736','2975590'),
('0251986','2975590'),
('0000178','2975590'),
('0000226','1386697'),
('2968738','1386697'),
('0054697','1386697'),
('3053338','1386697'),
('0246024','1386697'),
('2225369','1951266'),
('1242688','1951266'),
('2955013','1951266'),
('0000437','1951266'),
('0000661','1951266'),
('0000354','3659388'),
('1567113','3659388'),
('1325419','3659388'),
('0001099','3659388'),
('0671567','3659388'),
('0185819','2379713'),
('0910607','2379713'),
('2244205','2379713'),
('0000146','2379713'),
('0000899','2379713'),
('0749263','1895587'),
('0000474','1895587'),
('1046097','1895587'),
('0000630','1895587'),
('0805476','1895587'),
('0000138','1663202'),
('0362766','1663202'),
('1727304','1663202'),
('2401020','1663202'),
('5569442','1663202'),
('0488953','3170832'),
('5016878','3170832'),
('0108703','3170832'),
('0187724','3170832'),
('3223622','3170832'),
('0753314','3682448'),
('0518511','3682448'),
('0894141','3682448'),
('2795735','3682448'),
('0404427','3682448'),
('2539953','0810819'),
('1519666','0810819'),
('0797860','0810819'),
('0771621','0810819'),
('1720028','0810819'),
('0428065','3748528'),
('0526019','3748528'),
('0876138','3748528'),
('0947447','3748528'),
('0422638','3748528'),
('0914612','2771200'),
('1405398','2771200'),
('1812656','2771200'),
('1265802','2771200'),
('0000177','2771200'),
('2933757','0451279'),
('1517976','0451279'),
('0001567','0451279'),
('0000705','0451279'),
('0396812','0451279'),
('0695435','3896198'),
('0757855','3896198'),
('1176985','3896198'),
('0004874','3896198'),
('0177896','3896198'),
('4043618','2250912'),
('0000474','2250912'),
('0000375','2250912'),
('0000673','2250912'),
('0269463','2250912'),
('0000190','3470600'),
('0000702','3470600'),
('0532235','3470600'),
('0424060','3470600'),
('0000604','3470600'),
('0136797','3469046'),
('1325419','3469046'),
('0005295','3469046'),
('1388927','3469046'),
('3269138','3469046'),
('7635388','3521164'),
('0425005','3521164'),
('1344302','3521164'),
('0607325','3521164'),
('1318596','3521164'),
('1519666','3183660'),
('0714866','3183660'),
('2580832','3183660'),
('0072758','3183660'),
('0846925','3183660'),
('1212722','1211837'),
('0252230','1211837'),
('1046097','1211837'),
('0938950','1211837'),
('0586568','1211837'),
('0413168','3315342'),
('0001772','3315342'),
('6748436','3315342'),
('2933542','3315342'),
('0580351','3315342'),
('0004874','4630562'),
('0005458','4630562'),
('0425005','4630562'),
('0735442','4630562'),
('0879085','4630562'),
('5897057','1396484'),
('5582294','1396484'),
('6096118','1396484'),
('6016511','1396484'),
('7483475','1396484'),
('0991810','4975722'),
('8401402','4975722'),
('5429086','4975722'),
('7683379','4975722'),
('1847117','4975722'),
('0000729','4034228'),
('7164242','4034228'),
('0151419','4034228'),
('0232426','4034228'),
('8587165','4034228'),
('0331516','3783958'),
('1297015','3783958'),
('2353430','3783958'),
('0881814','3783958'),
('3235876','3783958'),
('0000243','2671706'),
('0205626','2671706'),
('0376610','2671706'),
('5381254','2671706'),
('0395203','2671706'),
('1569276','1825683'),
('0430107','1825683'),
('2143282','1825683'),
('1775091','1825683'),
('0293509','1825683'),
('0000375','4154756'),
('1165110','4154756'),
('0749263','4154756'),
('0262635','4154756'),
('0424060','4154756'),
('0000434','2527336'),
('0000402','2527336'),
('3485845','2527336'),
('5397459','2527336'),
('3915784','2527336'),
('0005266','3606756'),
('0000456','3606756'),
('1102970','3606756'),
('9133740','3606756'),
('0001416','3606756'),
('0695435','4881806'),
('0397171','4881806'),
('1245863','4881806'),
('6819854','4881806'),
('4427331','4881806'),
('0425005','2283362'),
('0366389','2283362'),
('0085312','2283362'),
('2394794','2283362'),
('1055302','2283362'),
('0005351','5463162'),
('0000982','5463162'),
('1072555','5463162'),
('5421877','5463162'),
('5939164','5463162'),
('1165110','3501632'),
('1089991','3501632'),
('0000949','3501632'),
('0252961','3501632'),
('0000156','3501632'),
('0000255','0974015'),
('0147147','0974015'),
('0010736','0974015'),
('2933757','0974015'),
('3009232','0974015'),
('0000129','4912910'),
('0147147','4912910'),
('0000609','4912910'),
('0670408','4912910'),
('0272581','4912910'),
('0748620','5095030'),
('1431940','5095030'),
('0671567','5095030'),
('0324658','5095030'),
('0134072','5095030'),
('2403277','3778644'),
('6934058','3778644'),
('0000437','3778644'),
('3592338','3778644'),
('2255973','3778644'),
('5645519','2380307'),
('0305558','2380307'),
('0000973','2380307'),
('0005513','2380307'),
('0896149','2380307'),
('1020089','5580390'),
('0788335','5580390'),
('0420955','5580390'),
('0818055','5580390'),
('0836121','5580390'),
('0000198','4555426'),
('0000218','4555426'),
('0578853','4555426'),
('4141252','4555426'),
('0681975','4555426'),
('0000531','5027774'),
('2655177','5027774'),
('0174403','5027774'),
('0005377','5027774'),
('6019128','5027774'),
('3053338','5580036'),
('1659221','5580036'),
('0005049','5580036'),
('0629855','5580036'),
('3236159','5580036'),
('0000375','4154796'),
('0262635','4154796'),
('0749263','4154796'),
('1165110','4154796'),
('0424060','4154796'),
('0252230','6105098'),
('1056659','6105098'),
('0000469','6105098'),
('0434712','6105098'),
('0005569','6105098'),
('0000158','1979376'),
('0000741','1979376'),
('0001633','1979376'),
('0355024','1979376'),
('1221047','1979376'),
('0488953','4154664'),
('0000168','4154664'),
('0578853','4154664'),
('0000179','4154664'),
('0000906','4154664'),
('4043618','6320628'),
('0000168','6320628'),
('0350453','6320628'),
('0000673','6320628'),
('0269463','6320628'),
('0000226','6139732'),
('4565815','6139732'),
('4305463','6139732'),
('3092471','6139732'),
('1041023','6139732'),
('0597388','1477834'),
('1720028','1477834'),
('0000353','1477834'),
('0933940','1477834'),
('0000173','1477834'),
('1212722','2709692'),
('7372981','2709692'),
('0429069','2709692'),
('1214289','2709692'),
('1023255','2709692'),
('1785339','1727824'),
('2377903','1727824'),
('3152605','1727824'),
('5228887','1727824'),
('0001515','1727824'),
('3078932','1517451'),
('0177896','1517451'),
('0000385','1517451'),
('0001048','1517451'),
('1969169','1517451'),
('0362766','1270797'),
('0931329','1270797'),
('1981893','1270797'),
('2020278','1270797'),
('1169428','1270797'),
('0001557','6966692'),
('0991810','6966692'),
('0004802','6966692'),
('1724319','6966692'),
('1221253','6966692'),
('1469236','5083738'),
('0001838','5083738'),
('5938343','5083738'),
('3179464','5083738'),
('1297015','5083738'),
('8460487','7125860'),
('4150847','7125860'),
('0005093','7125860'),
('3500582','7125860'),
('0231458','7125860'),
('8611957','6155172'),
('0211920','6155172'),
('9948845','6155172'),
('9985727','6155172'),
('5841958','6155172'),
('0000402','2527338'),
('0000434','2527338'),
('3485845','2527338'),
('5397459','2527338'),
('3915784','2527338'),
('0068338','4520988'),
('0579953','4520988'),
('1265802','4520988'),
('2676147','4520988'),
('1250791','4520988'),
('0001618','7286456'),
('0000134','7286456'),
('5939164','7286456'),
('0175814','7286456'),
('0191442','7286456'),
('0425005','7975244'),
('0366389','7975244'),
('0085312','7975244'),
('2394794','7975244'),
('5377144','7975244'),
('1567113','7349950'),
('0564215','7349950'),
('0352778','7349950'),
('2248149','7349950'),
('1216008','7349950'),
('0814280','6751668'),
('1310525','6751668'),
('1856097','6751668'),
('6079248','6751668'),
('6476224','6751668'),
('0000250','7549996'),
('2976580','7549996'),
('1587729','7549996'),
('0001722','7549996'),
('0002091','7549996'),
('0000138','7131622'),
('0000093','7131622'),
('3053338','7131622'),
('0386472','7131622'),
('4960279','7131622'),
('3485845','7653254'),
('0424060','7653254'),
('0000368','7653254'),
('7309485','7653254'),
('0001728','7653254');
INSERT INTO Director VALUES ('0000116','0120338'),
('0000184','0076759'),
('0011470','0298148'),
('0000229','0083866'),
('0000184','0120915'),
('0000600','0145487'),
('0000184','0121766'),
('0001392','0167260'),
('0000600','0316654'),
('0000154','0335345'),
('0000229','0107290'),
('0001392','0167261'),
('0004056','0266543'),
('0000709','0109830'),
('0021249','0110357'),
('0001060','0241527'),
('0001392','0120737'),
('0000184','0121765'),
('0549658','0086190'),
('0000386','0116629'),
('0893659','0325980'),
('0796117','0167404'),
('0449984','0080684'),
('0001565','0330373'),
('0001060','0099785'),
('0011470','0363771'),
('0905152','0234215'),
('0005366','0290002'),
('0011470','0126029'),
('0001060','0295297'),
('0083348','0317705'),
('0000165','0170016'),
('0000229','0073195'),
('0230032','0198781'),
('0000318','0096895'),
('0001756','0119654'),
('0190859','0304141'),
('0105169','0120363'),
('0001723','0315327'),
('0000229','0082971'),
('0000957','0117998'),
('0959034','0259446'),
('0718645','0087332'),
('0000976','0086960'),
('0000229','0407304'),
('0000709','0162222'),
('0000229','0119567'),
('0796117','0286106'),
('0711840','0266915'),
('0001060','0107614'),
('0958387','0099653'),
('0166256','0103639'),
('0000229','0120815'),
('0001392','0360717'),
('0000247','0120755'),
('0001741','0290334'),
('0005366','0295178'),
('0000709','0088763'),
('0229694','0396269'),
('0000318','0367594'),
('0005366','0145660'),
('0634240','0372784'),
('0000116','0103064'),
('0001243','0070047'),
('0814085','0209163'),
('0000881','0120591'),
('0281808','0031381'),
('0000881','0213149'),
('0000229','0097576'),
('0201509','0351283'),
('0005124','0114709'),
('0001756','0120912'),
('0000631','0172495'),
('0000386','0319262'),
('0510731','0356910'),
('0000126','0099348'),
('0001708','0112462'),
('0001112','0106977'),
('0001752','0240772'),
('0583600','0207201'),
('0000583','0177971'),
('0001723','0119528'),
('0459170','0077631'),
('0002653','0163025'),
('0000361','0117060'),
('0000318','0133152'),
('0000229','0087469'),
('0005190','0100405'),
('0855035','0386588'),
('0001628','0084805'),
('0001716','0092099'),
('0268370','0129387'),
('0757858','0268380'),
('0339030','0372183'),
('0265363','0090555'),
('0000709','0338348'),
('0001060','0104431'),
('0269463','0319343'),
('0005509','0368891'),
('0001469','0095953'),
('0000583','0118571'),
('0000165','0112384'),
('0905152','0133093'),
('0873779','0101414'),
('0118333','0120855'),
('0000165','0268978'),
('0551128','0299658'),
('0000559','0094137'),
('0005366','0212338'),
('0721817','0102798'),
('0000631','0212985'),
('0000229','0264464'),
('0240797','0142342'),
('0936404','0059742'),
('0000318','0103776'),
('0005124','0120623'),
('0178997','0120484'),
('0074426','0307453'),
('0848414','0246460'),
('0001351','0070735'),
('0001628','0106918'),
('0781842','0398165'),
('0001741','0120903'),
('0005540','0175142'),
('0001490','0093010'),
('0000709','0161081'),
('0814085','0120616'),
('1103162','0120667'),
('0000709','0096438'),
('0001716','0092644'),
('0001081','0116695'),
('0331532','0267913'),
('0314671','0055254'),
('0005190','0163187'),
('0181902','0089880'),
('0609236','0181852'),
('0001102','0087363'),
('0000985','0119822'),
('0001149','0097733'),
('0000116','0111503'),
('0213450','0275847'),
('0736930','0252866'),
('0664756','0111070'),
('0001639','0343818'),
('0001149','0104714'),
('0003418','0232500'),
('0858525','0118998'),
('0000824','0076666'),
('0718627','0061852'),
('0000484','0077975'),
('0300265','0114148'),
('0001661','0104257'),
('0003418','0295701'),
('0711840','0120812'),
('0617130','0185937'),
('0001460','0120647'),
('0002132','0097778'),
('0591450','0164912'),
('0788940','0073629'),
('0001915','0105417'),
('0905152','0242653'),
('0501185','0304669'),
('0506613','0349205'),
('0000881','0172156'),
('0001814','0119217'),
('0000231','0091763'),
('0500343','0130623'),
('0001104','0120689'),
('0000165','0117438'),
('0378893','0115433'),
('0000386','0120685'),
('0006625','0100758'),
('0001723','0129290'),
('0000338','0068646'),
('0001149','0078346'),
('0000881','0117500'),
('0227540','0371606'),
('0781842','0305224'),
('0000583','0332452'),
('0788202','0305669'),
('0000487','0286716'),
('0000229','0181689'),
('0922346','0146316'),
('0001129','0102926'),
('0002653','0097523'),
('0505152','0109813'),
('0005222','0169547'),
('0000431','0084434'),
('0001149','0122151'),
('0000142','0405159'),
('0000431','0350258'),
('0000217','0338751'),
('0000142','0327056'),
('0420941','0340855'),
('0005237','0159365'),
('0000591','0253474'),
('0197636','0274558'),
('0005069','0268126'),
('0298807','0139654'),
('0286975','0285742'),
('0264236','0280778'),
('0001752','0195685'),
('0001752','0181865'),
('0000438','0183659'),
('0005303','0171804'),
('0002120','0124315'),
('0003506','0172493'),
('0006960','0138097'),
('0000905','0118799'),
('0001707','0118564'),
('0000436','0119488'),
('0005237','0116209'),
('0382956','0117631'),
('0001054','0116282'),
('0000154','0112573'),
('0001214','0113627'),
('0000209','0112818'),
('0001741','0114814'),
('0000095','0113819'),
('0724798','0109306'),
('0000318','0109707'),
('0000095','0109348'),
('0000229','0108052'),
('0001129','0107818'),
('0001005','0107822'),
('0000142','0105695'),
('0000976','0105323'),
('0412465','0104454'),
('0528718','0104952'),
('0881038','0101587'),
('0000416','0101889'),
('0775447','0100486'),
('0001661','0100157'),
('0000217','0099685'),
('0000915','0097239'),
('0006487','0097937'),
('0001880','0097441'),
('0000231','0096969'),
('0438279','0094608'),
('0187769','0095159'),
('0001410','0094606'),
('0000934','0093389'),
('0000231','0094291'),
('0422484','0093565'),
('0000361','0094226'),
('0000217','0090863'),
('0354279','0090830'),
('0000095','0091167'),
('0001628','0089755'),
('0002199','0089424'),
('0557751','0090203'),
('0000165','0088933'),
('0001379','0089841'),
('0001232','0086879'),
('0000914','0087921'),
('0423646','0087553'),
('0000180','0087892'),
('0000985','0086425'),
('0000915','0086423'),
('0001837','0086617'),
('0000277','0083987'),
('0001587','0084707'),
('0399853','0082158'),
('0753073','0082846'),
('0330619','0082031'),
('0000886','0082979'),
('0000602','0081283'),
('0000217','0081398'),
('0000776','0080549'),
('0001129','0081150'),
('0000914','0079417'),
('0728688','0079638'),
('0000797','0078841'),
('0001047','0077416'),
('0000797','0077362'),
('0006889','0077289'),
('0000095','0075686'),
('0006889','0076095'),
('0003593','0076245'),
('0000814','0075148'),
('0001486','0074958'),
('0001587','0074119'),
('0001232','0073486'),
('0006889','0073766'),
('0000797','0073692'),
('0000338','0071562'),
('0005196','0071598'),
('0000217','0071115'),
('0001486','0071877'),
('0000814','0070640'),
('0291035','0070819'),
('0108745','0070509'),
('0000953','0070510'),
('0002080','0068327'),
('0441501','0068326'),
('0001243','0067116'),
('0001587','0067309'),
('0000953','0067328'),
('0769874','0066206'),
('0001692','0066579'),
('0000180','0066319'),
('0780833','0065377'),
('0772259','0064665'),
('0368871','0065126'),
('0623768','0064840'),
('0001628','0065088'),
('0757256','0064117'),
('0715346','0063385'),
('0625680','0062794'),
('0943758','0062994'),
('0343260','0063654'),
('0000591','0063522'),
('0422484','0061811'),
('0006452','0061735'),
('0742341','0061512'),
('0671957','0061418'),
('0001566','0061722'),
('0003593','0060665'),
('0001566','0061184'),
('0000697','0060424'),
('0799033','0059017'),
('0772259','0059084'),
('0168641','0059798'),
('0337885','0059573'),
('0002030','0058385'),
('0829038','0058331'),
('0202088','0058672'),
('0128050','0057831'),
('0724798','0057590'),
('0625680','0057251'),
('0728688','0057163'),
('0002190','0057634'),
('0000180','0056172'),
('0612322','0056592'),
('0671957','0056241'),
('0112218','0056541'),
('0730385','0055614'),
('0006452','0055031'),
('0001120','0054749'),
('0936404','0055614'),
('0000697','0053604'),
('0112218','0053793'),
('0542702','0053622'),
('0000040','0054331'),
('0943758','0052618'),
('0002338','0053226'),
('0828419','0052738'),
('0591486','0051658'),
('0542720','0052182'),
('0936404','0051758'),
('0943758','0051411'),
('0000180','0050212'),
('0425913','0051077'),
('0517597','0050933'),
('0027183','0048960'),
('0485943','0049408'),
('0514822','0048947'),
('0591486','0049456'),
('0802862','0049966'),
('0828419','0049261'),
('0542720','0048356'),
('0542702','0048563'),
('0000406','0048380'),
('0001415','0048028'),
('0001415','0047296'),
('0780833','0046874'),
('0000581','0046754'),
('0003593','0045793'),
('0000697','0046359'),
('0943758','0046250'),
('0001124','0044672'),
('0003593','0044706'),
('0542702','0044509'),
('0001415','0045296'),
('0591486','0044391'),
('0000406','0045061'),
('0591486','0043278'),
('0001379','0043265'),
('0001415','0044081'),
('0828419','0043924'),
('0000581','0042192'),
('0330456','0042367'),
('0002030','0042276'),
('0467396','0042546'),
('0744035','0041113'),
('0943758','0041452'),
('0454771','0041996'),
('0000581','0041587'),
('0000059','0040416'),
('0624535','0040495'),
('0001379','0040897'),
('0001379','0040506'),
('0001415','0039416'),
('0002030','0039335'),
('0693281','0039370'),
('0780833','0039628'),
('0943758','0036868'),
('0500552','0039040'),
('0332539','0038873'),
('0000697','0037884'),
('0002031','0037913'),
('0001415','0038190'),
('0113284','0037120'),
('0564970','0036872'),
('0002030','0036855'),
('0644048','0037135'),
('0002031','0034583'),
('0795864','0036515'),
('0454771','0036377'),
('0828419','0036172'),
('0939992','0035896'),
('0943758','0035093'),
('0002031','0035575'),
('0503777','0033774'),
('0000406','0033729'),
('0001328','0034167'),
('0000033','0034248'),
('0332539','0033677'),
('0000033','0032976'),
('0002030','0032904'),
('0939992','0032671'),
('0943758','0033253'),
('0000406','0032551'),
('0939992','0031385'),
('0000406','0031971'),
('0001008','0030993'),
('0851537','0029942'),
('0943758','0030287'),
('0124877','0030317'),
('0226189','0029146'),
('0281808','0028691'),
('0291548','0028944'),
('0454771','0029047'),
('0564970','0028597'),
('0502752','0027698'),
('0226189','0028313'),
('0001328','0027459'),
('0503777','0027300'),
('0001008','0027996'),
('0515979','0026752'),
('0000406','0026529'),
('0337595','0026261'),
('0001008','0025316'),
('0515979','0023876'),
('0466099','0024473'),
('0792514','0024353'),
('0332539','0022958'),
('0896542','0021730'),
('0783629','0022386'),
('0097648','0021635'),
('0749484','0021746'),
('0113284','0021885'),
('0384276','0021148'),
('0851537','0022397'),
('0064600','0019729'),
('0191899','0020018'),
('0853130','0019788'),
('0515979','0019824'),
('0920074','0018578'),
('0903049','0019071'),
('0097648','0018379'),
('0587277','0018515'),
('0005124','0317219'),
('0893659','0383574'),
('0711840','0376994'),
('0000165','0382625'),
('0001741','0348150'),
('0757858','0438097'),
('0426333','0327084'),
('0570912','0415306'),
('0178997','0389860'),
('0353673','0375679'),
('0587955','0379725'),
('0003506','0358273'),
('0300866','0365737'),
('0576987','0387131'),
('0000487','0388795'),
('0009190','0317919'),
('0588087','0413267'),
('0893659','0449088'),
('0946734','0373889'),
('0506613','0477347'),
('0339030','0440963'),
('0083348','0382932'),
('0004306','0366548'),
('0798899','0462538'),
('0132709','0381061'),
('0610831','0454921'),
('0000881','0418279'),
('0811583','0416449'),
('0065608','0486946'),
('0031976','0478311'),
('0000217','0407887'),
('0531817','0455590'),
('0001241','0436697'),
('0206760','0449059'),
('0174374','0443489'),
('0634240','0468569'),
('0269463','0371746'),
('0000229','0367882'),
('1349376','0480249'),
('0000916','0448157'),
('0004056','0910970'),
('0005509','0465234'),
('0384722','0952640'),
('0651706','0441773'),
('0371755','0451079'),
('0455078','1000774'),
('0718646','0467406'),
('0011470','0499448'),
('0711840','0293564'),
('1630273','0795421'),
('0001053','0477348'),
('0000759','0469494'),
('0196860','0450188'),
('0006904','0465538'),
('0000881','1055369'),
('0946734','0417741'),
('0230032','1049413'),
('0677037','1049413'),
('0680846','1119646'),
('0009190','0796366'),
('1224299','0892782'),
('0970447','0892782'),
('0757858','1080016'),
('0862211','1080016'),
('0362566','1099212'),
('0201509','0479952'),
('0569891','0479952'),
('0004303','0458525'),
('0506613','1078912'),
('0286975','0830515'),
('0281945','1041829'),
('0510912','1013752'),
('0000142','1205489'),
('0139867','1114740'),
('0603628','0936501'),
('0814085','1046173'),
('0000965','1010048'),
('0001814','1013753'),
('0197636','0976051'),
('0000095','0497465'),
('0000116','0499549'),
('0881279','0435761'),
('0000318','1014759'),
('0269463','1228705'),
('1720541','1325004'),
('0919363','1259571'),
('0634240','1375666'),
('0359387','0878804'),
('1853544','1323594'),
('0593610','0892791'),
('0858525','1231580'),
('0213450','0892769'),
('0005363','0988045'),
('0958969','1155076'),
('0000386','1190080'),
('0504642','0800320'),
('0240797','1375670'),
('0000941','0887912'),
('0178376','1263670'),
('0000233','0361748'),
('0200005','0929632'),
('0367431','0063227'),
('0946734','1201607'),
('0000881','1399103'),
('0946734','0926084'),
('0680846','1411697'),
('0551128','1298650'),
('0510912','1596343'),
('1977355','0398286'),
('0397174','0398286'),
('0005124','1216475'),
('0506977','1216475'),
('0000110','0800369'),
('0002653','0458339'),
('2676052','1104001'),
('1012501','1318514'),
('0001053','1403865'),
('0001054','1403865'),
('0270552','1478338'),
('0950775','1302011'),
('0393799','1504320'),
('0004716','0947798'),
('0751102','0964517'),
('0923736','0848228'),
('0634240','1345836'),
('0002657','1392170'),
('0174374','1324999'),
('1989536','0948470'),
('0028764','1217209'),
('0152312','1217209'),
('0532235','1637725'),
('0201509','1277953'),
('0569891','1277953'),
('0719208','1482459'),
('0049633','1482459'),
('0083348','1229238'),
('0005363','1515091'),
('0001756','1409024'),
('0853238','1454029'),
('0371890','1655442'),
('1630273','1007029'),
('0590122','1532503'),
('0000948','1300854'),
('1853544','1690953'),
('0719208','1690953'),
('0005222','1074638'),
('0001392','0903624'),
('0174374','1673434'),
('0811583','0770828'),
('0768959','1453405'),
('0510912','1905041'),
('0000600','1623205'),
('0009190','1408101'),
('0601781','1772341'),
('0210320','0481499'),
('0761498','0481499'),
('0000229','0443272'),
('0000255','1024648'),
('0751102','1045658'),
('0000233','1853728'),
('0393799','1707386'),
('0000487','0454876'),
('0286975','0816711'),
('0751102','1800241'),
('1349376','1951264'),
('0118333','2294629'),
('1601644','2294629'),
('0348181','2015381'),
('0190859','1454468'),
('0751577','1843866'),
('0751648','1843866'),
('0001392','1170358'),
('0520488','1490017'),
('0588087','1490017'),
('0000881','2109248'),
('0834902','1587310'),
('0001741','1877832'),
('0716257','2103281'),
('0851930','1981115'),
('1989536','1872181'),
('2284484','0831387'),
('0520488','2294449'),
('0588087','2294449'),
('0509448','1291150'),
('2588606','2024544'),
('0885249','0790636'),
('0000095','2334873'),
('1119880','0369610'),
('0923736','2395427'),
('0230032','2096673'),
('0215455','2096673'),
('1490123','2820852'),
('0049633','2293640'),
('1853544','2293640'),
('0003160','2381249'),
('0001392','2310332'),
('0000142','2179136'),
('1349376','1951265'),
('2320658','2245084'),
('0930261','2245084'),
('0634240','0816692'),
('0000110','1661199'),
('0006969','2848292'),
('0327944','2562232'),
('1016428','2980516'),
('0322144','3316960'),
('0922903','3316960'),
('3227090','2582802'),
('0000500','1065073'),
('0009190','2488496'),
('0004056','2277860'),
('0533691','2277860'),
('0751577','3498820'),
('0751648','3498820'),
('0269463','3040964'),
('0155528','2709768'),
('0719208','2709768'),
('1783265','1431045'),
('0397174','2948356'),
('0601781','2948356'),
('0811583','2975590'),
('0043742','1386697'),
('1349376','1951266'),
('0000631','3659388'),
('0005222','2379713'),
('0565336','1895587'),
('0327944','1663202'),
('1049433','3170832'),
('0000229','3682448'),
('0393799','0810819'),
('2284484','3748528'),
('0174374','2771200'),
('0420941','0451279'),
('0348181','3896198'),
('1218281','2250912'),
('1134029','3470600'),
('2888554','3470600'),
('0049633','3469046'),
('1853544','3469046'),
('0166256','3521164'),
('0615780','3521164'),
('0946734','3183660'),
('0220600','1211837'),
('0003506','3315342'),
('0336620','4630562'),
('0615592','1396484'),
('1503575','4975722'),
('0518836','4034228'),
('3227090','3783958'),
('0000243','2671706'),
('3363032','1825683'),
('0751577','4154756'),
('0751648','4154756'),
('0426059','2527336'),
('0083348','3606756'),
('1291105','4881806'),
('0440458','2283362'),
('0500610','5463162'),
('0169806','3501632'),
('0811583','0974015'),
('0003160','4912910'),
('0715636','5095030'),
('0000165','3778644'),
('0881279','2380307'),
('2937122','2380307'),
('0868219','5580390'),
('0942504','4555426'),
('1732981','5027774'),
('0318916','5580036'),
('0000600','0413300'),
('0751577','4154796'),
('0751648','4154796'),
('0269463','6105098'),
('2155757','1979376'),
('1349818','4154664'),
('0281396','4154664'),
('1218281','6320628'),
('0005363','6139732'),
('1490123','1477834'),
('0155528','2709692'),
('0608714','2709692'),
('0001741','1727824'),
('0177896','1517451'),
('0281508','1270797'),
('0268380','6966692'),
('0487166','5083738'),
('1503575','7125860'),
('0190859','6155172'),
('0009190','2527338'),
('0118333','4520988'),
('1601644','4520988'),
('0680846','7286456'),
('0440458','7975244'),
('0615592','7349950'),
('0094435','6751668'),
('3734458','7549996'),
('0000233','7131622'),
('0000876','7653254');
INSERT INTO Oscar VALUES ('6751668',NULL,'BEST-PICTURE',2020),
('7286456','0001618','BEST-ACTOR',2020),
('7549996','0000250','BEST-ACTRESS',2020),
('7131622','0000093','BEST-SUPPORTING-ACTOR',2020),
('7653254','0000368','BEST-SUPPORTING-ACTRESS',2020),
('6751668','0094435','BEST-DIRECTOR',2020),
('6966692',NULL,'BEST-PICTURE',2019),
('1727824','1785339','BEST-ACTOR',2019),
('5083738','1469236','BEST-ACTRESS',2019),
('6966692','0991810','BEST-SUPPORTING-ACTOR',2019),
('7125860','0005093','BEST-SUPPORTING-ACTRESS',2019),
('6155172','0190859','BEST-DIRECTOR',2019),
('5580390',NULL,'BEST-PICTURE',2018),
('4555426','0000198','BEST-ACTOR',2018),
('5027774','0000531','BEST-ACTRESS',2018),
('5027774','0005377','BEST-SUPPORTING-ACTOR',2018),
('5580036','0005049','BEST-SUPPORTING-ACTRESS',2018),
('5580390','0868219','BEST-DIRECTOR',2018),
('4975722',NULL,'BEST-PICTURE',2017),
('4034228','0000729','BEST-ACTOR',2017),
('3783958','1297015','BEST-ACTRESS',2017),
('4975722','0991810','BEST-SUPPORTING-ACTOR',2017),
('2671706','0205626','BEST-SUPPORTING-ACTRESS',2017),
('3783958','3227090','BEST-DIRECTOR',2017),
('1895587',NULL,'BEST-PICTURE',2016),
('1663202','0000138','BEST-ACTOR',2016),
('3170832','0488953','BEST-ACTRESS',2016),
('3682448','0753314','BEST-SUPPORTING-ACTOR',2016),
('0810819','2539953','BEST-SUPPORTING-ACTRESS',2016),
('1663202','0327944','BEST-DIRECTOR',2016),
('2562232',NULL,'BEST-PICTURE',2015),
('2980516','1519666','BEST-ACTOR',2015),
('3316960','0000194','BEST-ACTRESS',2015),
('2582802','0799777','BEST-SUPPORTING-ACTOR',2015),
('1065073','0000099','BEST-SUPPORTING-ACTRESS',2015),
('2562232','0327944','BEST-DIRECTOR',2015),
('2024544',NULL,'BEST-PICTURE',2014),
('0790636','0000190','BEST-ACTOR',2014),
('2334873','0000949','BEST-ACTRESS',2014),
('0790636','0001467','BEST-SUPPORTING-ACTOR',2014),
('2024544','2143282','BEST-SUPPORTING-ACTRESS',2014),
('1454468','0190859','BEST-DIRECTOR',2014),
('1024648',NULL,'BEST-PICTURE',2013),
('0443272','0000358','BEST-ACTOR',2013),
('1045658','2225369','BEST-ACTRESS',2013),
('1853728','0910607','BEST-SUPPORTING-ACTOR',2013),
('1707386','0004266','BEST-SUPPORTING-ACTRESS',2013),
('0454876','0000487','BEST-DIRECTOR',2013),
('1655442',NULL,'BEST-PICTURE',2012),
('1655442','0241121','BEST-ACTOR',2012),
('1007029','0000658','BEST-ACTRESS',2012),
('1532503','0001626','BEST-SUPPORTING-ACTOR',2012),
('1454029','0818055','BEST-SUPPORTING-ACTRESS',2012),
('1655442','0371890','BEST-DIRECTOR',2012),
('1504320',NULL,'BEST-PICTURE',2011),
('1504320','0000147','BEST-ACTOR',2011),
('0947798','0000204','BEST-ACTRESS',2011),
('0964517','0000288','BEST-SUPPORTING-ACTOR',2011),
('0964517','0502425','BEST-SUPPORTING-ACTRESS',2011),
('1504320','0393799','BEST-DIRECTOR',2011),
('0887912',NULL,'BEST-PICTURE',2010),
('1263670','0000313','BEST-ACTOR',2010),
('0878804','0000113','BEST-ACTRESS',2010),
('0361748','0910607','BEST-SUPPORTING-ACTOR',2010),
('0929632','0594898','BEST-SUPPORTING-ACTRESS',2010),
('0887912','0000941','BEST-DIRECTOR',2010),
('1010048',NULL,'BEST-PICTURE',2009),
('1013753','0000576','BEST-ACTOR',2009),
('0976051','0000701','BEST-ACTRESS',2009),
('0468569','0005132','BEST-SUPPORTING-ACTOR',2009),
('0497465','0004851','BEST-SUPPORTING-ACTRESS',2009),
('1010048','0000965','BEST-DIRECTOR',2009),
('0477348',NULL,'BEST-PICTURE',2008),
('0469494','0000358','BEST-ACTOR',2008),
('0450188','0182839','BEST-ACTRESS',2008),
('0477348','0000849','BEST-SUPPORTING-ACTOR',2008),
('0465538','0842770','BEST-SUPPORTING-ACTRESS',2008),
('0477348','0001053','BEST-DIRECTOR',2008),
('0407887',NULL,'BEST-PICTURE',2007),
('0455590','0001845','BEST-ACTOR',2007),
('0436697','0000545','BEST-ACTRESS',2007),
('0449059','0000273','BEST-SUPPORTING-ACTOR',2007),
('0443489','1617685','BEST-SUPPORTING-ACTRESS',2007),
('0407887','0000217','BEST-DIRECTOR',2007),
('0375679',NULL,'BEST-PICTURE',2006),
('0379725','0000450','BEST-ACTOR',2006),
('0358273','0000702','BEST-ACTRESS',2006),
('0365737','0000123','BEST-SUPPORTING-ACTOR',2006),
('0387131','0001838','BEST-SUPPORTING-ACTRESS',2006),
('0388795','0000487','BEST-DIRECTOR',2006),
('0405159',NULL,'BEST-PICTURE',2005),
('0350258','0004937','BEST-ACTOR',2005),
('0405159','0005476','BEST-ACTRESS',2005),
('0405159','0000151','BEST-SUPPORTING-ACTOR',2005),
('0338751','0000949','BEST-SUPPORTING-ACTRESS',2005),
('0405159','0000142','BEST-DIRECTOR',2005),
('0167260',NULL,'BEST-PICTURE',2004),
('0327056','0000576','BEST-ACTOR',2004),
('0340855','0000234','BEST-ACTRESS',2004),
('0327056','0000209','BEST-SUPPORTING-ACTOR',2004),
('0159365','0000250','BEST-SUPPORTING-ACTRESS',2004),
('0167260','0001392','BEST-DIRECTOR',2004),
('0299658',NULL,'BEST-PICTURE',2003),
('0253474','0004778','BEST-ACTOR',2003),
('0274558','0000173','BEST-ACTRESS',2003),
('0268126','0177933','BEST-SUPPORTING-ACTOR',2003),
('0299658','0001876','BEST-SUPPORTING-ACTRESS',2003),
('0253474','0000591','BEST-DIRECTOR',2003),
('0268978',NULL,'BEST-PICTURE',2002),
('0139654','0000243','BEST-ACTOR',2002),
('0285742','0000932','BEST-ACTRESS',2002),
('0280778','0000980','BEST-SUPPORTING-ACTOR',2002),
('0268978','0000124','BEST-SUPPORTING-ACTRESS',2002),
('0268978','0000165','BEST-DIRECTOR',2002),
('0172495',NULL,'BEST-PICTURE',2001),
('0172495','0000128','BEST-ACTOR',2001),
('0195685','0000210','BEST-ACTRESS',2001),
('0181865','0001125','BEST-SUPPORTING-ACTOR',2001),
('0183659','0001315','BEST-SUPPORTING-ACTRESS',2001),
('0181865','0001752','BEST-DIRECTOR',2001),
('0169547',NULL,'BEST-PICTURE',2000),
('0169547','0000228','BEST-ACTOR',2000),
('0171804','0005476','BEST-ACTRESS',2000),
('0124315','0000323','BEST-SUPPORTING-ACTOR',2000),
('0172493','0001401','BEST-SUPPORTING-ACTRESS',2000),
('0169547','0005222','BEST-DIRECTOR',2000),
('0138097',NULL,'BEST-PICTURE',1999),
('0118799','0000905','BEST-ACTOR',1999),
('0138097','0000569','BEST-ACTRESS',1999),
('0118564','0000336','BEST-SUPPORTING-ACTOR',1999),
('0138097','0001132','BEST-SUPPORTING-ACTRESS',1999),
('0120815','0000229','BEST-DIRECTOR',1999),
('0120338',NULL,'BEST-PICTURE',1998),
('0119822','0000197','BEST-ACTOR',1998),
('0119822','0000166','BEST-ACTRESS',1998),
('0119217','0000245','BEST-SUPPORTING-ACTOR',1998),
('0119488','0000107','BEST-SUPPORTING-ACTRESS',1998),
('0120338','0000116','BEST-DIRECTOR',1998),
('0116209',NULL,'BEST-PICTURE',1997),
('0117631','0001691','BEST-ACTOR',1997),
('0116282','0000531','BEST-ACTRESS',1997),
('0116695','0000421','BEST-SUPPORTING-ACTOR',1997),
('0116209','0000300','BEST-SUPPORTING-ACTRESS',1997),
('0116209','0005237','BEST-DIRECTOR',1997),
('0112573',NULL,'BEST-PICTURE',1996),
('0113627','0000115','BEST-ACTOR',1996),
('0112818','0000215','BEST-ACTRESS',1996),
('0114814','0000228','BEST-SUPPORTING-ACTOR',1996),
('0113819','0000227','BEST-SUPPORTING-ACTRESS',1996),
('0112573','0000154','BEST-DIRECTOR',1996),
('0109830',NULL,'BEST-PICTURE',1995),
('0109830','0000158','BEST-ACTOR',1995),
('0109306','0001448','BEST-ACTRESS',1995),
('0109707','0001445','BEST-SUPPORTING-ACTOR',1995),
('0109348','0001848','BEST-SUPPORTING-ACTRESS',1995),
('0109830','0000709','BEST-DIRECTOR',1995),
('0108052',NULL,'BEST-PICTURE',1994),
('0107818','0000158','BEST-ACTOR',1994),
('0107822','0000456','BEST-ACTRESS',1994),
('0106977','0000169','BEST-SUPPORTING-ACTOR',1994),
('0107822','0001593','BEST-SUPPORTING-ACTRESS',1994),
('0108052','0000229','BEST-DIRECTOR',1994),
('0105695',NULL,'BEST-PICTURE',1993),
('0105323','0000199','BEST-ACTOR',1993),
('0104454','0000668','BEST-ACTRESS',1993),
('0105695','0000432','BEST-SUPPORTING-ACTOR',1993),
('0104952','0000673','BEST-SUPPORTING-ACTRESS',1993),
('0105695','0000142','BEST-DIRECTOR',1993),
('0102926',NULL,'BEST-PICTURE',1992),
('0102926','0000164','BEST-ACTOR',1992),
('0102926','0000149','BEST-ACTRESS',1992),
('0101587','0001588','BEST-SUPPORTING-ACTOR',1992),
('0101889','0001689','BEST-SUPPORTING-ACTRESS',1992),
('0102926','0001129','BEST-DIRECTOR',1992),
('0099348',NULL,'BEST-PICTURE',1991),
('0100486','0000460','BEST-ACTOR',1991),
('0100157','0000870','BEST-ACTRESS',1991),
('0099685','0000582','BEST-SUPPORTING-ACTOR',1991),
('0099653','0000155','BEST-SUPPORTING-ACTRESS',1991),
('0099348','0000126','BEST-DIRECTOR',1991),
('0097239',NULL,'BEST-PICTURE',1990),
('0097937','0000358','BEST-ACTOR',1990),
('0097239','0001788','BEST-ACTRESS',1990),
('0097441','0000243','BEST-SUPPORTING-ACTOR',1990),
('0097937','0002084','BEST-SUPPORTING-ACTRESS',1990),
('0096969','0000231','BEST-DIRECTOR',1990),
('0095953',NULL,'BEST-PICTURE',1989),
('0095953','0000163','BEST-ACTOR',1989),
('0094608','0000149','BEST-ACTRESS',1989),
('0095159','0000177','BEST-SUPPORTING-ACTOR',1989),
('0094606','0000133','BEST-SUPPORTING-ACTRESS',1989),
('0095953','0001469','BEST-DIRECTOR',1989),
('0093389',NULL,'BEST-PICTURE',1988),
('0094291','0000140','BEST-ACTOR',1988),
('0093565','0000333','BEST-ACTRESS',1988),
('0094226','0000125','BEST-SUPPORTING-ACTOR',1988),
('0093565','0001156','BEST-SUPPORTING-ACTRESS',1988),
('0093389','0000934','BEST-DIRECTOR',1988),
('0091763',NULL,'BEST-PICTURE',1987),
('0090863','0000056','BEST-ACTOR',1987),
('0090830','0559144','BEST-ACTRESS',1987),
('0091167','0000323','BEST-SUPPORTING-ACTOR',1987),
('0091167','0001848','BEST-SUPPORTING-ACTRESS',1987),
('0091763','0000231','BEST-DIRECTOR',1987),
('0089755',NULL,'BEST-PICTURE',1986),
('0089424','0000458','BEST-ACTOR',1986),
('0090203','0656183','BEST-ACTRESS',1986),
('0088933','0000747','BEST-SUPPORTING-ACTOR',1986),
('0089841','0001378','BEST-SUPPORTING-ACTRESS',1986),
('0089755','0001628','BEST-DIRECTOR',1986),
('0086879',NULL,'BEST-PICTURE',1985),
('0086879','0000719','BEST-ACTOR',1985),
('0087921','0000398','BEST-ACTRESS',1985),
('0087553','0628955','BEST-SUPPORTING-ACTOR',1985),
('0087892','0001919','BEST-SUPPORTING-ACTRESS',1985),
('0086879','0001232','BEST-DIRECTOR',1985),
('0086425',NULL,'BEST-PICTURE',1984),
('0086423','0000380','BEST-ACTOR',1984),
('0086425','0000511','BEST-ACTRESS',1984),
('0086425','0000197','BEST-SUPPORTING-ACTOR',1984),
('0086617','0001373','BEST-SUPPORTING-ACTRESS',1984),
('0086425','0000985','BEST-DIRECTOR',1984),
('0083987',NULL,'BEST-PICTURE',1983),
('0083987','0001426','BEST-ACTOR',1983),
('0084707','0000658','BEST-ACTRESS',1983),
('0084434','0001283','BEST-SUPPORTING-ACTOR',1983),
('0084805','0001448','BEST-SUPPORTING-ACTRESS',1983),
('0083987','0000277','BEST-DIRECTOR',1983),
('0082158',NULL,'BEST-PICTURE',1982),
('0082846','0000020','BEST-ACTOR',1982),
('0082846','0000031','BEST-ACTRESS',1982),
('0082031','0000024','BEST-SUPPORTING-ACTOR',1982),
('0082979','0822972','BEST-SUPPORTING-ACTRESS',1982),
('0082979','0000886','BEST-DIRECTOR',1982),
('0081283',NULL,'BEST-PICTURE',1981),
('0081398','0000134','BEST-ACTOR',1981),
('0080549','0000651','BEST-ACTRESS',1981),
('0081283','0000459','BEST-SUPPORTING-ACTOR',1981),
('0081150','0005460','BEST-SUPPORTING-ACTRESS',1981),
('0081283','0000602','BEST-DIRECTOR',1981),
('0079417',NULL,'BEST-PICTURE',1980),
('0079417','0000163','BEST-ACTOR',1980),
('0079638','0000398','BEST-ACTRESS',1980),
('0078841','0002048','BEST-SUPPORTING-ACTOR',1980),
('0079417','0000658','BEST-SUPPORTING-ACTRESS',1980),
('0079417','0000914','BEST-DIRECTOR',1980),
('0077416',NULL,'BEST-PICTURE',1979),
('0077362','0000685','BEST-ACTOR',1979),
('0077362','0000404','BEST-ACTRESS',1979),
('0077416','0000686','BEST-SUPPORTING-ACTOR',1979),
('0077289','0001749','BEST-SUPPORTING-ACTRESS',1979),
('0077416','0001047','BEST-DIRECTOR',1979),
('0075686',NULL,'BEST-PICTURE',1978),
('0076095','0000377','BEST-ACTOR',1978),
('0075686','0000473','BEST-ACTRESS',1978),
('0076245','0001673','BEST-SUPPORTING-ACTOR',1978),
('0076245','0000603','BEST-SUPPORTING-ACTRESS',1978),
('0075686','0000095','BEST-DIRECTOR',1978),
('0075148',NULL,'BEST-PICTURE',1977),
('0074958','0002075','BEST-ACTOR',1977),
('0074958','0001159','BEST-ACTRESS',1977),
('0074119','0001673','BEST-SUPPORTING-ACTOR',1977),
('0074958','0833152','BEST-SUPPORTING-ACTRESS',1977),
('0075148','0000814','BEST-DIRECTOR',1977),
('0073486',NULL,'BEST-PICTURE',1976),
('0073486','0000197','BEST-ACTOR',1976),
('0073486','0001221','BEST-ACTRESS',1976),
('0073766','0122675','BEST-SUPPORTING-ACTOR',1976),
('0073692','0335519','BEST-SUPPORTING-ACTRESS',1976),
('0073486','0001232','BEST-DIRECTOR',1976),
('0071562',NULL,'BEST-PICTURE',1975),
('0071598','0138770','BEST-ACTOR',1975),
('0071115','0000995','BEST-ACTRESS',1975),
('0071562','0000134','BEST-SUPPORTING-ACTOR',1975),
('0071877','0000006','BEST-SUPPORTING-ACTRESS',1975),
('0071562','0000338','BEST-DIRECTOR',1975),
('0070735',NULL,'BEST-PICTURE',1974),
('0070640','0000493','BEST-ACTOR',1974),
('0070819','0413559','BEST-ACTRESS',1974),
('0070509','0002144','BEST-SUPPORTING-ACTOR',1974),
('0070510','0001575','BEST-SUPPORTING-ACTRESS',1974),
('0070735','0001351','BEST-DIRECTOR',1974),
('0068646',NULL,'BEST-PICTURE',1973),
('0068646','0000008','BEST-ACTOR',1973),
('0068327','0591485','BEST-ACTRESS',1973),
('0068327','0001297','BEST-SUPPORTING-ACTOR',1973),
('0068326','0373012','BEST-SUPPORTING-ACTRESS',1973),
('0068327','0002080','BEST-DIRECTOR',1973),
('0067116',NULL,'BEST-PICTURE',1972),
('0067116','0000432','BEST-ACTOR',1972),
('0067309','0000404','BEST-ACTRESS',1972),
('0067328','0424565','BEST-SUPPORTING-ACTOR',1972),
('0067328','0001458','BEST-SUPPORTING-ACTRESS',1972),
('0067116','0001243','BEST-DIRECTOR',1972),
('0066206',NULL,'BEST-PICTURE',1971),
('0066206','0001715','BEST-ACTOR',1971),
('0066579','0413559','BEST-ACTRESS',1971),
('0066319','0590055','BEST-SUPPORTING-ACTOR',1971),
('0065377','0371040','BEST-SUPPORTING-ACTRESS',1971),
('0066206','0769874','BEST-DIRECTOR',1971),
('0064665',NULL,'BEST-PICTURE',1970),
('0065126','0000078','BEST-ACTOR',1970),
('0064840','0001749','BEST-ACTRESS',1970),
('0065088','0949574','BEST-SUPPORTING-ACTOR',1970),
('0064117','0000443','BEST-SUPPORTING-ACTRESS',1970),
('0064665','0772259','BEST-DIRECTOR',1970),
('0063385',NULL,'BEST-PICTURE',1969),
('0062794','0731772','BEST-ACTOR',1969),
('0062994','0000659','BEST-ACTRESS',1969),
('0063227','0000031','BEST-ACTRESS',1969),
('0063654','0016776','BEST-SUPPORTING-ACTOR',1969),
('0063522','0002106','BEST-SUPPORTING-ACTRESS',1969),
('0063385','0715346','BEST-DIRECTOR',1969),
('0061811',NULL,'BEST-PICTURE',1968),
('0061811','0001768','BEST-ACTOR',1968),
('0061735','0000031','BEST-ACTRESS',1968),
('0061512','0001421','BEST-SUPPORTING-ACTOR',1968),
('0061418','0663820','BEST-SUPPORTING-ACTRESS',1968),
('0061722','0001566','BEST-DIRECTOR',1968),
('0060665',NULL,'BEST-PICTURE',1967),
('0060665','0006890','BEST-ACTOR',1967),
('0061184','0000072','BEST-ACTRESS',1967),
('0060424','0000527','BEST-SUPPORTING-ACTOR',1967),
('0061184','0006800','BEST-SUPPORTING-ACTRESS',1967),
('0060665','0003593','BEST-DIRECTOR',1967),
('0059742',NULL,'BEST-PICTURE',1966),
('0059017','0001511','BEST-ACTOR',1966),
('0059084','0001046','BEST-ACTRESS',1966),
('0059798','0000842','BEST-SUPPORTING-ACTOR',1966),
('0059573','0001859','BEST-SUPPORTING-ACTRESS',1966),
('0059742','0936404','BEST-DIRECTOR',1966),
('0058385',NULL,'BEST-PICTURE',1965),
('0058385','0001322','BEST-ACTOR',1965),
('0058331','0000267','BEST-ACTRESS',1965),
('0058672','0001811','BEST-SUPPORTING-ACTOR',1965),
('0057831','0444321','BEST-SUPPORTING-ACTRESS',1965),
('0058385','0002030','BEST-DIRECTOR',1965),
('0057590',NULL,'BEST-PICTURE',1964),
('0057251','0001627','BEST-ACTOR',1964),
('0057163','0623658','BEST-ACTRESS',1964),
('0057163','0002048','BEST-SUPPORTING-ACTOR',1964),
('0057634','0751983','BEST-SUPPORTING-ACTRESS',1964),
('0057590','0724798','BEST-DIRECTOR',1964),
('0056172',NULL,'BEST-PICTURE',1963),
('0056592','0000060','BEST-ACTOR',1963),
('0056241','0000843','BEST-ACTRESS',1963),
('0056541','0003225','BEST-SUPPORTING-ACTOR',1963),
('0056241','0001157','BEST-SUPPORTING-ACTRESS',1963),
('0056172','0000180','BEST-DIRECTOR',1963),
('0055614',NULL,'BEST-PICTURE',1962),
('0055031','0001703','BEST-ACTOR',1962),
('0054749','0000047','BEST-ACTRESS',1962),
('0055614','0001995','BEST-SUPPORTING-ACTOR',1962),
('0055614','0001549','BEST-SUPPORTING-ACTRESS',1962),
('0055614','0936404','BEST-DIRECTOR',1962),
('0053604',NULL,'BEST-PICTURE',1961),
('0053793','0000044','BEST-ACTOR',1961),
('0053622','0000072','BEST-ACTRESS',1961),
('0054331','0001811','BEST-SUPPORTING-ACTOR',1961),
('0053793','0429250','BEST-SUPPORTING-ACTRESS',1961),
('0053604','0000697','BEST-DIRECTOR',1961),
('0052618',NULL,'BEST-PICTURE',1960),
('0052618','0000032','BEST-ACTOR',1960),
('0053226','0797531','BEST-ACTRESS',1960),
('0052618','0341518','BEST-SUPPORTING-ACTOR',1960),
('0052738','0001859','BEST-SUPPORTING-ACTRESS',1960),
('0052618','0943758','BEST-DIRECTOR',1960),
('0051658',NULL,'BEST-PICTURE',1959),
('0052182','0000057','BEST-ACTOR',1959),
('0051758','0001333','BEST-ACTRESS',1959),
('0051411','0412322','BEST-SUPPORTING-ACTOR',1959),
('0052182','0384908','BEST-SUPPORTING-ACTRESS',1959),
('0051658','0591486','BEST-DIRECTOR',1959),
('0050212',NULL,'BEST-PICTURE',1958),
('0050212','0000027','BEST-ACTOR',1958),
('0051077','0940946','BEST-ACTRESS',1958),
('0050933','0000999','BEST-SUPPORTING-ACTOR',1958),
('0050933','0880855','BEST-SUPPORTING-ACTRESS',1958),
('0050212','0000180','BEST-DIRECTOR',1958),
('0048960',NULL,'BEST-PICTURE',1957),
('0049408','0000989','BEST-ACTOR',1957),
('0048947','0000006','BEST-ACTRESS',1957),
('0049456','0000063','BEST-SUPPORTING-ACTOR',1957),
('0049966','0540416','BEST-SUPPORTING-ACTRESS',1957),
('0049261','0828419','BEST-DIRECTOR',1957),
('0048356',NULL,'BEST-PICTURE',1956),
('0048356','0000308','BEST-ACTOR',1956),
('0048563','0536167','BEST-ACTRESS',1956),
('0048380','0000493','BEST-SUPPORTING-ACTOR',1956),
('0048028','0886888','BEST-SUPPORTING-ACTRESS',1956),
('0048356','0542720','BEST-DIRECTOR',1956),
('0047296',NULL,'BEST-PICTURE',1955),
('0047296','0000008','BEST-ACTOR',1955),
('0046874','0000038','BEST-ACTRESS',1955),
('0046754','0639529','BEST-SUPPORTING-ACTOR',1955),
('0047296','0001693','BEST-SUPPORTING-ACTRESS',1955),
('0047296','0001415','BEST-DIRECTOR',1955),
('0045793',NULL,'BEST-PICTURE',1954),
('0046359','0000034','BEST-ACTOR',1954),
('0046250','0000030','BEST-ACTRESS',1954),
('0045793','0000069','BEST-SUPPORTING-ACTOR',1954),
('0045793','0001656','BEST-SUPPORTING-ACTRESS',1954),
('0045793','0003593','BEST-DIRECTOR',1954),
('0044672',NULL,'BEST-PICTURE',1953),
('0044706','0000011','BEST-ACTOR',1953),
('0044509','0095804','BEST-ACTRESS',1953),
('0045296','0000063','BEST-SUPPORTING-ACTOR',1953),
('0044391','0002108','BEST-SUPPORTING-ACTRESS',1953),
('0045061','0000406','BEST-DIRECTOR',1953),
('0043278',NULL,'BEST-PICTURE',1952),
('0043265','0000007','BEST-ACTOR',1952),
('0044081','0000046','BEST-ACTRESS',1952),
('0044081','0001500','BEST-SUPPORTING-ACTOR',1952),
('0044081','0001375','BEST-SUPPORTING-ACTRESS',1952),
('0043924','0828419','BEST-DIRECTOR',1952),
('0042192',NULL,'BEST-PICTURE',1951),
('0042367','0001207','BEST-ACTOR',1951),
('0042276','0391062','BEST-ACTRESS',1951),
('0042192','0001695','BEST-SUPPORTING-ACTOR',1951),
('0042546','0401449','BEST-SUPPORTING-ACTRESS',1951),
('0042192','0000581','BEST-DIRECTOR',1951),
('0041113',NULL,'BEST-PICTURE',1950),
('0041113','0002024','BEST-ACTOR',1950),
('0041452','0000014','BEST-ACTRESS',1950),
('0041996','0415591','BEST-SUPPORTING-ACTOR',1950),
('0041113','0564790','BEST-SUPPORTING-ACTRESS',1950),
('0041587','0000581','BEST-DIRECTOR',1950),
('0040416',NULL,'BEST-PICTURE',1949),
('0040416','0000059','BEST-ACTOR',1949),
('0040495','0943837','BEST-ACTRESS',1949),
('0040897','0404158','BEST-SUPPORTING-ACTOR',1949),
('0040506','0872456','BEST-SUPPORTING-ACTRESS',1949),
('0040897','0001379','BEST-DIRECTOR',1949),
('0039416',NULL,'BEST-PICTURE',1948),
('0039335','0172903','BEST-ACTOR',1948),
('0039370','0949835','BEST-ACTRESS',1948),
('0039628','0350324','BEST-SUPPORTING-ACTOR',1948),
('0039416','0002141','BEST-SUPPORTING-ACTRESS',1948),
('0039416','0001415','BEST-DIRECTOR',1948),
('0036868',NULL,'BEST-PICTURE',1947),
('0036868','0545298','BEST-ACTOR',1947),
('0039040','0000014','BEST-ACTRESS',1947),
('0036868','0751174','BEST-SUPPORTING-ACTOR',1947),
('0038873','0000879','BEST-SUPPORTING-ACTRESS',1947),
('0036868','0943758','BEST-DIRECTOR',1947),
('0037884',NULL,'BEST-PICTURE',1946),
('0037884','0001537','BEST-ACTOR',1946),
('0037913','0001076','BEST-ACTRESS',1946),
('0038190','0007223','BEST-SUPPORTING-ACTOR',1946),
('0037120','0720843','BEST-SUPPORTING-ACTRESS',1946),
('0037884','0000697','BEST-DIRECTOR',1946),
('0036872',NULL,'BEST-PICTURE',1945),
('0036872','0001078','BEST-ACTOR',1945),
('0036855','0000006','BEST-ACTRESS',1945),
('0036872','0280178','BEST-SUPPORTING-ACTOR',1945),
('0037135','0000856','BEST-SUPPORTING-ACTRESS',1945),
('0036872','0564970','BEST-DIRECTOR',1945),
('0034583',NULL,'BEST-PICTURE',1944),
('0036515','0510134','BEST-ACTOR',1944),
('0036377','0428354','BEST-ACTRESS',1944),
('0036172','0002013','BEST-SUPPORTING-ACTOR',1944),
('0035896','0668093','BEST-SUPPORTING-ACTRESS',1944),
('0034583','0002031','BEST-DIRECTOR',1944),
('0035093',NULL,'BEST-PICTURE',1943),
('0035575','0000010','BEST-ACTOR',1943),
('0035093','0002093','BEST-ACTRESS',1943),
('0033774','0001336','BEST-SUPPORTING-ACTOR',1943),
('0035093','0942863','BEST-SUPPORTING-ACTRESS',1943),
('0035093','0943758','BEST-DIRECTOR',1943),
('0033729',NULL,'BEST-PICTURE',1942),
('0034167','0000011','BEST-ACTOR',1942),
('0034248','0000021','BEST-ACTRESS',1942),
('0033729','0187981','BEST-SUPPORTING-ACTOR',1942),
('0033677','0000802','BEST-SUPPORTING-ACTRESS',1942),
('0033729','0000406','BEST-DIRECTOR',1942),
('0032976',NULL,'BEST-PICTURE',1941),
('0032904','0000071','BEST-ACTOR',1941),
('0032671','0001677','BEST-ACTRESS',1941),
('0033253','0000974','BEST-SUPPORTING-ACTOR',1941),
('0032551','0002034','BEST-SUPPORTING-ACTRESS',1941),
('0032551','0000406','BEST-DIRECTOR',1941),
('0031381',NULL,'BEST-PICTURE',1940),
('0031385','0232196','BEST-ACTOR',1940),
('0031381','0000046','BEST-ACTRESS',1940),
('0031971','0593775','BEST-SUPPORTING-ACTOR',1940),
('0031381','0567408','BEST-SUPPORTING-ACTRESS',1940),
('0031381','0281808','BEST-DIRECTOR',1940),
('0030993',NULL,'BEST-PICTURE',1939),
('0029942','0000075','BEST-ACTOR',1939),
('0030287','0000012','BEST-ACTRESS',1939),
('0030317','0000974','BEST-SUPPORTING-ACTOR',1939),
('0030287','0047810','BEST-SUPPORTING-ACTRESS',1939),
('0030993','0001008','BEST-DIRECTOR',1939),
('0029146',NULL,'BEST-PICTURE',1938),
('0028691','0000075','BEST-ACTOR',1938),
('0028944','0707023','BEST-ACTRESS',1938),
('0029146','0771584','BEST-SUPPORTING-ACTOR',1938),
('0029047','0103567','BEST-SUPPORTING-ACTRESS',1938),
('0028597','0564970','BEST-DIRECTOR',1938),
('0027698',NULL,'BEST-PICTURE',1937),
('0028313','0612847','BEST-ACTOR',1937),
('0027698','0707023','BEST-ACTRESS',1937),
('0027459','0000974','BEST-SUPPORTING-ACTOR',1937),
('0027300','0814216','BEST-SUPPORTING-ACTRESS',1937),
('0027996','0001008','BEST-DIRECTOR',1937),
('0026752',NULL,'BEST-PICTURE',1936),
('0026529','0572142','BEST-ACTOR',1936),
('0026261','0000012','BEST-ACTRESS',1936),
('0026529','0000406','BEST-DIRECTOR',1936),
('0025316',NULL,'BEST-PICTURE',1935),
('0025316','0000022','BEST-ACTOR',1935),
('0025316','0001055','BEST-ACTRESS',1935),
('0025316','0001008','BEST-DIRECTOR',1935),
('0023876',NULL,'BEST-PICTURE',1934),
('0024473','0001452','BEST-ACTOR',1934),
('0024353','0000031','BEST-ACTRESS',1934),
('0023876','0515979','BEST-DIRECTOR',1934),
('0022958',NULL,'BEST-PICTURE',1932),
('0021730','0000891','BEST-ACTOR',1932),
('0022386','0371040','BEST-ACTRESS',1932),
('0021635','0097648','BEST-DIRECTOR',1932),
('0021746',NULL,'BEST-PICTURE',1931),
('0021885','0000859','BEST-ACTOR',1931),
('0021148','0237597','BEST-ACTRESS',1931),
('0022397','0851537','BEST-DIRECTOR',1931),
('0019729',NULL,'BEST-PICTURE',1930),
('0020018','0062828','BEST-ACTOR',1930),
('0019788','0681933','BEST-ACTRESS',1930),
('0019824','0515979','BEST-DIRECTOR',1930),
('0018578',NULL,'BEST-PICTURE',1929),
('0019071','0417837','BEST-ACTOR',1929),
('0018379','0310980','BEST-ACTRESS',1929),
('0018515','0587277','BEST-DIRECTOR',1929),
('0018379','0097648','BEST-DIRECTOR',1929);
ALTER TABLE Person ADD COLUMN dob DATE;
UPDATE Person SET dob = TO_DATE(dob_string, 'yyyy-mm-dd');
ALTER TABLE Person DROP COLUMN dob_string;
|
<reponame>xlyric/Melanie2-InstallationAuto<filename>deb/install_roundcube_M2/usr/local/src/roundcube-account.sql<gh_stars>0
CREATE ROLE roundcube WITH LOGIN PASSWORD '<PASSWORD>' ;
CREATE DATABASE roundcube OWNER roundcube;
|
<gh_stars>0
DROP VIEW events_v;
DROP TABLE events CASCADE;
DROP TABLE event_experiences CASCADE;
DROP TABLE event_attributes;
|
set global local_infile = 1;
create table stations(
station_cd int not null,
station_g_cd int not null,
station_name varchar(100) not null,
station_name_k varchar(100),
station_name_r varchar(100),
line_cd int,
pref_cd int,
post varchar(100),
address varchar(100),
lon float,
lat float,
open_ymd varchar(100),
close_ymd varchar(100),
e_status int,
e_sort int,
PRIMARY KEY(station_cd)
);
create table companies(
company_cd int not null,
rr_cd int not null,
company_name varchar(100) not null,
company_name_k varchar(100),
company_name_h varchar(100),
company_name_r varchar(100),
company_url varchar(100),
company_type int,
e_status int,
e_sort int,
PRIMARY KEY(company_cd)
);
create table station_lines(
line_cd int not null,
company_cd int not null,
line_name varchar(100) not null,
line_name_k varchar(100),
line_name_h varchar(100),
line_color_c varchar(100),
line_color_t varchar(100),
line_type int,
lon float,
lat float,
zoom int,
e_status int,
e_sort int,
PRIMARY KEY(line_cd)
);
create table station_joins(
line_cd int not null,
station_cd1 int not null,
station_cd2 int not null,
PRIMARY KEY(line_cd, station_cd1, station_cd2)
);
|
# 10/31/2013
# refactored insert results and launch viewer to preserve filenames.
# proc change only |
# --- !Ups
create sequence saved_search_seq start with 1;
# --- !Downs
drop sequence if exists saved_search_seq; |
<reponame>andreylipattsev/almanac.httparchive.org
#standardSQL
# 04_25: % of pages having WebXR frameworks
SELECT
client,
framework,
COUNT(DISTINCT page) AS pages
FROM (
SELECT
client,
page,
REGEXP_EXTRACT(LOWER(url), '(aframe|babylon|argon)(?:\\.min)?\\.js') AS framework
FROM
`httparchive.almanac.requests`
WHERE
date = '2019-07-01' AND
type = 'script')
WHERE
framework IS NOT NULL
GROUP BY
client,
framework
|
ALTER TABLE ofRoster ADD COLUMN stanza CLOB;
UPDATE ofVersion SET version = 33 WHERE name = 'openfire';
|
<reponame>OpenMPDK/SMDK
<configure-for-decimal.sql>
<analytic-template.sql>
|
<reponame>karbowiak/2semsterProjekt
CREATE TABLE rooms (
roomID INT NOT NULL IDENTITY(1,1),
roomNumber VARCHAR(255) NOT NULL,
description VARCHAR(255) NOT NULL,
status VARCHAR(255) NOT NULL,
discount VARCHAR(255) NOT NULL,
price VARCHAR(255) NOT NULL,
timeID VARCHAR(255) NOT NULL,
PRIMARY KEY (roomID),
FOREIGN KEY (timeID) REFERENCES time(timeID)
); |
<reponame>mervick/phalcon-rest<filename>schema/schema.sql
-- OAuth2 token table (required by OAuth2 library)
CREATE TABLE `oauth2_access_token` (
`access_token` char(40) NOT NULL COMMENT 'Then access token',
`user_id` int(10) DEFAULT NULL COMMENT 'The user id',
`client_id` varchar(128) DEFAULT NULL COMMENT 'Client identifier',
`expires` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Expiration timestamp',
`scope` varchar(128) DEFAULT NULL COMMENT 'Scope',
PRIMARY KEY (`access_token`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
-- OAuth2 refresh tokens table (required by OAuth2 library)
CREATE TABLE `oauth2_refresh_token` (
`refresh_token` char(40) NOT NULL COMMENT 'The refresh token',
`client_id` varchar(128) DEFAULT NULL COMMENT 'Client identifier',
`user_id` int(10) DEFAULT NULL COMMENT 'The user id',
`expires` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Expiration timestamp',
`scope` varchar(128) DEFAULT NULL COMMENT 'Scope',
PRIMARY KEY (`refresh_token`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
-- OAuth2 clients table (required by OAuth2 library)
CREATE TABLE `oauth2_client` (
`client_id` varchar(128) NOT NULL COMMENT 'Client identifier',
`client_secret` varchar(255) DEFAULT NULL COMMENT 'Client secret string',
`redirect_uri` varchar(255) DEFAULT NULL COMMENT 'URL to redirect to for authorization',
PRIMARY KEY (`client_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
-- OAuth2 clients table (required by OAuth2 library)
CREATE TABLE `oauth2_scope` (
`scope` varchar(128) NOT NULL COMMENT 'Scope name',
`is_default` tinyint(1) DEFAULT NULL COMMENT 'Flag marks default scope',
PRIMARY KEY (`scope`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
-- User table
CREATE TABLE `user` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'User identifier',
`email` varchar(128) NOT NULL COMMENT 'User email',
`name` varchar(48) NOT NULL COMMENT 'User name',
`firstname` varchar(45) DEFAULT NULL COMMENT 'User first name',
`lastname` varchar(45) DEFAULT NULL COMMENT 'User last name',
`pass` varchar(255) NOT NULL COMMENT 'User hashed password',
PRIMARY KEY (`id`),
UNIQUE KEY `email_UNIQUE` (`email`),
UNIQUE KEY `name_UNIQUE` (`name`)
) ENGINE=InnoDB AUTO_INCREMENT=114 DEFAULT CHARSET=utf8mb4;
-- Create oauth2 client
INSERT INTO `oauth2_client` SET `client_id` = "test";
|
<reponame>idris11/kpi
-- phpMyAdmin SQL Dump
-- version 4.2.7.1
-- http://www.phpmyadmin.net
--
-- Host: 127.0.0.1
-- Generation Time: Feb 09, 2017 at 03:17 AM
-- Server version: 5.6.20
-- PHP Version: 5.5.15
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
--
-- Database: `kpi`
--
-- --------------------------------------------------------
--
-- Table structure for table `ahp_nilai`
--
CREATE TABLE IF NOT EXISTS `ahp_nilai` (
`id_nilai` int(11) NOT NULL,
`jum_nilai` double NOT NULL,
`ket_nilai` text NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=23 ;
--
-- Dumping data for table `ahp_nilai`
--
INSERT INTO `ahp_nilai` (`id_nilai`, `jum_nilai`, `ket_nilai`) VALUES
(2, 9, 'Mutlak sangat penting dari'),
(3, 8, 'Mendekati mutlak dari'),
(8, 7, 'Sangat penting dari'),
(9, 6, 'Mendekati sangat penting dari'),
(10, 5, 'Lebih penting dari'),
(11, 4, 'Mendekati lebih penting dari'),
(12, 3, 'Sedikit lebih penting dari'),
(13, 2, 'Mendekati sedikit lebih penting dari'),
(14, 1, 'Sama penting dengan'),
(15, 0.5, '1 bagi mendekati sedikit lebih penting dari'),
(16, 0.333, '1 bagi sedikit lebih penting dari'),
(17, 0.25, '1 bagi mendekati lebih penting dari'),
(18, 0.2, '1 bagi lebih penting dari'),
(19, 0.167, '1 bagi mendekati sangat penting dari'),
(20, 0.143, '1 bagi sangat penting dari'),
(21, 0.125, '1 bagi mendekati mutlak dari'),
(22, 0.1, '1 bagi mutlak sangat penting dari');
-- --------------------------------------------------------
--
-- Table structure for table `analisa_indikator`
--
CREATE TABLE IF NOT EXISTS `analisa_indikator` (
`id_analisa_indikator` int(11) NOT NULL,
`indikator_pertama` varchar(100) NOT NULL,
`nilai_analisa_indikator` double NOT NULL,
`hasil_analisa_indikator` double NOT NULL,
`indikator_kedua` varchar(100) NOT NULL,
`id_kategori` varchar(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=59 ;
--
-- Dumping data for table `analisa_indikator`
--
INSERT INTO `analisa_indikator` (`id_analisa_indikator`, `indikator_pertama`, `nilai_analisa_indikator`, `hasil_analisa_indikator`, `indikator_kedua`, `id_kategori`) VALUES
(1, 'IK1', 1, 0.19357336430507, 'IK1', 'K1'),
(2, 'IK1', 3, 0.27272727272727, 'IK2', 'K1'),
(3, 'IK1', 2, 0.3000300030003, 'IK3', 'K1'),
(4, 'IK1', 3, 0.27272727272727, 'IK4', 'K1'),
(5, 'IK1', 0.333, 0.14279588336192, 'IK5', 'K1'),
(6, 'IK2', 0.333, 0.064459930313589, 'IK1', 'K1'),
(7, 'IK2', 1, 0.090909090909091, 'IK2', 'K1'),
(8, 'IK2', 0.333, 0.04995499549955, 'IK3', 'K1'),
(9, 'IK2', 1, 0.090909090909091, 'IK4', 'K1'),
(10, 'IK2', 0.333, 0.14279588336192, 'IK5', 'K1'),
(11, 'IK3', 0.5, 0.096786682152536, 'IK1', 'K1'),
(12, 'IK3', 3, 0.27272727272727, 'IK2', 'K1'),
(13, 'IK3', 1, 0.15001500150015, 'IK3', 'K1'),
(14, 'IK3', 3, 0.27272727272727, 'IK4', 'K1'),
(15, 'IK3', 0.333, 0.14279588336192, 'IK5', 'K1'),
(16, 'IK4', 0.333, 0.064459930313589, 'IK1', 'K1'),
(17, 'IK4', 1, 0.090909090909091, 'IK2', 'K1'),
(18, 'IK4', 0.333, 0.04995499549955, 'IK3', 'K1'),
(19, 'IK4', 1, 0.090909090909091, 'IK4', 'K1'),
(20, 'IK4', 0.333, 0.14279588336192, 'IK5', 'K1'),
(21, 'IK5', 3, 0.58072009291521, 'IK1', 'K1'),
(22, 'IK5', 3, 0.27272727272727, 'IK2', 'K1'),
(23, 'IK5', 3, 0.45004500450045, 'IK3', 'K1'),
(24, 'IK5', 3, 0.27272727272727, 'IK4', 'K1'),
(25, 'IK5', 1, 0.42881646655232, 'IK5', 'K1'),
(26, 'IK6', 1, 0.60024009603842, 'IK6', 'K2'),
(27, 'IK6', 3, 0.69236095084237, 'IK7', 'K2'),
(28, 'IK6', 3, 0.42857142857143, 'IK8', 'K2'),
(29, 'IK7', 0.333, 0.19987995198079, 'IK6', 'K2'),
(30, 'IK7', 1, 0.23078698361412, 'IK7', 'K2'),
(31, 'IK7', 3, 0.42857142857143, 'IK8', 'K2'),
(32, 'IK8', 0.333, 0.19987995198079, 'IK6', 'K2'),
(33, 'IK8', 0.333, 0.076852065543503, 'IK7', 'K2'),
(34, 'IK8', 1, 0.14285714285714, 'IK8', 'K2'),
(35, 'IK9', 1, 0.5, 'IK9', 'K3'),
(36, 'IK9', 1, 0.5, 'IK10', 'K3'),
(37, 'IK10', 1, 0.5, 'IK9', 'K3'),
(38, 'IK10', 1, 0.5, 'IK10', 'K3'),
(39, 'IK11', 1, 0.16666666666667, 'IK11', 'K4'),
(40, 'IK11', 0.333, 0.0999099909991, 'IK12', 'K4'),
(41, 'IK11', 1, 0.25, 'IK13', 'K4'),
(42, 'IK11', 1, 0.25, 'IK14', 'K4'),
(43, 'IK12', 3, 0.5, 'IK11', 'K4'),
(44, 'IK12', 1, 0.3000300030003, 'IK12', 'K4'),
(45, 'IK12', 1, 0.25, 'IK13', 'K4'),
(46, 'IK12', 1, 0.25, 'IK14', 'K4'),
(47, 'IK13', 1, 0.16666666666667, 'IK11', 'K4'),
(48, 'IK13', 1, 0.3000300030003, 'IK12', 'K4'),
(49, 'IK13', 1, 0.25, 'IK13', 'K4'),
(50, 'IK13', 1, 0.25, 'IK14', 'K4'),
(51, 'IK14', 1, 0.16666666666667, 'IK11', 'K4'),
(52, 'IK14', 1, 0.3000300030003, 'IK12', 'K4'),
(53, 'IK14', 1, 0.25, 'IK13', 'K4'),
(54, 'IK14', 1, 0.25, 'IK14', 'K4'),
(55, 'IK15', 1, 0.75018754688672, 'IK15', 'K5'),
(56, 'IK15', 3, 0.75, 'IK16', 'K5'),
(57, 'IK16', 0.333, 0.24981245311328, 'IK15', 'K5'),
(58, 'IK16', 1, 0.25, 'IK16', 'K5');
-- --------------------------------------------------------
--
-- Table structure for table `analisa_kategori`
--
CREATE TABLE IF NOT EXISTS `analisa_kategori` (
`id_analisa` int(11) NOT NULL,
`kategori_pertama` varchar(50) NOT NULL,
`nilai_analisa_kategori` double NOT NULL,
`hasil_analisa_kategori` double NOT NULL,
`kategori_kedua` varchar(50) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=26 ;
--
-- Dumping data for table `analisa_kategori`
--
INSERT INTO `analisa_kategori` (`id_analisa`, `kategori_pertama`, `nilai_analisa_kategori`, `hasil_analisa_kategori`, `kategori_kedua`) VALUES
(1, 'K1', 1, 0.1, 'K1'),
(2, 'K1', 0.333, 0.13325330132053, 'K2'),
(3, 'K1', 0.5, 0.071428571428571, 'K3'),
(4, 'K1', 0.333, 0.08256880733945, 'K4'),
(5, 'K1', 1, 0.083333333333333, 'K5'),
(6, 'K2', 3, 0.3, 'K1'),
(7, 'K2', 1, 0.40016006402561, 'K2'),
(8, 'K2', 3, 0.42857142857143, 'K3'),
(9, 'K2', 2, 0.49590875278949, 'K4'),
(10, 'K2', 5, 0.41666666666667, 'K5'),
(11, 'K3', 2, 0.2, 'K1'),
(12, 'K3', 0.333, 0.13325330132053, 'K2'),
(13, 'K3', 1, 0.14285714285714, 'K3'),
(14, 'K3', 0.5, 0.12397718819737, 'K4'),
(15, 'K3', 2, 0.16666666666667, 'K5'),
(16, 'K4', 3, 0.3, 'K1'),
(17, 'K4', 0.5, 0.20008003201281, 'K2'),
(18, 'K4', 2, 0.28571428571429, 'K3'),
(19, 'K4', 1, 0.24795437639474, 'K4'),
(20, 'K4', 3, 0.25, 'K5'),
(21, 'K5', 1, 0.1, 'K1'),
(22, 'K5', 0.333, 0.13325330132053, 'K2'),
(23, 'K5', 0.5, 0.071428571428571, 'K3'),
(24, 'K5', 0.2, 0.049590875278949, 'K4'),
(25, 'K5', 1, 0.083333333333333, 'K5');
-- --------------------------------------------------------
--
-- Table structure for table `data_indikator`
--
CREATE TABLE IF NOT EXISTS `data_indikator` (
`id_indikator` varchar(11) NOT NULL,
`nama_indikator` varchar(200) NOT NULL,
`jumlah_hasil_analisa_indikator` double NOT NULL,
`nilai_eigenvector` double NOT NULL,
`kd_jabatan` varchar(3) NOT NULL,
`id_kategori` varchar(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `data_indikator`
--
INSERT INTO `data_indikator` (`id_indikator`, `nama_indikator`, `jumlah_hasil_analisa_indikator`, `nilai_eigenvector`, `kd_jabatan`, `id_kategori`) VALUES
('IK1', 'Rasio jumlah CPNS yang diterima pada tes penerimaan CPNS', 5.166, 0.236370759224366, 'J05', 'K1'),
('IK10', 'Rasio laporan persiapan kebutuhan administrasi pelantikan pejabat struktural organisasi', 2, 0.5, 'J12', 'K3'),
('IK11', 'Rasio laporan persiapan kebutuhan administrasi kegiatan bimbingan teknis penilaian angka kredit', 6, 0.1916441644164425, 'J12', 'K4'),
('IK12', 'Rasio penyiapan konsep SK pangkat dan SK peninjauan masa kerja PNS', 3.333, 0.325007500750075, 'J12', 'K4'),
('IK13', 'Rasio penyiapan kebutuhan administrasi usul peninjauan masa kerja pegawai', 4, 0.2416741674167425, 'J12', 'K4'),
('IK14', 'Rasio penyiapan pengantar usul kenaikan pangkat pegawai', 4, 0.2416741674167425, 'J12', 'K4'),
('IK15', 'Rasio laporan persiapan kebutuhan administrasi dan teknis pemulangan pegawai pensiun', 1.333, 0.7500937734433599, 'J12', 'K5'),
('IK16', 'Rasio pengusulan pegawai pensiun', 4, 0.24990622655664, 'J12', 'K5'),
('IK2', 'Rasio pemeriksaan kelengkapan dokumen administrasi pelaksanaan sumpah PNS', 11, 0.0878057981986482, 'J12', 'K1'),
('IK3', 'Rasio Jumlah CPNS yang melaksanakan sumpah PNS ', 6.666, 0.1870104224938292, 'J05', 'K1'),
('IK4', 'Rasio laporan persiapan kebutuhan administrasi kegiatan peresmian PNS', 11, 0.0878057981986482, 'J12', 'K1'),
('IK5', 'Rasio jumlah CPNS yang terpenuhi stastusnya menjadi PNS', 2.332, 0.401007221884504, 'J05', 'K1'),
('IK6', 'Rasio tersusunnya naskah formasi PNS', 1.666, 0.5737241584840733, 'J05', 'K2'),
('IK7', 'Rasio laporan penerbitan surat pemberitahuan kenaikan gaji berkala', 4.333, 0.2864127880554466, 'J05', 'K2'),
('IK8', 'Rasio PNS yang dimutasi ke dalam dan ke luar Pemerintahan <NAME>', 7, 0.13986305346047767, 'J12', 'K2'),
('IK9', 'Rasio tertatanya administrasi jabatan fungsional khusus pegawai', 2, 0.5, 'J12', 'K3');
-- --------------------------------------------------------
--
-- Table structure for table `indikator`
--
CREATE TABLE IF NOT EXISTS `indikator` (
`kd_indikator` int(11) NOT NULL,
`id_indikator` varchar(11) NOT NULL,
`indikator` text NOT NULL,
`nip` varchar(25) NOT NULL,
`realisasi_output` int(11) NOT NULL,
`target_output` int(11) NOT NULL,
`ket_output` enum('naskah','dokumen','orang') NOT NULL,
`realisasi_kualitas` int(11) NOT NULL,
`target_kualitas` int(11) NOT NULL,
`realisasi_waktu` int(11) NOT NULL,
`target_waktu` int(11) NOT NULL,
`target_pencapaian` int(11) NOT NULL,
`skor_pencapaian` int(11) NOT NULL,
`target_akhir_pencapaian` double NOT NULL,
`skor_akhir_pencapaian` double NOT NULL,
`realisasi_biaya` int(20) NOT NULL,
`target_biaya` int(20) NOT NULL,
`kd_kategori` varchar(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=17 ;
--
-- Dumping data for table `indikator`
--
INSERT INTO `indikator` (`kd_indikator`, `id_indikator`, `indikator`, `nip`, `realisasi_output`, `target_output`, `ket_output`, `realisasi_kualitas`, `target_kualitas`, `realisasi_waktu`, `target_waktu`, `target_pencapaian`, `skor_pencapaian`, `target_akhir_pencapaian`, `skor_akhir_pencapaian`, `realisasi_biaya`, `target_biaya`, `kd_kategori`) VALUES
(1, 'IK1', 'Rasio jumlah CPNS yang diterima pada tes penerimaan CPNS', '197509072000031004', 90, 100, 'orang', 80, 100, 12, 12, 76, 82, 1.690730968077, 1.8242097287146, 0, 0, ''),
(2, 'IK3', 'Rasio Jumlah CPNS yang melaksanakan sumpah PNS ', '197509072000031004', 95, 100, 'orang', 85, 100, 12, 12, 76, 85, 1.3376625505668, 1.4960699578708, 0, 0, ''),
(3, 'IK5', 'Rasio jumlah CPNS yang terpenuhi stastusnya menjadi PNS', '197509072000031004', 90, 100, 'orang', 90, 100, 12, 12, 76, 85, 2.8683553358607, 3.2080289940547, 0, 0, ''),
(4, 'IK6', 'Rasio tersusunnya naskah formasi PNS', '197509072000031004', 80, 100, 'orang', 80, 100, 12, 12, 76, 79, 17.801435772947, 18.504124027142, 0, 0, ''),
(5, 'IK7', 'Rasio laporan penerbitan surat pemberitahuan kenaikan gaji berkala', '197509072000031004', 90, 100, 'orang', 90, 100, 12, 12, 76, 85, 8.8867773401618, 9.9391588672862, 0, 0, ''),
(6, 'IK10', 'Rasio laporan persiapan kebutuhan administrasi pelantikan pejabat struktural organisasi', '198108212009031003', 88, 100, 'orang', 88, 100, 12, 12, 76, 84, 0, 6.4407361119504, 0, 0, ''),
(7, 'IK11', 'Rasio laporan persiapan kebutuhan administrasi kegiatan bimbingan teknis penilaian angka kredit', '198108212009031003', 90, 100, 'orang', 90, 100, 12, 12, 76, 85, 0, 5.4559319500178, 0, 0, ''),
(8, 'IK12', 'Rasio penyiapan konsep SK pangkat dan SK peninjauan masa kerja PNS', '198108212009031003', 85, 100, 'orang', 85, 100, 12, 12, 76, 82, 0, 5.2633696458995, 0, 0, ''),
(9, 'IK13', 'Rasio penyiapan kebutuhan administrasi usul peninjauan masa kerja pegawai', '198108212009031003', 86, 100, 'orang', 86, 100, 12, 12, 76, 83, 0, 5.3275570806056, 0, 0, ''),
(10, 'IK14', 'Rasio penyiapan pengantar usul kenaikan pangkat pegawai', '198108212009031003', 87, 100, 'orang', 87, 100, 12, 12, 76, 83, 0, 5.3275570806056, 0, 0, ''),
(11, 'IK15', 'Rasio laporan persiapan kebutuhan administrasi dan teknis pemulangan pegawai pensiun', '198108212009031003', 88, 100, 'orang', 88, 100, 12, 12, 76, 84, 0, 3.6758910834356, 0, 0, ''),
(12, 'IK16', 'Rasio pengusulan pegawai pensiun', '198108212009031003', 89, 100, 'orang', 89, 100, 12, 12, 76, 85, 0, 3.7196516915718, 0, 0, ''),
(13, 'IK2', 'Rasio pemeriksaan kelengkapan dokumen administrasi pelaksanaan sumpah PNS', '198108212009031003', 85, 100, 'orang', 85, 100, 12, 12, 76, 82, 0, 0.67764808065572, 0, 0, ''),
(14, 'IK4', 'Rasio laporan persiapan kebutuhan administrasi kegiatan peresmian PNS', '198108212009031003', 86, 100, 'orang', 86, 100, 12, 12, 76, 83, 0, 0.68591208163933, 0, 0, ''),
(15, 'IK8', 'Rasio PNS yang dimutasi ke dalam dan ke luar Pemerintahan Kab. <NAME>', '198108212009031003', 87, 100, 'orang', 87, 100, 12, 12, 76, 83, 0, 2.6882651160466, 0, 0, ''),
(16, 'IK9', 'Rasio tertatanya administrasi jabatan fungsional khusus pegawai', '198108212009031003', 89, 100, 'orang', 89, 100, 12, 12, 76, 85, 0, 6.5174115418545, 0, 0, '');
-- --------------------------------------------------------
--
-- Table structure for table `jabatan`
--
CREATE TABLE IF NOT EXISTS `jabatan` (
`kd_jabatan` varchar(3) NOT NULL DEFAULT '',
`jabatan` varchar(100) NOT NULL,
`ket` text NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `jabatan`
--
INSERT INTO `jabatan` (`kd_jabatan`, `jabatan`, `ket`) VALUES
('J01', 'Kepala Badan Kepegawaian dan Diklat', 'Badan Kepegawaian dan Diklat Kabupaten Ogan Ilir'),
('J03', 'Kepala Bidang Formasi dan Mutasi', 'Bidang Formasi dan Mutasi'),
('J05', 'Kasubbid Formasi dan Data Pegawai', 'Bidang Formasi dan Mutasi'),
('J12', 'Kasubbid Mutasi Pegawai', 'Bidang Formasi dan Mutasi');
-- --------------------------------------------------------
--
-- Table structure for table `kategori`
--
CREATE TABLE IF NOT EXISTS `kategori` (
`id_kategori` varchar(11) NOT NULL,
`nama_kategori` varchar(100) NOT NULL,
`jumlah_kategori` double NOT NULL,
`bobot_kategori` double NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `kategori`
--
INSERT INTO `kategori` (`id_kategori`, `nama_kategori`, `jumlah_kategori`, `bobot_kategori`) VALUES
('K1', 'CPNS', 10, 0.0941168026843768),
('K2', 'PNS', 2.499, 0.40826138241064003),
('K3', 'JABATAN ORGANISASI', 7, 0.153350859808342),
('K4', 'GOLONGAN & PANGKAT', 4.033, 0.256749738824368),
('K5', 'PENSIUN', 12, 0.0875212162722766);
-- --------------------------------------------------------
--
-- Table structure for table `nilai_kategori`
--
CREATE TABLE IF NOT EXISTS `nilai_kategori` (
`id_nilai` int(11) NOT NULL,
`nilai` double NOT NULL,
`keterangan` varchar(100) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=18 ;
--
-- Dumping data for table `nilai_kategori`
--
INSERT INTO `nilai_kategori` (`id_nilai`, `nilai`, `keterangan`) VALUES
(1, 9, 'Mutlak sangat penting dari'),
(2, 8, 'Mendekati mutlak dari'),
(3, 7, 'Sangat penting dari'),
(4, 6, 'Mendekati sangat penting dari'),
(5, 5, 'Lebih penting dari'),
(6, 4, 'Mendekati lebih penting dari'),
(7, 3, 'Sedikit lebih penting dari'),
(8, 2, 'Mendekati sedikit lebih penting dari'),
(9, 1, 'Sama penting dengan'),
(10, 0.5, '1 bagi mendekati sedikit lebih penting dari'),
(11, 0.333, '1 bagi sedikit lebih penting dari'),
(12, 0.25, '1 bagi mendekati lebih penting dari'),
(13, 0.2, '1 bagi lebih penting dari'),
(14, 0.167, '1 bagi mendekati sangat penting dari'),
(15, 0.143, '1 bagi sangat penting dari'),
(16, 0.125, '1 bagi mendekati mutlak dari'),
(17, 0.1, '1 bagi mutlak sangat penting dari');
-- --------------------------------------------------------
--
-- Table structure for table `pangkat`
--
CREATE TABLE IF NOT EXISTS `pangkat` (
`kd_pangkat` varchar(3) NOT NULL DEFAULT '',
`pangkatgolru` varchar(50) NOT NULL,
`ket` text NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `pangkat`
--
INSERT INTO `pangkat` (`kd_pangkat`, `pangkatgolru`, `ket`) VALUES
('P01', 'Juru Muda / (I/b)', 'Golongan/Ruang Ia =Pangkat Juru Muda'),
('P02', 'Juru Muda Tingkat 1 / (I/b)', 'Golongan/Ruang Ib =\r\nPangkat Juru Muda Tingkat I'),
('P03', 'Juru / (I/c)', 'Golongan/Ruang Ic =\r\nPangkat Juru'),
('P04', 'Juru Tingkat 1 / (I/d)', 'Golongan/Ruang Id =\r\nPangkat Juru Tingkat 1'),
('P05', 'Pengatur Muda / (II/a)', 'Golongan/Ruang IIa =\r\nPangkat Pengatur Muda'),
('P06', 'Pengatur Muda Tingkat 1 / (II/b)', 'Golongan/Ruang IIb =\r\nPangkat Pengatur Muda Tingkat 1\r\n'),
('P07', 'Pengatur / (II/c)', 'Golongan/Ruang IIc =\r\nPangkat Pengatur '),
('P08', 'Pengatur Tingkat 1 / (II/d)', 'Golongan/Ruang IId =\r\nPangkat Pengatur Tingkat 1'),
('P09', 'Penata Muda / (III/a)', 'Golongan/Ruang IIIa =\r\nPangkat Penata Muda\r\n'),
('P10', 'Penata Muda Tingkat 1 / (III/b)', 'Golongan/Ruang IIIb =\r\nPangkat Penata Muda Tingkat 1\r\n'),
('P11', 'Penata / (III/c)', 'Golongan/Ruang IIIc = Pangkat Penata'),
('P12', 'Penata Tingkat 1 / (III/d)', 'Golongan/Ruang IIId =\r\nPangkat Penata Tingkat 1\r\n'),
('P13', 'Pembina / (IV/a)', 'Golongan/Ruang IVa =\r\nPangkat Pembina\r\n'),
('P14', 'Pembina Tingkat 1 / (IV/b)', 'Golongan/Ruang IVb =\r\nPangkat Pembina Tingkat 1\r\n'),
('P15', 'Pembina Utama Muda / (IV/c)', 'Golongan/Ruang IVc =\r\nPangkat Pembina Utama Muda\r\n'),
('P16', 'Pembina Utama Madya / (IV/d)', 'Golongan/Ruang IVd = Pangkat Pembina Utama Madya'),
('P17', 'Pembina Utama / (IV/e)', 'Golongan/Ruang IVe =\r\nPangkat Pembina Utama\r\n');
-- --------------------------------------------------------
--
-- Table structure for table `unitkerja`
--
CREATE TABLE IF NOT EXISTS `unitkerja` (
`kd_unitkerja` varchar(3) NOT NULL DEFAULT '',
`unitkerja` varchar(100) NOT NULL,
`ket` text NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `unitkerja`
--
INSERT INTO `unitkerja` (`kd_unitkerja`, `unitkerja`, `ket`) VALUES
('U01', 'Badan Kepegawaian dan Diklat Kabupaten Ogan Ilir', 'tidak ada'),
('U04', 'Bidang Formasi dan Mutasi', 'tidak ada');
-- --------------------------------------------------------
--
-- Table structure for table `user`
--
CREATE TABLE IF NOT EXISTS `user` (
`nip` varchar(25) NOT NULL,
`nama` varchar(50) NOT NULL,
`kd_pangkat` varchar(3) NOT NULL,
`kd_jabatan` varchar(3) NOT NULL,
`kd_unitkerja` varchar(3) NOT NULL,
`jk` varchar(30) NOT NULL,
`tmpt_lahir` varchar(30) NOT NULL,
`tgl_lahir` date NOT NULL,
`agama` varchar(20) NOT NULL,
`level` enum('admin','pegawai','penilai','kaban') NOT NULL,
`username` varchar(30) NOT NULL,
`password` varchar(32) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `user`
--
INSERT INTO `user` (`nip`, `nama`, `kd_pangkat`, `kd_jabatan`, `kd_unitkerja`, `jk`, `tmpt_lahir`, `tgl_lahir`, `agama`, `level`, `username`, `password`) VALUES
('0<PASSWORD>', 'Idris', 'P04', 'J05', 'U04', 'laki-laki', 'Palembang', '0000-00-00', 'islam', 'penilai', 'bukanadmin', '<PASSWORD>'),
('196208101997031002', '<NAME>, MT', 'P13', 'J01', 'U01', 'laki-laki', 'Palembang', '2017-01-11', 'islam', 'kaban', 'kaban', '790d0d51b5a79665aa7c471193021177'),
('197509072000031004', 'Syahrurrizal, S.Kom, M.Si', 'P13', 'J05', 'U04', 'laki-laki', 'Kayu Agung', '0000-00-00', 'islam', 'pegawai', 'kasubidfor', 'dbff7a8e45ca15b43193558a4e6035f3'),
('197907271999031005', '<NAME>, SE, MH', 'P12', 'J03', 'U04', 'laki-laki', 'Palembang', '0000-00-00', 'islam', 'penilai', 'kabidformut', 'f4f9198c3aac6a126b21f9246367183c'),
('198108212009031002', '<NAME>, SE, M.Si', 'P10', 'J12', 'U04', 'laki-laki', 'Palembang', '1981-08-21', 'budha', 'pegawai', 'kasubidmut', 'eff0f96b0a9510a8303291f345b59d2c'),
('198108212009031003', '<NAME>', 'P10', 'J12', 'U04', 'laki-laki', 'Palembang', '1981-08-21', 'budha', 'pegawai', 'kasubidmut2', '486d13ac5449fca2656acad633899bd7'),
('2147483647', '<NAME>', 'P05', 'J14', 'U12', 'laki-laki', 'Belinyu', '2016-11-07', 'protestan', 'admin', 'admin', '21232f297a57a5a743894a0e4a801fc3');
--
-- Indexes for dumped tables
--
--
-- Indexes for table `ahp_nilai`
--
ALTER TABLE `ahp_nilai`
ADD PRIMARY KEY (`id_nilai`);
--
-- Indexes for table `analisa_indikator`
--
ALTER TABLE `analisa_indikator`
ADD PRIMARY KEY (`id_analisa_indikator`);
--
-- Indexes for table `analisa_kategori`
--
ALTER TABLE `analisa_kategori`
ADD PRIMARY KEY (`id_analisa`);
--
-- Indexes for table `data_indikator`
--
ALTER TABLE `data_indikator`
ADD PRIMARY KEY (`id_indikator`);
--
-- Indexes for table `indikator`
--
ALTER TABLE `indikator`
ADD PRIMARY KEY (`kd_indikator`);
--
-- Indexes for table `jabatan`
--
ALTER TABLE `jabatan`
ADD PRIMARY KEY (`kd_jabatan`);
--
-- Indexes for table `kategori`
--
ALTER TABLE `kategori`
ADD PRIMARY KEY (`id_kategori`);
--
-- Indexes for table `nilai_kategori`
--
ALTER TABLE `nilai_kategori`
ADD PRIMARY KEY (`id_nilai`);
--
-- Indexes for table `pangkat`
--
ALTER TABLE `pangkat`
ADD PRIMARY KEY (`kd_pangkat`);
--
-- Indexes for table `unitkerja`
--
ALTER TABLE `unitkerja`
ADD PRIMARY KEY (`kd_unitkerja`);
--
-- Indexes for table `user`
--
ALTER TABLE `user`
ADD PRIMARY KEY (`nip`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `ahp_nilai`
--
ALTER TABLE `ahp_nilai`
MODIFY `id_nilai` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=23;
--
-- AUTO_INCREMENT for table `analisa_indikator`
--
ALTER TABLE `analisa_indikator`
MODIFY `id_analisa_indikator` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=59;
--
-- AUTO_INCREMENT for table `analisa_kategori`
--
ALTER TABLE `analisa_kategori`
MODIFY `id_analisa` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=26;
--
-- AUTO_INCREMENT for table `indikator`
--
ALTER TABLE `indikator`
MODIFY `kd_indikator` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=17;
--
-- AUTO_INCREMENT for table `nilai_kategori`
--
ALTER TABLE `nilai_kategori`
MODIFY `id_nilai` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=18;
/*!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>piotrkubicki/messenger<gh_stars>0
DROP TABLE IF EXISTS friend_requests;
CREATE TABLE friend_requests (
request_id text,
sender_id text,
reciever_id text,
status int,
PRIMARY KEY (request_id),
FOREIGN KEY (sender_id) REFERENCES users (user_id),
FOREIGN KEY (reciever_id) REFERENCES users (user_id)
);
|
<filename>bd/bd.sql
CREATE SCHEMA `carrefour` ;
-- MySQL Workbench Forward Engineering
SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0;
SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0;
SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION';
-- -----------------------------------------------------
-- Schema carrefour
-- -----------------------------------------------------
-- -----------------------------------------------------
-- Schema carrefour
-- -----------------------------------------------------
CREATE SCHEMA IF NOT EXISTS `carrefour` DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci ;
USE `carrefour` ;
-- -----------------------------------------------------
-- Table `carrefour`.`categorie`
-- -----------------------------------------------------
CREATE TABLE IF NOT EXISTS `carrefour`.`categorie` (
`id` BIGINT NOT NULL AUTO_INCREMENT,
`nom` VARCHAR(255) NULL,
PRIMARY KEY (`id`))
ENGINE = InnoDB;
-- -----------------------------------------------------
-- Table `carrefour`.`produit`
-- -----------------------------------------------------
CREATE TABLE IF NOT EXISTS `carrefour`.`produit` (
`id` BIGINT NOT NULL AUTO_INCREMENT,
`nom` VARCHAR(255) NULL,
`prix` INT NULL,
`categorie_id` BIGINT NOT NULL,
PRIMARY KEY (`id`),
INDEX `fk_produit_categorie1_idx` (`categorie_id` ASC) VISIBLE,
CONSTRAINT `fk_produit_categorie1`
FOREIGN KEY (`categorie_id`)
REFERENCES `carrefour`.`categorie` (`id`)
ON DELETE NO ACTION
ON UPDATE NO ACTION)
ENGINE = InnoDB;
-- -----------------------------------------------------
-- Table `carrefour`.`client`
-- -----------------------------------------------------
CREATE TABLE IF NOT EXISTS `carrefour`.`client` (
`id` BIGINT NOT NULL AUTO_INCREMENT,
`nom` VARCHAR(255) NULL,
`prenom` VARCHAR(255) NULL,
PRIMARY KEY (`id`))
ENGINE = InnoDB;
-- -----------------------------------------------------
-- Table `carrefour`.`ville`
-- -----------------------------------------------------
CREATE TABLE IF NOT EXISTS `carrefour`.`ville` (
`id` BIGINT NOT NULL AUTO_INCREMENT,
`nom` VARCHAR(255) NULL,
PRIMARY KEY (`id`))
ENGINE = InnoDB;
-- -----------------------------------------------------
-- Table `carrefour`.`magasin`
-- -----------------------------------------------------
CREATE TABLE IF NOT EXISTS `carrefour`.`magasin` (
`id` BIGINT NOT NULL AUTO_INCREMENT,
`nom` VARCHAR(255) NULL,
`ville_id` BIGINT NOT NULL,
PRIMARY KEY (`id`),
INDEX `fk_magasin_ville_idx` (`ville_id` ASC) VISIBLE,
CONSTRAINT `fk_magasin_ville`
FOREIGN KEY (`ville_id`)
REFERENCES `carrefour`.`ville` (`id`)
ON DELETE NO ACTION
ON UPDATE NO ACTION)
ENGINE = InnoDB;
-- -----------------------------------------------------
-- Table `carrefour`.`commande`
-- -----------------------------------------------------
CREATE TABLE IF NOT EXISTS `carrefour`.`commande` (
`id` BIGINT NOT NULL AUTO_INCREMENT,
`client_id` BIGINT NOT NULL,
`magasin_id` BIGINT NOT NULL,
PRIMARY KEY (`id`),
INDEX `fk_commande_client1_idx` (`client_id` ASC) VISIBLE,
INDEX `fk_commande_magasin1_idx` (`magasin_id` ASC) VISIBLE,
CONSTRAINT `fk_commande_client1`
FOREIGN KEY (`client_id`)
REFERENCES `carrefour`.`client` (`id`)
ON DELETE NO ACTION
ON UPDATE NO ACTION,
CONSTRAINT `fk_commande_magasin1`
FOREIGN KEY (`magasin_id`)
REFERENCES `carrefour`.`magasin` (`id`)
ON DELETE NO ACTION
ON UPDATE NO ACTION)
ENGINE = InnoDB;
-- -----------------------------------------------------
-- Table `carrefour`.`commande_has_produit`
-- -----------------------------------------------------
CREATE TABLE IF NOT EXISTS `carrefour`.`commande_has_produit` (
`commande_id` BIGINT NOT NULL,
`produit_id` BIGINT NOT NULL,
PRIMARY KEY (`commande_id`, `produit_id`),
INDEX `fk_commande_has_produit_produit1_idx` (`produit_id` ASC) VISIBLE,
INDEX `fk_commande_has_produit_commande1_idx` (`commande_id` ASC) VISIBLE,
CONSTRAINT `fk_commande_has_produit_commande1`
FOREIGN KEY (`commande_id`)
REFERENCES `carrefour`.`commande` (`id`)
ON DELETE NO ACTION
ON UPDATE NO ACTION,
CONSTRAINT `fk_commande_has_produit_produit1`
FOREIGN KEY (`produit_id`)
REFERENCES `carrefour`.`produit` (`id`)
ON DELETE NO ACTION
ON UPDATE NO ACTION)
ENGINE = InnoDB;
SET SQL_MODE=@OLD_SQL_MODE;
SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS;
SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS;
|
/*
Navicat MySQL Data Transfer
Source Server : localhost
Source Server Version : 50720
Source Host : localhost:3306
Source Database : jesper
Target Server Type : MYSQL
Target Server Version : 50720
File Encoding : 65001
Date: 2018-06-19 14:26:41
*/
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for kuaidi100_delivery
-- ----------------------------
DROP TABLE IF EXISTS `kuaidi100_delivery`;
CREATE TABLE `kuaidi100_delivery` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`delivery_name` varchar(255) NOT NULL,
`delivery_code` varchar(255) NOT NULL,
`delivery_sort` varchar(2) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=147 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of kuaidi100_delivery
-- ----------------------------
INSERT INTO `kuaidi100_delivery` VALUES ('1', '澳大利亚邮政', 'auspost', 'A');
INSERT INTO `kuaidi100_delivery` VALUES ('2', 'AAE', 'aae', 'A');
INSERT INTO `kuaidi100_delivery` VALUES ('3', '安信达', 'anxindakuaixi', 'A');
INSERT INTO `kuaidi100_delivery` VALUES ('4', '百世汇通', 'huitongkuaidi', 'B');
INSERT INTO `kuaidi100_delivery` VALUES ('5', 'BHT', 'bht', 'B');
INSERT INTO `kuaidi100_delivery` VALUES ('6', '包裹/平邮/挂号信', 'youzhengguonei', 'B');
INSERT INTO `kuaidi100_delivery` VALUES ('7', '邦送物流', 'bangsongwuliu', 'B');
INSERT INTO `kuaidi100_delivery` VALUES ('8', '希伊艾斯(CCES)', 'cces', 'C');
INSERT INTO `kuaidi100_delivery` VALUES ('9', '中国东方(COE)', 'coe', 'C');
INSERT INTO `kuaidi100_delivery` VALUES ('10', '传喜物流', 'chuanxiwuliu', 'C');
INSERT INTO `kuaidi100_delivery` VALUES ('11', '加拿大邮政Canada Post', 'canpost', 'C');
INSERT INTO `kuaidi100_delivery` VALUES ('12', '加拿大邮政Canada Post', 'canpostfr', 'C');
INSERT INTO `kuaidi100_delivery` VALUES ('13', '大田物流', 'datianwuliu', 'D');
INSERT INTO `kuaidi100_delivery` VALUES ('14', '德邦物流', 'debangwuliu', 'D');
INSERT INTO `kuaidi100_delivery` VALUES ('15', 'DPEX', 'dpex', 'D');
INSERT INTO `kuaidi100_delivery` VALUES ('16', 'DHL-中国件', 'dhl', 'D');
INSERT INTO `kuaidi100_delivery` VALUES ('17', 'DHL-国际件', 'dhlen', 'D');
INSERT INTO `kuaidi100_delivery` VALUES ('18', 'DHL-德国件', 'dhlde', 'D');
INSERT INTO `kuaidi100_delivery` VALUES ('19', 'D速快递', 'dsukuaidi', 'D');
INSERT INTO `kuaidi100_delivery` VALUES ('20', '递四方', 'disifang', 'D');
INSERT INTO `kuaidi100_delivery` VALUES ('21', 'EMS', 'ems', 'E');
INSERT INTO `kuaidi100_delivery` VALUES ('22', 'E邮宝', 'ems', 'E');
INSERT INTO `kuaidi100_delivery` VALUES ('23', 'EMS', 'emsen', 'E');
INSERT INTO `kuaidi100_delivery` VALUES ('24', 'EMS-(中国-国际)件', 'emsguoji', 'E');
INSERT INTO `kuaidi100_delivery` VALUES ('25', 'EMS', 'emsinten', 'E');
INSERT INTO `kuaidi100_delivery` VALUES ('26', 'Fedex-国际件', 'fedex', 'F');
INSERT INTO `kuaidi100_delivery` VALUES ('27', 'Fedex-国际件', 'fedexcn', 'F');
INSERT INTO `kuaidi100_delivery` VALUES ('28', 'Fedex-美国件', 'fedexus', 'F');
INSERT INTO `kuaidi100_delivery` VALUES ('29', '飞康达物流', 'feikangda', 'F');
INSERT INTO `kuaidi100_delivery` VALUES ('30', '飞快达', 'feikuaida', 'F');
INSERT INTO `kuaidi100_delivery` VALUES ('31', '凡客如风达', 'rufengda', 'F');
INSERT INTO `kuaidi100_delivery` VALUES ('32', '风行天下', 'fengxingtianxia', 'F');
INSERT INTO `kuaidi100_delivery` VALUES ('33', '飞豹快递', 'feibaokuaidi', 'F');
INSERT INTO `kuaidi100_delivery` VALUES ('34', '港中能达', 'ganzhongnengda', 'G');
INSERT INTO `kuaidi100_delivery` VALUES ('35', '国通快递', 'guotongkuaidi', 'G');
INSERT INTO `kuaidi100_delivery` VALUES ('36', '广东邮政', 'guangdongyouzhengwuliu', 'G');
INSERT INTO `kuaidi100_delivery` VALUES ('37', '挂号信', 'youzhengguonei', 'G');
INSERT INTO `kuaidi100_delivery` VALUES ('38', '国内邮件', 'youzhengguonei', 'G');
INSERT INTO `kuaidi100_delivery` VALUES ('39', '国际邮件', 'youzhengguoji', 'G');
INSERT INTO `kuaidi100_delivery` VALUES ('40', 'GLS', 'gls', 'G');
INSERT INTO `kuaidi100_delivery` VALUES ('41', '共速达', 'gongsuda', 'G');
INSERT INTO `kuaidi100_delivery` VALUES ('42', '汇通快运', 'huitongkuaidi', 'H');
INSERT INTO `kuaidi100_delivery` VALUES ('43', '汇强快递', 'huiqiangkuaidi', 'H');
INSERT INTO `kuaidi100_delivery` VALUES ('44', '华宇物流', 'tiandihuayu', 'H');
INSERT INTO `kuaidi100_delivery` VALUES ('45', '恒路物流', 'hengluwuliu', 'H');
INSERT INTO `kuaidi100_delivery` VALUES ('46', '华夏龙', 'huaxialongwuliu', 'H');
INSERT INTO `kuaidi100_delivery` VALUES ('47', '海航天天', 'tiantian', 'H');
INSERT INTO `kuaidi100_delivery` VALUES ('48', '海外环球', 'haiwaihuanqiu', 'H');
INSERT INTO `kuaidi100_delivery` VALUES ('49', '河北建华', 'hebeijianhua', 'H');
INSERT INTO `kuaidi100_delivery` VALUES ('50', '海盟速递', 'haimengsudi', 'H');
INSERT INTO `kuaidi100_delivery` VALUES ('51', '华企快运', 'huaqikuaiyun', 'H');
INSERT INTO `kuaidi100_delivery` VALUES ('52', '山东海红', 'haihongwangsong', 'H');
INSERT INTO `kuaidi100_delivery` VALUES ('53', '佳吉物流', 'jiajiwuliu', 'J');
INSERT INTO `kuaidi100_delivery` VALUES ('54', '佳怡物流', 'jiayiwuliu', 'J');
INSERT INTO `kuaidi100_delivery` VALUES ('55', '加运美', 'jiayunmeiwuliu', 'J');
INSERT INTO `kuaidi100_delivery` VALUES ('56', '京广速递', 'jinguangsudikuaijian', 'J');
INSERT INTO `kuaidi100_delivery` VALUES ('57', '急先达', 'jixianda', 'J');
INSERT INTO `kuaidi100_delivery` VALUES ('58', '晋越快递', 'jinyuekuaidi', 'J');
INSERT INTO `kuaidi100_delivery` VALUES ('59', 'jinyuekuaidi', 'jietekuaidi', 'J');
INSERT INTO `kuaidi100_delivery` VALUES ('60', '金大物流', 'jindawuliu', 'J');
INSERT INTO `kuaidi100_delivery` VALUES ('61', '嘉里大通', 'jialidatong', 'J');
INSERT INTO `kuaidi100_delivery` VALUES ('62', '快捷速递', 'kuaijiesudi', 'K');
INSERT INTO `kuaidi100_delivery` VALUES ('63', '康力物流', 'kangliwuliu', 'K');
INSERT INTO `kuaidi100_delivery` VALUES ('64', '跨越物流', 'kuayue', 'K');
INSERT INTO `kuaidi100_delivery` VALUES ('65', '联昊通', 'lianhaowuliu', 'L');
INSERT INTO `kuaidi100_delivery` VALUES ('66', '龙邦物流', 'longbanwuliu', 'L');
INSERT INTO `kuaidi100_delivery` VALUES ('67', '蓝镖快递', 'lanbiaokuaidi', 'L');
INSERT INTO `kuaidi100_delivery` VALUES ('68', '乐捷递', 'lejiedi', 'L');
INSERT INTO `kuaidi100_delivery` VALUES ('69', '联邦快递', 'lianbangkuaidi', 'L');
INSERT INTO `kuaidi100_delivery` VALUES ('70', '联邦快递', 'lianbangkuaidien', 'L');
INSERT INTO `kuaidi100_delivery` VALUES ('71', '立即送', 'lijisong', 'L');
INSERT INTO `kuaidi100_delivery` VALUES ('72', '隆浪快递', 'longlangkuaidi', 'L');
INSERT INTO `kuaidi100_delivery` VALUES ('73', '门对门', 'menduimen', 'M');
INSERT INTO `kuaidi100_delivery` VALUES ('74', '美国快递', 'meiguokuaidi', 'M');
INSERT INTO `kuaidi100_delivery` VALUES ('75', '明亮物流', 'mingliangwuliu', 'M');
INSERT INTO `kuaidi100_delivery` VALUES ('76', 'OCS', 'OCS', 'O');
INSERT INTO `kuaidi100_delivery` VALUES ('77', 'onTrac', 'ontrac', 'O');
INSERT INTO `kuaidi100_delivery` VALUES ('78', '全晨快递', 'quanchenkuaidi', 'Q');
INSERT INTO `kuaidi100_delivery` VALUES ('79', '全际通', 'quanjitong', 'Q');
INSERT INTO `kuaidi100_delivery` VALUES ('80', '全日通', 'quanritongkuaidi', 'Q');
INSERT INTO `kuaidi100_delivery` VALUES ('81', '全一快递', 'quanyikuaidi', 'Q');
INSERT INTO `kuaidi100_delivery` VALUES ('82', '全峰快递', 'quanfengkuaidi', 'Q');
INSERT INTO `kuaidi100_delivery` VALUES ('83', '七天连锁', 'sevendays', 'Q');
INSERT INTO `kuaidi100_delivery` VALUES ('84', '如风达快递', 'rufengda', 'R');
INSERT INTO `kuaidi100_delivery` VALUES ('85', '伸通', 'shentong', 'S');
INSERT INTO `kuaidi100_delivery` VALUES ('86', '顺丰速递', 'shunfeng', 'S');
INSERT INTO `kuaidi100_delivery` VALUES ('87', '顺丰', 'shunfengen', 'S');
INSERT INTO `kuaidi100_delivery` VALUES ('88', '三态速递', 'santaisudi', 'S');
INSERT INTO `kuaidi100_delivery` VALUES ('89', '盛辉物流', 'shenghuiwuliu', 'S');
INSERT INTO `kuaidi100_delivery` VALUES ('90', '速尔物流', 'suer', 'S');
INSERT INTO `kuaidi100_delivery` VALUES ('91', '盛丰物流', 'shengfengwuliu', 'S');
INSERT INTO `kuaidi100_delivery` VALUES ('92', '上大物流', 'shangda', 'S');
INSERT INTO `kuaidi100_delivery` VALUES ('93', '三态速递', 'santaisudi', 'S');
INSERT INTO `kuaidi100_delivery` VALUES ('94', '山东海红', 'haihongwangsong', 'S');
INSERT INTO `kuaidi100_delivery` VALUES ('95', '赛澳递', 'saiaodi', 'S');
INSERT INTO `kuaidi100_delivery` VALUES ('96', '山东海红', 'haihongwangsong', 'S');
INSERT INTO `kuaidi100_delivery` VALUES ('97', '山西红马甲', 'sxhongmajia', 'S');
INSERT INTO `kuaidi100_delivery` VALUES ('98', '圣安物流', 'shenganwuliu', 'S');
INSERT INTO `kuaidi100_delivery` VALUES ('99', '穗佳物流', 'suijiawuliu', 'S');
INSERT INTO `kuaidi100_delivery` VALUES ('100', '天地华宇', 'tiandihuayu', 'T');
INSERT INTO `kuaidi100_delivery` VALUES ('101', '天天快递', 'tiantian', 'T');
INSERT INTO `kuaidi100_delivery` VALUES ('102', 'TNT', 'TNT', 'T');
INSERT INTO `kuaidi100_delivery` VALUES ('103', 'TNT', 'tnten', 'T');
INSERT INTO `kuaidi100_delivery` VALUES ('104', '通和天下', 'tonghetianxia', 'T');
INSERT INTO `kuaidi100_delivery` VALUES ('105', 'UPS', 'ups', 'U');
INSERT INTO `kuaidi100_delivery` VALUES ('106', 'UPS', 'UPS', 'U');
INSERT INTO `kuaidi100_delivery` VALUES ('107', '优速物流', 'youshuwuliu', 'U');
INSERT INTO `kuaidi100_delivery` VALUES ('108', 'USPS', 'usps', 'U');
INSERT INTO `kuaidi100_delivery` VALUES ('109', '万家物流', 'wanjiawuliu', 'U');
INSERT INTO `kuaidi100_delivery` VALUES ('110', '万象物流', 'wanxiangwuliu', 'U');
INSERT INTO `kuaidi100_delivery` VALUES ('111', '微特派', 'weitepai', 'U');
INSERT INTO `kuaidi100_delivery` VALUES ('112', '新邦物流', 'xinbangwuliu', 'X');
INSERT INTO `kuaidi100_delivery` VALUES ('113', '信丰物流', 'xinbangwuliu', 'X');
INSERT INTO `kuaidi100_delivery` VALUES ('114', '星晨急便', 'xingchengjibian', 'X');
INSERT INTO `kuaidi100_delivery` VALUES ('115', '鑫飞鸿', 'xinhongyukuaidi', 'X');
INSERT INTO `kuaidi100_delivery` VALUES ('116', '希伊艾斯(CCES)', 'cces', 'X');
INSERT INTO `kuaidi100_delivery` VALUES ('117', '新邦物流', 'xinbangwuliu', 'X');
INSERT INTO `kuaidi100_delivery` VALUES ('118', '新蛋奥硕物流', 'neweggozzo', 'X');
INSERT INTO `kuaidi100_delivery` VALUES ('119', '香港邮政', 'hkpost', 'X');
INSERT INTO `kuaidi100_delivery` VALUES ('120', '圆通速递', 'yuantong', 'Y');
INSERT INTO `kuaidi100_delivery` VALUES ('121', '韵达快运', 'yunda', 'Y');
INSERT INTO `kuaidi100_delivery` VALUES ('122', '运通快递', 'yuntongkuaidi', 'Y');
INSERT INTO `kuaidi100_delivery` VALUES ('123', '邮政小包(国内),邮政包裹(国内)、邮政国内给据(国内)', 'youzhengguonei', 'Y');
INSERT INTO `kuaidi100_delivery` VALUES ('124', '邮政小包(国际),邮政包裹(国际)、邮政国内给据(国际', 'youzhengguoji', 'Y');
INSERT INTO `kuaidi100_delivery` VALUES ('125', '远成物流', 'yuanchengwuliu', 'Y');
INSERT INTO `kuaidi100_delivery` VALUES ('126', '亚风速递', 'yafengsudi', 'Y');
INSERT INTO `kuaidi100_delivery` VALUES ('127', '一邦速递', 'yibangwuliu', 'Y');
INSERT INTO `kuaidi100_delivery` VALUES ('128', '优速物流', 'youshuwuliu', 'Y');
INSERT INTO `kuaidi100_delivery` VALUES ('129', '源伟丰快递', 'yuanweifeng', 'Y');
INSERT INTO `kuaidi100_delivery` VALUES ('130', '元智捷诚', 'yuanzhijiecheng', 'Y');
INSERT INTO `kuaidi100_delivery` VALUES ('131', '越丰物流', 'yuefengwuliu', 'Y');
INSERT INTO `kuaidi100_delivery` VALUES ('132', '源安达', 'yuananda', 'Y');
INSERT INTO `kuaidi100_delivery` VALUES ('134', '原飞航', 'yuanfeihangwuliu', 'Y');
INSERT INTO `kuaidi100_delivery` VALUES ('135', '芝麻开门', 'zhimakaimen', 'Y');
INSERT INTO `kuaidi100_delivery` VALUES ('136', '银捷速递', 'yinjiesudi', 'Y');
INSERT INTO `kuaidi100_delivery` VALUES ('137', '一统飞鸿', 'yitongfeihong', 'Y');
INSERT INTO `kuaidi100_delivery` VALUES ('138', '中通速递', 'zhongtong', 'Z');
INSERT INTO `kuaidi100_delivery` VALUES ('139', '宅急送', 'zhaijisong', 'Z');
INSERT INTO `kuaidi100_delivery` VALUES ('140', '中邮物流', 'zhongyouwuliu', 'Z');
INSERT INTO `kuaidi100_delivery` VALUES ('141', '忠信达', 'zhongxinda', 'Z');
INSERT INTO `kuaidi100_delivery` VALUES ('142', '中速快件', 'zhongsukuaidi', 'Z');
INSERT INTO `kuaidi100_delivery` VALUES ('143', '芝麻开门', 'zhimakaimen', 'Z');
INSERT INTO `kuaidi100_delivery` VALUES ('144', '郑州建华', 'zhengzhoujianhua', 'Z');
INSERT INTO `kuaidi100_delivery` VALUES ('145', '中天万运', 'zhongtianwanyun', 'Z');
INSERT INTO `kuaidi100_delivery` VALUES ('146', '中通快运', 'zhongtongkuaiyun', 'Z');
-- ----------------------------
-- Table structure for tb_category
-- ----------------------------
DROP TABLE IF EXISTS `tb_category`;
CREATE TABLE `tb_category` (
`id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '类目ID',
`parent_id` bigint(20) DEFAULT NULL COMMENT '父类目ID=0时,代表的是一级的类目',
`name` varchar(50) DEFAULT NULL COMMENT '分类名称',
`status` int(1) DEFAULT '1' COMMENT '状态。可选值:1(正常),2(删除)',
`sort_order` int(4) DEFAULT NULL COMMENT '排列序号,表示同级类目的展现次序,如数值相等则按名称次序排列。取值范围:大于零的整数',
`is_parent` tinyint(1) DEFAULT '1' COMMENT '该类目是否为父类目,1为true,0为false',
`created` datetime DEFAULT NULL COMMENT '创建时间',
`updated` datetime DEFAULT NULL COMMENT '创建时间',
PRIMARY KEY (`id`),
KEY `parent_id` (`parent_id`,`status`) USING BTREE,
KEY `sort_order` (`sort_order`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=563 DEFAULT CHARSET=utf8 COMMENT='内容分类';
-- ----------------------------
-- Records of tb_category
-- ----------------------------
INSERT INTO `tb_category` VALUES ('75', '74', '大 家 电', '1', '1', '1', '2014-10-15 18:31:55', '2014-10-15 18:31:55');
INSERT INTO `tb_category` VALUES ('76', '666', '电视', '1', null, '1', '2014-10-15 18:31:55', '2014-10-15 18:31:55');
INSERT INTO `tb_category` VALUES ('77', '75', '空调', '1', '2', '0', '2014-10-15 18:31:55', '2014-10-15 18:31:55');
INSERT INTO `tb_category` VALUES ('78', '75', '冰箱', '1', '3', '0', '2014-10-15 18:31:55', '2014-10-15 18:31:55');
INSERT INTO `tb_category` VALUES ('79', '75', '洗衣机', '1', '4', '0', '2014-10-15 18:31:55', '2014-10-15 18:31:55');
INSERT INTO `tb_category` VALUES ('80', '75', '家庭影院', '1', '5', '0', '2014-10-15 18:31:55', '2014-10-15 18:31:55');
INSERT INTO `tb_category` VALUES ('183', '171', '声卡/扩展卡', '1', '12', '0', '2014-10-15 18:31:55', '2014-10-15 18:31:55');
INSERT INTO `tb_category` VALUES ('184', '171', '装机配件', '1', '13', '0', '2014-10-15 18:31:55', '2014-10-15 18:31:55');
INSERT INTO `tb_category` VALUES ('463', '456', '净化器', '1', '7', '0', '2014-10-15 18:31:55', '2014-10-15 18:31:55');
INSERT INTO `tb_category` VALUES ('464', '456', '电源', '1', '8', '0', '2014-10-15 18:31:55', '2014-10-15 18:31:55');
INSERT INTO `tb_category` VALUES ('465', '456', '冰箱', '1', '9', '0', '2014-10-15 18:31:55', '2014-10-15 18:31:55');
INSERT INTO `tb_category` VALUES ('559', '558', '手机通讯', '1', '1', '1', '2014-10-15 18:31:55', '2014-10-15 18:31:55');
INSERT INTO `tb_category` VALUES ('560', '559', '手机', '1', '1', '0', '2014-10-15 18:31:55', '2014-10-15 18:31:55');
INSERT INTO `tb_category` VALUES ('561', '559', '对讲机', '1', '2', '0', '2014-10-15 18:31:55', '2014-10-15 18:31:55');
INSERT INTO `tb_category` VALUES ('562', '558', '运营商', '1', '2', '1', '2014-10-15 18:31:55', '2014-10-15 18:31:55');
-- ----------------------------
-- Table structure for tb_item
-- ----------------------------
DROP TABLE IF EXISTS `tb_item`;
CREATE TABLE `tb_item` (
`id` bigint(20) NOT NULL COMMENT '商品id,同时也是商品编号',
`title` varchar(100) NOT NULL COMMENT '商品标题',
`sell_point` varchar(500) DEFAULT NULL COMMENT '商品卖点',
`price` bigint(20) NOT NULL COMMENT '商品价格,单位为:分',
`num` int(10) NOT NULL COMMENT '库存数量',
`barcode` varchar(30) DEFAULT NULL COMMENT '商品条形码',
`image` varchar(500) DEFAULT NULL COMMENT '商品图片',
`cid` bigint(10) NOT NULL COMMENT '所属类目,叶子类目',
`status` tinyint(4) NOT NULL DEFAULT '1' COMMENT '商品状态,1-正常,2-下架,3-删除',
`created` datetime NOT NULL COMMENT '创建时间',
`updated` datetime NOT NULL COMMENT '更新时间',
PRIMARY KEY (`id`),
KEY `cid` (`cid`),
KEY `status` (`status`),
KEY `updated` (`updated`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='商品表';
-- ----------------------------
-- Records of tb_item
-- ----------------------------
INSERT INTO `tb_item` VALUES ('5570', 'new8- 三星 W999 黑色 电信3G手机 双卡双待双通', '下单送12000毫安移动电源!双3.5英寸魔焕炫屏,以非凡视野纵观天下时局,尊崇翻盖设计,张弛中,尽显从容气度!', '11001111', '99', '', '', '560', '1', '2018-03-29 00:00:00', '2018-04-09 00:00:00');
INSERT INTO `tb_item` VALUES ('10966', 'new8- 三星 W999 黑色 电信3G手机 双卡双待双通', '下单送12000毫安移动电源!双3.5英寸魔焕炫屏,以非凡视野纵观天下时局,尊崇翻盖设计,张弛中,尽显从容气度!', '11001111', '99999', '', '', '560', '1', '2018-04-01 00:00:00', '2018-04-04 00:00:00');
INSERT INTO `tb_item` VALUES ('14910', 'new8- 三星 W999 黑色 电信3G手机 双卡双待双通', '下单送12000毫安移动电源!双3.5英寸魔焕炫屏,以非凡视野纵观天下时局,尊崇翻盖设计,张弛中,尽显从容气度!', '1100', '99999', '', '', '560', '1', '2018-03-26 00:00:00', '2018-04-04 00:00:00');
INSERT INTO `tb_item` VALUES ('18521', 'new8- 三星 W999 黑色 电信3G手机 双卡双待双通', '下单送12000毫安移动电源!双3.5英寸魔焕炫屏,以非凡视野纵观天下时局,尊崇翻盖设计,张弛中,尽显从容气度!', '11001111', '99999', '', '', '560', '1', '2018-03-26 00:00:00', '2018-03-26 00:00:00');
INSERT INTO `tb_item` VALUES ('26663', '111', '1111', '11', '11213232', '', '', '560', '1', '2018-04-18 00:00:00', '2018-04-18 00:00:00');
INSERT INTO `tb_item` VALUES ('34425', 'new8 三星 W999 黑色 电信3G手机 双卡双待双通', '下单送12000毫安移动电源!双3.5英寸魔焕炫屏,以非凡视野纵观天下时局,尊崇翻盖设计,张弛中,尽显从容气度!', '11001111', '99999', '', '', '76', '1', '2018-04-02 00:00:00', '2018-04-02 00:00:00');
INSERT INTO `tb_item` VALUES ('35719', 'new8- 三星 W999 黑色 电信3G手机 双卡双待双通', '下单送12000毫安移动电源!双3.5英寸魔焕炫屏,以非凡视野纵观天下时局,尊崇翻盖设计,张弛中,尽显从容气度!', '11001111', '9', '', '', '560', '1', '2018-04-18 00:00:00', '2018-04-18 00:00:00');
INSERT INTO `tb_item` VALUES ('41291', 'new8- 三星 W999 黑色 电信3G手机 双卡双待双通', '下单送12000毫安移动电源!双3.5英寸魔焕炫屏,以非凡视野纵观天下时局,尊崇翻盖设计,张弛中,尽显从容气度!', '11001111', '99999', '', '', '560', '1', '2018-03-26 00:00:00', '2018-03-26 00:00:00');
INSERT INTO `tb_item` VALUES ('49404', 'new8- 三星 W999 黑色 电信3G手机 双卡双待双通', '下单送12000毫安移动电源!双3.5英寸魔焕炫屏,以非凡视野纵观天下时局,尊崇翻盖设计,张弛中,尽显从容气度!', '11001111', '99999', '', '', '560', '1', '2018-03-26 00:00:00', '2018-03-26 00:00:00');
INSERT INTO `tb_item` VALUES ('59472', 'new8- 三星 W999 黑色 电信3G手机 双卡双待双通', '下单送12000毫安移动电源!双3.5英寸魔焕炫屏,以非凡视野纵观天下时局,尊崇翻盖设计,张弛中,尽显从容气度!', '11001111', '99999', '', '', '560', '1', '2018-03-26 00:00:00', '2018-03-26 00:00:00');
INSERT INTO `tb_item` VALUES ('61284', 'new8- 三星 W999 黑色 电信3G手机 双卡双待双通', '下单送12000毫安移动电源!双3.5英寸魔焕炫屏,以非凡视野纵观天下时局,尊崇翻盖设计,张弛中,尽显从容气度!', '11001111', '9', '', '', '76', '1', '2018-03-26 00:00:00', '2018-03-26 00:00:00');
INSERT INTO `tb_item` VALUES ('68147', 'new8- 三星 W999 黑色 电信3G手机 双卡双待双通', '下单送12000毫安移动电源!双3.5英寸魔焕炫屏,以非凡视野纵观天下时局,尊崇翻盖设计,张弛中,尽显从容气度!', '1100', '99999', '', '', '559', '1', '2018-03-26 00:00:00', '2018-04-02 00:00:00');
INSERT INTO `tb_item` VALUES ('70045', 'new8- 三星 W999 黑色 电信3G手机 双卡双待双通', '下单送12000毫安移动电源!双3.5英寸魔焕炫屏,以非凡视野纵观天下时局,尊崇翻盖设计,张弛中,尽显从容气度!', '11001111', '99999', '', '', '560', '1', '2018-03-26 00:00:00', '2018-03-26 00:00:00');
INSERT INTO `tb_item` VALUES ('78296', 'new8- 三星 W999 黑色 电信3G手机', '下单送12000毫安移动电源!双3.5英寸魔焕炫屏,以非凡视野纵观天下时局,尊崇翻盖设计,张弛中,尽显从容气度!', '11001111', '99999', '', '', '75', '1', '2018-04-02 00:00:00', '2018-04-02 00:00:00');
INSERT INTO `tb_item` VALUES ('86797', 'new8- 三星 W999 黑色 电信3G手机 双卡双待双通', '下单送12000毫安移动电源!双3.5英寸魔焕炫屏,以非凡视野纵观天下时局,尊崇翻盖设计,张弛中,尽显从容气度!', '110011', '99999333', '', '', '78', '1', '2018-04-02 00:00:00', '2018-04-02 00:00:00');
INSERT INTO `tb_item` VALUES ('88684', '12121', '21212121', '21222', '2122121', '', '', '0', '1', '2018-04-18 00:00:00', '2018-04-18 00:00:00');
INSERT INTO `tb_item` VALUES ('536563', 'new2 - 阿尔卡特 (OT-927) 炭黑 联通3G手机 双卡双待', '清仓!仅北京,武汉仓有货!', '29900000', '99999', '', 'http://image.taotao.com/jd/4ef8861cf6854de9889f3db9b24dc371.jpg', '560', '1', '2015-03-08 21:33:18', '2015-04-11 20:38:38');
INSERT INTO `tb_item` VALUES ('562379', 'new8- 三星 W999 黑色 电信3G手机 双卡双待双通', '下单送12000毫安移动电源!双3.5英寸魔焕炫屏,以非凡视野纵观天下时局,尊崇翻盖设计,张弛中,尽显从容气度!', '1100', '99999', '', 'http://image.taotao.com/jd/d2ac340e728d4c6181e763e772a9944a.jpg', '560', '1', '2015-03-08 21:27:54', '2015-04-12 17:10:43');
INSERT INTO `tb_item` VALUES ('605616', '阿尔卡特 (OT-979) 冰川白 联通3G手机', '清仓!仅上海仓有货!', '30900', '99999', null, 'http://image.taotao.com/jd/a69d0d09a1a04164969c2d0369659b1a.jpg', '560', '1', '2015-03-08 21:33:18', '2015-03-08 21:33:18');
INSERT INTO `tb_item` VALUES ('635906', '阿尔卡特 (OT-927) 单电版 炭黑 联通3G手机 双卡双待', '清仓!仅北京,武汉仓有货!', '24900', '99999', null, 'http://image.taotao.com/jd/9c1fcdf2bf20450788195c707da00a87.jpg', '560', '1', '2015-03-08 21:33:18', '2015-03-08 21:33:18');
INSERT INTO `tb_item` VALUES ('679532', '阿尔卡特 (OT-986+) 玫红 AK47 加强版 联通3G手机', '仅上海,广州,沈阳仓有货!预购从速!', '49900', '9', null, 'http://image.taotao.com/jd/65e2007d41dc4e3cb308833a1a910f8d.jpg', '560', '1', '2015-03-08 21:32:31', '2015-03-08 21:32:31');
INSERT INTO `tb_item` VALUES ('679533', '阿尔卡特 (OT-986+) 曜石黑 AK47 加强版 联通3G手机', '少量库存,抢完即止!<a target=\"blank\" href=\"http://sale.jd.com/act/bxYeI1346g.html?erpad_source=erpad\">“领券更优惠!”</a>', '49900', '2', null, 'http://image.taotao.com/jd/b3251c85da8e4302b7389f3371dd0a68.jpg', '560', '1', '2015-03-08 21:31:36', '2015-03-08 21:31:36');
INSERT INTO `tb_item` VALUES ('1199728', '诺基亚(NOKIA) Lumia 930 (RM-1087) 白色 联通3G手机', '诺记年度旗舰,高通骁龙2.2GHz四核处理器,2G+32G,5英寸FHD屏!', '269900', '99999', null, 'http://image.taotao.com/jd/0a3490869f094e2e86ea63f26ddf17df.jpg', '560', '1', '2015-03-08 21:27:54', '2015-03-08 21:27:54');
INSERT INTO `tb_item` VALUES ('1199729', '诺基亚(NOKIA) Lumia 930 (RM-1087) 橙色 联通3G手机', '诺基亚年度旗舰,高通骁龙2.2GHz四核处理器,2G+32G,5英寸FHD屏!', '269900', '99999', null, 'http://image.taotao.com/jd/731ae4d757f8427983f8c4517b53d452.jpg', '560', '1', '2015-03-08 21:27:54', '2015-03-08 21:27:54');
INSERT INTO `tb_item` VALUES ('1199785', 'IUNI U3 32GB 风荷绿 移动联通4G手机 双卡双待', '2K(2560×1440)分辨率,538PPI,3GB RAM+32GB ROM!与苹果6相同的弧面水滴屏设计!铝镁合金前壳设计!', '200000', '99999', null, 'http://image.taotao.com/jd/ec2fb1ccd4c74c6485232d16924f0dfe.jpg', '560', '1', '2015-03-08 21:28:09', '2015-03-08 21:28:09');
INSERT INTO `tb_item` VALUES ('1199791', 'IUNI U3 32GB 晴雪白 移动联通4G手机 双卡双待', '2K(2560×1440)分辨率,538PPI,3GB RAM+32GB ROM!与苹果6相同的弧面水滴屏设计!铝镁合金前壳设计!', '200000', '99999', null, 'http://image.taotao.com/jd/976f70fb9b0449baac29f0937af7a603.jpg', '560', '1', '2015-03-08 21:28:01', '2015-03-08 21:28:01');
INSERT INTO `tb_item` VALUES ('1199796', 'IUNI U3 32GB 墨池黑 移动联通4G手机 双卡双待', '2K(2560×1440)分辨率,538PPI,3GB RAM+32GB ROM!与苹果6相同的弧面水滴屏设计!铝镁合金前壳设计!', '200000', '99999', null, 'http://image.taotao.com/jd/8854b1116ac84e70b1d9b578db44e549.jpg', '560', '1', '2015-03-08 21:28:09', '2015-03-08 21:28:09');
INSERT INTO `tb_item` VALUES ('1203874', '海信(Hisense)VIDAA MAX 100英寸 海信激光影院 (银色)', '土豪电视,就是这么任性!<a target=\"blank\" href=\"http://sale.jd.com/act/rQghpFoT7tBiJ.html\">海信情人节献礼,45年不变的誓言,点此坠入爱河~</a>', '5999900', '99999', null, 'http://image.taotao.com/jd/307528597c1549f3aeda68302436e6a2.jpg', '76', '1', '2018-04-18 00:00:00', '2018-04-18 00:00:00');
INSERT INTO `tb_item` VALUES ('1204376', '金立 S5.1 (GN9005) 白色 移动4G手机', '', '199900', '99', null, 'http://image.taotao.com/jd/2ba693ec99b042f7be8074f7d13df780.jpg', '560', '1', '2015-03-08 21:28:30', '2015-03-08 21:28:30');
INSERT INTO `tb_item` VALUES ('1204688', 'LG 40UB8000 40英寸4K超高清智能LED液晶电视', '超窄边框,够清晰才是真4K!', '349900', '99999', null, 'http://image.taotao.com/jd/a3e1dda6ff88405abe732246365ba240.jpg', '76', '1', '2015-03-08 21:28:18', '2015-03-08 21:28:18');
INSERT INTO `tb_item` VALUES ('1205256', '金立 (ELIFE) S5.1 (GN9005) 黑色 移动4G手机', '', '199900', '99999', null, 'http://image.taotao.com/jd/eaab847f491d4469bb3d381378fb27ef.jpg', '560', '1', '2015-03-08 21:29:19', '2015-03-08 21:29:19');
INSERT INTO `tb_item` VALUES ('1205405', '酷派 大神 F1青春版(8297D)智尚白 移动3G手机 双卡双待', '五英寸HD大屏!八核极速体验!超值性价比!', '59900', '99999', null, 'http://image.taotao.com/jd/917474a73a114f7381707c638610f3bc.jpg', '560', '1', '2015-03-08 21:27:42', '2015-03-08 21:27:42');
INSERT INTO `tb_item` VALUES ('1206540', '飞利浦(PHILIPS)65PFL6W40/T3 65英寸 3D 4K超高清智能电视(黑色)', '双边流光溢彩,超大视野屏幕,3D+4K绚丽效果,专业音响技术,打造奢华家居体验!<a href=\'http://sq.jd.com/zM2aZs\' target=\'_blank\'>飞利浦健康舒适蓝,预约参加抽奖赢电视!</a>', '1699900', '99999', null, 'http://image.taotao.com/jd/4b397c256c4e4107b56fecf9ca675fe1.jpg', '76', '1', '2015-03-08 21:28:18', '2015-03-08 21:28:18');
INSERT INTO `tb_item` VALUES ('1206542', '飞利浦(PHILIPS)55PDL660/T3 55英寸 卡拉OK 3D全高清LED智能电视', '唱响心中经典,可以在线K歌的智能电视!下单后一周内送货,订购请咨询客服!<a href=\'http://sq.jd.com/zM2aZs\' target=\'_blank\'>飞利浦健康舒适蓝,预约参加抽奖赢电视!</a>', '799900', '99999', null, 'http://image.taotao.com/jd/87201fa7a5e745b982d033e9c69b8348.jpg', '76', '1', '2015-03-08 21:29:12', '2015-03-08 21:29:12');
INSERT INTO `tb_item` VALUES ('1206543', '飞利浦(PHILIPS)65PFL5W40/T3 65英寸 3D全高清LED智能电视(黑色)', '双边流光溢彩,超大视野屏幕,3D全高清显示,专业音响技术,打造奢华家居体验!<a href=\'http://sq.jd.com/zM2aZs\' target=\'_blank\'>飞利浦健康舒适蓝,预约参加抽奖赢电视!</a>', '999900', '99999', null, 'http://image.taotao.com/jd/66f0d69abd9547fcb425139cabd5fd18.jpg', '76', '1', '2015-03-08 21:28:00', '2015-03-08 21:28:00');
INSERT INTO `tb_item` VALUES ('1208548', '酷派 8017 炫动黑 移动4G手机', '4.0高清大屏,四核1.2GHz,200万摄像头!', '39900', '99999', null, 'http://image.taotao.com/jd/f9f9c6e6b06445d198a6363ca81c68db.jpg', '560', '1', '2015-03-08 21:29:11', '2015-03-08 21:29:11');
INSERT INTO `tb_item` VALUES ('1208757', '华为 G521 白色 移动4G手机', '4.5英寸屏,1.2GHz 四核处理器,4GB机身内存,500万像素!<a target=\"blank\" href=\"http://sale.jd.com/act/ZovfiDKYagBQJ.html\">更多推荐请点击!</a>', '48900', '99999', null, '', '560', '1', '2015-03-08 21:28:01', '2018-04-04 00:00:00');
INSERT INTO `tb_item` VALUES ('1208760', '华为 G521 黑色 移动4G手机', '4.5英寸屏,1.2GHz 四核处理器,4GB机身内存,500万像素!<a target=\"blank\" href=\"http://sale.jd.com/act/ZovfiDKYagBQJ.html\">更多推荐请点击!</a>', '49900', '99999', null, 'http://image.taotao.com/jd/b82c7125826b448fa7a288cdb3446ab1.jpg', '560', '1', '2015-03-08 21:28:01', '2015-03-08 21:28:01');
INSERT INTO `tb_item` VALUES ('1209084', 'TCL D55A710 55英寸海量爱奇艺正版视频内置wifi安卓智能云液晶电视(金色)', '【0元献礼】1秒看大片,超快感神器!爱奇艺VIP,手机直推,畅爽新鲜。咚咚咨询TCL客服,还有惊喜!<a target=\"blank\" href=\"http://sale.jd.com/act/6MqRytIYKfn.html\">【0元白条试用,1001个拜年计划】</a>', '399900', '99999', null, 'http://image.taotao.com/jd/1a2a8e1a58bb410fbc64c8b2b7127115.jpg', '76', '1', '2015-03-08 21:27:35', '2015-03-08 21:27:35');
INSERT INTO `tb_item` VALUES ('1209085', 'TCL D42A710 42英寸 海量爱奇艺正版视频 超窄边框 内置wifi 安卓4.0 智能云液晶电视(金色)', '【0元献礼】1秒看大片,超快感神器!爱奇艺VIP,手机直推,畅爽新鲜。泰坦金色时尚设计。<a target=\"blank\" href=\"http://sale.jd.com/act/6MqRytIYKfn.html\">【0元白条试用,1001个拜年计划】</a>', '239900', '99999', null, 'http://image.taotao.com/jd/0c2eddc034314d049113ab0f702a12a7.jpg', '76', '1', '2015-03-08 21:27:35', '2015-03-08 21:27:35');
INSERT INTO `tb_item` VALUES ('1209087', 'TCL D50A710 50英寸海量爱奇艺正版视频内置wifi安卓智能云液晶电视(珠光黑)', '【0元献礼】1秒看大片,超快感神器!爱奇艺VIP,手机直推,畅爽新鲜。珠光黑色典雅外观。<a target=\"blank\" href=\"http://sale.jd.com/act/6MqRytIYKfn.html\">【0元白条试用,1001个拜年计划】</a>', '329900', '99999', null, 'http://image.taotao.com/jd/7aac0dffa51d47ffb0ae127d8569656a.jpg', '76', '1', '2015-03-08 21:27:35', '2015-03-08 21:27:35');
INSERT INTO `tb_item` VALUES ('1209642', '【套装版】魅族 MX4 16GB 灰色 移动4G手机', '送保护套+钢化玻璃贴膜!<a target=\"blank\" href=\"http://item.jd.com/1279804.html\">MX4 Pro,魅族旗舰,调价300元,仅售2199元,手慢后悔!</a>', '189900', '99999', null, 'http://image.taotao.com/jd/757155cc481447a1840384313369ab5e.jpg', '560', '1', '2015-03-08 21:27:37', '2015-03-08 21:27:37');
INSERT INTO `tb_item` VALUES ('1209645', '【套装版】魅族 MX4 16GB 灰色 联通4G手机', '送保护套+钢化玻璃贴膜!<a target=\"blank\" href=\"http://item.jd.com/1279453.html\">MX4 Pro,魅族旗舰,调价300元,仅售2199元,手慢后悔!</a>', '189900', '99999', null, 'http://image.taotao.com/jd/b314495f29394e4aba5d15a1ab1bcebd.jpg', '560', '1', '2015-03-08 21:27:42', '2015-03-08 21:27:42');
INSERT INTO `tb_item` VALUES ('1209980', '松下(Panasonic)TH-40A408C 40英寸液晶电视 黑色', '【质量保障】经典机型,3月推出的超值单品,切莫错失良机!', '269900', '99999', null, 'http://image.taotao.com/jd/2017ae54b3734cadbae983511eb5bc3c.jpg', '76', '1', '2015-03-08 21:28:08', '2015-03-08 21:28:08');
INSERT INTO `tb_item` VALUES ('1209986', '松下(Panasonic)TH-42AS650C 42英寸3D安卓智能液晶电视 黑色', '3D智能,海量应用,简约大气,质感非凡!', '499900', '99999', null, 'http://image.taotao.com/jd/683c9ad3c7894fa2b00a17aa59912317.jpg', '76', '1', '2015-03-08 21:28:18', '2015-03-08 21:28:18');
INSERT INTO `tb_item` VALUES ('1209987', '松下(Panasonic)TH-50A403C 50英寸液晶电视 黑色', '经典造型,简约大气,质感非凡!', '549900', '99999', null, 'http://image.taotao.com/jd/dd2f127be4d44c9097897dc8f4471de9.jpg', '76', '1', '2015-03-08 21:28:00', '2015-03-08 21:28:00');
INSERT INTO `tb_item` VALUES ('1209989', '松下(Panasonic)TH-48AS650C 48英寸3D安卓智能液晶电视 黑色', '智能精品,高端首选!', '599900', '99999', null, 'http://image.taotao.com/jd/122f609a71eb41818bc0a21440d29749.jpg', '76', '1', '2015-03-08 21:28:08', '2015-03-08 21:28:08');
INSERT INTO `tb_item` VALUES ('1209990', '松下(Panasonic)TH-55AS650C 55英寸3D安卓智能液晶电视 黑色', '时尚高端,海量应用,一如既往的好品质!', '849900', '99999', null, 'http://image.taotao.com/jd/4eaa529e353c451d9925453638d8fe3a.jpg', '76', '1', '2015-03-08 21:28:42', '2015-03-08 21:28:42');
INSERT INTO `tb_item` VALUES ('1210954', '三星(SAMSUNG)UA55HU7000J 55英寸 4K超高清智能LED电视 黑色', '4K极清首选三星!在京东购买4K电视的用户有35%选择三星4K!一屏双享 四核处理器<a target=\"blank\" href=\"http://sale.jd.com/act/4V6DHtgrMZm.html\">优惠多多,点我!</a>', '949900', '99999', null, 'http://image.taotao.com/jd/55c722ffe1264e8dac7573ac45fff963.jpg', '76', '1', '2015-03-08 21:28:08', '2015-03-08 21:28:08');
INSERT INTO `tb_item` VALUES ('1211624', '联想 黄金斗士A8(A806) 深邃黑 联通4G手机', '联通4G新品,八核1.7G,2GRAM +16GROM,1300万像素摄像头!', '89800', '99999', null, 'http://image.taotao.com/jd/b8a787d9fdcd4b20987df32ffbaf6473.jpg', '560', '1', '2015-03-08 21:28:09', '2015-03-08 21:28:09');
INSERT INTO `tb_item` VALUES ('1212569', '金立 (ELIFE) S5.1 (GN9005) 蓝色 移动4G手机', '', '199900', '99999', null, 'http://image.taotao.com/jd/5462154e09bd41848e5016e615d903dd.jpg', '560', '1', '2015-03-08 21:29:39', '2015-03-08 21:29:39');
INSERT INTO `tb_item` VALUES ('1212571', '金立 (ELIFE) S5.1 (GN9005) 粉色 移动4G手机', '', '199900', '99999', null, 'http://image.taotao.com/jd/d0f8810f47d54408a1bfa43103f8b722.jpg', '560', '1', '2015-03-08 21:30:20', '2015-03-08 21:30:20');
INSERT INTO `tb_item` VALUES ('1213603', '中国移动 M812c 珠光银 移动4G手机', '特价促销!中国移动全新4G手机,耀目来袭,移动4G网络优秀伴侣!', '109900', '99999', null, 'http://image.taotao.com/jd/8e7aa12ed98b4d4494818e71d7631331.jpg', '560', '1', '2015-03-08 21:29:11', '2015-03-08 21:29:11');
INSERT INTO `tb_item` VALUES ('1214036', 'OPPO R3(R7005)银色 电信4G手机 双卡双待双通', '送皮套+春促礼盒+移动电源!支持电信4G!至薄有型,独具锋范!', '229900', '99999', null, 'http://image.taotao.com/jd/8cf4d4e0504445dfbbd7efaa81202844.jpg', '560', '1', '2015-03-08 21:28:44', '2015-03-08 21:28:44');
INSERT INTO `tb_item` VALUES ('1214675', '华为Ascend P7(P7-L09) 粉 电信4G手机 双卡双待双通', '情人节神器!下单送移动电源+蓝牙耳机+配件!女神必备!华为年度重磅旗舰,创新工艺设计,极致纤薄!', '238800', '99999', null, 'http://image.taotao.com/jd/1187439a405640dca8adb2960c3ea657.jpg', '560', '1', '2015-03-08 21:27:54', '2015-03-08 21:27:54');
INSERT INTO `tb_item` VALUES ('1217493', '苹果(Apple)iPhone 6 (A1589) 16GB 金色 移动4G手机', '<a target=\"blank\" href=\"http://sale.jd.com/act/nAqiWgU34frQolt.html\">关注iPhone6.jd.com</a>', '508800', '99999', null, 'http://image.taotao.com/jd/0fa8767e77804ac08404fe2ea811a2e4.jpg', '560', '1', '2015-03-08 21:27:37', '2015-03-08 21:27:37');
INSERT INTO `tb_item` VALUES ('1217494', '苹果(Apple)iPhone 6 (A1589) 16GB 深空灰色 移动4G手机', '<a target=\"blank\" href=\"http://sale.jd.com/act/nAqiWgU34frQolt.html\">关注iPhone6.jd.com</a>', '499900', '99999', null, 'http://image.taotao.com/jd/8e2c2fd559e64ab3a21e2043a54fd1be.jpg', '560', '1', '2015-03-08 21:27:37', '2015-03-08 21:27:37');
INSERT INTO `tb_item` VALUES ('1217499', '苹果(Apple)iPhone 6 (A1586) 16GB 金色 移动联通电信4G手机', '<a target=\"blank\" href=\"http://sale.jd.com/act/nAqiWgU34frQolt.html\">关注iPhone6.jd.com</a>', '528800', '99999', null, 'http://image.taotao.com/jd/0671f2ed74ea4d55868de4b33a6d3737.jpg', '560', '1', '2015-03-08 21:27:37', '2015-03-08 21:27:37');
INSERT INTO `tb_item` VALUES ('1217500', '苹果(Apple)iPhone 6 (A1586) 16GB 深空灰色 移动联通电信4G手机', '<a target=\"blank\" href=\"http://sale.jd.com/act/nAqiWgU34frQolt.html\">关注iPhone6.jd.com</a>', '528800', '99999', null, 'http://image.taotao.com/jd/b50a2268e1994001adce9a4fa3f538b2.jpg', '560', '1', '2015-03-08 21:27:37', '2015-03-08 21:27:37');
INSERT INTO `tb_item` VALUES ('1217501', '苹果(Apple)iPhone 6 (A1586) 16GB 银色 移动联通电信4G手机', '<a target=\"blank\" href=\"http://sale.jd.com/act/nAqiWgU34frQolt.html\">关注iPhone6.jd.com</a>', '528800', '99999', null, 'http://image.taotao.com/jd/60cb86e3a3bc43248c9bba23f5b90907.jpg', '560', '1', '2015-03-08 21:27:37', '2015-03-08 21:27:37');
INSERT INTO `tb_item` VALUES ('1217508', '苹果(Apple)iPhone 6 (A1586) 64GB 金色 移动联通电信4G手机', '<a target=\"blank\" href=\"http://sale.jd.com/act/nAqiWgU34frQolt.html\">关注iPhone6.jd.com</a>', '598800', '99999', null, 'http://image.taotao.com/jd/6af2e089a8fc45cf91d4aea339bb3ae4.jpg', '560', '1', '2015-03-08 21:27:37', '2015-03-08 21:27:37');
INSERT INTO `tb_item` VALUES ('1217509', '苹果(Apple)iPhone 6 (A1586) 64GB 深空灰色 移动联通电信4G手机', '<a target=\"blank\" href=\"http://sale.jd.com/act/nAqiWgU34frQolt.html\">关注iPhone6.jd.com</a>', '598800', '99999', null, 'http://image.taotao.com/jd/8c2fcc942ae949cfb20456e2633a159b.jpg', '560', '1', '2015-03-08 21:27:37', '2015-03-08 21:27:37');
INSERT INTO `tb_item` VALUES ('1217510', '苹果(Apple)iPhone 6 (A1586) 64GB 银色 移动联通电信4G手机', '<a target=\"blank\" href=\"http://sale.jd.com/act/nAqiWgU34frQolt.html\">关注iPhone6.jd.com</a>', '598800', '99999', null, 'http://image.taotao.com/jd/d49eb606870546569be8e9d1b309a26c.jpg', '560', '1', '2015-03-08 21:27:37', '2015-03-08 21:27:37');
INSERT INTO `tb_item` VALUES ('1217516', '苹果(Apple)iPhone 6 (A1586) 128GB 金色 移动联通电信4G手机', '<a target=\"blank\" href=\"http://sale.jd.com/act/nAqiWgU34frQolt.html\">关注iPhone6.jd.com</a>', '648800', '99999', null, 'http://image.taotao.com/jd/f1081805a3314298943425bf05af8e36.jpg', '560', '1', '2015-03-08 21:27:42', '2015-03-08 21:27:42');
INSERT INTO `tb_item` VALUES ('1217517', '苹果(Apple)iPhone 6 (A1586) 128GB 深空灰色 移动联通电信4G手机', '<a target=\"blank\" href=\"http://sale.jd.com/act/nAqiWgU34frQolt.html\">关注iPhone6.jd.com</a>', '648800', '99999', null, 'http://image.taotao.com/jd/55b2058ada714acfab0ac139db52e505.jpg', '560', '1', '2015-03-08 21:27:49', '2015-03-08 21:27:49');
INSERT INTO `tb_item` VALUES ('1217518', '苹果(Apple)iPhone 6 (A1586) 128GB 银色 移动联通电信4G手机', '<a href=\'http://sale.jd.com/act/nAqiWgU34frQolt.html\' target=\'_blank\'>关注iPhone6.jd.com</a>', '648800', '99999', null, 'http://image.taotao.com/jd/2430ecd761c84bca8de9d0f07dc55401.jpg', '560', '1', '2015-03-08 21:27:54', '2015-03-08 21:27:54');
INSERT INTO `tb_item` VALUES ('1217524', '苹果(Apple)iPhone 6 Plus (A1524) 16GB 金色 移动联通电信4G手机', '<a target=\"blank\" href=\"http://sale.jd.com/act/nAqiWgU34frQolt.html\">关注iPhone6.jd.com</a>', '608800', '99999', null, 'http://image.taotao.com/jd/fda9c5e38eb3494fbac53fa8a3a1b17c.jpg', '560', '1', '2015-03-08 21:27:37', '2015-03-08 21:27:37');
INSERT INTO `tb_item` VALUES ('1217525', '苹果(Apple)iPhone 6 Plus (A1524) 16GB 深空灰色 移动联通电信4G手机', '<a target=\"blank\" href=\"http://sale.jd.com/act/nAqiWgU34frQolt.html\">关注iPhone6.jd.com</a>', '588800', '99999', null, 'http://image.taotao.com/jd/4b179ec047ea4ac9bbf315b23598bc68.jpg', '560', '1', '2015-03-08 21:27:37', '2015-03-08 21:27:37');
INSERT INTO `tb_item` VALUES ('1217526', '苹果(Apple)iPhone 6 Plus (A1524) 16GB 银色 移动联通电信4G手机', '<a target=\"blank\" href=\"http://sale.jd.com/act/nAqiWgU34frQolt.html\">关注iPhone6.jd.com</a>', '598800', '99999', null, 'http://image.taotao.com/jd/dff745479b8447e998e9590c24c9d272.jpg', '560', '1', '2015-03-08 21:27:37', '2015-03-08 21:27:37');
INSERT INTO `tb_item` VALUES ('1217533', '苹果(Apple)iPhone 6 Plus (A1524) 64GB 深空灰色 移动联通电信4G手机', '<a target=\"blank\" href=\"http://sale.jd.com/act/nAqiWgU34frQolt.html\">关注iPhone6.jd.com</a>', '678800', '99999', null, 'http://image.taotao.com/jd/61825b462fd949ffaf719cbba465334d.jpg', '560', '1', '2015-03-08 21:27:37', '2015-03-08 21:27:37');
INSERT INTO `tb_item` VALUES ('1217534', '苹果(Apple)iPhone 6 Plus (A1524) 64GB 银色 移动联通电信4G手机', '<a target=\"blank\" href=\"http://sale.jd.com/act/nAqiWgU34frQolt.html\">关注iPhone6.jd.com</a>', '678800', '99999', null, 'http://image.taotao.com/jd/5720def2e577466b987f39987911b3c1.jpg', '560', '1', '2015-03-08 21:27:37', '2015-03-08 21:27:37');
INSERT INTO `tb_item` VALUES ('1217539', '苹果(Apple)iPhone 6 Plus (A1524) 128GB 金色 移动联通电信4G手机', '<a target=\"blank\" href=\"http://sale.jd.com/act/nAqiWgU34frQolt.html\">关注iPhone6.jd.com</a>', '738800', '99999', null, 'http://image.taotao.com/jd/1dc5956855be4ab793fbdd937bedcbe4.jpg', '560', '1', '2015-03-08 21:27:37', '2015-03-08 21:27:37');
INSERT INTO `tb_item` VALUES ('1217540', '苹果(Apple)iPhone 6 Plus (A1524) 128GB 深空灰色 移动联通电信4G手机', '<a href=\'http://sale.jd.com/act/nAqiWgU34frQolt.html\' target=\'_blank\'>关注iPhone6.jd.com</a>', '738800', '99999', null, 'http://image.taotao.com/jd/7a682e52f09b48439aaccb6de193afff.jpg', '560', '1', '2015-03-08 21:27:42', '2015-03-08 21:27:42');
INSERT INTO `tb_item` VALUES ('1217541', '苹果(Apple)iPhone 6 Plus (A1524) 128GB 银色 移动联通电信4G手机', '<a href=\'http://sale.jd.com/act/nAqiWgU34frQolt.html\' target=\'_blank\'>关注iPhone6.jd.com</a>', '738800', '99999', null, 'http://image.taotao.com/jd/bfb2bee9c43c4d958a5a3be34a3b423e.jpg', '560', '1', '2015-03-08 21:27:42', '2015-03-08 21:27:42');
INSERT INTO `tb_item` VALUES ('1218356', '联想 黄金斗士S8 (S898t+) 16G 钛金灰 移动3G手机 双卡双待', '八核神器!超薄外观!超高好评!2GB RAM+16GB ROM!', '78900', '99999', null, 'http://image.taotao.com/jd/c4b21764f6f04522bedc82cbe92920ac.jpg', '560', '1', '2015-03-08 21:27:49', '2015-03-08 21:27:49');
INSERT INTO `tb_item` VALUES ('1218872', 'TCL (P306C) 珍珠白 电信3G手机 双卡双待', '特价抢购!入门电信智能手机!5英寸大屏,高通双核1.2GHz处理器,Android 4.3操作系统!', '37900', '99999', null, 'http://image.taotao.com/jd/c747fe51bcd04cf1b3fc56ab5cf72d77.jpg', '560', '1', '2015-03-08 21:28:30', '2015-03-08 21:28:30');
INSERT INTO `tb_item` VALUES ('1219033', '【移动购机赠费】苹果(APPLE)iPhone 6 (A1589) 16GB 金色 移动4G手机', '移动用户独享,不换号,买手机返话费,敬请参阅以下页面介绍~<a target=\"blank\" href=\"http://sale.jd.com/act/4SfT3WscrkpwRZ2V.html\"><font color=blue>更多商品速度围观,快来点我,点我</font></a>', '498800', '99999', null, 'http://image.taotao.com/jd/817a2059417c44b28fd83f0c79a7cab7.jpg', '560', '1', '2015-03-08 21:27:42', '2015-03-08 21:27:42');
INSERT INTO `tb_item` VALUES ('1219035', '【移动购机赠费】苹果(Apple)iPhone 6 (A1589) 128GB 银色 移动4G手机', '移动用户独享,不换号,买手机返话费,敬请参阅以下页面介绍~<a target=\"blank\" href=\"http://sale.jd.com/act/4SfT3WscrkpwRZ2V.html\">更多商品速度围观,快来点我,点我</a>', '647700', '99999', null, 'http://image.taotao.com/jd/b6ef0a326bcb4ea29b1d0481ba052a81.jpg', '560', '1', '2015-03-08 21:33:18', '2015-03-08 21:33:18');
INSERT INTO `tb_item` VALUES ('1219039', '【移动购机赠费】苹果(Apple)iPhone 6 Plus (A1593) 16GB 深空灰色 移动4G手机', '移动用户独享,不换号,买手机返话费,敬请参阅以下页面介绍~<a target=\"blank\" href=\"http://sale.jd.com/act/4SfT3WscrkpwRZ2V.html\"><font color=blue>更多商品速度围观,快来点我,点我</font></a>', '578800', '99999', null, 'http://image.taotao.com/jd/77693cb2dfcf4456b956bbfb3ec2cb10.jpg', '560', '1', '2015-03-08 21:28:16', '2015-03-08 21:28:16');
INSERT INTO `tb_item` VALUES ('1219042', '【移动购机赠费】苹果(APPLE)iPhone 6 (A1589) 64GB 金色 移动4G手机', '移动用户独享,不换号,买手机返话费,敬请参阅以下页面介绍~<a target=\"blank\" href=\"http://sale.jd.com/act/4SfT3WscrkpwRZ2V.html\"><font color=blue>更多商品速度围观,快来点我,点我</font></a>', '578800', '99999', null, 'http://image.taotao.com/jd/145465ba538e4d16878fbe6c17658b9c.jpg', '560', '1', '2015-03-08 21:27:42', '2015-03-08 21:27:42');
INSERT INTO `tb_item` VALUES ('1219043', '【移动购机赠费】苹果(Apple)iPhone 6 (A1589) 64GB 银色 移动4G手机', '移动用户独享,不换号,买手机返话费,敬请参阅以下页面介绍~<a target=\"blank\" href=\"http://sale.jd.com/act/4SfT3WscrkpwRZ2V.html\"><font color=blue>更多商品速度围观,快来点我,点我</font></a>', '578800', '99999', null, 'http://image.taotao.com/jd/13327061d6274795aaa5a424bab5b8cf.jpg', '560', '1', '2015-03-08 21:27:49', '2015-03-08 21:27:49');
INSERT INTO `tb_item` VALUES ('1219045', '【移动购机赠费】苹果(Apple)iPhone 6 Plus (A1593) 16GB 金色 移动4G手机', '移动用户独享,不换号,买手机返话费,敬请参阅以下页面介绍~<a target=\"blank\" href=\"http://sale.jd.com/act/4SfT3WscrkpwRZ2V.html\"><font color=blue>更多商品速度围观,快来点我,点我</font></a>', '578800', '99999', null, 'http://image.taotao.com/jd/143dd69bf1c04ad7b15c1e8d878ec231.jpg', '560', '1', '2015-03-08 21:27:54', '2015-03-08 21:27:54');
INSERT INTO `tb_item` VALUES ('1219046', '【移动购机赠费】苹果(Apple)iPhone 6 Plus (A1593) 16GB 银色 移动4G手机', '移动用户独享,不换号,买手机返话费,敬请参阅以下页面介绍~<a target=\"blank\" href=\"http://sale.jd.com/act/4SfT3WscrkpwRZ2V.html\"><font color=blue>更多商品速度围观,快来点我,点我</font></a>', '578800', '99999', null, 'http://image.taotao.com/jd/f58d499a7a6c4f3fa3943bf954c8d6a3.jpg', '560', '1', '2015-03-08 21:28:01', '2015-03-08 21:28:01');
INSERT INTO `tb_item` VALUES ('1219053', '【移动购机赠费】苹果(Apple)iPhone 6 Plus (A1593) 64GB 银色 移动4G手机', '移动用户独享,不换号,买手机返话费,敬请参阅以下页面介绍~<a target=\"blank\" href=\"http://sale.jd.com/act/4SfT3WscrkpwRZ2V.html\">更多商品速度围观,快来点我,点我</a>', '668800', '99999', null, 'http://image.taotao.com/jd/9913f6df14924ee4b03377c4becedf4f.jpg', '560', '1', '2015-03-08 21:27:54', '2015-03-08 21:27:54');
INSERT INTO `tb_item` VALUES ('1219059', '【移动购机赠费】苹果(Apple)iPhone 6 Plus (A1593) 64GB 深空灰色 移动4G手机', '移动用户独享,不换号,买手机返话费,敬请参阅以下页面介绍~', '658800', '99999', null, 'http://image.taotao.com/jd/f78d665858de44a9885abe26e2b6e940.jpg', '560', '1', '2015-03-08 21:28:09', '2015-03-08 21:28:09');
INSERT INTO `tb_item` VALUES ('1219071', '苹果(Apple) iPhone 6 Plus (A1524) 16G 银色 移动联通电信4G手机', '', '588800', '99999', null, 'http://image.taotao.com/jd/3db5f1a1b59e43d8b199612c253a1e8d.jpg', '560', '1', '2015-03-08 21:28:30', '2015-03-08 21:28:30');
INSERT INTO `tb_item` VALUES ('1219075', '苹果(Apple) iPhone 6 (A1586) 64G 金色 移动联通电信4G手机', '', '598800', '99999', null, 'http://image.taotao.com/jd/428588640554445695b16d1e80d7b928.jpg', '560', '1', '2015-03-08 21:27:54', '2015-03-08 21:27:54');
INSERT INTO `tb_item` VALUES ('1219078', '苹果(Apple) iPhone 6 (A1586) 64G 银色 移动联通电信4G手机', '', '598800', '99999', null, 'http://image.taotao.com/jd/7e5b0bae7e6b4c4ca330d597ed410d20.jpg', '560', '1', '2015-03-08 21:28:09', '2015-03-08 21:28:09');
INSERT INTO `tb_item` VALUES ('1219080', '苹果(Apple) iPhone 6 (A1586) 16G 金色 移动联通电信4G手机', '', '518800', '99999', null, 'http://image.taotao.com/jd/c5cd857a636945c68e85f3610156b57f.jpg', '560', '1', '2015-03-08 21:27:42', '2015-03-08 21:27:42');
INSERT INTO `tb_item` VALUES ('1219084', '苹果(Apple) iPhone 6 (A1586) 16G 银色 移动联通电信4G手机', '', '518800', '99999', null, 'http://image.taotao.com/jd/4ac2f10f7f5d46c682d6fbaada21a7c8.jpg', '560', '1', '2015-03-08 21:28:01', '2015-03-08 21:28:01');
INSERT INTO `tb_item` VALUES ('1219085', '苹果(Apple) iPhone 6 (A1586) 16G 深空灰 移动联通电信4G手机', '', '518800', '99999', null, 'http://image.taotao.com/jd/dcdb5d5bcbb248429984d1a827c7d8fd.jpg', '560', '1', '2015-03-08 21:28:01', '2015-03-08 21:28:01');
INSERT INTO `tb_item` VALUES ('1219091', '苹果(Apple) iPhone 6 (A1586) 128G 深空灰 移动联通电信4G手机', '', '648800', '99999', null, 'http://image.taotao.com/jd/5d758dc217f2432d8b655671631fec1a.jpg', '560', '1', '2015-03-08 21:29:54', '2015-03-08 21:29:54');
INSERT INTO `tb_item` VALUES ('1219290', '【联通赠费版】苹果(Apple) iPhone 6 (A1586) 16G 深空灰 移动联通电信4G手机', '', '488800', '99999', null, 'http://image.taotao.com/jd/abe10382a5134be280a3ace4cb593f89.jpg', '560', '1', '2015-03-08 21:28:30', '2015-03-08 21:28:30');
INSERT INTO `tb_item` VALUES ('1219291', '【联通赠费版】苹果(Apple) iPhone 6 (A1586) 16G 银色 移动联通电信4G手机', '', '488800', '99999', null, 'http://image.taotao.com/jd/264e52c1e2614546ae269933db01d140.jpg', '560', '1', '2015-03-08 21:28:16', '2015-03-08 21:28:16');
INSERT INTO `tb_item` VALUES ('1219295', '【联通赠费版】苹果(Apple) iPhone 6 Plus (A1524) 16G 金色 移动联通电信4G手机', '', '578800', '99999', null, 'http://image.taotao.com/jd/2b910cf76429438ab8c7411fdcdfb7bf.jpg', '560', '1', '2015-03-08 21:28:55', '2015-03-08 21:28:55');
INSERT INTO `tb_item` VALUES ('1219296', '【联通赠费版】苹果(Apple) iPhone 6 (A1586) 16G 金色 移动联通电信4G手机', '', '488800', '99999', null, 'http://image.taotao.com/jd/1b79e2d2ac5f427b904fcd7a6db11c3e.jpg', '560', '1', '2015-03-08 21:27:49', '2015-03-08 21:27:49');
INSERT INTO `tb_item` VALUES ('1219298', '【联通赠费版】苹果(Apple) iPhone 6 (A1586) 64G 金色 移动联通电信4G手机', '', '578800', '99999', null, 'http://image.taotao.com/jd/5e392e6785ad4c18a5283512dcf3d8eb.jpg', '560', '1', '2015-03-08 21:28:55', '2015-03-08 21:28:55');
INSERT INTO `tb_item` VALUES ('1219303', '【联通赠费版】苹果(Apple) iPhone 6 Plus (A1524) 16G 银色 移动联通电信4G手机', '', '578800', '99999', null, 'http://image.taotao.com/jd/e79bc61ae1664293aaff6b4e5680096b.jpg', '560', '1', '2015-03-08 21:29:39', '2015-03-08 21:29:39');
INSERT INTO `tb_item` VALUES ('1219304', '【联通赠费版】苹果(Apple) iPhone 6 Plus (A1524) 16G 深空灰 移动联通电信4G手机', '', '578800', '99999', null, 'http://image.taotao.com/jd/cfda229a561c45e5bf77ffd02ef98ec6.jpg', '560', '1', '2015-03-08 21:29:27', '2015-03-08 21:29:27');
INSERT INTO `tb_item` VALUES ('1219311', '【联通赠费版】苹果(Apple) iPhone 6 Plus (A1524) 64G 金色 移动联通电信4G手机', '', '638800', '99999', null, 'http://image.taotao.com/jd/dae543aa600f44dea9289186d262a8d0.jpg', '560', '1', '2015-03-08 21:28:09', '2015-03-08 21:28:09');
INSERT INTO `tb_item` VALUES ('1219805', '联想 A916 深邃黑 联通4G手机 双卡', '八核处理器,5.5英寸HD高清大屏,1300万高清摄像头!', '69800', '99999', null, 'http://image.taotao.com/jd/fc62bdded8bc4f8590a7fbb5ceb14261.jpg', '560', '1', '2015-03-08 21:28:09', '2015-03-08 21:28:09');
INSERT INTO `tb_item` VALUES ('1220039', '三星 Galaxy Note4 (N9109W) 雅墨黑 电信4G手机 双卡双待', '下单赠手机贴膜+12000毫安移动电源+手机魔法盒+16G TF卡!三星旗舰机!5.7英寸2K高清屏 支持急速充电!', '528800', '99999', null, 'http://image.taotao.com/jd/0186b302198b4b54b24f2ec1af18447f.jpg', '560', '1', '2015-03-08 21:27:54', '2015-03-08 21:27:54');
INSERT INTO `tb_item` VALUES ('1220040', '三星 Galaxy Note4 (N9109W) 幻影白 电信4G手机 双卡双待', '下单赠手机贴膜+12000毫安移动电源+手机魔法盒+16G TF卡!三星旗舰机!5.7英寸2K高清屏 支持急速充电!', '528800', '99999', null, 'http://image.taotao.com/jd/898e8d5299654c7e85684554ad32ca89.jpg', '560', '1', '2015-03-08 21:27:54', '2015-03-08 21:27:54');
INSERT INTO `tb_item` VALUES ('1220052', '三星 Galaxy Note4 (N9108V) 雅墨黑 移动4G手机', '送原装皮套!就是现在,拿起S Pen用“心”对话!', '519900', '99999', null, 'http://image.taotao.com/jd/db9975dc36eb46adb4c40859df2ad92c.jpg', '560', '1', '2015-03-08 21:27:49', '2015-03-08 21:27:49');
INSERT INTO `tb_item` VALUES ('1220054', '三星 Galaxy Note4 (N9108V) 幻影白 移动4G手机', '送原装皮套!就是现在,拿起S Pen用“心”对话!', '519900', '99999', null, 'http://image.taotao.com/jd/cf945525dcb1495392283cbb52f4501e.jpg', '560', '1', '2015-03-08 21:27:42', '2015-03-08 21:27:42');
INSERT INTO `tb_item` VALUES ('1220055', '三星 Galaxy Note4 (N9106W) 雅墨黑 联通4G手机 双卡双待', '下单赠三星Tab平板!机会难得,抢到赚到!', '539900', '99999', null, 'http://image.taotao.com/jd/61a49c368f694c2f809d66b1d22e4c1b.jpg', '560', '1', '2015-03-08 21:28:44', '2015-03-08 21:28:44');
INSERT INTO `tb_item` VALUES ('1220058', '三星 Galaxy Note4 (N9106W) 幻影白 联通4G手机 双卡双待', '下单赠三星Tab!数量有限!抢完为止!', '539900', '99999', null, 'http://image.taotao.com/jd/4dc68c648f87419488ebf0c3ca0e670c.jpg', '560', '1', '2015-03-08 21:28:30', '2015-03-08 21:28:30');
INSERT INTO `tb_item` VALUES ('1220059', '三星 Galaxy Note4 (N9100) 暮光金 移动联通4G手机 双卡双待', '限量赠送三星平板电脑!5.7英寸2K高清屏 支持急速充电!', '539900', '99999', null, 'http://image.taotao.com/jd/cf0c40f625ef464a85d630fe89c01e60.jpg', '560', '1', '2015-03-08 21:27:54', '2015-03-08 21:27:54');
INSERT INTO `tb_item` VALUES ('1220061', '三星 Galaxy Note4 (N9100) 雅墨黑 移动联通4G手机 双卡双待', '送原装电池+原装皮套+贴膜!5.7英寸2K高清屏 支持急速充电!', '539900', '99999', null, 'http://image.taotao.com/jd/f1071cdf4bc449ebbccd95100e44de8f.jpg', '560', '1', '2015-03-08 21:27:49', '2015-03-08 21:27:49');
INSERT INTO `tb_item` VALUES ('1220063', '三星 Galaxy Note4 (N9100) 花漾粉 移动联通4G手机 双卡双待', '限量赠送三星平板电脑!5.7英寸2K高清屏 支持急速充电!', '539900', '99999', null, 'http://image.taotao.com/jd/ab34455089b943a7997849b23a8c11c1.jpg', '560', '1', '2015-03-08 21:28:01', '2015-03-08 21:28:01');
INSERT INTO `tb_item` VALUES ('1220064', '三星 Galaxy Note4 (N9100) 幻影白 移动联通4G手机 双卡双待', '送原装电池+原装皮套+贴膜!5.7英寸2K高清屏 支持急速充电!', '539900', '99999', null, 'http://image.taotao.com/jd/de98248572054648bea136f5ac5bd9cb.jpg', '560', '1', '2015-03-08 21:27:49', '2015-03-08 21:27:49');
INSERT INTO `tb_item` VALUES ('1220529', '云狐 J1 黄色 联通3G手机', '户外有我,让沟通与众不同,军工品质,IP67级专业三防,尽显霸气!', '198000', '99999', null, 'http://image.taotao.com/jd/8f39f02b649f4f388cbc479a6e9d620d.jpg', '560', '1', '2015-03-08 21:33:18', '2015-03-08 21:33:18');
INSERT INTO `tb_item` VALUES ('1221570', '长虹(CHANGHONG)55Q1F 55英寸 CHiQ安卓智能LED液晶电视(黑色)', '长虹高端系列,启客CHiQ电视!多屏协同,节目分类看带走看,语音控制,体感游戏 <a target=\"blank\" href=\"http://sale.jd.com/act/Kt0aHzbU7uR1M.html\">“点击进入长虹新年专场”</a>', '499700', '99999', null, 'http://image.taotao.com/jd/4ba519a9e16d4b93bbe1331741266595.jpg', '76', '1', '2015-03-08 21:28:08', '2015-03-08 21:28:08');
INSERT INTO `tb_item` VALUES ('1221583', '长虹(CHANGHONG)43Q1F 43英寸 CHiQ安卓智能LED液晶电视(黑色)', '长虹高端系列,启客CHiQ电视!多屏协同,节目分类看带走看,语音控制,体感游戏 <a target=\"blank\" href=\"http://sale.jd.com/act/Kt0aHzbU7uR1M.html\">“点击进入长虹新年专场”</a>', '299700', '99999', null, 'http://image.taotao.com/jd/553978c1a7ba4e3a9fed5b3df59a3d39.jpg', '76', '1', '2015-03-08 21:28:00', '2015-03-08 21:28:00');
INSERT INTO `tb_item` VALUES ('1221584', '索尼(SONY) Z3 (L55u) 曜石黑 联通4G手机 双卡双待', '索尼旗舰经典工艺设计,2070万像素索尼G镜头,5.2英寸高清屏,高通骁龙2.5GHz四核处理器!', '389900', '99999', null, 'http://image.taotao.com/jd/f77dd2a1237b4546b10e8683c920948a.jpg', '560', '1', '2015-03-08 21:27:54', '2015-03-08 21:27:54');
INSERT INTO `tb_item` VALUES ('1221599', '索尼(SONY) Z3 (L55u) 春雪白 联通4G手机 双卡双待', '索尼旗舰经典工艺设计,2070万像素索尼G镜头,5.2英寸高清屏,高通骁龙2.5GHz四核处理器!', '389900', '99999', null, 'http://image.taotao.com/jd/8e1ec1adf5604e7f8f8dbef5368933aa.jpg', '560', '1', '2015-03-08 21:27:54', '2015-03-08 21:27:54');
INSERT INTO `tb_item` VALUES ('1221854', '华为 Ascend Mate7 曜石黑 移动4G手机 双卡双待双通', '6英寸高清大屏,全金属纤薄机身,智能超八核,按压式指纹识别!<a target=\"blank\" href=\"http://sale.jd.com/act/gABGw4eCDxHL.html\">『三羊开泰,7象万千』活动中奖名单请戳 </a>', '339900', '99999', null, 'http://image.taotao.com/jd/7e963a6cd7374f699bcc64523a12b39e.jpg', '560', '1', '2015-03-08 21:27:49', '2015-03-08 21:27:49');
INSERT INTO `tb_item` VALUES ('1221861', '华为 Ascend Mate7 月光银 移动4G手机 双卡双待双通', '6英寸高清大屏,全金属纤薄机身,智能超八核,按压式指纹识别!<a target=\"blank\" href=\"http://sale.jd.com/act/gABGw4eCDxHL.html\">『三羊开泰,7象万千』活动中奖名单请戳</a>', '329900', '99999', null, 'http://image.taotao.com/jd/fc23d211a3744026b91ddc390aec0020.jpg', '560', '1', '2015-03-08 21:27:37', '2015-03-08 21:27:37');
INSERT INTO `tb_item` VALUES ('1221878', '长虹(CHANGHONG)LED32538M 32英寸 窄边蓝光LED液晶电视(黑色)', '高效节能,高清视野,为宝宝设置观看时间!<a target=\"blank\" href=\"http://sale.jd.com/act/Kt0aHzbU7uR1M.html\">“去长虹新年专场”</a>', '139900', '99999', null, 'http://image.taotao.com/jd/ee48783660604b27ab1cb45162dce46f.jpg', '76', '1', '2015-03-08 21:27:35', '2015-03-08 21:27:35');
INSERT INTO `tb_item` VALUES ('1221882', '长虹(CHANGHONG)LED42538ES 42英寸 窄边蓝光LED液晶电视(黑色)', '全高清,USB即插即播,HDMI高清接口<a target=\"blank\" href=\"http://sale.jd.com/act/Kt0aHzbU7uR1M.html\">“去长虹新年专场”</a>', '209900', '99999', null, 'http://image.taotao.com/jd/b9da0d35af834d938af758cc134b3601.jpg', '76', '1', '2015-03-08 21:27:39', '2015-03-08 21:27:39');
INSERT INTO `tb_item` VALUES ('1222587', '飞利浦 (X3560) 咖啡金 移动联通2G手机 双卡双待', '持久续航,钢显本色!2个月超长待机,30小时通话时长!不锈钢金属材质,坚毅时尚外观!', '49900', '99999', null, 'http://image.taotao.com/jd/c6d348c90d534b4a9dcc0c4a75480ec8.jpg', '560', '1', '2015-03-08 21:28:30', '2015-03-08 21:28:30');
INSERT INTO `tb_item` VALUES ('1222589', '天语 nibiru 火星一号 (H1) 红色 移动联通3G手机 双卡双待', '5.0英寸屏,8核1.7GHzCPU,16G ROM+2G RAM,1300万+500万像素', '69800', '99999', null, 'http://image.taotao.com/jd/4fe419a6c5124833a515b47972c531a3.jpg', '560', '1', '2015-03-08 21:28:16', '2015-03-08 21:28:16');
INSERT INTO `tb_item` VALUES ('1222623', '飞利浦(PHILIPS)55PFL3045/T3 55英寸 全高清LED液晶电视(黑色)', '纯粹的大屏电视,炫彩高清,支持多种格式媒体播放!30天价保,热线400-656-1000!<a href=\'http://sq.jd.com/zM2aZs\' target=\'_blank\'>飞利浦健康舒适蓝,预约参加抽奖赢电视!</a>', '399900', '99999', null, 'http://image.taotao.com/jd/a58e5f7f04b8415cbe276d3a28c64df1.jpg', '76', '1', '2015-03-08 21:27:35', '2015-03-08 21:27:35');
INSERT INTO `tb_item` VALUES ('1222803', '【套装版】努比亚(nubia)小牛3 Z7 mini 全黑 移动联通4G电信3G手机 双卡双待', '', '159900', '99999', null, 'http://image.taotao.com/jd/109d1bf741d14748b65fc2bb1ffc8737.jpg', '560', '1', '2015-03-08 21:27:42', '2015-03-08 21:27:42');
INSERT INTO `tb_item` VALUES ('1222804', 'TCL 42D11 42英寸 内置wifi 安卓4.0智能自然光技术LED液晶电视(黑色)', '【0元献礼】精品液晶屏,画质更出众!智能神器,新奇不断。斗艳精品,红火新年!<a target=\"blank\" href=\"http://sale.jd.com/act/6MqRytIYKfn.html\">【0元白条试用,1001个拜年计划】</a>', '239900', '99999', null, 'http://image.taotao.com/jd/d7acb422ab1d47f980746d73a4c19d0a.jpg', '76', '1', '2015-03-08 21:27:35', '2015-03-08 21:27:35');
INSERT INTO `tb_item` VALUES ('1225099', '长虹(CHANGHONG)LED24B1000M 24英寸 窄边蓝光LED液晶电视(黑色)', '电视、显示器,一机两用!USB支持RMVB\\RM\\TS\\MPEG\\VOB\\AVI等格式视频文件,即插即播!<a target=\"blank\" href=\"http://sale.jd.com/act/Kt0aHzbU7uR1M.html\">“去长虹新年专场”</a>', '92900', '99999', null, 'http://image.taotao.com/jd/e01115594440476ebb057982c9389fb1.jpg', '76', '1', '2015-03-08 21:27:35', '2015-03-08 21:27:35');
INSERT INTO `tb_item` VALUES ('1225167', '云狐 A8 黄色 联通3G手机', '震撼首发!6英寸炫彩高清大屏,专业三防,2GRAM+16ROM,3500毫安电池,带给你前所未有体验!赠送户外登山包!', '628000', '99999', null, 'http://image.taotao.com/jd/38a9841a56914b6dab0114f19f140cbc.jpg', '560', '1', '2015-03-08 21:29:54', '2015-03-08 21:29:54');
INSERT INTO `tb_item` VALUES ('1225242', '海信(Hisense)LED42E1UA 42英寸 4K超清 VIDAA1.5 智能电视 WIFI(黑色)', '秒杀,不定时结束!丰富免费视频、数字一体机、瀑布式极速换台 、傻瓜式四键直达、极速四核、海量应用<a target=\"blank\" href=\"http://sale.jd.com/act/YykdEtrMRaSsT.html\">“春宵一刻值千金”</a>', '299900', '99999', null, 'http://image.taotao.com/jd/09f84ad770bc4f7c973445fc8bcab0d4.jpg', '76', '1', '2015-03-08 21:27:35', '2015-03-08 21:27:35');
INSERT INTO `tb_item` VALUES ('1225562', '【移动购机赠费】三星 Galaxy Note4 (N9108V) 雅墨黑 移动4G手机', '移动用户独享,不换号,买手机返话费,敬请参阅以下页面介绍~', '519900', '99999', null, 'http://image.taotao.com/jd/2bd374d00e124ba89099d036a9031755.jpg', '560', '1', '2015-03-08 21:30:03', '2015-03-08 21:30:03');
INSERT INTO `tb_item` VALUES ('1225563', '【移动购机赠费】三星 Galaxy Note4 (N9108V) 幻影白 移动4G手机', '移动用户独享,不换号,买手机返话费,敬请参阅以下页面介绍~', '519900', '99999', null, 'http://image.taotao.com/jd/cb086fcb57664682a1c86894e766df71.jpg', '560', '1', '2015-03-08 21:30:29', '2015-03-08 21:30:29');
INSERT INTO `tb_item` VALUES ('1226348', '诺基亚(NOKIA) 130 (RM-1035) 红色 移动联通2G手机 双卡双待', '诺记传承经典,品质卓越,超长待机,沟通更持久! ', '18900', '99999', null, 'http://image.taotao.com/jd/69b057a72bf04b698a363911878c5cd9.jpg', '560', '1', '2015-03-08 21:28:16', '2015-03-08 21:28:16');
INSERT INTO `tb_item` VALUES ('1226356', '诺基亚(NOKIA) 130 (RM-1035) 白色 移动联通2G手机 双卡双待', '诺记传承经典,品质卓越,超长待机,沟通更持久!', '18900', '99999', null, 'http://image.taotao.com/jd/5e43999a85fe4512903cdffd4a7dd293.jpg', '560', '1', '2015-03-08 21:28:16', '2015-03-08 21:28:16');
INSERT INTO `tb_item` VALUES ('1226359', '诺基亚(NOKIA) 130 (RM-1035) 黑色 移动联通2G手机 双卡双待', '诺记传承经典,品质卓越,超长待机,沟通更持久!', '18900', '99999', null, 'http://image.taotao.com/jd/0ccdaea734f846998b1d912f8e6a0984.jpg', '560', '1', '2015-03-08 21:28:01', '2015-03-08 21:28:01');
INSERT INTO `tb_item` VALUES ('1226902', '【合约版】一加 移动4G手机 Baby Skin白 16G版', '北京移动合约不换号返话费,少量货源,抢到就是赚到!<a target=\"blank\" href=\"http://sale.jd.com/act/5xPZsLtCbFTcYVD.html\">【更多选择请点击北京移动合约专场】</a>', '198800', '99999', null, 'http://image.taotao.com/jd/9e14a931b43840679d0e5e273f86dcc9.jpg', '560', '1', '2015-03-08 21:29:19', '2015-03-08 21:29:19');
INSERT INTO `tb_item` VALUES ('1227156', 'TCL D55A910U 55英寸安卓4.2超高清4K芒果TV智能家庭云液晶电视(黑橙)', '【0元献礼】贵族之选,三星原装进口4K屏体。巨有范儿!敢登台,敢表达,羊年臻品4K。<a target=\"blank\" href=\"http://sale.jd.com/act/6MqRytIYKfn.html\">【0元白条试用,1001个拜年计划】</a>', '599900', '99999', null, 'http://image.taotao.com/jd/f196fd5ad5194693b5e163561e673a12.jpg', '76', '1', '2015-03-08 21:27:45', '2015-03-08 21:27:45');
INSERT INTO `tb_item` VALUES ('1228012', '海尔模卡(MOOKA)55H6 55英寸安卓智能网络超薄窄边框全高清LED液晶电视', '海尔出品、55英寸智能,安卓4.0智能系统,SCM护眼系统,超高性价比!【自带底座】<a target=\"blank\" href=\"http://sale.jd.com/act/vfQlPDUkRy8zO3b.html\">要实惠,就点我</a>', '359900', '99999', null, 'http://image.taotao.com/jd/4f556015ae214dfbae7d433f2d2b1109.jpg', '76', '1', '2015-03-08 21:27:45', '2015-03-08 21:27:45');
INSERT INTO `tb_item` VALUES ('1228416', '联想 A916 白色 联通4G手机 双卡', '八核处理器,5.5英寸HD高清大屏,1300万高清摄像头!', '73900', '99999', null, 'http://image.taotao.com/jd/a3787360edee4f81905d70d2c4d76213.jpg', '560', '1', '2015-03-08 21:28:30', '2015-03-08 21:28:30');
INSERT INTO `tb_item` VALUES ('1228472', '联想 X2-TO 16G 金色 移动4G手机 双卡双待', '5吋八核2.0GHz,1300+500像素,耀色倾城!', '199900', '99999', null, 'http://image.taotao.com/jd/15332b2343d84b3bad568219cb9068f6.jpg', '560', '1', '2015-03-08 21:28:44', '2015-03-08 21:28:44');
INSERT INTO `tb_item` VALUES ('1228518', '三星(SAMSUNG)UA55HU7000J 55英寸 4K超高清智能LED电视 黑色 乐歌挂架套装', '', '976800', '99999', null, 'http://image.taotao.com/jd/638549f01834461aaca3edfc4daf51c7.jpg', '76', '1', '2015-03-08 21:29:12', '2015-03-08 21:29:12');
INSERT INTO `tb_item` VALUES ('1229054', '【合约版】苹果(APPLE)iPhone 5s 16G版 移动4G手机 金色', '北京移动合约不换号返话费,少量货源,抢到就是赚到!<a target=\"blank\" href=\"http://sale.jd.com/act/5xPZsLtCbFTcYVD.html\">【更多选择请点击北京移动合约专场】</a>', '408800', '99999', null, 'http://image.taotao.com/jd/b4323c234e3446a7ad85db88e4971d91.jpg', '560', '1', '2015-03-08 21:28:44', '2015-03-08 21:28:44');
INSERT INTO `tb_item` VALUES ('1229069', '【移动购机赠费】三星 Galaxy S5 (G9008V) 闪耀白 移动4G手机', '移动用户独享,不换号,买手机返话费,敬请参阅以下页面介绍~<a target=\"blank\" href=\"http://sale.jd.com/act/4SfT3WscrkpwRZ2V.html\">更多商品速度围观,快来点我,点我</a>', '329900', '99999', null, 'http://image.taotao.com/jd/4bc8b3a291274685a93cff345612779e.jpg', '560', '1', '2015-03-08 21:28:16', '2015-03-08 21:28:16');
INSERT INTO `tb_item` VALUES ('1229074', '【移动购机赠费】三星 Galaxy Note 3 (N9008V) 16G版 白色 移动4G手机', '移动用户独享,不换号,买手机返话费,敬请参阅以下页面介绍~<a target=\"blank\" href=\"http://sale.jd.com/act/4SfT3WscrkpwRZ2V.html\">更多商品速度围观,快来点我,点我</a>', '308800', '99999', null, 'http://image.taotao.com/jd/8cfdc2601ab84bddaf54fda16c2bc696.jpg', '560', '1', '2015-03-08 21:28:55', '2015-03-08 21:28:55');
INSERT INTO `tb_item` VALUES ('1229082', '【移动购机赠费】三星 Galaxy Note4 (N9100) 雅墨黑 移动联通4G手机 双卡双待', '移动用户独享,不换号,买手机返话费,敬请参阅以下页面介绍~', '539900', '99999', null, 'http://image.taotao.com/jd/3c1bb3f99d42459698ffac58932dac2d.jpg', '560', '1', '2015-03-08 21:29:47', '2015-03-08 21:29:47');
INSERT INTO `tb_item` VALUES ('1229083', '【移动购机赠费】三星 Galaxy Note4 (N9100) 幻影白 移动联通4G手机 双卡双待', '移动用户独享,不换号,买手机返话费,敬请参阅以下页面介绍~', '539900', '99999', null, 'http://image.taotao.com/jd/c12a34a84d7d4b89acc9babcc5268143.jpg', '560', '1', '2015-03-08 21:29:11', '2015-03-08 21:29:11');
INSERT INTO `tb_item` VALUES ('1229269', '小米 4 联通合约版 白色 联通4G手机 不含合约计划', '', '209900', '99999', null, 'http://image.taotao.com/jd/f539e3add44c4b3a8eb455bc6b722fbd.jpg', '560', '1', '2015-03-08 21:33:47', '2015-03-08 21:33:47');
INSERT INTO `tb_item` VALUES ('1229308', '海尔模卡(MOOKA)U50H7A 50英寸安卓3D蓝牙智能10核网络4K超薄窄边框UHD超高清LED液晶电视', '【爆款抢购】品牌日特惠!如此低价,仅此一天,疯狂抢购!10核处理器、顶级配置!【底座眼镜需另购】<a target=\"blank\" href=\"http://sale.jd.com/act/vfQlPDUkRy8zO3b.html\">海尔模卡4K节,年货你来抢!</a>', '389900', '99999', null, 'http://image.taotao.com/jd/acaf40d788b64ce4abb1bfc65c0fb1dd.jpg', '76', '1', '2015-03-08 21:27:39', '2015-03-08 21:27:39');
INSERT INTO `tb_item` VALUES ('1230485', '康佳(KONKA) LED49T16A 49英寸 极速8核安卓智能液晶电视(黑加银)', '【新年大惠!】8核极速,开放安卓平台,无线拓展,观影无极限,超强性能让你欲罢不能!!抢购狂热持续!', '299900', '99999', null, 'http://image.taotao.com/jd/971cd8be1bf24abfab1e7a7378807ae2.jpg', '76', '1', '2015-03-08 21:27:39', '2015-03-08 21:27:39');
INSERT INTO `tb_item` VALUES ('1230842', '三星 Galaxy Alpha (G8508S) 玄武黑 移动联通4G手机', '支持移动4G和联通4G!4.7英寸屏、金属边框!(北京、西安现货)', '309900', '99999', null, 'http://image.taotao.com/jd/fcf9fee5b4d74b30978f0225421275d3.jpg', '560', '1', '2015-03-08 21:28:16', '2015-03-08 21:28:16');
INSERT INTO `tb_item` VALUES ('1230869', '三星 Galaxy A3 (SM-A3000) 魔幻金 移动联通4G手机 双卡双待', '送移动电源!全新A系列-年轻正发声!', '199800', '99999', null, 'http://image.taotao.com/jd/387e59dcedb64bd585ebcb8b76a1f90c.jpg', '560', '1', '2015-03-08 21:28:30', '2015-03-08 21:28:30');
INSERT INTO `tb_item` VALUES ('1230878', '三星 Galaxy A3 (SM-A3000) 雪域白 移动联通4G手机 双卡双待', '赠三星原装移动电源,全新A系列-年轻正发声!', '199800', '99999', null, 'http://image.taotao.com/jd/4eade047430d4ec9af6ad1788168431b.jpg', '560', '1', '2015-03-08 21:28:01', '2015-03-08 21:28:01');
INSERT INTO `tb_item` VALUES ('1230885', '三星 Galaxy A5 (SM-A5000) 魔幻金 移动联通4G手机 双卡双待', '赠移动电源,全新A系列-年轻正发声!', '259900', '99999', null, 'http://image.taotao.com/jd/38451c05c2b54370abe6d2a34ab1174d.jpg', '560', '1', '2015-03-08 21:28:09', '2015-03-08 21:28:09');
INSERT INTO `tb_item` VALUES ('1230888', '三星 Galaxy A5 (SM-A5000) 雪域白 移动联通4G手机 双卡双待', '赠三星原装保护套!全新A系列-年轻正发声!', '259900', '99999', null, 'http://image.taotao.com/jd/9def327e7d474d979bf168e2501354e4.jpg', '560', '1', '2015-03-08 21:27:49', '2015-03-08 21:27:49');
INSERT INTO `tb_item` VALUES ('1230891', '三星 Galaxy A5 (SM-A5000) 精灵黑 移动联通4G手机 双卡双待', '赠三星原装保护套!全新A系列-年轻正发声!', '259900', '99999', null, 'http://image.taotao.com/jd/2b60573749a84076845c89968f7546bf.jpg', '560', '1', '2015-03-08 21:28:01', '2015-03-08 21:28:01');
INSERT INTO `tb_item` VALUES ('1231050', '三星 Galaxy Mega2 (G7508Q) 棕黑 移动联通4G手机 双卡双待', '6英寸大屏,为大梦想而生!', '208800', '99999', null, 'http://image.taotao.com/jd/d28d42dd4b084c74b81aa4a4d192aac5.jpg', '560', '1', '2015-03-08 21:27:54', '2015-03-08 21:27:54');
INSERT INTO `tb_item` VALUES ('1231108', '海尔(Haier) A8 富贵红 移动3G手机', '内含智爱多功能座充!“剁手”时刻别忘记给父母一份关爱!', '59900', '99999', null, 'http://image.taotao.com/jd/8f0d64c278dc463493164e38606a23f0.jpg', '560', '1', '2015-03-08 21:29:39', '2015-03-08 21:29:39');
INSERT INTO `tb_item` VALUES ('1231490', '小米4 白色 联通3G手机', '卖完下柜!不锈钢金属边框,5英寸屏超窄边,骁龙四核2.5GHz处理器,3G RAM,1300W+800W摄像头!', '199900', '99999', null, 'http://image.taotao.com/jd/99b517fcefcc4240995fe2156accb8da.jpg', '560', '1', '2015-03-08 21:33:47', '2015-03-08 21:33:47');
INSERT INTO `tb_item` VALUES ('1231630', '声光(SONIQ)S55T14A-CN 55英寸 无边框全高清 LED智能电视', '喜迎春节,声光有礼!!5星好评送50元话费!!LG原装进口3D模组屏,得4副3D眼镜!!', '588800', '99999', null, 'http://image.taotao.com/jd/4ecd153fc4d3499e823df6a873111c2b.jpg', '76', '1', '2015-03-08 21:28:55', '2015-03-08 21:28:55');
INSERT INTO `tb_item` VALUES ('1231635', '声光(SONIQ)U65TX14A-CN 65英寸 UHD窄边框 LED智能电视', '喜迎春节,声光有礼!!5星好评送50元话费!!真4K,4副3D眼镜,适合全家分享!!', '1499900', '99999', null, 'http://image.taotao.com/jd/7e2a7226db094931ab669b20480ab3a2.jpg', '76', '1', '2015-03-08 21:28:08', '2015-03-08 21:28:08');
INSERT INTO `tb_item` VALUES ('1232268', '大唐 (I518) 黑色 移动4G手机', '千元高配4G新品!5.5英寸FHD超清全屏,1300万第二代BSI摄像头!', '79900', '99999', null, 'http://image.taotao.com/jd/421144bebdbb4b11b1d62d4d51385ab7.jpg', '560', '1', '2015-03-08 21:29:19', '2015-03-08 21:29:19');
INSERT INTO `tb_item` VALUES ('1232502', '一加(A0001)16GB 砂岩黑 JBL定制版 移动4G手机', '配套JBL E1+耳机!骁龙801处理器+3GB RAM!此商品不能使用京券、东券、不能开具增值税发票!', '219900', '99999', null, 'http://image.taotao.com/jd/0040beaee12b4da8a3456bc897163b09.jpg', '560', '1', '2015-03-08 21:28:01', '2015-03-08 21:28:01');
INSERT INTO `tb_item` VALUES ('1232728', '三星 Galaxy S4 (I9500)16G版 镜湖蓝 联通3G手机', '三星经典旗舰机!5英寸1080P高清屏+双四核+2GB RAM+1300万像素主摄像头', '179900', '99999', null, 'http://image.taotao.com/jd/071018c764414f9fa40930dfe6c25473.jpg', '560', '1', '2015-03-08 21:28:44', '2015-03-08 21:28:44');
INSERT INTO `tb_item` VALUES ('1234343', '创维酷开(coocaa)U55 55英寸智能酷开系统 4K超高清平板液晶电视(白色)', '酷开新品,原装LG 4K IPS硬屏,智能酷开系统,八核处理器,一体式座挂架!<a target=\"blank\" href=\"http://jmall.jd.com/p117514.html\">“猛戳这里,更多惊喜”</a>', '449900', '99999', null, 'http://image.taotao.com/jd/3b1ba39321b84873aef9a518a99a8995.jpg', '76', '1', '2015-03-08 21:27:35', '2015-03-08 21:27:35');
INSERT INTO `tb_item` VALUES ('1235584', '诺基亚(NOKIA) Lumia 830 (RM-984) 绿色 联通3G手机', '诺记年度力作,内置智能中文Cortana软件,陪你生活点滴,更精美外观,PureView镜头!', '159900', '99999', null, 'http://image.taotao.com/jd/efc07d3391b84504b449bcc72aa43384.jpg', '560', '1', '2015-03-08 21:27:54', '2015-03-08 21:27:54');
INSERT INTO `tb_item` VALUES ('1235589', '诺基亚(NOKIA) Lumia 830 (RM-984) 白色 联通3G手机', '诺记年度力作,内置智能中文Cortana软件,陪你生活点滴,更精美外观,PureView镜头!', '159900', '99999', null, 'http://image.taotao.com/jd/c22656b57471414490147d8e2baa229c.jpg', '560', '1', '2015-03-08 21:27:49', '2015-03-08 21:27:49');
INSERT INTO `tb_item` VALUES ('1235590', '诺基亚(NOKIA) Lumia 830 (RM-984) 黑色 联通3G手机', '诺记年度力作,内置智能中文Cortana软件,陪你生活点滴,更精美外观,PureView镜头!', '159900', '99999', null, 'http://image.taotao.com/jd/a62fe3b64b384c9fbe81f6256b3f5441.jpg', '560', '1', '2015-03-08 21:27:49', '2015-03-08 21:27:49');
INSERT INTO `tb_item` VALUES ('1235910', '海信 E360M (心意) 白色 移动3G手机', '给父母的心意!一键关爱!', '89900', '99999', null, 'http://image.taotao.com/jd/3be429a818094946b35c226f8e2beb38.jpg', '560', '1', '2015-03-08 21:29:39', '2015-03-08 21:29:39');
INSERT INTO `tb_item` VALUES ('1236190', 'HTC Desire 820u 镶蓝白 移动联通4G手机 双卡双待', '8核64位手机!!双4G手机!5.5英寸屏!你的极速之选!!', '179800', '99999', null, 'http://image.taotao.com/jd/a814d5e489a842efb15cfa3e2c7b9015.jpg', '560', '1', '2015-03-08 21:27:42', '2015-03-08 21:27:42');
INSERT INTO `tb_item` VALUES ('1236191', 'HTC Desire 820u 镶蓝灰 移动联通4G手机 双卡双待', '高通8核64位手机!!双4G手机!5.5英寸屏!你的极速之选!!<a target=\"blank\" href=\"http://sale.jd.com/act/8veDaZup1RbA.html\">HTC 旗舰抢购,走起!</a>', '179800', '99999', null, 'http://image.taotao.com/jd/a3c18694a66342c1b6882d13606ff938.jpg', '560', '1', '2015-03-08 21:27:49', '2015-03-08 21:27:49');
INSERT INTO `tb_item` VALUES ('1236657', '海信(Hisense)LED32EC290N 32英寸 Vision3.0 智能电视 六核顶配 WIFI(泰坦灰)', '<a target=\"blank\" href=\"http://sale.jd.com/act/YykdEtrMRaSsT.html\">“春宵一刻值千金”</a>', '164900', '99999', null, 'http://image.taotao.com/jd/5128d91ec2c748daa66a48d20464b1f0.jpg', '76', '1', '2015-03-08 21:27:39', '2015-03-08 21:27:39');
INSERT INTO `tb_item` VALUES ('1236659', '海信(Hisense)LED42EC290N 42英寸 Vision3.0 智能电视 六核顶配 WIFI(泰坦灰)', '<a target=\"blank\" href=\"http://sale.jd.com/act/YykdEtrMRaSsT.html\">“春宵一刻值千金”</a>', '259900', '99999', null, 'http://image.taotao.com/jd/4abf0ea233a24bfebcbf7fe28f999f89.jpg', '76', '1', '2015-03-08 21:27:35', '2015-03-08 21:27:35');
INSERT INTO `tb_item` VALUES ('1237968', '三星 SM-G5108Q 白色 移动联通4G手机 双卡双待', '下单就送!10400毫安移动电源!', '149900', '99999', null, 'http://image.taotao.com/jd/5ed11dde39114616b56777f92cfcdace.jpg', '560', '1', '2015-03-08 21:27:49', '2015-03-08 21:27:49');
INSERT INTO `tb_item` VALUES ('1238305', 'HTC Desire 820t 镶蓝白 移动4G手机 双卡双待', '高通8核64位CPU 比想象更快!5.5吋Super LCD高清大屏!1300万+800万摄像头!', '169900', '99999', null, 'http://image.taotao.com/jd/aab365f92a1d447191900fb187eb55e0.jpg', '560', '1', '2015-03-08 21:29:19', '2015-03-08 21:29:19');
INSERT INTO `tb_item` VALUES ('1238306', 'HTC Desire 820t 镶蓝灰 移动4G手机 双卡双待', '高通8核64位CPU手机,比想象更快!5.5吋Super LCD高清大屏!1300万+800万摄像头!', '169900', '99999', null, 'http://image.taotao.com/jd/bb289c7dd2d24b9784a2232ef00631b6.jpg', '560', '1', '2015-03-08 21:29:19', '2015-03-08 21:29:19');
INSERT INTO `tb_item` VALUES ('1238591', 'KKTV LED48K70S 48英寸极速8核安卓智能网络云电视(黑色)', '大板48英寸智能神机 !好评发售中!', '259900', '99999', null, 'http://image.taotao.com/jd/b078f0ed02e04613bfeb664822598f3e.jpg', '76', '1', '2015-03-08 21:27:35', '2015-03-08 21:27:35');
INSERT INTO `tb_item` VALUES ('1239165', '长虹(CHANGHONG)LED39B2080n 39英寸极窄边网络LED液晶电视(黑色)', '内置wifi,畅享网络!<a target=\"blank\" href=\"http://sale.jd.com/act/Kt0aHzbU7uR1M.html\">“去长虹新年专场”</a>', '189900', '99999', null, 'http://image.taotao.com/jd/8e41937295654b0683666ec8e0aa3ae0.jpg', '76', '1', '2015-03-08 21:27:35', '2015-03-08 21:27:35');
INSERT INTO `tb_item` VALUES ('1239918', '联想 X2-TO 16G 白色 移动4G手机 双卡双待', '5吋八核2.0GHz,1300+500像素,耀色倾城!', '199900', '99999', null, 'http://image.taotao.com/jd/58ee360768774763812a90ba49fda79f.jpg', '560', '1', '2015-03-08 21:29:27', '2015-03-08 21:29:27');
INSERT INTO `tb_item` VALUES ('1240009', '长虹(CHANGHONG)LED42538N 42英寸窄边网络LED液晶电视(黑色)', '超窄边,节能,多屏分享,高度还原色彩,高清视觉新境界,动态降噪,环绕立体声<a target=\"blank\" href=\"http://sale.jd.com/act/Kt0aHzbU7uR1M.html\">“去长虹新年专场”</a>', '219900', '99999', null, 'http://image.taotao.com/jd/d40d0f332d714deeb6a1357a9203a280.jpg', '76', '1', '2015-03-08 21:27:39', '2015-03-08 21:27:39');
INSERT INTO `tb_item` VALUES ('1240133', '飞利浦(PHILIPS)65PDL960/T3 65英寸 超清曲面 4K 3D智能电视', '旗舰机型,流光溢彩,超清曲面,多项高端技术集于一身!点击下方套餐买大送小!<a href=\'http://sq.jd.com/zM2aZs\' target=\'_blank\'>飞利浦健康舒适蓝,预约参加抽奖赢电视!</a>', '2499900', '99999', null, 'http://image.taotao.com/jd/767e08c4495e4e53a9cc64e56cdc08b9.jpg', '76', '1', '2015-03-08 21:28:08', '2015-03-08 21:28:08');
INSERT INTO `tb_item` VALUES ('1240141', '酷派 大神 F1(8297-C00) 智尚白 电信4G手机 双卡双待', '4G神器!1300万+500万像素摄像头!流畅操控体验!热卖ing!', '83800', '99999', null, 'http://image.taotao.com/jd/bc61334c4bdc4d37acedc5528f7c6ed0.jpg', '560', '1', '2015-03-08 21:27:42', '2015-03-08 21:27:42');
INSERT INTO `tb_item` VALUES ('1240265', '【联通0元购机】苹果(Apple)iPhone6(A1586)16G 深空灰色 移动联通电信4G手机', '数量有限,欲购从速!', '549900', '99999', null, 'http://image.taotao.com/jd/7a19e634053e41da8f88894c0ec77b26.jpg', '560', '1', '2015-03-08 21:30:29', '2015-03-08 21:30:29');
INSERT INTO `tb_item` VALUES ('1240268', '【联通0元购机】苹果(Apple)iPhone6(A1586)16G 金色 移动联通电信4G手机', '数量有限,欲购从速!', '529900', '99999', null, 'http://image.taotao.com/jd/c0827fd3634b4966b64dbdf2d7b92b9b.jpg', '560', '1', '2015-03-08 21:29:11', '2015-03-08 21:29:11');
INSERT INTO `tb_item` VALUES ('1240271', '【联通0元购机】苹果(Apple)iPhone6(A1586)16G 银色 移动联通电信4G手机', '数量有限,欲购从速!', '549900', '99999', null, 'http://image.taotao.com/jd/74ab673756b54eddadaf1bd2fb9c0de7.jpg', '560', '1', '2015-03-08 21:30:12', '2015-03-08 21:30:12');
INSERT INTO `tb_item` VALUES ('1240275', '【联通0元购机】苹果(Apple)iPhone6 Plus(A1524)16G 金色 移动联通电信4G手机', '数量有限,欲购从速!', '629900', '99999', null, 'http://image.taotao.com/jd/a8ced396b9b043b0b8bbe6b583a9100b.jpg', '560', '1', '2015-03-08 21:29:39', '2015-03-08 21:29:39');
INSERT INTO `tb_item` VALUES ('1240276', '【联通0元购机】苹果(Apple)iPhone6 Plus(A1524)16G 银色 移动联通电信4G手机', '数量有限,欲购从速!', '629900', '99999', null, 'http://image.taotao.com/jd/13b4651b9fc84ade93f7bd58680dc2fc.jpg', '560', '1', '2015-03-08 21:29:54', '2015-03-08 21:29:54');
INSERT INTO `tb_item` VALUES ('1240277', '【联通0元购机】苹果(Apple)iPhone6(A1586)64G 金色 移动联通电信4G手机', '', '629900', '99999', null, 'http://image.taotao.com/jd/9c796a8b5e71465e89c401c7966ef394.jpg', '560', '1', '2015-03-08 21:28:55', '2015-03-08 21:28:55');
INSERT INTO `tb_item` VALUES ('1240278', '【联通0元购机】苹果(Apple)iPhone6 Plus(A1524)16G 深空灰色 移动联通电信4G手机', '数量有限,欲购从速!', '629900', '99999', null, 'http://image.taotao.com/jd/e1214fab15f94c7cb48086d55a179309.jpg', '560', '1', '2015-03-08 21:30:20', '2015-03-08 21:30:20');
INSERT INTO `tb_item` VALUES ('1240280', '【联通0元购机】苹果(Apple)iPhone6 Plus(A1524)64G 深空灰色 移动联通电信4G手机', '数量有限,欲购从速!', '709900', '99999', null, 'http://image.taotao.com/jd/05d3a96b70334687b608f4917d2ab03e.jpg', '560', '1', '2015-03-08 21:30:20', '2015-03-08 21:30:20');
INSERT INTO `tb_item` VALUES ('1240281', '【联通0元购机】苹果(Apple)iPhone6 Plus(A1524)64G 银色 移动联通电信4G手机', '数量有限,欲购从速!', '709900', '99999', null, 'http://image.taotao.com/jd/bc9d1f01d1254ede91860cf9f8d4869b.jpg', '560', '1', '2015-03-08 21:29:47', '2015-03-08 21:29:47');
INSERT INTO `tb_item` VALUES ('1240282', '【联通0元购机】苹果(Apple)iPhone6 Plus(A1524) 64G 金色 移动联通电信4G手机', '数量有限,欲购从速!', '709900', '99999', null, 'http://image.taotao.com/jd/4ea9059a6adb4f0f8e1cfe4e4c3de414.jpg', '560', '1', '2015-03-08 21:29:19', '2015-03-08 21:29:19');
INSERT INTO `tb_item` VALUES ('1240303', '【联通0元购机】苹果(Apple)iPhone6 Plus (A1524)64G 深空灰色 移动联通电信4G手机', '', '709900', '99999', null, 'http://image.taotao.com/jd/1b79b0f3b8774dce8a74f33753201360.jpg', '560', '1', '2015-03-08 21:33:18', '2015-03-08 21:33:18');
INSERT INTO `tb_item` VALUES ('1241171', '【联通0元购机】苹果(Apple)iPhone6(A1586)64G 银色 移动联通电信4G手机', '', '629900', '99999', null, 'http://image.taotao.com/jd/9d0518c392314a69b1e4043a583172ae.jpg', '560', '1', '2015-03-08 21:29:27', '2015-03-08 21:29:27');
INSERT INTO `tb_item` VALUES ('1241591', '三星 Galaxy S4 (I9508V) 银白 移动4G手机', '支持TD-LTE 4G网络!5.0英寸全高清屏,2.3GHz四核处理器,16GB ROM+2GB RAM', '244900', '99999', null, 'http://image.taotao.com/jd/b299bd5588ab4384a3c0525fbb698abd.jpg', '560', '1', '2015-03-08 21:27:42', '2015-03-08 21:27:42');
INSERT INTO `tb_item` VALUES ('1241599', '【合约版】荣耀 6(H60-L01)低配版 黑色 移动4G手机', '北京移动合约不换号返话费,少量货源,抢到就是赚到!<a target=\"blank\" href=\"http://sale.jd.com/act/5xPZsLtCbFTcYVD.html\">【更多选择请点击北京移动合约专场】</a>', '179900', '99999', null, 'http://image.taotao.com/jd/2323f226d57c44e4a2dd54d37726000d.jpg', '560', '1', '2015-03-08 21:28:16', '2015-03-08 21:28:16');
INSERT INTO `tb_item` VALUES ('1241863', '百加 (100+) V6 32G版 银润 联通3G手机 双卡双待', '5.5英寸FHD高清屏,八核处理器,2G+32G超大内存,1300+500万摄像头!', '88800', '99999', null, 'http://image.taotao.com/jd/f96bdaa4276f41e295a3d6f2a444fdc1.jpg', '560', '1', '2015-03-08 21:28:16', '2015-03-08 21:28:16');
INSERT INTO `tb_item` VALUES ('1241864', '百加 (100+) V6 32G版 瓷白 联通3G手机 双卡双待', '5.5英寸FHD高清屏,八核处理器,2G+32G超大内存,1300+500万摄像头!', '78900', '99999', null, 'http://image.taotao.com/jd/238a35f5d9564e038f0db0501dacfa1e.jpg', '560', '1', '2015-03-08 21:28:09', '2015-03-08 21:28:09');
INSERT INTO `tb_item` VALUES ('1241867', '百加 (100+) V6 32G版 铁韵 联通3G手机 双卡双待', '5.5英寸FHD高清屏,八核处理器,2G+32G超大内存,1300+500万摄像头!', '88800', '99999', null, 'http://image.taotao.com/jd/25d21e724b424ff483fe1a4a1b059602.jpg', '560', '1', '2015-03-08 21:28:09', '2015-03-08 21:28:09');
INSERT INTO `tb_item` VALUES ('1242384', 'TCL D40A810 40英寸海量爱奇艺正版视频内置wifi安卓智能云液晶电视(珠光黑)', '【0元献礼】1秒看大片,超快感神器!爱奇艺VIP,手机直推,畅爽新鲜。珠光黑色典雅外观。<a target=\"blank\" href=\"http://sale.jd.com/act/6MqRytIYKfn.html\">【0元白条试用,1001个拜年计划】</a>', '229900', '99999', null, 'http://image.taotao.com/jd/e50316c38df84ca4a19c3f8d95f30ecc.jpg', '76', '1', '2015-03-08 21:27:39', '2015-03-08 21:27:39');
INSERT INTO `tb_item` VALUES ('1242386', 'TCL D32A810 32英寸海量爱奇艺正版视频内置wifi安卓智能云液晶电视(珠光黑)', '【0元献礼】1秒看大片,超快感神器!畅爽新鲜。珠光黑色典雅外观。<a target=\"blank\" href=\"http://sale.jd.com/act/6MqRytIYKfn.html\">【0元白条试用,1001个拜年计划】</a>', '169900', '99999', null, 'http://image.taotao.com/jd/d24286a0e6314299b8f2f15bf71e1c4e.jpg', '76', '1', '2015-03-08 21:27:45', '2015-03-08 21:27:45');
INSERT INTO `tb_item` VALUES ('1242910', '东芝(TOSHIBA)55L3305CS 55英寸 wifi网络 3D液晶电视(黑色)', '家装给家里换台大屏电视吧!55英寸客厅完美选择!', '499900', '99999', null, 'http://image.taotao.com/jd/4a33f8722e69496d8b1ef99d920cb7c8.jpg', '76', '1', '2015-03-08 21:27:45', '2015-03-08 21:27:45');
INSERT INTO `tb_item` VALUES ('1243135', '华为 C8817E 白 电信4G手机', '天翼4G来袭,5英寸高清大屏,四核1.2GHz处理器,仿皮纹理机身设计,微距拍照,留声拍照!<a target=\"blank\" href=\"http://sale.jd.com/act/0akd8u5vomz.html\">【买卡上京东,省钱又轻松】点击有惊喜! </a>', '82900', '99999', null, 'http://image.taotao.com/jd/5644fdfe2f6e45eeb020352d8d3120aa.jpg', '560', '1', '2015-03-08 21:28:09', '2015-03-08 21:28:09');
INSERT INTO `tb_item` VALUES ('1243598', '金立 S5.5L (GN9000L) 黑色 移动4G手机', '清仓!仅北京仓有货!超薄智能手机,高通四核!', '169900', '99999', null, 'http://image.taotao.com/jd/12d6057c5ea74b2892408c202a1bd67c.jpg', '560', '1', '2015-03-08 21:33:18', '2015-03-08 21:33:18');
INSERT INTO `tb_item` VALUES ('1247015', 'LG G3 (D728) Beat 月光白 移动4G手机 双卡双待双通', '可升级安卓5.0操作系统,5英寸高清大屏,高通四核处理器!荣获2014中国好手机年度大奖!<a target=\"blank\" href=\"http://sale.jd.com/act/kdNK4e8PAbHyX6.html\">LG G3特惠抢购2999元,十万豪礼等你拿!</a>', '159900', '99999', null, 'http://image.taotao.com/jd/053b156d5b5e4669b8af7f94ba83f563.jpg', '560', '1', '2015-03-08 21:28:44', '2015-03-08 21:28:44');
INSERT INTO `tb_item` VALUES ('1247118', '飞利浦(PHILIPS)40PFL6340/T3 40英寸 4K超高清智能电视', '搭载芒果TV的4K智能电视,支持4K片源USB播放!30天价保,热线400-656-1000!<a href=\'http://sq.jd.com/zM2aZs\' target=\'_blank\'>飞利浦健康舒适蓝,预约参加抽奖赢电视!</a>', '279900', '99999', null, 'http://image.taotao.com/jd/86458e51a4814860a796b5a0cbcd2dbe.jpg', '76', '1', '2015-03-08 21:27:39', '2015-03-08 21:27:39');
INSERT INTO `tb_item` VALUES ('1247121', '飞利浦(PHILIPS)49PFL3445/T3 49英寸 全高清LED液晶电视(黑色)', '阅影闻声,明智之选!30天价保,价保热线400-656-1000!<a href=\'http://sq.jd.com/zM2aZs\' target=\'_blank\'>飞利浦健康舒适蓝,预约参加抽奖赢电视!</a>', '299900', '99999', null, 'http://image.taotao.com/jd/a8098b9129234fd6a9aed80b8769ff15.jpg', '76', '1', '2015-03-08 21:27:45', '2015-03-08 21:27:45');
INSERT INTO `tb_item` VALUES ('1247724', '【合约版】苹果(APPLE)iPhone 6 A1589 16G版 移动4G手机 银色', '北京移动用户独享,买手机返流量、话费,敬请参阅以下页面介绍<a target=\"blank\" href=\"http://sale.jd.com/act/5xPZsLtCbFTcYVD.html\"><font color=green> 移动合约专场,不换号,不限套餐,承诺低消返话费,速度围观</font></a>', '498800', '99999', null, 'http://image.taotao.com/jd/1f189eff8e984930bfc23bc89ef19ad7.jpg', '560', '1', '2015-03-08 21:28:30', '2015-03-08 21:28:30');
INSERT INTO `tb_item` VALUES ('1247739', '【合约版】苹果(APPLE)iPhone 6 A1589 16G版 移动4G手机 金色', '北京移动用户独享,不换号,买手机返话费,敬请参阅以下页面介绍~<a target=\"blank\" href=\"http://sale.jd.com/act/5xPZsLtCbFTcYVD.html\"><font color=blue> 北京移动合约专场,速度围观,快来点我,点我</font></a>', '498800', '99999', null, 'http://image.taotao.com/jd/0f0b495bbda24a2ca1e5c3e8ead5c400.jpg', '560', '1', '2015-03-08 21:28:09', '2015-03-08 21:28:09');
INSERT INTO `tb_item` VALUES ('1248110', '海尔统帅(Leader)TS55K 55英寸安卓8核智能网络蓝光超薄窄边框全高清LED液晶电视', '海尔出品,55英寸8核处理器智能电视劲爆抢购!画面清晰,绚丽!<a target=\"blank\" href=\"http://sale.jd.com/act/8gRdKlrw6bkD.html\">要实惠,就点我</a>', '389900', '99999', null, 'http://image.taotao.com/jd/47c19163364e44f194a40603d8d785c0.jpg', '76', '1', '2015-03-08 21:28:08', '2015-03-08 21:28:08');
INSERT INTO `tb_item` VALUES ('1248112', '海尔统帅(Leader)TS58 58英寸流媒体超薄窄边框蓝光全高清LED液晶电视', '【年货爆品】送价值999元专用音箱1台!海尔出品,58英寸大屏电视,超高性价比,五星级售后。底座需另购<a target=\"blank\" href=\"http://sale.jd.com/act/8gRdKlrw6bkD.html\">更多惊喜→_→点我</a>', '409900', '99999', null, 'http://image.taotao.com/jd/72d46402f5c84915b4692946a8ae31d5.jpg', '76', '1', '2015-03-08 21:27:45', '2015-03-08 21:27:45');
INSERT INTO `tb_item` VALUES ('1249266', 'LG G3 (D728) Beat 钛金黑 移动4G手机 双卡双待双通', '可升级安卓5.0操作系统,5英寸高清大屏,高通四核处理器!荣获2014中国好手机年度大奖!<a target=\"blank\" href=\"http://sale.jd.com/act/kdNK4e8PAbHyX6.html\">LG G3特惠抢购2999元,十万豪礼等你拿!</a>', '159900', '99999', null, 'http://image.taotao.com/jd/8ed4e8023503446294426da68dfd4639.jpg', '560', '1', '2015-03-08 21:28:44', '2015-03-08 21:28:44');
INSERT INTO `tb_item` VALUES ('1250598', '荣耀 6 (H60-L21) 尊享版 白色 移动4G手机', '搭载麒麟928极速处理器,体验来自内心的力量;尊享精雕细琢、科技之美!', '299900', '99999', null, 'http://image.taotao.com/jd/87ad83886caf412482548a8fe35afbea.jpg', '560', '1', '2015-03-08 21:27:54', '2015-03-08 21:27:54');
INSERT INTO `tb_item` VALUES ('1251088', '联想 S668T 8G 钛金灰 移动3G手机 双卡双待', '商务经典,金属拉丝后壳!4.7英寸超舒适手感!超值性价比!', '53900', '99999', null, 'http://image.taotao.com/jd/8f3d88e0ba394e1d934d7374ddb857b7.jpg', '560', '1', '2015-03-08 21:28:16', '2015-03-08 21:28:16');
INSERT INTO `tb_item` VALUES ('1251344', '中兴 Q802D 深海蓝 电信4G手机 双卡双待', '千元4G拍照神器!5.0吋大屏,500W前置摄像头,还带NFC!', '59900', '99999', null, 'http://image.taotao.com/jd/5335d95b0a684bb192f2ea14ca376f5f.jpg', '560', '1', '2015-03-08 21:28:01', '2015-03-08 21:28:01');
INSERT INTO `tb_item` VALUES ('1252505', 'E人E本 M1 星空黑 移动联通4G手机', '送蓝牙耳机+移动电源!一部带钥匙的手机,再也不怕手机丢失,隐私不泄露!', '698000', '99999', null, 'http://image.taotao.com/jd/0aaf472590c2496ba9536f1d93020a65.jpg', '560', '1', '2015-03-08 21:29:47', '2015-03-08 21:29:47');
INSERT INTO `tb_item` VALUES ('1252755', '海尔统帅(Leader)TL-S2131 音箱', '', '99900', '99999', null, 'http://image.taotao.com/jd/5a7e5aa190c04683b51f229478e183e9.jpg', '76', '1', '2015-03-08 21:28:18', '2015-03-08 21:28:18');
INSERT INTO `tb_item` VALUES ('1252793', '三星(SAMSUNG)UA55HU5903J 55英寸 4K超高清智能LED电视 黑色', '4K极清首选三星!在京东购买4K的用户有35%选择三星4K!<a target=\"blank\" href=\"http://sale.jd.com/act/4V6DHtgrMZm.html\">更多优惠,点我!</a>', '639900', '99999', null, 'http://image.taotao.com/jd/47f61c2e64894e65aa7a03ef11211655.jpg', '76', '1', '2015-03-08 21:27:35', '2015-03-08 21:27:35');
INSERT INTO `tb_item` VALUES ('1254093', 'TCL D55A561U 55英寸X-TV内置WIFI安卓4K超高清液晶智能云电视(黑色)', '【0元献礼】销售额过亿单品,绝对爆款。3M膜真4K。赶紧秒~咚咚咨询TCL客服,还有惊喜!<a target=\"blank\" href=\"http://sale.jd.com/act/6MqRytIYKfn.html\">【0元白条试用,1001个拜年计划】</a>', '529900', '99999', null, 'http://image.taotao.com/jd/f39eb92fc8a04afaa08627eb79ee43b7.jpg', '76', '1', '2015-03-08 21:27:45', '2015-03-08 21:27:45');
INSERT INTO `tb_item` VALUES ('1255161', '酷派 8732 智尚白 移动4G手机 双卡双待', '5.5英寸超大屏幕!骁龙四核双卡,1300万像素,2500mAh持久续航!', '69900', '99999', null, 'http://image.taotao.com/jd/5f0be94568434672b196ebb06ed758f0.jpg', '560', '1', '2015-03-08 21:30:03', '2015-03-08 21:30:03');
INSERT INTO `tb_item` VALUES ('1256542', '中兴 小鲜 (A880) 智尚白 电信4G手机 双卡双待', '劲爆特价!前置800W高清摄像头,自带超大广角自拍功能!', '68900', '99999', null, 'http://image.taotao.com/jd/688b6f9a8ebf41e39b72ee3d6d3cde13.jpg', '560', '1', '2015-03-08 21:27:49', '2015-03-08 21:27:49');
INSERT INTO `tb_item` VALUES ('1256714', '索尼(SONY)KDL-40R480B 40英寸LED高清液晶电视', '超高性价比来袭!40RM10无货区域的朋友可选购此机型!给您更多的选择,同样的品质,同样的精彩!索尼品质,值得信赖!', '279900', '99999', null, 'http://image.taotao.com/jd/cbf14ef1e8764622905d7618a9c8c326.jpg', '76', '1', '2015-03-08 21:27:35', '2015-03-08 21:27:35');
INSERT INTO `tb_item` VALUES ('1256719', '夏普声宝(SUNGPO) 50A11A 50英寸全高清安卓智能液晶电视 红色', '夏普子品牌 专为年轻人定制!时尚外观 安卓4.2 百事通点播 开启多彩生活!夏普制造 品质保障!<a target=\"blank\" href=\"http://item.jd.com/1256721.html\">还有深邃黑色款供您选择!</a>', '339900', '99999', null, 'http://image.taotao.com/jd/b7bffc459bef467c888e1c66262a3afb.jpg', '76', '1', '2015-03-08 21:28:00', '2015-03-08 21:28:00');
INSERT INTO `tb_item` VALUES ('1256720', '夏普声宝(SUNGPO) 50A11A 50英寸全高清安卓智能液晶电视 白色', '夏普子品牌 专为年轻人定制!时尚外观 安卓4.2 百事通点播 开启多彩生活!夏普制造 品质保障!<a target=\"blank\" href=\"http://item.jd.com/1256719.html\">还有热情红色款供您选择!</a>', '339900', '99999', null, 'http://image.taotao.com/jd/7f396676730c4b98994b140a5d3fd762.jpg', '76', '1', '2015-03-08 21:27:45', '2015-03-08 21:27:45');
INSERT INTO `tb_item` VALUES ('1256721', '夏普声宝(SUNGPO) 50A11A 50英寸全高清安卓智能液晶电视 黑色', '夏普子品牌 专为年轻人定制!时尚外观 安卓4.2 百事通点播 开启多彩生活!夏普制造 品质保障!<a target=\"blank\" href=\"http://item.jd.com/1256720.html\">还有靓丽白色款供您选择!</a>', '339900', '99999', null, 'http://image.taotao.com/jd/f862d0cce07e4c978453b212416fb5bc.jpg', '76', '1', '2015-03-08 21:27:39', '2015-03-08 21:27:39');
INSERT INTO `tb_item` VALUES ('1256722', '夏普声宝(SUNGPO) 40A11A 40英寸全高清安卓智能液晶电视 红色', '夏普子品牌 专为年轻人定制!时尚外观 安卓4.2 百事通点播 开启多彩生活!夏普制造 品质保障!<a target=\"blank\" href=\"http://item.jd.com/1256723.html\">还有深邃黑色款供您选择!</a>', '259900', '99999', null, 'http://image.taotao.com/jd/41006565f87b4941b400342f8436963e.jpg', '76', '1', '2015-03-08 21:28:08', '2015-03-08 21:28:08');
INSERT INTO `tb_item` VALUES ('1256723', '夏普声宝(SUNGPO) 40A11A 40英寸全高清安卓智能液晶电视 黑色', '夏普子品牌 专为年轻人定制!时尚外观 安卓4.2 百事通点播 开启多彩生活!夏普制造 品质保障!<a target=\"blank\" href=\"http://item.jd.com/1256721.html\">还有50英寸50A11A黑色供您选择!</a>', '259900', '99999', null, 'http://image.taotao.com/jd/6c53960030a341b8ad6f084b9f659cd2.jpg', '76', '1', '2015-03-08 21:27:39', '2015-03-08 21:27:39');
INSERT INTO `tb_item` VALUES ('1256724', '夏普声宝(SUNGPO) 40A11A 40英寸全高清安卓智能液晶电视 白色', '夏普子品牌 专为年轻人定制!时尚外观 安卓4.2 百事通点播 开启多彩生活!夏普制造 品质保障!<a target=\"blank\" href=\"http://item.jd.com/1256722.html\">还有热情红色款供您选择!</a>', '259900', '99999', null, 'http://image.taotao.com/jd/9658c20f58054c7a900b3727f2ca4f52.jpg', '76', '1', '2015-03-08 21:28:00', '2015-03-08 21:28:00');
INSERT INTO `tb_item` VALUES ('1257555', '海尔统帅(Leader)TS48 48英寸安卓8核智能网络蓝光超薄窄边框全高清LED液晶电视', '8核智能电视劲爆价抢!手快有!手慢无!<a target=\"blank\" href=\"http://sale.jd.com/act/8gRdKlrw6bkD.html\">要实惠,就点我</a>', '259900', '99999', null, 'http://image.taotao.com/jd/9a8bb22254c64b49a12e63cba7bfeac0.jpg', '76', '1', '2015-03-08 21:28:00', '2015-03-08 21:28:00');
INSERT INTO `tb_item` VALUES ('1257557', '海尔模卡(MOOKA)U50H7E 50英寸安卓3D智能8核网络4K超薄窄边框UHD超高清LED液晶电视', '50英寸4K电视,8核处理器!尽享视觉盛筵【底座眼镜需另购】<a target=\"blank\" href=\"http://sale.jd.com/act/vfQlPDUkRy8zO3b.html\">海尔模卡4K节,更多惊喜请点击!</a>', '369900', '99999', null, 'http://image.taotao.com/jd/528c7172647141cba000b8f23be8a652.jpg', '76', '1', '2015-03-08 21:27:45', '2015-03-08 21:27:45');
INSERT INTO `tb_item` VALUES ('1257558', '海尔模卡(MOOKA)55A5J 55英寸安卓智能网络超薄窄边框全高清LED液晶电视', '[爆款抢购]海尔出品,五星级售后!大屏画面、尽享视觉盛筵!抢货趁早!<a target=\"blank\" href=\"http://sale.jd.com/act/vfQlPDUkRy8zO3b.html\">更多爆品!</a>', '349900', '99999', null, 'http://image.taotao.com/jd/c0055e84d4274572b75d761cb59e57f6.jpg', '76', '1', '2015-03-08 21:27:39', '2015-03-08 21:27:39');
INSERT INTO `tb_item` VALUES ('1258012', '酷派 大神 F2 (8675-W00) 智尚白 联通版4G手机 双卡双待', '现货发售!高通八核高速CPU,5.5吋屏,2+16G内存,双卡双待!<a target=\"blank\" href=\"http://item.jd.com/1199748.html\">F2套装版大让利,就是这么任性,等你来!</a>', '99900', '99999', null, 'http://image.taotao.com/jd/90164fc7eaeb4aebabcd634920743699.jpg', '560', '1', '2015-03-08 21:27:42', '2015-03-08 21:27:42');
INSERT INTO `tb_item` VALUES ('1258204', '三星 SM-G5308W 白色 移动4G手机 双卡双待', '4G新品!5英寸大屏,500W前置摄像头!双卡双待,工作生活两不误!', '126800', '99999', null, 'http://image.taotao.com/jd/c5bdc9e18d3d41aa999117643e1c8914.jpg', '560', '1', '2015-03-08 21:27:37', '2015-03-08 21:27:37');
INSERT INTO `tb_item` VALUES ('1258277', '创维酷开(coocaa)K50J 50英寸智能酷开系统 八核网络平板液晶电视(黑色)', '京东专供,50吋京东爆款,买即得360元1年好莱坞影视资源服务费!<a target=\"blank\" href=\"http://jmall.jd.com/p117514.html\">“猛戳这里,更多惊喜”</a>', '279900', '99999', null, 'http://image.taotao.com/jd/61b63f698eb241e4836d1e791532a296.jpg', '76', '1', '2015-03-08 21:27:35', '2015-03-08 21:27:35');
INSERT INTO `tb_item` VALUES ('1258278', '创维(Skyworth)LED 43S9 43英寸 智能酷开系统网络平板液晶电视(咖啡金)', '好评晒单返话费50元!原装进口IPS硬屏,支持待机WiFi热点,搭载专为电视而开发的酷开系统!<a target=\"blank\" href=\"http://jmall.jd.com/p117514.html\">“猛戳这里,更多惊喜”</a>', '259900', '99999', null, 'http://image.taotao.com/jd/e089a700db0f471b94db77dd5f4c658a.jpg', '76', '1', '2015-03-08 21:27:39', '2015-03-08 21:27:39');
INSERT INTO `tb_item` VALUES ('1258720', '海信(Hisense)LED50EC590UN 50英寸 RGB真4K超清 智能电视 十核顶配 双天线WIFI(黑色)', '<a target=\"blank\" href=\"http://sale.jd.com/act/YykdEtrMRaSsT.html\">“春宵一刻值千金”</a>', '429900', '99999', null, 'http://image.taotao.com/jd/9a0693b6e6484860bac9d860bdb87bfc.jpg', '76', '1', '2015-03-08 21:27:35', '2015-03-08 21:27:35');
INSERT INTO `tb_item` VALUES ('1259396', 'LG 55GB6310 55英寸 安卓智能LED液晶电视', '安卓智能,极窄边框,动感应遥控器!IPS硬屏,为您呈现完美画质!', '559900', '99999', null, 'http://image.taotao.com/jd/e06e3c75953e4e75bc415d753fc4a5e3.jpg', '76', '1', '2015-03-08 21:28:00', '2015-03-08 21:28:00');
INSERT INTO `tb_item` VALUES ('1259481', '三星 SM-G5108Q 灰色 移动联通4G手机 双卡双待', '下单就送!10400毫安移动电源!', '149900', '99999', null, 'http://image.taotao.com/jd/40a19c7429824680b85a17b95d683c95.jpg', '560', '1', '2015-03-08 21:28:09', '2015-03-08 21:28:09');
INSERT INTO `tb_item` VALUES ('1259899', '联想 笋尖 S90 (S90-t) 16GB 宝石银 移动4G手机 双卡双待', '联想S90,比美更美,超强自拍神器!超薄时尚金属机身!', '169900', '99999', null, 'http://image.taotao.com/jd/86c613b5f44a411b88d0c13abe4be16a.jpg', '560', '1', '2015-03-08 21:28:44', '2015-03-08 21:28:44');
INSERT INTO `tb_item` VALUES ('1260437', '【合约版】魅族 MX4 移动4G手机 灰色 16G版', '北京移动合约不换号返话费!<a target=\"blank\" href=\"http://sale.jd.com/act/5xPZsLtCbFTcYVD.html\">【更多选择请点击北京移动合约专场】</a>', '179900', '99999', null, 'http://image.taotao.com/jd/48b1dc07d7e243dab12bbda0f563d763.jpg', '560', '1', '2015-03-08 21:28:30', '2015-03-08 21:28:30');
INSERT INTO `tb_item` VALUES ('1260440', '【合约版】三星 Galaxy Note4 N9108V 移动4G手机 幻影白', '北京移动合约不换号返话费,少量货源,下单有惊喜!<a target=\"blank\" href=\"http://sale.jd.com/act/5xPZsLtCbFTcYVD.html\">【更多选择请点击北京移动合约不换号返费专场】</a>', '519900', '99999', null, 'http://image.taotao.com/jd/db28367dc35246e681e15c1bd6d2690a.jpg', '560', '1', '2015-03-08 21:29:27', '2015-03-08 21:29:27');
INSERT INTO `tb_item` VALUES ('1260447', '【合约版】苹果(APPLE)iPhone 6 A1589 64G版 移动4G手机 金色', '北京移动用户独享,不换号,买手机返话费,敬请参阅以下页面介绍~<a target=\"blank\" href=\"http://sale.jd.com/act/5xPZsLtCbFTcYVD.html\"><font color=blue> 北京移动合约专场,速度围观,快来点我,点我</font></a>', '578800', '99999', null, 'http://image.taotao.com/jd/e20374721a2b4a14bd314e9cc3ee08c0.jpg', '560', '1', '2015-03-08 21:28:09', '2015-03-08 21:28:09');
INSERT INTO `tb_item` VALUES ('1260568', '【套装版】华为 荣耀 畅玩4X (Che1-CL10) 高配版 白色 电信4G手机 双卡双待', '套装更超值!5.5吋屏幕,3000mAh电池,1300万+500万像素摄像头!<a target=\"blank\" href=\"http://item.jd.com/1099153.html\">【羊年送爸妈大屏手机,倍有面子,配件更有用】</a>', '129900', '99999', null, 'http://image.taotao.com/jd/7f314acdd2d8430b86741ed2290e43dd.jpg', '560', '1', '2015-03-08 21:27:37', '2015-03-08 21:27:37');
INSERT INTO `tb_item` VALUES ('1260571', '【套装版】华为 荣耀 畅玩4X (Che1-CL20) 全网通版 白色 4G手机 双卡双待', '移动联通电信4G/3G/2G都能用,全网通吃!套装更超值,配件更有用!预订订单预计七天内发货!', '159900', '99999', null, 'http://image.taotao.com/jd/07142da5725849bd9f7d515d16a9e1f5.jpg', '560', '1', '2015-03-08 21:27:37', '2015-03-08 21:27:37');
INSERT INTO `tb_item` VALUES ('1260714', 'TCL (S850L) 16GB 耀目红 电信4G手机', '北京仓少量库存,4.7英寸屏幕,16G内存,800万像素!高性价比机型推荐!', '75900', '99999', null, 'http://image.taotao.com/jd/bc773f236ccd4f3399ddbcd0f6ede818.jpg', '560', '1', '2015-03-08 21:30:44', '2015-03-08 21:30:44');
INSERT INTO `tb_item` VALUES ('1260968', '大唐 (I518) 珍珠白 移动4G手机', '千元高配4G新品!5.5英寸FHD超清全屏,1300万第二代BSI摄像头!', '79900', '99999', null, 'http://image.taotao.com/jd/5f24b9b97ddc405780eb2d83f40e0a4b.jpg', '560', '1', '2015-03-08 21:29:11', '2015-03-08 21:29:11');
INSERT INTO `tb_item` VALUES ('1260975', '三星 G5309w 白色 电信4G手机 双卡双待', '下单即送手机魔法盒!先到先得!', '135900', '99999', null, 'http://image.taotao.com/jd/a30a70a47d5f41529bd052db2742f48b.jpg', '560', '1', '2015-03-08 21:27:42', '2015-03-08 21:27:42');
INSERT INTO `tb_item` VALUES ('1264546', '创维(Skyworth)LED 50S9 50英寸 智能酷开系统网络平板液晶电视(咖啡金)', '好评晒单返话费50元!搭载专为电视而开发的酷开系统,六核处理器,独家支持待机WiFi热点!<a target=\"blank\" href=\"http://jmall.jd.com/p117514.html\">“猛戳这里,更多惊喜”</a>', '349900', '99999', null, 'http://image.taotao.com/jd/b152f8171be14df5bfbed42a21a04ef6.jpg', '76', '1', '2015-03-08 21:27:45', '2015-03-08 21:27:45');
INSERT INTO `tb_item` VALUES ('1264547', '创维酷开(coocaa)K40 40英寸智能酷开系统 八核网络平板液晶电视(黑色)', '酷开新品,搭载专为电视而开发的酷开系统,八核处理器,免费正版影视资源,丰富应用软件、游戏,多屏互动!<a target=\"blank\" href=\"http://jmall.jd.com/p117514.html\">“猛戳这里,更多惊喜”</a>', '189900', '99999', null, 'http://image.taotao.com/jd/fdb1bc17533342bfb2e9164f97322ac2.jpg', '76', '1', '2015-03-08 21:27:35', '2015-03-08 21:27:35');
INSERT INTO `tb_item` VALUES ('1264572', '【电信合约版】华为 Ascend Mate7 16G 月光银 电信4G手机 双卡双待双通', '相当缺货,但京东还返话费!<a target=\"blank\" href=\"http://sale.jd.com/act/0akd8u5vomz.html\">【买卡上京东,省钱又轻松】点击有惊喜!</a>', '329900', '99999', null, 'http://image.taotao.com/jd/d154dc7481954bb9ade951dec3186e63.jpg', '560', '1', '2015-03-08 21:29:11', '2015-03-08 21:29:11');
INSERT INTO `tb_item` VALUES ('1264589', '【联通赠费版】魅族 MX4 16GB 灰色 联通4G手机', '选合约更超值!买到就是赚到!<a target=\"blank\" href=\"http://sale.jd.com/act/wnVLfg1iO2HPz.html\"><font color=blue>超值新品魅蓝note预约999元,喜欢就好!</font></a>', '179900', '99999', null, 'http://image.taotao.com/jd/4698ed8483d043b5b40862f3f2c1337a.jpg', '560', '1', '2015-03-08 21:29:27', '2015-03-08 21:29:27');
INSERT INTO `tb_item` VALUES ('1264606', '【联通0元购机】 魅族 MX4 32GB 灰色 联通4G手机', '北京联通岁末大促!限时专享价!库存有限 超值无限!', '199900', '99999', null, 'http://image.taotao.com/jd/931ad929cbf5400290f03994dfafa2df.jpg', '560', '1', '2015-03-08 21:31:27', '2015-03-08 21:31:27');
INSERT INTO `tb_item` VALUES ('1264616', '【联通0元购机】魅族 MX4 16GB 灰色 联通4G手机', '北京联通岁末大促!限时专享价!库存有限 超值无限!', '179900', '99999', null, 'http://image.taotao.com/jd/03183026916a4918b6354050dedc66b4.jpg', '560', '1', '2015-03-08 21:29:39', '2015-03-08 21:29:39');
INSERT INTO `tb_item` VALUES ('1264715', '锤子 T1 (SM705) 32GB 黑色 移动联通双4G手机', '送高清贴膜!深度定制的Smartisan OS系统,美观、简洁、高效!', '248000', '99999', null, 'http://image.taotao.com/jd/486cb26040644b66884ef9ba33c335fc.jpg', '560', '1', '2015-03-08 21:27:37', '2015-03-08 21:27:37');
INSERT INTO `tb_item` VALUES ('1265595', '飞利浦 (E160) 磨砂黑 移动联通2G手机 双卡双待', '真实好品质,生活小伴侣,小巧玲珑便于携带!双卡双待!后置摄像头,手电筒,超值实用!', '22800', '99999', null, 'http://image.taotao.com/jd/0d84ad1405b8485cb272daddc0e78633.jpg', '560', '1', '2015-03-08 21:28:44', '2015-03-08 21:28:44');
INSERT INTO `tb_item` VALUES ('1265924', '【联通赠费版】中兴(ZTE)V5 Max 2GB 前黑后白 移动联通4G手机 双卡双待', '', '99900', '99999', null, 'http://image.taotao.com/jd/eaebb8220d524604a1dd6ba73aed9d1e.jpg', '560', '1', '2015-03-08 21:29:19', '2015-03-08 21:29:19');
INSERT INTO `tb_item` VALUES ('1266192', '三星(SAMSUNG)RM40D 40英寸LED背光全高清数字标牌', '【3月送京豆】三星开年巨献,3月购买此款产品好评送20000京豆!<a href=\'http://sale.jd.com/act/5cssvjgucdmh4xxe.html\' target=\'_blank\'>更多详情请点击> > ></a>', '369900', '99999', null, 'http://image.taotao.com/jd/d4eb11c9b81542498647dbce0129bfff.jpg', '76', '1', '2015-03-08 21:28:08', '2015-03-08 21:28:08');
INSERT INTO `tb_item` VALUES ('1266198', '三星(SAMSUNG)RM48D 48英寸LED背光全高清数字标牌', '【3月送京豆】三星开年巨献,3月购买此款产品好评送20000京豆!<a href=\'http://sale.jd.com/act/5cssvjgucdmh4xxe.html\' target=\'_blank\'>更多详情请点击> > ></a>', '539900', '99999', null, 'http://image.taotao.com/jd/9e447fce23c742b9be66d975d7a6f484.jpg', '76', '1', '2015-03-08 21:28:18', '2015-03-08 21:28:18');
INSERT INTO `tb_item` VALUES ('1266619', '三星 Galaxy Grand Prime (G5306W) 灰色 联通4G手机', '下单即赠送手机魔法盒,小物件大乾坤。', '119900', '99999', null, 'http://image.taotao.com/jd/951598e8d6964d06b4e34c15a41a5754.jpg', '560', '1', '2015-03-08 21:28:09', '2015-03-08 21:28:09');
INSERT INTO `tb_item` VALUES ('1266628', '三星 Galaxy Grand Prime (G5306W) 白色 联通4G手机', '春雷行动,下单赠12000毫安移动电源!', '119900', '99999', null, 'http://image.taotao.com/jd/ffc9c07ba7954077b9d9293fbd800555.jpg', '560', '1', '2015-03-08 21:28:01', '2015-03-08 21:28:01');
INSERT INTO `tb_item` VALUES ('1266665', '【联通赠费版】华为 荣耀 畅玩4X (Che1-CL20) 白色 全网通4G手机 双卡双待', '', '129900', '99999', null, 'http://image.taotao.com/jd/6dc596852b5041baa47efcec24835869.jpg', '560', '1', '2015-03-08 21:28:09', '2015-03-08 21:28:09');
INSERT INTO `tb_item` VALUES ('1266676', '【电信赠费版】华为 荣耀 畅玩4X (Che1-CL10) 高配版 白色 电信4G手机 双卡双待', '', '99900', '99999', null, 'http://image.taotao.com/jd/e417e63fa1ab41e5af8312765ca816a5.jpg', '560', '1', '2015-03-08 21:29:11', '2015-03-08 21:29:11');
INSERT INTO `tb_item` VALUES ('1266678', '海尔模卡(MOOKA)U42H3 42英寸安卓智能6核网络4K超薄窄边框UHD超高清LED液晶电视', '【爆品抢购】42英寸4K电视,海尔出品,如此低价,抢货趁早!!<a target=\"blank\" href=\"http://sale.jd.com/act/vfQlPDUkRy8zO3b.html\">更多优惠,点我!</a>', '239900', '99999', null, 'http://image.taotao.com/jd/ead3437086104dd893d6f94ce89f7124.jpg', '76', '1', '2015-03-08 21:27:39', '2015-03-08 21:27:39');
INSERT INTO `tb_item` VALUES ('1267345', '三星 SM-G5308W 灰色 移动4G手机 双卡双待', '4G新品!5英寸大屏,500W前置摄像头!双卡双待,工作生活两不误!', '125800', '99999', null, 'http://image.taotao.com/jd/de69c3dbfcaa4b4082025a746b34b629.jpg', '560', '1', '2015-03-08 21:27:49', '2015-03-08 21:27:49');
INSERT INTO `tb_item` VALUES ('1267437', '酷派(Coolpad) 5951 冰海蓝 电信3G手机 双卡双待', '', '59900', '99999', null, 'http://image.taotao.com/jd/65cee82d194447bbb9ce6c4ef6717a4e.jpg', '560', '1', '2015-03-08 21:32:38', '2015-03-08 21:32:38');
INSERT INTO `tb_item` VALUES ('1267439', '酷派(Coolpad) 5951 智尚白 电信3G手机 双卡双待', '', '59900', '99999', null, 'http://image.taotao.com/jd/9dd863466fa4482e8d71ea89f542689d.jpg', '560', '1', '2015-03-08 21:31:06', '2015-03-08 21:31:06');
INSERT INTO `tb_item` VALUES ('1267838', '金立 (ELIFE) F301 白色 移动4G手机 双卡双待单通', '下单送限量好礼!极速64位四核处理器 智能红外遥控,乐享生活!', '129900', '99999', null, 'http://image.taotao.com/jd/9c75e6d693e84d28975b6f2a1b38eb3a.jpg', '560', '1', '2015-03-08 21:29:54', '2015-03-08 21:29:54');
INSERT INTO `tb_item` VALUES ('1267841', '金立 超强续航 (V188S) 白色 移动4G续航手机 双卡双待单通', '30天超长待机王 5200毫安电池 可做移动电源的4G智能手机 双卡双待 v185升级版!', '149900', '99999', null, 'http://image.taotao.com/jd/a59b6172b7454590879331b54289c9ef.jpg', '560', '1', '2015-03-08 21:28:30', '2015-03-08 21:28:30');
INSERT INTO `tb_item` VALUES ('1267915', '酷派 S6 (9190L) 冰海蓝 电信4G手机 双卡双待双通', '超高好评,5.95英寸IPS屏,康宁玻璃全贴合,防指纹工艺!1300万+500万摄像头,美颜自拍。<a target=\"blank\" href=\"http://sale.jd.com/act/0akd8u5vomz.html\">【买卡上京东,省钱又轻松】点击有惊喜!</a>', '116900', '99999', null, 'http://image.taotao.com/jd/c5149ec68e974c97997708b067487eb1.jpg', '560', '1', '2015-03-08 21:28:01', '2015-03-08 21:28:01');
INSERT INTO `tb_item` VALUES ('1267968', '酷派 大神 F1Plus(8297-W01) 智尚白 联通版4G手机 双卡双待', '联通4G版现货发售!IPS高清大屏,双卡双待,手势唤醒!', '69900', '99999', null, 'http://image.taotao.com/jd/ffdb6ff92a524f3cb25b3893d25f82d8.jpg', '560', '1', '2015-03-08 21:27:42', '2015-03-08 21:27:42');
INSERT INTO `tb_item` VALUES ('1267999', '联想 VIBE Z2 32G 耀世金 移动4G手机 双卡双待', '', '199900', '99999', null, 'http://image.taotao.com/jd/b63fb26ef6c940eeaf2298c85cbefc9d.jpg', '560', '1', '2015-03-08 21:29:19', '2015-03-08 21:29:19');
INSERT INTO `tb_item` VALUES ('1268000', '联想 VIBE Z2 32G 钛金灰 移动4G手机 双卡双待', '联想Z2京东首发!64位高速CPU!2G RAM+32G ROM!', '199900', '99999', null, 'http://image.taotao.com/jd/d9e42cb5275d42d08d6be131e61aedfc.jpg', '560', '1', '2015-03-08 21:28:55', '2015-03-08 21:28:55');
INSERT INTO `tb_item` VALUES ('1268156', 'TCL UD49H18 49英寸十核4K超高清内置WIFI安卓智能LED液晶电视(珠光黑)', '【0元献礼】十核芯,进口LG炫黑屏。时尚典雅,纤薄有型。如此“羊”气,旗舰级4K臻品。<a target=\"blank\" href=\"http://sale.jd.com/act/6MqRytIYKfn.html\">【0元白条试用,1001个拜年计划】</a>', '399900', '99999', null, 'http://image.taotao.com/jd/3eefbeb2185a4791aab6205bdfb33e8b.jpg', '76', '1', '2015-03-08 21:27:45', '2015-03-08 21:27:45');
INSERT INTO `tb_item` VALUES ('1269353', '飞利浦 (E160) 香槟金 移动联通2G手机 双卡双待', '真实好品质,生活小伴侣,小巧玲珑便于携带!双卡双待!后置摄像头,手电筒,超值实用!', '23900', '99999', null, 'http://image.taotao.com/jd/f366b60833da4ed69cdc956edf9d986e.jpg', '560', '1', '2015-03-08 21:29:27', '2015-03-08 21:29:27');
INSERT INTO `tb_item` VALUES ('1269603', '三星 Galaxy Note Edge (N9150) 幻影白 移动联通4G手机', '赠三星首款智能佩戴蓝牙耳机及原装保护套!支持移动4G和联通4G!创新曲面侧屏,颠覆传统!', '669900', '99999', null, 'http://image.taotao.com/jd/56c320d7eb6c4060a168c6177081c7ed.jpg', '560', '1', '2015-03-08 21:27:49', '2015-03-08 21:27:49');
INSERT INTO `tb_item` VALUES ('1269608', '三星 Galaxy Note Edge (N9150) 雅墨黑 移动联通4G手机', '赠三星首款智能佩戴蓝牙耳机及原装保护套!支持移动4G和联通4G!创新曲面侧屏,颠覆传统!', '669900', '99999', null, 'http://image.taotao.com/jd/43d7f3a423f240fb9fa0829b9967a5e9.jpg', '560', '1', '2015-03-08 21:27:49', '2015-03-08 21:27:49');
INSERT INTO `tb_item` VALUES ('1270473', '酷派 7275 雅士黑 联通3G手机 双卡双待', '5.5英寸高清大屏,四核1.2GHz,500万高清摄像头,支持42M极速下载!', '39900', '99999', null, 'http://image.taotao.com/jd/8bb9ea39f7894f788fdfddb335cd4d47.jpg', '560', '1', '2015-03-08 21:32:38', '2015-03-08 21:32:38');
INSERT INTO `tb_item` VALUES ('1270564', '东芝(TOSHIBA)48L3453C 48英寸 全高清智能安卓 内置wifi LED液晶电视(银黑灰色)', '48英寸安卓智能,芒果TV,客厅完美选择!1.21日起购买48L3453C参与好评即送价值99元清洁套装,参与晒单再送价值199元高清线<a href=\'http://sale.jd.com/act/bhiJ0TLWBIUQyMx.html\' target=\'_blank\'>更多年货疯狂抢购中</a>', '399900', '99999', null, 'http://image.taotao.com/jd/30caa8be89854cc3b014b18bf81add76.jpg', '76', '1', '2015-03-08 21:27:45', '2015-03-08 21:27:45');
INSERT INTO `tb_item` VALUES ('1270603', '三星 SM-G5108 白色 移动4G手机', '4.8英寸炫丽屏,前置500万像素摄像头!', '135900', '99999', null, 'http://image.taotao.com/jd/50013d1209104b9da40056658578c2ef.jpg', '560', '1', '2015-03-08 21:27:54', '2015-03-08 21:27:54');
INSERT INTO `tb_item` VALUES ('1270625', '华为 Ascend G7 月光银 移动4G手机 双卡双待', '全金属一体化机身,1300万BSI摄像头,大电池超长待机! <a target=\"blank\" href=\"http://sale.jd.com/act/gABGw4eCDxHL.html\">『三羊开泰,7象万千』活动中奖名单请戳</a>', '199900', '99999', null, 'http://image.taotao.com/jd/621362707cd24bf69b0cf655f8de7c21.jpg', '560', '1', '2015-03-08 21:27:42', '2015-03-08 21:27:42');
INSERT INTO `tb_item` VALUES ('1271745', 'TCL D50A910U 50英寸安卓4.2超高清4K芒果TV智能家庭云液晶电视(珠光黑)', '【0元献礼】贵族之选,三星原装进口4K屏体。巨有范儿!敢登台,敢表达,羊年臻品4K。<a target=\"blank\" href=\"http://sale.jd.com/act/6MqRytIYKfn.html\">【0元白条试用,1001个拜年计划】</a>', '499900', '99999', null, 'http://image.taotao.com/jd/de3f04de9d2748b7b07c0ab1ed7d0e03.jpg', '76', '1', '2015-03-08 21:27:45', '2015-03-08 21:27:45');
INSERT INTO `tb_item` VALUES ('1271761', 'TCL D40A910U 40英寸安卓4.2超高清4K芒果TV智能家庭云液晶电视(白橙)', '【0元献礼】贵族之选,三星原装进口4K屏体。巨有范儿!敢登台,敢表达,羊年臻品4K。<a target=\"blank\" href=\"http://sale.jd.com/act/6MqRytIYKfn.html\">【0元白条试用,1001个拜年计划】</a>', '359900', '99999', null, 'http://image.taotao.com/jd/b4e0e04cf90d4ca78f6af06ea628a409.jpg', '76', '1', '2015-03-08 21:28:00', '2015-03-08 21:28:00');
INSERT INTO `tb_item` VALUES ('1273347', 'OPPO N3(N5207)白色 移动4G手机 双卡双待', '送10400毫安移动电源+春促礼盒(内含小音箱+自拍杆等)!年度拍照手机,N3天生会转!', '399900', '99999', null, 'http://image.taotao.com/jd/8416df71d7244ece8f923e26af684f8f.jpg', '560', '1', '2015-03-08 21:27:54', '2015-03-08 21:27:54');
INSERT INTO `tb_item` VALUES ('1273380', '天语 nibiru 金星一号 (J1) 炫酷黑 移动联通4G手机 双卡双待双通', '6英寸FHD四核处理器,16GROM+2GRAM内存,1300+500万像素,双卡双待双通!', '149800', '99999', null, 'http://image.taotao.com/jd/d136a048002747bf80f448cd0e71deaf.jpg', '560', '1', '2015-03-08 21:29:11', '2015-03-08 21:29:11');
INSERT INTO `tb_item` VALUES ('1273482', '夏新 1257 幻彩白 联通3G手机 双卡双待', '5200mAh的超大容量电池,超强续航能力!1300万高清后置摄像头!', '89900', '99999', null, 'http://image.taotao.com/jd/9f1321020f5943e9bc8fa91a58c5c6df.jpg', '560', '1', '2015-03-08 21:29:27', '2015-03-08 21:29:27');
INSERT INTO `tb_item` VALUES ('1274210', '【合约版】苹果(APPLE)iPhone 6 Plus A1593 16G版 移动4G手机 银色', '北京移动用户独享,不换号,买手机返话费,敬请参阅以下页面介绍~<a target=\"blank\" href=\"http://sale.jd.com/act/5xPZsLtCbFTcYVD.html\">北京移动合约专场,速度围观,快来点我,点我</a>', '578800', '99999', null, 'http://image.taotao.com/jd/f1cb44f4b4d04680a1ebd291ff127b9b.jpg', '560', '1', '2015-03-08 21:28:55', '2015-03-08 21:28:55');
INSERT INTO `tb_item` VALUES ('1274213', '【合约版】苹果(APPLE)iPhone 6 Plus A1593 16G版 移动4G手机 金色', '北京移动用户独享,不换号,买手机返话费,敬请参阅以下页面介绍~<a target=\"blank\" href=\"http://sale.jd.com/act/5xPZsLtCbFTcYVD.html\"><font color=blue> 北京移动合约专场,速度围观,快来点我,点我</font></a>', '578800', '99999', null, 'http://image.taotao.com/jd/75d93a4091bb44e99dc0891ae5c6eb23.jpg', '560', '1', '2015-03-08 21:28:44', '2015-03-08 21:28:44');
INSERT INTO `tb_item` VALUES ('1274215', '【合约版】苹果(APPLE)iPhone 6 Plus A1593 64G版 移动4G手机 深空灰', '北京移动用户独享,不换号,买手机返话费,敬请参阅以下页面介绍~<a target=\"blank\" href=\"http://sale.jd.com/act/5xPZsLtCbFTcYVD.html\"><font color=blue> 北京移动合约专场,速度围观,快来点我,点我</font></a>', '666600', '99999', null, 'http://image.taotao.com/jd/c72ee5d767ce49eca8300563d74af6c0.jpg', '560', '1', '2015-03-08 21:28:44', '2015-03-08 21:28:44');
INSERT INTO `tb_item` VALUES ('1274219', '【合约版】苹果(APPLE)iPhone 6 Plus A1593 64G版 移动4G手机 金色', '北京移动用户独享,不换号,买手机返话费,敬请参阅以下页面介绍~<a target=\"blank\" href=\"http://sale.jd.com/act/5xPZsLtCbFTcYVD.html\"><font color=blue> 北京移动合约专场,速度围观,快来点我,点我</font></a>', '666600', '99999', null, 'http://image.taotao.com/jd/487325b161eb426baf274f31bc9714a9.jpg', '560', '1', '2015-03-08 21:28:09', '2015-03-08 21:28:09');
INSERT INTO `tb_item` VALUES ('1274285', '中兴 V5 (N9180) 2GB版本 前黑后白 电信3G手机', '新年回馈价699抢购!2GRAM+8GBROM内存!1300W+500W像素!性价比之高,手慢无!', '69900', '99999', null, 'http://image.taotao.com/jd/245b6b708ccb44aba8faa7828f575f26.jpg', '560', '1', '2015-03-08 21:27:37', '2015-03-08 21:27:37');
INSERT INTO `tb_item` VALUES ('1274311', '飞利浦(PHILIPS)49PUF6055/T3 49英寸 4K超高清智能电视', '支持4K影片USB播放!镂空底座,源自欧洲经典的时尚设计!<a href=\'http://sq.jd.com/zM2aZs\' target=\'_blank\'>飞利浦健康舒适蓝,预约参加抽奖赢电视!</a>', '419900', '99999', null, 'http://image.taotao.com/jd/eb9958a9772d479dad173009d9ddbf8d.jpg', '76', '1', '2015-03-08 21:27:39', '2015-03-08 21:27:39');
INSERT INTO `tb_item` VALUES ('1274744', '飞利浦(PHILIPS)55PFL6340/T3 55英寸 4K超高清智能电视', '大屏+智能,尽情展示4K精美画质,带来身临其境绝佳感受!<a href=\'http://sq.jd.com/zM2aZs\' target=\'_blank\'>飞利浦健康舒适蓝,预约参加抽奖赢电视!</a>', '559900', '99999', null, 'http://image.taotao.com/jd/b97d0ea643274cb4bef606aa1644151f.jpg', '76', '1', '2015-03-08 21:28:08', '2015-03-08 21:28:08');
INSERT INTO `tb_item` VALUES ('1274881', '酷派 7060S 炫动黑 联通3G手机 双卡双待', '4英寸高清大屏,1.0GHz处理器,200万高清摄像头!', '24900', '99999', null, 'http://image.taotao.com/jd/a29e2007e64a4e2da7d0f8672a2df5fd.jpg', '560', '1', '2015-03-08 21:29:27', '2015-03-08 21:29:27');
INSERT INTO `tb_item` VALUES ('1276788', '联想 笋尖(S90u)宝石银 联通4G手机 双卡双待', '高通骁龙处理器,5英寸720P高清大屏,1300万摄像头,金属一体机身!', '129900', '99999', null, 'http://image.taotao.com/jd/70c764297a734b989d98670267c82719.jpg', '560', '1', '2015-03-08 21:28:44', '2015-03-08 21:28:44');
INSERT INTO `tb_item` VALUES ('1277016', '朵唯 (S3) 星光白 移动4G手机', '特价促销,下单立减200元,加送配件礼包和路由器!5.3英寸夏普屏,前置800万像素摄像头,自拍神器!<a target=\"blank\" href=\"http://sale.jd.com/act/ZT3S6Cfo0at5wsmI.html\">真品真女人,朵唯疯狂送好礼!</a>', '159800', '99999', null, 'http://image.taotao.com/jd/f2ddc55a82cc4b8ab2d74ac99166503f.jpg', '560', '1', '2015-03-08 21:29:19', '2015-03-08 21:29:19');
INSERT INTO `tb_item` VALUES ('1277303', 'OPPO 1105 珍珠白 电信4G手机 双卡双待', '至美一拍礼包+蓝牙耳机!高通骁龙64位四核处理器,智能遥控2.0+!', '119900', '99999', null, 'http://image.taotao.com/jd/f44e2fa050c64dd59c4156e778dad476.jpg', '560', '1', '2015-03-08 21:28:30', '2015-03-08 21:28:30');
INSERT INTO `tb_item` VALUES ('1277914', '酷派 ivvi 新K1 星夜蓝 移动4G手机 双卡双待', '5.9mm炫薄机身,双面流光宝石镜面,年终大促!', '159900', '99999', null, 'http://image.taotao.com/jd/ab752b7b067e4adeaf8a23d98b54cc5b.jpg', '560', '1', '2015-03-08 21:29:19', '2015-03-08 21:29:19');
INSERT INTO `tb_item` VALUES ('1277930', '微软(Microsoft) Lumia 535 (RM-1090) 绿色 联通3G手机 双卡双待', '智能语音时代,前置广角镜头,Cortana智能语音助理,集齐宠爱于一机!', '69900', '99999', null, 'http://image.taotao.com/jd/64fa3c7f63924fcd9e4eea5e2e062117.jpg', '560', '1', '2015-03-08 21:28:55', '2015-03-08 21:28:55');
INSERT INTO `tb_item` VALUES ('1277933', '微软(Microsoft) Lumia 535 (RM-1090) 橙色 联通3G手机 双卡双待', '智能语音时代,前置广角镜头,Cortana智能语音助理,集齐宠爱于一机!', '69900', '99999', null, 'http://image.taotao.com/jd/a24df9267397436eb6915713b4dacfd8.jpg', '560', '1', '2015-03-08 21:28:55', '2015-03-08 21:28:55');
INSERT INTO `tb_item` VALUES ('1277934', '微软(Microsoft) Lumia 535 (RM-1090) 蓝色 联通3G手机 双卡双待', '智能语音时代,前置广角镜头,Cortana智能语音助理,集齐宠爱于一机!', '69900', '99999', null, 'http://image.taotao.com/jd/1ccdeed3ee7445b5a9a244335d302ddd.jpg', '560', '1', '2015-03-08 21:28:30', '2015-03-08 21:28:30');
INSERT INTO `tb_item` VALUES ('1277981', '微软(Microsoft) Lumia 535 (RM-1090) 白色 联通3G手机 双卡双待', '智能语音时代,前置广角镜头,Cortana智能语音助理,集齐宠爱于一机!', '69900', '99999', null, 'http://image.taotao.com/jd/1dc522f70eb84c98901c7219ade7e774.jpg', '560', '1', '2015-03-08 21:28:44', '2015-03-08 21:28:44');
INSERT INTO `tb_item` VALUES ('1277982', '微软(Microsoft) Lumia 535 (RM-1090) 黑色 联通3G手机 双卡双待', '智能语音时代,前置广角镜头,Cortana智能语音助理,集齐宠爱于一机!', '69900', '99999', null, 'http://image.taotao.com/jd/7e853c01f3fb43d4af83e3d0cc845946.jpg', '560', '1', '2015-03-08 21:28:09', '2015-03-08 21:28:09');
INSERT INTO `tb_item` VALUES ('1278149', '三星 Galaxy Note4 N9106W 联通4G手机(幻影白) 双卡双待+施华洛世奇水晶后壳(瑰金落日)套装', '科技与时尚的融合,限量珍藏!', '599900', '99999', null, 'http://image.taotao.com/jd/f51ab7ad8fc040fdacf49c99d6624811.jpg', '560', '1', '2015-03-08 21:33:18', '2015-03-08 21:33:18');
INSERT INTO `tb_item` VALUES ('1278155', '三星 Galaxy Note4 N9106W 联通4G手机(幻影白) 双卡双待+施华洛世奇水晶后壳(银月轻语)套装', '科技与时尚的融合,限量珍藏!', '599900', '99999', null, 'http://image.taotao.com/jd/0507091af51b4a75a80f2db6cee12931.jpg', '560', '1', '2015-03-08 21:33:18', '2015-03-08 21:33:18');
INSERT INTO `tb_item` VALUES ('1278157', '三星 Galaxy Note4 N9106W 联通4G手机(幻影白) 双卡双待+施华洛世奇水晶后壳(紫夜霓裳)套装', '科技与时尚的融合,限量珍藏!', '599900', '99999', null, 'http://image.taotao.com/jd/6f1c421557a243a49bf951d33128e881.jpg', '560', '1', '2015-03-08 21:33:18', '2015-03-08 21:33:18');
INSERT INTO `tb_item` VALUES ('1278159', '三星 Galaxy Note4 N9100 4G手机(幻影白)双卡双待 公开版+施华洛世奇水晶后壳(银月轻语)套装', '科技与时尚的融合,限量珍藏!', '599900', '99999', null, 'http://image.taotao.com/jd/992fb8cb3b0d4cd8b9bd06f40a852acc.jpg', '560', '1', '2015-03-08 21:33:18', '2015-03-08 21:33:18');
INSERT INTO `tb_item` VALUES ('1278163', '三星 Galaxy Note4 N9100 4G手机(幻影白)双卡双待 公开版+施华洛世奇水晶后壳(瑰金落日)套装', '科技与时尚的融合,限量珍藏!', '599900', '99999', null, 'http://image.taotao.com/jd/9989b0ec963d4ce1bf367d613828aae2.jpg', '560', '1', '2015-03-08 21:33:18', '2015-03-08 21:33:18');
INSERT INTO `tb_item` VALUES ('1278164', '三星 Galaxy Note4 N9100 4G手机(幻影白)双卡双待 公开版+施华洛世奇水晶后壳(紫夜霓裳)套装', '科技与时尚的融合,限量珍藏!', '599900', '99999', null, 'http://image.taotao.com/jd/6cffc4c1abfb463dbeb01962c4e88d34.jpg', '560', '1', '2015-03-08 21:33:18', '2015-03-08 21:33:18');
INSERT INTO `tb_item` VALUES ('1278422', '努比亚(nubia)Z7 前黑后白 移动联通4G手机 双卡双待', '限量赠送移动电源!数量有限,先到先得!Z7系列旗舰机,5.5英寸2K屏,1300万OIS光学防抖摄像头!', '345600', '99999', null, 'http://image.taotao.com/jd/48e149c19d174ab6a3ea2c19864c9320.jpg', '560', '1', '2015-03-08 21:28:01', '2015-03-08 21:28:01');
INSERT INTO `tb_item` VALUES ('1278427', '中兴 V5S 双4G兼容版 前黑后白 移动联通4G手机', '预定的用户请您耐心等待,到货后即刻发货!64位双卡双待双4G拍照神器!超高性价比!', '69900', '99999', null, 'http://image.taotao.com/jd/fd6da9e781c445f181e8bd3419d304d7.jpg', '560', '1', '2015-03-08 21:27:37', '2015-03-08 21:27:37');
INSERT INTO `tb_item` VALUES ('1278530', '【联通赠费版】苹果(Apple) iPhone 5s (A1530) 16G 金色 移动联通4G手机', '', '416900', '99999', null, 'http://image.taotao.com/jd/0cab557b04284255917963601eb6cd65.jpg', '560', '1', '2015-03-08 21:28:16', '2015-03-08 21:28:16');
INSERT INTO `tb_item` VALUES ('1278664', '夏普(SHARP)LCD-52DS52A 52英寸安卓智能液晶电视 日本原装屏', '日本原装液晶屏,安卓4.2操作系统,应用软件随心下载,海量电影在线点播!<a target=\"blank\" href=\"http://item.jd.com/1278664.html\">还有46英寸46DS52A供您选择!</a>', '599900', '99999', null, 'http://image.taotao.com/jd/0bd72cd03e8246ee9f825339a2f2504b.jpg', '76', '1', '2015-03-08 21:27:39', '2015-03-08 21:27:39');
INSERT INTO `tb_item` VALUES ('1278686', '夏普(SHARP)LCD-46DS52A 46英寸安卓智能液晶电视 日本原装屏', '日本原装液晶屏,安卓4.2操作系统,应用软件随心下载,海量电影在线点播!<a target=\"blank\" href=\"http://item.jd.com/1278664.html\">更有52英寸52DS52A供您选择!</a>', '449900', '99999', null, 'http://image.taotao.com/jd/331d0a484bdc418482d9434c4e184310.jpg', '76', '1', '2015-03-08 21:27:35', '2015-03-08 21:27:35');
INSERT INTO `tb_item` VALUES ('1279453', '魅族 MX4 Pro 16GB 灰色 联通4G手机', '2199元,手慢后悔!超2K分辨率,指纹解锁,3GB RAM+16GB ROM,2070万+500万摄像头,3350mAh大电池!', '219900', '99999', null, 'http://image.taotao.com/jd/536ec851e2344e0184c757be12695d3d.jpg', '560', '1', '2015-03-08 21:27:42', '2015-03-08 21:27:42');
INSERT INTO `tb_item` VALUES ('1279804', '魅族 MX4 Pro 16GB 灰色 移动4G手机', '2199元,手慢后悔!超2K分辨率,指纹解锁,3GB RAM+16GB ROM,2070万+500万摄像头,3350mAh大电池!', '219900', '99999', null, 'http://image.taotao.com/jd/4e8ced5f7b2a447fab4907df90795f33.jpg', '560', '1', '2015-03-08 21:27:37', '2015-03-08 21:27:37');
INSERT INTO `tb_item` VALUES ('1279805', 'TCL 晚美 智能老人手机 (H916T) 陨石黑 移动3G手机', '晚美更美,一键操作,专属爸妈定制机!', '54900', '99999', null, 'http://image.taotao.com/jd/33a58ab8d24b4b14866c395433bf30e6.jpg', '560', '1', '2015-03-08 21:29:47', '2015-03-08 21:29:47');
INSERT INTO `tb_item` VALUES ('1279814', 'TCL 晚美 智能老人手机 (H916T) 纯净白 移动3G手机', '晚美更美,一键操作,专属爸妈定制机!', '55900', '99999', null, 'http://image.taotao.com/jd/419956ee34c94929860b707afefca00a.jpg', '560', '1', '2015-03-08 21:29:39', '2015-03-08 21:29:39');
INSERT INTO `tb_item` VALUES ('1280037', '中兴 Memo II (M901C) 黑色 电信3G手机 双卡双待双通', '真八核1.7G,6英寸高清大屏!', '87800', '99999', null, 'http://image.taotao.com/jd/b78067135c814e6aa6a474de7b5b8369.jpg', '560', '1', '2015-03-08 21:28:09', '2015-03-08 21:28:09');
INSERT INTO `tb_item` VALUES ('1280104', '三星 Galaxy A5 (A5009) 精灵黑 电信4G手机 双卡双待', '下单送12000毫安移动电源+16G TF 卡!金属机身 纤薄设计,语音自拍,美不胜收!', '259900', '99999', null, 'http://image.taotao.com/jd/16532941c9844c7897ed043962494649.jpg', '560', '1', '2015-03-08 21:28:01', '2015-03-08 21:28:01');
INSERT INTO `tb_item` VALUES ('1280432', '联想 A858T 8G 清新白 移动4G手机 双卡双待', '5吋四核1.5GHz,时尚外形,新潮设计,尽享高上大!', '99900', '99999', null, 'http://image.taotao.com/jd/50253768bc2a45a3ada76f4cf5b120d2.jpg', '560', '1', '2015-03-08 21:29:27', '2015-03-08 21:29:27');
INSERT INTO `tb_item` VALUES ('1280555', '联想 A816 曜石黑 联通4G手机 双卡双待', '5.5英寸大屏,高通骁龙64位处理器!视界,大而不凡!', '79900', '99999', null, 'http://image.taotao.com/jd/c1a4385429dc47928acd246c058a01c4.jpg', '560', '1', '2015-03-08 21:29:11', '2015-03-08 21:29:11');
INSERT INTO `tb_item` VALUES ('1280578', '联想 X2-TO 16G 红色 移动4G手机 双卡双待', '5吋八核2.0GHz,1300+500像素,耀色倾城!', '199900', '99999', null, 'http://image.taotao.com/jd/47e227ab66a3469d9f39a37e8dbe814a.jpg', '560', '1', '2015-03-08 21:29:19', '2015-03-08 21:29:19');
INSERT INTO `tb_item` VALUES ('1280659', '创维(Skyworth)LED 55S9 55英寸 智能酷开系统网络平板液晶电视(咖啡金)', '好评晒单返话费50元!智能娱乐新品!韩国原装进口IPS硬屏,独家支持待机WiFi热点,轻松让电视变成路由器!<a target=\"blank\" href=\"http://jmall.jd.com/p117514.html\">“猛戳这里,更多惊喜”</a>', '439900', '99999', null, 'http://image.taotao.com/jd/16f790b34d6c4b43a1d0305b263e6edd.jpg', '76', '1', '2015-03-08 21:29:12', '2015-03-08 21:29:12');
INSERT INTO `tb_item` VALUES ('1280796', '三星 SM-G5108 炭灰 移动4G手机', '4.8英寸炫丽屏,前置500万像素摄像头!双卡双待,工作生活两不误!', '135800', '99999', null, 'http://image.taotao.com/jd/a91d08e216404d99b2c12ad48e2ce6d8.jpg', '560', '1', '2015-03-08 21:28:09', '2015-03-08 21:28:09');
INSERT INTO `tb_item` VALUES ('1281107', 'TCL D49A561U 49英寸4K超清安卓4.2内置WIFI智能云电视(黑色)', '注意咯!中奖名单已经公示,请中奖的小伙伴联系厂家咚咚客服!!绝对爆款。3M膜极致真4K。<a target=\"blank\" href=\"http://sale.jd.com/act/pALdCnST6v.html\">【注意咯!49A561好评返券中奖名单!!】</a>', '379900', '99999', null, 'http://image.taotao.com/jd/878470297ec04779b8d2f73cf5bc221d.jpg', '76', '1', '2015-03-08 21:27:35', '2015-03-08 21:27:35');
INSERT INTO `tb_item` VALUES ('1281946', '酷派 7061 智尚白 联通3G手机 双卡双待', '5英寸四核超清大屏,视觉感一流,超薄时尚设计,圆润质感!', '39900', '99999', null, 'http://image.taotao.com/jd/90f1f68ce44049098f4a8cac148a5dd7.jpg', '560', '1', '2015-03-08 21:30:03', '2015-03-08 21:30:03');
INSERT INTO `tb_item` VALUES ('1281976', '朵唯 逆客 (V1) 印象金 移动4G手机', '加送逆客(V1)礼盒和自拍杆!土豆朵唯联合出品,190°旋转摄像头,微信小视频美颜自拍,遥控拍照!<a target=\"blank\" href=\"http://sale.jd.com/act/ZT3S6Cfo0at5wsmI.html\">真品真女人,朵唯疯狂送好礼!</a>', '199900', '99999', null, 'http://image.taotao.com/jd/6cc3247c7a714d75b7c1300bd1b1ee94.jpg', '560', '1', '2015-03-08 21:28:16', '2015-03-08 21:28:16');
INSERT INTO `tb_item` VALUES ('1282080', '康佳(KONKA)LED55K11A 55英寸 安卓智能液晶电视(黑色)', '【新年大惠!】55英寸巨屏畅快体验!安卓智能平台,海量应用、智能推展!丰富影音内容畅享无极限!<a target=\"blank\" href=\"http://sale.jd.com/act/IrXe3ywoUE.html\">【机不可失!49英寸巨屏4K智能仅2999!】</a>', '399900', '99999', null, 'http://image.taotao.com/jd/f2736174ff424acca6d9d2c52d52fabb.jpg', '76', '1', '2015-03-08 21:27:39', '2015-03-08 21:27:39');
INSERT INTO `tb_item` VALUES ('1282150', '联想 笋尖 S90 (S90-t) 16GB 晶钻粉 移动4G手机 双卡双待', '联想S90,比美更美,超强自拍神器!超薄时尚金属机身!', '169900', '99999', null, 'http://image.taotao.com/jd/396a2313d3bb43019392bd5cf1a7030d.jpg', '560', '1', '2015-03-08 21:28:30', '2015-03-08 21:28:30');
INSERT INTO `tb_item` VALUES ('1282243', '联想 X2-CU 金色 联通4G手机 双卡双待', '5吋八核2.0GHz,1300+500像素,耀色倾城!', '169900', '99999', null, 'http://image.taotao.com/jd/26bea771751447ad8d2b16c37be92601.jpg', '560', '1', '2015-03-08 21:28:44', '2015-03-08 21:28:44');
INSERT INTO `tb_item` VALUES ('1282247', '联想 笋尖(S90U)晶钻粉 联通4G手机 双卡双待', '支持联通4G网络,高通骁龙处理器,5英寸720P高清大屏,1300万摄像头,金属一体机身!', '129900', '99999', null, 'http://image.taotao.com/jd/6b8273b988d84ab1ae45730399037138.jpg', '560', '1', '2015-03-08 21:29:11', '2015-03-08 21:29:11');
INSERT INTO `tb_item` VALUES ('1282248', '联想 X2-CU 白色 联通4G手机 双卡双待', '5吋八核2.0GHz,1300+500像素,耀色倾城!', '169900', '99999', null, 'http://image.taotao.com/jd/a8d9cd63ed2141649cfd79269d1b0e4f.jpg', '560', '1', '2015-03-08 21:29:11', '2015-03-08 21:29:11');
INSERT INTO `tb_item` VALUES ('1282394', '创维酷开(coocaa)A55 55英寸智能酷开系统 4K超高清网络平板液晶电视(银白色)', '酷开&华为荣耀联合定制的智慧屏幕!无需遥控器,手机操控、游戏随心玩,12核处理器,正版影视资源!<a target=\"blank\" href=\"http://jmall.jd.com/p117514.html\">“猛戳这里,更多惊喜”</a>', '599900', '99999', null, 'http://image.taotao.com/jd/2b3040f568c4480cbfb8290bc3aa6b72.jpg', '76', '1', '2015-03-08 21:28:18', '2015-03-08 21:28:18');
INSERT INTO `tb_item` VALUES ('1282430', '三星 G3608 炭灰 移动4G手机', '支持移动4G,双卡双待!1.2G四核处理器,200万前置摄像头,超级省电模式!', '83800', '99999', null, 'http://image.taotao.com/jd/642927742e1849a38b1dabaafda52cff.jpg', '560', '1', '2015-03-08 21:27:54', '2015-03-08 21:27:54');
INSERT INTO `tb_item` VALUES ('1282431', '三星 G3608 白色 移动4G手机', '支持移动4G,双卡双待!1.2G四核处理器,超级省电模式!', '83800', '99999', null, 'http://image.taotao.com/jd/2f3bc0b09b214cf8bd6d639202189613.jpg', '560', '1', '2015-03-08 21:27:49', '2015-03-08 21:27:49');
INSERT INTO `tb_item` VALUES ('1283672', '金立 超强续航 (V188S) 黑色 移动4G续航手机 双卡双待单通', '30天超长待机, 5200毫安电池,可做移动电源的4G智能手机!', '149900', '99999', null, 'http://image.taotao.com/jd/9b4015b2cf9e43f79e8fc2040cc0eeb3.jpg', '560', '1', '2015-03-08 21:28:30', '2015-03-08 21:28:30');
INSERT INTO `tb_item` VALUES ('1283940', 'LG 43LF5400 43英寸超薄LED液晶电视 富贵招财铜钱设计 白色', 'IPS硬屏,极窄边框,完美画质,三重XD引擎,炫亮人声!', '248800', '99999', null, 'http://image.taotao.com/jd/cac1bb318cba4033ab8d559196304172.jpg', '76', '1', '2015-03-08 21:27:35', '2015-03-08 21:27:35');
INSERT INTO `tb_item` VALUES ('1284030', '三星 I9158V 白色 移动4G手机', '支持移动4G,5.8英寸屏,四核处理器!', '139900', '99999', null, 'http://image.taotao.com/jd/3b5801fa22524a44924b01643805cc56.jpg', '560', '1', '2015-03-08 21:27:42', '2015-03-08 21:27:42');
INSERT INTO `tb_item` VALUES ('1284050', '天语 nibiru 老人手机 土星一号 (T1) 黑色 联通3G手机', '用“星”陪伴 ,SOS双向定位 低辐射 全语音操作4.5英寸舒适手握感 四核1.3GHz 500万高清摄像 高保真喇叭!', '49800', '99999', null, 'http://image.taotao.com/jd/722e9ed032a34680be83bae21ac847e2.jpg', '560', '1', '2015-03-08 21:28:55', '2015-03-08 21:28:55');
INSERT INTO `tb_item` VALUES ('1284053', '天语 nibiru 老人手机 土星一号 (T1) 白色 联通3G手机', '用星陪伴,尼比鲁智能老人机!4.5英寸最佳手握感,四核1.3GHz,500万高清摄像头!', '49800', '99999', null, 'http://image.taotao.com/jd/1e89dc9ae21541eda634f22231924105.jpg', '560', '1', '2015-03-08 21:28:55', '2015-03-08 21:28:55');
INSERT INTO `tb_item` VALUES ('1284250', '酷派 铂顿 (V1-C) 皓月白 电信4G手机 双卡三待双通', '双系统,硬隔离,双1300万摄像头,2K屏,手机安全领袖,手机安全领域中的战斗机!', '468000', '99999', null, 'http://image.taotao.com/jd/fd0b3e5e98ef473db79801c0eb3d49f5.jpg', '560', '1', '2015-03-08 21:29:19', '2015-03-08 21:29:19');
INSERT INTO `tb_item` VALUES ('1284427', 'TCL 老人手机 (I320) 琉璃金 移动联通2G手机 双卡双待', '2600mAh大电池!支持充电宝功能,支持扩展卡,大字体,双卡双待手机!', '19900', '99999', null, 'http://image.taotao.com/jd/2499f7bc591d48f7920c041c6644bb21.jpg', '560', '1', '2015-03-08 21:30:44', '2015-03-08 21:30:44');
INSERT INTO `tb_item` VALUES ('1284434', 'TCL 老人手机 (I320) 月光银 移动联通2G手机 双卡双待', '2600mAh大电池!支持充电宝功能,支持扩展卡,大字体,双卡双待手机!', '19900', '99999', null, 'http://image.taotao.com/jd/cdf4b7b01cd84a13ae4f53edf98152d1.jpg', '560', '1', '2015-03-08 21:32:09', '2015-03-08 21:32:09');
INSERT INTO `tb_item` VALUES ('1284435', 'TCL 老人手机 (I320) 暗夜黑 移动联通2G手机 双卡双待', '2600mAh大电池!支持充电宝功能,支持扩展卡,大字体,双卡双待手机!', '17900', '99999', null, 'http://image.taotao.com/jd/9b1a3ca439bb43cea6ac91f65223fcaa.jpg', '560', '1', '2015-03-08 21:30:20', '2015-03-08 21:30:20');
INSERT INTO `tb_item` VALUES ('1284541', '富可视 M2 白色 移动联通4G手机 双卡双待', '富可视耀目开启!前后双800万像素摄像头,4.2英寸单手轻松掌控,视网膜级屏!', '59900', '99999', null, 'http://image.taotao.com/jd/45ce5beb3dfd4adcad6219a3945719e6.jpg', '560', '1', '2015-03-08 21:29:19', '2015-03-08 21:29:19');
INSERT INTO `tb_item` VALUES ('1284964', 'OPPO 1107 灰色 移动4G手机 双卡双待', '送蓝色耳机+至美一拍礼包', '109900', '99999', null, 'http://image.taotao.com/jd/94f1803e47e941eebb4cc8d852244ee6.jpg', '560', '1', '2015-03-08 21:28:30', '2015-03-08 21:28:30');
INSERT INTO `tb_item` VALUES ('1284977', 'OPPO R5(R8107)银色 移动4G手机', '送皮套+春促礼盒+移动电源!生性锋狂!4.85mm 开启超薄新时代,冰巢系统,极速散热!', '299900', '99999', null, 'http://image.taotao.com/jd/06189433f6c8458985f9b99a33264d9d.jpg', '560', '1', '2015-03-08 21:28:01', '2015-03-08 21:28:01');
INSERT INTO `tb_item` VALUES ('1284978', 'OPPO 1107 白色 移动4G手机 双卡双待', '送至美一拍礼包+蓝牙耳机!', '109900', '99999', null, 'http://image.taotao.com/jd/7f35bdac6b314d8ba1e670b36fcbc86a.jpg', '560', '1', '2015-03-08 21:28:01', '2015-03-08 21:28:01');
INSERT INTO `tb_item` VALUES ('1286513', '明基 F5 白色 联通4G手机', '送移动电源!首款护眼手机,5英寸HD高清大屏,4G超高网速,极致超薄机身!', '139900', '99999', null, 'http://image.taotao.com/jd/d375106d60c44d1c86523a864862d343.jpg', '560', '1', '2015-03-08 21:29:47', '2015-03-08 21:29:47');
INSERT INTO `tb_item` VALUES ('1286526', '明基 F5 黑色 联通4G手机', '送移动电源!首款护眼手机,5英寸HD高清大屏,4G超高网速,极致超薄机身!', '139900', '99999', null, 'http://image.taotao.com/jd/3c04ba7bd5d54913ba0ce7d42895f8aa.jpg', '560', '1', '2015-03-08 21:30:44', '2015-03-08 21:30:44');
INSERT INTO `tb_item` VALUES ('1287473', '创维(Skyworth)LED 42D9 42英寸 老人电视 极简操作高清平板液晶电视(黑色)', '前2000名给予四星级以上好评者即可获得价值100元话费充值券!操作简单/一键直达/一键搜台!<a target=\"blank\" href=\"http://jmall.jd.com/p117514.html\">“猛戳这里,更多惊喜”</a>', '209800', '99999', null, 'http://image.taotao.com/jd/9bb6c2997c2441228eba647cf8117b16.jpg', '76', '1', '2015-03-08 21:27:35', '2015-03-08 21:27:35');
INSERT INTO `tb_item` VALUES ('1287525', '【联通赠费版】中兴(ZTE) V5S 前黑后白 移动联通4G手机', '', '69900', '99999', null, 'http://image.taotao.com/jd/2e8bf63399b24bff9636ca34061dc144.jpg', '560', '1', '2015-03-08 21:31:50', '2015-03-08 21:31:50');
INSERT INTO `tb_item` VALUES ('1287657', '海尔统帅(Leader)K42M 42英寸安卓智能6核网络4K超薄窄边框UHD超高清LED液晶电视', '海尔出品,42英寸4K极清电视、惊爆价抢购!<a target=\"blank\" href=\"http://sale.jd.com/act/8gRdKlrw6bkD.html\">更多优惠</a>', '239900', '99999', null, 'http://image.taotao.com/jd/c99afd99e8aa4082b5b2b34fdf2bc636.jpg', '76', '1', '2015-03-08 21:28:00', '2015-03-08 21:28:00');
INSERT INTO `tb_item` VALUES ('1289849', '【联通0元购机】中兴 V5S 双4G兼容版 前黑后白 移动联通4G手机', '任性!京东专享!仅199元手机价+存400元,得799元话费!', '19900', '99999', null, 'http://image.taotao.com/jd/fbb58a6546124d4a9bd59a4fa7915dd2.jpg', '560', '1', '2015-03-08 21:30:12', '2015-03-08 21:30:12');
INSERT INTO `tb_item` VALUES ('1290795', '联想 A588T 4G 金色 移动3G手机', '智能折叠,360°自由翻转!四核1.2GHz,超长待机,持久续航!', '68800', '99999', null, 'http://image.taotao.com/jd/cacb72a8c6394b9d8b7c006ab08eff87.jpg', '560', '1', '2015-03-08 21:27:54', '2015-03-08 21:27:54');
INSERT INTO `tb_item` VALUES ('1291137', '康佳(KONKA)LED49E20Y 49英寸 易TV语义操控8核安卓液晶电视', '【洋洋得意抢神机】一台懂你的电视,易柚3.0,极速8核!<a target=\"blank\" href=\"http://sale.jd.com/act/IrXe3ywoUE.html\">【机不可失!49英寸巨屏4K智能仅2999!】</a>', '339900', '99999', null, 'http://image.taotao.com/jd/12e2e242a0cd448a9cb7eac657a52703.jpg', '76', '1', '2015-03-08 21:28:00', '2015-03-08 21:28:00');
INSERT INTO `tb_item` VALUES ('1291935', 'TCL 骨传导翻盖老人机 (f200) 暗夜黑 移动联通2G手机', '孝敬父母首选,骨传导新技术,解决老人听力下降问题,大字体,大按键,大声音,简洁UI设计,经典翻盖老人机', '29900', '99999', null, 'http://image.taotao.com/jd/703d0db13d944475943c8f48c32361b4.jpg', '560', '1', '2015-03-08 21:28:30', '2015-03-08 21:28:30');
INSERT INTO `tb_item` VALUES ('1291940', 'TCL 骨传导翻盖老人机 (f200) 牡丹红 移动联通2G手机', '孝敬父母首选,骨传导新技术,解决老人听力下降问题,大字体,大按键,大声音,简洁UI设计,经典翻盖老人机', '29900', '99999', null, 'http://image.taotao.com/jd/b849cd9535d14aae82a6380fae3cd76b.jpg', '560', '1', '2015-03-08 21:28:16', '2015-03-08 21:28:16');
INSERT INTO `tb_item` VALUES ('1292388', '【联通赠费版】魅族 MX4 Pro 16GB 灰色 联通4G手机', '<a target=\"blank\" href=\"http://sale.jd.com/act/wnVLfg1iO2HPz.html\"><font color=blue>超值新品魅蓝note预约999元,喜欢就好!</font></a>', '219900', '99999', null, 'http://image.taotao.com/jd/f8fc5414457b4617ba1e2759988c820a.jpg', '560', '1', '2015-03-08 21:29:39', '2015-03-08 21:29:39');
INSERT INTO `tb_item` VALUES ('1292553', '海信 E100T 铃兰白 电信3G手机 双卡双待', '骁龙双核,4G ROM+512RAM,指尖精彩,点滴之间尽显从容!', '27900', '99999', null, 'http://image.taotao.com/jd/bf63a1e10885490e8404111d72f564cb.jpg', '560', '1', '2015-03-08 21:29:19', '2015-03-08 21:29:19');
INSERT INTO `tb_item` VALUES ('1293362', '三星(SAMSUNG)EB48D 48英寸LED背光一体化数字标牌', '【3月送京豆】三星开年巨献,3月购买此款产品好评送20000京豆!<a href=\'http://sale.jd.com/act/5cssvjgucdmh4xxe.html\' target=\'_blank\'>更多详情请点击> > ></a>', '439900', '99999', null, 'http://image.taotao.com/jd/7b976c6740914e9bb43687c040156253.jpg', '76', '1', '2015-03-08 21:28:08', '2015-03-08 21:28:08');
INSERT INTO `tb_item` VALUES ('1293371', '三星(SAMSUNG)EB40D 40英寸一体化数字标牌', '【3月送京豆】三星开年巨献,3月购买此款产品好评送20000京豆!<a href=\'http://sale.jd.com/act/5cssvjgucdmh4xxe.html\' target=\'_blank\'>更多详情请点击> > ></a>', '299900', '99999', null, 'http://image.taotao.com/jd/168731d0457c426da335cb9712c8b784.jpg', '76', '1', '2015-03-08 21:28:08', '2015-03-08 21:28:08');
INSERT INTO `tb_item` VALUES ('1293789', '金立 超强续航 (V183) 金色 移动4G续航手机 双卡双待单通', '', '99900', '99999', null, 'http://image.taotao.com/jd/fa88489449224077aea108ed3d251b2c.jpg', '560', '1', '2015-03-08 21:28:44', '2015-03-08 21:28:44');
INSERT INTO `tb_item` VALUES ('1293791', '华为 Y523 (Y523-L176) 深灰色 移动4G手机', '4.5英寸,1.3GHz四核,Android 4.4操作系统!', '59900', '99999', null, 'http://image.taotao.com/jd/8db1031ab06949508bd12c74acb26f16.jpg', '560', '1', '2015-03-08 21:33:18', '2015-03-08 21:33:18');
INSERT INTO `tb_item` VALUES ('1294316', '三星 Galaxy A5 (SM-A5000) 骑士银 移动联通4G手机 双卡双待', '赠三星原装智能保护套,全新A系列-年轻正发声!', '259900', '99999', null, 'http://image.taotao.com/jd/f7d7cb5f8a08476da0f9c6ccbf831c51.jpg', '560', '1', '2015-03-08 21:28:16', '2015-03-08 21:28:16');
INSERT INTO `tb_item` VALUES ('1294336', '三星 Galaxy A3 (SM-A3000) 甜梦粉 移动联通4G手机 双卡双待', '送移动电源!全新A系列-年轻正发声!', '199800', '99999', null, 'http://image.taotao.com/jd/7d5e00e9afc64e028b892fc0133c3340.jpg', '560', '1', '2015-03-08 21:28:09', '2015-03-08 21:28:09');
INSERT INTO `tb_item` VALUES ('1295243', '华为 G660 (G660-L075) 深灰色 移动4G手机', '精品旗舰,更轻、更薄!支持NFC功能!畅销4G网络!<a target=\"blank\" href=\"http://sale.jd.com/act/ZovfiDKYagBQJ.html\">更多推荐请点击!</a>', '88800', '99999', null, 'http://image.taotao.com/jd/42b7b5dee4f14d528bb290f143f17690.jpg', '560', '1', '2015-03-08 21:27:49', '2015-03-08 21:27:49');
INSERT INTO `tb_item` VALUES ('1295253', '华为 G660 (G660-L075) 金色 移动4G手机', '惊艳外观,精品旗舰,更轻、更薄!支持NFC功能!畅销4G网络!<a target=\"blank\" href=\"http://sale.jd.com/act/ZovfiDKYagBQJ.html\">更多推荐请点击!</a>', '92800', '99999', null, 'http://image.taotao.com/jd/fd69525081ad413b8e253fb048fa5369.jpg', '560', '1', '2015-03-08 21:27:54', '2015-03-08 21:27:54');
INSERT INTO `tb_item` VALUES ('1295341', 'OPPO 1100 白色 联通4G手机', '送蓝牙耳机+至美一拍礼包!智能遥控2.0+,4G双卡双待,趣味拍照!', '109900', '99999', null, 'http://image.taotao.com/jd/68d8f8a14d90428f827ba69a0e5e2e8f.jpg', '560', '1', '2015-03-08 21:28:55', '2015-03-08 21:28:55');
INSERT INTO `tb_item` VALUES ('1295910', '三星(SAMSUNG) I699I 白色 电信3G手机', '', '29900', '99999', null, 'http://image.taotao.com/jd/c82fb80f985440cebd98abe879a1515d.jpg', '560', '1', '2015-03-08 21:31:36', '2015-03-08 21:31:36');
INSERT INTO `tb_item` VALUES ('1295911', '海信 E602M 珠光白 移动4G手机 双卡双待', '500万像素,全新海信GUI3.0,简约时尚!', '39900', '99999', null, 'http://image.taotao.com/jd/5a51fac9cb7d4d77a5291bc4e06b4ff9.jpg', '560', '1', '2015-03-08 21:32:17', '2015-03-08 21:32:17');
INSERT INTO `tb_item` VALUES ('1297394', '康佳(KONKA)LED55E20U 55英寸优酷电视4K超高清8核支持安卓智能微信互联腾讯游戏(黑色)', '【优酷电视京东震撼来袭!】海量优酷正版视频内容,内置微信互联、腾讯游戏、QQ物联强悍功能!DUANG不停!<a target=\"blank\" href=\"http://sale.jd.com/act/aIt27NesLvY0KnE.html\">“更多彪悍,猛戳这里”</a>', '499900', '99999', null, 'http://image.taotao.com/jd/8af0c12091ec4c9a850dee8c68bc595a.jpg', '76', '1', '2015-03-08 21:28:00', '2015-03-08 21:28:00');
INSERT INTO `tb_item` VALUES ('1297395', '康佳(KONKA)LED42E20U 42英寸优酷电视4K超高清8核支持安卓智能微信互联腾讯游戏(黑色)', '【优酷电视京东震撼来袭!】海量优酷正版视频内容,内置微信互联、腾讯游戏、QQ物联强悍功能!DUANG不停!<a target=\"blank\" href=\"http://sale.jd.com/act/aIt27NesLvY0KnE.html\">“更多彪悍,猛戳这里”</a>', '288800', '99999', null, 'http://image.taotao.com/jd/384ef4e7c9d545a48eb6e490bb52d62c.jpg', '76', '1', '2015-03-08 21:28:00', '2015-03-08 21:28:00');
INSERT INTO `tb_item` VALUES ('1297408', 'KKTV LED55K70S 55英寸极速8核安卓智能网络云电视(黑色)', '神价仅在春节期间!过大年,行大运,用大屏!性价比拔群的巨屏智能电视!货源不多了,良心货啊!', '349900', '99999', null, 'http://image.taotao.com/jd/230591b27a3d400fb40da2f3f4026ea8.jpg', '76', '1', '2015-03-08 21:27:35', '2015-03-08 21:27:35');
INSERT INTO `tb_item` VALUES ('1297458', '联想 黄金斗士 Note8(A936)融雪白 联通4G手机 双卡双待', '八核64位,索尼1300万高清摄像头,高达3300毫安超级电池!', '93900', '99999', null, 'http://image.taotao.com/jd/e718657b28ca4ff6bcf8be13933ca809.jpg', '560', '1', '2015-03-08 21:28:44', '2015-03-08 21:28:44');
INSERT INTO `tb_item` VALUES ('1297459', '联想 黄金斗士 Note8(A936)深邃黑 联通4G手机 双卡双待', '八核64位,索尼1300万高清摄像头,高达3300毫安超级电池!', '93900', '99999', null, 'http://image.taotao.com/jd/1c11b4497b3c43e9809c79d2728b5b8e.jpg', '560', '1', '2015-03-08 21:28:55', '2015-03-08 21:28:55');
INSERT INTO `tb_item` VALUES ('1297596', '飞利浦 (V989) 尊爵黑 移动联通4G手机 双卡双待', '赠移动电源+智能手表,移动联通双4G,2G运行内存,1300万像素摄像头,奢华双屏幕折叠智能手机', '559900', '99999', null, 'http://image.taotao.com/jd/cb6a4572c04a4d5fa6894d4bd721a417.jpg', '560', '1', '2015-03-08 21:28:01', '2015-03-08 21:28:01');
INSERT INTO `tb_item` VALUES ('1297601', '朵唯 (L1) 倾心白 移动4G手机 双卡双待', '加送L1配件礼包和移动电源!5.9mm超薄机身,5.5英寸大屏幕,前后800万像素摄像头!<a target=\"blank\" href=\"http://sale.jd.com/act/ZT3S6Cfo0at5wsmI.html\">真品真女人,朵唯疯狂送好礼!</a>', '199900', '99999', null, 'http://image.taotao.com/jd/99062a068c454a59afbcf5fcecb56138.jpg', '560', '1', '2015-03-08 21:28:55', '2015-03-08 21:28:55');
INSERT INTO `tb_item` VALUES ('1297797', '三星 G3586V 炭灰色 联通4G手机', '4.7英寸高清大屏,适合的才是最好的~~', '84900', '99999', null, 'http://image.taotao.com/jd/ccea27232c914a56b072de6f4cfdc00b.jpg', '560', '1', '2015-03-08 21:28:16', '2015-03-08 21:28:16');
INSERT INTO `tb_item` VALUES ('1298447', '【套装版】荣耀 6 Plus (PE-TL10) 黑色 移动联通双4G手机 双卡双待双通', '套装更超值!5.5吋屏幕,3GB RAM,后置双800万像素摄像头,双眼看世界!<a target=\"blank\" href=\"http://item.jd.com/1260571.html\">【5.5吋大屏手机,移动联通电信4G/3G/2G都能用】</a>', '289900', '99999', null, 'http://image.taotao.com/jd/14d2ef4cdbc44b0cb8868b0c0824d4a5.jpg', '560', '1', '2015-03-08 21:27:37', '2015-03-08 21:27:37');
INSERT INTO `tb_item` VALUES ('1299781', '【套装版】酷派 大神 F2全高清版 (8675-FHD) 智尚白 移动联通双4G手机 双卡双待', '八核高速处理器,2G+16G存储,性价比千元智能机首选!三大超实惠配件(音乐耳机+保护套+贴膜)!', '109900', '99999', null, 'http://image.taotao.com/jd/37da4ec73ab24ebebe662e69369c80fa.jpg', '560', '1', '2015-03-08 21:27:37', '2015-03-08 21:27:37');
INSERT INTO `tb_item` VALUES ('1299917', '【套装版】魅族 MX4 Pro 16GB 灰色 联通4G手机', '送钢化膜+保护套+移动电源+手机魔法盒+原厂EP-21耳机!', '239900', '99999', null, 'http://image.taotao.com/jd/e5849a487d144c9e849f1e662fb5bd6d.jpg', '560', '1', '2015-03-08 21:27:42', '2015-03-08 21:27:42');
INSERT INTO `tb_item` VALUES ('1300419', '【套装版】魅族 MX4 Pro 16GB 灰色 移动4G手机', '送钢化膜+保护套+移动电源+手机魔法盒+原厂EP-21耳机!', '239900', '99999', null, 'http://image.taotao.com/jd/d6d337078f7342aead1c4279756c5b80.jpg', '560', '1', '2015-03-08 21:27:37', '2015-03-08 21:27:37');
INSERT INTO `tb_item` VALUES ('1300888', '中兴 星星2号 (S2005) 智尚白 移动联通4G电信3G手机 咪咕音乐版', '现货疯抢中!全语音控制,一步贯穿所有操作,释放你的双手!', '249900', '99999', null, 'http://image.taotao.com/jd/9f710b13ed5c4de1a66d37e55bdd461d.jpg', '560', '1', '2015-03-08 21:28:09', '2015-03-08 21:28:09');
INSERT INTO `tb_item` VALUES ('1301381', '【联通赠费版】华为 荣耀 畅玩4X (Che2-UL00) 白色 联通4G手机 双卡双待', '', '89900', '99999', null, 'http://image.taotao.com/jd/024b004939a0421fa6505319c3180693.jpg', '560', '1', '2015-03-08 21:28:55', '2015-03-08 21:28:55');
INSERT INTO `tb_item` VALUES ('1301620', '华为 Y523 (Y523-L176) 白色 移动4G手机', '4.5英寸,1.3GHz四核,Android 4.4操作系统!', '59900', '99999', null, 'http://image.taotao.com/jd/076017d8da1d4be0a5c48963e2dd8519.jpg', '560', '1', '2015-03-08 21:31:58', '2015-03-08 21:31:58');
INSERT INTO `tb_item` VALUES ('1301717', '联想 VIBE Z2 32G 象牙白 移动4G手机 双卡双待', '联想Z2京东首发!64位高速CPU!2G RAM+32G ROM!', '199900', '99999', null, 'http://image.taotao.com/jd/cdb2533b133a4e84a9ec38b9a4e640b6.jpg', '560', '1', '2015-03-08 21:29:27', '2015-03-08 21:29:27');
INSERT INTO `tb_item` VALUES ('1301718', 'OPPO 3007 白色 移动4G手机 双卡双待', '下单送春促礼盒+蓝牙耳机!智享科技,随心悦拍!', '159900', '99999', null, 'http://image.taotao.com/jd/60a8a8a6126f4657bebccf76ca471f39.jpg', '560', '1', '2015-03-08 21:28:16', '2015-03-08 21:28:16');
INSERT INTO `tb_item` VALUES ('1301767', 'OPPO N1mini(N5117)礼盒装 雪晶白 移动4G手机', '送皮套+春促礼盒+移动电源!自由自转,趣拍不断!', '269900', '99999', null, 'http://image.taotao.com/jd/64f603590909499a9e85045cd8256f57.jpg', '560', '1', '2015-03-08 21:28:09', '2015-03-08 21:28:09');
INSERT INTO `tb_item` VALUES ('1301772', 'OPPO 3007 灰色 移动4G手机 双卡双待', '下单送春促礼盒+蓝牙耳机!', '159900', '99999', null, 'http://image.taotao.com/jd/10679ff178a749c6b38ff4674834f492.jpg', '560', '1', '2015-03-08 21:29:11', '2015-03-08 21:29:11');
INSERT INTO `tb_item` VALUES ('1301865', '酷派 ivvi (8715) 智尚白 移动4G手机 双卡双待', '超薄机身,杜比音效。声得你心,年终大促!', '99900', '99999', null, 'http://image.taotao.com/jd/5a60c0bb800741c89b1d106c9df14fe0.jpg', '560', '1', '2015-03-08 21:29:47', '2015-03-08 21:29:47');
INSERT INTO `tb_item` VALUES ('1301885', '【超值套装版】魅族 魅蓝note 32GB 蓝色 联通4G手机 双卡双待', '迎春献礼,放肆购,现货呦!<a target=\"blank\" href=\"http://item.jd.com/1279453.html\">MX4 Pro,魅族旗舰,调价300元,仅售2199元,手慢后悔!</a>', '139900', '99999', null, 'http://image.taotao.com/jd/20798b4ed51e4e978658f18ebe2998ec.jpg', '560', '1', '2015-03-08 21:27:37', '2015-03-08 21:27:37');
INSERT INTO `tb_item` VALUES ('1304890', '飞利浦 (E320) 烈焰红 移动联通2G手机 双卡双待', '用心的手机!用心的关爱!新款时尚翻盖手机!', '55900', '99999', null, 'http://image.taotao.com/jd/8db04125c2554495bbfcafc7ad08e6ae.jpg', '560', '1', '2015-03-08 21:28:30', '2015-03-08 21:28:30');
INSERT INTO `tb_item` VALUES ('1304898', '飞利浦 (E121) 玄铁黑 移动联通2G手机 双卡双待', '新品!精致小巧,简单实用,健康环保!', '15900', '99999', null, 'http://image.taotao.com/jd/8cdad86106fc47648cc1d57fe7dabaed.jpg', '560', '1', '2015-03-08 21:30:57', '2015-03-08 21:30:57');
INSERT INTO `tb_item` VALUES ('1304902', '飞利浦 (E320) 墨玉黑 移动联通2G手机 双卡双待', '用心的手机!用心的关爱!新款时尚翻盖手机!', '55900', '99999', null, 'http://image.taotao.com/jd/7810a21f982c44769d42c3f430ea1787.jpg', '560', '1', '2015-03-08 21:28:44', '2015-03-08 21:28:44');
INSERT INTO `tb_item` VALUES ('1304932', '联想 A858T 8G 深邃黑 移动4G手机 双卡双待', '5吋四核1.5GHz,时尚外形,新潮设计,尽享高上大!', '99900', '99999', null, 'http://image.taotao.com/jd/b5aae6bd0f24477c901b1f7192fb189e.jpg', '560', '1', '2015-03-08 21:29:47', '2015-03-08 21:29:47');
INSERT INTO `tb_item` VALUES ('1305636', '【联通0元购机】魅族 MX4 Pro 16GB 灰色 联通4G手机', '0元购机版,更超值!', '245000', '99999', null, 'http://image.taotao.com/jd/54df13c9adbc44cba5e9a3340b5c73ab.jpg', '560', '1', '2015-03-08 21:31:17', '2015-03-08 21:31:17');
INSERT INTO `tb_item` VALUES ('1305682', 'TCL 老人手机 (i310+) 纯净白 移动联通2G手机', '声音更大、舒适按键、清晰字体,语音王播报,200万像素拍照,专属父母定制系统,更好用的老人手机!', '24900', '99999', null, 'http://image.taotao.com/jd/983e5d46815d482cb56a419d00d1f2db.jpg', '560', '1', '2015-03-08 21:28:09', '2015-03-08 21:28:09');
INSERT INTO `tb_item` VALUES ('1305691', 'TCL 老人手机 (i310+) 暗夜黑 移动联通2G手机', '声音更大、舒适按键、清晰字体,语音王播报,200万像素拍照,专属父母定制系统,更好用的老人手机!', '24900', '99999', null, 'http://image.taotao.com/jd/616497952f1941ea9e9166798aba79ce.jpg', '560', '1', '2015-03-08 21:28:09', '2015-03-08 21:28:09');
INSERT INTO `tb_item` VALUES ('1305915', '酷派 8071 炫动黑 移动3G手机 双卡双待', '超值低价!4.0英寸高清大屏,双核1GHz,200万高清摄像头!', '17900', '99999', null, 'http://image.taotao.com/jd/3a62871411804d85b73dadc9d301011e.jpg', '560', '1', '2015-03-08 21:28:16', '2015-03-08 21:28:16');
INSERT INTO `tb_item` VALUES ('1307481', '华为(HUAWEI)GX1 白 电信4G手机 双卡双待', '赠16G内存卡+蓝牙耳机+移动电源!星际战舰6吋超大屏!爽视觉!细皮纹质感!强续航!', '159000', '99999', null, 'http://image.taotao.com/jd/3d5537329bd14af4be317b8d1a13055c.jpg', '560', '1', '2015-03-08 21:27:54', '2015-03-08 21:27:54');
INSERT INTO `tb_item` VALUES ('1307796', '三星 G3509i 黑色 电信3G手机', '', '39900', '99999', null, 'http://image.taotao.com/jd/57083f3326bc4e88b2bb309be868aed9.jpg', '560', '1', '2015-03-08 21:30:57', '2015-03-08 21:30:57');
INSERT INTO `tb_item` VALUES ('1309739', '联想 A396 白色 联通3G手机', '4吋四核1.2GHz,双摄像头轻松玩转拍照!', '24900', '99999', null, 'http://image.taotao.com/jd/fff88e455f6548e6ad99ba6463cc6dce.jpg', '560', '1', '2015-03-08 21:28:30', '2015-03-08 21:28:30');
INSERT INTO `tb_item` VALUES ('1309751', '朵唯 彩虹 (T20) 8GB 动感白 移动4G手机 双卡双待', '尾货清仓,特价促销,加送T20配件礼包!自拍神器,美丽无极限!5.0英寸屏幕,魔镜cam2.0!', '99800', '99999', null, 'http://image.taotao.com/jd/ef490183414745df998391afe13004e0.jpg', '560', '1', '2015-03-08 21:29:19', '2015-03-08 21:29:19');
INSERT INTO `tb_item` VALUES ('1309958', '【套装版】酷派 大神 F1Plus(8297-T01)智铂银 移动版4G手机 双卡双待', '特价清仓!5吋屏+高通64位处理器+双卡双待!原厂包装内含3大超实用、超实惠配件(耳机+皮套+贴膜)!', '69900', '99999', null, 'http://image.taotao.com/jd/be870089eee8456091bd2665a547c1be.jpg', '560', '1', '2015-03-08 21:27:42', '2015-03-08 21:27:42');
INSERT INTO `tb_item` VALUES ('1312327', '飞利浦 (E180) 经典黑 移动联通2G手机 双卡双待', '第三代充电宝手机!', '39900', '99999', null, 'http://image.taotao.com/jd/547c6977f8ed4591b38c97a7f76c2a90.jpg', '560', '1', '2015-03-08 21:29:19', '2015-03-08 21:29:19');
INSERT INTO `tb_item` VALUES ('1312328', '飞利浦 (I908) 夜空黑 联通3G手机 双卡双待', '低调奢华!细节之美!八核!5.0英寸屏!1300万像素后置摄像头!2GB RAM+16GB ROM!', '169900', '99999', null, 'http://image.taotao.com/jd/a85476bd075b4108a9a2c71bb5029cc3.jpg', '560', '1', '2015-03-08 21:28:55', '2015-03-08 21:28:55');
INSERT INTO `tb_item` VALUES ('1312333', '飞利浦 (I908) 象牙白 联通3G手机 双卡双待', '低调奢华!细节之美!八核!5.0英寸屏!1300万像素后置摄像头!2GB RAM+16GB ROM!', '166900', '99999', null, 'http://image.taotao.com/jd/e723b568c2a743bdb2d43cc4cae0ce77.jpg', '560', '1', '2015-03-08 21:29:11', '2015-03-08 21:29:11');
INSERT INTO `tb_item` VALUES ('1314578', '飞利浦 (E121) 黑镶黄 移动联通2G手机 双卡双待', '精致小巧!备机首选!', '14900', '99999', null, 'http://image.taotao.com/jd/7893e878f6f242eab23bad1f4137c4ca.jpg', '560', '1', '2015-03-08 21:30:29', '2015-03-08 21:30:29');
INSERT INTO `tb_item` VALUES ('1314962', '海信(Hisense)LED55EC290N 55英寸 Vision3.0 智能电视 六核顶配 WIFI(泰坦灰)', '<a target=\"blank\" href=\"http://sale.jd.com/act/YykdEtrMRaSsT.html\">“春宵一刻值千金”</a>', '429900', '99999', null, 'http://image.taotao.com/jd/36dcebe517cf433fa1d128a983dadee1.jpg', '76', '1', '2015-03-08 21:27:35', '2015-03-08 21:27:35');
INSERT INTO `tb_item` VALUES ('1315037', '三星 Galaxy A3 (A3009) 白色 电信4G手机 双卡双待', '三星A系列新品!年轻正发声!', '199900', '99999', null, 'http://image.taotao.com/jd/b8347f6ce1c74f2aa87fd9ab13a7ee77.jpg', '560', '1', '2015-03-08 21:28:16', '2015-03-08 21:28:16');
INSERT INTO `tb_item` VALUES ('1315209', '联想 A560 星夜黑 联通3G手机 双卡双待', '', '36900', '99999', null, 'http://image.taotao.com/jd/6832b199231d42768771a32febbe327e.jpg', '560', '1', '2015-03-08 21:29:11', '2015-03-08 21:29:11');
INSERT INTO `tb_item` VALUES ('1315749', '华为 Ascend G7 (G7-UL20) 月光银 移动联通双4G手机 双卡双待', 'G7双4G极速切换,金属一体化机身,超薄至尊享受! <a target=\"blank\" href=\"http://sale.jd.com/act/gABGw4eCDxHL.html\">『三羊开泰,7象万千』活动中奖名单请戳</a>', '219900', '99999', null, 'http://image.taotao.com/jd/2627874ef7364151802fe6ab383980f8.jpg', '560', '1', '2015-03-08 21:27:54', '2015-03-08 21:27:54');
INSERT INTO `tb_item` VALUES ('1317707', '天语(E8)黑色 电信3G手机 双卡双待', '时尚老人机!', '25900', '99999', null, 'http://image.taotao.com/jd/0e2e976fce73476ba155211cc89a0a78.jpg', '560', '1', '2015-03-08 21:29:19', '2015-03-08 21:29:19');
INSERT INTO `tb_item` VALUES ('1317952', '酷派 8702D 极地白 移动4G手机', '4.5吋全贴合高清屏,500万摄像头,双卡双待,高性价比4G手机!', '45900', '99999', null, 'http://image.taotao.com/jd/2f27daf4bcf344bdb6f80e212c1cb91d.jpg', '560', '1', '2015-03-08 21:28:30', '2015-03-08 21:28:30');
INSERT INTO `tb_item` VALUES ('1318040', '【套装版】荣耀 6 Plus (PE-TL20) 黑色 移动4G手机 双卡双待双通', '套装更超值!5.5吋屏幕,3GB RAM,后置双800万像素摄像头,双眼看世界!<a target=\"blank\" href=\"http://item.jd.com/1260571.html\">【5.5吋大屏手机,移动联通电信4G/3G/2G都能用】</a>', '229900', '99999', null, 'http://image.taotao.com/jd/53d622a3b0594cac87bfa1b4d6db4b98.jpg', '560', '1', '2015-03-08 21:27:49', '2015-03-08 21:27:49');
INSERT INTO `tb_item` VALUES ('1318158', '联想 A690e 白色 电信4G手机 双卡', '5.5英寸大屏,全网通4G!', '55900', '99999', null, 'http://image.taotao.com/jd/766a64905dcf40a6a958c8d1b2848933.jpg', '560', '1', '2015-03-08 21:28:44', '2015-03-08 21:28:44');
INSERT INTO `tb_item` VALUES ('1318159', '联想 A690e 黑色 电信4G手机 双卡', '5.5英寸大屏,全网通4G!', '55900', '99999', null, 'http://image.taotao.com/jd/e57065185dff49a6890a87f3c92e19b0.jpg', '560', '1', '2015-03-08 21:29:11', '2015-03-08 21:29:11');
INSERT INTO `tb_item` VALUES ('1318683', '三星 Galaxy A7 (SM-A7000) 精灵黑 移动联通4G手机 双卡双待', '赠三星原装保护套及移动电源!全新A系列-年轻正发声!', '299900', '99999', null, 'http://image.taotao.com/jd/dd78b2ad054c450a96f99989e524ed0d.jpg', '560', '1', '2015-03-08 21:27:42', '2015-03-08 21:27:42');
INSERT INTO `tb_item` VALUES ('1318694', '【联通赠费版】联想 乐檬 K3(K30-W)16G 清新白 联通4G手机 双卡双待', '', '69900', '99999', null, 'http://image.taotao.com/jd/a2a554df747f4b659c8c0685b0f9401e.jpg', '560', '1', '2015-03-08 21:29:19', '2015-03-08 21:29:19');
INSERT INTO `tb_item` VALUES ('1318701', '三星 Galaxy A7 (SM-A7000) 雪域白 移动联通4G手机 双卡双待', '赠三星原装保护套及移动电源!全新A系列-年轻正发声!', '299900', '99999', null, 'http://image.taotao.com/jd/585e4a0e021d49ffb567b673b3b67ade.jpg', '560', '1', '2015-03-08 21:27:37', '2015-03-08 21:27:37');
INSERT INTO `tb_item` VALUES ('1318702', '【联通赠费版】联想 乐檬 K3(K30-W)16G 典雅黄 联通4G手机 双卡双待', '', '69900', '99999', null, 'http://image.taotao.com/jd/3af37165590e4a3999c3c5a7e36d8ff5.jpg', '560', '1', '2015-03-08 21:29:19', '2015-03-08 21:29:19');
INSERT INTO `tb_item` VALUES ('1318831', '联想 黄金斗士 Note8(A936)增强版 融雪白 联通双4G手机 双卡双待', '此版本为2G RAM版!6英寸大屏仅需998,千元性能新标杆!', '99800', '99999', null, 'http://image.taotao.com/jd/b8e71ee40da94677b239d8948f437461.jpg', '560', '1', '2015-03-08 21:27:54', '2015-03-08 21:27:54');
INSERT INTO `tb_item` VALUES ('1318910', '【标准套装版】联想 黄金斗士 Note8(A936)增强版 深邃黑 联通双4G手机 双卡双待', '标准套装版(含手机+折叠支架保护套+贴膜)!2G RAM,64位真八核,3300mA大电量!', '109900', '99999', null, 'http://image.taotao.com/jd/997f4b824efd47fe8ce937b77514183d.jpg', '560', '1', '2015-03-08 21:28:30', '2015-03-08 21:28:30');
INSERT INTO `tb_item` VALUES ('1318915', '联想 黄金斗士 Note8(A936)增强版 深邃黑 联通双4G手机 双卡双待', '此版本为2G RAM版!6英寸大屏仅需998,千元性能新标杆!', '99800', '99999', null, 'http://image.taotao.com/jd/dca962564eb84b6ba83505d74d4e1b51.jpg', '560', '1', '2015-03-08 21:28:01', '2015-03-08 21:28:01');
INSERT INTO `tb_item` VALUES ('1318925', '【标准套装版】联想 黄金斗士 Note8(A936)增强版 融雪白 联通双4G手机 双卡双待', '标准套装版(含手机+折叠支架保护套+贴膜)!2G RAM,64位真八核,3300mA大电量!', '109900', '99999', null, 'http://image.taotao.com/jd/282a6f9b394e486d86c6b50cedeaad4c.jpg', '560', '1', '2015-03-08 21:28:30', '2015-03-08 21:28:30');
INSERT INTO `tb_item` VALUES ('1318926', '【豪华套装版】联想 黄金斗士 Note8(A936)增强版 深邃黑 联通双4G手机 双卡双待', '豪华套装版(含手机+皮套+贴膜+10400移动电源)!6英寸大屏,2G RAM,3300mAh大电池!', '119900', '99999', null, 'http://image.taotao.com/jd/c2af02321dab4020b50384eccdefbf6e.jpg', '560', '1', '2015-03-08 21:29:11', '2015-03-08 21:29:11');
INSERT INTO `tb_item` VALUES ('1318927', '【豪华套装版】联想 黄金斗士 Note8(A936)增强版 融雪白 联通双4G手机 双卡双待', '豪华套装版(含手机+皮套+贴膜+10400移动电源)!6英寸大屏,2G RAM,3300mAh大电池!', '119900', '99999', null, 'http://image.taotao.com/jd/a04fb790562248f98e1a4c213d34565d.jpg', '560', '1', '2015-03-08 21:28:55', '2015-03-08 21:28:55');
INSERT INTO `tb_item` VALUES ('1318931', '华为 麦芒C199 灰 电信4G手机 双卡双待双通', '纤薄金属机身;1300万像素摄像头;支持电信4G网络;高通四核1.6GHz处理器!', '169900', '99999', null, 'http://image.taotao.com/jd/dd81084b92c5401e93605257312ba212.jpg', '560', '1', '2015-03-08 21:27:49', '2015-03-08 21:27:49');
INSERT INTO `tb_item` VALUES ('1320175', 'LG G3 (D857) 32GB国际版 优雅紫 移动联通4G手机 双卡双待', '华晨宇自拍神器同款! 可升级安卓5.0操作系统,5.5英寸2K高清屏,4G网络,荣获2014中国好手机年度大奖!<a target=\"blank\" href=\"http://sale.jd.com/act/kdNK4e8PAbHyX6.html\">LG G3特惠抢购2999元,十万豪礼等你拿!</a>', '319900', '99999', null, 'http://image.taotao.com/jd/05b17109ff254e7fbf669754f3259371.jpg', '560', '1', '2015-03-08 21:28:01', '2015-03-08 21:28:01');
INSERT INTO `tb_item` VALUES ('1320179', 'LG G3 (D857) 32GB国际版 高贵红 移动联通4G手机 双卡双待', '可升级安卓5.0操作系统,华晨宇自拍神器同款!5.5英寸2K高清屏,4G网络,荣获2014中国好手机年度大奖!<a target=\"blank\" href=\"http://sale.jd.com/act/kdNK4e8PAbHyX6.html\">LG G3特惠抢购2999元,十万豪礼等你拿!</a>', '319900', '99999', null, 'http://image.taotao.com/jd/3f49ebd104c64407a90c520ad2f058c3.jpg', '560', '1', '2015-03-08 21:28:09', '2015-03-08 21:28:09');
INSERT INTO `tb_item` VALUES ('1320421', '三星 Galaxy Mega2 (G7509) 白色 电信4G手机 双卡双待', '6英寸大屏,为大梦想而生!', '229900', '99999', null, 'http://image.taotao.com/jd/e5f78e2210f24c81b255748defc54cb9.jpg', '560', '1', '2015-03-08 21:28:01', '2015-03-08 21:28:01');
INSERT INTO `tb_item` VALUES ('1320584', '熊猫(PANDA)LE32D60S 32英寸 夏普技术屏 安卓4.4+六核智能云电视(黑色)', '<a target=\"blank\" href=\"http://sale.jd.com/act/pdCUWKSTjkw.html\">好评晒单集赞获奖名单公示</a>', '149900', '99999', null, 'http://image.taotao.com/jd/a88c2c598f2d4d2f8a473b1103aa08cb.jpg', '76', '1', '2015-03-08 21:27:45', '2015-03-08 21:27:45');
INSERT INTO `tb_item` VALUES ('1320697', '飞利浦 (E160) 拉丁红 移动联通2G手机 双卡双待', '', '23900', '99999', null, 'http://image.taotao.com/jd/e800ddd243c84418ba3aaa99235c4a4d.jpg', '560', '1', '2015-03-08 21:30:44', '2015-03-08 21:30:44');
INSERT INTO `tb_item` VALUES ('1321907', '海信 I639M 移动4G手机(晴雪白)双卡双待单通', '5.5寸高清大屏,64位极速处理器,光滑圆润,超薄轻盈,超值配送蓝牙耳机+10400毫安移动电源!', '99900', '99999', null, 'http://image.taotao.com/jd/7bfc959520fd41c4b575fc0dab8c0756.jpg', '560', '1', '2015-03-08 21:29:54', '2015-03-08 21:29:54');
INSERT INTO `tb_item` VALUES ('1322217', 'OPPO R1C(R8207)宝石蓝 移动4G手机 双卡双待', '送至美一拍礼包+移动电源!更有诚意的提升,成就超出期待的精致!', '249900', '99999', null, 'http://image.taotao.com/jd/8dd2b28c79744ddebeb86eb1ca798a5b.jpg', '560', '1', '2015-03-08 21:28:01', '2015-03-08 21:28:01');
INSERT INTO `tb_item` VALUES ('1322220', 'OPPO R1C(R8207) 冰晶白 移动4G手机 双卡双待', '送至美一拍礼包+移动电源!更有诚意的提升,成就超出期待的精致!', '249900', '99999', null, 'http://image.taotao.com/jd/e2b9af9a8ae54778865a0b96f3032173.jpg', '560', '1', '2015-03-08 21:27:54', '2015-03-08 21:27:54');
INSERT INTO `tb_item` VALUES ('1322308', '【合约版】三星 Galaxy Note 3 Lite (N7508v) 简约白 移动4G手机', '北京移动合约不换号返话费,少量货源,抢到就是赚到!<a target=\"blank\" href=\"http://sale.jd.com/act/5xPZsLtCbFTcYVD.html\">【更多选择请点击北京移动合约专场】</a>', '234900', '99999', null, 'http://image.taotao.com/jd/df562294878c4b13913df0c2c47a5c8b.jpg', '560', '1', '2015-03-08 21:29:11', '2015-03-08 21:29:11');
INSERT INTO `tb_item` VALUES ('1322562', '联想 A816 白色 联通4G手机 双卡双待', '5.5英寸大屏,高通骁龙64位处理器!视界,大而不凡!', '79900', '99999', null, 'http://image.taotao.com/jd/c671f5e378174e7ab4bf0d71234cd3d3.jpg', '560', '1', '2015-03-08 21:28:55', '2015-03-08 21:28:55');
INSERT INTO `tb_item` VALUES ('1322564', 'OPPO 3005 白色 电信4G手机 双卡双待', '送春促礼盒+蓝牙耳机!!智享科技,随心悦拍!', '159900', '99999', null, 'http://image.taotao.com/jd/18e29103f9bc493daaa32766a4ee129b.jpg', '560', '1', '2015-03-08 21:28:44', '2015-03-08 21:28:44');
INSERT INTO `tb_item` VALUES ('1322565', 'OPPO R5(R8107)金色 移动4G手机', '送皮套+春促礼盒+移动电源!生性锋狂!4.85mm 开启超薄新时代,冰巢系统,极速散热!', '299900', '99999', null, 'http://image.taotao.com/jd/7b0f0abe2ccc40f08200982e507ea5b2.jpg', '560', '1', '2015-03-08 21:28:09', '2015-03-08 21:28:09');
INSERT INTO `tb_item` VALUES ('1322963', '夏普(SHARP)LCD-32DS13A 32英寸液晶电视', '要好屏,选夏普!AQUOS液晶技术,日本原装液晶屏,高画质,高音质!<a target=\"blank\" href=\"http://item.jd.com/1322963.html\">还有40英寸40DS13A供您选择!</a>', '179900', '99999', null, 'http://image.taotao.com/jd/dacba11a9f3d4b52829fa601a398a9fd.jpg', '76', '1', '2015-03-08 21:27:35', '2015-03-08 21:27:35');
INSERT INTO `tb_item` VALUES ('1322968', '夏普(SHARP)LCD-40DS13A 40英寸液晶电视', '要好屏,选夏普!AQUOS液晶技术,日本原装液晶屏,高画质,高音质!<a target=\"blank\" href=\"http://item.jd.com/1256723.html\">还有安卓智能机40A11A黑色供您选择!</a>', '269900', '99999', null, 'http://image.taotao.com/jd/c0335937888a4567996e9723481a4c7b.jpg', '76', '1', '2015-03-08 21:27:35', '2015-03-08 21:27:35');
INSERT INTO `tb_item` VALUES ('1323448', '酷派 ivvi S6 (S6-NT) 土豪金 移动联通4G手机 双卡双待双通', '双卡双4G!极拍神器,5.5mm至薄机身,1300万F1.8超大光圈,高通64位八核,蓝宝石镜片!', '289900', '99999', null, 'http://image.taotao.com/jd/7235451b26bf4f3a9e5f0a7fdc513788.jpg', '560', '1', '2015-03-08 21:29:19', '2015-03-08 21:29:19');
INSERT INTO `tb_item` VALUES ('1324445', '【合约版】苹果(Apple)iPhone 6 Plus (A1524) 64GB 银色 移动4G手机', '北京移动合约不换号返话费,少量货源,抢到就是赚到!<a target=\"blank\" href=\"http://sale.jd.com/act/5xPZsLtCbFTcYVD.html\">【更多选择请点击北京移动合约专场】</a>', '676800', '99999', null, 'http://image.taotao.com/jd/d4e4dd8e6c164ea1861935f87e2905c2.jpg', '560', '1', '2015-03-08 21:28:44', '2015-03-08 21:28:44');
INSERT INTO `tb_item` VALUES ('1324588', '【合约版】苹果(Apple)iPhone 6 (A1586) 16GB 金色 移动4G手机', '北京移动合约不换号返话费,少量货源,抢到就是赚到!<a target=\"blank\" href=\"http://sale.jd.com/act/5xPZsLtCbFTcYVD.html\">【更多选择请点击北京移动合约专场】</a>', '518800', '99999', null, 'http://image.taotao.com/jd/71d9f83353d34b75806bd856a12b2f16.jpg', '560', '1', '2015-03-08 21:28:55', '2015-03-08 21:28:55');
INSERT INTO `tb_item` VALUES ('1324592', '【合约版】苹果(Apple)iPhone 6 Plus (A1524) 64GB 深空灰色 移动4G手机', '北京移动合约不换号返话费,少量货源,抢到就是赚到!<a target=\"blank\" href=\"http://sale.jd.com/act/5xPZsLtCbFTcYVD.html\">【更多选择请点击北京移动合约专场】</a>', '676800', '99999', null, 'http://image.taotao.com/jd/bf72e2e7184141a38c5e956a87d30119.jpg', '560', '1', '2015-03-08 21:29:19', '2015-03-08 21:29:19');
INSERT INTO `tb_item` VALUES ('1324593', '【合约版】苹果(Apple)iPhone 6 Plus (A1524) 16GB 银色 移动4G手机', '北京移动合约不换号返话费,少量货源,抢到就是赚到!<a target=\"blank\" href=\"http://sale.jd.com/act/5xPZsLtCbFTcYVD.html\">【更多选择请点击北京移动合约专场】</a>', '588800', '99999', null, 'http://image.taotao.com/jd/47d6b165965d4a18b4c1d0ac86347b0b.jpg', '560', '1', '2015-03-08 21:29:39', '2015-03-08 21:29:39');
INSERT INTO `tb_item` VALUES ('1324594', '【合约版】苹果(Apple)iPhone 6 Plus (A1524) 16GB 金色 移动4G手机', '北京移动合约不换号返话费,少量货源,抢到就是赚到!<a target=\"blank\" href=\"http://sale.jd.com/act/5xPZsLtCbFTcYVD.html\">【更多选择请点击北京移动合约专场】</a>', '596800', '99999', null, 'http://image.taotao.com/jd/a3e1e3286aa34b67982548c2fff175b0.jpg', '560', '1', '2015-03-08 21:28:44', '2015-03-08 21:28:44');
INSERT INTO `tb_item` VALUES ('1324595', '【合约版】苹果(Apple)iPhone 6 Plus (A1524) 16GB 深空灰色 移动4G手机', '北京移动合约不换号返话费,少量货源,抢到就是赚到!<a target=\"blank\" href=\"http://sale.jd.com/act/5xPZsLtCbFTcYVD.html\">【更多选择请点击北京移动合约专场】</a>', '588800', '99999', null, 'http://image.taotao.com/jd/026862a418f648bfad93fc6db056a46b.jpg', '560', '1', '2015-03-08 21:29:19', '2015-03-08 21:29:19');
INSERT INTO `tb_item` VALUES ('1324597', '【合约版】苹果(Apple)iPhone 6 (A1586) 16GB 银色 移动4G手机', '北京移动合约不换号返话费,少量货源,抢到就是赚到!<a target=\"blank\" href=\"http://sale.jd.com/act/5xPZsLtCbFTcYVD.html\">【更多选择请点击北京移动合约专场】</a>', '515800', '99999', null, 'http://image.taotao.com/jd/7656a37e29604415b4fa4d985c376d15.jpg', '560', '1', '2015-03-08 21:28:55', '2015-03-08 21:28:55');
INSERT INTO `tb_item` VALUES ('1324600', '【合约版】苹果(Apple)iPhone 6 (A1586) 64GB 金色 移动4G手机', '北京移动合约不换号返话费,少量货源,抢到就是赚到!<a target=\"blank\" href=\"http://sale.jd.com/act/5xPZsLtCbFTcYVD.html\">【更多选择请点击北京移动合约专场】</a>', '596800', '99999', null, 'http://image.taotao.com/jd/c062aeb79a434d5690bfb1a4b10cf84d.jpg', '560', '1', '2015-03-08 21:28:44', '2015-03-08 21:28:44');
INSERT INTO `tb_item` VALUES ('1324601', '【合约版】苹果(Apple)iPhone 6 (A1586) 16GB 深空灰色 移动4G手机', '北京移动合约不换号返话费,少量货源,抢到就是赚到!<a target=\"blank\" href=\"http://sale.jd.com/act/5xPZsLtCbFTcYVD.html\">【更多选择请点击北京移动合约专场】</a>', '516800', '99999', null, 'http://image.taotao.com/jd/01464b678ab444549dc85470e0481705.jpg', '560', '1', '2015-03-08 21:29:39', '2015-03-08 21:29:39');
INSERT INTO `tb_item` VALUES ('1324615', 'HTC Desire 820mu 镶蓝时尚白 移动联通4G手机 双卡双待', '双卡双4G,随意切换!5.0英寸,800万后置+500万前置摄像头!货源在途,预计3月7日前全面到货!', '119800', '99999', null, 'http://image.taotao.com/jd/0e221a5f96594b1f9a21ebb7adc83209.jpg', '560', '1', '2015-03-08 21:27:42', '2015-03-08 21:27:42');
INSERT INTO `tb_item` VALUES ('1324651', 'HTC Desire 820mu 镶蓝时尚灰 移动联通4G手机 双卡双待', '双卡双4G,随意切换!5.0英寸,800万后置+500万前置摄像头!放心订购,货源在途,预计3月7日前全面到货!', '119800', '99999', null, 'http://image.taotao.com/jd/4a77011df9034a098d0d0fc7434f0cfc.jpg', '560', '1', '2015-03-08 21:27:49', '2015-03-08 21:27:49');
INSERT INTO `tb_item` VALUES ('1324805', '【移动购机送费】三星 Galaxy Note Edge (N9150) 雅墨黑 移动联通4G手机', '移动用户独享,不换号,买手机返话费,敬请参阅以下页面介绍~', '669900', '991', null, 'http://image.taotao.com/jd/860d1d980fcf412f982226f9f3eb87e4.jpg', '560', '1', '2015-03-08 21:29:27', '2018-04-02 00:00:00');
INSERT INTO `tb_item` VALUES ('1324807', '【移动购机送费】三星 Galaxy Note Edge (N9150) 幻影白 移动联通4G手机', '移动用户独享,不换号,买手机返话费,敬请参阅以下页面介绍~', '669900', '99999', null, 'http://image.taotao.com/jd/e1d92a16d44145a584f1932f1464c535.jpg', '560', '1', '2015-03-08 21:28:44', '2015-03-08 21:28:44');
INSERT INTO `tb_item` VALUES ('1324881', '华为 Ascend G7 星空灰 移动4G手机 双卡双待', '全金属一体化机身,1300万BSI摄像头,大电池超长待机!<a target=\"blank\" href=\"http://sale.jd.com/act/ZovfiDKYagBQJ.html\">更多推荐请点击!</a>', '199900', '99999', null, 'http://image.taotao.com/jd/0d5560c44fae407282d1bbe76b172917.jpg', '560', '1', '2015-03-08 21:28:09', '2015-03-08 21:28:09');
INSERT INTO `tb_item` VALUES ('1324959', '【合约版】魅族 MX4 Pro 16GB 灰色 移动4G手机', '北京移动合约不换号返话费,少量货源,抢到就是赚到!<a target=\"blank\" href=\"http://sale.jd.com/act/5xPZsLtCbFTcYVD.html\">【更多选择请点击北京移动合约专场】</a>', '218800', '99999', null, 'http://image.taotao.com/jd/612616820c51466cae1e46b83e0e15f3.jpg', '560', '1', '2015-03-08 21:28:55', '2015-03-08 21:28:55');
INSERT INTO `tb_item` VALUES ('1326692', '摩托罗拉 moto x(x+1)(XT1085) 16GB 雅典黑 移动联通电信4G手机', '畅享32G版全网独家首发特权!<a target=\"blank\" href=\"http://moto.jd.com\">hellomoto更多惊喜,访问moto.jd.com</a>', '329900', '99999', null, 'http://image.taotao.com/jd/f857b0004f214f60871b6df631bc330d.jpg', '560', '1', '2015-03-08 21:27:42', '2015-03-08 21:27:42');
INSERT INTO `tb_item` VALUES ('1326700', '摩托罗拉 moto x(x+1)(XT1085) 16GB 蔓越粉 移动联通电信4G手机', '选择做女王!3月6号-3月8号,手机移动端、微信端和手Q端下单,即可尊享女王特权家价!<a target=\"blank\" href=\"http://moto.jd.com\">hellomoto更多惊喜,访问moto.jd.com</a>', '329900', '99999', null, 'http://image.taotao.com/jd/a52e2a3af6ef47e1a8e6fc74ac11a594.jpg', '560', '1', '2015-03-08 21:28:44', '2015-03-08 21:28:44');
INSERT INTO `tb_item` VALUES ('1326945', '摩托罗拉 moto x(x+1)(XT1085) 32GB 本色皮 移动联通电信4G手机', '畅享32G版全网独家首发特权!天然材质,独特魅力!<a target=\"blank\" href=\"http://moto.jd.com\">hellomoto更多惊喜,访问moto.jd.com</a>', '369900', '99999', null, 'http://image.taotao.com/jd/4ed2bdffc74b4d18bee0d709ca3c1df5.jpg', '560', '1', '2015-03-08 21:27:54', '2015-03-08 21:27:54');
INSERT INTO `tb_item` VALUES ('1326950', '摩托罗拉 moto x(x+1)(XT1085) 32GB 黑檀木 移动联通电信4G手机', '畅享32G版全网独家首发特权!天然材质,独特魅力!<a target=\"blank\" href=\"http://moto.jd.com\">hellomoto更多惊喜,访问moto.jd.com</a>', '369900', '99999', null, 'http://image.taotao.com/jd/fa1c67c671c047b2a5fcd8a6cce983c9.jpg', '560', '1', '2015-03-08 21:27:42', '2015-03-08 21:27:42');
INSERT INTO `tb_item` VALUES ('1326953', '摩托罗拉 moto x(x+1)(XT1085) 32GB 天然竹 移动联通电信4G手机', '畅享32G版全网独家首发特权!天然材质,独特魅力!<a target=\"blank\" href=\"http://moto.jd.com\">hellomoto更多惊喜,访问moto.jd.com</a>', '369900', '99999', null, 'http://image.taotao.com/jd/9fecf6757acd414dad5167f8c262d0af.jpg', '560', '1', '2015-03-08 21:27:42', '2015-03-08 21:27:42');
INSERT INTO `tb_item` VALUES ('1327054', '海尔统帅(Leader)K55 55英寸安卓智能6核4K超薄窄边框UHD液晶电视', ' 现在预约13号9点3999抢购限量500台!大屏新视界,买4K就一步到位,真清晰!(底座需另购)', '449900', '99999', null, 'http://image.taotao.com/jd/a8b390e8d08c49b8a5ffb8d27001f66c.jpg', '76', '1', '2015-03-08 21:29:12', '2015-03-08 21:29:12');
INSERT INTO `tb_item` VALUES ('1327056', '飞利浦(PHILIPS)40PFF5650/T3 40英寸 全高清净蓝新科技健康新LED智能电视(黑色)', '预约享2399专享价!真正抗蓝光护眼,净蓝新科技!飞利浦专利舒适蓝,真正呵护双眸健康!<a href=\'http://sq.jd.com/zM2aZs\' target=\'_blank\'>预约有机会0元送电视一台哦!</a>', '259900', '99999', null, 'http://image.taotao.com/jd/8a5f0578af444f7a846d84f2fbdf77b4.jpg', '76', '1', '2015-03-08 21:27:45', '2015-03-08 21:27:45');
INSERT INTO `tb_item` VALUES ('1327309', '小辣椒 红辣椒4G电信版(LA2-F) 星际黑 电信4G手机 双卡双待', '红辣椒急速电信4G劲爆登场!', '59900', '99999', null, 'http://image.taotao.com/jd/58b5caabc9c24deb9c6ab5e7ef978ac7.jpg', '560', '1', '2015-03-08 21:28:09', '2015-03-08 21:28:09');
INSERT INTO `tb_item` VALUES ('1327310', '小辣椒 红辣椒4G电信版(LA2-F)雪晶白 电信4G手机 双卡双待', '红辣椒急速电信4G劲爆登场!', '59900', '99999', null, 'http://image.taotao.com/jd/c05521348f2a4e79b067a7021a28557d.jpg', '560', '1', '2015-03-08 21:28:01', '2015-03-08 21:28:01');
INSERT INTO `tb_item` VALUES ('1327634', '飞利浦 (E101) 灰色 移动联通2G手机 双卡双待', '随身小伴侣,超值功能机!', '15900', '99999', null, 'http://image.taotao.com/jd/e2df638a9ca44d8696bf2579a3797f89.jpg', '560', '1', '2015-03-08 21:31:58', '2015-03-08 21:31:58');
INSERT INTO `tb_item` VALUES ('1328068', '长虹(CHANGHONG)50U2S 50英寸4K超高清安卓智能平板LED液晶电视(黑色)', '50吋智能4K新品,为注重生活品质的你而生!超高清时代,你OUT了吗?<a target=\"blank\" href=\"http://sale.jd.com/act/Kt0aHzbU7uR1M.html\">“去长虹新年专场”</a>', '419900', '99999', null, 'http://image.taotao.com/jd/2a765cefe4f94786b8982aa573a0fda5.jpg', '76', '1', '2015-03-08 21:27:39', '2015-03-08 21:27:39');
INSERT INTO `tb_item` VALUES ('1328762', '海信(Hisense)LED43EC291N 43英寸 智能电视 六核顶配 WIFI(黑色)', '刚上市就变成爆款!42吋小?46吋大?海信超前推出与众不同的43吋!<a target=\"blank\" href=\"http://sale.jd.com/act/YykdEtrMRaSsT.html\">“春宵一刻值千金”</a>', '279900', '99999', null, 'http://image.taotao.com/jd/6eff6961467c45fdb4d3f601858d03fa.jpg', '76', '1', '2015-03-08 21:27:45', '2015-03-08 21:27:45');
INSERT INTO `tb_item` VALUES ('1328980', '飞利浦(PHILIPS)49PFF5250/T3 49英寸 全高清LED智能电视(银色)', '八核引擎,震撼环绕立体声,乐享智能影音新生活!<a href=\'http://sq.jd.com/zM2aZs\' target=\'_blank\'>飞利浦健康舒适蓝,预约参加抽奖赢电视!</a>', '459900', '99999', null, 'http://image.taotao.com/jd/59f999c85b5e4bc7bcb9b8060edd4c13.jpg', '76', '1', '2015-03-08 21:28:42', '2015-03-08 21:28:42');
INSERT INTO `tb_item` VALUES ('1328985', '飞利浦(PHILIPS)55PFF5250/T3 55英寸 全高清LED智能电视(银色)', '八核引擎,震撼环绕立体声,乐享智能影音新生活!<a href=\'http://sq.jd.com/zM2aZs\' target=\'_blank\'>飞利浦健康舒适蓝,预约参加抽奖赢电视!</a>', '519900', '99999', null, 'http://image.taotao.com/jd/ea3a6a306e4940a3aafc0e18fc9f7801.jpg', '76', '1', '2015-03-08 21:28:08', '2015-03-08 21:28:08');
INSERT INTO `tb_item` VALUES ('1328989', '飞利浦(PHILIPS)42PFF5250/T3 42英寸 全高清LED智能电视(银色)', '八核引擎,震撼环绕立体声,乐享智能影音新生活!<a href=\'http://sq.jd.com/zM2aZs\' target=\'_blank\'>飞利浦健康舒适蓝,预约参加抽奖赢电视!</a>', '299900', '99999', null, 'http://image.taotao.com/jd/9d82648e4ef741c8a97e98e54c21a5b2.jpg', '76', '1', '2015-03-08 21:28:00', '2015-03-08 21:28:00');
INSERT INTO `tb_item` VALUES ('1328991', '飞利浦(PHILIPS)42PFF3055/T3 42英寸 全高清LED液晶电视(黑色)', '悦心影音,轻松拥有!HDMI接口 X 3,各种设备统统接上!30天价保,价保热线400-656-1000!<a href=\'http://sq.jd.com/zM2aZs\' target=\'_blank\'>飞利浦健康舒适蓝,预约参加抽奖赢电视!</a>', '239900', '99999', null, 'http://image.taotao.com/jd/bb07824761e94c20bf7142532e551891.jpg', '76', '1', '2015-03-08 21:27:35', '2015-03-08 21:27:35');
INSERT INTO `tb_item` VALUES ('1329124', '苹果(Apple)iPhone 6 Plus (A1524) 16GB 深空灰色 移动联通电信4G手机(壳膜套装版)', '', '594700', '99999', null, 'http://image.taotao.com/jd/e573651efa2147aa8258ce73f50c836d.jpg', '560', '1', '2015-03-08 21:33:18', '2015-03-08 21:33:18');
INSERT INTO `tb_item` VALUES ('1329320', '【合约版】荣耀 6 (H60-L11) 高配版 白色 移动4G手机', '北京移动合约不换号返话费,少量货源,抢到就是赚到!<a target=\"blank\" href=\"http://sale.jd.com/act/5xPZsLtCbFTcYVD.html\">【更多选择请点击北京移动合约不换号返话费专场】</a>', '199900', '99999', null, 'http://image.taotao.com/jd/267efa0b680a482c9cfade0fbddf518a.jpg', '560', '1', '2015-03-08 21:29:11', '2015-03-08 21:29:11');
INSERT INTO `tb_item` VALUES ('1330154', 'HTC Desire 820ts 镶蓝灰 移动4G手机 双卡双待', '64位八核1.7GHz处理器!5.5英寸大屏,800万前置+1300万后置摄像头,双前置立体影音!', '149800', '99999', null, 'http://image.taotao.com/jd/a1da2d7cf547497f8f1c7a6bb273741e.jpg', '560', '1', '2015-03-08 21:29:19', '2015-03-08 21:29:19');
INSERT INTO `tb_item` VALUES ('1330155', 'HTC Desire 820ts 镶蓝白 移动4G手机 双卡双待', '新一代64位八核1.7GHz处理器!5.5英寸大屏,800万前置+1300万后置摄像头,双前置立体影音!', '149800', '99999', null, 'http://image.taotao.com/jd/2e45f69b388a453384ecab07a5f80c7c.jpg', '560', '1', '2015-03-08 21:28:30', '2015-03-08 21:28:30');
INSERT INTO `tb_item` VALUES ('1330197', '【联通0元购机】联想 黄金斗士 Note8(A936)增强版 融雪白 联通双4G手机 双卡双待', '新年大促!直降ING!最多含1199元话费!合约购,更超值', '98800', '99999', null, 'http://image.taotao.com/jd/4929d69432244f759c2c307c2ebc243e.jpg', '560', '1', '2015-03-08 21:32:09', '2015-03-08 21:32:09');
INSERT INTO `tb_item` VALUES ('1330216', '【联通0元购机】HTC Desire 820mu 镶蓝时尚白 移动联通4G手机 双卡双待', '', '114900', '99999', null, 'http://image.taotao.com/jd/8d60b26bc2bd4a168854eaa94ff4143d.jpg', '560', '1', '2015-03-08 21:31:58', '2015-03-08 21:31:58');
INSERT INTO `tb_item` VALUES ('1330218', '【联通0元购机】HTC Desire 820mu 镶蓝时尚灰 移动联通4G手机 双卡双待', '', '114900', '99999', null, 'http://image.taotao.com/jd/78c0ea8cc9a74119b4dbb7032497e1d0.jpg', '560', '1', '2015-03-08 21:33:18', '2015-03-08 21:33:18');
INSERT INTO `tb_item` VALUES ('1330230', '【联通0元购机】酷派 大神 F1Plus(8297-W01) 智尚白 联通版4G手机 双卡双待', '', '59900', '99999', null, 'http://image.taotao.com/jd/b5de902452ba40ea8cb632152b1134a5.jpg', '560', '1', '2015-03-08 21:30:44', '2015-03-08 21:30:44');
INSERT INTO `tb_item` VALUES ('1330414', '海信(Hisense)LED40EC290N 40英寸智能电视 六核顶配WIFI(泰坦灰)', '同尺寸40吋智能40EC510N火爆清仓中,货源不多速戳!<a target=\"blank\" href=\"http://item.jd.com/1127598.html\">“这里”</a>', '229900', '99999', null, 'http://image.taotao.com/jd/6baf9b078ece4a87928a3adbdc8291e3.jpg', '76', '1', '2015-03-08 21:27:35', '2015-03-08 21:27:35');
INSERT INTO `tb_item` VALUES ('1331111', '飞利浦 (S316T) 深海锖 移动联通4G手机 双卡双待', '智能机、老人机,双系统一键切换!双卡双待双4G手机', '79900', '99999', null, 'http://image.taotao.com/jd/3d541307a5fd4c53a551644473d246b8.jpg', '560', '1', '2015-03-08 21:28:44', '2015-03-08 21:28:44');
INSERT INTO `tb_item` VALUES ('1331405', '飞利浦(PHILIPS)55PFF5650/T3 55英寸 全高清净蓝新科技健康新LED智能电视(黑色)', '预约享4399专享价!真正抗蓝光,净蓝新科技!飞利浦专利舒适蓝,真正呵护双眸健康!<a href=\'http://sale.jd.com/act/w0QBLfRX53sGgFV.html\' target=\'_blank\'>预约有机会0元送电视一台哦!</a>', '459900', '99999', null, 'http://image.taotao.com/jd/311f8e786d9a4cfabd34756ca39f6430.jpg', '76', '1', '2015-03-08 21:27:45', '2015-03-08 21:27:45');
INSERT INTO `tb_item` VALUES ('1331411', '飞利浦(PHILIPS)50PFF5650/T3 50英寸 全高清净蓝新科技健康新LED智能电视(黑色)', '预约享3799专享价!真正抗蓝光护眼,净蓝新科技!飞利浦专利舒适蓝,真正呵护双眸健康!<a href=\'http://sale.jd.com/act/w0QBLfRX53sGgFV.html\' target=\'_blank\'>预约有机会0元送电视一台哦!</a>', '399900', '99999', null, 'http://image.taotao.com/jd/b7996d46149e494bb3c8fa127ace0cda.jpg', '76', '1', '2015-03-08 21:27:45', '2015-03-08 21:27:45');
INSERT INTO `tb_item` VALUES ('1331676', '金立 商务翻盖 (W900) 荣耀金 联通移动4G手机 双卡双待', '奢华翻盖设计,精钢铸造机身,开合之间,方显从容!', '338800', '99999', null, 'http://image.taotao.com/jd/e161a1ec32074852a587ce7dd5ee42ee.jpg', '560', '1', '2015-03-08 21:28:01', '2015-03-08 21:28:01');
INSERT INTO `tb_item` VALUES ('1332090', '华为(HUAWEI)Y635-CL00 黑 电信4G手机 双卡双待', '5吋四核!细纹触感!500万像素!开启超省电模式!', '66800', '99999', null, 'http://image.taotao.com/jd/9aa2e125e4bd40d9aae2a61f86b0828c.jpg', '560', '1', '2015-03-08 21:28:16', '2015-03-08 21:28:16');
INSERT INTO `tb_item` VALUES ('1332268', '海信 E621T 温莎白 电信4G手机', '500万像素,骁龙四核,高性价比!', '59900', '99999', null, 'http://image.taotao.com/jd/103b3445c74f4ebf85c691b666d14770.jpg', '560', '1', '2015-03-08 21:30:03', '2015-03-08 21:30:03');
INSERT INTO `tb_item` VALUES ('1332512', '中兴 青漾3 (G719c) 白色 电信4G手机 双卡双待', '新品荣耀上市,八核64位高通处理器,5.5英寸高清大屏,1300万高清摄像头,3000毫安超强电池!', '169000', '99999', null, 'http://image.taotao.com/jd/d63046810bdd41b794eb0ba78831326e.jpg', '560', '1', '2015-03-08 21:28:30', '2015-03-08 21:28:30');
INSERT INTO `tb_item` VALUES ('1332719', 'KKTV R49U50 49英寸4K超高清8核安卓智能液晶电视(黑色)', '[开运单品]不要犹豫,用4K,改变视界!每人限购3台!先到先得哦!<a target=\"blank\" href=\"http://sale.jd.com/act/IrXe3ywoUE.html\">京易求精!京东易迅联合首发!</a>', '299900', '99999', null, 'http://image.taotao.com/jd/bf0a55932ebd41f69903d5d97349c524.jpg', '76', '1', '2015-03-08 21:27:39', '2015-03-08 21:27:39');
INSERT INTO `tb_item` VALUES ('1332758', '摩托罗拉 moto x(x+1)(XT1085) 16GB 妩媚红 移动联通电信4G手机', '选择做女王!3月6号-3月8号,手机移动端、微信端和手Q端下单,即可尊享女王特权家价!<a target=\"blank\" href=\"http://moto.jd.com\">hellomoto更多惊喜,访问moto.jd.com</a>', '329900', '99999', null, 'http://image.taotao.com/jd/6605e886d4e04e3e99e6a3dbfea3f43a.jpg', '560', '1', '2015-03-08 21:28:09', '2015-03-08 21:28:09');
INSERT INTO `tb_item` VALUES ('1333304', '华为(HUAWEI)GX1 黑 电信4G手机 双卡双待', '赠16G内存卡+蓝牙耳机+移动电源!星际战舰6吋超大屏!爽视觉!细皮纹质感!强续航!', '159000', '99999', null, 'http://image.taotao.com/jd/5d0e901dc4aa4ec78000a0304b074b5a.jpg', '560', '1', '2015-03-08 21:28:16', '2015-03-08 21:28:16');
INSERT INTO `tb_item` VALUES ('1333570', '三星 Galaxy A7 (SM-A7009) 雪域白 电信4G手机 双卡双待', '下单送12000毫安移动电源!全新A系列,5.5英寸大屏、1300w+500w像素!!', '299900', '99999', null, 'http://image.taotao.com/jd/aab6e172551a441bac85166973c05679.jpg', '560', '1', '2015-03-08 21:27:42', '2015-03-08 21:27:42');
INSERT INTO `tb_item` VALUES ('1333610', '联想 A5800-D 4GB 清新白 移动4G手机 双卡双待', '超低热价畅享4G!5.5英寸4G手机超值热卖!双卡双待!', '59900', '99999', null, 'http://image.taotao.com/jd/feed9705849b4a3dad176ac2446521af.jpg', '560', '1', '2015-03-08 21:29:11', '2015-03-08 21:29:11');
INSERT INTO `tb_item` VALUES ('1334693', '中兴 S6 LUX(Q7) 银色 移动4G手机 双卡双待', '新品!震撼来袭!5.5英寸显示屏!1.5GHz真八核!1300万像素!', '199900', '99999', null, 'http://image.taotao.com/jd/d1d9206127224b1fab49885960cd0778.jpg', '560', '1', '2015-03-08 21:33:18', '2015-03-08 21:33:18');
INSERT INTO `tb_item` VALUES ('1334916', '海信 G610M(劲锐黑)移动4G手机 精品四防', '海信金刚,防摔、防水、防砸、防尘,英伦设计,尊贵大方!更超值配送蓝牙耳机!', '179900', '99999', null, 'http://image.taotao.com/jd/5b85ddd02f6d42f68b013825f4af87d2.jpg', '560', '1', '2015-03-08 21:29:47', '2015-03-08 21:29:47');
INSERT INTO `tb_item` VALUES ('1335104', '三星 Galaxy A5 (A5009) 甜梦粉 电信4G手机 双卡双待', '送价值370元的拍立得!三星全新A系列-开启全新骑士金属风!', '259900', '99999', null, 'http://image.taotao.com/jd/10b7ac7b430e4455abf386284d9fe60a.jpg', '560', '1', '2015-03-08 21:28:01', '2015-03-08 21:28:01');
INSERT INTO `tb_item` VALUES ('1335156', 'HTC Desire 826w 公开版 典雅白 移动联通4G手机 双卡双待', '前置【UltraPixel超像素】+后置【1300万】摄像头+【双】前置扬声器+【杜比】音效+5.5英寸【1080p】大屏', '229900', '99999', null, 'http://image.taotao.com/jd/a28b9a990a0249589642d0f7bf8c0871.jpg', '560', '1', '2015-03-08 21:27:37', '2015-03-08 21:27:37');
INSERT INTO `tb_item` VALUES ('1335277', '长虹(CHANGHONG)42U2 42英寸4K超高清安卓智能平板LED液晶电视(黑色)', '42吋4K新品,4K晶显引擎,高清不将就!超高清时代,你OUT了吗?<a target=\"blank\" href=\"http://sale.jd.com/act/Kt0aHzbU7uR1M.html\">“去长虹新年专场”</a>', '289900', '99999', null, 'http://image.taotao.com/jd/607cf341daf64a1f955fb3a15b8924b8.jpg', '76', '1', '2015-03-08 21:27:45', '2015-03-08 21:27:45');
INSERT INTO `tb_item` VALUES ('1335395', '酷派 8017-T00 灵动白 移动4G手机', '4.0高清大屏,四核1.2GHz,200万摄像头!', '39900', '99999', null, 'http://image.taotao.com/jd/611d0d7b583d4e20b69c702eb9fd0b6b.jpg', '560', '1', '2015-03-08 21:30:20', '2015-03-08 21:30:20');
INSERT INTO `tb_item` VALUES ('1335523', '【联通赠费套装版】魅蓝 note 16G 白色 联通4G手机 双卡双待', '', '129900', '99999', null, 'http://image.taotao.com/jd/36930202d79a49b4b97e8722552dc8ff.jpg', '560', '1', '2015-03-08 21:28:55', '2015-03-08 21:28:55');
INSERT INTO `tb_item` VALUES ('1335543', '【联通0元购机】魅蓝note 白 联通4G手机 16G 双卡双待单通', '', '119900', '99999', null, 'http://image.taotao.com/jd/b06afe037b6e4beda2a1bd02cef957ef.jpg', '560', '1', '2015-03-08 21:29:47', '2015-03-08 21:29:47');
INSERT INTO `tb_item` VALUES ('1335558', '【联通0元购机】魅蓝 note 白色 16G版 联通4G手机 双卡双待单通', '', '119900', '99999', null, 'http://image.taotao.com/jd/d7f7f74a9db048039223ecdaecb5c333.jpg', '560', '1', '2015-03-08 21:29:11', '2015-03-08 21:29:11');
INSERT INTO `tb_item` VALUES ('1336821', '康佳(KONKA)LED55E20Y 55英寸 易TV语义操控8核安卓液晶电视(黑+银)', '', '439900', '99999', null, 'http://image.taotao.com/jd/7a2e0b4b9ae148c49014cb2823427f93.jpg', '76', '1', '2015-03-08 21:29:12', '2015-03-08 21:29:12');
INSERT INTO `tb_item` VALUES ('1338071', '华为 Ascend P7 (P7-L00) 粉色 联通4G手机 双卡双待双通', '华为旗舰机!5.0英寸屏幕!1300万像素主摄像头,畅享移动4G高速网络 !<a target=\"blank\" href=\"http://sale.jd.com/act/ZovfiDKYagBQJ.html\">更多推荐请点击!</a>', '238800', '99999', null, 'http://image.taotao.com/jd/faa4baf2660242a681d01c2b88686b8a.jpg', '560', '1', '2015-03-08 21:28:16', '2015-03-08 21:28:16');
INSERT INTO `tb_item` VALUES ('1338132', '【联通赠费版】荣耀 6 Plus (PE-TL10) 黑色 移动联通双4G手机 双卡双待双通', '', '259900', '99999', null, 'http://image.taotao.com/jd/032b9eca95fc4d999c1f3c79dbb228c7.jpg', '560', '1', '2015-03-08 21:28:30', '2015-03-08 21:28:30');
INSERT INTO `tb_item` VALUES ('1338133', '【联通赠费版】荣耀 6 Plus (PE-TL10) 白色 移动联通双4G手机 双卡双待双通', '', '259900', '99999', null, 'http://image.taotao.com/jd/96868174d48f4ea1861bd6270880308d.jpg', '560', '1', '2015-03-08 21:28:30', '2015-03-08 21:28:30');
INSERT INTO `tb_item` VALUES ('1338297', '酷派 Y60-W 极地白 移动联通4G手机 双卡双待', '酷享4G,智选大屏!', '59800', '99999', null, 'http://image.taotao.com/jd/b69d7ba38920467daff12fb0ea80e4d2.jpg', '560', '1', '2015-03-08 21:29:19', '2015-03-08 21:29:19');
INSERT INTO `tb_item` VALUES ('1338399', '海尔模卡(MOOKA)U55H3 55英寸安卓智能4K网络A9处理器超薄窄边框UHD超高清LED液晶电视', '【全网热销单品】海尔出品,55英寸4K极清电视,让家人看的更舒心,A9处理器!200名晒单返还50元话费!<a target=\"blank\" href=\"http://sale.jd.com/act/vfQlPDUkRy8zO3b.html\">更多优惠点我!</a>', '409900', '99999', null, 'http://image.taotao.com/jd/c09e936fca3e45b097e15438edcfb16b.jpg', '76', '1', '2015-03-08 21:27:39', '2015-03-08 21:27:39');
INSERT INTO `tb_item` VALUES ('1338409', '创维酷开(coocaa)K49 49英寸智能酷开系统 八核网络平板液晶电视(黑色)', '智能酷开系统,原装LG IPS硬屏,免费正版影视资源,丰富游戏应用!<a target=\"blank\" href=\"http://jmall.jd.com/p117514.html\">“猛戳这里,更多惊喜”</a>', '279900', '99999', null, 'http://image.taotao.com/jd/c8f1479f2a984161899ab1542138ca92.jpg', '76', '1', '2015-03-08 21:27:39', '2015-03-08 21:27:39');
INSERT INTO `tb_item` VALUES ('1339106', '苹果(Apple)iPhone 6 Plus (A1524) 16GB 金色 移动联通电信4G手机(配移动电源套装)', '', '618700', '99999', null, 'http://image.taotao.com/jd/691b7db426c54ccc931d060a16e04257.jpg', '560', '1', '2015-03-08 21:33:18', '2015-03-08 21:33:18');
INSERT INTO `tb_item` VALUES ('1339113', '苹果(Apple)iPhone 6 Plus (A1524) 16GB 银色 移动联通电信4G手机(配移动电源套装)', '', '608700', '99999', null, 'http://image.taotao.com/jd/700e41ca3a2a4cb8907c4481aa9d0bd7.jpg', '560', '1', '2015-03-08 21:33:18', '2015-03-08 21:33:18');
INSERT INTO `tb_item` VALUES ('1339121', '苹果(Apple)iPhone 6 Plus (A1524) 16GB 深空灰色 移动联通电信4G手机(配移动电源套装)', '', '598700', '99999', null, 'http://image.taotao.com/jd/6bcdbc9e62e0432fb8eafac3afee01f9.jpg', '560', '1', '2015-03-08 21:33:18', '2015-03-08 21:33:18');
INSERT INTO `tb_item` VALUES ('1339423', '【购机送费版】三星 Galaxy Note4 (N9106W) 雅墨黑 联通4G手机 双卡双待', '', '459900', '99999', null, 'http://image.taotao.com/jd/e4a99dcd66404916951df742fdfb0509.jpg', '560', '1', '2015-03-08 21:33:18', '2015-03-08 21:33:18');
INSERT INTO `tb_item` VALUES ('1340124', '联想 A3800-D 4GB 星夜黑 移动4G手机 双卡双待', '超低热价畅享4G!4.5英寸4G手机超值热卖!皮纹后壳高端体验!双卡双待!', '49900', '99999', null, 'http://image.taotao.com/jd/36d5380ce04b4d51aa4f038d6ed26c88.jpg', '560', '1', '2015-03-08 21:28:30', '2015-03-08 21:28:30');
INSERT INTO `tb_item` VALUES ('1340284', 'OPPO R1C(R8205) 冰晶白 电信4G 双卡双待', '送至美一拍礼包+移动电源!R1C,更有诚意的提升!', '259900', '99999', null, 'http://image.taotao.com/jd/02c58866838d4581a116254da873e2e8.jpg', '560', '1', '2015-03-08 21:28:16', '2015-03-08 21:28:16');
INSERT INTO `tb_item` VALUES ('1341900', '摩托罗拉 moto g (XT1079)8GB 黑色 移动联通4G手机 双卡双待', 'moto x、moto g京东各系列独家首发!<a target=\"blank\" href=\"http://moto.jd.com\">hellomoto更多惊喜,访问moto.jd.com</a>', '129900', '99999', null, 'http://image.taotao.com/jd/a4a92de3413d4b57a2e59dd8bc374322.jpg', '560', '1', '2015-03-08 21:27:42', '2015-03-08 21:27:42');
INSERT INTO `tb_item` VALUES ('1341901', '摩托罗拉 moto g (XT1079)16GB 黑色 移动联通4G手机 双卡双待', 'moto x、moto g京东各系列独家首发!<a target=\"blank\" href=\"http://moto.jd.com\">hellomoto更多惊喜,访问moto.jd.com</a>', '149900', '99999', null, 'http://image.taotao.com/jd/89bba761438648e88fb60c4c1ee3a2b3.jpg', '560', '1', '2015-03-08 21:27:42', '2015-03-08 21:27:42');
INSERT INTO `tb_item` VALUES ('1341911', '摩托罗拉 moto g (XT1079)16GB 白色 移动联通4G手机 双卡双待', 'moto x、moto g京东各系列独家首发!<a target=\"blank\" href=\"http://moto.jd.com\">hellomoto更多惊喜,访问moto.jd.com</a>', '149900', '99999', null, 'http://image.taotao.com/jd/ddf907be2750452388b5b362b6a148fd.jpg', '560', '1', '2015-03-08 21:27:54', '2015-03-08 21:27:54');
INSERT INTO `tb_item` VALUES ('1343298', '【联通赠费版】三星 Galaxy A7 (SM-A7000) 精灵黑 移动联通4G手机 双卡双待', '', '299900', '99999', null, 'http://image.taotao.com/jd/08d94efa1ff94b879454c433a02caa6f.jpg', '560', '1', '2015-03-08 21:33:18', '2015-03-08 21:33:18');
INSERT INTO `tb_item` VALUES ('1343301', '【联通赠费版】三星 Galaxy A7 (SM-A7000) 雪域白 移动联通4G手机 双卡双待', '', '299900', '99999', null, 'http://image.taotao.com/jd/56e3549db9e44e6c9e7fe8a5320d2b91.jpg', '560', '1', '2015-03-08 21:33:18', '2015-03-08 21:33:18');
INSERT INTO `tb_item` VALUES ('1343303', '【联通赠费版】三星 Galaxy A3 (SM-A3000) 甜梦粉 移动联通4G手机 双卡双待', '', '199800', '99999', null, 'http://image.taotao.com/jd/cdbbca53a86c46039450355183278636.jpg', '560', '1', '2015-03-08 21:33:18', '2015-03-08 21:33:18');
INSERT INTO `tb_item` VALUES ('1343308', '【联通赠费版】三星 Galaxy A5 (SM-A5000) 甜梦粉 移动联通4G手机 双卡双待', '', '259900', '99999', null, 'http://image.taotao.com/jd/f9f7e07cef744ff0be21ca172b74b787.jpg', '560', '1', '2015-03-08 21:33:18', '2015-03-08 21:33:18');
INSERT INTO `tb_item` VALUES ('1343309', '【联通赠费版】三星 Galaxy A5 (SM-A5000) 骑士银 移动联通4G手机 双卡双待', '', '259900', '99999', null, 'http://image.taotao.com/jd/deb9a5c561e54611a22577bd79e570df.jpg', '560', '1', '2015-03-08 21:33:18', '2015-03-08 21:33:18');
INSERT INTO `tb_item` VALUES ('1344126', '联想 笋尖 S90 (S90-E) 2GB 铂雅金 电信4G手机 双卡双待', '支持电信4G网络,高通骁龙处理器,5英寸720P高清大屏,1300万摄像头,金属一体机身!', '169900', '99999', null, 'http://image.taotao.com/jd/86e8117a430a4a4298d93b745a897199.jpg', '560', '1', '2015-03-08 21:28:16', '2015-03-08 21:28:16');
INSERT INTO `tb_item` VALUES ('1345371', '【套装版】酷派 大神 X7(8690-T00)土豪金 移动4G手机 双卡双待', '大神年度旗舰,5.2英寸屏,八核CPU,2+16G内存!超实惠配件(耳机+8G内存卡)!', '169900', '99999', null, 'http://image.taotao.com/jd/9b3d8b833a0f4c19ab538404930f4f3d.jpg', '560', '1', '2015-03-08 21:27:37', '2015-03-08 21:27:37');
INSERT INTO `tb_item` VALUES ('1345417', '酷派 锋尚 Y75 白色 移动4G手机', '5.5英寸大屏,Qualcomm 骁龙处理器,风格简约时尚,双卡双待!', '93900', '99999', null, 'http://image.taotao.com/jd/244ec7b62f8c4d6c806bb0b9980e866c.jpg', '560', '1', '2015-03-08 21:28:16', '2015-03-08 21:28:16');
INSERT INTO `tb_item` VALUES ('1345516', '酷派 大神 F2(8675-HD) 水晶之恋“女神版”珊瑚粉 移动版4G手机 双卡双待', '全新大神F2移动4G版,套装搭配施华洛世奇晶饰耳机+擎天柱移动电源!梦幻珊瑚粉,女神的不二选择!<a target=\"blank\" href=\"http://item.jd.com/1345517.html\">水晶之恋男神版,也为你的男神配一台吧!</a>', '109900', '99999', null, 'http://image.taotao.com/jd/2fe094c9ab33489db69ebd1109e72fc6.jpg', '560', '1', '2015-03-08 21:27:49', '2015-03-08 21:27:49');
INSERT INTO `tb_item` VALUES ('1345517', '酷派 大神 F2(8675-HD) 水晶之恋“男神版”智尚白 移动版4G手机 双卡双待', '全新大神F2移动4G版,套装搭配施华洛世奇晶饰耳机+擎天柱移动电源!好机配好礼,男神版等你来!<a target=\"blank\" href=\"http://item.jd.com/1345516.html\">水晶之恋女神版,每个女人心目中都有这样一台属于自己的手机!</a>', '109900', '99999', null, 'http://image.taotao.com/jd/f5d7a3d2e14c49fba2405b52a8b3fbaa.jpg', '560', '1', '2015-03-08 21:28:01', '2015-03-08 21:28:01');
INSERT INTO `tb_item` VALUES ('1345586', '【联通赠费版】酷派 大神 X7(8690)土豪金 移动联通4G手机 双卡双待', '合约购买需支付预存款,预存款将以话费形式返还给顾客,实际支付价格请按订单提交时为准!', '169900', '99999', null, 'http://image.taotao.com/jd/58c905978f3740d0af2fc8918e526b11.jpg', '560', '1', '2015-03-08 21:28:55', '2015-03-08 21:28:55');
INSERT INTO `tb_item` VALUES ('1345596', '【联通赠费版】酷派 大神 F2全高清版(8675-FHD) 智尚白 移动联通双4G手机 双卡双待', '合约购买需支付预存款,预存款将以话费形式返还给顾客,实际支付价格请按订单提交时为准!', '99900', '99999', null, 'http://image.taotao.com/jd/44808a829edf4bee930302ae95d31e9b.jpg', '560', '1', '2015-03-08 21:29:11', '2015-03-08 21:29:11');
INSERT INTO `tb_item` VALUES ('1346269', '三星 Galaxy E7000 白色 移动联通4G手机 双卡双待', '新品上柜,支持移动联通4G网络!', '219800', '99999', null, 'http://image.taotao.com/jd/9d0d5e7daba24396ac049f9749525fd9.jpg', '560', '1', '2015-03-08 21:27:54', '2015-03-08 21:27:54');
INSERT INTO `tb_item` VALUES ('1346282', '三星 Galaxy G7200 白色 移动联通4G手机 双卡双待', '双卡双待4G手机!5.25英寸屏,500W前置摄像头!', '199800', '99999', null, 'http://image.taotao.com/jd/6db34c16b2744383ba143523e5711d5d.jpg', '560', '1', '2015-03-08 21:28:44', '2015-03-08 21:28:44');
INSERT INTO `tb_item` VALUES ('1346359', '【联通赠费版】三星 Galaxy A3 (SM-A3000) 雪域白 移动联通4G手机 双卡双待', '', '200000', '99999', null, 'http://image.taotao.com/jd/e8e099389fe04c3fa85479797d84f64f.jpg', '560', '1', '2015-03-08 21:33:18', '2015-03-08 21:33:18');
INSERT INTO `tb_item` VALUES ('1349928', '波导(BiRD) K559 太空灰 移动联通2G老人手机 双卡双待', '<a href=\"http://sale.jd.com/mall/bvFcdHOWNhP.html\"target=\"_blank\">先领券后下单!</a>超长待机 老年机大字体大按键大音量 触屏手写QQ电子书直板按键备用手机', '29900', '99999', null, 'http://image.taotao.com/jd/09b62b31e768439f911cc500107f02c7.jpg', '560', '1', '2015-03-08 21:29:11', '2015-03-08 21:29:11');
INSERT INTO `tb_item` VALUES ('1350811', '酷派 5313S 极地白 电信4G手机', '4G不贵,轻松体会,双卡生活,随心所欲!', '59900', '99999', null, 'http://image.taotao.com/jd/6078716149d24a80a9d8c5f6fd38ded5.jpg', '560', '1', '2015-03-08 21:31:17', '2015-03-08 21:31:17');
INSERT INTO `tb_item` VALUES ('1351514', 'OPPO 3000 白色 联通4G手机 双卡双待', '送蓝牙耳机+春促礼盒!智享科技,随心悦拍!', '159900', '99999', null, 'http://image.taotao.com/jd/fbc2196d0f334763a3ae568ab5a18de0.jpg', '560', '1', '2015-03-08 21:29:19', '2015-03-08 21:29:19');
INSERT INTO `tb_item` VALUES ('1351519', 'OPPO N3(N5209)白色 移动联通双4G手机 双卡双待', 'N3 双4G版,京东首发!预约抢购即送大礼包(内含头戴式蓝牙耳机、半年延保卡)!<a href=\'http://sale.jd.com/act/HUKRcmdys4Y.html\' target=\'_blank\'>晒单更有京东E卡送!</a>', '399900', '99999', null, 'http://image.taotao.com/jd/90bf7e8d3ecf4b4ca5aed345001ca366.jpg', '560', '1', '2015-03-08 21:33:18', '2015-03-08 21:33:18');
INSERT INTO `tb_item` VALUES ('1351910', '三星 Galaxy G7200 灰色 移动联通4G手机 双卡双待', '', '199800', '99999', null, 'http://image.taotao.com/jd/fbdcc1aacbc240308b8386b2e44f2041.jpg', '560', '1', '2015-03-08 21:33:18', '2015-03-08 21:33:18');
INSERT INTO `tb_item` VALUES ('1352516', '小米 红米2 深灰 电信合约版 电信4G手机 不含合约计划', '', '79900', '99999', null, 'http://image.taotao.com/jd/28d5a2ed34f94d968c5b015b64c24a20.jpg', '560', '1', '2015-03-08 21:33:48', '2015-03-08 21:33:48');
INSERT INTO `tb_item` VALUES ('1352521', '小米 红米2 白色 电信合约版 电信4G手机 双卡双待 不含合约计划', '4.7英寸HD屏,8GB ROM+1GB RAM,800+200万摄像头,双卡双待!', '79900', '99999', null, 'http://image.taotao.com/jd/aabd0c8871a3474eaa77fe06e75d2c62.jpg', '560', '1', '2015-03-08 21:33:48', '2015-03-08 21:33:48');
INSERT INTO `tb_item` VALUES ('1352936', '三星 Galaxy S5 (G9009W) 金 电信4G手机 双卡双待双通', '5.1英寸AMOLED屏 IP67级防尘防水 1600万像素 带超级省电模式 支持指纹识别', '329900', '99999', null, 'http://image.taotao.com/jd/76ec3bb2b5794286bbc001c06e74a6b3.jpg', '560', '1', '2015-03-08 21:28:16', '2015-03-08 21:28:16');
INSERT INTO `tb_item` VALUES ('1354376', '酷派 Y80D 智尚白 电信4G手机', '5.5英寸大屏,Qualcomm 骁龙处理器,风格简约时尚,双卡双待!', '93900', '99999', null, 'http://image.taotao.com/jd/c4b5e864ee8b47ce93e871b050d4467e.jpg', '560', '1', '2015-03-08 21:29:11', '2015-03-08 21:29:11');
INSERT INTO `tb_item` VALUES ('1355561', '【标准套装版】联想 黄金斗士Note8(A938t)增强版 融雪白 移动4G手机 双卡双待', '标准套装版(内含支架保护套+贴膜),2G RAM,64位真八核,3300mA大电量!', '99800', '99999', null, 'http://image.taotao.com/jd/70835af7dc9b4d15990ae6965350d82f.jpg', '560', '1', '2015-03-08 21:28:01', '2015-03-08 21:28:01');
INSERT INTO `tb_item` VALUES ('1356054', '夏普(SHARP)LCD-50DS72A 50英寸 无线网络 安卓智能 4K超高清液晶电视', '', '549900', '99999', null, 'http://image.taotao.com/jd/d001c3b8abab41fda1d4ed4ccf3fec50.jpg', '76', '1', '2015-03-08 21:29:12', '2015-03-08 21:29:12');
INSERT INTO `tb_item` VALUES ('1356092', '苹果(Apple)iPhone 6 Plus (A1524) 64GB 金色 移动联通电信4G手机(配移动电源套装)', '', '718700', '99999', null, 'http://image.taotao.com/jd/507d990062944b3392c5df91da275bc3.jpg', '560', '1', '2015-03-08 21:33:18', '2015-03-08 21:33:18');
INSERT INTO `tb_item` VALUES ('1356117', '苹果(Apple)iPhone 6 Plus (A1524) 64GB 银色 移动联通电信4G手机(配移动电源套装)', '', '688700', '99999', null, 'http://image.taotao.com/jd/7c32c398c02540daa481f4f23b3a502c.jpg', '560', '1', '2015-03-08 21:33:18', '2015-03-08 21:33:18');
INSERT INTO `tb_item` VALUES ('1356126', '苹果(Apple)iPhone 6 Plus (A1524) 64GB 深空灰色 移动联通电信4G手机(配移动电源套装)', '', '688700', '99999', null, 'http://image.taotao.com/jd/5217ebaa40d04332bc3b9a964b00e9ce.jpg', '560', '1', '2015-03-08 21:33:18', '2015-03-08 21:33:18');
INSERT INTO `tb_item` VALUES ('1356530', '【联通赠费版】三星 Galaxy S5 (G9006W) 闪耀白 联通4G手机 双卡双待', '', '299900', '99999', null, 'http://image.taotao.com/jd/e7a1d500a5514680b858df83c8492d84.jpg', '560', '1', '2015-03-08 21:33:18', '2015-03-08 21:33:18');
INSERT INTO `tb_item` VALUES ('1356535', '【联通赠费版】三星 Galaxy S5 (G9006W) 电光蓝 联通4G手机 双卡双待', '', '279900', '99999', null, 'http://image.taotao.com/jd/447e6b9ce17f4235b92f230057cc0d54.jpg', '560', '1', '2015-03-08 21:33:18', '2015-03-08 21:33:18');
INSERT INTO `tb_item` VALUES ('1356541', '【联通赠费版】三星 Galaxy S5 (G9006W) 流光金 联通4G手机 双卡双待', '', '279900', '99999', null, 'http://image.taotao.com/jd/3bbeb6446b3f404989011b76c726b936.jpg', '560', '1', '2015-03-08 21:33:18', '2015-03-08 21:33:18');
INSERT INTO `tb_item` VALUES ('1356546', '【联通赠费版】三星 Galaxy S5 (G9006W) 酷碳黑 联通4G手机 双卡双待', '', '279900', '99999', null, 'http://image.taotao.com/jd/a398075562424085bb5803a74a4a8b18.jpg', '560', '1', '2015-03-08 21:33:18', '2015-03-08 21:33:18');
INSERT INTO `tb_item` VALUES ('1369278', '【联通合约惠机】小米 红米Note 增强版 象牙白 联通4G手机', '红米NOTE + 千元话费 = 超值合约惠机强势来袭!含1199元话费!', '89900', '99999', null, 'http://image.taotao.com/jd/070de62bbd8a43d38f9a321df38591af.jpg', '560', '1', '2015-03-08 21:33:48', '2015-03-08 21:33:48');
-- ----------------------------
-- Table structure for tb_order
-- ----------------------------
DROP TABLE IF EXISTS `tb_order`;
CREATE TABLE `tb_order` (
`order_id` varchar(50) COLLATE utf8_bin NOT NULL DEFAULT '' COMMENT '订单id',
`payment` varchar(50) COLLATE utf8_bin DEFAULT NULL COMMENT '实付金额。精确到2位小数;单位:元。如:200.07,表示:200元7分',
`payment_type` int(2) DEFAULT NULL COMMENT '支付类型,1、在线支付,2、货到付款',
`post_fee` varchar(50) COLLATE utf8_bin DEFAULT NULL COMMENT '邮费。精确到2位小数;单位:元。如:200.07,表示:200元7分',
`status` int(10) DEFAULT NULL COMMENT '状态:1、未付款,2、已付款,3、未发货,4、已发货,5、交易成功,6、交易关闭',
`create_time` datetime DEFAULT NULL COMMENT '订单创建时间',
`update_time` datetime DEFAULT NULL COMMENT '订单更新时间',
`payment_time` datetime DEFAULT NULL COMMENT '付款时间',
`consign_time` datetime DEFAULT NULL COMMENT '发货时间',
`end_time` datetime DEFAULT NULL COMMENT '交易完成时间',
`close_time` datetime DEFAULT NULL COMMENT '交易关闭时间',
`shipping_name` varchar(20) COLLATE utf8_bin DEFAULT NULL COMMENT '物流名称',
`shipping_code` varchar(20) COLLATE utf8_bin DEFAULT NULL COMMENT '物流单号',
`user_id` bigint(20) DEFAULT NULL COMMENT '用户id',
`buyer_message` varchar(100) COLLATE utf8_bin DEFAULT NULL COMMENT '买家留言',
`buyer_nick` varchar(50) COLLATE utf8_bin DEFAULT NULL COMMENT '买家昵称',
`buyer_rate` int(2) DEFAULT NULL COMMENT '买家是否已经评价',
`refundStatus` int(2) DEFAULT NULL,
`refundReason` varchar(255) COLLATE utf8_bin DEFAULT NULL,
`isRefund` int(2) DEFAULT NULL,
PRIMARY KEY (`order_id`),
KEY `create_time` (`create_time`) USING BTREE,
KEY `buyer_nick` (`buyer_nick`) USING BTREE,
KEY `status` (`status`) USING BTREE,
KEY `payment_type` (`payment_type`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
-- ----------------------------
-- Records of tb_order
-- ----------------------------
INSERT INTO `tb_order` VALUES ('1130', '1', '1', '2', '1', '2018-04-01 16:51:38', '2018-02-15 16:51:38', '2018-02-15 16:51:38', '2018-02-15 16:51:38', '2015-04-03 16:51:38', '2015-04-03 16:51:38', '圆通快递', '11111', '11', '价格好评!', '小三个傻瓜', '1', null, null, null);
INSERT INTO `tb_order` VALUES ('31', '383', '1', '2', '3', '2018-04-02 16:51:38', '2018-02-15 16:51:38', '2018-02-15 16:51:38', '2018-02-15 16:51:38', '2015-04-03 16:51:38', '2015-04-03 16:51:38', '圆通快递', '11111', '11', '价格好评!', '小包', '1', null, null, null);
INSERT INTO `tb_order` VALUES ('311', '383', '2', '2', '5', '2018-04-04 16:51:38', '2018-03-15 16:51:38', '2018-03-15 16:51:38', '2018-03-15 16:51:38', '2015-04-03 16:51:38', '2015-04-03 16:51:38', '顺丰快递', '11111', '11', '价格好评!', '小百', '1', null, null, null);
INSERT INTO `tb_order` VALUES ('3110', '383', '1', '2', '3', '2018-04-06 16:51:38', '2018-03-15 16:51:38', '2018-03-15 16:51:38', '2018-03-15 16:51:38', '2015-04-03 16:51:38', '2015-04-03 16:51:38', '韵达快递', '11111', '11', '差评!', '小搜索', '1', '3', '价格比外面的高', '1');
INSERT INTO `tb_order` VALUES ('311011', '883', '1', '2', '3', '2018-04-07 16:51:38', '2018-03-15 16:51:38', '2018-03-15 16:51:38', '2018-03-15 16:51:38', '2015-04-03 16:51:38', '2015-04-03 16:51:38', '韵达快递', '11111', '11', '差评!', '小搜索', '1', '3', '价格比外面的高', '1');
INSERT INTO `tb_order` VALUES ('311012', '1', '1', '2', '3', '2018-04-08 16:51:38', '2018-03-15 16:51:38', '2018-03-15 16:51:38', '2018-03-15 16:51:38', '2015-04-03 16:51:38', '2015-04-03 16:51:38', '韵达快递', '11111', '11', '差评!', '小搜索', '1', '3', '价格比外面的高', '1');
INSERT INTO `tb_order` VALUES ('312210', '382.211', '1', '2', '3', '2018-04-14 16:51:38', '2018-03-15 16:51:38', '2018-03-30 16:51:38', '2018-03-15 16:51:38', '2015-04-03 16:51:38', '2015-04-03 16:51:38', '韵达快递', '11111', '11', '差评!', '小搜索', '2', '2', '被坑了', '1');
INSERT INTO `tb_order` VALUES ('31221011', '1838', '1', '2', '3', '2018-04-14 16:51:38', '2018-03-15 16:51:38', '2018-03-31 16:51:38', '2018-03-15 16:51:38', '2015-04-03 16:51:38', '2015-04-03 16:51:38', '韵达快递', '11111', '11', '差评!', '小搜索', '2', '2', '被坑了', '1');
-- ----------------------------
-- Table structure for tb_order_item
-- ----------------------------
DROP TABLE IF EXISTS `tb_order_item`;
CREATE TABLE `tb_order_item` (
`id` varchar(20) COLLATE utf8_bin NOT NULL,
`item_id` varchar(50) COLLATE utf8_bin NOT NULL COMMENT '商品id',
`order_id` varchar(50) COLLATE utf8_bin NOT NULL COMMENT '订单id',
`num` int(10) DEFAULT NULL COMMENT '商品购买数量',
`title` varchar(200) COLLATE utf8_bin DEFAULT NULL COMMENT '商品标题',
`price` bigint(50) DEFAULT NULL COMMENT '商品单价',
`total_fee` bigint(50) DEFAULT NULL COMMENT '商品总金额',
`pic_path` varchar(200) COLLATE utf8_bin DEFAULT NULL COMMENT '商品图片地址',
PRIMARY KEY (`id`),
KEY `item_id` (`item_id`) USING BTREE,
KEY `order_id` (`order_id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
-- ----------------------------
-- Records of tb_order_item
-- ----------------------------
INSERT INTO `tb_order_item` VALUES ('1', '1204376', '1130', '1', '金立 S5.1 (GN9005) 白色 移动4G手机', '199900', '199900', '');
INSERT INTO `tb_order_item` VALUES ('2', '1208757', '31', '1', '华为 G521 白色 移动4G手机', '48900', '48900', '');
INSERT INTO `tb_order_item` VALUES ('3', '1208757', '312210', '1', '华为 G521 白色 移动4G手机', '48900', '48900', '');
INSERT INTO `tb_order_item` VALUES ('3211', '1213603', '311', '10', '中国移动 M812c 珠光银 移动4G手机', '109900', '1099000', '');
INSERT INTO `tb_order_item` VALUES ('3212331', '1214036', '3110', '1', 'OPPO R3(R7005)银色 电信4G手机 双卡双待双通', '229900', '229900', '');
-- ----------------------------
-- Table structure for tb_order_shipping
-- ----------------------------
DROP TABLE IF EXISTS `tb_order_shipping`;
CREATE TABLE `tb_order_shipping` (
`order_id` varchar(50) NOT NULL COMMENT '订单ID',
`receiver_name` varchar(20) DEFAULT NULL COMMENT '收货人全名',
`receiver_phone` varchar(20) DEFAULT NULL COMMENT '固定电话',
`receiver_mobile` varchar(30) DEFAULT NULL COMMENT '移动电话',
`receiver_state` varchar(10) DEFAULT NULL COMMENT '省份',
`receiver_city` varchar(10) DEFAULT NULL COMMENT '城市',
`receiver_district` varchar(20) DEFAULT NULL COMMENT '区/县',
`receiver_address` varchar(200) DEFAULT NULL COMMENT '收货地址,如:xx路xx号',
`receiver_zip` varchar(6) DEFAULT NULL COMMENT '邮政编码,如:310001',
`created` datetime DEFAULT NULL,
`updated` datetime DEFAULT NULL,
PRIMARY KEY (`order_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of tb_order_shipping
-- ----------------------------
INSERT INTO `tb_order_shipping` VALUES ('31', '小岛', '1331818181', '1861818181', '广东省', '广州市', '海珠区', '文明路212号', '310001', '2015-04-03 16:51:38', '2015-04-03 16:51:38');
INSERT INTO `tb_order_shipping` VALUES ('311', '江疏影', '1861818181', '1861818181', '广东省', '广州市', '海珠区', '中山路212号', '310001', '2015-04-03 16:51:38', '2015-04-03 16:51:38');
INSERT INTO `tb_order_shipping` VALUES ('3110', '延宇振', '1631818181', '1861818181', '广东省', '广州市', '海珠区', '文明路212号', '310001', '2015-04-03 16:51:38', '2015-04-03 16:51:38');
-- ----------------------------
-- Table structure for tb_re_item
-- ----------------------------
DROP TABLE IF EXISTS `tb_re_item`;
CREATE TABLE `tb_re_item` (
`id` bigint(20) NOT NULL COMMENT '商品id,同时也是商品编号',
`title` varchar(100) NOT NULL COMMENT '商品标题',
`sell_point` varchar(500) DEFAULT NULL COMMENT '商品卖点',
`price` bigint(20) NOT NULL COMMENT '商品价格,单位为:分',
`num` int(10) NOT NULL COMMENT '库存数量',
`barcode` varchar(30) DEFAULT NULL COMMENT '商品条形码',
`image` varchar(500) DEFAULT NULL COMMENT '商品图片',
`cid` bigint(10) NOT NULL COMMENT '所属类目,叶子类目',
`status` tinyint(4) NOT NULL DEFAULT '1' COMMENT '商品状态,1-正常,2-下架,3-删除',
`recovered` datetime NOT NULL COMMENT '回收时间',
PRIMARY KEY (`id`),
KEY `cid` (`cid`),
KEY `status` (`status`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='商品表';
-- ----------------------------
-- Records of tb_re_item
-- ----------------------------
INSERT INTO `tb_re_item` VALUES ('6249', 'new8 三星 W999 黑色 电信3G手机', '下单送12000毫安移动电源!双3.5英寸魔焕炫屏,以非凡视野纵观天下时局,尊崇翻盖设计,张弛中,尽显从容气度!', '1', '99999', '', '', '75', '1', '2018-04-02 19:16:59');
INSERT INTO `tb_re_item` VALUES ('15050', 'new8- 三星 W999 黑色 电信3G手机 双卡双待双通', '下单送12000毫安移动电源!双3.5英寸魔焕炫屏,以非凡视野纵观天下时局,尊崇翻盖设计,张弛中,尽显从容气度!', '110011', '99999', '', '', '78', '1', '2018-04-18 10:50:51');
INSERT INTO `tb_re_item` VALUES ('51186', 'new8- 三星 W999 黑色 电信3G手机 双卡双待双通', '下单送12000毫安移动电源!双3.5英寸魔焕炫屏,以非凡视野纵观天下时局,尊崇翻盖设计,张弛中,尽显从容气度!', '1100', '99999', '', '', '0', '1', '2018-03-26 20:15:34');
-- ----------------------------
-- Table structure for tb_user
-- ----------------------------
DROP TABLE IF EXISTS `tb_user`;
CREATE TABLE `tb_user` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`userName` varchar(45) NOT NULL,
`password` varchar(45) NOT NULL,
`realName` varchar(45) DEFAULT NULL,
`business` varchar(45) DEFAULT NULL,
`email` varchar(45) DEFAULT NULL,
`headPicture` varchar(45) DEFAULT NULL,
`addDate` date DEFAULT NULL,
`updateDate` date DEFAULT NULL,
`state` int(11) DEFAULT '0' COMMENT '1:正常\n2:冻结\n3:删除',
PRIMARY KEY (`id`),
UNIQUE KEY `name_UNIQUE` (`userName`)
) ENGINE=InnoDB AUTO_INCREMENT=20 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of tb_user
-- ----------------------------
INSERT INTO `tb_user` VALUES ('6', 'admin', 'admin', '小花', '运营岗', '1818181818', null, '2018-03-19', '2018-03-19', '1');
INSERT INTO `tb_user` VALUES ('7', 'jesper', 'jesper', '111111aaa', '111', '<EMAIL>', null, '2018-03-30', '2018-04-04', '1');
-- ----------------------------
-- Function structure for formatDateTime
-- ----------------------------
DROP FUNCTION IF EXISTS `formatDateTime`;
DELIMITER ;;
CREATE DEFINER=`root`@`%` FUNCTION `formatDateTime`(fdate datetime) RETURNS varchar(255) CHARSET utf8
begin
declare x varchar(255) default '';
set x= date_format(fdate,'%Y年%m月%d日%h时%i分%s秒');
return x;
end
;;
DELIMITER ;
|
<gh_stars>1-10
-- Create a database.
-- $ createdb weather
--
-- Import the sample data. Thanks to NOAA for original data: https://www.ncdc.noaa.gov/cdo-web/
-- $ psql -f data/weather.sql weather
--
-- Start the psql PostgreSQL client
-- $ psql weather
-- Explore the database and familiarize yourself with the data schema. (e.g. use \d)
-- Exercise 1:
-- 1.1 Find which weather station has the highest temperature record.
-- 1.2 Find which weather station has the coldest temperature record.
-- 1.3 Find the hottest and coldest record for each station in a single query.
-- Can we find the average wind speed for each day at each station?
select stations.name, reports.time::date, avg(wind_speed)
from reports
join stations on reports.station_id=stations.id
group by 1, 2
order by 1, 2;
-- Is this correct (enough)? Why or why not?
select stations.name, reports.time::date, avg(wind_speed), count(*) samples
from reports
join stations on reports.station_id=stations.id
group by 1, 2
order by 1, 2;
-- Perhaps a slightly different question would be easier to answer?
select stations.name, reports.time::date, min(wind_speed), max(wind_speed)
from reports
join stations on reports.station_id=stations.id
group by 1, 2
order by 1, 2;
-- Exercise 2:
-- 2.1 Find the high and low temperature, humidity, and wind speed for each day at each station.
-- Now that we can find daily statistics, let's find the monthly average high and low temperatures at each station. A
-- sub-query that returns a result set and can be used in a FROM clause.
select name,
left(date::text, 7),
avg(min_tempf) as avg_min_tempf,
avg(max_tempf) as avg_max_tempf
from (
select stations.name,
time::date as date,
min(tempf) min_tempf,
max(tempf) max_tempf,
min(humidity) min_humidity,
max(humidity) max_humidity,
min(wind_speed) min_wind_speed,
max(wind_speed) max_wind_speed
from reports
join stations on reports.station_id=stations.id
group by 1, 2
) t
group by 1, 2
order by 1, 2;
-- That's starting to get messy. Let's extract the daily summarization into a view.
create view daily_summaries as
select stations.id as station_id,
stations.name as station_name,
time::date as date,
min(tempf) min_tempf,
max(tempf) max_tempf,
min(humidity) min_humidity,
max(humidity) max_humidity,
min(wind_speed) min_wind_speed,
max(wind_speed) max_wind_speed
from reports
join stations on reports.station_id=stations.id
group by 1, 3;
-- Note that we didn't need to group by stations.name since we were already grouping by stations.id.
-- Now let's rewrite the previous query to use the view.
select station_name,
left(date::text, 7),
avg(min_tempf) as avg_min_tempf,
avg(max_tempf) as avg_max_tempf
from daily_summaries
group by 1, 2
order by 1, 2;
-- Perhaps we could make this faster with a materialized view.
create materialized view daily_summaries_mat as
select stations.id as station_id,
stations.name as station_name,
time::date as date,
min(tempf) min_tempf,
max(tempf) max_tempf,
min(humidity) min_humidity,
max(humidity) max_humidity,
min(wind_speed) min_wind_speed,
max(wind_speed) max_wind_speed
from reports
join stations on reports.station_id=stations.id
group by 1, 3;
select station_name,
left(date::text, 7),
avg(min_tempf) as avg_min_tempf,
avg(max_tempf) as avg_max_tempf
from daily_summaries_mat
group by 1, 2
order by 1, 2;
-- Why is it faster? What are the downsides?
-- Exercise 3 (advanced):
-- 3.1 We discussed sampling issues with averaging hourly data. But are there any entirely missing days? Hint: You can
-- do this with generate_series, cross join, and left join.
-- 3.2 What days had the most similar temperatures between O'Hare and Jacksonville? Hint: The same table can be
-- selected from multiple times in a single query by renaming the table.
|
-- --------------------------------------------------------------------------------------------------------------
-- TODO: Extract the appropriate data from the northwind database, and INSERT it into the Northwind_DW database.
-- --------------------------------------------------------------------------------------------------------------
-- ----------------------------------------------
-- Populate dim_customers
-- ----------------------------------------------
INSERT INTO `northwind_dw`.`dim_customers`
(`customer_key`,
`company`,
`last_name`,
`first_name`,
`job_title`,
`business_phone`,
`fax_number`,
`address`,
`city`,
`state_province`,
`zip_postal_code`,
`country_region`)
SELECT `id`,
`company`,
`last_name`,
`first_name`,
`job_title`,
`business_phone`,
`fax_number`,
`address`,
`city`,
`state_province`,
`zip_postal_code`,
`country_region`
FROM northwind.customers;
-- ----------------------------------------------
-- Validate that the Data was Inserted ----------
-- ----------------------------------------------
SELECT * FROM northwind_dw.dim_customers;
-- ----------------------------------------------
-- Populate dim_employees
-- ----------------------------------------------
INSERT INTO `northwind_dw`.`dim_employees`
(`employee_key`,
`company`,
`last_name`,
`first_name`,
`email_address`,
`job_title`,
`business_phone`,
`home_phone`,
`fax_number`,
`address`,
`city`,
`state_province`,
`zip_postal_code`,
`country_region`,
`web_page`)
SELECT `employees`.`id`,
`employees`.`company`,
`employees`.`last_name`,
`employees`.`first_name`,
`employees`.`email_address`,
`employees`.`job_title`,
`employees`.`business_phone`,
`employees`.`home_phone`,
`employees`.`fax_number`,
`employees`.`address`,
`employees`.`city`,
`employees`.`state_province`,
`employees`.`zip_postal_code`,
`employees`.`country_region`,
`employees`.`web_page`
FROM `northwind`.`employees`;
-- ----------------------------------------------
-- Validate that the Data was Inserted ----------
-- ----------------------------------------------
SELECT * FROM northwind_dw.dim_employees;
-- ----------------------------------------------
-- Populate dim_products
-- ----------------------------------------------
INSERT INTO `northwind_dw`.`dim_products`
(`product_key`,
`product_code`,
`product_name`,
`standard_cost`,
`list_price`,
`reorder_level`,
`target_level`,
`quantity_per_unit`,
`discontinued`,
`minimum_reorder_quantity`,
`category`)
# TODO: Write a SELECT Statement to Populate the table;
-- ----------------------------------------------
-- Validate that the Data was Inserted ----------
-- ----------------------------------------------
SELECT * FROM northwind_dw.dim_products;
-- ----------------------------------------------
-- Populate dim_shippers
-- ----------------------------------------------
INSERT INTO `northwind_dw`.`dim_shippers`
(`shipper_key`,
`company`,
`address`,
`city`,
`state_province`,
`zip_postal_code`,
`country_region`)
# TODO: Write a SELECT Statement to Populate the table;
-- ----------------------------------------------
-- Validate that the Data was Inserted ----------
-- ----------------------------------------------
SELECT * FROM northwind_dw.dim_shippers;
-- ----------------------------------------------
-- Populate fact_orders
-- ----------------------------------------------
INSERT INTO `northwind_dw`.`fact_orders`
(`order_id`,
`employee_id`,
`customer_id`,
`product_id`,
`shipper_id`,
`ship_name`,
`ship_address`,
`ship_city`,
`ship_state_province`,
`ship_zip_postal_code`,
`ship_country_region`,
`quantity`,
`order_date`,
`shipped_date`,
`unit_price`,
`discount`,
`shipping_fee`,
`taxes`,
`payment_type`,
`paid_date`,
`tax_rate`,
`order_status`,
`order_details_status`)
/*
--------------------------------------------------------------------------------------------------
TODO: Write a SELECT Statement that:
- JOINS the northwind.orders table with the northwind.orders_status table
- JOINS the northwind.orders with the northwind.order_details table.
-- (TIP: Remember that there is a one-to-many relationship between orders and order_details).
- JOINS the northwind.order_details table with the northwind.order_details_status table.
--------------------------------------------------------------------------------------------------
- The column list I've included in the INSERT INTO clause above should be your guide to which
- columns you're required to extract from each of the four tables. Pay close attention!
--------------------------------------------------------------------------------------------------
*/
-- ----------------------------------------------
-- Validate that the Data was Inserted ----------
-- ----------------------------------------------
SELECT * FROM northwind_dw.fact_orders; |
/*
SQLyog Ultimate - MySQL GUI v8.2
MySQL - 5.5.33 : Database - mangosvbaccounts
*********************************************************************
*/
/*!40101 SET NAMES utf8 */;
/*!40101 SET SQL_MODE=''*/;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
CREATE DATABASE /*!32312 IF NOT EXISTS*/`mangosvbaccounts` /*!40100 DEFAULT CHARACTER SET latin1 */;
/*Table structure for table `corpse` */
DROP TABLE IF EXISTS `corpse`;
CREATE TABLE `corpse` (
`guid` int(11) unsigned NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier',
`player` int(11) unsigned NOT NULL DEFAULT '0' COMMENT 'Character Global Unique Identifier',
`position_x` float NOT NULL DEFAULT '0',
`position_y` float NOT NULL DEFAULT '0',
`position_z` float NOT NULL DEFAULT '0',
`orientation` float NOT NULL DEFAULT '0',
`map` int(11) unsigned NOT NULL DEFAULT '0' COMMENT 'Map Identifier',
`time` bigint(20) unsigned NOT NULL DEFAULT '0',
`corpse_type` tinyint(3) unsigned NOT NULL DEFAULT '0',
`instance` int(11) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`guid`),
KEY `idx_type` (`corpse_type`),
KEY `instance` (`instance`),
KEY `Idx_player` (`player`),
KEY `Idx_time` (`time`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='Death System';
/*Data for the table `corpse` */
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
|
INSERT INTO cboard.dashboard_widget (widget_id,user_id,category_name,widget_name,data_json,create_time,update_time) VALUES
(2,'1','Default Category','student','{"config":{"chart_type":"line","filters":[],"groups":[],"keys":[{"col":"name","type":"eq","values":[]}],"selects":["id","city","birthday","age"],"valueAxis":"vertical","values":[{"cols":[{"aggregate_type":"sum","col":"score"}],"name":"","series_type":"stackbar","type":"value"}]},"datasetId":2}','2017-11-27 16:16:44.000','2017-11-27 16:16:44.000')
; |
<reponame>AVPolyakov/QueryLifting<filename>Examples/Scripts/201901271450_ParentChild.sql
CREATE TABLE Parent (
ParentId INT PRIMARY KEY
);
CREATE TABLE Child (
ChildId INT PRIMARY KEY,
ParentId INT NOT NULL,
FOREIGN KEY (ParentId) REFERENCES Parent(ParentId)
);
INSERT Parent (ParentId) VALUES (1);
INSERT Parent (ParentId) VALUES (2);
INSERT Child (ChildId, ParentId) VALUES (1, 1);
INSERT Child (ChildId, ParentId) VALUES (2, 1);
INSERT Child (ChildId, ParentId) VALUES (3, 2);
INSERT Child (ChildId, ParentId) VALUES (4, 2);
INSERT Child (ChildId, ParentId) VALUES (5, 2);
|
<filename>schema.sql
--
-- Table structure for table `foc_affiliation_cards`
--
CREATE TABLE `foc_affiliation_cards` (
`id` tinyint(3) UNSIGNED NOT NULL,
`affiliation` text COLLATE utf8_bin NOT NULL,
`hash` text COLLATE utf8_bin NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
--
-- Dumping data for table `foc_affiliation_cards`
--
INSERT INTO `foc_affiliation_cards` (`id`, `affiliation`, `hash`) VALUES
(1, 'Miner', 'fd26b78'),
(2, 'Miner', '7627bec'),
(3, 'Miner', '6148b14'),
(4, 'Miner', 'ff4217f'),
(5, 'Miner', 'd81b10d'),
(6, 'Miner', '5d6972a'),
(7, 'Miner', '251709f'),
(8, 'Miner', '0017aa6'),
(9, 'Miner', '63226a4'),
(10, 'Miner', 'cb3397c'),
(11, 'Miner', '089aca5'),
(12, 'Miner', '8ef80e1'),
(13, 'Saboteur', '777f2ad'),
(14, 'Saboteur', '264ba84'),
(15, 'Saboteur', '739ac5c'),
(16, 'Saboteur', 'aedcdfd'),
(17, 'Saboteur', '1a67fa4'),
(18, 'Saboteur', '8397fc9');
-- --------------------------------------------------------
--
-- Table structure for table `foc_cards_on_board`
--
CREATE TABLE `foc_cards_on_board` (
`id` smallint(5) UNSIGNED NOT NULL,
`board` tinyint(1) UNSIGNED NOT NULL,
`row` tinyint(3) UNSIGNED NOT NULL,
`col` tinyint(3) UNSIGNED NOT NULL,
`card_type_id` tinyint(3) UNSIGNED NOT NULL,
`rotated` tinyint(1) UNSIGNED NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
-- --------------------------------------------------------
--
-- Table structure for table `foc_cards_on_hand`
--
CREATE TABLE `foc_cards_on_hand` (
`id` int(10) UNSIGNED NOT NULL,
`group_id` tinyint(3) UNSIGNED NOT NULL,
`card_type_id` tinyint(3) UNSIGNED NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
-- --------------------------------------------------------
--
-- Table structure for table `foc_card_types`
--
CREATE TABLE `foc_card_types` (
`id` int(10) UNSIGNED NOT NULL,
`type` tinyint(1) NOT NULL DEFAULT '1' COMMENT '1 for path, 2 for map, 3 for block, 4 for rockfall',
`count` tinyint(3) UNSIGNED NOT NULL,
`connect_top` tinyint(1) UNSIGNED NOT NULL DEFAULT '0',
`connect_right` tinyint(1) UNSIGNED NOT NULL DEFAULT '0',
`connect_bottom` tinyint(1) UNSIGNED NOT NULL DEFAULT '0',
`connect_left` tinyint(1) UNSIGNED NOT NULL DEFAULT '0',
`path` tinyint(1) UNSIGNED NOT NULL,
`filename` text COLLATE utf8_bin NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
--
-- Dumping data for table `foc_card_types`
--
INSERT INTO `foc_card_types` (`id`, `type`, `count`, `connect_top`, `connect_right`, `connect_bottom`, `connect_left`, `path`, `filename`) VALUES
(0, 0, 0, 0, 0, 0, 0, 0, 'normal_backing.jpg'),
(1, 2, 6, 0, 0, 0, 0, 0, 'map.jpg'),
(2, 3, 4, 0, 0, 0, 0, 0, 'block.jpg'),
(3, 4, 5, 0, 0, 0, 0, 0, 'rockfall.jpg'),
(4, 1, 8, 1, 0, 1, 1, 1, 'path02.jpg'),
(5, 1, 8, 1, 1, 1, 1, 1, 'path03.jpg'),
(6, 1, 7, 1, 0, 1, 0, 1, 'path04.jpg'),
(7, 1, 8, 0, 1, 1, 0, 1, 'path05.jpg'),
(8, 1, 9, 0, 0, 1, 1, 1, 'path06.jpg'),
(9, 1, 7, 0, 1, 0, 1, 1, 'path07.jpg'),
(10, 1, 2, 1, 1, 1, 0, 0, 'path08.jpg'),
(11, 1, 2, 1, 0, 0, 0, 0, 'path09.jpg'),
(12, 1, 2, 1, 1, 1, 1, 0, 'path10.jpg'),
(13, 1, 2, 0, 1, 1, 0, 0, 'path11.jpg'),
(14, 1, 2, 0, 0, 1, 1, 0, 'path12.jpg'),
(15, 1, 2, 0, 1, 0, 0, 0, 'path13.jpg'),
(16, 1, 2, 1, 0, 1, 0, 0, 'path14.jpg'),
(17, 1, 2, 1, 1, 0, 1, 0, 'path15.jpg'),
(18, 1, 2, 0, 1, 0, 1, 0, 'path16.jpg'),
(19, 1, 8, 0, 1, 1, 1, 1, 'path01.jpg');
-- --------------------------------------------------------
--
-- Table structure for table `foc_groups`
--
CREATE TABLE `foc_groups` (
`id` tinyint(3) UNSIGNED NOT NULL,
`name` text COLLATE utf8_bin NOT NULL,
`board` tinyint(1) UNSIGNED NOT NULL,
`affiliation` tinyint(1) UNSIGNED NOT NULL DEFAULT '0',
`hash` text COLLATE utf8_bin,
`blocked` tinyint(1) UNSIGNED NOT NULL DEFAULT '0',
`last_stn` tinyint(4) NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
--
-- Dumping data for table `foc_groups`
--
INSERT INTO `foc_groups` (`id`, `name`, `board`, `affiliation`, `hash`, `blocked`, `last_stn`) VALUES
(1, 'Bifur', 1, 1, 'e52cf2', 0, 1),
(2, 'Bombur', 1, 2, 'b299e3', 0, 1),
(3, 'Borin', 1, 1, 'b23a44', 0, 0),
(4, 'Dori', 1, 1, '2ab276', 0, 1),
(5, 'Durin', 1, 2, '806dff', 0, 1),
(6, 'Fíli', 1, 1, '44fe46', 0, 1),
(7, 'Narvi', 1, 1, '68abf2', 1, 1),
(8, 'Telchar', 1, 1, '4bad98', 1, 1),
(9, 'Balin', 2, 2, 'c13abf', 0, 1),
(10, 'Bofur', 2, 1, '7fb4b9', 0, 0),
(11, 'Dwalin ', 2, 2, '54f146', 0, 1),
(12, 'Flói', 2, 1, '76074b', 0, 1),
(13, 'Gimli', 2, 1, '0ffeb0', 0, 0),
(14, 'Kíli', 2, 1, 'ead1a3', 0, 0),
(15, 'Nori', 2, 1, '0150f6', 0, 1),
(16, 'Thorin', 2, 2, 'e40a75', 0, 0),
(18, 'Admin (Board 1)', 1, 1, 'hash1', 0, 0),
(21, 'Admin (Board 2)', 2, 1, 'hash2', 0, 0);
-- --------------------------------------------------------
--
-- Table structure for table `foc_log_cards_given`
--
CREATE TABLE `foc_log_cards_given` (
`id` smallint(5) UNSIGNED NOT NULL,
`timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`stn_id` tinyint(3) UNSIGNED NOT NULL,
`group_id` tinyint(3) UNSIGNED NOT NULL,
`card_type_id` tinyint(3) UNSIGNED NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
-- --------------------------------------------------------
--
-- Table structure for table `foc_log_cards_placed`
--
CREATE TABLE `foc_log_cards_placed` (
`id` smallint(5) UNSIGNED NOT NULL,
`group_id` tinyint(3) UNSIGNED NOT NULL,
`card_type_id` tinyint(3) UNSIGNED NOT NULL,
`row` tinyint(3) UNSIGNED NOT NULL DEFAULT '0',
`col` tinyint(3) UNSIGNED NOT NULL DEFAULT '0',
`rotated` tinyint(1) UNSIGNED NOT NULL DEFAULT '0',
`timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
-- --------------------------------------------------------
--
-- Table structure for table `foc_log_groups_closed`
--
CREATE TABLE `foc_log_groups_closed` (
`id` tinyint(3) UNSIGNED NOT NULL,
`timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`stn_id` tinyint(3) UNSIGNED NOT NULL,
`group_id` tinyint(3) UNSIGNED NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
-- --------------------------------------------------------
--
-- Table structure for table `foc_stations`
--
CREATE TABLE `foc_stations` (
`id` tinyint(3) UNSIGNED NOT NULL,
`name` text COLLATE utf8_bin NOT NULL,
`hash` text COLLATE utf8_bin NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
--
-- Dumping data for table `foc_stations`
--
INSERT INTO `foc_stations` (`id`, `name`, `hash`) VALUES
(1, 'h(EAR)', 'a803a9'),
(2, 'Relay (Zone 1)', '7f95c6'),
(3, 'Crossing the Danger Zone', '6ea002'),
(4, 'Riddlers', '89a42b'),
(5, 'Own or Get Owned', '665800'),
(6, 'Counting Stars', '05cffd'),
(7, 'Puppet Show', '73c127'),
(8, 'Dance Off', '8fa9ff'),
(9, 'Creation Time!', '0c403b'),
(10, 'Can you Math', '0116e9'),
(11, 'Knowledgeable', '465312'),
(12, 'Relay (Zone 2)', '84d644'),
(13, 'Crackkk', '13819b'),
(14, 'Blind Shapes', 'c8ce69'),
(15, 'Treasure Hunt', '46f5d5'),
(16, 'Dance Off', 'c2da80'),
(17, 'Admin', 'adminhash');
--
-- Indexes for dumped tables
--
--
-- Indexes for table `foc_affiliation_cards`
--
ALTER TABLE `foc_affiliation_cards`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `foc_cards_on_board`
--
ALTER TABLE `foc_cards_on_board`
ADD PRIMARY KEY (`id`),
ADD KEY `card_type_id` (`card_type_id`);
--
-- Indexes for table `foc_cards_on_hand`
--
ALTER TABLE `foc_cards_on_hand`
ADD PRIMARY KEY (`id`),
ADD KEY `group_id` (`group_id`);
--
-- Indexes for table `foc_card_types`
--
ALTER TABLE `foc_card_types`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `foc_groups`
--
ALTER TABLE `foc_groups`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `foc_log_cards_given`
--
ALTER TABLE `foc_log_cards_given`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `foc_log_cards_placed`
--
ALTER TABLE `foc_log_cards_placed`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `foc_log_groups_closed`
--
ALTER TABLE `foc_log_groups_closed`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `foc_stations`
--
ALTER TABLE `foc_stations`
ADD PRIMARY KEY (`id`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `foc_affiliation_cards`
--
ALTER TABLE `foc_affiliation_cards`
MODIFY `id` tinyint(3) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=19;
--
-- AUTO_INCREMENT for table `foc_cards_on_board`
--
ALTER TABLE `foc_cards_on_board`
MODIFY `id` smallint(5) UNSIGNED NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `foc_cards_on_hand`
--
ALTER TABLE `foc_cards_on_hand`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `foc_card_types`
--
ALTER TABLE `foc_card_types`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=21;
--
-- AUTO_INCREMENT for table `foc_groups`
--
ALTER TABLE `foc_groups`
MODIFY `id` tinyint(3) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=23;
--
-- AUTO_INCREMENT for table `foc_log_cards_given`
--
ALTER TABLE `foc_log_cards_given`
MODIFY `id` smallint(5) UNSIGNED NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `foc_log_cards_placed`
--
ALTER TABLE `foc_log_cards_placed`
MODIFY `id` smallint(5) UNSIGNED NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `foc_log_groups_closed`
--
ALTER TABLE `foc_log_groups_closed`
MODIFY `id` tinyint(3) UNSIGNED NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `foc_stations`
--
ALTER TABLE `foc_stations`
MODIFY `id` tinyint(3) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=18;
/*!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>epmd-edp/admin-console
drop sequence if exists codebase_id_seq; |
--
-- Name: ensure_dummy_metrics_table(text); Type: FUNCTION; Schema: admin; Owner: pgwatch2
--
CREATE OR REPLACE FUNCTION admin.ensure_dummy_metrics_table(metric text) RETURNS boolean
LANGUAGE plpgsql
AS $_$
DECLARE
l_schema_type text;
l_template_table text := 'admin.metrics_template';
l_unlogged text := '';
BEGIN
SELECT schema_type INTO l_schema_type FROM admin.storage_schema_type;
IF NOT EXISTS (SELECT 1
FROM pg_tables
WHERE tablename = metric
AND schemaname = 'public')
THEN
IF metric ~ 'realtime' THEN
l_template_table := 'admin.metrics_template_realtime';
l_unlogged := 'UNLOGGED';
END IF;
IF l_schema_type = 'metric' THEN
EXECUTE format($$CREATE %s TABLE public."%s" (LIKE %s INCLUDING INDEXES)$$, l_unlogged, metric, l_template_table);
ELSIF l_schema_type = 'metric-time' THEN
EXECUTE format($$CREATE %s TABLE public."%s" (LIKE %s INCLUDING INDEXES) PARTITION BY RANGE (time)$$, l_unlogged, metric, l_template_table);
ELSIF l_schema_type = 'metric-dbname-time' THEN
EXECUTE format($$CREATE %s TABLE public."%s" (LIKE %s INCLUDING INDEXES) PARTITION BY LIST (dbname)$$, l_unlogged, metric, l_template_table);
END IF;
EXECUTE format($$COMMENT ON TABLE public."%s" IS 'pgwatch2-generated-metric-lvl'$$, metric);
RETURN true;
END IF;
RETURN false;
END;
$_$;
ALTER FUNCTION admin.ensure_dummy_metrics_table(metric text) OWNER TO pgwatch2;
|
SELECT * FROM addresses WHERE state IS NULL
|
<reponame>prabhm512/employee-tracker
-- Departments
INSERT INTO department (dept_name) VALUES
('service'),
('testing'),
('finance'),
('product development');
-- Roles
INSERT INTO emp_role (title, salary, department_id) VALUES
('qa specialist', 75000.00, 2),
('help desk technician', 45000.00, 1),
('frontend developer', 55000.00, 4),
('budget analyst', 60000.00, 3),
('accountant', 60000.00, 3),
('backend developer', 80000.00, 4),
('technology trainee', 40000, 4),
('testing manager', 90000.00, 2),
('senior software engineer', 130000.00, 4),
('service manager', 85000.00, 1),
('finance manager', 130000.00, 3);
-- Employees
INSERT INTO employee (first_name, last_name, role_id, manager_id) VALUES
('nathan', 'mcneil', 3, 5),
('allen', 'buck', 6, 5),
('ace', 'travis', 1, 11),
('eva', 'strong', 4, 7),
('terrel', 'lam', 9, null),
('pranav', 'deleon', 2, 8),
('gloria', 'schultz', 11, null),
('eve', 'thornton', 10, null),
('guadalupe', 'avila', 5, 7),
('kiara', 'copeland', 7, 5),
('abbigail', 'beasley', 8, null); |
-- deadlock free bank transfer
-- this is partial code to serve as an example
-- to delegate responsibilities to another service layer,
-- the database in this case.
-- @author <NAME>
-- @initialversion 2016-04-12
-- @lastchange 2018-09-05
begin work;
-- declare a rule do something else than just a simple update.
create or replace rule banking_action_update as
ON UPDATE to customer_account_allowed_state_event
DO instead (
update account set balance= new.balance where accountid=new.accountid;
);
-- check if a transaction is allowed
create or replace function checkbankingrules(donor_event account_event,
transaction_role text) returns void
language plpgsql
SECURITY DEFINER
as $checkbankingrules$
declare
fromstaterecord record;
begin
with dasm as (
select *,donor_event.accountid,donor_event.balance
from accountstatemachine asm
where startstate=donor_event.astate and asm.event=donor_event.event
), dcsm as (
select customerid,cstate,event,endstate
from customer cust
left join customerstatemachine csm on csm.startstate=cust.cstate
where customerid=donor_event.customerid
)
select acc.accountid, c.customerid,
acc.astate,
dasm.event as aevent,
dasm.endstate as aendstate,
c.cstate,
dcsm.event as cevent,
dcsm.endstate as cendstate,
acc.balance
from account acc join customer c using(customerid)
left join dasm on acc.astate=dasm.startstate and acc.accountid=dasm.accountid
left join dcsm on dcsm.customerid=c.customerid
where acc.accountid = donor_event.accountid and c.customerid=dcsm.customerid and dcsm.event=donor_event.event
into fromstaterecord;
-- raise notice 'staterecord (a,c,as,ae,aes,cs,ce,ces,bal)= %',fromstaterecord;
if fromstaterecord.aendstate isnull or fromstaterecord.cendstate isnull then
raise exception 'not obeying banking rules for event "%", role "%" customer (%) in state "%", account (%) in state "%"',
donor_event.event,transaction_role,fromstaterecord.customerid,fromstaterecord.cstate, fromstaterecord.accountid,donor_event.astate
using errcode='data_exception';
end if;
end; $checkbankingrules$;
-- Transfer money between account while avoiding deadlocks.
-- @froma account that provides the money
-- @toa account that accepts the money
-- @amount sic
-- @reason of the transaction. Will be shown in the bank statement.
CREATE OR REPLACE FUNCTION transferlockfree(froma integer, toa integer, amount numeric, reason text) RETURNS bigint
LANGUAGE plpgsql
SECURITY DEFINER
AS $transfer$
DECLARE
fromstaterecord record;--customer_account_allowed_state_event%rowtype;
tostaterecord record;-- customer_account_allowed_state_event%rowtype;
donor_event account_event;
receiver_event account_event;
transid bigint;
BEGIN
-- check validity of amount
if amount <= 0 then
raise exception '% is an illegal amount for a transfer',amount;
end if;
-- check conditions for accounts from and to
-- get the relevant info in a fixed order, set by account_id
-- starting with lowest number avoids deadlocks.
if fromA < toA then
-- from first
donor_event := getaccount_event(fromA, 'withdraw'::bankevent);
receiver_event := getaccount_event(toA, 'deposit'::bankevent);
else
-- to first
receiver_event := getaccount_event(toA, 'deposit'::bankevent);
donor_event := getaccount_event(fromA, 'withdraw'::bankevent);
end if;
if donor_event.balance + donor_event.maxdebit - amount < 0 then
raise EXCEPTION 'from account #% payment rule violation balance = %,maxdebit = %, amount = %',
froma, donor_event.balance,event.maxdebit , amount;
end if;
-- check donor account and customer
perform checkbankingrules(donor_event,'donor');
-- check receiver account and customer
perform checkbankingrules(receiver_event,'receiver');
-- checks if withdrawal and deposit is allowed is now complete.
select nextval('transactions_trans_id_seq'::regclass) into transid;
insert into transactions (trans_id,amount,receiver,donor,description,ts)
values(transid,amount,toa,froma,reason,now()::timestamp);
update customer_account_allowed_state_event
set balance = balance-amount
where accountid = froma and cevent='withdraw' and aevent='withdraw';
update customer_account_allowed_state_event
set balance = balance+amount
where accountid = toa and cevent='deposit' and aevent='deposit';
return transid;
END; $transfer$;
-- do the actual transfer
-- This method delegates the work to the method above
-- @froma account that provides the money
-- @toa account that accepts the money
-- @amount sic
-- @reason of the transaction. Will be shown in the bank statement.
-- @return a transactionid, identifying this transaction
CREATE OR REPLACE FUNCTION transfer(froma integer, toa integer, amount numeric, reason text, out transid bigint) RETURNS bigint
LANGUAGE plpgsql
SECURITY DEFINER
AS $withdraw$
BEGIN
transid= transferlockfree(froma, toa, amount, reason);
END; $withdraw$;
-- withdraw is the get cash at the bank
-- the amount is transferred from the froma account to the bank's account in return for cash.
-- @froma account that provides the money
-- @amount sic
-- @reason of the transaction. Will be shown in the bank statement.
-- @return a transactionid, identifying this transaction
CREATE OR REPLACE FUNCTION withdraw(in froma integer, in amount numeric, in reason text, out transid bigint ) RETURNS bigint
LANGUAGE plpgsql
SECURITY DEFINER
AS $withdraw$
declare
bank_account integer;
transid bigint;
begin
bank_account=99999999;
transid=transferlockfree(froma,bank_account,amount,reason);
end; $withdraw$;
-- deposit is put bank in the account. You give money to the bank and the bank transfers the money from it's account to yours.
-- the amount is transferred from the bank's to to toa account for the acceptance of cash.
-- @froma account that provides the money
-- @amount sic
-- @reason of the transaction. Will be shown in the bank statement.
-- @return a transactionid, identifying this transaction
CREATE OR REPLACE FUNCTION deposit(in toa integer, in amount numeric, in reason text, out transid bigint ) RETURNS bigint
LANGUAGE plpgsql
SECURITY DEFINER
AS $withdraw$
declare
bank_account integer;
transid bigint;
begin
bank_account=99999999;
transid = transferflockfree(bank_account,toa,amount,reason);
end; $withdraw$;
commit;
|
drop procedure if exists sp_tbl_BookingMaster;
create procedure sp_tbl_BookingMaster()
begin
DECLARE currentSchema varchar(100);
SELECT database() into currentSchema;
IF NOT EXISTS(
SELECT 1
FROM information_schema.TABLES
WHERE TABLE_SCHEMA = currentSchema
AND TABLE_NAME = 'tbl_BookingMaster'
) THEN
CREATE TABLE `tbl_BookingMaster`
(
`id` int(11) NOT NULL AUTO_INCREMENT,
`booking_type` enum ('service_booking','subscription_booking','subscription_service_booking') DEFAULT NULL,
`customer_id` int(11) DEFAULT NULL,
`subscription_id` int(11) DEFAULT NULL,
`service_id` int(11) DEFAULT NULL,
`employee_id` int(11) DEFAULT NULL,
`vendor_id` int(11) DEFAULT NULL,
`total_amount` decimal(18, 2) DEFAULT NULL,
`booking_status_id` int(11) DEFAULT NULL,
`booking_date` date DEFAULT NULL,
`booking_time` time DEFAULT NULL,
`address_id` int DEFAULT NULL,
`is_active` int(11) NOT NULL DEFAULT '1',
`created_by` int(11) NOT NULL DEFAULT 1,
`modified_by` int(11) DEFAULT NULL,
`created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`modified` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`)
);
end if;
if not exists(
select 1
from information_schema.COLUMNS
where TABLE_SCHEMA = currentSchema
and TABLE_NAME = 'tbl_BookingMaster'
and COLUMN_NAME = 'booking_end_time'
) then
begin
alter table tbl_BookingMaster
add column booking_end_time time default null after booking_time;
end;
end if;
if not exists(
select 1
from information_schema.COLUMNS
where TABLE_SCHEMA = currentSchema
and TABLE_NAME = 'tbl_BookingMaster'
and COLUMN_NAME = 'remarks'
) then
begin
alter table tbl_BookingMaster
add column remarks varchar(255) default null after address_id;
end;
end if;
if not exists(
select 1
from information_schema.COLUMNS
where TABLE_SCHEMA = currentSchema
and TABLE_NAME = 'tbl_BookingMaster'
and COLUMN_NAME = 'breed_id'
) then
begin
alter table tbl_BookingMaster
add column breed_id int default null after address_id;
end;
end if;
if not exists(
select 1
from information_schema.COLUMNS
where TABLE_NAME = 'tbl_BookingMaster'
and TABLE_SCHEMA = currentSchema
and COLUMN_NAME = 'booking_end_date'
) then
begin
alter table tbl_BookingMaster
add column booking_end_date timestamp default null after booking_date;
end;
end if;
end;
call sp_tbl_BookingMaster();
drop procedure if exists sp_tbl_BookingMaster; |
-- --------------------------------------------------------
-- Host: localhost
-- Server version: 5.7.24 - MySQL Community Server (GPL)
-- Server OS: Win64
-- HeidiSQL Version: 10.2.0.5599
-- --------------------------------------------------------
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET NAMES utf8 */;
/*!50503 SET NAMES utf8mb4 */;
/*!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' */;
-- Dumping database structure for mad_rest_api
CREATE DATABASE IF NOT EXISTS `mad_rest_api` /*!40100 DEFAULT CHARACTER SET latin1 */;
USE `mad_rest_api`;
-- Dumping structure for table mad_rest_api.attractions
CREATE TABLE IF NOT EXISTS `attractions` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`tempat_wisata` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`provinsi` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`jumlah_pengunjung` int(11) NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- Dumping data for table mad_rest_api.attractions: ~0 rows (approximately)
/*!40000 ALTER TABLE `attractions` DISABLE KEYS */;
/*!40000 ALTER TABLE `attractions` ENABLE KEYS */;
-- Dumping structure for table mad_rest_api.dok_approval
CREATE TABLE IF NOT EXISTS `dok_approval` (
`id_dok_approval` int(10) unsigned NOT NULL AUTO_INCREMENT,
`nama_dokumen` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`no_dokumen` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`jenis_dokumen` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`tanggal` date NOT NULL,
`waktu` time NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id_dok_approval`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- Dumping data for table mad_rest_api.dok_approval: ~0 rows (approximately)
/*!40000 ALTER TABLE `dok_approval` DISABLE KEYS */;
/*!40000 ALTER TABLE `dok_approval` ENABLE KEYS */;
-- Dumping structure for table mad_rest_api.dok_temuan
CREATE TABLE IF NOT EXISTS `dok_temuan` (
`id_dok_temuan` int(10) unsigned NOT NULL AUTO_INCREMENT,
`nama_dokumen` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`no_dokumen` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`jenis_dokumen` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`tanggal` date DEFAULT NULL,
`waktu` time DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id_dok_temuan`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- Dumping data for table mad_rest_api.dok_temuan: ~4 rows (approximately)
/*!40000 ALTER TABLE `dok_temuan` DISABLE KEYS */;
REPLACE INTO `dok_temuan` (`id_dok_temuan`, `nama_dokumen`, `no_dokumen`, `jenis_dokumen`, `tanggal`, `waktu`, `created_at`, `updated_at`) VALUES
(1, 'nofile.pdf', NULL, NULL, NULL, NULL, '2020-07-24 18:25:10', '2020-07-24 18:25:10'),
(2, 'nofile.pdf', NULL, NULL, NULL, NULL, '2020-07-24 18:26:11', '2020-07-24 18:26:11'),
(3, 'nofile.pdf', NULL, NULL, NULL, NULL, '2020-07-24 18:27:22', '2020-07-24 18:27:22'),
(4, 'document_1595615423.pdf', NULL, NULL, NULL, NULL, '2020-07-24 18:30:24', '2020-07-24 18:30:24');
/*!40000 ALTER TABLE `dok_temuan` ENABLE KEYS */;
-- Dumping structure for table mad_rest_api.failed_jobs
CREATE TABLE IF NOT EXISTS `failed_jobs` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`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,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- Dumping data for table mad_rest_api.failed_jobs: ~0 rows (approximately)
/*!40000 ALTER TABLE `failed_jobs` DISABLE KEYS */;
/*!40000 ALTER TABLE `failed_jobs` ENABLE KEYS */;
-- Dumping structure for table mad_rest_api.kpa
CREATE TABLE IF NOT EXISTS `kpa` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`namaKpa` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`cabang` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`alamat` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`isDeleted` int(1) DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- Dumping data for table mad_rest_api.kpa: ~2 rows (approximately)
/*!40000 ALTER TABLE `kpa` DISABLE KEYS */;
REPLACE INTO `kpa` (`id`, `namaKpa`, `cabang`, `alamat`, `created_at`, `updated_at`, `isDeleted`) VALUES
(1, 'HAHA', 'Bogor', 'SGSDF', NULL, '2020-07-27 05:52:53', 0),
(2, 'GSSD', 'SGDD', 'SGSDG', NULL, NULL, 1);
/*!40000 ALTER TABLE `kpa` ENABLE KEYS */;
-- Dumping structure for table mad_rest_api.log
CREATE TABLE IF NOT EXISTS `log` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`idUser` int(10) unsigned NOT NULL,
`namaUser` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL,
`cabangUser` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL,
`jabatanUser` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL,
`subject` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`method` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`ip` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`agent` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `log_iduser_foreign` (`idUser`),
CONSTRAINT `log_iduser_foreign` FOREIGN KEY (`idUser`) REFERENCES `users` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- Dumping data for table mad_rest_api.log: ~1 rows (approximately)
/*!40000 ALTER TABLE `log` DISABLE KEYS */;
REPLACE INTO `log` (`id`, `idUser`, `namaUser`, `cabangUser`, `jabatanUser`, `subject`, `url`, `method`, `ip`, `agent`, `created_at`, `updated_at`) VALUES
(2, 1, 'Adon', 'Adon', 'Adon', 'Melihat Data KPA', 'http://127.0.0.1:8000/api/kpa/get-data', 'GET', '127.0.0.1', 'PostmanRuntime/7.26.2', '2020-07-27 08:31:27', '2020-07-27 08:31:27');
/*!40000 ALTER TABLE `log` ENABLE KEYS */;
-- Dumping structure for table mad_rest_api.migrations
CREATE TABLE IF NOT EXISTS `migrations` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`migration` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`batch` int(11) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=18 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- Dumping data for table mad_rest_api.migrations: ~17 rows (approximately)
/*!40000 ALTER TABLE `migrations` DISABLE KEYS */;
REPLACE INTO `migrations` (`id`, `migration`, `batch`) VALUES
(1, '2014_10_12_000000_create_users_table', 1),
(2, '2019_08_19_000000_create_failed_jobs_table', 1),
(3, '2020_04_18_132713_create_attractions_table', 1),
(4, '2020_07_18_223536_create_ppk_table', 1),
(5, '2020_07_18_224345_create_dok_temuan_table', 1),
(6, '2020_07_18_224447_create_dok_approval_table', 1),
(7, '2020_07_20_021133_create_kpa_table', 1),
(8, '2020_07_20_021356_create_kpas_table', 2),
(9, '2020_07_24_143330_create_kpa_table', 3),
(10, '2020_07_24_143524_create_kpa_table', 4),
(11, '2020_07_24_181714_add_alamat_to_kpa_table', 5),
(12, '2020_07_25_022357_create_tindak_lanjut_table', 6),
(13, '2020_07_25_033738_create_tindak_lanjut_table', 7),
(14, '2020_07_25_122921_add_foto_to_users_table', 8),
(15, '2020_07_27_055953_create_log_table', 9),
(16, '2020_07_27_062323_create_log_table', 10),
(17, '2020_07_27_072542_create_log_table', 11);
/*!40000 ALTER TABLE `migrations` ENABLE KEYS */;
-- Dumping structure for table mad_rest_api.ppk
CREATE TABLE IF NOT EXISTS `ppk` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`idKpa` int(11) NOT NULL,
`namaPpk` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`isDeleted` int(1) DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- Dumping data for table mad_rest_api.ppk: ~1 rows (approximately)
/*!40000 ALTER TABLE `ppk` DISABLE KEYS */;
REPLACE INTO `ppk` (`id`, `idKpa`, `namaPpk`, `created_at`, `updated_at`, `isDeleted`) VALUES
(1, 1, 'GSDG', NULL, NULL, 0);
/*!40000 ALTER TABLE `ppk` ENABLE KEYS */;
-- Dumping structure for table mad_rest_api.tindak_lanjut
CREATE TABLE IF NOT EXISTS `tindak_lanjut` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`idUser` int(10) unsigned NOT NULL,
`idPpk` int(10) unsigned NOT NULL,
`idKpa` int(10) unsigned NOT NULL,
`namaDokumen` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`noDokumen` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`fileDokumen` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`isDeleted` int(1) NOT NULL DEFAULT '0',
`status` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`tglDariBpk` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`tglKePpk` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `tindak_lanjut_id_user_foreign` (`idUser`),
KEY `tindak_lanjut_id_ppk_foreign` (`idPpk`),
KEY `tindak_lanjut_id_kpa_foreign` (`idKpa`),
CONSTRAINT `tindak_lanjut_id_kpa_foreign` FOREIGN KEY (`idKpa`) REFERENCES `kpa` (`id`),
CONSTRAINT `tindak_lanjut_id_ppk_foreign` FOREIGN KEY (`idPpk`) REFERENCES `ppk` (`id`),
CONSTRAINT `tindak_lanjut_id_user_foreign` FOREIGN KEY (`idUser`) REFERENCES `users` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- Dumping data for table mad_rest_api.tindak_lanjut: ~1 rows (approximately)
/*!40000 ALTER TABLE `tindak_lanjut` DISABLE KEYS */;
REPLACE INTO `tindak_lanjut` (`id`, `idUser`, `idPpk`, `idKpa`, `namaDokumen`, `noDokumen`, `fileDokumen`, `isDeleted`, `status`, `tglDariBpk`, `tglKePpk`, `created_at`, `updated_at`) VALUES
(3, 1, 1, 1, 'HAMR', '884AJA', 'FSD_1595735851.pdf', 0, 'On', NULL, NULL, '2020-07-26 03:57:31', '2020-07-26 03:57:31');
/*!40000 ALTER TABLE `tindak_lanjut` ENABLE KEYS */;
-- Dumping structure for table mad_rest_api.users
CREATE TABLE IF NOT EXISTS `users` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`nama` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`cabang` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`jabatan` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`username` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`email` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`password` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`role` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`isDeleted` int(1) NOT NULL DEFAULT '0',
`remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`foto` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `users_username_unique` (`username`),
UNIQUE KEY `users_email_unique` (`email`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- Dumping data for table mad_rest_api.users: ~1 rows (approximately)
/*!40000 ALTER TABLE `users` DISABLE KEYS */;
REPLACE INTO `users` (`id`, `nama`, `cabang`, `jabatan`, `username`, `email`, `password`, `role`, `isDeleted`, `remember_token`, `created_at`, `updated_at`, `foto`) VALUES
(1, 'Adon', 'Pusat', 'CTO', 'adon', '<EMAIL>', <PASSWORD>lQlc82OR<KEY>GQn0S<KEY>', 'admin', 0, NULL, '2020-07-20 02:12:20', '2020-07-20 02:12:20', '');
/*!40000 ALTER TABLE `users` ENABLE KEYS */;
/*!40101 SET SQL_MODE=IFNULL(@OLD_SQL_MODE, '') */;
/*!40014 SET FOREIGN_KEY_CHECKS=IF(@OLD_FOREIGN_KEY_CHECKS IS NULL, 1, @OLD_FOREIGN_KEY_CHECKS) */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
|
<reponame>cagrin/tSQLt-edge<gh_stars>0
CREATE FUNCTION tSQLt.Private_GetQuotedObjectName (@ObjectName NVARCHAR(MAX))
RETURNS NVARCHAR(MAX) AS
BEGIN
DECLARE @QuotedObjectName NVARCHAR(MAX) = @ObjectName;
IF (OBJECT_ID(@ObjectName) IS NOT NULL)
BEGIN
SET @QuotedObjectName = CONCAT(QUOTENAME(OBJECT_SCHEMA_NAME(OBJECT_ID(@ObjectName))), '.', QUOTENAME(OBJECT_NAME(OBJECT_ID(@ObjectName))));
END
ELSE IF (OBJECT_ID(CONCAT('tempdb..', @ObjectName)) IS NOT NULL AND SUBSTRING(@ObjectName, 1, 1) = '#')
BEGIN
SET @QuotedObjectName = CONCAT('[#', SUBSTRING(@ObjectName, 2, LEN(@ObjectName) - 1), ']');
END
RETURN @QuotedObjectName;
END;
GO |
-- phpMyAdmin SQL Dump
-- version 4.8.0.1
-- https://www.phpmyadmin.net/
--
-- Host: 127.0.0.1
-- Generation Time: Sep 04, 2019 at 05:23 AM
-- Server version: 10.1.32-MariaDB
-- PHP Version: 7.2.7
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: `school`
--
-- --------------------------------------------------------
--
-- Table structure for table `accounts`
--
CREATE TABLE `accounts` (
`id` int(10) UNSIGNED NOT NULL,
`name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`amount` int(11) NOT NULL,
`description` text COLLATE utf8mb4_unicode_ci NOT NULL,
`school_id` int(10) UNSIGNED NOT NULL,
`user_id` int(10) UNSIGNED 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 `accounts`
--
INSERT INTO `accounts` (`id`, `name`, `type`, `amount`, `description`, `school_id`, `user_id`, `created_at`, `updated_at`) VALUES
(1, '<NAME>', 'income', 8864, 'Exercitationem dignissimos id quia quas culpa aut itaque ut. Officia excepturi iure totam. Iste voluptatum adipisci et eligendi non consequatur.', 24, 14, '2019-08-29 01:21:19', '2019-08-29 01:21:19'),
(2, 'Prof. <NAME>', 'expense', 7131, 'In ut id quia et sit dolores natus. Sed dicta quidem aspernatur qui distinctio. A cupiditate eveniet id repellendus qui qui veritatis velit.', 30, 18, '2019-08-29 01:21:19', '2019-08-29 01:21:19'),
(3, '<NAME>', 'expense', 929, 'Nam qui rerum eum dolore. Praesentium et quas et veniam natus voluptatem eos error. Laboriosam quas rerum eum nam non similique et.', 2, 16, '2019-08-29 01:21:19', '2019-08-29 01:21:19'),
(4, '<NAME>', 'expense', 6499, 'Qui voluptatibus nostrum saepe asperiores enim repudiandae. Incidunt voluptas impedit quae odio libero libero debitis non. Est doloribus ut omnis a assumenda.', 7, 12, '2019-08-29 01:21:19', '2019-08-29 01:21:19'),
(5, '<NAME>', 'expense', 1584, 'Corrupti quasi qui omnis dolorem. Et sint voluptas neque ab qui. Sed optio consequatur qui autem autem.', 33, 14, '2019-08-29 01:21:19', '2019-08-29 01:21:19'),
(6, '<NAME>', 'expense', 3609, 'Ea aut laboriosam pariatur ea placeat animi reiciendis. Quas earum a a pariatur. Reprehenderit aut inventore blanditiis inventore consectetur.', 30, 19, '2019-08-29 01:21:19', '2019-08-29 01:21:19'),
(7, '<NAME>', 'expense', 6687, 'Sequi dignissimos et fugit blanditiis illum et. Consequuntur sit suscipit ut sed est quod. Ducimus enim est quibusdam id vel quisquam quia impedit.', 27, 21, '2019-08-29 01:21:19', '2019-08-29 01:21:19'),
(8, 'Prof. <NAME> Jr.', 'income', 1715, 'Ea autem magni aliquid perspiciatis laboriosam nulla similique excepturi. Pariatur provident reprehenderit ut. Fugiat sit minima debitis enim sint.', 43, 13, '2019-08-29 01:21:19', '2019-08-29 01:21:19'),
(9, '<NAME>', 'expense', 9437, 'Adipisci mollitia perspiciatis provident enim. Est voluptatum numquam illo nulla id. Odit consequuntur cumque rem fugit eum sunt.', 30, 15, '2019-08-29 01:21:19', '2019-08-29 01:21:19'),
(10, '<NAME>', 'expense', 9094, 'Minus et commodi ipsa. Velit aliquam qui rerum ratione ea. Et eum recusandae voluptas ex.', 17, 18, '2019-08-29 01:21:19', '2019-08-29 01:21:19'),
(11, '<NAME>', 'expense', 6618, 'Et blanditiis quo sequi et recusandae rerum. Facere quis harum debitis iusto quis id velit. Harum ipsam sequi et in nihil rem illo.', 8, 13, '2019-08-29 01:21:19', '2019-08-29 01:21:19'),
(12, '<NAME>', 'income', 1583, 'Inventore qui est similique aut beatae dolores ad a. Nam assumenda est eius officiis. Sapiente deserunt impedit facere est tenetur.', 1, 13, '2019-08-29 01:21:19', '2019-08-29 01:21:19'),
(13, '<NAME>', 'expense', 4667, 'Quia eveniet assumenda inventore dolor facilis dolorem inventore. Consectetur dolore ut consectetur iste eligendi. Aut rem totam veniam dignissimos.', 43, 17, '2019-08-29 01:21:19', '2019-08-29 01:21:19'),
(14, '<NAME>', 'income', 709, 'Nemo eos aperiam voluptate facilis non. Cum numquam non nobis delectus. Occaecati dicta vitae et non aut.', 3, 19, '2019-08-29 01:21:19', '2019-08-29 01:21:19'),
(15, '<NAME>', 'income', 9163, 'Dolorum illum exercitationem sit eum. Consectetur et consequatur minus eius officia dolorum impedit fugit. Sunt aut dolor aliquam quisquam.', 18, 17, '2019-08-29 01:21:19', '2019-08-29 01:21:19'),
(16, 'Ms. <NAME>', 'expense', 3663, 'Perferendis atque ut vero consequatur. Enim dolor quis ad error similique a. Neque voluptas molestiae ut nihil dicta.', 21, 12, '2019-08-29 01:21:19', '2019-08-29 01:21:19'),
(17, 'Prof. <NAME>', 'expense', 2357, 'Est cumque temporibus voluptas. Qui consequatur voluptatibus iure exercitationem. Distinctio qui et quo est iusto.', 23, 19, '2019-08-29 01:21:19', '2019-08-29 01:21:19'),
(18, '<NAME> V', 'expense', 7727, 'Eum tempora iusto a dolorem sed et necessitatibus vel. Eligendi voluptatem cupiditate et placeat quis doloremque. Error voluptatem qui voluptas saepe quibusdam.', 2, 21, '2019-08-29 01:21:19', '2019-08-29 01:21:19'),
(19, '<NAME>', 'income', 134, 'Non est error rerum qui dolore. Aperiam iusto nam et numquam ea autem non. Molestiae quo aliquid dolorem ut illo.', 8, 19, '2019-08-29 01:21:19', '2019-08-29 01:21:19'),
(20, '<NAME>', 'income', 206, 'Aut quas quidem quod necessitatibus culpa et et. Rerum voluptatem veritatis nisi aut. Quia est est doloribus qui iure vero.', 21, 16, '2019-08-29 01:21:19', '2019-08-29 01:21:19'),
(21, 'Mr. <NAME>', 'expense', 7601, 'Consequatur sint quidem aliquam voluptate et qui. Est reiciendis quis iste aut facere harum. Dolor quis tenetur quod est quod rerum.', 45, 17, '2019-08-29 01:21:19', '2019-08-29 01:21:19'),
(22, '<NAME>', 'income', 4129, 'Voluptatem qui at officia et qui dolorem. Odio ut quis aliquid aliquam deserunt voluptatem. Sunt eligendi est at vero aspernatur omnis.', 14, 17, '2019-08-29 01:21:19', '2019-08-29 01:21:19'),
(23, 'Prof. <NAME>', 'expense', 9600, 'Recusandae velit modi officia vel at eius architecto. Nulla doloremque itaque doloremque. Quisquam a vitae non.', 6, 13, '2019-08-29 01:21:19', '2019-08-29 01:21:19'),
(24, 'Dr. <NAME> PhD', 'expense', 117, 'Soluta ut excepturi aut omnis fugiat in quam. Veritatis cupiditate totam enim quia facilis fugit in. Laboriosam distinctio dolor aut eos qui.', 27, 21, '2019-08-29 01:21:19', '2019-08-29 01:21:19'),
(25, 'Prof. <NAME> Jr.', 'income', 7620, 'Dolores omnis qui illo culpa ex incidunt. Non voluptas facere dicta dolorum debitis veritatis. Perferendis et blanditiis vero qui.', 23, 17, '2019-08-29 01:21:19', '2019-08-29 01:21:19'),
(26, '<NAME>', 'expense', 597, 'Consequatur architecto cumque harum nobis aspernatur. Mollitia et dolor et qui ipsum. Modi asperiores accusamus neque ipsa aut perferendis sint.', 14, 15, '2019-08-29 01:21:19', '2019-08-29 01:21:19'),
(27, 'Prof. <NAME> III', 'income', 8427, 'Consequuntur sint occaecati laboriosam iure laboriosam in voluptate. Aliquid provident qui doloribus quod aut. Qui deserunt minima molestiae nostrum et.', 2, 20, '2019-08-29 01:21:19', '2019-08-29 01:21:19'),
(28, '<NAME>', 'expense', 8199, 'Dolor voluptas occaecati ut dolorem reiciendis odio. Ipsam et perferendis sed. Perferendis et vero ut expedita molestiae pariatur optio.', 31, 21, '2019-08-29 01:21:19', '2019-08-29 01:21:19'),
(29, '<NAME>', 'expense', 7772, 'Laborum accusamus fuga sint enim. Vitae illo vel dolorem perferendis. Optio nesciunt recusandae enim id ea.', 24, 17, '2019-08-29 01:21:19', '2019-08-29 01:21:19'),
(30, 'Ms. <NAME> Sr.', 'expense', 9880, 'Aut similique eveniet provident quisquam. Animi architecto nemo dolorum. Aut id perspiciatis voluptas rem ut minus nam.', 31, 16, '2019-08-29 01:21:19', '2019-08-29 01:21:19'),
(31, '<NAME>', 'expense', 3579, 'Quod omnis vel est aliquid laborum commodi. Quidem ut dolores earum sed. At qui praesentium quasi sapiente voluptas.', 35, 14, '2019-08-29 01:21:19', '2019-08-29 01:21:19'),
(32, '<NAME>', 'expense', 2573, 'Quidem repellendus quae vero eius distinctio vero. Repellendus ut omnis vel eveniet qui aut cupiditate. Temporibus atque consectetur ullam ut ratione nam.', 50, 14, '2019-08-29 01:21:19', '2019-08-29 01:21:19'),
(33, 'Mr. <NAME>', 'expense', 8598, 'Temporibus alias corrupti alias repudiandae qui iusto deleniti accusantium. Qui optio omnis quo maxime est autem et. Deserunt autem quos debitis beatae blanditiis vitae quod minus.', 33, 19, '2019-08-29 01:21:19', '2019-08-29 01:21:19'),
(34, '<NAME>', 'expense', 5364, 'Pariatur inventore rem harum et tenetur sequi. Facilis est optio officia id. Omnis atque esse eaque velit.', 16, 21, '2019-08-29 01:21:19', '2019-08-29 01:21:19'),
(35, '<NAME>', 'expense', 1917, 'Doloremque architecto saepe ut laboriosam praesentium illum assumenda. Assumenda amet nostrum autem ut facilis eum. Reprehenderit labore corrupti velit illo.', 16, 15, '2019-08-29 01:21:19', '2019-08-29 01:21:19'),
(36, '<NAME>', 'income', 8659, 'Blanditiis possimus nostrum nostrum fugit magnam. Velit vel est fuga molestias quod odit. Enim natus magni aspernatur quas explicabo dolore molestias et.', 6, 17, '2019-08-29 01:21:19', '2019-08-29 01:21:19'),
(37, 'Miss <NAME>', 'expense', 8233, 'Nostrum tempora delectus molestiae. Non modi est est et optio commodi. Dolorem est accusamus suscipit aut reprehenderit error.', 25, 14, '2019-08-29 01:21:19', '2019-08-29 01:21:19'),
(38, 'Prof. <NAME>', 'expense', 570, 'Accusamus qui ut in ipsum voluptas. Dolor et optio voluptas sint et. Laudantium in doloremque voluptas est voluptas id.', 50, 17, '2019-08-29 01:21:19', '2019-08-29 01:21:19'),
(39, '<NAME>', 'income', 3020, 'Consequatur assumenda et voluptatum tempora in. Vitae velit aliquid culpa ratione ex aut autem. Dolorum dolor nemo quasi eveniet quod omnis.', 9, 15, '2019-08-29 01:21:19', '2019-08-29 01:21:19'),
(40, 'Mrs. <NAME> Jr.', 'expense', 567, 'Corporis aliquid amet omnis et blanditiis. Voluptas eius qui facere. Ullam eaque enim eum et laborum.', 25, 19, '2019-08-29 01:21:19', '2019-08-29 01:21:19'),
(41, '<NAME> Sr.', 'expense', 2480, 'Quam sit in velit. Animi et autem nihil et qui. Impedit enim quia non necessitatibus quam eligendi.', 38, 20, '2019-08-29 01:21:19', '2019-08-29 01:21:19'),
(42, 'Mrs. <NAME> IV', 'expense', 3585, 'Quia minima pariatur quas. Aut provident expedita ex dolorem enim nisi. Quisquam qui sunt repudiandae.', 43, 13, '2019-08-29 01:21:19', '2019-08-29 01:21:19'),
(43, '<NAME>', 'income', 6077, 'Repudiandae tenetur omnis non laborum quod aut et corrupti. Inventore ut veniam veritatis id sit ipsam. Eos omnis vero voluptates cum provident officiis.', 2, 14, '2019-08-29 01:21:19', '2019-08-29 01:21:19'),
(44, '<NAME> Jr.', 'expense', 8431, 'Ipsa odio aut odit id cum occaecati. Et rerum quisquam quas qui qui id dolores consequatur. Itaque sunt rerum et magni dolor ut fugiat qui.', 27, 15, '2019-08-29 01:21:19', '2019-08-29 01:21:19'),
(45, '<NAME>', 'expense', 6736, 'Commodi nobis cumque est et. Eius exercitationem quisquam magni nam quia odit cumque. Fugiat et fuga nemo nam nobis alias reprehenderit.', 49, 15, '2019-08-29 01:21:19', '2019-08-29 01:21:19'),
(46, '<NAME>', 'expense', 1618, 'Vel ut ducimus voluptatem est harum. Cumque quaerat possimus nesciunt eos rerum ab quia. Minus temporibus voluptas voluptas officiis praesentium vitae.', 36, 14, '2019-08-29 01:21:19', '2019-08-29 01:21:19'),
(47, '<NAME>', 'expense', 501, 'Quo voluptatem accusantium blanditiis tenetur et impedit. Explicabo nemo quidem architecto aut. Omnis cupiditate deleniti exercitationem voluptas iste.', 3, 16, '2019-08-29 01:21:19', '2019-08-29 01:21:19'),
(48, '<NAME>', 'income', 3611, 'Corporis et rem quidem amet dolor. Aut repellat quia accusantium non cupiditate nesciunt. Itaque deleniti quisquam sequi.', 17, 17, '2019-08-29 01:21:19', '2019-08-29 01:21:19'),
(49, '<NAME>', 'expense', 5563, 'Aliquid reprehenderit est esse modi qui. Rem dolorum dicta ut. Quasi a optio qui exercitationem molestiae.', 23, 17, '2019-08-29 01:21:19', '2019-08-29 01:21:19'),
(50, '<NAME>', 'income', 2577, 'Qui enim a id enim quisquam eius. Ut nemo fugit sed qui quia porro provident. Fugiat dolor tempore et tenetur.', 32, 20, '2019-08-29 01:21:19', '2019-08-29 01:21:19');
-- --------------------------------------------------------
--
-- Table structure for table `account_sectors`
--
CREATE TABLE `account_sectors` (
`id` int(10) UNSIGNED NOT NULL,
`name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`school_id` int(10) UNSIGNED NOT NULL,
`user_id` int(10) UNSIGNED 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 `account_sectors`
--
INSERT INTO `account_sectors` (`id`, `name`, `type`, `school_id`, `user_id`, `created_at`, `updated_at`) VALUES
(1, 'Team-oriented national success', 'expense', 51, 21, '2019-08-29 01:21:20', '2019-08-29 01:21:20'),
(2, 'Object-based 6thgeneration encoding', 'income', 51, 12, '2019-08-29 01:21:20', '2019-08-29 01:21:20'),
(3, 'Triple-buffered directional array', 'income', 21, 18, '2019-08-29 01:21:20', '2019-08-29 01:21:20'),
(4, 'Virtual heuristic toolset', 'income', 22, 16, '2019-08-29 01:21:20', '2019-08-29 01:21:20'),
(5, 'Function-based user-facing alliance', 'expense', 23, 19, '2019-08-29 01:21:20', '2019-08-29 01:21:20'),
(6, 'Ergonomic value-added framework', 'expense', 5, 18, '2019-08-29 01:21:20', '2019-08-29 01:21:20'),
(7, 'Customer-focused 5thgeneration challenge', 'expense', 16, 16, '2019-08-29 01:21:20', '2019-08-29 01:21:20'),
(8, 'Integrated background systemengine', 'expense', 2, 21, '2019-08-29 01:21:20', '2019-08-29 01:21:20'),
(9, 'Self-enabling executive knowledgeuser', 'income', 51, 21, '2019-08-29 01:21:20', '2019-08-29 01:21:20'),
(10, 'Robust 4thgeneration blockchain', 'expense', 29, 16, '2019-08-29 01:21:20', '2019-08-29 01:21:20'),
(11, 'Monitored user-facing infrastructure', 'income', 21, 13, '2019-08-29 01:21:20', '2019-08-29 01:21:20'),
(12, 'Up-sized multimedia matrices', 'expense', 49, 12, '2019-08-29 01:21:20', '2019-08-29 01:21:20'),
(13, 'Robust optimizing model', 'income', 11, 13, '2019-08-29 01:21:20', '2019-08-29 01:21:20'),
(14, 'Fully-configurable intangible implementation', 'expense', 13, 18, '2019-08-29 01:21:20', '2019-08-29 01:21:20'),
(15, 'Virtual zerodefect migration', 'income', 23, 20, '2019-08-29 01:21:20', '2019-08-29 01:21:20'),
(16, 'Re-engineered stable instructionset', 'expense', 25, 21, '2019-08-29 01:21:20', '2019-08-29 01:21:20'),
(17, 'Cross-platform 3rdgeneration frame', 'expense', 5, 17, '2019-08-29 01:21:20', '2019-08-29 01:21:20'),
(18, 'Multi-layered static artificialintelligence', 'income', 36, 19, '2019-08-29 01:21:20', '2019-08-29 01:21:20'),
(19, 'Future-proofed hybrid implementation', 'expense', 19, 16, '2019-08-29 01:21:20', '2019-08-29 01:21:20'),
(20, 'Universal multi-state product', 'expense', 33, 14, '2019-08-29 01:21:20', '2019-08-29 01:21:20'),
(21, 'Optimized holistic extranet', 'income', 2, 19, '2019-08-29 01:21:20', '2019-08-29 01:21:20'),
(22, 'Vision-oriented needs-based encoding', 'income', 35, 15, '2019-08-29 01:21:20', '2019-08-29 01:21:20'),
(23, 'Re-engineered system-worthy policy', 'income', 24, 17, '2019-08-29 01:21:20', '2019-08-29 01:21:20'),
(24, 'Public-key bi-directional capability', 'expense', 8, 18, '2019-08-29 01:21:20', '2019-08-29 01:21:20'),
(25, 'Upgradable foreground intranet', 'income', 32, 15, '2019-08-29 01:21:20', '2019-08-29 01:21:20'),
(26, 'Enhanced methodical capability', 'expense', 29, 20, '2019-08-29 01:21:20', '2019-08-29 01:21:20'),
(27, 'Expanded assymetric adapter', 'income', 37, 20, '2019-08-29 01:21:20', '2019-08-29 01:21:20'),
(28, 'Inverse heuristic monitoring', 'expense', 45, 19, '2019-08-29 01:21:20', '2019-08-29 01:21:20'),
(29, 'Customizable client-driven groupware', 'expense', 43, 17, '2019-08-29 01:21:20', '2019-08-29 01:21:20'),
(30, 'Decentralized 24hour time-frame', 'expense', 27, 17, '2019-08-29 01:21:20', '2019-08-29 01:21:20'),
(31, 'User-friendly actuating standardization', 'income', 44, 21, '2019-08-29 01:21:20', '2019-08-29 01:21:20'),
(32, 'Multi-lateral methodical GraphicalUserInterface', 'expense', 42, 16, '2019-08-29 01:21:20', '2019-08-29 01:21:20'),
(33, 'Sharable background complexity', 'income', 6, 15, '2019-08-29 01:21:20', '2019-08-29 01:21:20'),
(34, 'Upgradable hybrid extranet', 'expense', 10, 18, '2019-08-29 01:21:20', '2019-08-29 01:21:20'),
(35, 'Decentralized cohesive hardware', 'expense', 31, 19, '2019-08-29 01:21:20', '2019-08-29 01:21:20'),
(36, 'Centralized needs-based task-force', 'expense', 11, 14, '2019-08-29 01:21:20', '2019-08-29 01:21:20'),
(37, 'Enhanced executive complexity', 'expense', 37, 20, '2019-08-29 01:21:20', '2019-08-29 01:21:20'),
(38, 'Versatile human-resource standardization', 'expense', 39, 15, '2019-08-29 01:21:20', '2019-08-29 01:21:20'),
(39, 'Pre-emptive 24/7 opensystem', 'expense', 27, 21, '2019-08-29 01:21:20', '2019-08-29 01:21:20'),
(40, 'Function-based bi-directional opensystem', 'income', 35, 20, '2019-08-29 01:21:20', '2019-08-29 01:21:20'),
(41, 'Optional optimal securedline', 'income', 48, 16, '2019-08-29 01:21:20', '2019-08-29 01:21:20'),
(42, 'Stand-alone fresh-thinking array', 'income', 21, 21, '2019-08-29 01:21:20', '2019-08-29 01:21:20'),
(43, 'Virtual didactic paradigm', 'income', 37, 15, '2019-08-29 01:21:20', '2019-08-29 01:21:20'),
(44, 'Virtual optimal framework', 'expense', 3, 19, '2019-08-29 01:21:21', '2019-08-29 01:21:21'),
(45, 'Enhanced regional portal', 'expense', 27, 17, '2019-08-29 01:21:21', '2019-08-29 01:21:21'),
(46, 'Visionary directional internetsolution', 'expense', 19, 16, '2019-08-29 01:21:21', '2019-08-29 01:21:21'),
(47, 'Pre-emptive optimal workforce', 'expense', 13, 14, '2019-08-29 01:21:21', '2019-08-29 01:21:21'),
(48, 'Open-source optimal leverage', 'income', 28, 16, '2019-08-29 01:21:21', '2019-08-29 01:21:21'),
(49, 'De-engineered static installation', 'income', 3, 20, '2019-08-29 01:21:21', '2019-08-29 01:21:21'),
(50, 'Robust even-keeled product', 'expense', 37, 19, '2019-08-29 01:21:21', '2019-08-29 01:21:21');
-- --------------------------------------------------------
--
-- Table structure for table `attendances`
--
CREATE TABLE `attendances` (
`id` int(10) UNSIGNED NOT NULL,
`student_id` int(10) UNSIGNED NOT NULL,
`section_id` int(10) UNSIGNED NOT NULL,
`exam_id` int(10) UNSIGNED NOT NULL,
`present` tinyint(3) UNSIGNED NOT NULL,
`user_id` int(10) UNSIGNED 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 `attendances`
--
INSERT INTO `attendances` (`id`, `student_id`, `section_id`, `exam_id`, `present`, `user_id`, `created_at`, `updated_at`) VALUES
(1, 71, 7, 8, 0, 216, '2019-08-29 01:21:07', '2019-08-29 01:21:07'),
(2, 69, 17, 8, 0, 79, '2019-08-29 01:21:07', '2019-08-29 01:21:07'),
(3, 66, 19, 2, 0, 7, '2019-08-29 01:21:07', '2019-08-29 01:21:07'),
(4, 64, 6, 1, 0, 4, '2019-08-29 01:21:07', '2019-08-29 01:21:07'),
(5, 62, 6, 1, 0, 85, '2019-08-29 01:21:07', '2019-08-29 01:21:07'),
(6, 71, 4, 3, 2, 85, '2019-08-29 01:21:07', '2019-08-29 01:21:07'),
(7, 62, 20, 4, 2, 193, '2019-08-29 01:21:07', '2019-08-29 01:21:07'),
(8, 68, 12, 6, 2, 186, '2019-08-29 01:21:07', '2019-08-29 01:21:07'),
(9, 68, 4, 8, 1, 143, '2019-08-29 01:21:07', '2019-08-29 01:21:07'),
(10, 62, 20, 1, 0, 188, '2019-08-29 01:21:07', '2019-08-29 01:21:07'),
(11, 62, 18, 2, 1, 35, '2019-08-29 01:21:07', '2019-08-29 01:21:07'),
(12, 68, 19, 4, 0, 202, '2019-08-29 01:21:07', '2019-08-29 01:21:07'),
(13, 70, 17, 3, 0, 162, '2019-08-29 01:21:07', '2019-08-29 01:21:07'),
(14, 67, 12, 4, 0, 176, '2019-08-29 01:21:07', '2019-08-29 01:21:07'),
(15, 71, 7, 10, 1, 242, '2019-08-29 01:21:07', '2019-08-29 01:21:07'),
(16, 64, 19, 7, 2, 13, '2019-08-29 01:21:07', '2019-08-29 01:21:07'),
(17, 62, 14, 5, 2, 61, '2019-08-29 01:21:07', '2019-08-29 01:21:07'),
(18, 64, 15, 5, 0, 230, '2019-08-29 01:21:07', '2019-08-29 01:21:07'),
(19, 64, 3, 2, 0, 9, '2019-08-29 01:21:07', '2019-08-29 01:21:07'),
(20, 69, 7, 1, 0, 104, '2019-08-29 01:21:07', '2019-08-29 01:21:07'),
(21, 66, 16, 10, 0, 26, '2019-08-29 01:21:07', '2019-08-29 01:21:07'),
(22, 66, 15, 10, 0, 228, '2019-08-29 01:21:07', '2019-08-29 01:21:07'),
(23, 62, 14, 8, 1, 145, '2019-08-29 01:21:07', '2019-08-29 01:21:07'),
(24, 66, 8, 4, 1, 147, '2019-08-29 01:21:07', '2019-08-29 01:21:07'),
(25, 63, 6, 5, 1, 95, '2019-08-29 01:21:07', '2019-08-29 01:21:07'),
(26, 62, 16, 6, 1, 95, '2019-08-29 01:21:07', '2019-08-29 01:21:07'),
(27, 65, 8, 6, 1, 31, '2019-08-29 01:21:07', '2019-08-29 01:21:07'),
(28, 67, 17, 5, 2, 186, '2019-08-29 01:21:07', '2019-08-29 01:21:07'),
(29, 69, 6, 2, 0, 243, '2019-08-29 01:21:07', '2019-08-29 01:21:07'),
(30, 71, 12, 1, 1, 43, '2019-08-29 01:21:07', '2019-08-29 01:21:07'),
(31, 64, 15, 9, 2, 57, '2019-08-29 01:21:07', '2019-08-29 01:21:07'),
(32, 69, 5, 1, 0, 253, '2019-08-29 01:21:07', '2019-08-29 01:21:07'),
(33, 71, 10, 7, 0, 64, '2019-08-29 01:21:07', '2019-08-29 01:21:07'),
(34, 63, 11, 6, 2, 95, '2019-08-29 01:21:07', '2019-08-29 01:21:07'),
(35, 62, 16, 2, 2, 122, '2019-08-29 01:21:07', '2019-08-29 01:21:07'),
(36, 63, 7, 1, 1, 250, '2019-08-29 01:21:07', '2019-08-29 01:21:07'),
(37, 67, 9, 3, 1, 88, '2019-08-29 01:21:07', '2019-08-29 01:21:07'),
(38, 69, 15, 2, 2, 231, '2019-08-29 01:21:07', '2019-08-29 01:21:07'),
(39, 69, 3, 10, 1, 200, '2019-08-29 01:21:07', '2019-08-29 01:21:07'),
(40, 68, 4, 6, 2, 138, '2019-08-29 01:21:07', '2019-08-29 01:21:07'),
(41, 67, 14, 3, 1, 167, '2019-08-29 01:21:07', '2019-08-29 01:21:07'),
(42, 69, 18, 2, 2, 245, '2019-08-29 01:21:07', '2019-08-29 01:21:07'),
(43, 62, 9, 3, 1, 8, '2019-08-29 01:21:07', '2019-08-29 01:21:07'),
(44, 62, 6, 3, 1, 88, '2019-08-29 01:21:07', '2019-08-29 01:21:07'),
(45, 67, 13, 6, 1, 24, '2019-08-29 01:21:07', '2019-08-29 01:21:07'),
(46, 62, 10, 9, 0, 241, '2019-08-29 01:21:07', '2019-08-29 01:21:07'),
(47, 62, 10, 4, 0, 23, '2019-08-29 01:21:07', '2019-08-29 01:21:07'),
(48, 62, 18, 8, 0, 186, '2019-08-29 01:21:07', '2019-08-29 01:21:07'),
(49, 71, 16, 9, 0, 153, '2019-08-29 01:21:07', '2019-08-29 01:21:07'),
(50, 67, 8, 1, 2, 192, '2019-08-29 01:21:07', '2019-08-29 01:21:07');
-- --------------------------------------------------------
--
-- Table structure for table `books`
--
CREATE TABLE `books` (
`id` int(10) UNSIGNED NOT NULL,
`book_code` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL,
`title` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL,
`author` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL,
`quantity` int(10) UNSIGNED NOT NULL,
`rackNo` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL,
`rowNo` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL,
`img_path` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`about` text COLLATE utf8mb4_unicode_ci NOT NULL,
`type` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL,
`price` int(11) NOT NULL,
`class_id` int(10) UNSIGNED NOT NULL,
`school_id` int(10) UNSIGNED NOT NULL,
`user_id` int(10) UNSIGNED 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 `books`
--
INSERT INTO `books` (`id`, `book_code`, `title`, `author`, `quantity`, `rackNo`, `rowNo`, `img_path`, `about`, `type`, `price`, `class_id`, `school_id`, `user_id`, `created_at`, `updated_at`) VALUES
(1, 'bk143270', 'Ut commodi tempore neque libero aut.', 'Blaise Marks IV', 13, '7', '12', 'https://lorempixel.com/150/150/cats/?45467', 'Qui sunt perspiciatis iusto. Quae eum aliquam sequi molestiae facilis. Provident voluptas quia non sed provident et.', 'Other', 72040313, 7, 39, 31, '2019-08-29 01:21:13', '2019-08-29 01:21:13'),
(2, 'bk4951353', 'Cupiditate dignissimos quia impedit libero omnis.', 'Mr. <NAME> DVM', 5, '10', '11', 'https://lorempixel.com/150/150/cats/?14125', 'Aliquid ab ipsum voluptatem voluptas optio vero qui. Libero quasi rerum odio molestias id dolorum nobis. Natus eos veritatis est iste quae.', 'Magazine', 91075, 5, 8, 24, '2019-08-29 01:21:13', '2019-08-29 01:21:13'),
(3, 'bk1089917', 'Consectetur quo et explicabo ut odit necessitatibus adipisci sint.', '<NAME>', 34, '7', '4', 'https://lorempixel.com/150/150/cats/?46176', 'Et nostrum rerum in non dicta deserunt sint. Eaque adipisci laborum omnis dignissimos. Facilis aut tenetur cumque eos.', 'Academic', 31525, 12, 41, 28, '2019-08-29 01:21:13', '2019-08-29 01:21:13'),
(4, 'bk9828988', 'Repellendus sint nisi omnis quisquam.', 'Prof. <NAME> DDS', 13, '11', '4', 'https://lorempixel.com/150/150/cats/?99124', 'Ea ut dolorum sit dolorem incidunt. Quibusdam debitis adipisci nesciunt ab iure. Numquam quia recusandae modi aperiam sit repellendus sed.', 'Story', 492, 2, 29, 25, '2019-08-29 01:21:13', '2019-08-29 01:21:13'),
(5, 'bk4855108', 'Optio consequatur illo facere enim facilis hic.', '<NAME>', 8, '12', '3', 'https://lorempixel.com/150/150/cats/?72867', 'Voluptatum eaque quia aliquid dolores et velit. Et est assumenda illum recusandae nihil neque numquam. Pariatur sed omnis sed repudiandae.', 'Story', 6325, 10, 20, 26, '2019-08-29 01:21:13', '2019-08-29 01:21:13'),
(6, 'bk8081427', 'Tempora harum eaque omnis.', 'Ms. <NAME> DDS', 13, '4', '2', 'https://lorempixel.com/150/150/cats/?36944', 'Debitis praesentium sint atque omnis aut ea cupiditate. At porro ut velit deleniti hic nam nostrum. Corporis exercitationem nesciunt sunt ab excepturi sint molestias.', 'Academic', 528, 2, 29, 31, '2019-08-29 01:21:13', '2019-08-29 01:21:13'),
(7, 'bk4007061', 'In vitae illo dolores velit et facere.', '<NAME>', 5, '9', '7', 'https://lorempixel.com/150/150/cats/?56321', 'Voluptatem dolores asperiores debitis vel eum dolore est. Quas debitis et libero delectus. Non iusto impedit sint necessitatibus.', 'Magazine', 3835071, 3, 23, 26, '2019-08-29 01:21:13', '2019-08-29 01:21:13'),
(8, 'bk9336645', 'Ut voluptatem laudantium facere nisi rerum et.', '<NAME>', 8, '1', '6', 'https://lorempixel.com/150/150/cats/?50542', 'Necessitatibus natus vel adipisci voluptas qui saepe odio. Sit quae quia veniam et perspiciatis itaque voluptates praesentium. Saepe unde et eum voluptatum sed velit cupiditate.', 'Magazine', 89871, 8, 14, 28, '2019-08-29 01:21:13', '2019-08-29 01:21:13'),
(9, 'bk8644897', 'Asperiores molestiae ipsum est excepturi totam asperiores.', '<NAME>', 5, '1', '12', 'https://lorempixel.com/150/150/cats/?89367', 'Ea minima et vel voluptas vel fugit ipsa quo. Sit ea voluptate sed velit. Quae doloremque odio porro nulla pariatur aut.', 'Academic', 7147, 13, 8, 28, '2019-08-29 01:21:13', '2019-08-29 01:21:13'),
(10, 'bk2781048', 'Iste et illo blanditiis et.', '<NAME>', 13, '9', '4', 'https://lorempixel.com/150/150/cats/?61747', 'Repudiandae architecto harum sed consectetur aut ipsam mollitia. Et et odio est enim vel. Ullam ab magni saepe nesciunt.', 'Academic', 722204933, 1, 10, 27, '2019-08-29 01:21:13', '2019-08-29 01:21:13'),
(11, 'bk9402569', 'Id nobis quia dolorem delectus voluptatem.', '<NAME>', 5, '12', '3', 'https://lorempixel.com/150/150/cats/?40962', 'Doloribus voluptatum deserunt id laboriosam. Saepe enim commodi nihil earum libero. Nulla corporis neque libero error iste molestiae eos.', 'Story', 10843164, 13, 34, 23, '2019-08-29 01:21:13', '2019-08-29 01:21:13'),
(12, 'bk538801', 'Ducimus ea modi dolorum ab est odio.', '<NAME>', 13, '5', '5', 'https://lorempixel.com/150/150/cats/?21492', 'Eos voluptatem ut aut qui. Aut quae molestiae consequatur nihil minima est veritatis. Provident quam sapiente fugiat exercitationem excepturi vel.', 'Magazine', 50, 8, 40, 31, '2019-08-29 01:21:13', '2019-08-29 01:21:13'),
(13, 'bk2837814', 'Asperiores repellat vitae ea.', '<NAME>', 19, '3', '9', 'https://lorempixel.com/150/150/cats/?40317', 'Nihil reiciendis natus dolore enim facere. Ut beatae accusamus dignissimos et. Et asperiores quo consequatur est.', 'Story', 1771, 9, 27, 24, '2019-08-29 01:21:13', '2019-08-29 01:21:13'),
(14, 'bk7680146', 'Blanditiis atque quidem autem debitis eaque dolores.', 'Prof. <NAME>', 19, '2', '4', 'https://lorempixel.com/150/150/cats/?99888', 'Deleniti quidem eum nihil delectus. Iste excepturi vero reprehenderit ut excepturi deleniti. Impedit doloremque in dolorum.', 'Magazine', 342048863, 7, 50, 31, '2019-08-29 01:21:13', '2019-08-29 01:21:13'),
(15, 'bk2570131', 'Non molestias iure ex ut cum omnis.', '<NAME>', 8, '6', '8', 'https://lorempixel.com/150/150/cats/?18872', 'Cupiditate sed labore illum provident officiis aliquid. Quod minus consequatur ab quaerat. Rerum voluptas est aut magnam a quidem.', 'Other', 386, 9, 48, 23, '2019-08-29 01:21:13', '2019-08-29 01:21:13'),
(16, 'bk6947778', 'Quaerat placeat dolore itaque molestiae ratione.', '<NAME>', 19, '7', '6', 'https://lorempixel.com/150/150/cats/?25345', 'Id corrupti ullam voluptate repellat ut hic perspiciatis. Soluta praesentium rerum mollitia beatae ad aspernatur dolores. Eum sunt a ex voluptas.', 'Story', 29561, 4, 43, 26, '2019-08-29 01:21:13', '2019-08-29 01:21:13'),
(17, 'bk8836148', 'Ducimus sit id voluptas omnis.', 'Miss <NAME>', 13, '12', '11', 'https://lorempixel.com/150/150/cats/?33002', 'Ex omnis numquam occaecati magni harum illo laborum. Aut repudiandae deserunt dignissimos odit tempora et. Eum dolorum impedit quo doloremque voluptatem quod.', 'Other', 6969872, 10, 12, 23, '2019-08-29 01:21:13', '2019-08-29 01:21:13'),
(18, 'bk1607773', 'Inventore molestiae ut facilis eaque expedita qui.', '<NAME>', 34, '5', '7', 'https://lorempixel.com/150/150/cats/?98611', 'Ut in reprehenderit molestiae repellat eos temporibus. Facere qui et illum omnis natus. Dolore molestias architecto architecto iusto.', 'Magazine', 5, 4, 16, 23, '2019-08-29 01:21:13', '2019-08-29 01:21:13'),
(19, 'bk6297271', 'Ducimus animi omnis voluptatem nesciunt officiis architecto quam.', '<NAME>', 5, '5', '6', 'https://lorempixel.com/150/150/cats/?57955', 'Excepturi aliquam nulla recusandae quia. Itaque praesentium et provident nisi autem odit iure. Tempore illum dolorum omnis earum dolorem ad iste.', 'Other', 4667, 1, 42, 29, '2019-08-29 01:21:13', '2019-08-29 01:21:13'),
(20, 'bk3182717', 'Quia qui quam eveniet reprehenderit aliquid reprehenderit ut.', '<NAME>', 19, '10', '2', 'https://lorempixel.com/150/150/cats/?18781', 'Aut nostrum corporis delectus reprehenderit ex voluptatem placeat laudantium. Dolorum in accusantium recusandae mollitia et. Commodi quod dolorem et consequuntur sit.', 'Other', 45852, 6, 39, 30, '2019-08-29 01:21:13', '2019-08-29 01:21:13'),
(21, 'bk5738714', 'Hic reprehenderit sapiente fuga sed.', 'Prof. <NAME>', 13, '10', '6', 'https://lorempixel.com/150/150/cats/?85379', 'Voluptates officia fuga dolorum nobis. Praesentium magni et illum. Eos facere in possimus dicta autem sapiente in.', 'Story', 38893, 9, 19, 23, '2019-08-29 01:21:13', '2019-08-29 01:21:13'),
(22, 'bk8977355', 'Magni nobis vero est tenetur libero.', '<NAME> DDS', 13, '6', '7', 'https://lorempixel.com/150/150/cats/?92001', 'Qui molestiae animi temporibus dicta velit labore. Eius dolorem est minima qui. Excepturi culpa quae asperiores eum earum totam.', 'Magazine', 84885468, 8, 20, 23, '2019-08-29 01:21:13', '2019-08-29 01:21:13'),
(23, 'bk3787566', 'Sint qui blanditiis quaerat voluptatum totam earum tempore nihil.', '<NAME>', 34, '1', '4', 'https://lorempixel.com/150/150/cats/?18196', 'Officia vel repellendus est reprehenderit ut. Rem modi et velit repellat exercitationem qui nihil. Vero atque dolorum vitae excepturi magnam velit facere.', 'Story', 74464, 2, 6, 29, '2019-08-29 01:21:13', '2019-08-29 01:21:13'),
(24, 'bk4367779', 'Quibusdam dolores consequuntur nostrum voluptatem expedita non ab ratione.', '<NAME>', 5, '11', '11', 'https://lorempixel.com/150/150/cats/?43186', 'Aut est consequatur magni voluptas dicta voluptatem dolorem aut. Natus quia qui nostrum nesciunt. Autem eveniet dolor laborum consequatur.', 'Story', 89146310, 4, 41, 25, '2019-08-29 01:21:13', '2019-08-29 01:21:13'),
(25, 'bk9310846', 'Aut autem excepturi et voluptatem occaecati.', '<NAME>', 34, '4', '12', 'https://lorempixel.com/150/150/cats/?15309', 'Quia quia possimus porro iusto exercitationem. Quam mollitia amet pariatur eum perspiciatis ea quis qui. Quis recusandae deserunt omnis sed iste sit est accusantium.', 'Other', 826212, 4, 43, 24, '2019-08-29 01:21:13', '2019-08-29 01:21:13'),
(26, 'bk5279187', 'Minus eum sed cupiditate dignissimos cumque dolorem est aliquam.', 'Prof. <NAME>', 13, '3', '10', 'https://lorempixel.com/150/150/cats/?64877', 'Nesciunt consequatur autem amet voluptatem ipsum qui. Et libero recusandae sed. Enim perferendis velit voluptates sed sed.', 'Magazine', 725180, 1, 47, 25, '2019-08-29 01:21:13', '2019-08-29 01:21:13'),
(27, 'bk8444689', 'Sunt dolorem dolorem in expedita qui nihil perspiciatis omnis.', 'Prof. <NAME> PhD', 5, '3', '1', 'https://lorempixel.com/150/150/cats/?15787', 'Architecto mollitia nisi animi adipisci. Eos corrupti modi laborum dolor repellat. Suscipit numquam aut non dolores dolores voluptatibus cum.', 'Academic', 286460306, 6, 11, 26, '2019-08-29 01:21:13', '2019-08-29 01:21:13'),
(28, 'bk7711741', 'Corporis possimus non voluptatum et nihil.', 'Mr. <NAME> I', 19, '9', '2', 'https://lorempixel.com/150/150/cats/?34521', 'Possimus excepturi dolores id animi optio odit dolorum. Rerum ducimus tenetur et libero. Porro impedit illum voluptas voluptatum.', 'Story', 704882041, 4, 46, 24, '2019-08-29 01:21:13', '2019-08-29 01:21:13'),
(29, 'bk4753222', 'Id aut consequuntur quis voluptatem asperiores aliquid totam.', '<NAME>', 5, '8', '9', 'https://lorempixel.com/150/150/cats/?81463', 'Et saepe dolore et. Esse eum est itaque pariatur. Nulla officia non et alias ut tempora autem.', 'Magazine', 287813315, 10, 34, 24, '2019-08-29 01:21:13', '2019-08-29 01:21:13'),
(30, 'bk1374971', 'Labore vero veritatis repellendus vitae inventore architecto laborum.', '<NAME>', 34, '4', '10', 'https://lorempixel.com/150/150/cats/?89461', 'Voluptas quia in nisi alias rerum commodi numquam laborum. Recusandae sapiente aperiam et rerum. Error aut quia ducimus quis.', 'Story', 3001408, 11, 9, 22, '2019-08-29 01:21:13', '2019-08-29 01:21:13'),
(31, 'bk3800759', 'Corrupti quisquam dolores culpa iste.', '<NAME>', 5, '1', '9', 'https://lorempixel.com/150/150/cats/?39877', 'Et et expedita amet autem. Sint adipisci eligendi earum voluptas id incidunt ut. Ab aut placeat est harum possimus et.', 'Story', 122768577, 7, 11, 28, '2019-08-29 01:21:13', '2019-08-29 01:21:13'),
(32, 'bk9092412', 'Nemo expedita numquam vel culpa.', '<NAME> PhD', 13, '11', '4', 'https://lorempixel.com/150/150/cats/?75532', 'Doloribus esse blanditiis deleniti nobis et. Qui veniam in ducimus rerum voluptas. Aperiam adipisci sit harum quia esse.', 'Magazine', 38, 8, 16, 25, '2019-08-29 01:21:13', '2019-08-29 01:21:13'),
(33, 'bk4744832', 'Enim corrupti repellat eligendi ea.', 'Dr. <NAME>', 8, '8', '5', 'https://lorempixel.com/150/150/cats/?17746', 'Et alias maxime neque et voluptatem omnis at. Et dignissimos eos et. Necessitatibus libero at autem dolor et dolor.', 'Academic', 1, 3, 35, 23, '2019-08-29 01:21:13', '2019-08-29 01:21:13'),
(34, 'bk2564369', 'Est sed magnam dolorem tempora.', 'Miss Lempi Metz DDS', 8, '1', '1', 'https://lorempixel.com/150/150/cats/?81163', 'Dolorem unde quis perferendis a autem dignissimos ipsum. Fugit dolorem vitae sit nobis iure magnam. Eius ut ut corrupti consequatur.', 'Story', 80327127, 1, 9, 24, '2019-08-29 01:21:13', '2019-08-29 01:21:13'),
(35, 'bk4867209', 'Accusantium optio aut deleniti consequuntur eaque et occaecati.', 'Brain Lebsack', 34, '1', '2', 'https://lorempixel.com/150/150/cats/?87309', 'Quisquam commodi qui eaque explicabo. Similique exercitationem ut autem aut minima culpa. Et quisquam illum quia rerum quia.', 'Story', 90928276, 2, 12, 22, '2019-08-29 01:21:13', '2019-08-29 01:21:13'),
(36, 'bk6673290', 'Et maiores autem in nesciunt atque quod.', '<NAME>', 34, '5', '10', 'https://lorempixel.com/150/150/cats/?66235', 'Natus est quibusdam repellat. Debitis adipisci sed odit dolorem et quod. Harum harum dolores at pariatur est.', 'Story', 61768512, 7, 12, 23, '2019-08-29 01:21:13', '2019-08-29 01:21:13'),
(37, 'bk3858905', 'Quisquam ipsam dolorem voluptatem voluptatem iusto dignissimos ipsam quia.', '<NAME> Sr.', 5, '6', '12', 'https://lorempixel.com/150/150/cats/?17226', 'Adipisci doloribus ipsam est laborum. Officiis sed eum quia voluptatem eum vel. Aut et magni eos et laboriosam.', 'Magazine', 6827, 7, 20, 22, '2019-08-29 01:21:13', '2019-08-29 01:21:13'),
(38, 'bk9738558', 'Veritatis corporis incidunt veritatis sunt voluptates sint.', 'Prof. <NAME> IV', 8, '2', '2', 'https://lorempixel.com/150/150/cats/?65215', 'In maiores molestiae magni praesentium nostrum eum molestiae. Aspernatur et aspernatur enim tempore distinctio. Dolorem quia consequatur animi repellendus iste iusto pariatur.', 'Story', 9, 11, 41, 24, '2019-08-29 01:21:13', '2019-08-29 01:21:13'),
(39, 'bk7988045', 'Exercitationem dolor laudantium porro quam numquam facere.', 'Mitchell Lang Sr.', 19, '8', '7', 'https://lorempixel.com/150/150/cats/?35028', 'Voluptatem rerum voluptates et praesentium dignissimos. Sint adipisci alias ratione sit. Quidem omnis hic iusto saepe neque quisquam possimus.', 'Story', 1017, 4, 31, 22, '2019-08-29 01:21:13', '2019-08-29 01:21:13'),
(40, 'bk8242643', 'Qui eum ut provident earum quidem.', '<NAME>', 34, '2', '3', 'https://lorempixel.com/150/150/cats/?47313', 'Repudiandae voluptas vel reiciendis ut modi doloribus. Perferendis enim ut nihil non velit. Cum vero corporis exercitationem aut aut at veritatis eius.', 'Academic', 151, 4, 21, 27, '2019-08-29 01:21:13', '2019-08-29 01:21:13'),
(41, 'bk8683585', 'Tenetur et repellendus dolor reprehenderit cumque.', '<NAME>', 8, '4', '11', 'https://lorempixel.com/150/150/cats/?13320', 'Nulla ut saepe in ullam ea dolor cum nam. Quos nemo dicta laboriosam. Eum in nihil consequuntur temporibus consequatur eos voluptatem.', 'Other', 18, 10, 45, 26, '2019-08-29 01:21:13', '2019-08-29 01:21:13'),
(42, 'bk7102380', 'Quisquam modi distinctio blanditiis adipisci.', '<NAME>', 13, '9', '1', 'https://lorempixel.com/150/150/cats/?35783', 'Eum reprehenderit sit molestiae delectus ut pariatur sint. Est ullam animi sit corporis occaecati earum. Quas nihil vel molestiae quod eveniet quas facere error.', 'Story', 95057, 12, 29, 30, '2019-08-29 01:21:13', '2019-08-29 01:21:13'),
(43, 'bk1038350', 'Et nemo pariatur aut tempora a culpa illum.', '<NAME>', 19, '3', '4', 'https://lorempixel.com/150/150/cats/?15991', 'Fugit illum nostrum eligendi. Eligendi provident autem et quia quae rerum omnis. Qui culpa voluptatem est aut natus voluptas.', 'Other', 808071, 3, 3, 28, '2019-08-29 01:21:13', '2019-08-29 01:21:13'),
(44, 'bk1801380', 'Consequatur quia voluptates minima ratione.', '<NAME> III', 19, '5', '11', 'https://lorempixel.com/150/150/cats/?35956', 'Omnis non quia et non. Iure aspernatur vero fugiat occaecati debitis. A aut accusantium nemo odit omnis unde.', 'Story', 61, 4, 13, 29, '2019-08-29 01:21:13', '2019-08-29 01:21:13'),
(45, 'bk5658987', 'Ipsum hic harum qui aperiam.', 'Prof. <NAME> DVM', 5, '12', '4', 'https://lorempixel.com/150/150/cats/?79463', 'Quia quidem aspernatur repellat. Iste distinctio esse ipsum laborum dolor voluptate consequatur nihil. Mollitia voluptas quod sequi temporibus saepe.', 'Academic', 12304136, 6, 17, 27, '2019-08-29 01:21:13', '2019-08-29 01:21:13'),
(46, 'bk829862', 'Nostrum quo est culpa aut.', 'Mr. <NAME> IV', 34, '6', '3', 'https://lorempixel.com/150/150/cats/?61129', 'Dolorem ut accusantium dignissimos vero. Reprehenderit fuga et voluptas voluptas. Numquam omnis voluptate molestiae ea ipsam maxime.', 'Other', 21845, 12, 19, 22, '2019-08-29 01:21:13', '2019-08-29 01:21:13'),
(47, 'bk8581894', 'Autem ut id magni quo animi eveniet.', '<NAME>', 8, '5', '10', 'https://lorempixel.com/150/150/cats/?23154', 'Beatae ab quod voluptatem aut modi cupiditate. Rerum nihil assumenda est provident molestiae dicta. Sunt quis temporibus consequatur doloremque rerum recusandae.', 'Other', 2721276, 9, 49, 28, '2019-08-29 01:21:13', '2019-08-29 01:21:13'),
(48, 'bk2958092', 'Dolorem odit porro necessitatibus ea sed maiores possimus modi.', '<NAME>', 19, '12', '12', 'https://lorempixel.com/150/150/cats/?76780', 'Est est perferendis dolor quisquam accusamus neque consequatur. Officia voluptatibus et et suscipit reiciendis saepe. Omnis aut quia exercitationem exercitationem praesentium voluptatem.', 'Other', 31829, 3, 47, 26, '2019-08-29 01:21:13', '2019-08-29 01:21:13'),
(49, 'bk2748072', 'Tempora fuga ipsa est.', '<NAME> V', 13, '1', '10', 'https://lorempixel.com/150/150/cats/?90824', 'Aut rem aperiam consectetur et necessitatibus. Blanditiis ducimus ut libero facere qui neque occaecati. Id corrupti nesciunt consectetur repellendus fuga.', 'Magazine', 8732037, 12, 47, 27, '2019-08-29 01:21:13', '2019-08-29 01:21:13'),
(50, 'bk8810344', 'Qui itaque fugiat harum nemo dolor velit.', '<NAME> I', 34, '1', '1', 'https://lorempixel.com/150/150/cats/?82231', 'Rerum omnis sit veniam. Fugiat sunt suscipit adipisci. Sed cupiditate ea et architecto aut ratione sit doloribus.', 'Other', 4985217, 8, 27, 25, '2019-08-29 01:21:13', '2019-08-29 01:21:13');
-- --------------------------------------------------------
--
-- Table structure for table `classes`
--
CREATE TABLE `classes` (
`id` int(10) UNSIGNED NOT NULL,
`class_number` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`school_id` int(10) UNSIGNED NOT NULL,
`group` 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 `classes`
--
INSERT INTO `classes` (`id`, `class_number`, `school_id`, `group`, `created_at`, `updated_at`) VALUES
(1, '0', 1, '', '2019-08-29 01:20:31', '2019-08-29 01:20:31'),
(2, '1', 1, '', '2019-08-29 01:20:32', '2019-08-29 01:20:32'),
(3, '2', 1, '', '2019-08-29 01:20:32', '2019-08-29 01:20:32'),
(4, '3', 1, '', '2019-08-29 01:20:32', '2019-08-29 01:20:32'),
(5, '4', 1, '', '2019-08-29 01:20:32', '2019-08-29 01:20:32'),
(6, '5', 1, '', '2019-08-29 01:20:32', '2019-08-29 01:20:32'),
(7, '6', 1, '', '2019-08-29 01:20:32', '2019-08-29 01:20:32'),
(8, '7', 1, '', '2019-08-29 01:20:32', '2019-08-29 01:20:32'),
(9, '8', 1, 'commerce', '2019-08-29 01:20:32', '2019-08-29 01:20:32'),
(10, '9', 1, 'commerce', '2019-08-29 01:20:32', '2019-08-29 01:20:32'),
(11, '10', 1, 'science', '2019-08-29 01:20:32', '2019-08-29 01:20:32'),
(12, '11', 1, 'science', '2019-08-29 01:20:32', '2019-08-29 01:20:32'),
(13, '12', 1, 'science', '2019-08-29 01:20:32', '2019-08-29 01:20:32');
-- --------------------------------------------------------
--
-- Table structure for table `courses`
--
CREATE TABLE `courses` (
`id` int(10) UNSIGNED NOT NULL,
`course_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`class_id` int(10) UNSIGNED NOT NULL,
`course_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`course_time` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`grade_system_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`quiz_count` int(11) NOT NULL,
`assignment_count` int(11) NOT NULL,
`ct_count` int(11) NOT NULL,
`quiz_percent` int(11) NOT NULL,
`attendance_percent` int(11) NOT NULL,
`assignment_percent` int(11) NOT NULL,
`ct_percent` int(11) NOT NULL,
`final_exam_percent` int(11) NOT NULL,
`practical_percent` int(11) NOT NULL,
`att_fullmark` int(11) NOT NULL,
`quiz_fullmark` int(11) NOT NULL,
`a_fullmark` int(11) NOT NULL,
`ct_fullmark` int(11) NOT NULL,
`final_fullmark` int(11) NOT NULL,
`practical_fullmark` int(11) NOT NULL,
`school_id` int(10) UNSIGNED NOT NULL,
`exam_id` int(10) UNSIGNED NOT NULL,
`teacher_id` int(10) UNSIGNED NOT NULL,
`section_id` int(10) UNSIGNED NOT NULL,
`user_id` int(10) UNSIGNED 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 `courses`
--
INSERT INTO `courses` (`id`, `course_name`, `class_id`, `course_type`, `course_time`, `grade_system_name`, `quiz_count`, `assignment_count`, `ct_count`, `quiz_percent`, `attendance_percent`, `assignment_percent`, `ct_percent`, `final_exam_percent`, `practical_percent`, `att_fullmark`, `quiz_fullmark`, `a_fullmark`, `ct_fullmark`, `final_fullmark`, `practical_fullmark`, `school_id`, `exam_id`, `teacher_id`, `section_id`, `user_id`, `created_at`, `updated_at`) VALUES
(1, 'non ullam libero', 4, 'Elective', '12:50PM-01:40PM', 'Grade System 1', 5, 3, 5, 10, 5, 15, 10, 50, 25, 5, 15, 20, 15, 100, 30, 1, 5, 32, 8, 156, '2019-08-29 01:20:59', '2019-08-29 01:20:59'),
(2, 'nostrum nobis qui', 9, 'Elective', '9:30AM-10:20AM', 'Grade System 1', 2, 1, 3, 10, 5, 15, 10, 50, 25, 5, 15, 20, 15, 100, 30, 1, 3, 35, 8, 43, '2019-08-29 01:20:59', '2019-08-29 01:20:59'),
(3, 'beatae in quidem', 12, 'Core', '12:50PM-01:40PM', 'Grade System 1', 4, 1, 4, 10, 5, 15, 10, 50, 25, 5, 15, 20, 15, 100, 30, 1, 4, 36, 11, 215, '2019-08-29 01:20:59', '2019-08-29 01:20:59'),
(4, 'dolores maiores soluta', 7, 'Core', '12:50PM-01:40PM', 'Grade System 1', 1, 3, 4, 10, 5, 15, 10, 50, 25, 5, 15, 20, 15, 100, 30, 1, 4, 36, 6, 85, '2019-08-29 01:20:59', '2019-08-29 01:20:59'),
(5, 'fugiat ad distinctio', 2, 'Elective', '9:30AM-10:20AM', 'Grade System 1', 2, 3, 4, 10, 5, 15, 10, 50, 25, 5, 15, 20, 15, 100, 30, 1, 1, 33, 16, 84, '2019-08-29 01:20:59', '2019-08-29 01:20:59'),
(6, 'nisi quia dolorem', 1, 'Core', '12:50PM-01:40PM', 'Grade System 1', 4, 1, 3, 10, 5, 15, 10, 50, 25, 5, 15, 20, 15, 100, 30, 1, 2, 38, 15, 239, '2019-08-29 01:20:59', '2019-08-29 01:20:59'),
(7, 'quia veniam velit', 10, 'Elective', '12:50PM-01:40PM', 'Grade System 1', 5, 2, 2, 10, 5, 15, 10, 50, 25, 5, 15, 20, 15, 100, 30, 1, 7, 32, 8, 3, '2019-08-29 01:20:59', '2019-08-29 01:20:59'),
(8, 'similique corporis porro', 10, 'Elective', '12:50PM-01:40PM', 'Grade System 1', 1, 1, 3, 10, 5, 15, 10, 50, 25, 5, 15, 20, 15, 100, 30, 1, 4, 35, 14, 207, '2019-08-29 01:20:59', '2019-08-29 01:20:59'),
(9, 'quidem est et', 4, 'Elective', '9:30AM-10:20AM', 'Grade System 1', 3, 3, 2, 10, 5, 15, 10, 50, 25, 5, 15, 20, 15, 100, 30, 1, 3, 36, 15, 20, '2019-08-29 01:20:59', '2019-08-29 01:20:59'),
(10, 'molestiae sit velit', 9, 'Core', '9:30AM-10:20AM', 'Grade System 1', 1, 2, 5, 10, 5, 15, 10, 50, 25, 5, 15, 20, 15, 100, 30, 1, 8, 34, 13, 151, '2019-08-29 01:20:59', '2019-08-29 01:20:59'),
(11, 'odit optio totam', 8, 'Elective', '9:30AM-10:20AM', 'Grade System 1', 5, 3, 2, 10, 5, 15, 10, 50, 25, 5, 15, 20, 15, 100, 30, 1, 6, 32, 20, 237, '2019-08-29 01:20:59', '2019-08-29 01:20:59'),
(12, 'placeat earum facilis', 9, 'Core', '12:50PM-01:40PM', 'Grade System 1', 4, 3, 3, 10, 5, 15, 10, 50, 25, 5, 15, 20, 15, 100, 30, 1, 2, 33, 8, 216, '2019-08-29 01:20:59', '2019-08-29 01:20:59'),
(13, 'velit iure est', 4, 'Elective', '12:50PM-01:40PM', 'Grade System 1', 2, 1, 5, 10, 5, 15, 10, 50, 25, 5, 15, 20, 15, 100, 30, 1, 7, 36, 13, 43, '2019-08-29 01:20:59', '2019-08-29 01:20:59'),
(14, 'voluptatem beatae iure', 9, 'Elective', '9:30AM-10:20AM', 'Grade System 1', 4, 2, 5, 10, 5, 15, 10, 50, 25, 5, 15, 20, 15, 100, 30, 1, 3, 33, 9, 21, '2019-08-29 01:20:59', '2019-08-29 01:20:59'),
(15, 'voluptas officia nemo', 13, 'Core', '12:50PM-01:40PM', 'Grade System 1', 3, 2, 3, 10, 5, 15, 10, 50, 25, 5, 15, 20, 15, 100, 30, 1, 10, 34, 15, 67, '2019-08-29 01:21:00', '2019-08-29 01:21:00'),
(16, 'consequatur sit vel', 13, 'Core', '9:30AM-10:20AM', 'Grade System 1', 4, 2, 3, 10, 5, 15, 10, 50, 25, 5, 15, 20, 15, 100, 30, 1, 8, 33, 10, 104, '2019-08-29 01:21:00', '2019-08-29 01:21:00'),
(17, 'doloremque rem quibusdam', 5, 'Core', '9:30AM-10:20AM', 'Grade System 1', 3, 3, 5, 10, 5, 15, 10, 50, 25, 5, 15, 20, 15, 100, 30, 1, 8, 38, 4, 127, '2019-08-29 01:21:00', '2019-08-29 01:21:00'),
(18, 'repellendus numquam sit', 5, 'Elective', '9:30AM-10:20AM', 'Grade System 1', 1, 1, 4, 10, 5, 15, 10, 50, 25, 5, 15, 20, 15, 100, 30, 1, 3, 41, 16, 35, '2019-08-29 01:21:00', '2019-08-29 01:21:00'),
(19, 'explicabo quia dignissimos', 1, 'Elective', '12:50PM-01:40PM', 'Grade System 1', 4, 1, 1, 10, 5, 15, 10, 50, 25, 5, 15, 20, 15, 100, 30, 1, 5, 36, 2, 240, '2019-08-29 01:21:00', '2019-08-29 01:21:00'),
(20, 'officia eveniet dolores', 8, 'Core', '9:30AM-10:20AM', 'Grade System 1', 5, 3, 4, 10, 5, 15, 10, 50, 25, 5, 15, 20, 15, 100, 30, 1, 5, 39, 18, 4, '2019-08-29 01:21:00', '2019-08-29 01:21:00'),
(21, 'eos dolorem quas', 1, 'Elective', '9:30AM-10:20AM', 'Grade System 1', 2, 2, 1, 10, 5, 15, 10, 50, 25, 5, 15, 20, 15, 100, 30, 1, 8, 36, 13, 158, '2019-08-29 01:21:00', '2019-08-29 01:21:00'),
(22, 'in voluptatem velit', 3, 'Core', '12:50PM-01:40PM', 'Grade System 1', 2, 1, 2, 10, 5, 15, 10, 50, 25, 5, 15, 20, 15, 100, 30, 1, 10, 40, 7, 185, '2019-08-29 01:21:00', '2019-08-29 01:21:00'),
(23, 'eum officia porro', 6, 'Elective', '12:50PM-01:40PM', 'Grade System 1', 4, 1, 5, 10, 5, 15, 10, 50, 25, 5, 15, 20, 15, 100, 30, 1, 7, 32, 15, 108, '2019-08-29 01:21:00', '2019-08-29 01:21:00'),
(24, 'consequatur qui hic', 3, 'Core', '12:50PM-01:40PM', 'Grade System 1', 2, 2, 5, 10, 5, 15, 10, 50, 25, 5, 15, 20, 15, 100, 30, 1, 1, 36, 1, 12, '2019-08-29 01:21:00', '2019-08-29 01:21:00'),
(25, 'est accusantium odit', 11, 'Elective', '9:30AM-10:20AM', 'Grade System 1', 1, 1, 3, 10, 5, 15, 10, 50, 25, 5, 15, 20, 15, 100, 30, 1, 4, 40, 5, 82, '2019-08-29 01:21:00', '2019-08-29 01:21:00'),
(26, 'et impedit qui', 9, 'Core', '9:30AM-10:20AM', 'Grade System 1', 4, 1, 4, 10, 5, 15, 10, 50, 25, 5, 15, 20, 15, 100, 30, 1, 6, 39, 17, 59, '2019-08-29 01:21:00', '2019-08-29 01:21:00'),
(27, 'ipsa ut libero', 2, 'Core', '12:50PM-01:40PM', 'Grade System 1', 4, 2, 3, 10, 5, 15, 10, 50, 25, 5, 15, 20, 15, 100, 30, 1, 10, 32, 20, 53, '2019-08-29 01:21:00', '2019-08-29 01:21:00'),
(28, 'earum ex repellendus', 10, 'Elective', '9:30AM-10:20AM', 'Grade System 1', 1, 3, 1, 10, 5, 15, 10, 50, 25, 5, 15, 20, 15, 100, 30, 1, 5, 38, 12, 73, '2019-08-29 01:21:00', '2019-08-29 01:21:00'),
(29, 'libero fugit et', 4, 'Elective', '12:50PM-01:40PM', 'Grade System 1', 4, 1, 4, 10, 5, 15, 10, 50, 25, 5, 15, 20, 15, 100, 30, 1, 4, 35, 9, 122, '2019-08-29 01:21:00', '2019-08-29 01:21:00'),
(30, 'itaque aut ratione', 10, 'Elective', '9:30AM-10:20AM', 'Grade System 1', 1, 3, 5, 10, 5, 15, 10, 50, 25, 5, 15, 20, 15, 100, 30, 1, 7, 34, 14, 102, '2019-08-29 01:21:00', '2019-08-29 01:21:00'),
(31, 'est aut omnis', 9, 'Elective', '9:30AM-10:20AM', 'Grade System 1', 1, 1, 1, 10, 5, 15, 10, 50, 25, 5, 15, 20, 15, 100, 30, 1, 7, 32, 13, 51, '2019-08-29 01:21:00', '2019-08-29 01:21:00'),
(32, 'est nobis exercitationem', 11, 'Core', '12:50PM-01:40PM', 'Grade System 1', 2, 2, 4, 10, 5, 15, 10, 50, 25, 5, 15, 20, 15, 100, 30, 1, 4, 36, 20, 50, '2019-08-29 01:21:00', '2019-08-29 01:21:00'),
(33, 'architecto enim odit', 1, 'Elective', '12:50PM-01:40PM', 'Grade System 1', 4, 1, 1, 10, 5, 15, 10, 50, 25, 5, 15, 20, 15, 100, 30, 1, 2, 41, 5, 215, '2019-08-29 01:21:00', '2019-08-29 01:21:00'),
(34, 'laudantium velit aspernatur', 10, 'Core', '9:30AM-10:20AM', 'Grade System 1', 3, 3, 2, 10, 5, 15, 10, 50, 25, 5, 15, 20, 15, 100, 30, 1, 2, 37, 11, 131, '2019-08-29 01:21:00', '2019-08-29 01:21:00'),
(35, 'facilis sit voluptates', 6, 'Core', '12:50PM-01:40PM', 'Grade System 1', 3, 1, 1, 10, 5, 15, 10, 50, 25, 5, 15, 20, 15, 100, 30, 1, 9, 41, 4, 51, '2019-08-29 01:21:00', '2019-08-29 01:21:00'),
(36, 'delectus id illo', 8, 'Core', '9:30AM-10:20AM', 'Grade System 1', 2, 1, 5, 10, 5, 15, 10, 50, 25, 5, 15, 20, 15, 100, 30, 1, 3, 38, 13, 164, '2019-08-29 01:21:00', '2019-08-29 01:21:00'),
(37, 'mollitia quia velit', 12, 'Core', '9:30AM-10:20AM', 'Grade System 1', 3, 2, 1, 10, 5, 15, 10, 50, 25, 5, 15, 20, 15, 100, 30, 1, 5, 32, 17, 3, '2019-08-29 01:21:00', '2019-08-29 01:21:00'),
(38, 'odit sed vel', 7, 'Core', '9:30AM-10:20AM', 'Grade System 1', 1, 1, 4, 10, 5, 15, 10, 50, 25, 5, 15, 20, 15, 100, 30, 1, 10, 32, 6, 116, '2019-08-29 01:21:00', '2019-08-29 01:21:00'),
(39, 'aut ut repellat', 8, 'Elective', '12:50PM-01:40PM', 'Grade System 1', 3, 3, 2, 10, 5, 15, 10, 50, 25, 5, 15, 20, 15, 100, 30, 1, 10, 37, 15, 14, '2019-08-29 01:21:00', '2019-08-29 01:21:00'),
(40, 'id et sit', 13, 'Core', '12:50PM-01:40PM', 'Grade System 1', 4, 1, 4, 10, 5, 15, 10, 50, 25, 5, 15, 20, 15, 100, 30, 1, 3, 33, 8, 132, '2019-08-29 01:21:00', '2019-08-29 01:21:00'),
(41, 'sunt modi est', 2, 'Elective', '12:50PM-01:40PM', 'Grade System 1', 3, 3, 2, 10, 5, 15, 10, 50, 25, 5, 15, 20, 15, 100, 30, 1, 8, 39, 2, 18, '2019-08-29 01:21:00', '2019-08-29 01:21:00'),
(42, 'ex laborum enim', 1, 'Core', '9:30AM-10:20AM', 'Grade System 1', 3, 1, 3, 10, 5, 15, 10, 50, 25, 5, 15, 20, 15, 100, 30, 1, 8, 32, 8, 225, '2019-08-29 01:21:00', '2019-08-29 01:21:00'),
(43, 'occaecati distinctio et', 2, 'Elective', '9:30AM-10:20AM', 'Grade System 1', 3, 3, 2, 10, 5, 15, 10, 50, 25, 5, 15, 20, 15, 100, 30, 1, 5, 36, 10, 119, '2019-08-29 01:21:00', '2019-08-29 01:21:00'),
(44, 'at numquam sunt', 11, 'Core', '12:50PM-01:40PM', 'Grade System 1', 5, 2, 3, 10, 5, 15, 10, 50, 25, 5, 15, 20, 15, 100, 30, 1, 6, 37, 15, 7, '2019-08-29 01:21:00', '2019-08-29 01:21:00'),
(45, 'iste labore officia', 7, 'Elective', '12:50PM-01:40PM', 'Grade System 1', 4, 2, 5, 10, 5, 15, 10, 50, 25, 5, 15, 20, 15, 100, 30, 1, 6, 32, 1, 250, '2019-08-29 01:21:00', '2019-08-29 01:21:00'),
(46, 'laborum distinctio voluptatem', 2, 'Core', '9:30AM-10:20AM', 'Grade System 1', 1, 1, 3, 10, 5, 15, 10, 50, 25, 5, 15, 20, 15, 100, 30, 1, 9, 33, 13, 132, '2019-08-29 01:21:00', '2019-08-29 01:21:00'),
(47, 'ut repudiandae consequatur', 1, 'Elective', '9:30AM-10:20AM', 'Grade System 1', 2, 1, 4, 10, 5, 15, 10, 50, 25, 5, 15, 20, 15, 100, 30, 1, 2, 35, 12, 235, '2019-08-29 01:21:00', '2019-08-29 01:21:00'),
(48, 'cumque voluptatibus error', 7, 'Core', '9:30AM-10:20AM', 'Grade System 1', 5, 1, 3, 10, 5, 15, 10, 50, 25, 5, 15, 20, 15, 100, 30, 1, 4, 41, 11, 58, '2019-08-29 01:21:00', '2019-08-29 01:21:00'),
(49, 'dolorem accusantium eos', 10, 'Elective', '12:50PM-01:40PM', 'Grade System 1', 3, 3, 4, 10, 5, 15, 10, 50, 25, 5, 15, 20, 15, 100, 30, 1, 7, 40, 8, 160, '2019-08-29 01:21:00', '2019-08-29 01:21:00'),
(50, 'veniam aspernatur quia', 2, 'Elective', '9:30AM-10:20AM', 'Grade System 1', 1, 1, 4, 10, 5, 15, 10, 50, 25, 5, 15, 20, 15, 100, 30, 1, 3, 36, 2, 160, '2019-08-29 01:21:00', '2019-08-29 01:21:00');
-- --------------------------------------------------------
--
-- Table structure for table `departments`
--
CREATE TABLE `departments` (
`id` int(10) UNSIGNED NOT NULL,
`school_id` int(10) UNSIGNED NOT NULL,
`department_name` varchar(50) 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 `departments`
--
INSERT INTO `departments` (`id`, `school_id`, `department_name`, `created_at`, `updated_at`) VALUES
(1, 1, 'Bangla', '2019-08-29 01:20:31', '2019-08-29 01:20:31'),
(2, 1, 'Math', '2019-08-29 01:20:31', '2019-08-29 01:20:31'),
(3, 1, 'Bangla', '2019-08-29 01:20:31', '2019-08-29 01:20:31'),
(4, 1, 'Bangla', '2019-08-29 01:20:31', '2019-08-29 01:20:31'),
(5, 1, 'English', '2019-08-29 01:20:31', '2019-08-29 01:20:31'),
(6, 1, 'Bangla', '2019-08-29 01:20:31', '2019-08-29 01:20:31'),
(7, 1, 'English', '2019-08-29 01:20:31', '2019-08-29 01:20:31'),
(8, 1, 'Math', '2019-08-29 01:20:31', '2019-08-29 01:20:31'),
(9, 1, 'Bangla', '2019-08-29 01:20:31', '2019-08-29 01:20:31'),
(10, 1, 'Math', '2019-08-29 01:20:31', '2019-08-29 01:20:31');
-- --------------------------------------------------------
--
-- Table structure for table `events`
--
CREATE TABLE `events` (
`id` int(10) UNSIGNED NOT NULL,
`file_path` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`title` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`description` text COLLATE utf8mb4_unicode_ci NOT NULL,
`active` tinyint(4) NOT NULL,
`school_id` int(10) UNSIGNED NOT NULL,
`user_id` int(10) UNSIGNED 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 `events`
--
INSERT INTO `events` (`id`, `file_path`, `title`, `description`, `active`, `school_id`, `user_id`, `created_at`, `updated_at`) VALUES
(1, 'http://bergstrom.biz/', 'Dolores ut maxime voluptatem dicta optio.', 'Cumque excepturi labore explicabo recusandae quaerat quasi totam suscipit. Sint expedita ut vitae adipisci sit molestiae quidem. Molestiae perferendis esse quia perferendis quaerat aut.', 0, 1, 183, '2019-08-29 01:20:46', '2019-08-29 01:20:46'),
(2, 'http://www.beatty.com/qui-ipsum-sed-officiis-natus.html', 'Omnis quibusdam ut non et repellendus eaque beatae.', 'Exercitationem earum magnam officia delectus. Et omnis cupiditate nihil modi ea ut unde. Optio aut blanditiis voluptates non repudiandae.', 0, 1, 241, '2019-08-29 01:20:46', '2019-08-29 01:20:46'),
(3, 'http://gerhold.com/', 'Id unde optio deleniti placeat iusto.', 'Itaque aperiam eos eum. Quae dolor incidunt sit omnis quia quasi placeat. Animi aut aut nam rerum eaque rerum quaerat.', 1, 1, 235, '2019-08-29 01:20:46', '2019-08-29 01:20:46'),
(4, 'https://lind.com/incidunt-aut-iste-qui-quis-eveniet-adipisci-est.html', 'Aperiam qui id sint corporis voluptas.', 'Consequatur occaecati consectetur aut at iure natus. Enim optio tenetur error architecto vitae sit. Voluptates et neque odit ut.', 1, 1, 107, '2019-08-29 01:20:46', '2019-08-29 01:20:46'),
(5, 'http://www.marks.info/delectus-animi-consequuntur-exercitationem-et-enim-voluptates-adipisci.html', 'Quidem sed fuga pariatur qui facilis necessitatibus accusamus.', 'Ipsa ipsum explicabo libero pariatur saepe et quo. Facilis placeat dolore ut in adipisci velit nulla deleniti. Dolor aut repudiandae odio exercitationem vel beatae harum.', 1, 1, 166, '2019-08-29 01:20:46', '2019-08-29 01:20:46'),
(6, 'http://mayer.com/nostrum-possimus-nemo-fugit-necessitatibus-ea-sapiente-dignissimos-autem', 'Numquam est voluptas in mollitia eaque.', 'Aperiam porro exercitationem dignissimos laborum. Laborum dolorem molestias quas alias inventore fugit. Dolore autem totam quod id incidunt.', 0, 1, 237, '2019-08-29 01:20:46', '2019-08-29 01:20:46'),
(7, 'http://hudson.com/minus-earum-ut-sed-sapiente-iure.html', 'Iste quia aut aliquam.', 'Autem exercitationem unde expedita reprehenderit nemo enim. Eaque enim ut ea voluptate rem eaque sunt. Provident optio eaque odio voluptate debitis sint.', 1, 1, 17, '2019-08-29 01:20:46', '2019-08-29 01:20:46'),
(8, 'http://wisozk.com/perferendis-fugit-ad-recusandae-dolorem-autem', 'Atque ea est impedit veniam quos et quo.', 'Beatae in totam tempora delectus ducimus nemo quae. Est ut officia reiciendis amet voluptas. Et non molestiae tempora iste velit.', 1, 1, 139, '2019-08-29 01:20:46', '2019-08-29 01:20:46'),
(9, 'http://kilback.info/autem-aut-et-ullam.html', 'Dicta dolores numquam et ut.', 'Cupiditate aut exercitationem hic ut magni. Provident nisi saepe repellendus asperiores delectus voluptas. Molestiae deserunt est veniam et.', 0, 1, 184, '2019-08-29 01:20:46', '2019-08-29 01:20:46'),
(10, 'http://ledner.com/odit-officiis-quis-voluptatibus-reprehenderit-rem-voluptate-repellendus', 'Nesciunt impedit provident voluptates vel.', 'Consectetur consectetur quibusdam enim consectetur. Sed dolorem officiis ut exercitationem sapiente. Velit aliquam aspernatur dolorem est illo aut.', 1, 1, 165, '2019-08-29 01:20:46', '2019-08-29 01:20:46'),
(11, 'https://kassulke.biz/quo-et-dolores-et-rem-ab-quia.html', 'Hic eum laboriosam explicabo numquam est et.', 'Aliquid amet sit harum eius quasi nulla. Aspernatur dolorem magni ullam maxime dolores. Qui similique ratione id eos autem ipsa eos.', 1, 1, 94, '2019-08-29 01:20:46', '2019-08-29 01:20:46'),
(12, 'http://bergnaum.com/impedit-inventore-sit-sunt-qui-consequuntur-ad-ex.html', 'Enim atque dolores illo dolorem rerum iure aut.', 'Aut voluptatem illo facilis nam sed. Non modi aliquid consequuntur dolores. Qui dignissimos aut odit dolores aliquam.', 0, 1, 166, '2019-08-29 01:20:46', '2019-08-29 01:20:46'),
(13, 'https://www.hills.info/qui-quas-quod-nihil-saepe-modi-natus-consequatur-velit', 'Incidunt et autem ut error.', 'Facilis non et in. Qui vitae ut quidem et a necessitatibus iure ex. Voluptatem et quam corporis dolores architecto numquam porro.', 1, 1, 36, '2019-08-29 01:20:46', '2019-08-29 01:20:46'),
(14, 'http://rempel.com/sequi-eius-impedit-explicabo-et-nulla-natus-facilis', 'Quaerat corporis sed rerum doloribus.', 'Dolorem recusandae et saepe quia. Quibusdam inventore molestiae tenetur nobis ducimus. Enim excepturi qui natus est aut libero.', 1, 1, 176, '2019-08-29 01:20:46', '2019-08-29 01:20:46'),
(15, 'http://kertzmann.info/amet-veniam-dolorem-nostrum-ut-natus-ipsa', 'Accusantium non dolore necessitatibus at est reiciendis.', 'Est ducimus vero nostrum rerum cupiditate aut explicabo. Blanditiis non tempore vero cumque magnam. Autem ut dolorum quibusdam quia ipsum saepe eligendi.', 1, 1, 233, '2019-08-29 01:20:46', '2019-08-29 01:20:46'),
(16, 'http://www.ruecker.com/qui-nihil-qui-aliquid-voluptatem', 'Non inventore perspiciatis deserunt nihil at.', 'Alias et beatae qui autem quisquam maiores. Quidem tempore quas hic consequuntur amet. Esse non quia facilis natus.', 0, 1, 249, '2019-08-29 01:20:46', '2019-08-29 01:20:46'),
(17, 'http://www.stehr.com/alias-ea-explicabo-nam-hic-iusto-magnam-eius-aut.html', 'Dignissimos perferendis voluptates omnis sunt rerum harum eius.', 'Perferendis nam rem magnam nobis quasi laudantium optio non. Fugiat omnis et enim. Eveniet provident ut dolor voluptas quaerat debitis.', 0, 1, 51, '2019-08-29 01:20:46', '2019-08-29 01:20:46'),
(18, 'http://www.mayert.com/voluptate-autem-nam-ad.html', 'Eaque rem deleniti eveniet aliquid.', 'Magni sed occaecati voluptatibus. Maiores nihil at in sed earum delectus. Ut quam eos perferendis.', 1, 1, 104, '2019-08-29 01:20:46', '2019-08-29 01:20:46'),
(19, 'http://zboncak.org/', 'Sunt ipsa totam architecto pariatur voluptatum.', 'Iste perferendis quibusdam recusandae officia. Sapiente sed sed totam quisquam ipsum. Ullam dolorum architecto doloremque sed.', 1, 1, 133, '2019-08-29 01:20:46', '2019-08-29 01:20:46'),
(20, 'http://parisian.com/', 'Maiores modi quia ducimus et veritatis eius aut.', 'Nobis ad minima at commodi quasi et. Molestias aspernatur cumque eius quisquam optio voluptatem excepturi odit. Est dolores soluta non nisi sit qui.', 1, 1, 102, '2019-08-29 01:20:46', '2019-08-29 01:20:46'),
(21, 'https://bins.biz/ex-ipsum-nihil-ipsum-quae-quo-nesciunt.html', 'Consequatur eos qui vel qui nulla reiciendis velit.', 'Est est atque debitis magnam quam eveniet. Nobis et maiores qui neque. Repellat sed error beatae quibusdam nulla nihil.', 1, 1, 99, '2019-08-29 01:20:46', '2019-08-29 01:20:46'),
(22, 'https://shields.com/ratione-placeat-amet-eos-qui.html', 'Dignissimos officia quidem dolor asperiores veniam et consequatur minus.', 'Nihil laborum error occaecati architecto. Illo nulla cumque ipsum cupiditate sit autem cum. Est veritatis quaerat consectetur architecto.', 1, 1, 169, '2019-08-29 01:20:46', '2019-08-29 01:20:46'),
(23, 'http://www.goyette.org/dicta-cupiditate-veniam-ea-magni-voluptatem.html', 'Quia eum est nulla dignissimos sequi dolores non.', 'Praesentium commodi itaque quae quam ut modi. Voluptatem sequi omnis ut. Ullam dolores id non illum ut.', 0, 1, 192, '2019-08-29 01:20:46', '2019-08-29 01:20:46'),
(24, 'http://waelchi.com/aut-non-et-quam-non', 'Ut qui voluptatum placeat dolorem deserunt accusantium.', 'Ratione id qui repudiandae aut laborum error deserunt quo. Ullam sapiente tenetur reprehenderit consequatur modi libero sit. Eaque reprehenderit dolorum tempora ut.', 0, 1, 40, '2019-08-29 01:20:46', '2019-08-29 01:20:46'),
(25, 'http://www.blanda.biz/sit-quidem-doloremque-quasi-blanditiis-deleniti-rem-temporibus', 'Officia deleniti laboriosam animi nemo.', 'Repudiandae laudantium dolore qui non quisquam. Et voluptates vel fuga eos. Tempore fugit dolorum est cum dignissimos sed.', 0, 1, 196, '2019-08-29 01:20:46', '2019-08-29 01:20:46'),
(26, 'https://www.dare.info/numquam-temporibus-autem-ut-dolorem-nobis-laborum', 'Ipsa quia rerum ut id pariatur cum tempora.', 'Quia fugit sit exercitationem et. Ut et dolorem quia eos expedita quod tempore veniam. Fuga ut et debitis porro.', 1, 1, 233, '2019-08-29 01:20:46', '2019-08-29 01:20:46'),
(27, 'https://www.conroy.com/vitae-voluptatum-doloribus-totam-reprehenderit', 'Dolorem dolores dolorem ad iste vel.', 'Corrupti voluptates tenetur consequatur odio rerum alias nihil. Sed similique consequatur eaque exercitationem cupiditate voluptas repellat. Eum praesentium amet perspiciatis doloribus a consequatur odit.', 1, 1, 119, '2019-08-29 01:20:46', '2019-08-29 01:20:46'),
(28, 'http://www.bednar.org/ut-neque-voluptatibus-et-autem-modi-ea', 'Ut est vel ratione quae nesciunt aliquam non.', 'Ut in nisi soluta ratione est rerum maiores sapiente. Architecto non ut ducimus facere quam non omnis repudiandae. Officiis animi quia non debitis.', 0, 1, 185, '2019-08-29 01:20:46', '2019-08-29 01:20:46'),
(29, 'http://www.wiza.com/dolores-nostrum-eius-quis-modi-quisquam-enim-quia-nemo', 'Voluptatibus voluptatem et qui aut saepe earum.', 'Et voluptatum quis similique unde in. Occaecati dolor in accusantium saepe voluptas cumque. Quaerat rerum qui eos voluptatem aspernatur molestias voluptas.', 1, 1, 35, '2019-08-29 01:20:46', '2019-08-29 01:20:46'),
(30, 'http://www.haag.net/quasi-omnis-iste-corrupti-distinctio', 'Incidunt fugit itaque accusantium fuga autem.', 'Quas autem et dolorem totam molestiae. Ab ut blanditiis voluptas corporis. Ea maxime nihil dolorem ut provident aut ipsum.', 0, 1, 137, '2019-08-29 01:20:46', '2019-08-29 01:20:46'),
(31, 'http://www.langosh.com/', 'Maxime repellat cupiditate eaque aut aspernatur.', 'Suscipit rerum odio et sed quisquam nihil. Minus nihil quo quam distinctio quas minus. Quia vel adipisci et corporis in labore ad.', 1, 1, 191, '2019-08-29 01:20:46', '2019-08-29 01:20:46'),
(32, 'https://www.cormier.net/sed-molestiae-reprehenderit-iste-ipsa-ut-odit', 'Est est accusamus molestiae expedita porro eos.', 'Consequatur cum necessitatibus aut et qui ut et. Maiores autem sit aperiam molestias qui. Rem iste suscipit possimus explicabo ex.', 0, 1, 19, '2019-08-29 01:20:46', '2019-08-29 01:20:46'),
(33, 'http://koelpin.net/et-provident-non-consectetur-voluptate-necessitatibus-eos-quasi-cupiditate.html', 'Ut adipisci quia accusamus dolor explicabo quidem nihil.', 'At tempora voluptas nesciunt esse amet impedit laborum. Maxime sit mollitia aspernatur modi expedita natus quos. Voluptatibus aliquam eveniet odit sed labore repudiandae.', 0, 1, 204, '2019-08-29 01:20:46', '2019-08-29 01:20:46'),
(34, 'http://www.upton.com/ea-odit-possimus-accusamus-ducimus-aut-esse-et.html', 'Dolores vel ratione est voluptatum reiciendis et ut.', 'Architecto modi aspernatur voluptatum eaque fugit illum sapiente. Dolore quo distinctio doloribus ratione. Veritatis sunt saepe non.', 1, 1, 108, '2019-08-29 01:20:46', '2019-08-29 01:20:46'),
(35, 'http://www.fahey.com/est-amet-magni-accusamus-est-nihil', 'Et et nesciunt animi nemo rerum.', 'Minima non ex quos soluta officia. Eveniet id sed nostrum quis dicta. Suscipit amet quae dolorem temporibus incidunt omnis.', 0, 1, 130, '2019-08-29 01:20:46', '2019-08-29 01:20:46'),
(36, 'https://runolfsson.org/mollitia-aut-error-iure-sapiente-nihil.html', 'Quas nesciunt vitae eum ut accusamus a error.', 'Sunt rerum accusamus voluptatibus et illo illo et. Consequatur nisi natus nam placeat nostrum. Neque blanditiis ad dolore velit ipsam.', 1, 1, 256, '2019-08-29 01:20:46', '2019-08-29 01:20:46'),
(37, 'http://pfeffer.com/et-ducimus-et-et-at.html', 'Accusamus voluptatum asperiores totam consequatur sapiente aspernatur vero.', 'Omnis qui itaque atque ut et. Et ducimus ipsum pariatur quia architecto. Aperiam doloremque doloremque voluptas reiciendis nostrum voluptatem dolores totam.', 0, 1, 45, '2019-08-29 01:20:46', '2019-08-29 01:20:46'),
(38, 'https://lindgren.com/unde-aperiam-maiores-culpa-et-mollitia-excepturi.html', 'Rem veritatis qui similique.', 'Voluptatem earum est omnis saepe quis quam. Repellat repudiandae ut nihil tempore quia voluptatem commodi. Dignissimos atque occaecati est.', 0, 1, 40, '2019-08-29 01:20:46', '2019-08-29 01:20:46'),
(39, 'http://greenfelder.info/', 'Impedit aut dolor aspernatur consequatur id vero nesciunt.', 'Ut veniam eos quam optio. Eos dolor blanditiis minus id dolorum laborum consequatur. Temporibus illum aut et.', 1, 1, 3, '2019-08-29 01:20:46', '2019-08-29 01:20:46'),
(40, 'https://wunsch.com/reprehenderit-ab-sunt-eos.html', 'Consequuntur harum amet culpa dolore impedit nihil.', 'Eos nihil hic omnis nam ipsam quia. Nihil minus fugit sit eveniet. Voluptatem earum velit cupiditate odit.', 1, 1, 100, '2019-08-29 01:20:46', '2019-08-29 01:20:46'),
(41, 'http://klocko.org/quia-ad-incidunt-nostrum-aut', 'Sunt ducimus qui commodi.', 'Autem voluptatem officiis consequatur consequatur nesciunt minima. Expedita voluptatum nesciunt id sed ratione. Omnis unde maxime nihil corrupti.', 1, 1, 164, '2019-08-29 01:20:46', '2019-08-29 01:20:46'),
(42, 'http://www.hintz.net/', 'Velit ea est dolores.', 'Quo quod fugit consequatur et odit doloribus. Est deserunt doloremque omnis molestias laborum dicta. Labore quos quae sequi iure ex et et.', 0, 1, 204, '2019-08-29 01:20:46', '2019-08-29 01:20:46'),
(43, 'https://www.bins.org/dicta-quod-doloribus-quo-sed-ipsam-veritatis-repellendus', 'Perferendis expedita iure molestiae sit non dicta non.', 'Voluptatem sunt atque est ab. Quae neque deleniti fuga officia voluptas tempora. Nisi itaque ea minus cum quod ullam aut.', 1, 1, 45, '2019-08-29 01:20:46', '2019-08-29 01:20:46'),
(44, 'http://www.predovic.com/', 'Cumque cumque explicabo voluptatem est non incidunt minima.', 'Aut omnis quia et corporis. Exercitationem incidunt quis repellendus. Enim suscipit sed at consectetur dolor accusamus dolorum est.', 1, 1, 194, '2019-08-29 01:20:46', '2019-08-29 01:20:46'),
(45, 'http://www.boehm.com/vel-ea-et-eum-tempora.html', 'Assumenda sit animi et excepturi.', 'Reprehenderit nobis minima enim dolores. Earum itaque id sapiente dolor voluptatem. Et temporibus dolorem pariatur qui incidunt.', 1, 1, 261, '2019-08-29 01:20:46', '2019-08-29 01:20:46'),
(46, 'http://bosco.info/voluptas-recusandae-aperiam-quia-facilis-sunt-harum-in', 'Et sapiente beatae dolor aliquid voluptas.', 'Dolorem voluptate a velit blanditiis. Ratione iste ut ad. Est molestiae voluptate consectetur repellendus nihil aperiam non.', 1, 1, 29, '2019-08-29 01:20:46', '2019-08-29 01:20:46'),
(47, 'http://oconner.biz/expedita-labore-eaque-sint-illum-ut-maxime-sit', 'Dolorum voluptatum consequatur reiciendis.', 'Odit necessitatibus qui omnis perspiciatis voluptatem dolore. Praesentium consequuntur et assumenda corporis sunt nostrum soluta. Eius quis perspiciatis et facere consequatur.', 0, 1, 139, '2019-08-29 01:20:46', '2019-08-29 01:20:46'),
(48, 'https://www.bradtke.com/quae-repellendus-enim-itaque-tenetur-libero', 'Eum nulla dolor culpa cum quia.', 'Quia accusamus nemo sed illo ducimus facilis ipsa. Tempore qui non vero aut. Sed et eum aliquid facilis quis sequi.', 0, 1, 133, '2019-08-29 01:20:46', '2019-08-29 01:20:46'),
(49, 'https://baumbach.net/non-qui-minima-maiores-et-at.html', 'Cum nulla et quidem cumque ad consequuntur reiciendis necessitatibus.', 'Aperiam aut dolor praesentium eum. Doloremque reiciendis quam quia illo maiores ab ut. Est sequi totam voluptatem perferendis.', 0, 1, 248, '2019-08-29 01:20:46', '2019-08-29 01:20:46'),
(50, 'https://www.rowe.biz/eligendi-eum-commodi-tempore', 'Ut quaerat beatae ducimus sunt ex.', 'Quo molestias maiores et et ea. Voluptates aut ad qui temporibus. Voluptatem nam est distinctio sequi autem sequi natus.', 0, 1, 128, '2019-08-29 01:20:46', '2019-08-29 01:20:46');
-- --------------------------------------------------------
--
-- Table structure for table `exams`
--
CREATE TABLE `exams` (
`id` int(10) UNSIGNED NOT NULL,
`exam_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`active` tinyint(4) NOT NULL,
`notice_published` tinyint(4) NOT NULL,
`result_published` tinyint(4) NOT NULL,
`school_id` int(10) UNSIGNED NOT NULL,
`user_id` int(10) UNSIGNED NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`term` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`start_date` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`end_date` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT ''
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `exams`
--
INSERT INTO `exams` (`id`, `exam_name`, `active`, `notice_published`, `result_published`, `school_id`, `user_id`, `created_at`, `updated_at`, `term`, `start_date`, `end_date`) VALUES
(1, 'sit nulla veritatis', 1, 0, 1, 1, 201, '2019-08-29 01:20:55', '2019-08-29 01:20:55', 'Et expedita hic veli', '1994-02-23 08:50:36', '2019-08-12 13:22:36'),
(2, 'et nostrum nemo', 1, 1, 0, 1, 114, '2019-08-29 01:20:55', '2019-08-29 01:20:55', 'Laborum expedita arc', '1978-05-23 18:17:24', '1987-03-10 09:29:20'),
(3, 'quos ex deserunt', 1, 0, 0, 1, 176, '2019-08-29 01:20:55', '2019-08-29 01:20:55', 'Architecto praesenti', '2013-01-16 09:36:25', '2013-07-27 05:52:26'),
(4, 'blanditiis commodi ut', 0, 1, 0, 1, 212, '2019-08-29 01:20:55', '2019-08-29 01:20:55', 'Nobis repudiandae do', '1994-08-25 21:53:43', '1990-02-18 12:25:53'),
(5, 'est consequuntur veritatis', 1, 1, 1, 1, 7, '2019-08-29 01:20:55', '2019-08-29 01:20:55', 'Quisquam ullam nam a', '2014-09-07 00:05:21', '1985-12-26 23:34:44'),
(6, 'quod repudiandae officiis', 1, 1, 0, 1, 175, '2019-08-29 01:20:55', '2019-08-29 01:20:55', 'Aut quia unde placea', '1991-07-03 17:43:22', '1972-01-13 19:11:46'),
(7, 'eos eos et', 1, 1, 1, 1, 156, '2019-08-29 01:20:56', '2019-08-29 01:20:56', 'Veritatis placeat am', '2017-06-07 01:29:37', '2019-04-05 18:04:04'),
(8, 'ab eum reiciendis', 1, 0, 1, 1, 93, '2019-08-29 01:20:56', '2019-08-29 01:20:56', 'Maxime ullam pariatu', '1997-10-29 17:38:20', '1998-06-10 00:25:27'),
(9, 'placeat quidem in', 0, 0, 0, 1, 118, '2019-08-29 01:20:56', '2019-08-29 01:20:56', 'Ut consectetur sit a', '2003-04-23 17:07:11', '1974-01-22 12:01:27'),
(10, 'officiis rerum voluptatum', 0, 0, 0, 1, 215, '2019-08-29 01:20:56', '2019-08-29 01:20:56', 'Totam expedita accus', '1992-06-12 12:33:56', '1985-12-07 01:37:46');
-- --------------------------------------------------------
--
-- Table structure for table `exam_for_classes`
--
CREATE TABLE `exam_for_classes` (
`id` int(10) UNSIGNED NOT NULL,
`class_id` int(10) UNSIGNED NOT NULL,
`exam_id` int(10) UNSIGNED NOT NULL,
`active` tinyint(4) NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `exam_for_classes`
--
INSERT INTO `exam_for_classes` (`id`, `class_id`, `exam_id`, `active`) VALUES
(1, 10, 2, 0),
(2, 9, 7, 0),
(3, 2, 5, 0),
(4, 8, 8, 0),
(5, 1, 8, 0),
(6, 13, 6, 1),
(7, 4, 3, 1),
(8, 1, 2, 0),
(9, 13, 5, 0),
(10, 13, 8, 1),
(11, 2, 2, 1),
(12, 7, 5, 1),
(13, 6, 8, 1),
(14, 1, 1, 0),
(15, 5, 8, 0),
(16, 3, 5, 1),
(17, 9, 1, 1),
(18, 4, 1, 1),
(19, 8, 7, 1),
(20, 9, 5, 1),
(21, 12, 6, 0),
(22, 5, 8, 0),
(23, 13, 2, 1),
(24, 9, 6, 0),
(25, 1, 7, 0),
(26, 2, 8, 1),
(27, 11, 8, 1),
(28, 6, 3, 1),
(29, 9, 1, 1),
(30, 5, 6, 0);
-- --------------------------------------------------------
--
-- Table structure for table `faqs`
--
CREATE TABLE `faqs` (
`id` int(10) UNSIGNED NOT NULL,
`question` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`answer` text COLLATE utf8mb4_unicode_ci NOT NULL,
`user_id` int(10) UNSIGNED 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 `faqs`
--
INSERT INTO `faqs` (`id`, `question`, `answer`, `user_id`, `created_at`, `updated_at`) VALUES
(1, 'Porro nulla repudiandae id quaerat est exercitationem id.', 'Ab maxime non libero ipsum totam incidunt. Quos quam sit quisquam et excepturi veritatis exercitationem. Et enim itaque eaque sunt nostrum voluptate.', 258, '2019-08-29 01:21:18', '2019-08-29 01:21:18'),
(2, 'Mollitia voluptatem architecto error occaecati maxime ratione.', 'Quaerat sequi architecto veniam natus quas est in. Fuga aut itaque reprehenderit quis. Saepe occaecati voluptatibus aut quia.', 55, '2019-08-29 01:21:18', '2019-08-29 01:21:18'),
(3, 'Et culpa qui ea labore.', 'Quam rerum corporis aut repellat aut. Perferendis incidunt voluptatibus dolorem et dolor tempore et. Repudiandae voluptas illo ex dolore tenetur porro.', 247, '2019-08-29 01:21:18', '2019-08-29 01:21:18'),
(4, 'Nobis quia et omnis quae.', 'Quia doloribus reprehenderit vel accusamus repellendus autem doloribus. Exercitationem molestiae fugiat voluptates ducimus rem reprehenderit ut. Est delectus reprehenderit fuga eaque dolorem repudiandae.', 222, '2019-08-29 01:21:18', '2019-08-29 01:21:18'),
(5, 'Harum in ea voluptatibus et ut nam.', 'Veniam vel maxime dolor et aut rem. Ad aut amet eligendi sed. Eum autem quo dolorem architecto magni omnis.', 201, '2019-08-29 01:21:18', '2019-08-29 01:21:18'),
(6, 'Itaque quisquam neque repellat.', 'Placeat fugiat aut qui dicta qui. Nisi porro officiis qui recusandae laboriosam cupiditate laudantium maxime. Sapiente vel deserunt provident odit et.', 86, '2019-08-29 01:21:18', '2019-08-29 01:21:18'),
(7, 'Ex aperiam quidem necessitatibus perspiciatis.', 'Est molestiae asperiores officiis deleniti nam. Illo perspiciatis quos magni aspernatur. Voluptas at et adipisci molestiae.', 47, '2019-08-29 01:21:18', '2019-08-29 01:21:18'),
(8, 'Commodi et maiores aut magnam.', 'Distinctio ea et eum. Aperiam molestias voluptatem distinctio repellendus est quo cupiditate. Minima quia rerum sint.', 180, '2019-08-29 01:21:18', '2019-08-29 01:21:18'),
(9, 'Facere rem eius quasi assumenda porro.', 'Doloribus aut aut cumque sed illo. Nobis molestiae voluptate molestias eos sed eos. Non consequatur molestias est nobis dolor excepturi quisquam placeat.', 249, '2019-08-29 01:21:18', '2019-08-29 01:21:18'),
(10, 'Omnis voluptatibus doloremque odit velit incidunt omnis dolor dolorem.', 'Ut omnis eum a qui doloribus. Quia natus est ullam vel quia doloremque. Placeat deserunt repellat voluptatem beatae quis omnis repellendus illum.', 143, '2019-08-29 01:21:18', '2019-08-29 01:21:18'),
(11, 'Animi maiores error porro pariatur.', 'Quidem et aperiam rerum aut quo. Eos nesciunt ipsam sit veritatis tenetur in nesciunt. Iusto necessitatibus doloribus consectetur qui iure.', 63, '2019-08-29 01:21:18', '2019-08-29 01:21:18'),
(12, 'Non nihil sit ut unde magnam quas.', 'Et laboriosam ut illo animi. Qui tenetur dolor temporibus. Ut porro omnis quaerat necessitatibus.', 215, '2019-08-29 01:21:18', '2019-08-29 01:21:18'),
(13, 'Qui sint autem recusandae natus.', 'Aut sed quo voluptatum natus tempore. Voluptas velit voluptas odit ut voluptatem odit. Delectus laborum esse quasi dolores omnis et et.', 216, '2019-08-29 01:21:18', '2019-08-29 01:21:18'),
(14, 'Dicta quaerat inventore voluptas officiis voluptatem aut dignissimos.', 'Earum vel voluptatum iure esse quae. Dolore dolore debitis aliquid velit quibusdam sequi. Consectetur omnis sit omnis illum.', 219, '2019-08-29 01:21:18', '2019-08-29 01:21:18'),
(15, 'Vel hic iusto aut quos quasi eum.', 'Et rerum molestias ex vitae. Sed voluptatum totam accusamus est molestiae. Ullam repellendus sit ad corrupti ut est modi.', 204, '2019-08-29 01:21:18', '2019-08-29 01:21:18'),
(16, 'Voluptas aut reprehenderit est voluptatem qui vel esse.', 'Maiores neque quas ducimus numquam nam in. Quia omnis dolorem omnis quod accusantium dignissimos. Non deserunt repudiandae quibusdam aut est.', 121, '2019-08-29 01:21:18', '2019-08-29 01:21:18'),
(17, 'Iusto et quis maiores voluptate itaque non repellat.', 'Vel est voluptates delectus. Et voluptatem porro quaerat ut. Ullam sunt repellendus velit est.', 139, '2019-08-29 01:21:18', '2019-08-29 01:21:18'),
(18, 'Rerum accusantium aut quam libero voluptas.', 'Labore nesciunt odio quasi architecto ullam. Ut sed culpa laudantium sunt autem ut dolorem. Libero qui consectetur et eos ipsam.', 133, '2019-08-29 01:21:18', '2019-08-29 01:21:18'),
(19, 'Expedita et sint in provident non ut.', 'Mollitia sed harum cum ut ut quae. Sapiente enim est tempora et. Aliquid provident amet animi ab sunt et.', 176, '2019-08-29 01:21:18', '2019-08-29 01:21:18'),
(20, 'Nemo perspiciatis sunt doloribus tenetur nihil qui eum.', 'Ipsa voluptatem laborum officia pariatur pariatur optio. Exercitationem minus nihil aut et fugiat blanditiis. Quo quod sit odio maxime.', 43, '2019-08-29 01:21:18', '2019-08-29 01:21:18'),
(21, 'Et quos ut asperiores non vel voluptatem.', 'Velit impedit voluptas omnis rem omnis pariatur. Autem vel in earum molestiae laboriosam beatae dolorum. Repudiandae omnis quisquam quam quas dolor.', 119, '2019-08-29 01:21:18', '2019-08-29 01:21:18'),
(22, 'Eum et dignissimos eos sunt ipsum perferendis aut.', 'Quo omnis incidunt voluptatibus aliquam aut. Provident qui tempora aliquid. Harum et provident nihil explicabo quas.', 97, '2019-08-29 01:21:18', '2019-08-29 01:21:18'),
(23, 'Eum reprehenderit similique autem dolorem sit sint id.', 'Hic beatae temporibus sed quis dolores voluptas. Beatae assumenda ducimus quasi odit animi. Maiores non occaecati porro aut provident cupiditate et sit.', 92, '2019-08-29 01:21:18', '2019-08-29 01:21:18'),
(24, 'Maxime corporis velit ad repudiandae est dolorem.', 'Quas sit sunt est minus nam. Nulla eos est corporis officiis quis. Nihil dignissimos animi voluptatem et voluptas.', 178, '2019-08-29 01:21:18', '2019-08-29 01:21:18'),
(25, 'Quas eligendi vel ut non est fugiat at.', 'Atque et qui doloremque nemo esse. Ad officiis ut totam est. Corrupti minus est totam vel voluptatem eaque et.', 57, '2019-08-29 01:21:18', '2019-08-29 01:21:18'),
(26, 'Aspernatur rem perspiciatis quia.', 'Non natus natus tempora sunt earum maxime autem. Est quia dolorem distinctio voluptas placeat repellat. Rerum velit sequi eius velit incidunt ea voluptatem.', 72, '2019-08-29 01:21:18', '2019-08-29 01:21:18'),
(27, 'Id vel voluptatum assumenda labore nihil.', 'Molestiae sint et repudiandae et suscipit. Et aut rerum nemo quia. Ut qui quos id perferendis harum.', 150, '2019-08-29 01:21:18', '2019-08-29 01:21:18'),
(28, 'Veniam dolor in dolores dolorem assumenda quidem omnis in.', 'Sapiente non pariatur laborum atque. Eos aperiam occaecati officia iusto itaque. Fuga impedit non iusto mollitia quia.', 195, '2019-08-29 01:21:18', '2019-08-29 01:21:18'),
(29, 'Et enim fugiat iure officiis et ea velit.', 'Qui impedit architecto eos. Itaque est amet ut sit nemo quae dolorem ab. Suscipit soluta ad quia sit iure assumenda.', 88, '2019-08-29 01:21:18', '2019-08-29 01:21:18'),
(30, 'Vel corporis voluptatem autem quod.', 'Possimus voluptas adipisci vero vel ducimus est. Distinctio libero quas optio autem aut. Ut et eius sit hic et cupiditate ab.', 163, '2019-08-29 01:21:18', '2019-08-29 01:21:18'),
(31, 'Enim maiores impedit vitae aut eius fugiat repudiandae.', 'Labore praesentium nihil soluta doloremque ullam. Aut quam ad dolorem quo voluptatem omnis quisquam. Sunt consectetur magni mollitia soluta sint architecto modi voluptatem.', 19, '2019-08-29 01:21:18', '2019-08-29 01:21:18'),
(32, 'Laudantium eveniet ad exercitationem ipsam libero omnis vero.', 'Doloremque nisi quo quibusdam illo nostrum aspernatur. Id culpa voluptatem iusto deserunt itaque ex voluptatem aliquid. Exercitationem illo dolorem est distinctio id commodi.', 145, '2019-08-29 01:21:18', '2019-08-29 01:21:18'),
(33, 'Dignissimos assumenda est ipsam perspiciatis.', 'Accusantium harum modi laboriosam omnis illo omnis. Aliquid culpa dolor harum hic necessitatibus sint. Quia vero dicta qui maiores.', 207, '2019-08-29 01:21:18', '2019-08-29 01:21:18'),
(34, 'Qui esse ut reprehenderit qui facilis.', 'Et rerum ratione quisquam voluptatibus magni sapiente quae eius. Eos assumenda consequatur quia officiis consectetur reprehenderit. Cumque modi dicta adipisci dolor.', 247, '2019-08-29 01:21:18', '2019-08-29 01:21:18'),
(35, 'Voluptatem incidunt voluptas eos cumque pariatur accusamus nulla.', 'Fugit ut quis eum quis perspiciatis. Earum tenetur tempora numquam illum aut. Nulla laboriosam illo sit et in sed.', 143, '2019-08-29 01:21:18', '2019-08-29 01:21:18'),
(36, 'Distinctio sint accusantium nisi unde repudiandae.', 'Consequatur ea dolorem odit et est aut. Facilis quis quam qui explicabo cupiditate et molestiae. Et eius ex voluptates aut eveniet voluptatem ullam.', 40, '2019-08-29 01:21:18', '2019-08-29 01:21:18'),
(37, 'Harum aut reiciendis voluptatem qui dolore eveniet accusantium dignissimos.', 'Consequuntur ut dolor nihil neque fugiat voluptatem earum. Ea sed aut incidunt ea ipsum aperiam. Ea eum in saepe odio.', 41, '2019-08-29 01:21:18', '2019-08-29 01:21:18'),
(38, 'Iure nobis aut ut modi est eius.', 'In iusto et rem debitis et. Aliquam eveniet et aspernatur maxime aut reprehenderit. Sint assumenda ut a et ut rem quibusdam.', 60, '2019-08-29 01:21:18', '2019-08-29 01:21:18'),
(39, 'Id cumque quis tempora sit.', 'Quis aut non magni omnis. Aperiam qui ut voluptatibus sit earum totam iste velit. Quas vero reprehenderit itaque.', 28, '2019-08-29 01:21:18', '2019-08-29 01:21:18'),
(40, 'Et qui saepe nulla illum autem.', 'Modi minus esse eligendi officiis aut. Nostrum voluptate consequatur earum necessitatibus ut ullam vitae. Et eum vel sequi voluptatum natus.', 190, '2019-08-29 01:21:18', '2019-08-29 01:21:18'),
(41, 'Praesentium praesentium incidunt eum quidem.', 'Tempore eligendi voluptas et vel. Ex officia assumenda eum veniam veritatis esse exercitationem. Facilis et culpa voluptas sed nobis eum rerum.', 118, '2019-08-29 01:21:18', '2019-08-29 01:21:18'),
(42, 'Magnam consequatur quaerat libero et harum.', 'Reiciendis ipsum eos quam autem dolorum est doloremque. Possimus soluta adipisci aut laboriosam explicabo. Nihil dolores iure consequatur dicta a hic.', 101, '2019-08-29 01:21:18', '2019-08-29 01:21:18'),
(43, 'Illo voluptas cupiditate eum rerum omnis sed.', 'Voluptates perferendis odit illo soluta quae omnis. Et inventore doloremque quam cumque dolor repudiandae. Dolorum qui soluta ea incidunt.', 49, '2019-08-29 01:21:18', '2019-08-29 01:21:18'),
(44, 'Quos quos sit veritatis quasi dolore provident soluta.', 'Eligendi unde architecto repellendus facere sit. Velit architecto deserunt quisquam officiis similique. Consequatur aliquam suscipit sunt commodi.', 119, '2019-08-29 01:21:18', '2019-08-29 01:21:18'),
(45, 'Voluptas aut aut magnam quod.', 'Corporis est est cupiditate commodi facilis qui. Qui aliquid cupiditate dolor rerum. Ducimus quia perspiciatis dolor fugit fuga maxime nihil rerum.', 174, '2019-08-29 01:21:18', '2019-08-29 01:21:18'),
(46, 'Magnam impedit rerum vel quis exercitationem officia maxime.', 'Autem nulla et sint pariatur molestiae dolores. Dolor sequi soluta sed autem labore maiores in. Placeat rerum molestiae in.', 183, '2019-08-29 01:21:18', '2019-08-29 01:21:18'),
(47, 'Suscipit mollitia facere magni laborum voluptatem optio ut.', 'Ipsam et quae consequuntur molestias ut aspernatur nulla quis. Culpa ut aut et nihil quae velit labore. Deserunt qui inventore dignissimos hic dolore sint fuga.', 94, '2019-08-29 01:21:18', '2019-08-29 01:21:18'),
(48, 'Quia repudiandae modi eaque sed consequatur iusto aut.', 'Perferendis alias rerum blanditiis ex sit libero. Quidem aut maxime animi voluptatem ut laborum enim. Dolor culpa qui possimus magni distinctio.', 202, '2019-08-29 01:21:18', '2019-08-29 01:21:18'),
(49, 'Distinctio sed laborum quia ipsum maxime natus.', 'Repudiandae soluta enim corrupti vero omnis. In est itaque quas eos accusamus. Omnis enim quibusdam rerum in.', 218, '2019-08-29 01:21:18', '2019-08-29 01:21:18'),
(50, 'Dignissimos quia provident sed molestiae.', 'Est est accusamus fugiat reiciendis repellendus ea. Voluptatem ipsam consequatur sint. Dolorem aut nulla unde omnis minima.', 207, '2019-08-29 01:21:18', '2019-08-29 01:21:18');
-- --------------------------------------------------------
--
-- Table structure for table `feedbacks`
--
CREATE TABLE `feedbacks` (
`id` int(10) UNSIGNED NOT NULL,
`description` text COLLATE utf8mb4_unicode_ci NOT NULL,
`teacher_id` int(10) UNSIGNED NOT NULL,
`student_id` int(10) UNSIGNED 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 `feedbacks`
--
INSERT INTO `feedbacks` (`id`, `description`, `teacher_id`, `student_id`, `created_at`, `updated_at`) VALUES
(1, 'Hic aut enim labore dolore voluptas numquam cumque aut. Ut adipisci possimus fuga natus eum. Ut perferendis veniam id dolorum occaecati eos.', 56, 83, '2019-08-29 01:21:09', '2019-08-29 01:21:09'),
(2, 'Qui veritatis provident et dolorum eum cupiditate. Nemo doloremque iste adipisci dolores libero. Est ad sit ipsum.', 51, 62, '2019-08-29 01:21:09', '2019-08-29 01:21:09'),
(3, 'Quae impedit atque ipsam fugiat. Necessitatibus enim aut asperiores quo quia. Illo nulla aliquid tempora quia nemo.', 54, 157, '2019-08-29 01:21:09', '2019-08-29 01:21:09'),
(4, 'Est mollitia dolor culpa nesciunt rerum voluptate magnam iste. Perspiciatis nobis eius nobis aut. Error deserunt qui quia omnis est.', 37, 77, '2019-08-29 01:21:09', '2019-08-29 01:21:09'),
(5, 'Itaque qui ut iusto quam. Sint velit quo omnis. Nihil qui exercitationem at doloribus officiis unde sed.', 61, 260, '2019-08-29 01:21:09', '2019-08-29 01:21:09'),
(6, 'Aliquam minima consequuntur fugiat. Qui totam aut delectus iure. Nulla labore voluptate autem modi deserunt dolore perferendis architecto.', 61, 106, '2019-08-29 01:21:09', '2019-08-29 01:21:09'),
(7, 'Veniam aut consequatur repudiandae voluptatem. Fugiat nemo molestias autem eligendi. Nemo harum accusantium ullam eum veniam quod.', 33, 209, '2019-08-29 01:21:09', '2019-08-29 01:21:09'),
(8, 'Suscipit aperiam eos amet libero ipsum. Corporis laborum maxime laborum inventore illum vitae. Dolor ut in et earum officia sunt.', 47, 174, '2019-08-29 01:21:09', '2019-08-29 01:21:09'),
(9, 'Quis commodi magni consectetur corrupti voluptatem officiis. Assumenda doloribus vitae ut ea sunt. Tempora quae fugit sequi in minus ipsam.', 43, 241, '2019-08-29 01:21:09', '2019-08-29 01:21:09'),
(10, 'Alias voluptatibus velit voluptatum facilis optio nihil eius. Reiciendis rerum ab et ut et consequatur eius suscipit. Beatae et laudantium eum dolorem explicabo.', 47, 73, '2019-08-29 01:21:09', '2019-08-29 01:21:09'),
(11, 'Non maiores laudantium eveniet assumenda odit unde dolore. Non reprehenderit laudantium quos rerum voluptatem. Omnis asperiores nulla quo molestias quos nihil.', 42, 200, '2019-08-29 01:21:09', '2019-08-29 01:21:09'),
(12, 'Nihil sint qui quibusdam debitis. In voluptas qui incidunt rerum. Neque illum voluptas distinctio.', 60, 212, '2019-08-29 01:21:09', '2019-08-29 01:21:09'),
(13, 'Incidunt iure sit accusamus optio aut consequatur autem. Architecto odio voluptatem eum magni sit voluptate perspiciatis. Qui eveniet iure qui in dolor.', 36, 180, '2019-08-29 01:21:09', '2019-08-29 01:21:09'),
(14, 'Ipsa dicta omnis officia et consequatur aut quis. Et facere dolore repudiandae quae. Sit at itaque ex nesciunt fugiat.', 56, 157, '2019-08-29 01:21:09', '2019-08-29 01:21:09'),
(15, 'Et est placeat ab repellat nihil suscipit expedita. Saepe fugiat nam perferendis necessitatibus accusantium qui. Cumque dolore ut enim non et.', 33, 152, '2019-08-29 01:21:09', '2019-08-29 01:21:09'),
(16, 'Non provident et quia fugiat eum vel. Magnam eligendi perspiciatis voluptatem consequuntur. Aspernatur dicta sit a maiores ut.', 44, 172, '2019-08-29 01:21:09', '2019-08-29 01:21:09'),
(17, 'Eum aliquam rerum eum et aut eveniet delectus. Id quis illo adipisci voluptas sed sed minima. Amet voluptatem quaerat voluptates natus.', 43, 62, '2019-08-29 01:21:09', '2019-08-29 01:21:09'),
(18, 'Possimus veritatis veritatis ab expedita quisquam voluptate modi rerum. Nobis voluptate similique quidem cumque. Dolorem modi ad aut ut minus laboriosam.', 61, 165, '2019-08-29 01:21:09', '2019-08-29 01:21:09'),
(19, 'Voluptate vel dolorem earum exercitationem aut vel. Quis incidunt quas eveniet placeat. Maxime vitae vitae dolor non.', 45, 157, '2019-08-29 01:21:09', '2019-08-29 01:21:09'),
(20, 'Blanditiis nesciunt voluptatem voluptatum id consequuntur omnis odit. Eum rerum adipisci quia deleniti suscipit consequatur. Sed quam a ullam voluptatem.', 45, 257, '2019-08-29 01:21:09', '2019-08-29 01:21:09'),
(21, 'Omnis sed corrupti rerum officiis. Quam possimus totam est qui. Qui et nulla iste beatae non dolores soluta.', 37, 130, '2019-08-29 01:21:09', '2019-08-29 01:21:09'),
(22, 'Vero dolor quo velit esse est quibusdam. Ut voluptas officia dolorem tenetur molestias commodi officiis. Et consequuntur et autem a ut vel voluptas.', 55, 131, '2019-08-29 01:21:09', '2019-08-29 01:21:09'),
(23, 'Eos laudantium minus sapiente veritatis inventore ipsum quo. Ullam laboriosam qui blanditiis alias error quo. Vitae asperiores ea autem tempore sed quis.', 40, 127, '2019-08-29 01:21:09', '2019-08-29 01:21:09'),
(24, 'Magnam aut error odit non aut. Nihil quaerat amet rerum culpa id illo nihil. Accusamus omnis consequuntur in ea.', 57, 234, '2019-08-29 01:21:09', '2019-08-29 01:21:09'),
(25, 'Nemo nam numquam dolorem qui dolorem corrupti nihil. Voluptas et quia architecto odio enim reiciendis. Eaque animi ex nulla et.', 57, 222, '2019-08-29 01:21:09', '2019-08-29 01:21:09'),
(26, 'Quidem hic ut magni pariatur omnis fugiat. Dolorum nesciunt odio ut sed nihil dolorem magni. Laboriosam voluptas minus aut cum eum.', 46, 245, '2019-08-29 01:21:09', '2019-08-29 01:21:09'),
(27, 'Labore eos est velit repellat eius. Est libero dolor porro id vel possimus et cumque. Amet expedita inventore vero impedit.', 57, 169, '2019-08-29 01:21:09', '2019-08-29 01:21:09'),
(28, 'Quia minus odio necessitatibus vel quos. Cumque tempore fugiat dolorem ipsam est ipsam corrupti. Expedita aliquam velit officia laudantium eveniet.', 60, 168, '2019-08-29 01:21:09', '2019-08-29 01:21:09'),
(29, 'Quia minus qui fugiat quo voluptatem mollitia nobis. Harum dolore illum consequuntur autem. Ratione molestiae nesciunt impedit et quis delectus.', 33, 241, '2019-08-29 01:21:09', '2019-08-29 01:21:09'),
(30, 'Aut nulla minima tenetur quo. Minima quo voluptate culpa ipsum nostrum. Voluptatem molestiae quia in voluptatem tenetur sunt.', 46, 181, '2019-08-29 01:21:09', '2019-08-29 01:21:09'),
(31, 'Quibusdam cumque distinctio doloribus perferendis. Doloribus eum autem exercitationem est. Id eum excepturi qui libero non.', 49, 110, '2019-08-29 01:21:09', '2019-08-29 01:21:09'),
(32, 'Rerum id voluptates voluptate. Voluptates mollitia nam quo nisi culpa. Quis nihil sit magnam possimus.', 54, 247, '2019-08-29 01:21:09', '2019-08-29 01:21:09'),
(33, 'Dolore nisi veniam nostrum occaecati non ad. Voluptas culpa velit veniam deleniti libero eligendi. Aut quas impedit a at doloremque eum qui.', 35, 245, '2019-08-29 01:21:09', '2019-08-29 01:21:09'),
(34, 'Perferendis rerum ea corporis rerum placeat ex. Velit molestiae quia odio est voluptatem. A praesentium enim dignissimos doloribus consequatur qui.', 46, 196, '2019-08-29 01:21:09', '2019-08-29 01:21:09'),
(35, 'Rerum omnis totam repellendus perspiciatis. Quam veniam laborum eaque nihil nam sapiente. Perspiciatis aliquid eligendi occaecati magni animi sit est.', 61, 95, '2019-08-29 01:21:09', '2019-08-29 01:21:09'),
(36, 'Perspiciatis non expedita fuga explicabo consequatur aliquam temporibus. Et omnis labore amet necessitatibus. Et et facilis consequatur et doloremque dolores.', 51, 106, '2019-08-29 01:21:09', '2019-08-29 01:21:09'),
(37, 'Cumque temporibus enim fuga voluptas illo pariatur. Maxime nulla fuga est magni est. Velit aperiam corporis cumque omnis voluptatibus qui hic.', 51, 108, '2019-08-29 01:21:09', '2019-08-29 01:21:09'),
(38, 'Assumenda quo error sunt laborum quia delectus. Quod iusto beatae voluptatem minus. Est eum perspiciatis est omnis nihil repellendus qui voluptates.', 61, 75, '2019-08-29 01:21:09', '2019-08-29 01:21:09'),
(39, 'Est totam nobis et vel ipsum numquam fugiat. Ut quis molestias enim modi dicta officia omnis. Amet voluptatibus in laudantium.', 52, 124, '2019-08-29 01:21:09', '2019-08-29 01:21:09'),
(40, 'Vel et velit placeat distinctio laborum aut. Odio nisi ea sint officia dolores sit. Sapiente molestiae in est aspernatur quia quia.', 57, 66, '2019-08-29 01:21:09', '2019-08-29 01:21:09'),
(41, 'Nam non voluptate et est ut rerum. Molestiae ipsa earum aut est repellat quia tempora. Laboriosam libero omnis repellendus sed.', 41, 163, '2019-08-29 01:21:09', '2019-08-29 01:21:09'),
(42, 'In dolorem non neque tempore non ut est. Voluptatem voluptatem necessitatibus et delectus fugit dolores. Enim cupiditate aperiam totam perspiciatis qui doloribus nulla.', 57, 192, '2019-08-29 01:21:09', '2019-08-29 01:21:09'),
(43, 'Et dolores saepe tempora voluptatem eum aut. Tempore est sit odio mollitia accusantium fuga. Aspernatur eos enim dolorum.', 34, 161, '2019-08-29 01:21:09', '2019-08-29 01:21:09'),
(44, 'Recusandae et voluptatum est accusamus quos. Quaerat optio deleniti corporis pariatur quae recusandae rerum quos. Illum labore minus cumque corrupti rerum.', 61, 197, '2019-08-29 01:21:09', '2019-08-29 01:21:09'),
(45, 'Atque dolorem itaque aliquam totam esse. Tempore qui et ut pariatur corrupti est ut possimus. Atque eos nulla aut voluptas modi porro voluptas.', 37, 90, '2019-08-29 01:21:09', '2019-08-29 01:21:09'),
(46, 'Ut fugit sint voluptatem ipsam veniam. Adipisci quo voluptate quia corrupti nemo. Qui quia sed assumenda quae est ratione.', 43, 196, '2019-08-29 01:21:09', '2019-08-29 01:21:09'),
(47, 'Eligendi natus adipisci eaque qui amet. Qui vitae voluptas deserunt illum quidem veniam et. Voluptatem earum vel consequatur ut adipisci.', 59, 211, '2019-08-29 01:21:09', '2019-08-29 01:21:09'),
(48, 'Eligendi voluptatibus corporis ut sint. Nihil omnis eligendi sed iusto voluptatem vel voluptates. Debitis cum ipsum incidunt ut suscipit ex tempora.', 43, 208, '2019-08-29 01:21:09', '2019-08-29 01:21:09'),
(49, 'Vel similique ullam dolor ea necessitatibus nemo tempora ipsum. Expedita asperiores fugit aut omnis repudiandae odio. Mollitia reiciendis reiciendis illo id perspiciatis alias hic nam.', 59, 110, '2019-08-29 01:21:09', '2019-08-29 01:21:09'),
(50, 'Culpa dolorum sint blanditiis similique. Eos et natus quis qui dolor illum. Impedit rerum autem harum ut quod nobis.', 32, 108, '2019-08-29 01:21:09', '2019-08-29 01:21:09');
-- --------------------------------------------------------
--
-- Table structure for table `fees`
--
CREATE TABLE `fees` (
`id` int(10) UNSIGNED NOT NULL,
`fee_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`school_id` int(10) UNSIGNED NOT NULL,
`user_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;
--
-- Dumping data for table `fees`
--
INSERT INTO `fees` (`id`, `fee_name`, `school_id`, `user_id`, `created_at`, `updated_at`) VALUES
(1, '<NAME>', 1, 155, '2019-08-29 01:20:48', '2019-08-29 01:20:48'),
(2, '<NAME> Sr.', 1, 189, '2019-08-29 01:20:48', '2019-08-29 01:20:48'),
(3, 'Ms. <NAME> IV', 1, 233, '2019-08-29 01:20:48', '2019-08-29 01:20:48'),
(4, '<NAME>', 1, 201, '2019-08-29 01:20:48', '2019-08-29 01:20:48'),
(5, '<NAME>', 1, 243, '2019-08-29 01:20:48', '2019-08-29 01:20:48'),
(6, '<NAME>', 1, 247, '2019-08-29 01:20:48', '2019-08-29 01:20:48'),
(7, '<NAME>', 1, 97, '2019-08-29 01:20:48', '2019-08-29 01:20:48'),
(8, 'Prof. <NAME> MD', 1, 44, '2019-08-29 01:20:48', '2019-08-29 01:20:48'),
(9, '<NAME> DDS', 1, 149, '2019-08-29 01:20:48', '2019-08-29 01:20:48'),
(10, '<NAME> DDS', 1, 21, '2019-08-29 01:20:48', '2019-08-29 01:20:48'),
(11, '<NAME>', 1, 81, '2019-08-29 01:20:48', '2019-08-29 01:20:48'),
(12, '<NAME>', 1, 186, '2019-08-29 01:20:48', '2019-08-29 01:20:48'),
(13, '<NAME>', 1, 4, '2019-08-29 01:20:48', '2019-08-29 01:20:48'),
(14, 'Prof. <NAME> V', 1, 52, '2019-08-29 01:20:48', '2019-08-29 01:20:48'),
(15, '<NAME>', 1, 56, '2019-08-29 01:20:48', '2019-08-29 01:20:48'),
(16, 'Ms. <NAME> Jr.', 1, 85, '2019-08-29 01:20:48', '2019-08-29 01:20:48'),
(17, '<NAME>', 1, 164, '2019-08-29 01:20:48', '2019-08-29 01:20:48'),
(18, '<NAME>', 1, 170, '2019-08-29 01:20:48', '2019-08-29 01:20:48'),
(19, 'Prof. <NAME> IV', 1, 62, '2019-08-29 01:20:48', '2019-08-29 01:20:48'),
(20, '<NAME>', 1, 194, '2019-08-29 01:20:48', '2019-08-29 01:20:48'),
(21, '<NAME>', 1, 255, '2019-08-29 01:20:48', '2019-08-29 01:20:48'),
(22, '<NAME>', 1, 78, '2019-08-29 01:20:48', '2019-08-29 01:20:48'),
(23, '<NAME>', 1, 103, '2019-08-29 01:20:48', '2019-08-29 01:20:48'),
(24, '<NAME>', 1, 205, '2019-08-29 01:20:48', '2019-08-29 01:20:48'),
(25, 'Sage Sipes', 1, 178, '2019-08-29 01:20:48', '2019-08-29 01:20:48'),
(26, 'Prof. <NAME> PhD', 1, 133, '2019-08-29 01:20:48', '2019-08-29 01:20:48'),
(27, '<NAME>', 1, 141, '2019-08-29 01:20:48', '2019-08-29 01:20:48'),
(28, '<NAME>', 1, 62, '2019-08-29 01:20:48', '2019-08-29 01:20:48'),
(29, '<NAME>', 1, 261, '2019-08-29 01:20:48', '2019-08-29 01:20:48'),
(30, '<NAME>', 1, 157, '2019-08-29 01:20:48', '2019-08-29 01:20:48'),
(31, '<NAME>', 1, 221, '2019-08-29 01:20:48', '2019-08-29 01:20:48'),
(32, '<NAME>', 1, 7, '2019-08-29 01:20:48', '2019-08-29 01:20:48'),
(33, '<NAME>', 1, 87, '2019-08-29 01:20:48', '2019-08-29 01:20:48'),
(34, 'Prof. <NAME>', 1, 245, '2019-08-29 01:20:48', '2019-08-29 01:20:48'),
(35, '<NAME>', 1, 108, '2019-08-29 01:20:48', '2019-08-29 01:20:48'),
(36, '<NAME>', 1, 22, '2019-08-29 01:20:48', '2019-08-29 01:20:48'),
(37, '<NAME>', 1, 128, '2019-08-29 01:20:48', '2019-08-29 01:20:48'),
(38, '<NAME> DDS', 1, 82, '2019-08-29 01:20:48', '2019-08-29 01:20:48'),
(39, '<NAME>', 1, 58, '2019-08-29 01:20:48', '2019-08-29 01:20:48'),
(40, 'Prof. <NAME>', 1, 114, '2019-08-29 01:20:48', '2019-08-29 01:20:48'),
(41, '<NAME>', 1, 19, '2019-08-29 01:20:48', '2019-08-29 01:20:48'),
(42, '<NAME> Sr.', 1, 257, '2019-08-29 01:20:48', '2019-08-29 01:20:48'),
(43, '<NAME>', 1, 188, '2019-08-29 01:20:49', '2019-08-29 01:20:49'),
(44, 'Mr. <NAME>', 1, 32, '2019-08-29 01:20:49', '2019-08-29 01:20:49'),
(45, 'Prof. <NAME>', 1, 238, '2019-08-29 01:20:49', '2019-08-29 01:20:49'),
(46, '<NAME>', 1, 240, '2019-08-29 01:20:49', '2019-08-29 01:20:49'),
(47, '<NAME>', 1, 135, '2019-08-29 01:20:49', '2019-08-29 01:20:49'),
(48, 'Miss <NAME>', 1, 144, '2019-08-29 01:20:49', '2019-08-29 01:20:49'),
(49, '<NAME>', 1, 206, '2019-08-29 01:20:49', '2019-08-29 01:20:49'),
(50, '<NAME>', 1, 82, '2019-08-29 01:20:49', '2019-08-29 01:20:49');
-- --------------------------------------------------------
--
-- Table structure for table `forms`
--
CREATE TABLE `forms` (
`id` int(10) UNSIGNED NOT NULL,
`name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`file_path` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`school_id` int(10) UNSIGNED NOT NULL,
`user_id` int(10) UNSIGNED 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 `forms`
--
INSERT INTO `forms` (`id`, `name`, `file_path`, `school_id`, `user_id`, `created_at`, `updated_at`) VALUES
(1, '<NAME>', 'http://rohan.com/velit-et-corrupti-eligendi-omnis-ut', 2, 71, '2019-08-29 01:21:11', '2019-08-29 01:21:11'),
(2, 'Dr. <NAME> Jr.', 'http://dickens.org/totam-ad-assumenda-quas-quos', 3, 176, '2019-08-29 01:21:11', '2019-08-29 01:21:11'),
(3, 'Dr. <NAME> Jr.', 'http://www.crist.com/est-vitae-iure-quas-perspiciatis-consequuntur-fugit-molestiae-voluptatem', 4, 44, '2019-08-29 01:21:11', '2019-08-29 01:21:11'),
(4, '<NAME>', 'https://www.boyle.biz/nobis-quo-sit-eum-sint-dolores', 5, 225, '2019-08-29 01:21:11', '2019-08-29 01:21:11'),
(5, 'Miss <NAME>', 'https://www.medhurst.com/aut-voluptatem-sint-voluptatum-porro', 6, 87, '2019-08-29 01:21:12', '2019-08-29 01:21:12'),
(6, '<NAME>', 'http://www.collins.net/quas-praesentium-illo-vel-consequatur', 7, 119, '2019-08-29 01:21:12', '2019-08-29 01:21:12'),
(7, '<NAME>', 'http://mills.net/iste-animi-incidunt-exercitationem-deleniti.html', 8, 257, '2019-08-29 01:21:12', '2019-08-29 01:21:12'),
(8, '<NAME>', 'http://upton.com/magnam-ex-expedita-non-sint', 9, 235, '2019-08-29 01:21:12', '2019-08-29 01:21:12'),
(9, '<NAME>', 'http://dubuque.info/', 10, 14, '2019-08-29 01:21:12', '2019-08-29 01:21:12'),
(10, 'Dr. <NAME>', 'http://legros.com/quam-vel-ea-id-in.html', 11, 51, '2019-08-29 01:21:12', '2019-08-29 01:21:12'),
(11, '<NAME>', 'https://morar.com/perspiciatis-nisi-voluptatem-maiores-aut-debitis.html', 12, 206, '2019-08-29 01:21:12', '2019-08-29 01:21:12'),
(12, '<NAME>', 'http://senger.com/voluptates-eius-enim-consequuntur-provident-facilis.html', 13, 236, '2019-08-29 01:21:12', '2019-08-29 01:21:12'),
(13, 'Prof. <NAME> DDS', 'http://thompson.com/aliquam-saepe-quibusdam-perferendis-vel-nemo-sed', 14, 194, '2019-08-29 01:21:12', '2019-08-29 01:21:12'),
(14, '<NAME>', 'http://kassulke.com/odit-non-sed-maiores', 15, 65, '2019-08-29 01:21:12', '2019-08-29 01:21:12'),
(15, 'Prof. <NAME> PhD', 'http://larkin.org/', 16, 209, '2019-08-29 01:21:12', '2019-08-29 01:21:12'),
(16, '<NAME> Jr.', 'https://www.upton.biz/perspiciatis-ut-voluptas-mollitia-sed', 17, 19, '2019-08-29 01:21:12', '2019-08-29 01:21:12'),
(17, '<NAME>', 'http://www.koepp.biz/', 18, 21, '2019-08-29 01:21:12', '2019-08-29 01:21:12'),
(18, '<NAME>', 'http://gusikowski.com/quia-numquam-assumenda-est-modi-cupiditate', 19, 261, '2019-08-29 01:21:12', '2019-08-29 01:21:12'),
(19, 'Miss <NAME>', 'http://www.ziemann.com/', 20, 94, '2019-08-29 01:21:12', '2019-08-29 01:21:12'),
(20, '<NAME>', 'http://www.abshire.com/repudiandae-dignissimos-et-quibusdam-esse', 21, 15, '2019-08-29 01:21:12', '2019-08-29 01:21:12'),
(21, 'Miss <NAME>', 'http://hilpert.biz/similique-non-nesciunt-soluta', 22, 217, '2019-08-29 01:21:12', '2019-08-29 01:21:12'),
(22, '<NAME> MD', 'http://www.rippin.com/quia-commodi-non-veritatis-voluptates', 23, 79, '2019-08-29 01:21:12', '2019-08-29 01:21:12'),
(23, '<NAME>', 'http://www.wolf.com/', 24, 127, '2019-08-29 01:21:12', '2019-08-29 01:21:12'),
(24, '<NAME>', 'http://www.gislason.biz/', 25, 31, '2019-08-29 01:21:12', '2019-08-29 01:21:12'),
(25, '<NAME>', 'http://www.crooks.info/temporibus-in-suscipit-quos-doloribus-ea-enim-similique', 26, 99, '2019-08-29 01:21:12', '2019-08-29 01:21:12'),
(26, '<NAME>', 'http://www.mertz.net/minima-occaecati-distinctio-sit-at-dolore-cupiditate-aspernatur', 27, 119, '2019-08-29 01:21:12', '2019-08-29 01:21:12'),
(27, 'Prof. <NAME>', 'http://www.prohaska.info/quo-ut-suscipit-ipsa-voluptatem', 28, 71, '2019-08-29 01:21:12', '2019-08-29 01:21:12'),
(28, '<NAME>', 'http://www.schimmel.info/', 29, 250, '2019-08-29 01:21:12', '2019-08-29 01:21:12'),
(29, 'Prof. <NAME>', 'https://schinner.com/quibusdam-sit-placeat-nobis-sit-repudiandae-nostrum.html', 30, 82, '2019-08-29 01:21:12', '2019-08-29 01:21:12'),
(30, '<NAME>', 'http://www.anderson.biz/explicabo-harum-molestias-quisquam-tenetur-iure-sed', 31, 207, '2019-08-29 01:21:12', '2019-08-29 01:21:12'),
(31, '<NAME> DVM', 'http://feil.com/temporibus-excepturi-recusandae-voluptatem-et-quisquam-ipsa', 32, 72, '2019-08-29 01:21:12', '2019-08-29 01:21:12'),
(32, '<NAME>', 'https://www.carroll.com/iste-voluptatem-ut-dolorem-sunt', 33, 33, '2019-08-29 01:21:12', '2019-08-29 01:21:12'),
(33, '<NAME>', 'http://mueller.com/', 34, 37, '2019-08-29 01:21:12', '2019-08-29 01:21:12'),
(34, '<NAME>', 'http://hammes.com/', 35, 63, '2019-08-29 01:21:12', '2019-08-29 01:21:12'),
(35, '<NAME>', 'http://buckridge.info/laborum-odio-est-omnis-voluptatem-optio-molestiae-repellat', 36, 213, '2019-08-29 01:21:12', '2019-08-29 01:21:12'),
(36, '<NAME>', 'http://www.maggio.com/nam-nesciunt-esse-corrupti-iste', 37, 178, '2019-08-29 01:21:12', '2019-08-29 01:21:12'),
(37, '<NAME>', 'https://www.crona.com/rem-nobis-aspernatur-laborum-aut-sunt-officiis-sint', 38, 131, '2019-08-29 01:21:12', '2019-08-29 01:21:12'),
(38, '<NAME>', 'http://www.nienow.com/similique-vel-ducimus-tempore-maiores.html', 39, 61, '2019-08-29 01:21:12', '2019-08-29 01:21:12'),
(39, 'Prof. <NAME> MD', 'http://www.schroeder.com/', 40, 180, '2019-08-29 01:21:12', '2019-08-29 01:21:12'),
(40, '<NAME>', 'http://www.runolfsdottir.com/voluptate-harum-non-voluptatem-vel-at-nobis', 41, 131, '2019-08-29 01:21:12', '2019-08-29 01:21:12'),
(41, '<NAME>', 'http://www.heathcote.com/', 42, 135, '2019-08-29 01:21:12', '2019-08-29 01:21:12'),
(42, 'Dr. <NAME>', 'http://olson.org/dolores-ratione-nulla-eos-sed-quia-quia-voluptatem-explicabo.html', 43, 174, '2019-08-29 01:21:12', '2019-08-29 01:21:12'),
(43, 'Miss <NAME>', 'http://www.schowalter.info/sit-repellendus-dignissimos-quam-officiis-perferendis-deleniti', 44, 183, '2019-08-29 01:21:12', '2019-08-29 01:21:12'),
(44, 'Prof. <NAME>', 'http://nikolaus.com/consequatur-laudantium-excepturi-atque-provident-qui-reprehenderit.html', 45, 235, '2019-08-29 01:21:12', '2019-08-29 01:21:12'),
(45, '<NAME>', 'http://erdman.com/dolores-ratione-inventore-quas', 46, 246, '2019-08-29 01:21:12', '2019-08-29 01:21:12'),
(46, '<NAME>', 'http://www.kautzer.com/', 47, 230, '2019-08-29 01:21:12', '2019-08-29 01:21:12'),
(47, '<NAME>', 'https://www.lang.biz/reiciendis-ipsam-autem-quo-sunt-porro-ut-enim', 48, 135, '2019-08-29 01:21:12', '2019-08-29 01:21:12'),
(48, '<NAME>', 'http://krajcik.com/', 49, 57, '2019-08-29 01:21:12', '2019-08-29 01:21:12'),
(49, '<NAME>', 'http://lang.com/', 50, 180, '2019-08-29 01:21:12', '2019-08-29 01:21:12'),
(50, 'Prof. <NAME>', 'http://www.wisozk.com/consequuntur-voluptate-voluptatem-quae.html', 51, 235, '2019-08-29 01:21:12', '2019-08-29 01:21:12');
-- --------------------------------------------------------
--
-- Table structure for table `grades`
--
CREATE TABLE `grades` (
`id` int(10) UNSIGNED NOT NULL,
`marks` double(8,2) NOT NULL,
`gpa` double(8,2) NOT NULL,
`attendance` double(8,2) NOT NULL,
`quiz1` double(8,2) NOT NULL,
`quiz2` double(8,2) NOT NULL,
`quiz3` double(8,2) NOT NULL,
`quiz4` double(8,2) NOT NULL,
`quiz5` double(8,2) NOT NULL,
`ct1` double(8,2) NOT NULL,
`ct2` double(8,2) NOT NULL,
`ct3` double(8,2) NOT NULL,
`ct4` double(8,2) NOT NULL,
`ct5` double(8,2) NOT NULL,
`assignment1` double(8,2) NOT NULL,
`assignment2` double(8,2) NOT NULL,
`assignment3` double(8,2) NOT NULL,
`written` double(8,2) NOT NULL,
`mcq` double(8,2) NOT NULL,
`practical` double(8,2) NOT NULL,
`exam_id` int(10) UNSIGNED NOT NULL,
`student_id` int(10) UNSIGNED NOT NULL,
`teacher_id` int(10) UNSIGNED NOT NULL,
`course_id` int(10) UNSIGNED NOT NULL,
`user_id` int(10) UNSIGNED 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 `grades`
--
INSERT INTO `grades` (`id`, `marks`, `gpa`, `attendance`, `quiz1`, `quiz2`, `quiz3`, `quiz4`, `quiz5`, `ct1`, `ct2`, `ct3`, `ct4`, `ct5`, `assignment1`, `assignment2`, `assignment3`, `written`, `mcq`, `practical`, `exam_id`, `student_id`, `teacher_id`, `course_id`, `user_id`, `created_at`, `updated_at`) VALUES
(1, 36.00, 0.00, 5.00, 4.00, 19.00, 42.00, 65.00, 24.00, 48.00, 98.00, 41.00, 15.00, 40.00, 95.00, 17.00, 59.00, 25.00, 79.00, 59.00, 4, 65, 37, 1, 119, '2019-08-29 01:21:03', '2019-08-29 01:21:03'),
(2, 88.00, 3.00, 5.00, 33.00, 96.00, 3.00, 45.00, 2.00, 83.00, 57.00, 8.00, 95.00, 75.00, 71.00, 5.00, 26.00, 93.00, 81.00, 88.00, 9, 64, 34, 3, 179, '2019-08-29 01:21:03', '2019-08-29 01:21:03'),
(3, 88.00, 3.00, 5.00, 85.00, 74.00, 61.00, 75.00, 70.00, 34.00, 38.00, 59.00, 82.00, 86.00, 93.00, 89.00, 55.00, 32.00, 42.00, 53.00, 6, 68, 36, 9, 125, '2019-08-29 01:21:03', '2019-08-29 01:21:03'),
(4, 48.00, 9.00, 5.00, 36.00, 32.00, 70.00, 15.00, 92.00, 92.00, 89.00, 34.00, 68.00, 76.00, 0.00, 12.00, 71.00, 50.00, 19.00, 71.00, 5, 63, 32, 9, 154, '2019-08-29 01:21:03', '2019-08-29 01:21:03'),
(5, 25.00, 0.00, 5.00, 8.00, 86.00, 77.00, 91.00, 18.00, 10.00, 53.00, 53.00, 54.00, 52.00, 4.00, 46.00, 12.00, 1.00, 49.00, 70.00, 9, 63, 35, 1, 253, '2019-08-29 01:21:03', '2019-08-29 01:21:03'),
(6, 68.00, 6.00, 5.00, 28.00, 18.00, 62.00, 99.00, 65.00, 67.00, 89.00, 62.00, 31.00, 93.00, 61.00, 78.00, 20.00, 10.00, 64.00, 6.00, 8, 70, 36, 1, 66, '2019-08-29 01:21:03', '2019-08-29 01:21:03'),
(7, 7.00, 3.00, 5.00, 97.00, 53.00, 4.00, 23.00, 35.00, 85.00, 41.00, 2.00, 90.00, 96.00, 40.00, 54.00, 99.00, 45.00, 95.00, 97.00, 3, 64, 39, 8, 95, '2019-08-29 01:21:03', '2019-08-29 01:21:03'),
(8, 71.00, 5.00, 5.00, 22.00, 71.00, 78.00, 95.00, 56.00, 90.00, 30.00, 79.00, 26.00, 4.00, 64.00, 85.00, 29.00, 37.00, 80.00, 96.00, 1, 65, 34, 9, 1, '2019-08-29 01:21:03', '2019-08-29 01:21:03'),
(9, 11.00, 8.00, 5.00, 83.00, 56.00, 88.00, 3.00, 23.00, 65.00, 97.00, 89.00, 42.00, 7.00, 3.00, 60.00, 10.00, 46.00, 19.00, 0.00, 9, 67, 32, 10, 18, '2019-08-29 01:21:03', '2019-08-29 01:21:03'),
(10, 43.00, 8.00, 5.00, 76.00, 1.00, 62.00, 92.00, 52.00, 15.00, 89.00, 80.00, 70.00, 7.00, 98.00, 81.00, 55.00, 30.00, 75.00, 19.00, 8, 62, 33, 4, 4, '2019-08-29 01:21:03', '2019-08-29 01:21:03'),
(11, 16.00, 9.00, 5.00, 12.00, 23.00, 95.00, 19.00, 54.00, 5.00, 41.00, 72.00, 89.00, 4.00, 63.00, 3.00, 27.00, 50.00, 83.00, 32.00, 7, 71, 37, 4, 127, '2019-08-29 01:21:03', '2019-08-29 01:21:03'),
(12, 59.00, 7.00, 5.00, 91.00, 25.00, 77.00, 72.00, 95.00, 57.00, 29.00, 36.00, 27.00, 61.00, 33.00, 69.00, 10.00, 18.00, 67.00, 13.00, 1, 66, 34, 8, 227, '2019-08-29 01:21:03', '2019-08-29 01:21:03'),
(13, 74.00, 6.00, 5.00, 81.00, 55.00, 15.00, 41.00, 88.00, 20.00, 93.00, 43.00, 10.00, 28.00, 65.00, 22.00, 78.00, 56.00, 2.00, 99.00, 5, 65, 34, 1, 155, '2019-08-29 01:21:03', '2019-08-29 01:21:03'),
(14, 57.00, 4.00, 5.00, 33.00, 89.00, 35.00, 14.00, 44.00, 64.00, 97.00, 47.00, 67.00, 71.00, 48.00, 23.00, 67.00, 42.00, 13.00, 27.00, 3, 62, 35, 1, 20, '2019-08-29 01:21:03', '2019-08-29 01:21:03'),
(15, 63.00, 0.00, 5.00, 30.00, 72.00, 91.00, 8.00, 12.00, 75.00, 36.00, 83.00, 0.00, 17.00, 7.00, 70.00, 80.00, 45.00, 46.00, 66.00, 9, 68, 39, 7, 165, '2019-08-29 01:21:03', '2019-08-29 01:21:03'),
(16, 33.00, 0.00, 5.00, 25.00, 44.00, 25.00, 88.00, 82.00, 21.00, 25.00, 24.00, 54.00, 1.00, 17.00, 40.00, 52.00, 64.00, 39.00, 73.00, 8, 67, 40, 10, 215, '2019-08-29 01:21:03', '2019-08-29 01:21:03'),
(17, 98.00, 8.00, 5.00, 59.00, 62.00, 73.00, 4.00, 95.00, 72.00, 50.00, 49.00, 37.00, 10.00, 41.00, 8.00, 57.00, 28.00, 31.00, 87.00, 2, 68, 38, 7, 14, '2019-08-29 01:21:03', '2019-08-29 01:21:03'),
(18, 39.00, 1.00, 5.00, 41.00, 64.00, 98.00, 9.00, 9.00, 90.00, 22.00, 99.00, 91.00, 0.00, 71.00, 79.00, 2.00, 97.00, 32.00, 65.00, 5, 68, 34, 3, 217, '2019-08-29 01:21:03', '2019-08-29 01:21:03'),
(19, 24.00, 5.00, 5.00, 67.00, 48.00, 87.00, 46.00, 53.00, 62.00, 29.00, 66.00, 38.00, 78.00, 49.00, 43.00, 0.00, 34.00, 95.00, 37.00, 8, 65, 32, 4, 175, '2019-08-29 01:21:03', '2019-08-29 01:21:03'),
(20, 36.00, 5.00, 5.00, 8.00, 87.00, 5.00, 11.00, 97.00, 67.00, 81.00, 1.00, 27.00, 10.00, 90.00, 14.00, 7.00, 88.00, 37.00, 48.00, 5, 71, 39, 9, 236, '2019-08-29 01:21:03', '2019-08-29 01:21:03'),
(21, 40.00, 6.00, 5.00, 60.00, 88.00, 37.00, 77.00, 5.00, 81.00, 20.00, 16.00, 86.00, 99.00, 65.00, 52.00, 21.00, 68.00, 82.00, 51.00, 8, 69, 37, 9, 97, '2019-08-29 01:21:03', '2019-08-29 01:21:03'),
(22, 83.00, 3.00, 5.00, 32.00, 58.00, 64.00, 92.00, 31.00, 66.00, 66.00, 67.00, 85.00, 78.00, 6.00, 6.00, 96.00, 81.00, 59.00, 80.00, 8, 68, 33, 8, 170, '2019-08-29 01:21:03', '2019-08-29 01:21:03'),
(23, 37.00, 0.00, 5.00, 48.00, 80.00, 0.00, 88.00, 0.00, 19.00, 19.00, 94.00, 85.00, 5.00, 9.00, 2.00, 7.00, 27.00, 30.00, 67.00, 6, 63, 39, 2, 155, '2019-08-29 01:21:03', '2019-08-29 01:21:03'),
(24, 41.00, 4.00, 5.00, 42.00, 84.00, 77.00, 19.00, 60.00, 60.00, 72.00, 53.00, 56.00, 67.00, 74.00, 88.00, 10.00, 18.00, 17.00, 47.00, 8, 71, 41, 1, 175, '2019-08-29 01:21:03', '2019-08-29 01:21:03'),
(25, 27.00, 6.00, 5.00, 84.00, 1.00, 93.00, 52.00, 46.00, 60.00, 57.00, 30.00, 32.00, 58.00, 67.00, 87.00, 92.00, 65.00, 71.00, 4.00, 6, 68, 37, 2, 167, '2019-08-29 01:21:03', '2019-08-29 01:21:03'),
(26, 0.00, 7.00, 5.00, 56.00, 18.00, 50.00, 60.00, 95.00, 55.00, 3.00, 25.00, 48.00, 94.00, 44.00, 77.00, 63.00, 66.00, 47.00, 19.00, 6, 67, 34, 5, 89, '2019-08-29 01:21:03', '2019-08-29 01:21:03'),
(27, 78.00, 8.00, 5.00, 71.00, 22.00, 27.00, 36.00, 59.00, 29.00, 40.00, 34.00, 86.00, 28.00, 68.00, 62.00, 60.00, 32.00, 50.00, 9.00, 7, 69, 36, 10, 117, '2019-08-29 01:21:03', '2019-08-29 01:21:03'),
(28, 16.00, 7.00, 5.00, 49.00, 41.00, 31.00, 97.00, 72.00, 47.00, 40.00, 65.00, 92.00, 77.00, 12.00, 65.00, 77.00, 4.00, 20.00, 32.00, 2, 63, 36, 6, 2, '2019-08-29 01:21:03', '2019-08-29 01:21:03'),
(29, 97.00, 9.00, 5.00, 27.00, 88.00, 88.00, 7.00, 98.00, 72.00, 13.00, 10.00, 48.00, 70.00, 43.00, 2.00, 39.00, 53.00, 91.00, 17.00, 9, 63, 41, 6, 117, '2019-08-29 01:21:03', '2019-08-29 01:21:03'),
(30, 47.00, 2.00, 5.00, 23.00, 50.00, 92.00, 32.00, 40.00, 40.00, 50.00, 96.00, 57.00, 77.00, 31.00, 35.00, 17.00, 43.00, 38.00, 69.00, 10, 62, 36, 7, 94, '2019-08-29 01:21:03', '2019-08-29 01:21:03'),
(31, 62.00, 6.00, 5.00, 2.00, 14.00, 58.00, 30.00, 86.00, 31.00, 9.00, 58.00, 51.00, 36.00, 41.00, 44.00, 21.00, 45.00, 15.00, 94.00, 7, 71, 35, 6, 91, '2019-08-29 01:21:03', '2019-08-29 01:21:03'),
(32, 85.00, 0.00, 5.00, 54.00, 7.00, 49.00, 85.00, 98.00, 5.00, 76.00, 81.00, 96.00, 94.00, 21.00, 2.00, 26.00, 36.00, 83.00, 89.00, 6, 71, 41, 2, 43, '2019-08-29 01:21:03', '2019-08-29 01:21:03'),
(33, 60.00, 6.00, 5.00, 37.00, 73.00, 11.00, 24.00, 34.00, 84.00, 29.00, 43.00, 85.00, 97.00, 74.00, 70.00, 99.00, 13.00, 18.00, 94.00, 9, 66, 38, 9, 94, '2019-08-29 01:21:03', '2019-08-29 01:21:03'),
(34, 62.00, 6.00, 5.00, 19.00, 80.00, 58.00, 5.00, 66.00, 57.00, 39.00, 87.00, 16.00, 10.00, 87.00, 45.00, 4.00, 88.00, 94.00, 88.00, 7, 63, 34, 1, 244, '2019-08-29 01:21:03', '2019-08-29 01:21:03'),
(35, 32.00, 2.00, 5.00, 40.00, 88.00, 37.00, 62.00, 11.00, 49.00, 8.00, 57.00, 0.00, 17.00, 94.00, 92.00, 46.00, 33.00, 98.00, 33.00, 7, 62, 37, 7, 32, '2019-08-29 01:21:03', '2019-08-29 01:21:03'),
(36, 53.00, 6.00, 5.00, 47.00, 20.00, 1.00, 87.00, 36.00, 89.00, 81.00, 41.00, 11.00, 4.00, 88.00, 85.00, 84.00, 16.00, 93.00, 87.00, 8, 66, 32, 5, 75, '2019-08-29 01:21:03', '2019-08-29 01:21:03'),
(37, 55.00, 9.00, 5.00, 54.00, 60.00, 99.00, 84.00, 82.00, 42.00, 16.00, 8.00, 64.00, 7.00, 50.00, 78.00, 22.00, 79.00, 3.00, 85.00, 2, 66, 35, 3, 181, '2019-08-29 01:21:03', '2019-08-29 01:21:03'),
(38, 16.00, 9.00, 5.00, 97.00, 53.00, 86.00, 14.00, 79.00, 62.00, 50.00, 86.00, 81.00, 69.00, 24.00, 26.00, 21.00, 0.00, 26.00, 20.00, 3, 63, 37, 4, 50, '2019-08-29 01:21:03', '2019-08-29 01:21:03'),
(39, 83.00, 0.00, 5.00, 46.00, 65.00, 76.00, 27.00, 78.00, 26.00, 61.00, 96.00, 30.00, 67.00, 67.00, 31.00, 46.00, 10.00, 3.00, 6.00, 8, 66, 39, 10, 118, '2019-08-29 01:21:03', '2019-08-29 01:21:03'),
(40, 64.00, 6.00, 5.00, 16.00, 92.00, 96.00, 32.00, 57.00, 67.00, 17.00, 39.00, 23.00, 52.00, 93.00, 40.00, 48.00, 26.00, 31.00, 1.00, 8, 70, 34, 9, 215, '2019-08-29 01:21:03', '2019-08-29 01:21:03'),
(41, 1.00, 2.00, 5.00, 84.00, 38.00, 30.00, 51.00, 33.00, 24.00, 74.00, 1.00, 81.00, 89.00, 93.00, 19.00, 31.00, 87.00, 87.00, 38.00, 5, 63, 34, 10, 115, '2019-08-29 01:21:03', '2019-08-29 01:21:03'),
(42, 47.00, 4.00, 5.00, 6.00, 89.00, 2.00, 41.00, 61.00, 29.00, 28.00, 12.00, 93.00, 45.00, 52.00, 69.00, 5.00, 36.00, 75.00, 41.00, 3, 66, 36, 3, 102, '2019-08-29 01:21:03', '2019-08-29 01:21:03'),
(43, 51.00, 2.00, 5.00, 12.00, 60.00, 49.00, 32.00, 35.00, 11.00, 72.00, 68.00, 79.00, 28.00, 40.00, 5.00, 58.00, 91.00, 79.00, 13.00, 9, 64, 40, 8, 189, '2019-08-29 01:21:03', '2019-08-29 01:21:03'),
(44, 88.00, 3.00, 5.00, 52.00, 99.00, 44.00, 4.00, 71.00, 22.00, 36.00, 24.00, 72.00, 83.00, 84.00, 54.00, 98.00, 92.00, 4.00, 34.00, 5, 70, 35, 10, 36, '2019-08-29 01:21:03', '2019-08-29 01:21:03'),
(45, 21.00, 6.00, 5.00, 57.00, 3.00, 93.00, 45.00, 46.00, 22.00, 47.00, 32.00, 52.00, 2.00, 15.00, 28.00, 78.00, 22.00, 61.00, 74.00, 4, 70, 41, 9, 123, '2019-08-29 01:21:04', '2019-08-29 01:21:04'),
(46, 79.00, 6.00, 5.00, 85.00, 17.00, 36.00, 84.00, 17.00, 44.00, 20.00, 5.00, 5.00, 88.00, 41.00, 1.00, 27.00, 11.00, 78.00, 7.00, 8, 65, 37, 4, 47, '2019-08-29 01:21:04', '2019-08-29 01:21:04'),
(47, 98.00, 6.00, 5.00, 47.00, 42.00, 28.00, 90.00, 62.00, 43.00, 38.00, 21.00, 30.00, 64.00, 35.00, 19.00, 6.00, 17.00, 16.00, 18.00, 6, 65, 32, 1, 123, '2019-08-29 01:21:04', '2019-08-29 01:21:04'),
(48, 90.00, 4.00, 5.00, 14.00, 65.00, 84.00, 48.00, 69.00, 49.00, 29.00, 67.00, 72.00, 83.00, 90.00, 4.00, 34.00, 9.00, 92.00, 80.00, 4, 62, 33, 1, 254, '2019-08-29 01:21:04', '2019-08-29 01:21:04'),
(49, 13.00, 0.00, 5.00, 81.00, 41.00, 27.00, 55.00, 63.00, 59.00, 94.00, 54.00, 16.00, 93.00, 62.00, 71.00, 5.00, 15.00, 88.00, 75.00, 1, 69, 36, 10, 254, '2019-08-29 01:21:04', '2019-08-29 01:21:04'),
(50, 60.00, 8.00, 5.00, 43.00, 71.00, 29.00, 44.00, 13.00, 76.00, 6.00, 13.00, 31.00, 54.00, 95.00, 15.00, 95.00, 47.00, 16.00, 51.00, 4, 69, 39, 8, 88, '2019-08-29 01:21:04', '2019-08-29 01:21:04'),
(51, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 10, 67, 40, 22, 0, '2019-08-29 05:27:39', '2019-08-29 05:27:39'),
(52, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 10, 91, 40, 22, 0, '2019-08-29 05:27:39', '2019-08-29 05:27:39'),
(53, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 10, 97, 40, 22, 0, '2019-08-29 05:27:39', '2019-08-29 05:27:39'),
(54, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 10, 110, 40, 22, 0, '2019-08-29 05:27:39', '2019-08-29 05:27:39'),
(55, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 10, 116, 40, 22, 0, '2019-08-29 05:27:39', '2019-08-29 05:27:39'),
(56, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 10, 222, 40, 22, 0, '2019-08-29 05:27:39', '2019-08-29 05:27:39'),
(57, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 10, 244, 40, 22, 0, '2019-08-29 05:27:39', '2019-08-29 05:27:39');
-- --------------------------------------------------------
--
-- Table structure for table `grade_systems`
--
CREATE TABLE `grade_systems` (
`id` int(10) UNSIGNED NOT NULL,
`grade_system_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`grade` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`point` double(8,2) NOT NULL,
`from_mark` int(11) NOT NULL,
`to_mark` int(11) NOT NULL,
`school_id` int(11) NOT NULL,
`user_id` int(10) UNSIGNED 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 `grade_systems`
--
INSERT INTO `grade_systems` (`id`, `grade_system_name`, `grade`, `point`, `from_mark`, `to_mark`, `school_id`, `user_id`, `created_at`, `updated_at`) VALUES
(1, 'Grade System 1', 'A', 3.00, 70, 80, 1, 152, '2019-08-29 01:20:56', '2019-08-29 01:20:56'),
(2, 'Grade System 1', 'C+', 2.50, 30, 100, 1, 136, '2019-08-29 01:20:56', '2019-08-29 01:20:56');
-- --------------------------------------------------------
--
-- Table structure for table `homeworks`
--
CREATE TABLE `homeworks` (
`id` int(10) UNSIGNED NOT NULL,
`file_path` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`description` text COLLATE utf8mb4_unicode_ci NOT NULL,
`teacher_id` int(10) UNSIGNED NOT NULL,
`section_id` int(10) UNSIGNED 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 `homeworks`
--
INSERT INTO `homeworks` (`id`, `file_path`, `description`, `teacher_id`, `section_id`, `created_at`, `updated_at`) VALUES
(1, 'http://www.champlin.info/', 'Dolor voluptate quaerat amet qui corrupti molestias in. Hic ut nostrum minus deleniti. Molestiae provident omnis quae repellendus sequi non.', 46, 10, '2019-08-29 01:20:49', '2019-08-29 01:20:49'),
(2, 'http://www.hickle.biz/', 'Nihil dolore est labore. Aut expedita voluptas quis beatae. Quasi earum magni aspernatur.', 35, 17, '2019-08-29 01:20:49', '2019-08-29 01:20:49'),
(3, 'http://www.kshlerin.info/maiores-omnis-sapiente-non-expedita.html', 'Illo ducimus molestias consectetur aut. A maiores omnis exercitationem fuga illum. Labore sed eveniet illum et ullam blanditiis.', 57, 20, '2019-08-29 01:20:49', '2019-08-29 01:20:49'),
(4, 'http://pagac.com/est-animi-tempore-eos-quasi-cum-omnis-odit', 'Molestiae consequatur corrupti nobis sed est nobis sed quia. Minima tenetur qui voluptatum exercitationem itaque aliquid quia magnam. Sunt quisquam dolore et molestias saepe voluptatum.', 45, 18, '2019-08-29 01:20:49', '2019-08-29 01:20:49'),
(5, 'http://hettinger.com/ab-corporis-recusandae-vel-perspiciatis-sint', 'Voluptas ipsum est ex voluptatem non odit. Tenetur quis officia debitis expedita. Sed est aliquam sed et magni molestias id.', 53, 15, '2019-08-29 01:20:49', '2019-08-29 01:20:49'),
(6, 'http://www.willms.com/', 'Quos itaque itaque non non eveniet aut. Provident cumque nobis sunt voluptatem suscipit in. Consequatur amet placeat atque impedit quo.', 49, 12, '2019-08-29 01:20:49', '2019-08-29 01:20:49'),
(7, 'http://www.huels.com/sint-soluta-aut-deserunt-voluptas', 'Et enim suscipit doloribus quibusdam omnis ratione accusamus. Sint magnam cumque velit fugit necessitatibus ratione sit. Repellendus et officia dolorem.', 43, 16, '2019-08-29 01:20:49', '2019-08-29 01:20:49'),
(8, 'https://www.waters.biz/aliquid-eos-doloribus-voluptatum', 'Tempore voluptatem illo qui sit est. Molestiae autem dolore qui provident culpa. Nobis dignissimos suscipit qui sed eaque beatae sed.', 43, 4, '2019-08-29 01:20:49', '2019-08-29 01:20:49'),
(9, 'http://fay.org/voluptas-architecto-maxime-voluptatibus-quos-consequatur-laborum', 'Voluptas quod aut ut sed doloremque incidunt. Tenetur similique nihil blanditiis neque. Dolores repellat sequi accusantium nobis.', 43, 9, '2019-08-29 01:20:49', '2019-08-29 01:20:49'),
(10, 'http://cruickshank.com/', 'Quidem esse sit aspernatur asperiores minus. Quibusdam deleniti officiis necessitatibus id iusto. Repellat doloribus voluptatem iure ipsum tenetur.', 46, 1, '2019-08-29 01:20:49', '2019-08-29 01:20:49'),
(11, 'http://www.kirlin.com/et-aut-voluptatem-eius-dolor-porro-aut-incidunt-qui', 'Veniam tempore illo qui alias atque aperiam. Possimus fugit nam vel facilis itaque. Ut rem ut maiores tempora expedita sunt asperiores.', 59, 1, '2019-08-29 01:20:49', '2019-08-29 01:20:49'),
(12, 'https://wintheiser.info/consectetur-id-ut-cupiditate-voluptas-et-officiis-dolore.html', 'Et quasi quia aliquam eius illum. Quas sit sint aut perspiciatis tenetur ab similique. Ex qui perspiciatis saepe ut.', 32, 9, '2019-08-29 01:20:49', '2019-08-29 01:20:49'),
(13, 'http://www.mayer.biz/aut-ut-fuga-tempore-et-tempora', 'Voluptatem maiores qui quia earum. Id aut autem dignissimos repellat exercitationem. Voluptatum repudiandae eos quae et et autem voluptatem.', 57, 11, '2019-08-29 01:20:49', '2019-08-29 01:20:49'),
(14, 'http://www.wunsch.com/illo-at-saepe-ducimus-ut-aperiam-dolores-est.html', 'Unde qui dolorem est sunt voluptas qui quia. Et repellat et et explicabo sed. Totam facilis harum tempore aut est perferendis.', 39, 16, '2019-08-29 01:20:49', '2019-08-29 01:20:49'),
(15, 'http://www.dach.com/', 'Cum ut repellat et cumque. Molestiae ea consequatur molestiae et reiciendis nostrum. Nisi exercitationem et nihil sint harum ipsum eaque quam.', 37, 13, '2019-08-29 01:20:49', '2019-08-29 01:20:49'),
(16, 'http://hills.com/', 'Aut consectetur at nemo harum. Temporibus rem pariatur quod dolores quae est totam corporis. Aperiam tempore exercitationem maiores qui minima.', 36, 6, '2019-08-29 01:20:49', '2019-08-29 01:20:49'),
(17, 'http://www.armstrong.com/', 'Quaerat iure laudantium qui explicabo. Sed doloremque molestias ducimus quis blanditiis accusantium. Ex aliquam aut nihil ipsam in sed rerum.', 54, 19, '2019-08-29 01:20:49', '2019-08-29 01:20:49'),
(18, 'http://boyle.com/unde-praesentium-molestiae-quis.html', 'Reiciendis sit consectetur repellat nulla est hic. Quia laboriosam doloremque quae nesciunt tempore. Quaerat eos nam necessitatibus repudiandae illo omnis sunt eius.', 35, 11, '2019-08-29 01:20:49', '2019-08-29 01:20:49'),
(19, 'http://langworth.com/ullam-debitis-voluptas-voluptas.html', 'Et vero sint dolore ipsum modi quo ut. Eum quia nobis officia eaque maxime. Vitae dolorem sit magnam quod voluptatem.', 54, 18, '2019-08-29 01:20:49', '2019-08-29 01:20:49'),
(20, 'http://www.schowalter.com/necessitatibus-deserunt-reiciendis-et-distinctio.html', 'Est sed beatae aut in. Praesentium dolores repellat rerum aut. Odit sint dolores corrupti rerum.', 54, 3, '2019-08-29 01:20:49', '2019-08-29 01:20:49'),
(21, 'http://www.white.com/ut-modi-officiis-sapiente-et', 'Architecto eos nostrum consequatur qui voluptas id itaque. Architecto voluptatem possimus facilis id quia qui. Commodi facere eligendi voluptatem veritatis placeat eius.', 42, 16, '2019-08-29 01:20:49', '2019-08-29 01:20:49'),
(22, 'http://hane.com/qui-deserunt-voluptatum-et-molestiae-minima', 'Suscipit dolorem ab assumenda quia rerum dolor unde. Laborum ipsum in repudiandae occaecati aut et et. Architecto ut esse distinctio accusamus.', 38, 1, '2019-08-29 01:20:49', '2019-08-29 01:20:49'),
(23, 'https://kirlin.biz/laborum-illum-qui-omnis-dolorem.html', 'Dolorum iste quae sed cum. Doloremque nihil omnis cum est ipsam voluptates enim. Dolorum vel et quia corrupti eos incidunt.', 41, 4, '2019-08-29 01:20:49', '2019-08-29 01:20:49'),
(24, 'http://bins.org/', 'A consequatur voluptatem voluptatibus qui facilis. Praesentium voluptatibus sint rem pariatur. Quo cupiditate architecto laudantium esse distinctio.', 41, 7, '2019-08-29 01:20:49', '2019-08-29 01:20:49'),
(25, 'http://pagac.org/', 'Sit sit ipsa reprehenderit. Voluptates dolor necessitatibus distinctio adipisci ab reprehenderit quaerat. Officiis eaque natus suscipit voluptatem quasi alias.', 58, 4, '2019-08-29 01:20:49', '2019-08-29 01:20:49'),
(26, 'https://www.spinka.com/eius-et-ut-fugiat-doloremque-nisi', 'Quo aut nisi et dolores quisquam quas. Aperiam corrupti est quod pariatur est nulla enim vero. Quas natus temporibus vero culpa enim.', 53, 14, '2019-08-29 01:20:49', '2019-08-29 01:20:49'),
(27, 'http://www.prohaska.com/ad-beatae-praesentium-tempora-omnis', 'Illo et voluptas ut et qui sit esse. Perferendis quidem aut quia est voluptas tenetur. Aliquid quia iusto illum dolores.', 44, 7, '2019-08-29 01:20:49', '2019-08-29 01:20:49'),
(28, 'http://williamson.com/', 'Error quis iste sunt fugit. Non voluptates nobis qui quas voluptatem ullam culpa. Error iste eveniet porro expedita.', 60, 18, '2019-08-29 01:20:49', '2019-08-29 01:20:49'),
(29, 'http://marvin.biz/quis-enim-quisquam-id-ducimus-qui-velit-tempora', 'Dolores eveniet esse autem optio. Quisquam quia aperiam et ullam in. Soluta debitis eum amet quibusdam aliquam.', 45, 1, '2019-08-29 01:20:49', '2019-08-29 01:20:49'),
(30, 'http://leffler.org/numquam-saepe-natus-exercitationem-voluptas-aliquam-placeat', 'Quo doloribus repellat accusamus non. Id aut esse rerum deleniti doloribus. Sint modi est sequi veniam.', 60, 5, '2019-08-29 01:20:49', '2019-08-29 01:20:49'),
(31, 'http://www.kuhlman.org/dolorem-placeat-est-atque-quod-doloremque-et-commodi-id', 'Et ut sunt aperiam dolorum facere. Libero nihil velit nihil amet reiciendis. Aliquam adipisci necessitatibus ratione earum aspernatur sunt illum.', 39, 16, '2019-08-29 01:20:49', '2019-08-29 01:20:49'),
(32, 'http://stehr.com/', 'Rem non voluptatem harum perferendis minima non praesentium. Est iste non earum voluptatem sed est. Cupiditate perferendis sit laudantium molestias dolores nesciunt corrupti.', 42, 15, '2019-08-29 01:20:49', '2019-08-29 01:20:49'),
(33, 'http://www.brakus.com/', 'In qui provident et delectus quaerat. Quam exercitationem consequatur velit voluptatibus. Quaerat consequatur ut perspiciatis doloremque quia molestias.', 50, 16, '2019-08-29 01:20:49', '2019-08-29 01:20:49'),
(34, 'https://gibson.com/quia-sequi-natus-qui-ea-dolore-molestiae-doloremque.html', 'Et quia dicta tenetur similique officiis fugit. Vel porro nemo cupiditate eligendi. Eveniet placeat accusantium dolor autem minus tempora.', 52, 20, '2019-08-29 01:20:49', '2019-08-29 01:20:49'),
(35, 'http://www.upton.com/illum-voluptas-delectus-voluptatem-laudantium-sunt-rerum', 'Accusamus quod exercitationem omnis veritatis ut quis. Quod qui nemo sit sed. Ipsum aut corporis neque velit labore voluptatem.', 39, 7, '2019-08-29 01:20:49', '2019-08-29 01:20:49'),
(36, 'http://leannon.info/', 'Ducimus aut ipsam hic itaque qui. Sit tempore perferendis aperiam magnam. Facere optio commodi consectetur aut dolores delectus.', 52, 20, '2019-08-29 01:20:49', '2019-08-29 01:20:49'),
(37, 'https://bartoletti.com/nesciunt-eum-accusantium-impedit-eos-earum.html', 'Dolor assumenda quos eos et. Ut quas temporibus laboriosam consequatur. Ad necessitatibus non quidem quia.', 41, 16, '2019-08-29 01:20:49', '2019-08-29 01:20:49'),
(38, 'https://okuneva.biz/laudantium-fuga-nemo-dolorem-est-sed-dolorem-et.html', 'Unde ad aut eos. Facilis nulla perferendis illum iure. Animi quo rerum magni occaecati voluptas soluta tenetur.', 61, 16, '2019-08-29 01:20:49', '2019-08-29 01:20:49'),
(39, 'http://www.torphy.com/voluptate-cum-tempore-aut-ipsum-sequi', 'Pariatur et ut qui. Minus eum repellendus eligendi. Eos officia voluptas maxime praesentium natus et sunt.', 61, 13, '2019-08-29 01:20:49', '2019-08-29 01:20:49'),
(40, 'http://mueller.com/atque-natus-quia-molestiae-ipsam-dolore-dolore', 'A reprehenderit impedit maiores incidunt. Nihil ducimus non unde voluptatem. Quo enim omnis maiores vitae.', 60, 2, '2019-08-29 01:20:49', '2019-08-29 01:20:49'),
(41, 'http://www.jacobs.org/est-nulla-quis-dolorum', 'Aut animi fuga vel ut eos labore. Animi est perferendis iusto sunt sed. Excepturi voluptas laborum commodi cupiditate.', 36, 15, '2019-08-29 01:20:49', '2019-08-29 01:20:49'),
(42, 'http://www.quitzon.com/', 'Reiciendis veritatis id non maiores commodi beatae at. Pariatur sed iusto deserunt iste eos consequuntur qui. Amet ex aut libero fugiat.', 44, 17, '2019-08-29 01:20:49', '2019-08-29 01:20:49'),
(43, 'http://wuckert.com/sit-velit-ducimus-quasi-ea', 'Nostrum aut vitae consequatur nihil eligendi sit in. Nam magni laborum et nam voluptas tempora autem quo. Dolorem atque quibusdam consectetur et quia amet reiciendis.', 59, 15, '2019-08-29 01:20:49', '2019-08-29 01:20:49'),
(44, 'https://koelpin.com/enim-quaerat-aut-omnis-nesciunt-deserunt.html', 'Qui ea non explicabo ut explicabo at quia. Similique dolor libero soluta fugit dolore et dolorum. Sit doloremque fugit sed consequatur aperiam enim soluta.', 55, 13, '2019-08-29 01:20:49', '2019-08-29 01:20:49'),
(45, 'http://www.lang.com/', 'Voluptatem et voluptas et quibusdam natus amet excepturi. Quibusdam repellat architecto est dolores consequatur eveniet. Nihil quae veniam magni inventore cupiditate sunt sed.', 51, 7, '2019-08-29 01:20:49', '2019-08-29 01:20:49'),
(46, 'http://www.streich.org/blanditiis-odio-dignissimos-dolores-neque-voluptatem', 'Nam ea voluptas quia eveniet. Delectus dolores fuga molestias est quasi sed. Eius nostrum enim ex delectus suscipit.', 58, 8, '2019-08-29 01:20:49', '2019-08-29 01:20:49'),
(47, 'http://koepp.org/possimus-aperiam-voluptas-quasi-laboriosam-inventore', 'Quae autem qui dolores reprehenderit dolores. Ratione possimus autem quo minima porro officia. Est repudiandae aut est eos modi iste odit non.', 48, 16, '2019-08-29 01:20:49', '2019-08-29 01:20:49'),
(48, 'http://haag.com/repellendus-sit-excepturi-provident-mollitia-cum-vel-ad-quia', 'Debitis odio tempora quasi deleniti. Eveniet culpa laudantium rem distinctio optio commodi omnis. Assumenda eos sunt voluptatem ut consequatur.', 57, 5, '2019-08-29 01:20:49', '2019-08-29 01:20:49'),
(49, 'https://kunze.com/nemo-fugit-et-voluptatem-non-voluptates-ab-molestiae-asperiores.html', 'Dolor quasi et in suscipit optio non quasi. Ut itaque unde ipsum labore. Itaque officiis non quo id ad quibusdam nam.', 50, 5, '2019-08-29 01:20:49', '2019-08-29 01:20:49'),
(50, 'http://www.wisoky.biz/dolor-atque-distinctio-quia', 'Vel eveniet sunt quas earum eos ad. Voluptatem reiciendis commodi iure nulla non amet. Minus perferendis et labore suscipit.', 35, 16, '2019-08-29 01:20:49', '2019-08-29 01:20:49');
-- --------------------------------------------------------
--
-- Table structure for table `issued_books`
--
CREATE TABLE `issued_books` (
`id` int(10) UNSIGNED NOT NULL,
`student_code` int(11) NOT NULL,
`book_id` int(10) UNSIGNED NOT NULL,
`quantity` int(11) NOT NULL,
`school_id` int(10) UNSIGNED NOT NULL,
`issue_date` date NOT NULL,
`return_date` date NOT NULL,
`fine` decimal(8,2) NOT NULL,
`borrowed` tinyint(4) NOT NULL,
`user_id` int(10) UNSIGNED 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 `issued_books`
--
INSERT INTO `issued_books` (`id`, `student_code`, `book_id`, `quantity`, `school_id`, `issue_date`, `return_date`, `fine`, `borrowed`, `user_id`, `created_at`, `updated_at`) VALUES
(1, 3946000, 32, 5, 35, '1992-01-08', '1980-05-04', '8.00', 0, 201, '2019-08-29 01:21:18', '2019-08-29 01:21:18'),
(2, 3874231, 14, 8, 15, '1994-01-30', '1987-03-19', '8.00', 1, 168, '2019-08-29 01:21:18', '2019-08-29 01:21:18'),
(3, 339882, 2, 13, 29, '1994-05-27', '1979-12-21', '13.00', 1, 244, '2019-08-29 01:21:18', '2019-08-29 01:21:18'),
(4, 9411862, 21, 34, 23, '1975-12-16', '1997-05-11', '13.00', 0, 236, '2019-08-29 01:21:18', '2019-08-29 01:21:18'),
(5, 3635394, 1, 8, 36, '1975-07-21', '1971-06-03', '8.00', 1, 203, '2019-08-29 01:21:18', '2019-08-29 01:21:18');
-- --------------------------------------------------------
--
-- Table structure for table `messages`
--
CREATE TABLE `messages` (
`id` int(10) UNSIGNED NOT NULL,
`phone_number` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`message` text COLLATE utf8mb4_unicode_ci NOT NULL,
`school_id` int(10) UNSIGNED NOT NULL,
`user_id` int(10) UNSIGNED 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 `messages`
--
INSERT INTO `messages` (`id`, `phone_number`, `email`, `message`, `school_id`, `user_id`, `created_at`, `updated_at`) VALUES
(1, '4635505', '<EMAIL>', 'Quasi et est sit ut asperiores. Et quia est inventore sequi quod. Sed sed ipsam magnam aut sed suscipit quam ad.', 3, 137, '2019-08-29 01:21:15', '2019-08-29 01:21:15'),
(2, '3858434', '<EMAIL>', 'Quia qui ea sed est blanditiis ullam. Veniam animi magni voluptatem voluptatem. Eos corrupti deleniti maiores labore libero alias cupiditate ea.', 30, 205, '2019-08-29 01:21:16', '2019-08-29 01:21:16'),
(3, '5998777', '<EMAIL>', 'Distinctio aut quaerat et id itaque quo enim suscipit. Similique ut id maiores enim ab et et. Eum odio eum minus vel.', 47, 199, '2019-08-29 01:21:16', '2019-08-29 01:21:16'),
(4, '1912598', '<EMAIL>', 'Quis quis error qui quod voluptatem et eligendi. Vitae soluta qui quasi quibusdam. Sed culpa corrupti at sint aut quae.', 43, 52, '2019-08-29 01:21:16', '2019-08-29 01:21:16'),
(5, '8442744', '<EMAIL>', 'Libero veritatis ipsum illum minima at. Officia pariatur ad officiis iure autem culpa reiciendis. Vero molestiae at et molestiae qui quia iure.', 32, 26, '2019-08-29 01:21:16', '2019-08-29 01:21:16'),
(6, '1404063', '<EMAIL>', 'Nihil voluptatem omnis soluta. Facere sapiente laboriosam omnis maiores quo similique. Rerum et itaque ipsa laudantium dolore.', 12, 33, '2019-08-29 01:21:16', '2019-08-29 01:21:16'),
(7, '2952038', '<EMAIL>', 'Quo porro delectus suscipit similique fugit. Assumenda blanditiis delectus architecto minus et. Nihil eum ad possimus aut libero facere aliquid.', 9, 49, '2019-08-29 01:21:16', '2019-08-29 01:21:16'),
(8, '6561770', '<EMAIL>', 'Aut rerum minus recusandae et. Dolores nemo officia omnis ipsam animi quas. Doloremque quia aliquam facilis voluptatum.', 24, 225, '2019-08-29 01:21:16', '2019-08-29 01:21:16'),
(9, '4879228', '<EMAIL>', 'Odio laboriosam necessitatibus voluptas omnis voluptatum. Id dolores odit sunt est adipisci sit soluta. Nemo culpa temporibus vitae necessitatibus at aut.', 25, 31, '2019-08-29 01:21:16', '2019-08-29 01:21:16'),
(10, '2499405', '<EMAIL>', 'Eos culpa qui consequatur suscipit quisquam dolores repellendus atque. Harum aut corporis qui ut et ullam quisquam. Possimus culpa enim occaecati beatae sed consequatur ea.', 43, 231, '2019-08-29 01:21:16', '2019-08-29 01:21:16'),
(11, '7293557', '<EMAIL>', 'Porro sit dolores possimus dignissimos ad a nam. Totam iste reprehenderit in enim debitis officia. Dolorem maxime et cum sapiente in qui.', 16, 69, '2019-08-29 01:21:16', '2019-08-29 01:21:16'),
(12, '69030', '<EMAIL>', 'Perspiciatis temporibus enim veritatis harum et voluptates ex. Repudiandae eum ut vel omnis quidem. Mollitia quibusdam numquam dolorem ducimus fugit rerum quia accusantium.', 4, 6, '2019-08-29 01:21:16', '2019-08-29 01:21:16'),
(13, '8254783', '<EMAIL>', 'Beatae sint modi nemo sint tenetur rem minus deleniti. Magnam ipsum a aut beatae rem. Rerum recusandae harum quos dolores officia.', 27, 105, '2019-08-29 01:21:16', '2019-08-29 01:21:16'),
(14, '4041850', '<EMAIL>', 'Molestiae sed molestiae autem magnam. Impedit facere aut eveniet in nisi. Optio error quaerat tempora aut iste qui.', 17, 122, '2019-08-29 01:21:16', '2019-08-29 01:21:16'),
(15, '5881190', '<EMAIL>', 'Deleniti voluptas sit minus. Explicabo sunt vel iste doloremque. Suscipit atque nisi porro magnam officiis ipsa eaque.', 32, 72, '2019-08-29 01:21:16', '2019-08-29 01:21:16'),
(16, '4620667', '<EMAIL>', 'Ut accusantium alias sapiente dolorum ut. Consequatur ea blanditiis qui at est. Repudiandae qui earum autem quia.', 21, 244, '2019-08-29 01:21:16', '2019-08-29 01:21:16'),
(17, '7430375', '<EMAIL>', 'Enim et non architecto est ut quo. Numquam incidunt placeat perspiciatis cumque sed quia. Libero assumenda et fuga a illo.', 19, 106, '2019-08-29 01:21:16', '2019-08-29 01:21:16'),
(18, '9429967', '<EMAIL>', 'Quas voluptate laboriosam dolores. Mollitia iure molestiae facere id voluptatum officia perspiciatis ea. Maxime rerum labore et deleniti.', 31, 185, '2019-08-29 01:21:16', '2019-08-29 01:21:16'),
(19, '7516698', '<EMAIL>', 'Nostrum ut amet nesciunt quia non. Explicabo repellendus et vero voluptatem. Doloribus eius rerum libero.', 5, 253, '2019-08-29 01:21:16', '2019-08-29 01:21:16'),
(20, '4740253', '<EMAIL>', 'Vitae voluptatibus veritatis aspernatur officiis neque commodi natus. Iure dolores et sed ipsum. Et aperiam facilis quidem qui non voluptas.', 44, 92, '2019-08-29 01:21:16', '2019-08-29 01:21:16'),
(21, '3031519', '<EMAIL>', 'Itaque optio mollitia qui iure cupiditate ut suscipit odio. Rerum architecto corporis quia. Repellat dolor sunt et atque aperiam nobis.', 43, 29, '2019-08-29 01:21:16', '2019-08-29 01:21:16'),
(22, '7666425', '<EMAIL>', 'Aliquid sint ut tempore aut esse. Ratione ut quis voluptas in consequatur aut quos nostrum. Eum minus debitis voluptatum et repellendus non.', 10, 252, '2019-08-29 01:21:16', '2019-08-29 01:21:16'),
(23, '7167051', '<EMAIL>', 'Ullam est similique libero nesciunt sapiente et. Recusandae eligendi possimus quis sit. Quibusdam animi autem dolor deserunt eum possimus.', 32, 2, '2019-08-29 01:21:16', '2019-08-29 01:21:16'),
(24, '8233604', '<EMAIL>', 'Ut ea qui accusamus est dolorem dignissimos. Et sed ducimus aut deserunt rerum ipsa. Sed eos rerum quia voluptas aut ullam.', 15, 143, '2019-08-29 01:21:16', '2019-08-29 01:21:16'),
(25, '148963', '<EMAIL>', 'Repellat est sequi consectetur sit optio omnis similique. Quos repudiandae possimus vero excepturi quam. Voluptates in doloribus rem at deleniti.', 46, 129, '2019-08-29 01:21:16', '2019-08-29 01:21:16'),
(26, '3271812', '<EMAIL>', 'Velit fuga itaque modi aut alias. Consequuntur quod fugit repellendus est hic dolor soluta. Consequatur id reiciendis qui quia est.', 10, 165, '2019-08-29 01:21:16', '2019-08-29 01:21:16'),
(27, '2207664', '<EMAIL>.net', 'Voluptas tenetur voluptatum atque. Tempore assumenda blanditiis repellat maxime beatae non commodi. In ullam at placeat similique asperiores unde doloremque.', 4, 14, '2019-08-29 01:21:16', '2019-08-29 01:21:16'),
(28, '1140935', '<EMAIL>', 'Qui et non voluptatibus nobis aut. Dolores error eveniet dolorum eius. Minus ipsam quo qui ea ut vero.', 3, 228, '2019-08-29 01:21:16', '2019-08-29 01:21:16'),
(29, '8782045', '<EMAIL>', 'Nihil beatae maxime repudiandae dicta. Accusamus nulla voluptates quis laboriosam. Occaecati fugit molestiae earum est.', 42, 132, '2019-08-29 01:21:16', '2019-08-29 01:21:16'),
(30, '3871706', '<EMAIL>', 'Iure eum voluptatibus explicabo maiores accusamus repellendus corrupti. Nobis eveniet ratione iure cumque id optio. Blanditiis laborum minima voluptatem omnis.', 11, 25, '2019-08-29 01:21:16', '2019-08-29 01:21:16'),
(31, '1254616', '<EMAIL>', 'Atque molestias veritatis eveniet totam possimus. Laudantium animi voluptatem est quia quam consequatur. Nobis reprehenderit reiciendis quis ratione quidem sint soluta fugit.', 25, 98, '2019-08-29 01:21:16', '2019-08-29 01:21:16'),
(32, '7742404', '<EMAIL>', 'Nihil consectetur nihil qui odio ullam qui sunt. Quaerat deserunt voluptatum et ut deserunt. Voluptas itaque ipsum est est facere repellendus quos.', 50, 119, '2019-08-29 01:21:16', '2019-08-29 01:21:16'),
(33, '7533271', '<EMAIL>', 'Autem et quis corporis est. Magni optio in minus quia. Quo est quae sequi qui.', 14, 11, '2019-08-29 01:21:16', '2019-08-29 01:21:16'),
(34, '1568569', '<EMAIL>', 'Nostrum consequatur eius temporibus molestiae et odio commodi. Aut expedita suscipit soluta corporis. Possimus ut dolores autem.', 9, 47, '2019-08-29 01:21:16', '2019-08-29 01:21:16'),
(35, '5296062', '<EMAIL>', 'Minus non voluptates possimus inventore est ut maxime. Molestiae ipsa nisi doloribus quae qui enim. Hic non quis et doloribus eligendi.', 27, 158, '2019-08-29 01:21:16', '2019-08-29 01:21:16'),
(36, '1268629', '<EMAIL>', 'Sit quidem officia nesciunt eveniet et facere. Sequi qui quia laboriosam cumque qui corrupti. Consequatur corrupti minima repudiandae a.', 17, 160, '2019-08-29 01:21:16', '2019-08-29 01:21:16'),
(37, '6545128', '<EMAIL>', 'Quibusdam dolorem non quia. Debitis quo et suscipit est a cumque veritatis non. Error totam possimus vel nulla sint.', 38, 204, '2019-08-29 01:21:16', '2019-08-29 01:21:16'),
(38, '859699', '<EMAIL>', 'Aut qui et ducimus nisi omnis temporibus. Dolorum tenetur voluptatem sapiente et. Deleniti ut reprehenderit adipisci rerum.', 35, 26, '2019-08-29 01:21:16', '2019-08-29 01:21:16'),
(39, '3556902', '<EMAIL>', 'Dolores in eius accusantium inventore tenetur voluptatem. Nisi voluptatem eum dolore qui. Similique quia molestias totam dolore sint quod qui.', 18, 175, '2019-08-29 01:21:16', '2019-08-29 01:21:16'),
(40, '7479410', '<EMAIL>', 'Atque rerum omnis quo id molestiae. Maiores error similique corrupti dolorum impedit. Autem aut id placeat iure consequatur.', 36, 200, '2019-08-29 01:21:16', '2019-08-29 01:21:16'),
(41, '4772563', '<EMAIL>', 'Odio qui eos qui in consequatur explicabo voluptatem. Exercitationem sed consectetur et qui. Est repudiandae qui voluptatem quasi in sapiente.', 13, 239, '2019-08-29 01:21:16', '2019-08-29 01:21:16'),
(42, '2644614', '<EMAIL>', 'Fuga aut fugiat rerum tempora. Non ut rem voluptatem. Et veritatis nobis nam necessitatibus neque et nemo.', 19, 46, '2019-08-29 01:21:16', '2019-08-29 01:21:16'),
(43, '2355846', '<EMAIL>', 'Voluptas vel sed est sint magni. Corrupti voluptas non ut tenetur dolor accusamus. Voluptas magnam reiciendis at non repudiandae earum.', 39, 17, '2019-08-29 01:21:16', '2019-08-29 01:21:16'),
(44, '6328822', '<EMAIL>', 'Dolorem enim neque ut mollitia sint veniam nobis molestias. Cum tempora maxime a deserunt odit et. Culpa qui quibusdam et non quisquam ut.', 25, 117, '2019-08-29 01:21:16', '2019-08-29 01:21:16'),
(45, '5682658', '<EMAIL>', 'Ab porro perspiciatis et at. Quis voluptate aut eum officiis quo. Eum doloribus deleniti quia.', 40, 114, '2019-08-29 01:21:16', '2019-08-29 01:21:16'),
(46, '8957348', '<EMAIL>', 'Eius ad dolor dolorem quas nihil tenetur. Necessitatibus animi deleniti non aspernatur. Expedita consectetur dolorum necessitatibus porro voluptates earum sunt illum.', 34, 143, '2019-08-29 01:21:16', '2019-08-29 01:21:16'),
(47, '8264810', '<EMAIL>', 'Nam qui amet velit autem. Nam tenetur doloribus facilis sit blanditiis. Doloremque eius illo esse.', 19, 19, '2019-08-29 01:21:16', '2019-08-29 01:21:16'),
(48, '9212517', '<EMAIL>', 'Officiis perspiciatis perferendis non nostrum velit. Illum vel totam sapiente non nostrum nesciunt sit. Non totam dolorum cupiditate quae sed necessitatibus totam.', 36, 251, '2019-08-29 01:21:16', '2019-08-29 01:21:16'),
(49, '1633290', '<EMAIL>', 'Molestiae et nesciunt et qui ut ad non. Sit tenetur sapiente eum est ut sed molestiae occaecati. Debitis inventore reprehenderit qui non explicabo sapiente porro.', 48, 202, '2019-08-29 01:21:16', '2019-08-29 01:21:16'),
(50, '8392281', '<EMAIL>', 'Reiciendis ad enim porro suscipit non recusandae quia. Et itaque itaque doloremque qui optio culpa. Ipsum eos facilis suscipit aut.', 1, 218, '2019-08-29 01:21:16', '2019-08-29 01:21:16');
-- --------------------------------------------------------
--
-- Table structure for table `migrations`
--
CREATE TABLE `migrations` (
`id` int(10) UNSIGNED NOT NULL,
`migration` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`batch` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `migrations`
--
INSERT INTO `migrations` (`id`, `migration`, `batch`) VALUES
(1, '2014_10_12_000000_create_schools_table', 1),
(2, '2014_10_12_100000_create_users_table', 1),
(3, '2016_06_01_000001_create_oauth_auth_codes_table', 1),
(4, '2016_06_01_000002_create_oauth_access_tokens_table', 1),
(5, '2016_06_01_000003_create_oauth_refresh_tokens_table', 1),
(6, '2016_06_01_000004_create_oauth_clients_table', 1),
(7, '2016_06_01_000005_create_oauth_personal_access_clients_table', 1),
(8, '2017_12_21_065735_create_exams_table', 1),
(9, '2017_12_27_025313_create_password_resets_table', 1),
(10, '2017_12_27_025349_create_attendances_table', 1),
(11, '2017_12_27_025413_create_classes_table', 1),
(12, '2017_12_27_025427_create_sections_table', 1),
(13, '2017_12_27_025450_create_syllabuses_table', 1),
(14, '2017_12_27_025503_create_notices_table', 1),
(15, '2017_12_27_025512_create_events_table', 1),
(16, '2017_12_27_025530_create_homeworks_table', 1),
(17, '2017_12_27_025542_create_routines_table', 1),
(18, '2017_12_27_025556_create_grades_table', 1),
(19, '2017_12_27_025612_create_notifications_table', 1),
(20, '2017_12_27_025631_create_feedbacks_table', 1),
(21, '2017_12_27_025644_create_books_table', 1),
(22, '2017_12_27_025727_create_courses_table', 1),
(23, '2017_12_27_025738_create_forms_table', 1),
(24, '2017_12_27_025751_create_messages_table', 1),
(25, '2017_12_27_025806_create_faqs_table', 1),
(26, '2018_02_06_161642_create_fees_table', 1),
(27, '2018_03_26_105657_create_grade_systems_table', 1),
(28, '2018_03_27_153448_create_issued_books_table', 1),
(29, '2018_04_01_195635_create_accounts_table', 1),
(30, '2018_04_01_195715_create_account_sectors_table', 1),
(31, '2018_04_29_121233_create_student_infos_table', 1),
(32, '2018_04_29_121517_create_student_board_exams_table', 1),
(33, '2018_10_05_163435_create_exam_for_classes_table', 1),
(34, '2018_10_08_002853_add_department_class_teacher_to_users_table', 1),
(35, '2018_10_09_093606_add_term_start_end_date_to_exams_table', 1),
(36, '2018_10_09_203125_create_departments_table', 1),
(37, '2019_04_08_105033_add_class_id_to_syllabuses_table', 1),
(38, '2019_04_08_121149_add_section_id_to_routines_table', 1),
(39, '2019_04_25_101700_add_active_to_exam_for_class_table', 1),
(40, '2019_05_10_151601_add_stripe_fields_in_users_table', 1),
(41, '2019_05_10_163920_create_stripe_subscription_table', 1),
(42, '2019_05_10_193135_create_payments_table', 1);
-- --------------------------------------------------------
--
-- Table structure for table `notices`
--
CREATE TABLE `notices` (
`id` int(10) UNSIGNED NOT NULL,
`file_path` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`title` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`description` text COLLATE utf8mb4_unicode_ci NOT NULL,
`active` tinyint(4) NOT NULL,
`school_id` int(10) UNSIGNED NOT NULL,
`user_id` int(10) UNSIGNED 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 `notices`
--
INSERT INTO `notices` (`id`, `file_path`, `title`, `description`, `active`, `school_id`, `user_id`, `created_at`, `updated_at`) VALUES
(1, 'http://www.eichmann.com/aut-dolor-necessitatibus-quidem-consequatur-sint-et-alias', 'Quasi iste cumque sed est natus enim ut officia.', 'Veniam iure recusandae deleniti velit dolore cumque qui. Ea laborum qui dolorem alias. Eos quidem id aperiam accusamus possimus at.', 0, 1, 158, '2019-08-29 01:20:44', '2019-08-29 01:20:44'),
(2, 'http://hoeger.org/voluptatem-dolor-accusamus-odio-dolor-incidunt-et-delectus', 'Quasi et porro pariatur voluptatum recusandae animi ut laborum.', 'Occaecati dolores tempore aperiam nesciunt non. Molestiae optio voluptatem veritatis et ducimus aut reprehenderit. Minus et vel natus porro.', 0, 1, 124, '2019-08-29 01:20:44', '2019-08-29 01:20:44'),
(3, 'https://www.swaniawski.com/et-et-exercitationem-tenetur-unde-voluptatem-aut', 'Eligendi corrupti laudantium magnam accusantium fugiat unde odio.', 'Ducimus non saepe sequi quia repellat. Omnis ut nisi quisquam necessitatibus. Laboriosam consequatur et error dolor.', 0, 1, 81, '2019-08-29 01:20:44', '2019-08-29 01:20:44'),
(4, 'https://reilly.org/similique-corrupti-corporis-tenetur-rem-quo-perferendis.html', 'Quo dolore recusandae omnis quibusdam quod id quis.', 'Sint enim iste harum animi est. Ut sapiente nihil et corrupti qui doloribus. Optio ut sequi sint voluptates quae qui dolore.', 1, 1, 15, '2019-08-29 01:20:44', '2019-08-29 01:20:44'),
(5, 'http://www.swift.org/quidem-eveniet-est-illo-expedita-eius-eius-reiciendis', 'Qui natus id facere deleniti expedita enim.', 'Nihil est tenetur aut nemo sunt harum et autem. Nihil omnis voluptatem exercitationem fugiat neque. Facilis placeat odit quasi.', 1, 1, 174, '2019-08-29 01:20:44', '2019-08-29 01:20:44'),
(6, 'http://www.tremblay.net/eum-et-id-eveniet-sed-dolor-vel-iusto-reiciendis.html', 'Voluptatem unde distinctio eum ab libero in odit ea.', 'Cumque omnis eligendi eveniet quo repellat consequatur voluptatem. Repellendus aut et provident quia veniam officiis enim. Aperiam sit sit possimus totam aut voluptate.', 1, 1, 166, '2019-08-29 01:20:44', '2019-08-29 01:20:44'),
(7, 'http://kuhn.com/est-dignissimos-porro-consequatur-consequatur-pariatur-quo-eum.html', 'Quis voluptatibus quaerat facere repudiandae voluptate maiores.', 'Aut dolor et voluptatum laborum deserunt saepe. Assumenda expedita voluptatum neque. Culpa aliquam a non nobis delectus inventore omnis.', 0, 1, 196, '2019-08-29 01:20:44', '2019-08-29 01:20:44'),
(8, 'http://schaefer.com/ut-ad-esse-voluptas-est', 'Iusto dignissimos aliquid delectus vel.', 'Ad ab est eum aut est ut tempora. Error perferendis optio sed itaque. Et totam aliquid dolorum libero ducimus.', 1, 1, 172, '2019-08-29 01:20:44', '2019-08-29 01:20:44'),
(9, 'http://www.marquardt.net/voluptatibus-iure-nobis-accusamus-ullam-consequatur-dolor.html', 'Voluptatem voluptatem molestiae quia facilis.', 'Quos et doloremque vero voluptatem tempore. Ratione veniam ut dolor reprehenderit. Animi ea sit omnis quod.', 0, 1, 260, '2019-08-29 01:20:44', '2019-08-29 01:20:44'),
(10, 'http://www.ortiz.com/iste-laudantium-vitae-quia-rerum.html', 'Id exercitationem eos amet repellendus nihil.', 'Aperiam amet qui ut esse. Consequatur asperiores aut iste vel. Fugiat consequatur porro tempora et.', 0, 1, 148, '2019-08-29 01:20:44', '2019-08-29 01:20:44'),
(11, 'http://www.langworth.com/deleniti-nulla-cum-vitae-saepe-animi', 'Quae harum laudantium non aliquam est explicabo.', 'Eos distinctio consequatur exercitationem explicabo. Ea numquam totam est explicabo autem et laboriosam. At tenetur unde qui facilis.', 0, 1, 209, '2019-08-29 01:20:44', '2019-08-29 01:20:44'),
(12, 'https://www.goyette.info/in-rerum-itaque-cum-debitis-odio-aut-nemo-occaecati', 'Rerum odio non accusantium consectetur hic.', 'Ullam at vel error aperiam doloribus nihil voluptatibus. Eligendi dolores eius temporibus culpa quisquam pariatur. Sint nisi non ipsum alias quisquam voluptates non.', 1, 1, 180, '2019-08-29 01:20:44', '2019-08-29 01:20:44'),
(13, 'http://www.ankunding.com/facere-quia-animi-accusantium-doloremque-fugit-nemo', 'Magni voluptas quia fugit.', 'Odio officia voluptas voluptates est. Beatae id reprehenderit laboriosam et dignissimos magnam. Ut sapiente aliquam ad qui dolores id non.', 0, 1, 225, '2019-08-29 01:20:44', '2019-08-29 01:20:44'),
(14, 'https://stark.com/mollitia-vitae-aperiam-dolorem.html', 'Alias deleniti laudantium possimus aut mollitia ut.', 'Sit cumque est odio tenetur voluptatem molestias. Aliquid vel sed vitae aut. Voluptatem ea praesentium delectus error.', 1, 1, 201, '2019-08-29 01:20:44', '2019-08-29 01:20:44'),
(15, 'http://www.green.net/autem-quia-et-illum-explicabo.html', 'Ut quas suscipit quam vero a.', 'Officia et quaerat sequi ipsum dolor voluptate. Nihil quo aut quam. Reiciendis corporis rem veniam velit voluptas hic accusamus laudantium.', 1, 1, 38, '2019-08-29 01:20:44', '2019-08-29 01:20:44'),
(16, 'http://www.mcdermott.com/', 'Expedita omnis in sed ut in fugit eaque.', 'Culpa hic et recusandae omnis non et quia itaque. Eum veritatis quidem quaerat excepturi vero. Perferendis esse qui magni ea qui repellendus ratione dolorem.', 1, 1, 125, '2019-08-29 01:20:44', '2019-08-29 01:20:44'),
(17, 'http://www.murphy.biz/', 'Ea molestiae cum et rerum ut ratione.', 'Ratione ut id velit ratione distinctio. Autem rerum dolor cum qui consectetur repudiandae sed amet. Impedit vero fugiat id earum voluptatum quis.', 1, 1, 145, '2019-08-29 01:20:44', '2019-08-29 01:20:44'),
(18, 'http://www.ferry.biz/atque-dolorum-voluptatem-dolores-placeat.html', 'Nesciunt quia quo corporis provident omnis quis sequi sunt.', 'Ut ducimus adipisci nesciunt est qui omnis dolores. Aut quo totam totam rerum excepturi. Veniam doloribus dolore labore est temporibus.', 0, 1, 19, '2019-08-29 01:20:44', '2019-08-29 01:20:44'),
(19, 'http://zboncak.com/maiores-modi-nesciunt-perferendis-et-quibusdam-nam', 'Culpa molestias voluptatem et pariatur doloribus et vitae.', 'Optio iste impedit est et. Voluptates quaerat perspiciatis dignissimos fugit quia repellendus omnis. Enim itaque ad accusamus id est.', 1, 1, 13, '2019-08-29 01:20:44', '2019-08-29 01:20:44'),
(20, 'http://www.mertz.com/est-qui-quo-ipsam-qui-assumenda-id', 'Asperiores explicabo sed est molestiae nam.', 'Voluptates aut vel est repellendus molestiae ad. Quibusdam deleniti non quia dolorum molestiae voluptatem voluptatem ut. Et atque ut explicabo excepturi.', 1, 1, 101, '2019-08-29 01:20:44', '2019-08-29 01:20:44'),
(21, 'https://borer.net/est-pariatur-ut-quasi-dolorem.html', 'Est accusamus adipisci natus animi qui aut sunt.', 'Ipsum harum eos voluptatem aut sit laboriosam velit. Aut qui qui quaerat et aut. Qui consectetur molestias eum voluptatum accusamus unde et.', 1, 1, 168, '2019-08-29 01:20:44', '2019-08-29 01:20:44'),
(22, 'http://www.stehr.com/corporis-qui-ut-voluptate-nulla-odio-vitae-minima.html', 'Aut aut numquam adipisci temporibus est iure unde ipsa.', 'Voluptatem voluptatem maxime blanditiis voluptatem. Voluptatem omnis reiciendis temporibus ipsum quidem sed. Minus exercitationem beatae dolorem ab.', 0, 1, 125, '2019-08-29 01:20:44', '2019-08-29 01:20:44'),
(23, 'https://www.rath.net/deleniti-tempore-ea-a-atque', 'Enim molestias qui repellat autem adipisci.', 'Veniam voluptatibus et molestiae. Culpa dolores consequatur consequatur excepturi aut. Nisi consequuntur laboriosam explicabo corrupti similique.', 0, 1, 211, '2019-08-29 01:20:44', '2019-08-29 01:20:44'),
(24, 'http://toy.biz/', 'Perferendis recusandae voluptas id optio dolor dolor.', 'Necessitatibus non eos quas earum minima. Qui qui voluptatem aliquid voluptate dolorem ad. Sit quo suscipit veniam nisi est molestiae.', 1, 1, 192, '2019-08-29 01:20:44', '2019-08-29 01:20:44'),
(25, 'https://nicolas.org/esse-veniam-qui-rerum-fugit-id-consequatur-similique.html', 'Ea sed odit et a explicabo.', 'Ducimus minima officia culpa doloremque natus. Consequatur illum aspernatur qui assumenda voluptatem. Culpa amet id natus.', 0, 1, 220, '2019-08-29 01:20:44', '2019-08-29 01:20:44'),
(26, 'http://www.beahan.com/', 'Eum nihil ullam amet laudantium provident saepe eum.', 'Qui aut velit adipisci dolorem non blanditiis. Esse aut et consequatur. Repellat omnis recusandae molestias nemo sequi illo.', 1, 1, 76, '2019-08-29 01:20:44', '2019-08-29 01:20:44'),
(27, 'http://hagenes.com/sunt-ducimus-quia-illum-ut-quae-cum-molestiae.html', 'Quos labore rem et et et dolorem cumque perferendis.', 'Ipsam totam sed voluptates tempore ex. Facilis velit sit alias. Rerum eum quisquam sit non.', 1, 1, 192, '2019-08-29 01:20:44', '2019-08-29 01:20:44'),
(28, 'http://www.wolf.com/eum-numquam-earum-assumenda-modi.html', 'Tenetur veniam illo eius.', 'Repellat eaque dolorem dolor amet ab aut molestiae. Nostrum sapiente qui molestiae architecto in beatae quae perferendis. Voluptatem ab dolorem qui ullam.', 0, 1, 256, '2019-08-29 01:20:44', '2019-08-29 01:20:44'),
(29, 'http://schoen.biz/qui-accusamus-modi-assumenda-voluptas-eveniet-magni-dolor-doloremque.html', 'Nobis velit alias suscipit impedit autem placeat.', 'Tenetur corrupti beatae iure. Eos possimus natus nesciunt quia quasi. Nostrum reiciendis reiciendis tempore blanditiis.', 0, 1, 72, '2019-08-29 01:20:44', '2019-08-29 01:20:44'),
(30, 'http://morar.com/', 'Tenetur molestiae nostrum ut cum modi ea et.', 'Amet veniam expedita molestias esse quidem accusantium ullam itaque. Dolorem non voluptas in rerum aliquam. Quia odit consequuntur aspernatur cupiditate voluptates unde.', 0, 1, 131, '2019-08-29 01:20:44', '2019-08-29 01:20:44'),
(31, 'http://bayer.biz/ipsam-dicta-perferendis-illo-non-qui-aut.html', 'Quidem ducimus ratione dolorum a perspiciatis ea suscipit.', 'Ut error fugit consequatur. Autem ut quos tenetur. Qui temporibus sunt et error.', 1, 1, 149, '2019-08-29 01:20:44', '2019-08-29 01:20:44'),
(32, 'http://www.heller.com/', 'Non nostrum sed quia nostrum.', 'In ipsa cupiditate laudantium adipisci laboriosam. Et id et illo dolorem ut deserunt. Distinctio iure eveniet consequuntur ratione aut et.', 0, 1, 258, '2019-08-29 01:20:44', '2019-08-29 01:20:44'),
(33, 'http://www.boyle.com/corrupti-aspernatur-sit-eos-voluptate', 'Velit illo sed et odit autem eveniet temporibus.', 'Quae eum voluptatem et nulla. Sed repudiandae veniam quo tempore veritatis. Dolor est eum hic consequatur eius dolore.', 1, 1, 99, '2019-08-29 01:20:44', '2019-08-29 01:20:44'),
(34, 'http://www.gusikowski.com/sunt-quia-et-quis-autem-sequi', 'Hic vel ad enim nesciunt adipisci optio.', 'Eius quod accusantium nostrum aspernatur amet iure. Eligendi doloribus reprehenderit et necessitatibus quidem quod aut. Velit explicabo magnam quasi ipsa qui accusamus.', 0, 1, 49, '2019-08-29 01:20:44', '2019-08-29 01:20:44'),
(35, 'http://www.upton.info/et-maiores-culpa-reprehenderit-quia-quia-nihil-ut', 'Odit fuga optio a officia.', 'Iusto praesentium quo impedit quo velit inventore et. Enim perferendis sit qui exercitationem incidunt. Qui ullam quos in animi possimus ut totam.', 1, 1, 39, '2019-08-29 01:20:44', '2019-08-29 01:20:44'),
(36, 'https://www.oconner.com/officia-modi-eum-et-dolor-repellat-blanditiis-qui', 'Nobis enim atque temporibus atque possimus recusandae et labore.', 'Voluptates et ab minus optio aut quia. Maiores quasi minus quis error necessitatibus. Aut totam optio iusto rerum.', 1, 1, 50, '2019-08-29 01:20:44', '2019-08-29 01:20:44'),
(37, 'https://www.yundt.com/labore-odio-facilis-iure-odio-sunt-molestias-corrupti', 'Perferendis impedit recusandae hic quo voluptatem.', 'Quis totam qui nihil similique molestiae sit quaerat. Quo veniam quisquam repellendus iste qui sed. Non earum soluta et autem error sequi dicta ut.', 1, 1, 115, '2019-08-29 01:20:44', '2019-08-29 01:20:44'),
(38, 'https://www.skiles.com/ipsa-deleniti-culpa-corporis-aliquid-enim-eveniet', 'Magnam ipsum nisi aut assumenda vel reprehenderit.', 'Ipsam quo consequatur et mollitia sint. Molestiae dolor assumenda saepe amet. Aut accusamus maxime impedit aliquam qui mollitia.', 0, 1, 180, '2019-08-29 01:20:44', '2019-08-29 01:20:44'),
(39, 'http://kozey.info/inventore-dolores-corrupti-et-magnam-atque-enim', 'Non officia soluta qui similique cum sed ea.', 'Quo quis porro ut iusto sit non. Voluptate eos aut vel maiores est sit. Vel quae quis vel libero rerum provident culpa.', 1, 1, 148, '2019-08-29 01:20:44', '2019-08-29 01:20:44'),
(40, 'http://veum.biz/accusamus-velit-tempore-voluptatem-in', 'Accusamus blanditiis totam facere qui aperiam.', 'Beatae aut repellendus illum dolor deleniti voluptatum eligendi. Consequuntur aspernatur et ipsam corrupti reiciendis vero doloribus. Voluptate est sed quae quis.', 0, 1, 159, '2019-08-29 01:20:44', '2019-08-29 01:20:44'),
(41, 'http://www.leffler.org/praesentium-consequatur-culpa-aut-omnis-facilis', 'Repellendus et dicta adipisci fugit eum adipisci.', 'Soluta minima est distinctio quidem sed natus id. Commodi officia fugiat velit suscipit aut rerum fuga. Praesentium iste quia placeat vitae assumenda facilis porro.', 0, 1, 245, '2019-08-29 01:20:44', '2019-08-29 01:20:44'),
(42, 'http://sipes.com/quia-et-officia-culpa-facere-sed-modi-temporibus', 'Accusamus qui tenetur animi a ab alias consectetur.', 'Exercitationem porro est minus cum sunt. Sapiente distinctio impedit sed ut nisi quidem porro illo. Similique doloribus qui qui rerum dolores consequatur nobis.', 1, 1, 42, '2019-08-29 01:20:44', '2019-08-29 01:20:44'),
(43, 'https://bergstrom.com/adipisci-delectus-asperiores-expedita-sint-quia-culpa-sequi.html', 'Sint possimus est rerum.', 'Quo eius in praesentium totam ab. Ea a at adipisci voluptas incidunt. Vel qui totam nobis.', 0, 1, 34, '2019-08-29 01:20:44', '2019-08-29 01:20:44'),
(44, 'http://stracke.com/', 'Ratione minima ut corrupti ut.', 'Facilis sed minus aut praesentium incidunt molestiae sunt. In veniam ducimus repudiandae in. Quia temporibus vel sed perspiciatis.', 1, 1, 164, '2019-08-29 01:20:44', '2019-08-29 01:20:44'),
(45, 'http://aufderhar.com/cum-voluptatibus-at-dicta-eos-blanditiis-optio.html', 'Quasi ut laudantium possimus.', 'Recusandae aut ea et voluptatibus voluptatem. Necessitatibus aut sed explicabo. Magnam voluptas magni non inventore tempora qui tenetur.', 1, 1, 165, '2019-08-29 01:20:44', '2019-08-29 01:20:44'),
(46, 'http://kautzer.com/ad-inventore-enim-possimus-ratione-aliquid-sed-reprehenderit-nihil', 'Vero officiis voluptatibus perferendis quod dolor consequatur ut voluptatem.', 'Vel aliquid aut quaerat dolor. Omnis delectus et qui est. Repellendus ab ab aut facere officia porro.', 1, 1, 155, '2019-08-29 01:20:44', '2019-08-29 01:20:44'),
(47, 'http://ward.com/eum-animi-repellendus-iure', 'Sed est suscipit ut tempore porro placeat.', 'A veniam minus quisquam aut modi. Et placeat eos nihil quia dicta et aut aut. Sit tempora pariatur dolores molestias sed temporibus ea.', 0, 1, 256, '2019-08-29 01:20:44', '2019-08-29 01:20:44'),
(48, 'http://padberg.com/laudantium-qui-praesentium-molestiae-ut-explicabo', 'Natus hic alias molestiae ab.', 'Magnam dolore vero iste vero. Culpa esse excepturi ab fugiat repellat. Explicabo eius voluptates enim velit illum non.', 1, 1, 67, '2019-08-29 01:20:44', '2019-08-29 01:20:44'),
(49, 'https://www.miller.biz/quis-sunt-pariatur-rerum-inventore-nesciunt-sunt-rem-at', 'Rerum eligendi facilis veniam esse veniam.', 'Quae qui deleniti dicta. Fuga non nam eos saepe dicta. Expedita est et non tempora quisquam et.', 0, 1, 167, '2019-08-29 01:20:44', '2019-08-29 01:20:44'),
(50, 'http://marquardt.com/', 'Accusantium ipsum quaerat molestias quia.', 'Perspiciatis fugiat aperiam dolor qui explicabo sed sint. Consectetur velit distinctio ipsa et facilis ut et aperiam. Blanditiis voluptate quaerat quia sint exercitationem illum ullam.', 0, 1, 25, '2019-08-29 01:20:44', '2019-08-29 01:20:44');
-- --------------------------------------------------------
--
-- Table structure for table `notifications`
--
CREATE TABLE `notifications` (
`id` int(10) UNSIGNED NOT NULL,
`sent_status` tinyint(4) NOT NULL,
`active` tinyint(4) NOT NULL,
`message` text COLLATE utf8mb4_unicode_ci NOT NULL,
`student_id` int(10) UNSIGNED NOT NULL,
`user_id` int(10) UNSIGNED 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 `notifications`
--
INSERT INTO `notifications` (`id`, `sent_status`, `active`, `message`, `student_id`, `user_id`, `created_at`, `updated_at`) VALUES
(1, 1, 1, 'Similique minus tempore magni nam. Est quidem temporibus perferendis rem voluptatem minima ea voluptas. Perferendis a deserunt repellat sequi.', 106, 105, '2019-08-29 01:20:55', '2019-08-29 01:20:55'),
(2, 1, 0, 'Commodi autem ad nobis quam et quidem. Magni molestias repellendus aperiam harum. Aut accusantium quibusdam quas tenetur.', 175, 74, '2019-08-29 01:20:55', '2019-08-29 01:20:55'),
(3, 1, 1, 'Facere veritatis numquam ut dignissimos. Dolores nam et quisquam et voluptatem reprehenderit. Est consequatur in rerum id.', 94, 89, '2019-08-29 01:20:55', '2019-08-29 01:20:55'),
(4, 0, 0, 'Nulla iste sed repellendus adipisci officiis quia. Nobis assumenda molestiae deserunt harum sint voluptatem quos. Ad vero enim id in nihil repellendus doloremque.', 132, 14, '2019-08-29 01:20:55', '2019-08-29 01:20:55'),
(5, 0, 0, 'Repellendus cumque doloribus explicabo eaque impedit. Quo consequatur illum molestias libero aut. Necessitatibus corporis aut sint hic debitis hic.', 67, 118, '2019-08-29 01:20:55', '2019-08-29 01:20:55'),
(6, 1, 1, 'Dolorum laborum nihil sunt aperiam voluptas harum dolorem. Consequatur quod laudantium iure quia voluptatem est qui. Aut eligendi quia modi et.', 124, 16, '2019-08-29 01:20:55', '2019-08-29 01:20:55'),
(7, 1, 0, 'Ducimus et nulla perspiciatis dolore dolores. Minus sint et id. Sit quas labore culpa ullam omnis.', 68, 250, '2019-08-29 01:20:55', '2019-08-29 01:20:55'),
(8, 0, 1, 'Repellat quisquam atque quaerat qui. Voluptatem et sunt explicabo porro. Aut esse facere ad sed quo quae.', 143, 155, '2019-08-29 01:20:55', '2019-08-29 01:20:55'),
(9, 1, 1, 'Velit iste quae ullam voluptas fuga laboriosam tenetur. Quidem explicabo expedita facere consequuntur. Repellendus voluptatem rerum tenetur mollitia.', 259, 94, '2019-08-29 01:20:55', '2019-08-29 01:20:55'),
(10, 1, 1, 'Doloremque ea rerum labore nisi dolores. Error culpa recusandae dolores. In assumenda eaque impedit nulla.', 74, 146, '2019-08-29 01:20:55', '2019-08-29 01:20:55'),
(11, 0, 1, 'Fugit dolores rerum ducimus quasi qui in. Debitis quasi placeat rem fugit perspiciatis rerum beatae. Deserunt nihil sit sit beatae quae repellat praesentium.', 80, 67, '2019-08-29 01:20:55', '2019-08-29 01:20:55'),
(12, 1, 1, 'Quisquam nobis amet minus nemo harum voluptatem et. Aut porro quidem inventore minus et. Assumenda accusamus aut esse voluptate tempora.', 114, 104, '2019-08-29 01:20:55', '2019-08-29 01:20:55'),
(13, 1, 0, 'Est blanditiis ipsum voluptas et accusamus vel pariatur sed. Nostrum facere accusamus nihil dolor facilis eos. Et minima qui magnam enim sed.', 63, 61, '2019-08-29 01:20:55', '2019-08-29 01:20:55'),
(14, 0, 0, 'Magnam dolor voluptatem iste dolorum est nemo et. Unde blanditiis iure consequatur quis omnis officiis suscipit. Sit praesentium quam sequi adipisci.', 135, 227, '2019-08-29 01:20:55', '2019-08-29 01:20:55'),
(15, 0, 1, 'Sed consequatur quidem voluptatem ipsam dolore eos. Tempora est ut repellendus natus. Distinctio officiis fugiat saepe molestias sed.', 80, 186, '2019-08-29 01:20:55', '2019-08-29 01:20:55'),
(16, 0, 0, 'Et eos molestias accusamus sed distinctio molestias non et. Rem non deleniti quo veniam. Alias omnis in explicabo iusto.', 259, 203, '2019-08-29 01:20:55', '2019-08-29 01:20:55'),
(17, 0, 1, 'Aut enim quod unde quo necessitatibus. Ea occaecati rem facilis facilis. Explicabo error dicta et.', 181, 238, '2019-08-29 01:20:55', '2019-08-29 01:20:55'),
(18, 1, 1, 'Qui incidunt est esse ipsum distinctio. Minus reiciendis et enim sit. Est cum minus maxime perferendis eos.', 251, 13, '2019-08-29 01:20:55', '2019-08-29 01:20:55'),
(19, 0, 1, 'Quo suscipit rerum qui velit dolor. Qui perspiciatis sit numquam quam molestias. Sapiente cum eveniet earum eum ea.', 95, 93, '2019-08-29 01:20:55', '2019-08-29 01:20:55'),
(20, 1, 0, 'Molestiae voluptas minus earum et quaerat fugit vero incidunt. Laboriosam labore laborum non temporibus consequatur ratione et placeat. Necessitatibus nihil nobis error repudiandae.', 86, 259, '2019-08-29 01:20:55', '2019-08-29 01:20:55'),
(21, 0, 1, 'Non corrupti accusamus dolor voluptatem enim alias ea. Error ex esse dolores velit dignissimos alias a et. Praesentium harum corrupti tenetur quibusdam voluptatibus similique consequatur.', 231, 202, '2019-08-29 01:20:55', '2019-08-29 01:20:55'),
(22, 0, 1, 'Id rem quod ut quisquam. Ipsa dolores tempore sapiente neque et illum. Quia et ut nemo enim.', 132, 17, '2019-08-29 01:20:55', '2019-08-29 01:20:55'),
(23, 0, 1, 'Fugiat sint quae iste labore saepe impedit voluptas temporibus. Eos nam a quae occaecati quod quis praesentium. Ut omnis voluptatem eaque asperiores.', 215, 76, '2019-08-29 01:20:55', '2019-08-29 01:20:55'),
(24, 1, 1, 'Debitis blanditiis tempora fuga. Sed et odio ducimus et suscipit. Aut eligendi consequatur voluptatem omnis.', 128, 15, '2019-08-29 01:20:55', '2019-08-29 01:20:55'),
(25, 0, 1, 'Doloribus sit voluptas consequatur amet. Ad est placeat laudantium aut laborum veniam distinctio. Voluptatem eos repudiandae beatae ad.', 64, 64, '2019-08-29 01:20:55', '2019-08-29 01:20:55'),
(26, 0, 0, 'Tempore repellat est dolor ut. Soluta unde et qui voluptas ad. Porro expedita eaque nulla.', 127, 33, '2019-08-29 01:20:55', '2019-08-29 01:20:55'),
(27, 1, 0, 'Voluptas et rerum et sapiente rerum qui. Consequatur enim quam qui quis beatae ab magni. Esse neque nobis quo eveniet voluptatem.', 250, 204, '2019-08-29 01:20:55', '2019-08-29 01:20:55'),
(28, 1, 1, 'Ut dolores eveniet omnis animi fugit tenetur doloremque. Error qui magnam minus explicabo magnam eligendi iusto. Distinctio laboriosam sunt modi et sunt eius.', 153, 213, '2019-08-29 01:20:55', '2019-08-29 01:20:55'),
(29, 1, 1, 'Laborum ex non architecto quis deserunt at ea. Ab quia similique at quibusdam autem qui. Culpa delectus itaque dolores explicabo aliquid voluptatem.', 160, 139, '2019-08-29 01:20:55', '2019-08-29 01:20:55'),
(30, 1, 0, 'Explicabo quidem id id distinctio id excepturi. Et ratione reiciendis omnis eveniet. Ut deserunt corporis quaerat.', 137, 62, '2019-08-29 01:20:55', '2019-08-29 01:20:55'),
(31, 0, 0, 'Repellendus est voluptas ut exercitationem ad. Dicta vel sed reprehenderit est. Assumenda recusandae voluptas sed et.', 195, 211, '2019-08-29 01:20:55', '2019-08-29 01:20:55'),
(32, 0, 0, 'Voluptatem illo voluptas libero enim molestiae qui eius. Repellat velit ipsum et consequatur nulla et nobis. Eos expedita sint accusamus cum possimus aut repellendus.', 205, 122, '2019-08-29 01:20:55', '2019-08-29 01:20:55'),
(33, 0, 1, 'Doloribus veniam nostrum esse. Expedita iure ab qui eaque voluptate nostrum mollitia sed. Quis et quas aut consequatur enim.', 101, 168, '2019-08-29 01:20:55', '2019-08-29 01:20:55'),
(34, 0, 0, 'Cum omnis et voluptatibus voluptatem nisi repellendus. Id neque quia necessitatibus harum ratione in. Ducimus at molestiae ut illum.', 253, 3, '2019-08-29 01:20:55', '2019-08-29 01:20:55'),
(35, 1, 0, 'Velit ea corporis ullam ea exercitationem omnis deserunt ut. Totam similique facilis reiciendis culpa. Cupiditate at itaque fugiat atque.', 180, 122, '2019-08-29 01:20:55', '2019-08-29 01:20:55'),
(36, 1, 1, 'Delectus id aperiam reprehenderit reprehenderit est. Optio atque nam incidunt qui. Odit recusandae eveniet aut et non.', 224, 223, '2019-08-29 01:20:55', '2019-08-29 01:20:55'),
(37, 1, 0, 'Et tempore dolores dignissimos qui sit modi. Rerum nesciunt sed earum repellat porro praesentium mollitia. Accusantium omnis veniam voluptatum dolores reprehenderit id.', 162, 116, '2019-08-29 01:20:55', '2019-08-29 01:20:55'),
(38, 0, 0, 'Accusantium ad a accusamus quo. Libero et excepturi perspiciatis eos ducimus. Quam cumque vel blanditiis et aut.', 200, 132, '2019-08-29 01:20:55', '2019-08-29 01:20:55'),
(39, 0, 0, 'Nihil dicta error delectus a consequuntur sapiente. Sequi corrupti atque ut occaecati aut est in. Et odit quis ut ut eius autem.', 157, 260, '2019-08-29 01:20:55', '2019-08-29 01:20:55'),
(40, 0, 1, 'In dicta in accusamus a sed sunt. Illum quo ut minus aspernatur. In tenetur quia aut.', 136, 251, '2019-08-29 01:20:55', '2019-08-29 01:20:55'),
(41, 0, 1, 'Inventore ut molestiae nesciunt. Est perferendis minima qui repudiandae autem placeat. Iste quos dolores ipsum et.', 193, 220, '2019-08-29 01:20:55', '2019-08-29 01:20:55'),
(42, 0, 0, 'Est et sit voluptatem et ipsum. Natus delectus repellat rerum molestiae qui. Ullam qui ut voluptatem sint rerum.', 160, 56, '2019-08-29 01:20:55', '2019-08-29 01:20:55'),
(43, 1, 0, 'Ipsa qui placeat qui facilis natus. Reiciendis placeat nesciunt nostrum. Ipsam ex sed rerum.', 78, 176, '2019-08-29 01:20:55', '2019-08-29 01:20:55'),
(44, 0, 1, 'Nam aut laborum pariatur debitis culpa quos. Id sequi eligendi voluptates labore quod quod illo similique. Fugiat assumenda natus dicta aut.', 258, 76, '2019-08-29 01:20:55', '2019-08-29 01:20:55'),
(45, 1, 0, 'Iure qui cupiditate earum id vel voluptate. Et fuga incidunt expedita fugiat ipsum animi harum. Cum assumenda voluptate veniam quidem nemo ullam.', 94, 217, '2019-08-29 01:20:55', '2019-08-29 01:20:55'),
(46, 0, 1, 'Fugiat nulla eos repudiandae facilis consequuntur magnam repudiandae quaerat. Voluptas nam facilis accusantium totam. Ut facilis omnis corrupti et qui doloribus ut eaque.', 234, 49, '2019-08-29 01:20:55', '2019-08-29 01:20:55'),
(47, 1, 1, 'Error sit qui nulla et aut. Qui et quod laboriosam voluptas perspiciatis veritatis molestias voluptas. Repellat sunt quo dolores laudantium aperiam rerum optio iste.', 153, 40, '2019-08-29 01:20:55', '2019-08-29 01:20:55'),
(48, 1, 0, 'Et in aliquid aut neque consequuntur rerum. Dolorem dolor commodi dicta reiciendis. Omnis animi qui pariatur ipsum.', 93, 171, '2019-08-29 01:20:55', '2019-08-29 01:20:55'),
(49, 1, 1, 'Illum unde et illum sit. Est laborum qui minus perferendis saepe omnis maiores eveniet. Quia excepturi in in voluptatem voluptatem aperiam labore.', 81, 82, '2019-08-29 01:20:55', '2019-08-29 01:20:55'),
(50, 0, 0, 'Voluptas cupiditate qui omnis alias distinctio ipsam ad. Optio a dolor quo voluptatem. Autem et numquam dolorem quo.', 216, 115, '2019-08-29 01:20:55', '2019-08-29 01:20:55');
-- --------------------------------------------------------
--
-- Table structure for table `oauth_access_tokens`
--
CREATE TABLE `oauth_access_tokens` (
`id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL,
`user_id` int(11) DEFAULT NULL,
`client_id` int(11) NOT NULL,
`name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`scopes` text COLLATE utf8mb4_unicode_ci,
`revoked` tinyint(1) NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`expires_at` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `oauth_auth_codes`
--
CREATE TABLE `oauth_auth_codes` (
`id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL,
`user_id` int(11) NOT NULL,
`client_id` int(11) NOT NULL,
`scopes` text COLLATE utf8mb4_unicode_ci,
`revoked` tinyint(1) NOT NULL,
`expires_at` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `oauth_clients`
--
CREATE TABLE `oauth_clients` (
`id` int(10) UNSIGNED NOT NULL,
`user_id` int(11) DEFAULT NULL,
`name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`secret` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL,
`redirect` text COLLATE utf8mb4_unicode_ci NOT NULL,
`personal_access_client` tinyint(1) NOT NULL,
`password_client` tinyint(1) NOT NULL,
`revoked` tinyint(1) NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `oauth_personal_access_clients`
--
CREATE TABLE `oauth_personal_access_clients` (
`id` int(10) UNSIGNED NOT NULL,
`client_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;
-- --------------------------------------------------------
--
-- Table structure for table `oauth_refresh_tokens`
--
CREATE TABLE `oauth_refresh_tokens` (
`id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL,
`access_token_id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL,
`revoked` tinyint(1) NOT NULL,
`expires_at` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `password_resets`
--
CREATE TABLE `password_resets` (
`email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`token` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `payments`
--
CREATE TABLE `payments` (
`id` int(10) UNSIGNED NOT NULL,
`payment_id` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`payment_status` tinyint(4) NOT NULL,
`amount` double(8,2) NOT NULL,
`custormer_id` int(10) UNSIGNED NOT NULL,
`charge_for` 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;
-- --------------------------------------------------------
--
-- Table structure for table `routines`
--
CREATE TABLE `routines` (
`id` int(10) UNSIGNED NOT NULL,
`file_path` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`title` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`description` text COLLATE utf8mb4_unicode_ci NOT NULL,
`active` tinyint(4) NOT NULL,
`school_id` int(10) UNSIGNED NOT NULL,
`user_id` int(10) UNSIGNED NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`section_id` int(10) UNSIGNED NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `routines`
--
INSERT INTO `routines` (`id`, `file_path`, `title`, `description`, `active`, `school_id`, `user_id`, `created_at`, `updated_at`, `section_id`) VALUES
(1, 'http://www.walker.com/', 'Cupiditate quasi repellendus similique dolorum illo.', 'Velit voluptas id dignissimos nisi perspiciatis velit nihil est. Eum beatae accusamus similique. Cupiditate ipsam necessitatibus incidunt quibusdam.', 1, 1, 179, '2019-08-29 01:20:52', '2019-08-29 01:20:52', 7),
(2, 'http://pouros.net/rerum-laboriosam-consequatur-ad-eos-amet-minus-fugit', 'Voluptas voluptatem odio voluptas rerum vitae delectus eum cupiditate.', 'Mollitia sint qui quia velit magni consequatur. Rerum labore pariatur aut illo perspiciatis. Accusantium aliquid sit quia dolorum.', 1, 1, 19, '2019-08-29 01:20:52', '2019-08-29 01:20:52', 20),
(3, 'http://www.boyer.com/', 'Esse accusamus inventore quis nihil atque dolorem non.', 'Non voluptatem labore unde ea. Alias nobis fugit ea quisquam qui. Culpa quae qui non deleniti necessitatibus ut neque.', 1, 1, 220, '2019-08-29 01:20:52', '2019-08-29 01:20:52', 10),
(4, 'https://ebert.org/dolorem-ut-eos-et-qui-adipisci.html', 'Accusamus veniam dicta voluptatem aut sit quibusdam non.', 'Sequi quae et magni est dolores dolores et. Aspernatur labore voluptatem temporibus quae. Quos ut et pariatur aliquam.', 0, 1, 217, '2019-08-29 01:20:52', '2019-08-29 01:20:52', 17),
(5, 'http://www.boyle.net/eum-numquam-ex-sapiente-in-placeat', 'Est sed commodi et aut quis ab.', 'Voluptatem laborum quidem maiores rerum officia rerum. Ullam perspiciatis ullam tempora. Et porro quod ad.', 0, 1, 175, '2019-08-29 01:20:52', '2019-08-29 01:20:52', 13),
(6, 'http://www.kautzer.com/', 'Asperiores recusandae voluptatum ad eveniet dignissimos excepturi.', 'Cum cupiditate aliquam voluptatem veniam. Ad ipsa labore rerum expedita non nisi. Voluptatem non sed nesciunt aut repudiandae.', 0, 1, 228, '2019-08-29 01:20:52', '2019-08-29 01:20:52', 1),
(7, 'http://www.herzog.com/excepturi-enim-odit-dicta-consequuntur', 'Impedit error cupiditate architecto iste.', 'Autem ratione odio porro vero porro inventore consectetur. Aut autem maiores quasi rerum. Aspernatur qui minus voluptatem necessitatibus enim quidem doloremque rerum.', 0, 1, 185, '2019-08-29 01:20:52', '2019-08-29 01:20:52', 2),
(8, 'https://erdman.com/quis-illo-culpa-vitae-eveniet-et.html', 'Mollitia nihil occaecati iure praesentium fugiat nihil.', 'Quia laborum est omnis incidunt officia nostrum optio nostrum. Blanditiis consequatur iure nostrum adipisci iusto. Tempora ipsum voluptatum repellendus molestiae.', 0, 1, 150, '2019-08-29 01:20:52', '2019-08-29 01:20:52', 11),
(9, 'http://www.cummerata.com/', 'Amet incidunt repellat perferendis eveniet at.', 'Consectetur animi voluptatibus aut dolor velit ipsa. Quo nemo et placeat cum quia modi quas distinctio. Eveniet amet molestiae deserunt incidunt qui aut.', 1, 1, 244, '2019-08-29 01:20:52', '2019-08-29 01:20:52', 8),
(10, 'http://www.zemlak.com/ut-tenetur-qui-sit-quisquam.html', 'Voluptatem excepturi voluptatem excepturi.', 'Facilis vel natus doloribus voluptate vel repellat maiores. Quia esse cupiditate voluptatem vel. Id assumenda non non quia.', 1, 1, 162, '2019-08-29 01:20:52', '2019-08-29 01:20:52', 18),
(11, 'http://www.mckenzie.info/eum-velit-laudantium-et-reprehenderit-alias-velit-officia-repellendus', 'Laboriosam incidunt corrupti voluptatibus placeat perspiciatis similique.', 'Voluptate dolor rerum voluptas sit molestias. Voluptatem ut eos aperiam sapiente modi velit. Quia hic nihil eos magni.', 0, 1, 158, '2019-08-29 01:20:52', '2019-08-29 01:20:52', 2),
(12, 'https://www.stamm.net/consectetur-debitis-ullam-voluptates-voluptas-facere-numquam-alias', 'Aliquid ratione dolores illum dignissimos.', 'Est tenetur illo est dicta unde. Rem sint rerum sit sint consectetur repudiandae. Et vitae quam odio laudantium in architecto.', 1, 1, 260, '2019-08-29 01:20:52', '2019-08-29 01:20:52', 2),
(13, 'https://mertz.info/ut-labore-voluptate-in-eaque.html', 'Qui facere non modi et aspernatur reiciendis.', 'Vel est sit animi tenetur. Possimus consequatur qui facere ut quia id mollitia. Quo dolores id dolore sequi fugit.', 1, 1, 33, '2019-08-29 01:20:52', '2019-08-29 01:20:52', 6),
(14, 'http://www.harris.com/dicta-temporibus-ut-quo-impedit-qui.html', 'Voluptatum id quae dolorem ut officia totam.', 'Voluptatem aperiam non aut veritatis. Optio rem perspiciatis officia quae. Quasi reprehenderit et dignissimos cumque.', 1, 1, 140, '2019-08-29 01:20:52', '2019-08-29 01:20:52', 17),
(15, 'http://oreilly.com/tempora-illum-sunt-dolores-fugiat-et-est', 'Vel quibusdam minus provident enim nostrum.', 'Similique blanditiis est voluptatem perferendis quae. Ratione labore ullam perspiciatis officia est saepe molestiae. Exercitationem nisi aspernatur quia id possimus at perspiciatis.', 0, 1, 222, '2019-08-29 01:20:52', '2019-08-29 01:20:52', 13),
(16, 'http://www.barrows.com/molestiae-qui-magnam-praesentium-error-voluptatem-accusantium-voluptatem', 'Sit optio et reprehenderit iste omnis sit earum modi.', 'Eius non non quis quidem in et. Repellat et quibusdam autem non cumque voluptates. Explicabo quisquam rerum architecto atque.', 1, 1, 198, '2019-08-29 01:20:52', '2019-08-29 01:20:52', 11),
(17, 'http://www.kshlerin.com/voluptates-voluptatem-facilis-illum-quisquam-id-molestiae-quibusdam-qui', 'Omnis nemo et voluptate.', 'Voluptate et placeat voluptatem. Quidem ullam ipsa ea quam soluta. Quo quibusdam minima magni et ut.', 1, 1, 258, '2019-08-29 01:20:52', '2019-08-29 01:20:52', 4),
(18, 'https://www.batz.com/est-dicta-voluptatum-sed-dolor-impedit-quam', 'Quis explicabo excepturi et impedit eos.', 'Ut suscipit assumenda exercitationem dolorem voluptatem et ad. Laudantium atque voluptas velit doloribus quasi voluptate eum. Reprehenderit neque numquam omnis sunt repellendus.', 0, 1, 59, '2019-08-29 01:20:52', '2019-08-29 01:20:52', 13),
(19, 'http://www.hirthe.com/', 'Nesciunt nihil unde fuga eum.', 'Non sint fuga ullam beatae recusandae est et quia. Voluptatibus quas porro qui explicabo dignissimos velit eligendi. Consectetur reprehenderit ut aut velit architecto eum similique.', 0, 1, 255, '2019-08-29 01:20:52', '2019-08-29 01:20:52', 17),
(20, 'https://vonrueden.com/sit-molestias-tempora-et-tempore-aut-ab-et.html', 'Esse enim minus magnam et deserunt.', 'Impedit ut deserunt vero dolores consequuntur exercitationem assumenda. Ratione provident nulla aut quia. Blanditiis nesciunt unde necessitatibus est magnam error qui.', 0, 1, 103, '2019-08-29 01:20:52', '2019-08-29 01:20:52', 11),
(21, 'https://www.ledner.com/laudantium-optio-blanditiis-et-nesciunt', 'Omnis sit ea eum repellendus nostrum doloremque sed.', 'Accusantium et repudiandae dignissimos architecto adipisci. Perspiciatis sit voluptas cumque aut unde et non. Dolores reiciendis aspernatur repudiandae.', 0, 1, 119, '2019-08-29 01:20:52', '2019-08-29 01:20:52', 5),
(22, 'http://www.fisher.com/adipisci-adipisci-sit-delectus-nesciunt-velit-voluptatum', 'Eveniet dicta eos maxime quas.', 'Dolores dolores dolores qui et id. Beatae nobis et inventore perferendis voluptas. Expedita labore voluptatum aut eum ratione id voluptas.', 0, 1, 139, '2019-08-29 01:20:52', '2019-08-29 01:20:52', 3),
(23, 'https://rogahn.com/voluptatibus-quo-quasi-minus-sunt-optio.html', 'Aspernatur omnis exercitationem nisi quas consequatur sit ab.', 'Perferendis illum non in aut doloribus. Quas ea alias laborum dolorem molestias in. Impedit iure voluptatem aut eius natus sunt soluta.', 1, 1, 222, '2019-08-29 01:20:52', '2019-08-29 01:20:52', 15),
(24, 'http://www.king.com/consequatur-accusantium-blanditiis-aut-assumenda', 'Iure nihil itaque dolorem quia ipsam ipsam et ex.', 'Et fugiat nobis incidunt magni blanditiis eius labore. Quaerat iure cumque voluptate quia tempore aperiam quia. Ut repellat modi doloribus iusto tempora.', 1, 1, 21, '2019-08-29 01:20:52', '2019-08-29 01:20:52', 17),
(25, 'http://www.lueilwitz.com/', 'Sed velit qui qui.', 'Ad vitae dicta excepturi qui dolor et dolor. Doloremque quis voluptatibus veniam distinctio quos qui. Eius velit soluta sunt eos praesentium.', 1, 1, 71, '2019-08-29 01:20:52', '2019-08-29 01:20:52', 11),
(26, 'https://www.fay.com/aut-numquam-ut-aut', 'Quia cupiditate libero veritatis molestias voluptatem autem.', 'Sit reiciendis dolorem omnis laudantium. Odit ipsum quia quo ducimus odit. Non maiores dolorum debitis.', 1, 1, 97, '2019-08-29 01:20:52', '2019-08-29 01:20:52', 17),
(27, 'https://www.okon.com/similique-laudantium-quisquam-ipsam-accusantium-et-autem-dolores', 'Consequatur iusto qui exercitationem vitae esse eum.', 'Sed sint aut provident non. Repudiandae rerum delectus qui hic quisquam optio ducimus. Voluptates unde et quo debitis.', 0, 1, 34, '2019-08-29 01:20:52', '2019-08-29 01:20:52', 9),
(28, 'http://www.bahringer.biz/', 'Non aliquam modi non aut.', 'Eveniet est quisquam est consequatur sint a eligendi. Eum delectus eius eos qui et eos inventore. Pariatur voluptatem rerum ut incidunt dolor cupiditate et.', 1, 1, 40, '2019-08-29 01:20:52', '2019-08-29 01:20:52', 8),
(29, 'http://www.schmitt.com/temporibus-sed-corrupti-optio-provident.html', 'Dolor debitis qui in dolores repellat laborum assumenda est.', 'Ipsam tenetur corrupti aut harum autem. Mollitia quaerat dolores necessitatibus et ut voluptatem non. Vel similique occaecati magnam nostrum velit dolores rerum laborum.', 0, 1, 149, '2019-08-29 01:20:52', '2019-08-29 01:20:52', 16),
(30, 'http://davis.net/sint-sapiente-delectus-dolor-maiores-quis-omnis-deserunt', 'Porro fugit ut sunt voluptatem iste voluptatum.', 'Aliquam dignissimos qui necessitatibus voluptatem ut debitis. Qui cumque nulla aspernatur perspiciatis vitae. Voluptatem reiciendis aut ut ab soluta sit.', 1, 1, 217, '2019-08-29 01:20:52', '2019-08-29 01:20:52', 4),
(31, 'http://www.homenick.com/sit-necessitatibus-minima-magnam-molestiae-corrupti-odio', 'Deserunt consectetur distinctio itaque et provident porro.', 'Qui et sint molestiae molestiae praesentium. Nesciunt nobis consectetur modi quia dolore ducimus. Rerum id atque quia ab.', 1, 1, 47, '2019-08-29 01:20:52', '2019-08-29 01:20:52', 19),
(32, 'https://kessler.com/in-qui-est-adipisci-praesentium-quia-non-dolore.html', 'Vel exercitationem reprehenderit laboriosam voluptatibus iusto similique qui id.', 'Harum quis consequuntur culpa vel quia quod. Nulla saepe est quos culpa non consectetur laboriosam. Quas dolores ipsum atque quae corporis.', 0, 1, 45, '2019-08-29 01:20:52', '2019-08-29 01:20:52', 16),
(33, 'http://www.collier.biz/', 'Nam eum et maiores dolore dolorem voluptatem.', 'Et vel neque enim consequuntur adipisci aspernatur. Nobis vel fuga odit. Accusantium quo eum quia rem culpa.', 1, 1, 207, '2019-08-29 01:20:52', '2019-08-29 01:20:52', 19),
(34, 'https://www.stroman.com/neque-maxime-et-suscipit-quia-dolor-sit', 'Inventore explicabo est ipsam dolorem.', 'Corrupti accusantium minus recusandae. Odit dolor repellendus repellat ut eius et. Sit odio et dignissimos corporis ex blanditiis.', 0, 1, 16, '2019-08-29 01:20:52', '2019-08-29 01:20:52', 8),
(35, 'http://www.nolan.net/aut-et-dolorem-nihil-voluptatem', 'Illum ut molestiae quas animi iste dignissimos quibusdam velit.', 'Sed suscipit voluptatem ducimus dolorum sit exercitationem et illum. Corporis voluptatem neque doloribus nemo dolorem eos maxime. Deleniti quia sint recusandae dolor quia.', 0, 1, 127, '2019-08-29 01:20:52', '2019-08-29 01:20:52', 1),
(36, 'http://www.haley.info/', 'Enim voluptas beatae quidem.', 'Cumque quis maxime sapiente quibusdam. Eveniet aut eos quam consequatur libero. Repellendus velit ut reiciendis est officiis.', 1, 1, 135, '2019-08-29 01:20:52', '2019-08-29 01:20:52', 5),
(37, 'http://jacobson.net/repellat-sit-dolorum-maiores-a-assumenda', 'Nobis et a soluta voluptate perspiciatis eligendi.', 'Est optio quo nihil soluta id autem consequuntur. Laborum inventore quo qui ut fugiat quo. Culpa inventore nesciunt rerum ut quia ratione nobis laudantium.', 0, 1, 221, '2019-08-29 01:20:52', '2019-08-29 01:20:52', 1),
(38, 'https://huel.net/eum-reiciendis-itaque-sed-tenetur-mollitia-ducimus-occaecati-ut.html', 'Ipsam quae officiis numquam possimus dolorem quia pariatur eaque.', 'Beatae pariatur molestiae corporis occaecati asperiores voluptas. Repellat sint iusto ipsam. Voluptate dolor sit nisi veritatis.', 1, 1, 156, '2019-08-29 01:20:52', '2019-08-29 01:20:52', 17),
(39, 'http://schmitt.com/porro-veniam-quibusdam-ea-omnis', 'Quae voluptatem explicabo in repudiandae voluptatem.', 'Enim commodi autem dolor possimus omnis impedit sit. Quia atque voluptatem voluptatem et. Doloremque libero voluptas quasi ea praesentium rerum.', 1, 1, 95, '2019-08-29 01:20:52', '2019-08-29 01:20:52', 8),
(40, 'http://www.kessler.com/quisquam-minima-excepturi-ea-ullam', 'Ipsam tempora voluptate laboriosam commodi quibusdam temporibus nihil.', 'Quos nihil tempora distinctio velit unde. Alias qui eligendi mollitia laboriosam architecto quia libero. Eos consectetur eveniet et repellat ut.', 1, 1, 128, '2019-08-29 01:20:52', '2019-08-29 01:20:52', 18),
(41, 'http://adams.com/perferendis-dolor-modi-est-rem-facilis-veritatis-aut.html', 'Nesciunt voluptatem atque eum magnam.', 'Vero consequatur omnis quia. Sed quis aperiam expedita. Quia reprehenderit nemo laborum nam id.', 0, 1, 114, '2019-08-29 01:20:52', '2019-08-29 01:20:52', 14),
(42, 'https://www.hoppe.biz/eveniet-tempora-perspiciatis-non-dolor', 'Hic cupiditate eum aut harum.', 'Nihil ad voluptatum numquam velit alias et animi. Est ut saepe reiciendis sit distinctio rerum vel accusamus. Quia vel illum tempora sapiente distinctio autem.', 1, 1, 173, '2019-08-29 01:20:52', '2019-08-29 01:20:52', 8),
(43, 'http://www.streich.com/commodi-est-dolorem-ad-nihil-quod', 'Reprehenderit cupiditate sed dignissimos consequatur possimus.', 'Sed minima aut voluptatem suscipit. Architecto ex quia quasi voluptatibus. Provident quod ducimus nostrum adipisci.', 0, 1, 213, '2019-08-29 01:20:52', '2019-08-29 01:20:52', 14),
(44, 'https://walsh.biz/corrupti-cum-voluptatem-aut-maxime-veniam-inventore.html', 'A tenetur nostrum eius dolores sit.', 'Quia consequuntur et quia dicta. Reiciendis dolores quidem ut maxime repellat ut. Totam ipsa repudiandae quisquam necessitatibus similique.', 0, 1, 69, '2019-08-29 01:20:52', '2019-08-29 01:20:52', 8),
(45, 'http://dach.org/animi-incidunt-accusantium-et-impedit', 'Est occaecati nesciunt magni architecto.', 'Sapiente et est voluptatem doloremque veritatis aliquam. Inventore eum aliquid quia quia neque odit. Repellendus eaque esse rerum maxime consequuntur nihil sunt.', 1, 1, 69, '2019-08-29 01:20:52', '2019-08-29 01:20:52', 13),
(46, 'https://www.ohara.com/ut-eum-omnis-quam-dicta-laudantium-cupiditate-et', 'Qui sed ut provident nulla nam.', 'Et et officiis dolor sit. Nemo consequatur voluptas inventore nesciunt qui ut dolores. Exercitationem dolores illo sapiente mollitia.', 1, 1, 221, '2019-08-29 01:20:52', '2019-08-29 01:20:52', 12),
(47, 'http://witting.org/mollitia-voluptas-id-laborum-neque', 'Corrupti quia consequatur est qui accusantium nostrum doloremque.', 'Quidem illo quis unde blanditiis. Voluptatem facilis commodi quia vero. At dolores quis non velit sequi accusantium.', 0, 1, 169, '2019-08-29 01:20:52', '2019-08-29 01:20:52', 5),
(48, 'http://friesen.com/in-id-sed-excepturi-pariatur-quo-neque', 'Dolorum incidunt veritatis maiores aut.', 'Voluptatem nulla doloribus velit id fuga ab. Tenetur veritatis dignissimos pariatur rerum est. Laboriosam corporis aut esse assumenda eligendi qui.', 1, 1, 45, '2019-08-29 01:20:52', '2019-08-29 01:20:52', 7),
(49, 'https://www.nicolas.biz/rerum-deleniti-quo-aperiam-cupiditate-sit-ratione-ullam', 'Quaerat aut est est tenetur consequuntur.', 'Itaque sed sint et voluptatibus eius at. Sapiente qui vitae est dolorum quia et voluptatem iusto. Magni consequatur repellat eum et laudantium sit.', 0, 1, 10, '2019-08-29 01:20:52', '2019-08-29 01:20:52', 19),
(50, 'https://www.emard.com/eaque-aut-qui-nihil-sed-consequatur-commodi-quidem', 'Incidunt tenetur consequatur incidunt ab officia tempore.', 'Voluptatem dolorem dicta aut unde ut. Sed voluptatem velit voluptas optio. Non aut sint molestiae vitae.', 0, 1, 154, '2019-08-29 01:20:52', '2019-08-29 01:20:52', 19);
-- --------------------------------------------------------
--
-- Table structure for table `schools`
--
CREATE TABLE `schools` (
`id` int(10) UNSIGNED NOT NULL,
`name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`established` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`about` text COLLATE utf8mb4_unicode_ci NOT NULL,
`medium` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`code` int(11) NOT NULL,
`theme` 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 `schools`
--
INSERT INTO `schools` (`id`, `name`, `established`, `about`, `medium`, `code`, `theme`, `created_at`, `updated_at`) VALUES
(1, '<NAME>', '', 'Voluptas quas quibusdam accusamus doloremque occaecati. Maiores harum doloremque repudiandae asperiores. Aspernatur illo enim vero excepturi.', 'english', 19945377, 'flatly', '2019-08-29 01:20:31', '2019-08-29 01:20:31'),
(2, '<NAME> PhD', '', 'Ut reiciendis a voluptatem voluptate est quia. Et repellat voluptatem reiciendis voluptas rerum. Praesentium quod quis cupiditate alias aut modi id.', 'english', 19114590, 'flatly', '2019-08-29 01:21:09', '2019-08-29 01:21:09'),
(3, '<NAME>', '', 'Corporis earum ipsum iure quas aut et. Cum nihil ex voluptatibus aut saepe ratione molestiae. Cupiditate ullam a praesentium.', 'bangla', 19668980, 'flatly', '2019-08-29 01:21:09', '2019-08-29 01:21:09'),
(4, '<NAME>', '', 'Dolor tenetur ut exercitationem minus. Sit nemo repellendus ea ut voluptatem est earum. Qui consequatur quas repellat doloremque consequatur.', 'english', 19166940, 'flatly', '2019-08-29 01:21:09', '2019-08-29 01:21:09'),
(5, '<NAME>', '', 'Sunt sed qui voluptatem ut cupiditate. Quaerat rerum unde officia odit. Eos adipisci sed deleniti est voluptatem.', 'english', 19322590, 'flatly', '2019-08-29 01:21:09', '2019-08-29 01:21:09'),
(6, 'Dr. <NAME>', '', 'Mollitia exercitationem maiores commodi cum. Ipsam earum exercitationem voluptas corrupti iste aliquid. Eos consequatur voluptatum asperiores aut praesentium sunt est.', 'english', 19323810, 'flatly', '2019-08-29 01:21:09', '2019-08-29 01:21:09'),
(7, '<NAME>', '', 'Est dolores unde unde quis odio voluptas. Itaque ut dicta et ut rerum quo pariatur. Sit expedita explicabo quisquam consequatur sint totam.', 'bangla', 19927430, 'flatly', '2019-08-29 01:21:10', '2019-08-29 01:21:10'),
(8, '<NAME>', '', 'Et quo deserunt qui ipsa temporibus hic dignissimos. Sed modi praesentium officia autem perferendis non ipsa. Ab assumenda consectetur temporibus eos enim.', 'english', 19147927, 'flatly', '2019-08-29 01:21:10', '2019-08-29 01:21:10'),
(9, 'Prof. <NAME> I', '', 'Ipsa non aspernatur ea iste et. Nulla consequuntur quia aut blanditiis. Facere quod qui recusandae ab.', 'english', 19319598, 'flatly', '2019-08-29 01:21:10', '2019-08-29 01:21:10'),
(10, 'Dr. <NAME> MD', '', 'Exercitationem id ex illum voluptatem rem dicta tenetur. Numquam minima quia architecto aliquam. Aliquam exercitationem est totam dolorum.', 'bangla', 19119984, 'flatly', '2019-08-29 01:21:10', '2019-08-29 01:21:10'),
(11, '<NAME>', '', 'Asperiores ut debitis cum sapiente aut ea. Ex et a voluptatibus molestiae commodi. Deserunt provident sequi et labore.', 'english', 19861272, 'flatly', '2019-08-29 01:21:10', '2019-08-29 01:21:10'),
(12, 'Prof. <NAME> Jr.', '', 'Sunt id ea et ipsum ipsa perspiciatis. Tenetur earum similique aut quis numquam aspernatur aut. Ex quos quia quo consequuntur sunt delectus sit.', 'english', 19441200, 'flatly', '2019-08-29 01:21:10', '2019-08-29 01:21:10'),
(13, '<NAME> II', '', 'Eligendi voluptas nesciunt dolor esse. Doloremque aut aut quisquam et ipsam. Ut velit similique illum et.', 'bangla', 19638258, 'flatly', '2019-08-29 01:21:10', '2019-08-29 01:21:10'),
(14, '<NAME>', '', 'Qui quisquam similique officiis et similique qui. Inventore tempore at consequatur sint debitis nulla. Veritatis facere aut totam autem.', 'bangla', 19288120, 'flatly', '2019-08-29 01:21:10', '2019-08-29 01:21:10'),
(15, '<NAME>', '', 'Qui quibusdam ipsum iusto molestiae. Quis animi ullam dolorem asperiores officiis enim voluptas. Quod laudantium rerum sapiente ad autem voluptas laborum.', 'english', 19216895, 'flatly', '2019-08-29 01:21:10', '2019-08-29 01:21:10'),
(16, '<NAME>', '', 'Dolore ducimus temporibus nesciunt. Repellendus velit sed ut deleniti exercitationem. Rerum voluptatibus doloribus dolores aut aut recusandae.', 'english', 19310630, 'flatly', '2019-08-29 01:21:10', '2019-08-29 01:21:10'),
(17, '<NAME>', '', 'Nostrum non nulla earum deleniti molestiae facilis est voluptas. Quisquam nostrum repudiandae voluptate. Et eaque provident quod ut voluptas illum adipisci.', 'english', 19603322, 'flatly', '2019-08-29 01:21:10', '2019-08-29 01:21:10'),
(18, 'Prof. <NAME>', '', 'Sit molestiae consequatur ex reprehenderit nobis doloremque. Consequatur nihil aperiam ut in repellat saepe. Officiis aspernatur voluptatem vero tenetur delectus magnam iure.', 'bangla', 19581915, 'flatly', '2019-08-29 01:21:10', '2019-08-29 01:21:10'),
(19, 'Mrs. <NAME> Jr.', '', 'Maxime quo qui cum nesciunt minima. Quae id dignissimos corporis sit sed commodi nobis. Ut et sed nisi.', 'english', 19273279, 'flatly', '2019-08-29 01:21:10', '2019-08-29 01:21:10'),
(20, '<NAME>', '', 'Delectus sit est saepe libero qui mollitia autem. Corporis ratione sequi voluptas dignissimos cupiditate. Totam ipsum et maxime quasi magnam porro omnis perspiciatis.', 'english', 19294632, 'flatly', '2019-08-29 01:21:10', '2019-08-29 01:21:10'),
(21, 'Prof. <NAME>', '', 'Nisi magni qui natus accusantium ut assumenda omnis voluptas. Ut velit eaque molestiae nobis. Ipsum autem iure doloribus animi dolorem.', 'bangla', 19569379, 'flatly', '2019-08-29 01:21:10', '2019-08-29 01:21:10'),
(22, '<NAME>', '', 'Asperiores ab sit debitis vel provident sed. Nisi voluptate reprehenderit beatae optio error. Non aut sed exercitationem suscipit ab pariatur illo.', 'bangla', 19276997, 'flatly', '2019-08-29 01:21:10', '2019-08-29 01:21:10'),
(23, '<NAME>', '', 'Temporibus deleniti maiores nobis pariatur laborum dolor facere et. Quasi quae similique eligendi dolore nihil minus porro ut. Minus molestiae hic est.', 'bangla', 19172345, 'flatly', '2019-08-29 01:21:10', '2019-08-29 01:21:10'),
(24, 'Mrs. <NAME> I', '', 'Quisquam et qui delectus voluptate. Rerum et dolorum saepe ex natus eos. Est dolore commodi qui voluptas commodi sit aut.', 'english', 19282324, 'flatly', '2019-08-29 01:21:10', '2019-08-29 01:21:10'),
(25, '<NAME>', '', 'Similique laudantium consequatur enim est eligendi facere molestiae. Fuga recusandae tenetur eaque officia distinctio nihil. Qui sit id omnis nobis.', 'bangla', 19319929, 'flatly', '2019-08-29 01:21:10', '2019-08-29 01:21:10'),
(26, 'Mr. <NAME>', '', 'Voluptatum architecto excepturi cum cumque. Quis pariatur consequatur tempora sequi eos in. Quisquam dolores officiis consequatur mollitia rerum numquam culpa.', 'english', 19158290, 'flatly', '2019-08-29 01:21:10', '2019-08-29 01:21:10'),
(27, 'Dr. <NAME> DDS', '', 'Amet ea cum qui. Et explicabo facere rerum iusto magnam necessitatibus quia. Optio voluptatem enim eos minus.', 'english', 19337864, 'flatly', '2019-08-29 01:21:10', '2019-08-29 01:21:10'),
(28, '<NAME>', '', 'Quasi libero voluptas saepe. Id quaerat et voluptate sint non reiciendis est. Ut quaerat non ab et nulla.', 'bangla', 19100345, 'flatly', '2019-08-29 01:21:10', '2019-08-29 01:21:10'),
(29, 'Ms. <NAME>', '', 'Architecto et eveniet recusandae sint vel placeat quidem iusto. Veniam laborum repellat vel molestiae. Ad voluptatem consequuntur et sed adipisci.', 'english', 19871772, 'flatly', '2019-08-29 01:21:10', '2019-08-29 01:21:10'),
(30, '<NAME>', '', 'Unde sed similique ut omnis ullam doloribus. Mollitia debitis temporibus aut. Tempora nam sunt quidem nisi.', 'bangla', 19322759, 'flatly', '2019-08-29 01:21:11', '2019-08-29 01:21:11'),
(31, '<NAME>', '', 'Molestiae fugiat est autem quia. Porro velit at placeat distinctio. Et omnis dignissimos qui praesentium nostrum est qui.', 'bangla', 19784271, 'flatly', '2019-08-29 01:21:11', '2019-08-29 01:21:11'),
(32, '<NAME>', '', 'Reiciendis eius voluptatum aut voluptas repudiandae sed accusantium. Ad ullam soluta vel ut. Quidem qui repudiandae magnam voluptatem perferendis.', 'bangla', 19328693, 'flatly', '2019-08-29 01:21:11', '2019-08-29 01:21:11'),
(33, '<NAME>', '', 'Ab consequuntur iusto temporibus laboriosam maxime deleniti. Ea ex ipsa asperiores voluptatem. Consequuntur eveniet repudiandae incidunt ullam eos odit necessitatibus.', 'english', 19365800, 'flatly', '2019-08-29 01:21:11', '2019-08-29 01:21:11'),
(34, 'Mrs. <NAME> I', '', 'Quo similique molestiae facere vel sapiente. Non magnam dolores ipsa ut quia. Et dignissimos adipisci veritatis alias repellat accusamus minus.', 'bangla', 19114740, 'flatly', '2019-08-29 01:21:11', '2019-08-29 01:21:11'),
(35, 'Prof. <NAME> Jr.', '', 'Laudantium ad velit animi sequi non et. Et voluptatem enim veniam velit et at enim voluptatum. Qui rerum corporis quasi quia voluptatem velit sed.', 'english', 19309681, 'flatly', '2019-08-29 01:21:11', '2019-08-29 01:21:11'),
(36, '<NAME>', '', 'Nostrum nemo voluptas vel vel deserunt consequatur. Cumque quia voluptatem dolorem ut cum aspernatur. Aliquid id est dolore officiis magnam debitis.', 'english', 19205929, 'flatly', '2019-08-29 01:21:11', '2019-08-29 01:21:11'),
(37, 'Dr. <NAME>', '', 'Molestiae neque optio molestiae neque sequi dolorum qui. Velit harum et amet. Reprehenderit quis excepturi accusantium delectus quos aut vitae.', 'bangla', 19304702, 'flatly', '2019-08-29 01:21:11', '2019-08-29 01:21:11'),
(38, '<NAME>', '', 'Explicabo modi aut accusantium ex. Et cum est id natus eos veniam rem blanditiis. Facilis repellendus omnis cupiditate non numquam nam.', 'bangla', 19109520, 'flatly', '2019-08-29 01:21:11', '2019-08-29 01:21:11'),
(39, 'Dr. <NAME> PhD', '', 'Sit quam quia ad at nostrum. Est debitis ducimus ex numquam voluptas illo debitis. Praesentium minus rerum veritatis commodi voluptas voluptas ab.', 'english', 19168372, 'flatly', '2019-08-29 01:21:11', '2019-08-29 01:21:11'),
(40, 'Dr. <NAME> II', '', 'Dolores aut quo nihil voluptas voluptatem saepe debitis. Laudantium exercitationem voluptate aspernatur enim. Explicabo optio sunt aliquam vero sed nobis dolore vel.', 'english', 19117521, 'flatly', '2019-08-29 01:21:11', '2019-08-29 01:21:11'),
(41, 'Mrs. <NAME> IV', '', 'Ad sunt ut culpa natus tenetur nihil non. Delectus dolor natus praesentium corporis non enim. Rem animi optio commodi alias atque qui.', 'english', 19548838, 'flatly', '2019-08-29 01:21:11', '2019-08-29 01:21:11'),
(42, '<NAME>', '', 'Eos dolorem non omnis illo. Et et alias sed eum. Ex illo quia modi corrupti laboriosam amet.', 'bangla', 19123359, 'flatly', '2019-08-29 01:21:11', '2019-08-29 01:21:11'),
(43, 'Ms. <NAME> Sr.', '', 'Beatae enim sunt eligendi illo ea ab excepturi. Rerum tempora esse voluptas velit. Eum iste rerum enim eaque fugiat.', 'bangla', 19935420, 'flatly', '2019-08-29 01:21:11', '2019-08-29 01:21:11'),
(44, '<NAME>', '', 'Maiores officia suscipit et consectetur officiis ipsum doloremque. Porro quas voluptas consequatur debitis fugiat. Officia voluptatem quod quam quo commodi porro accusantium maxime.', 'bangla', 19473959, 'flatly', '2019-08-29 01:21:11', '2019-08-29 01:21:11'),
(45, 'Mrs. <NAME> I', '', 'Aut iure sed ut porro aut qui. Omnis qui veniam ut. Perspiciatis mollitia reiciendis suscipit aut quia corporis.', 'bangla', 19334225, 'flatly', '2019-08-29 01:21:11', '2019-08-29 01:21:11'),
(46, '<NAME>', '', 'Vel consequuntur sunt ut quia qui accusantium. Vel dolores voluptatem nisi accusantium facilis consequuntur ullam. Qui et rem et nulla sapiente molestiae.', 'bangla', 19227094, 'flatly', '2019-08-29 01:21:11', '2019-08-29 01:21:11'),
(47, '<NAME>', '', 'Amet et omnis dolores minima qui eius exercitationem explicabo. Sit voluptatem illo eos vero. Et sed fuga itaque.', 'english', 19893171, 'flatly', '2019-08-29 01:21:11', '2019-08-29 01:21:11'),
(48, '<NAME>', '', 'Modi voluptates similique perspiciatis ex aliquid quisquam. In reiciendis esse doloribus qui reprehenderit. Ex autem et aut et.', 'bangla', 19247748, 'flatly', '2019-08-29 01:21:11', '2019-08-29 01:21:11'),
(49, 'Dr. <NAME> MD', '', 'Et consectetur et eaque consequatur facilis rerum. Est voluptates vel provident consequatur qui. Iure exercitationem similique nulla explicabo et voluptatum eum.', 'bangla', 19788929, 'flatly', '2019-08-29 01:21:11', '2019-08-29 01:21:11'),
(50, '<NAME>', '', 'In totam incidunt et ea. Et molestiae eos vero tempora vel et sit rerum. Repellendus omnis enim exercitationem quia facere.', 'english', 19214076, 'flatly', '2019-08-29 01:21:11', '2019-08-29 01:21:11'),
(51, '<NAME> Jr.', '', 'Corporis asperiores incidunt quo cupiditate et. Dolorum alias exercitationem maxime expedita vel vero. Voluptas est odit autem excepturi repellendus impedit.', 'bangla', 19186635, 'flatly', '2019-08-29 01:21:11', '2019-08-29 01:21:11');
-- --------------------------------------------------------
--
-- Table structure for table `sections`
--
CREATE TABLE `sections` (
`id` int(10) UNSIGNED NOT NULL,
`section_number` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`room_number` int(11) NOT NULL,
`class_id` int(10) UNSIGNED NOT NULL,
`user_id` int(10) UNSIGNED NOT NULL DEFAULT '0',
`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 `sections`
--
INSERT INTO `sections` (`id`, `section_number`, `room_number`, `class_id`, `user_id`, `created_at`, `updated_at`) VALUES
(1, 'A', 9, 5, 0, '2019-08-29 01:20:32', '2019-08-29 01:20:32'),
(2, 'H', 6, 12, 0, '2019-08-29 01:20:32', '2019-08-29 01:20:32'),
(3, 'L', 2, 5, 0, '2019-08-29 01:20:32', '2019-08-29 01:20:32'),
(4, 'E', 6, 5, 0, '2019-08-29 01:20:32', '2019-08-29 01:20:32'),
(5, 'F', 2, 2, 0, '2019-08-29 01:20:32', '2019-08-29 01:20:32'),
(6, 'E', 6, 5, 0, '2019-08-29 01:20:32', '2019-08-29 01:20:32'),
(7, 'K', 5, 6, 0, '2019-08-29 01:20:32', '2019-08-29 01:20:32'),
(8, 'M', 7, 10, 0, '2019-08-29 01:20:32', '2019-08-29 01:20:32'),
(9, 'I', 3, 3, 0, '2019-08-29 01:20:32', '2019-08-29 01:20:32'),
(10, 'M', 4, 8, 0, '2019-08-29 01:20:32', '2019-08-29 01:20:32'),
(11, 'E', 8, 9, 0, '2019-08-29 01:20:32', '2019-08-29 01:20:32'),
(12, 'C', 3, 12, 0, '2019-08-29 01:20:32', '2019-08-29 01:20:32'),
(13, 'J', 5, 4, 0, '2019-08-29 01:20:32', '2019-08-29 01:20:32'),
(14, 'M', 8, 12, 0, '2019-08-29 01:20:32', '2019-08-29 01:20:32'),
(15, 'E', 7, 5, 0, '2019-08-29 01:20:32', '2019-08-29 01:20:32'),
(16, 'J', 4, 6, 0, '2019-08-29 01:20:32', '2019-08-29 01:20:32'),
(17, 'I', 4, 4, 0, '2019-08-29 01:20:32', '2019-08-29 01:20:32'),
(18, 'J', 5, 1, 0, '2019-08-29 01:20:32', '2019-08-29 01:20:32'),
(19, 'M', 7, 5, 0, '2019-08-29 01:20:32', '2019-08-29 01:20:32'),
(20, 'E', 9, 8, 0, '2019-08-29 01:20:32', '2019-08-29 01:20:32');
-- --------------------------------------------------------
--
-- Table structure for table `student_board_exams`
--
CREATE TABLE `student_board_exams` (
`id` int(10) UNSIGNED NOT NULL,
`student_id` int(10) UNSIGNED NOT NULL,
`exam_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`group` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`roll` int(11) NOT NULL,
`registration` int(11) NOT NULL,
`session` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`board` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`passing_year` int(11) NOT NULL,
`institution_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`gpa` double(8,2) NOT NULL,
`user_id` int(10) UNSIGNED 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 `student_board_exams`
--
INSERT INTO `student_board_exams` (`id`, `student_id`, `exam_name`, `group`, `roll`, `registration`, `session`, `board`, `passing_year`, `institution_name`, `gpa`, `user_id`, `created_at`, `updated_at`) VALUES
(1, 254, 'JSC', 'arts', 3888626, 4424068, '2018-19', 'dhaka', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:29', '2019-08-29 01:21:29'),
(2, 113, 'A Level', 'commerce', 245390, 5835270, '2018-19', 'rajsahi', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:29', '2019-08-29 01:21:29'),
(3, 215, 'O Level', 'commerce', 8673030, 8180133, '2018-19', 'sylhet', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:29', '2019-08-29 01:21:29'),
(4, 101, 'A Level', 'science', 6627754, 1480588, '2018-19', 'sylhet', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:29', '2019-08-29 01:21:29'),
(5, 138, 'O Level', 'commerce', 8802632, 7879328, '2018-19', 'dhaka', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:29', '2019-08-29 01:21:29'),
(6, 88, 'A Level', 'science', 9064180, 1365901, '2018-19', 'rajsahi', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:29', '2019-08-29 01:21:29'),
(7, 202, 'A Level', 'commerce', 6991076, 3315400, '2018-19', 'sylhet', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:29', '2019-08-29 01:21:29'),
(8, 136, 'A Level', 'arts', 1906234, 8679454, '2018-19', 'dhaka', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:29', '2019-08-29 01:21:29'),
(9, 94, 'JSC', 'science', 8022378, 9745320, '2018-19', 'dhaka', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:29', '2019-08-29 01:21:29'),
(10, 87, 'A Level', 'arts', 9616412, 8316158, '2018-19', 'dhaka', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:29', '2019-08-29 01:21:29'),
(11, 191, 'JSC', 'arts', 5973548, 5315279, '2018-19', 'dhaka', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:29', '2019-08-29 01:21:29'),
(12, 205, 'O Level', 'arts', 7779883, 3670255, '2018-19', 'dhaka', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:29', '2019-08-29 01:21:29'),
(13, 137, 'SSC', 'science', 7227638, 1060237, '2018-19', 'dhaka', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:29', '2019-08-29 01:21:29'),
(14, 261, 'A Level', 'commerce', 7568338, 4277676, '2018-19', 'rajsahi', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:29', '2019-08-29 01:21:29'),
(15, 91, 'SSC', 'science', 281960, 420228, '2018-19', 'dhaka', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:29', '2019-08-29 01:21:29'),
(16, 212, 'JSC', 'science', 5395123, 1686353, '2018-19', 'rajsahi', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:29', '2019-08-29 01:21:29'),
(17, 95, 'O Level', 'arts', 5654263, 1914689, '2018-19', 'dhaka', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:29', '2019-08-29 01:21:29'),
(18, 118, 'JSC', 'science', 8559671, 1707881, '2018-19', 'dhaka', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:29', '2019-08-29 01:21:29'),
(19, 92, 'SSC', 'science', 9658162, 2924674, '2018-19', 'rajsahi', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:29', '2019-08-29 01:21:29'),
(20, 177, 'A Level', 'science', 8569322, 7802043, '2018-19', 'dhaka', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:29', '2019-08-29 01:21:29'),
(21, 107, 'SSC', 'science', 8663840, 1167751, '2018-19', 'dhaka', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:29', '2019-08-29 01:21:29'),
(22, 212, 'A Level', 'commerce', 9282068, 221140, '2018-19', 'dhaka', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:29', '2019-08-29 01:21:29'),
(23, 93, 'JSC', 'arts', 905245, 7724912, '2018-19', 'dhaka', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:29', '2019-08-29 01:21:29'),
(24, 81, 'O Level', 'commerce', 9135599, 4112936, '2018-19', 'dhaka', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:29', '2019-08-29 01:21:29'),
(25, 202, 'O Level', 'arts', 1374603, 241423, '2018-19', 'dhaka', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:29', '2019-08-29 01:21:29'),
(26, 236, 'SSC', 'commerce', 7784426, 7748639, '2018-19', 'sylhet', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:29', '2019-08-29 01:21:29'),
(27, 191, 'JSC', 'commerce', 7493970, 7583513, '2018-19', 'sylhet', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:29', '2019-08-29 01:21:29'),
(28, 62, 'A Level', 'commerce', 1159483, 9503039, '2018-19', 'dhaka', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:29', '2019-08-29 01:21:29'),
(29, 67, 'SSC', 'science', 3587083, 9835217, '2018-19', 'sylhet', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:29', '2019-08-29 01:21:29'),
(30, 119, 'O Level', 'arts', 3485588, 1673052, '2018-19', 'rajsahi', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:29', '2019-08-29 01:21:29'),
(31, 180, 'JSC', 'science', 7855642, 882949, '2018-19', 'dhaka', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:29', '2019-08-29 01:21:29'),
(32, 235, 'SSC', 'arts', 1835183, 7050038, '2018-19', 'dhaka', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:29', '2019-08-29 01:21:29'),
(33, 232, 'A Level', 'arts', 8414053, 7967777, '2018-19', 'sylhet', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:29', '2019-08-29 01:21:29'),
(34, 144, 'O Level', 'science', 4062823, 5007865, '2018-19', 'dhaka', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:29', '2019-08-29 01:21:29'),
(35, 160, 'A Level', 'science', 7673398, 2104723, '2018-19', 'sylhet', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:29', '2019-08-29 01:21:29'),
(36, 236, 'O Level', 'arts', 3435131, 2336007, '2018-19', 'dhaka', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:29', '2019-08-29 01:21:29'),
(37, 62, 'A Level', 'science', 1283132, 1840476, '2018-19', 'sylhet', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:29', '2019-08-29 01:21:29'),
(38, 81, 'JSC', 'arts', 6561763, 8567571, '2018-19', 'dhaka', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:29', '2019-08-29 01:21:29'),
(39, 122, 'O Level', 'commerce', 8090260, 5262300, '2018-19', 'dhaka', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:29', '2019-08-29 01:21:29'),
(40, 83, 'JSC', 'arts', 3602183, 2062495, '2018-19', 'dhaka', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:29', '2019-08-29 01:21:29'),
(41, 119, 'O Level', 'arts', 9836345, 9565290, '2018-19', 'sylhet', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:29', '2019-08-29 01:21:29'),
(42, 192, 'JSC', 'commerce', 3689128, 8237247, '2018-19', 'sylhet', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:29', '2019-08-29 01:21:29'),
(43, 197, 'O Level', 'commerce', 9600239, 4086183, '2018-19', 'sylhet', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:29', '2019-08-29 01:21:29'),
(44, 99, 'O Level', 'commerce', 5979156, 9233404, '2018-19', 'dhaka', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:29', '2019-08-29 01:21:29'),
(45, 101, 'SSC', 'science', 6111127, 4716075, '2018-19', 'sylhet', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:29', '2019-08-29 01:21:29'),
(46, 160, 'O Level', 'commerce', 6508223, 1147697, '2018-19', 'sylhet', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:29', '2019-08-29 01:21:29'),
(47, 108, 'SSC', 'science', 5257305, 261553, '2018-19', 'dhaka', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:29', '2019-08-29 01:21:29'),
(48, 68, 'SSC', 'arts', 3783770, 4473712, '2018-19', 'rajsahi', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:29', '2019-08-29 01:21:29'),
(49, 198, 'A Level', 'science', 7222919, 2989610, '2018-19', 'dhaka', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(50, 192, 'A Level', 'science', 7756372, 4090886, '2018-19', 'dhaka', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(51, 173, 'JSC', 'commerce', 9331945, 4069277, '2018-19', 'dhaka', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(52, 86, 'O Level', 'commerce', 6839618, 1469812, '2018-19', 'dhaka', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(53, 151, 'O Level', 'commerce', 3341370, 5942418, '2018-19', 'rajsahi', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(54, 134, 'SSC', 'arts', 1078220, 5431656, '2018-19', 'rajsahi', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(55, 232, 'O Level', 'arts', 4369690, 9839644, '2018-19', 'rajsahi', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(56, 255, 'JSC', 'arts', 2744390, 8342, '2018-19', 'dhaka', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(57, 149, 'A Level', 'science', 9545663, 7293734, '2018-19', 'sylhet', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(58, 169, 'A Level', 'commerce', 7702350, 6199137, '2018-19', 'rajsahi', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(59, 130, 'SSC', 'arts', 661377, 6425494, '2018-19', 'rajsahi', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(60, 118, 'SSC', 'commerce', 7619938, 4536265, '2018-19', 'rajsahi', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(61, 146, 'O Level', 'arts', 5811828, 5421119, '2018-19', 'sylhet', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(62, 179, 'SSC', 'science', 9000582, 2785465, '2018-19', 'rajsahi', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(63, 248, 'A Level', 'science', 5027178, 4874543, '2018-19', 'sylhet', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(64, 222, 'SSC', 'commerce', 3581590, 6946304, '2018-19', 'dhaka', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(65, 83, 'A Level', 'science', 7247414, 9839820, '2018-19', 'dhaka', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(66, 70, 'O Level', 'arts', 6455505, 3110923, '2018-19', 'dhaka', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(67, 252, 'A Level', 'arts', 9651626, 3752824, '2018-19', 'dhaka', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(68, 209, 'O Level', 'commerce', 6626643, 4177824, '2018-19', 'sylhet', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(69, 185, 'O Level', 'science', 8202290, 479534, '2018-19', 'sylhet', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(70, 253, 'A Level', 'arts', 5153204, 7426002, '2018-19', 'dhaka', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(71, 120, 'SSC', 'commerce', 5003896, 7746635, '2018-19', 'sylhet', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(72, 93, 'SSC', 'arts', 1676191, 4410732, '2018-19', 'dhaka', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(73, 150, 'JSC', 'arts', 1311255, 6815219, '2018-19', 'sylhet', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(74, 107, 'O Level', 'commerce', 2573791, 9201056, '2018-19', 'dhaka', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(75, 140, 'O Level', 'science', 6082752, 7021422, '2018-19', 'dhaka', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(76, 180, 'JSC', 'science', 1077679, 9367001, '2018-19', 'sylhet', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(77, 201, 'A Level', 'science', 4953688, 66927, '2018-19', 'rajsahi', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(78, 107, 'A Level', 'arts', 2809964, 2408261, '2018-19', 'dhaka', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(79, 205, 'SSC', 'arts', 4202608, 8904768, '2018-19', 'rajsahi', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(80, 242, 'A Level', 'arts', 5389514, 5248109, '2018-19', 'sylhet', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(81, 234, 'JSC', 'commerce', 9671043, 8602574, '2018-19', 'sylhet', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(82, 111, 'O Level', 'commerce', 6533659, 2024122, '2018-19', 'rajsahi', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(83, 216, 'SSC', 'commerce', 7424723, 5280639, '2018-19', 'rajsahi', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(84, 181, 'JSC', 'science', 7700634, 5336791, '2018-19', 'dhaka', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(85, 260, 'O Level', 'arts', 3882135, 2594273, '2018-19', 'dhaka', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(86, 118, 'O Level', 'science', 8159598, 3136766, '2018-19', 'dhaka', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(87, 162, 'JSC', 'commerce', 9635223, 7626344, '2018-19', 'sylhet', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(88, 63, 'JSC', 'science', 3025847, 9926161, '2018-19', 'sylhet', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(89, 163, 'JSC', 'science', 8415995, 1012448, '2018-19', 'rajsahi', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(90, 131, 'O Level', 'commerce', 3224067, 8125172, '2018-19', 'sylhet', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(91, 193, 'JSC', 'commerce', 1000204, 3320250, '2018-19', 'dhaka', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(92, 78, 'O Level', 'commerce', 6964304, 7551212, '2018-19', 'rajsahi', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(93, 78, 'O Level', 'science', 5381717, 3164119, '2018-19', 'sylhet', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(94, 157, 'A Level', 'commerce', 6644798, 9205941, '2018-19', 'dhaka', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(95, 239, 'SSC', 'science', 3717471, 9426262, '2018-19', 'dhaka', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(96, 256, 'A Level', 'arts', 4798218, 4892546, '2018-19', 'sylhet', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(97, 157, 'O Level', 'science', 7458478, 7310825, '2018-19', 'sylhet', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(98, 248, 'SSC', 'arts', 9188422, 6893496, '2018-19', 'dhaka', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(99, 137, 'O Level', 'science', 7207735, 5968074, '2018-19', 'sylhet', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(100, 77, 'O Level', 'arts', 5549535, 395098, '2018-19', 'rajsahi', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(101, 186, 'JSC', 'arts', 191358, 2700393, '2018-19', 'rajsahi', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(102, 192, 'O Level', 'science', 4657625, 8325703, '2018-19', 'sylhet', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(103, 114, 'JSC', 'commerce', 2782729, 1668856, '2018-19', 'rajsahi', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(104, 183, 'JSC', 'commerce', 797394, 390484, '2018-19', 'sylhet', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(105, 256, 'O Level', 'arts', 1630704, 918763, '2018-19', 'sylhet', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(106, 250, 'O Level', 'science', 6907136, 9329375, '2018-19', 'sylhet', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(107, 249, 'O Level', 'science', 7097243, 9594775, '2018-19', 'sylhet', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(108, 250, 'O Level', 'science', 9184709, 9535416, '2018-19', 'rajsahi', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(109, 99, 'A Level', 'commerce', 2213805, 5121245, '2018-19', 'rajsahi', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(110, 123, 'O Level', 'science', 9711414, 6540931, '2018-19', 'rajsahi', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(111, 248, 'O Level', 'arts', 3892178, 1254831, '2018-19', 'rajsahi', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(112, 87, 'A Level', 'science', 7688748, 9124006, '2018-19', 'dhaka', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(113, 151, 'SSC', 'arts', 4213725, 3604250, '2018-19', 'sylhet', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(114, 154, 'O Level', 'science', 5298922, 7546568, '2018-19', 'dhaka', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(115, 246, 'O Level', 'commerce', 276824, 6447571, '2018-19', 'rajsahi', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(116, 152, 'A Level', 'arts', 4536823, 9474500, '2018-19', 'rajsahi', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(117, 257, 'A Level', 'arts', 465339, 2274897, '2018-19', 'dhaka', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(118, 168, 'O Level', 'commerce', 5479441, 7639546, '2018-19', 'dhaka', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(119, 127, 'O Level', 'commerce', 2912070, 9628124, '2018-19', 'dhaka', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(120, 191, 'O Level', 'arts', 6627990, 1981979, '2018-19', 'dhaka', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(121, 110, 'A Level', 'science', 8072202, 6231872, '2018-19', 'sylhet', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(122, 187, 'JSC', 'science', 8526347, 4406951, '2018-19', 'sylhet', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(123, 66, 'A Level', 'arts', 260218, 3883257, '2018-19', 'rajsahi', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(124, 206, 'SSC', 'arts', 4166452, 9911264, '2018-19', 'sylhet', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(125, 143, 'JSC', 'science', 4828406, 8847202, '2018-19', 'rajsahi', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(126, 100, 'JSC', 'commerce', 2347681, 3412554, '2018-19', 'rajsahi', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(127, 118, 'SSC', 'commerce', 4589729, 4119505, '2018-19', 'sylhet', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(128, 163, 'A Level', 'science', 7037753, 7450083, '2018-19', 'rajsahi', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(129, 261, 'O Level', 'commerce', 4601858, 6948180, '2018-19', 'dhaka', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(130, 228, 'JSC', 'commerce', 5424294, 1836417, '2018-19', 'rajsahi', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(131, 134, 'A Level', 'commerce', 1602760, 3025397, '2018-19', 'dhaka', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(132, 100, 'JSC', 'science', 969555, 2433915, '2018-19', 'dhaka', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(133, 235, 'O Level', 'arts', 7044111, 7105082, '2018-19', 'rajsahi', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(134, 113, 'O Level', 'science', 9750104, 3689525, '2018-19', 'dhaka', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(135, 211, 'O Level', 'arts', 1475405, 3100243, '2018-19', 'rajsahi', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(136, 180, 'JSC', 'commerce', 34407, 4486938, '2018-19', 'rajsahi', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(137, 67, 'JSC', 'arts', 4379619, 1560855, '2018-19', 'dhaka', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(138, 249, 'JSC', 'commerce', 8928496, 9806041, '2018-19', 'dhaka', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(139, 241, 'SSC', 'arts', 9641879, 9013049, '2018-19', 'rajsahi', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(140, 205, 'O Level', 'commerce', 710454, 8759964, '2018-19', 'rajsahi', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(141, 114, 'JSC', 'commerce', 6046897, 7925168, '2018-19', 'rajsahi', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(142, 167, 'A Level', 'commerce', 1992000, 1548368, '2018-19', 'sylhet', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(143, 245, 'A Level', 'commerce', 1682971, 4430336, '2018-19', 'dhaka', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(144, 168, 'SSC', 'arts', 3221545, 5919460, '2018-19', 'dhaka', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(145, 237, 'A Level', 'arts', 8005712, 6216321, '2018-19', 'sylhet', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(146, 91, 'SSC', 'commerce', 4575590, 4189670, '2018-19', 'rajsahi', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(147, 141, 'A Level', 'commerce', 5958490, 8629249, '2018-19', 'dhaka', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(148, 111, 'JSC', 'science', 2139385, 1605202, '2018-19', 'dhaka', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(149, 202, 'JSC', 'commerce', 9473681, 6200119, '2018-19', 'sylhet', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(150, 173, 'SSC', 'science', 9743768, 4250596, '2018-19', 'sylhet', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(151, 225, 'A Level', 'science', 3513030, 6690371, '2018-19', 'rajsahi', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(152, 240, 'O Level', 'commerce', 4091304, 6737541, '2018-19', 'rajsahi', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(153, 96, 'A Level', 'arts', 5555436, 4280280, '2018-19', 'sylhet', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(154, 191, 'A Level', 'arts', 5983975, 1822535, '2018-19', 'rajsahi', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(155, 128, 'JSC', 'arts', 576209, 6485687, '2018-19', 'sylhet', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(156, 249, 'SSC', 'arts', 5518035, 3034668, '2018-19', 'dhaka', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(157, 203, 'JSC', 'science', 8453660, 8537776, '2018-19', 'rajsahi', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(158, 163, 'O Level', 'commerce', 7135862, 8932084, '2018-19', 'sylhet', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(159, 138, 'O Level', 'commerce', 6258008, 224219, '2018-19', 'dhaka', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(160, 109, 'O Level', 'science', 9344659, 2648308, '2018-19', 'rajsahi', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(161, 156, 'JSC', 'science', 9387148, 785756, '2018-19', 'dhaka', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(162, 205, 'SSC', 'commerce', 7972213, 7549644, '2018-19', 'rajsahi', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(163, 82, 'O Level', 'science', 9346030, 4966242, '2018-19', 'rajsahi', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(164, 212, 'JSC', 'commerce', 747050, 9012587, '2018-19', 'dhaka', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(165, 261, 'O Level', 'science', 4285866, 6572294, '2018-19', 'sylhet', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(166, 256, 'O Level', 'commerce', 9654174, 7242681, '2018-19', 'sylhet', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(167, 92, 'A Level', 'arts', 150561, 6994111, '2018-19', 'rajsahi', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(168, 189, 'O Level', 'science', 5267124, 2180218, '2018-19', 'sylhet', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(169, 215, 'O Level', 'commerce', 1576291, 634986, '2018-19', 'sylhet', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(170, 143, 'SSC', 'science', 7459790, 4271871, '2018-19', 'rajsahi', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(171, 214, 'A Level', 'science', 6801664, 5694101, '2018-19', 'rajsahi', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(172, 111, 'O Level', 'arts', 9057271, 1646657, '2018-19', 'dhaka', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(173, 181, 'SSC', 'arts', 3772099, 2555398, '2018-19', 'rajsahi', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(174, 254, 'SSC', 'science', 3477644, 469140, '2018-19', 'sylhet', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(175, 162, 'O Level', 'science', 6934579, 582933, '2018-19', 'rajsahi', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(176, 198, 'SSC', 'science', 4066615, 8770997, '2018-19', 'sylhet', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(177, 122, 'A Level', 'arts', 1186666, 3669381, '2018-19', 'rajsahi', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(178, 133, 'O Level', 'arts', 6008293, 2257720, '2018-19', 'dhaka', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(179, 258, 'O Level', 'arts', 1267067, 7857758, '2018-19', 'sylhet', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(180, 172, 'O Level', 'science', 1730560, 827139, '2018-19', 'rajsahi', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(181, 217, 'SSC', 'science', 4452738, 4127910, '2018-19', 'sylhet', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(182, 191, 'O Level', 'arts', 4187437, 6650871, '2018-19', 'rajsahi', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(183, 223, 'A Level', 'commerce', 1055758, 1856596, '2018-19', 'rajsahi', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(184, 141, 'SSC', 'commerce', 7604284, 2944623, '2018-19', 'rajsahi', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(185, 252, 'JSC', 'science', 9580580, 5424723, '2018-19', 'sylhet', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(186, 259, 'A Level', 'arts', 4952026, 7800280, '2018-19', 'dhaka', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(187, 226, 'SSC', 'science', 3811752, 5627569, '2018-19', 'rajsahi', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(188, 206, 'JSC', 'commerce', 4446309, 9136164, '2018-19', 'sylhet', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(189, 206, 'A Level', 'arts', 3911690, 7372458, '2018-19', 'dhaka', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(190, 98, 'JSC', 'science', 654572, 7590815, '2018-19', 'dhaka', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(191, 157, 'A Level', 'science', 4656888, 3426164, '2018-19', 'sylhet', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(192, 143, 'SSC', 'commerce', 7653267, 6104504, '2018-19', 'sylhet', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:30', '2019-08-29 01:21:30'),
(193, 230, 'SSC', 'arts', 6695251, 7300396, '2018-19', 'sylhet', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:31', '2019-08-29 01:21:31'),
(194, 181, 'JSC', 'science', 3253045, 7310183, '2018-19', 'dhaka', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:31', '2019-08-29 01:21:31'),
(195, 114, 'A Level', 'science', 1150033, 4500301, '2018-19', 'dhaka', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:31', '2019-08-29 01:21:31'),
(196, 92, 'SSC', 'arts', 535932, 7034899, '2018-19', 'dhaka', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:31', '2019-08-29 01:21:31'),
(197, 207, 'A Level', 'arts', 9993723, 6704353, '2018-19', 'rajsahi', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:31', '2019-08-29 01:21:31'),
(198, 117, 'SSC', 'commerce', 2611710, 2665643, '2018-19', 'rajsahi', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:31', '2019-08-29 01:21:31'),
(199, 238, 'SSC', 'commerce', 1814718, 2419287, '2018-19', 'sylhet', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:31', '2019-08-29 01:21:31'),
(200, 104, 'O Level', 'science', 9332404, 2555345, '2018-19', 'dhaka', 2011, 'efnj school', 5.00, 0, '2019-08-29 01:21:31', '2019-08-29 01:21:31');
-- --------------------------------------------------------
--
-- Table structure for table `student_infos`
--
CREATE TABLE `student_infos` (
`id` int(10) UNSIGNED NOT NULL,
`student_id` int(10) UNSIGNED NOT NULL,
`session` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`version` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`group` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`birthday` datetime NOT NULL,
`religion` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`father_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`father_phone_number` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`father_national_id` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`father_occupation` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`father_designation` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`father_annual_income` int(11) NOT NULL,
`mother_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`mother_phone_number` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`mother_national_id` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`mother_occupation` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`mother_designation` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`mother_annual_income` int(11) NOT NULL,
`user_id` int(10) UNSIGNED 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 `student_infos`
--
INSERT INTO `student_infos` (`id`, `student_id`, `session`, `version`, `group`, `birthday`, `religion`, `father_name`, `father_phone_number`, `father_national_id`, `father_occupation`, `father_designation`, `father_annual_income`, `mother_name`, `mother_phone_number`, `mother_national_id`, `mother_occupation`, `mother_designation`, `mother_annual_income`, `user_id`, `created_at`, `updated_at`) VALUES
(1, 224, '2019', 'english', '', '1927-06-21 00:00:00', 'other', '<NAME>', '3489459', 'SA0218IBYZVZJSEC8536V4XC', 'Ship Mates', 'Manufacturing Sales Representative', 300000, '<NAME>', '4675594', 'SA0218IBYZVZJSEC8536V4XC', 'New Accounts Clerk', 'Computer Security Specialist', 1000000, 0, '2019-08-29 01:21:22', '2019-08-29 01:21:22'),
(2, 149, '2019', 'bangla', '', '1940-09-02 00:00:00', 'islam', '<NAME>', '3676344', 'SA0218IBYZVZJSEC8536V4XC', 'Insurance Underwriter', 'Security Guard', 500000, '<NAME>', '8947899', 'SA0218IBYZVZJSEC8536V4XC', 'Geological Sample Test Technician', 'Plasterer OR Stucco Mason', 500000, 0, '2019-08-29 01:21:22', '2019-08-29 01:21:22'),
(3, 185, '2019', 'bangla', '', '1994-03-12 00:00:00', 'islam', 'Mr. <NAME> DVM', '3755738', 'SA0218IBYZVZJSEC8536V4XC', 'Healthcare Support Worker', 'Jeweler', 700000, '<NAME>', '6318332', 'SA0218IBYZVZJSEC8536V4XC', 'Woodworker', 'Custom Tailor', 1000000, 0, '2019-08-29 01:21:22', '2019-08-29 01:21:22'),
(4, 106, '2019', 'english', '', '2004-02-09 00:00:00', 'buddhism', '<NAME>', '2731845', 'SA0218IBYZVZJSEC8536V4XC', 'Furnace Operator', 'Recyclable Material Collector', 1000000, '<NAME>', '7130662', 'SA0218IBYZVZJSEC8536V4XC', 'First-Line Supervisor-Manager of Landscaping, Lawn Service, and Groundskeeping Worker', 'Medical Scientists', 300000, 0, '2019-08-29 01:21:22', '2019-08-29 01:21:22'),
(5, 135, '2019', 'english', '', '1998-04-24 00:00:00', 'hinduism', 'Dr. <NAME>', '7902090', 'SA0218IBYZVZJSEC8536V4XC', 'Software Engineer', 'Agricultural Manager', 300000, '<NAME>', '8540214', 'SA0218IBYZVZJSEC8536V4XC', 'Milling Machine Operator', 'Animal Scientist', 1000000, 0, '2019-08-29 01:21:22', '2019-08-29 01:21:22'),
(6, 73, '2019', 'english', '', '2016-07-20 00:00:00', 'islam', '<NAME> PhD', '2394354', 'SA0218IBYZVZJSEC8536V4XC', 'Keyboard Instrument Repairer and Tuner', 'Packaging Machine Operator', 700000, '<NAME>', '1877304', 'SA0218IBYZVZJSEC8536V4XC', 'Plate Finisher', 'GED Teacher', 500000, 0, '2019-08-29 01:21:22', '2019-08-29 01:21:22'),
(7, 193, '2019', 'bangla', '', '1926-03-14 00:00:00', 'islam', '<NAME>', '1051526', 'SA0218IBYZVZJSEC8536V4XC', 'Title Abstractor', 'Food Batchmaker', 700000, 'Osbaldo Feeney', '5535118', 'SA0218IBYZVZJSEC8536V4XC', 'Set Designer', 'Health Services Manager', 300000, 0, '2019-08-29 01:21:22', '2019-08-29 01:21:22'),
(8, 184, '2019', 'bangla', '', '1932-03-05 00:00:00', 'hinduism', '<NAME>', '5261875', 'SA0218IBYZVZJSEC8536V4XC', 'Foundry Mold and Coremaker', 'Mechanical Inspector', 300000, '<NAME>', '6127253', 'SA0218IBYZVZJSEC8536V4XC', 'Entertainment Attendant', 'Interaction Designer', 1000000, 0, '2019-08-29 01:21:22', '2019-08-29 01:21:22'),
(9, 198, '2019', 'bangla', '', '1951-03-28 00:00:00', 'buddhism', '<NAME>', '2418670', 'SA0218IBYZVZJSEC8536V4XC', 'Employment Interviewer', 'Bookbinder', 500000, 'Prof. <NAME> DVM', '94477', 'SA0218IBYZVZJSEC8536V4XC', 'Home', 'Ship Captain', 500000, 0, '2019-08-29 01:21:22', '2019-08-29 01:21:22'),
(10, 230, '2019', 'bangla', '', '1959-09-24 00:00:00', 'other', '<NAME>', '3922610', 'SA0218IBYZVZJSEC8536V4XC', 'Industrial Production Manager', 'Jewelry Model OR Mold Makers', 1000000, 'Ms. <NAME> PhD', '5154189', 'SA0218IBYZVZJSEC8536V4XC', 'Supervisor Fire Fighting Worker', 'Oil and gas Operator', 700000, 0, '2019-08-29 01:21:22', '2019-08-29 01:21:22'),
(11, 214, '2019', 'english', '', '1939-10-04 00:00:00', 'islam', '<NAME>', '2296215', 'SA0218IBYZVZJSEC8536V4XC', 'Protective Service Worker', 'Personal Financial Advisor', 1000000, '<NAME>', '31831', 'SA0218IBYZVZJSEC8536V4XC', 'Waiter', 'Industrial Machinery Mechanic', 300000, 0, '2019-08-29 01:21:22', '2019-08-29 01:21:22'),
(12, 257, '2019', 'english', '', '2009-02-05 00:00:00', 'hinduism', 'Dr. <NAME>', '3619138', 'SA0218IBYZVZJSEC8536V4XC', 'Radiologic Technician', 'Child Care', 700000, 'Dr. <NAME> PhD', '5073838', 'SA0218IBYZVZJSEC8536V4XC', 'Agricultural Inspector', 'Oil Service Unit Operator', 700000, 0, '2019-08-29 01:21:22', '2019-08-29 01:21:22'),
(13, 172, '2019', 'bangla', '', '1982-08-30 00:00:00', 'hinduism', 'Dr. <NAME>', '3466465', 'SA0218IBYZVZJSEC8536V4XC', 'Mathematician', 'Communications Teacher', 700000, 'Prof. <NAME>', '3590358', 'SA0218IBYZVZJSEC8536V4XC', 'Construction Equipment Operator', 'GED Teacher', 1000000, 0, '2019-08-29 01:21:22', '2019-08-29 01:21:22'),
(14, 253, '2019', 'english', '', '1990-01-15 00:00:00', 'islam', 'Miss <NAME>n MD', '5180776', 'SA0218IBYZVZJSEC8536V4XC', 'Grinding Machine Operator', 'Geological Data Technician', 300000, '<NAME>', '5237248', 'SA0218IBYZVZJSEC8536V4XC', 'Choreographer', 'Forensic Science Technician', 700000, 0, '2019-08-29 01:21:22', '2019-08-29 01:21:22'),
(15, 80, '2019', 'english', '', '2001-10-22 00:00:00', 'hinduism', 'Iss<NAME>', '717185', 'SA0218IBYZVZJSEC8536V4XC', 'Engineering Teacher', 'Postal Service Clerk', 1000000, 'Santa Windler', '7214064', 'SA0218IBYZVZJSEC8536V4XC', 'Drycleaning Machine Operator', 'Producer', 500000, 0, '2019-08-29 01:21:22', '2019-08-29 01:21:22'),
(16, 234, '2019', 'bangla', '', '1952-10-30 00:00:00', 'hinduism', 'Vivian<NAME>', '3934744', 'SA0218IBYZVZJSEC8536V4XC', 'Animal Breeder', 'Producers and Director', 1000000, '<NAME>', '7207783', 'SA0218IBYZVZJSEC8536V4XC', 'Refinery Operator', 'Diesel Engine Specialist', 300000, 0, '2019-08-29 01:21:22', '2019-08-29 01:21:22'),
(17, 189, '2019', 'english', '', '2013-11-28 00:00:00', 'buddhism', '<NAME>', '4300644', 'SA0218IBYZVZJSEC8536V4XC', 'General Practitioner', 'Stock Broker', 1000000, 'Li<NAME>', '3309820', 'SA0218IBYZVZJSEC8536V4XC', 'Janitor', 'Prepress Technician', 300000, 0, '2019-08-29 01:21:22', '2019-08-29 01:21:22'),
(18, 95, '2019', 'english', '', '1969-03-28 00:00:00', 'other', '<NAME>', '6598252', 'SA0218IBYZVZJSEC8536V4XC', 'Chemical Engineer', 'Plastic Molding Machine Operator', 300000, 'Dr. <NAME>', '5901243', 'SA0218IBYZVZJSEC8536V4XC', 'Clinical Psychologist', 'Graphic Designer', 300000, 0, '2019-08-29 01:21:22', '2019-08-29 01:21:22'),
(19, 128, '2019', 'bangla', '', '1989-10-16 00:00:00', 'buddhism', '<NAME>', '3846519', 'SA0218IBYZVZJSEC8536V4XC', 'File Clerk', 'Production Manager', 700000, 'Vida Okuneva II', '8559253', 'SA0218IBYZVZJSEC8536V4XC', 'Offset Lithographic Press Operator', 'Casting Machine Operator', 300000, 0, '2019-08-29 01:21:22', '2019-08-29 01:21:22'),
(20, 165, '2019', 'english', '', '1965-06-17 00:00:00', 'buddhism', 'Frida Hayes', '5615307', 'SA0218IBYZVZJSEC8536V4XC', 'Coremaking Machine Operator', 'Hoist and Winch Operator', 500000, 'Prof. <NAME>', '9080458', 'SA0218IBYZVZJSEC8536V4XC', 'Set and Exhibit Designer', 'Agricultural Science Technician', 700000, 0, '2019-08-29 01:21:22', '2019-08-29 01:21:22'),
(21, 157, '2019', 'bangla', '', '1962-12-23 00:00:00', 'buddhism', '<NAME>', '7236511', 'SA0218IBYZVZJSEC8536V4XC', 'Purchasing Manager', 'Health Specialties Teacher', 1000000, '<NAME>', '8522802', 'SA0218IBYZVZJSEC8536V4XC', 'Hairdresser OR Cosmetologist', 'Pipelaying Fitter', 300000, 0, '2019-08-29 01:21:22', '2019-08-29 01:21:22'),
(22, 171, '2019', 'english', '', '1957-05-25 00:00:00', 'christianism', 'Vernie Stark', '4224312', 'SA0218IBYZVZJSEC8536V4XC', 'Stonemason', 'Telecommunications Equipment Installer', 500000, 'Prof. <NAME>', '839414', 'SA0218IBYZVZJSEC8536V4XC', 'Precious Stone Worker', 'Communication Equipment Repairer', 500000, 0, '2019-08-29 01:21:22', '2019-08-29 01:21:22'),
(23, 158, '2019', 'bangla', '', '1942-02-08 00:00:00', 'islam', '<NAME>', '9631565', 'SA0218IBYZVZJSEC8536V4XC', 'Geological Sample Test Technician', 'Stone Sawyer', 700000, '<NAME>', '559460', 'SA0218IBYZVZJSEC8536V4XC', 'Washing Equipment Operator', 'Law Clerk', 700000, 0, '2019-08-29 01:21:22', '2019-08-29 01:21:22'),
(24, 137, '2019', 'english', '', '2016-06-28 00:00:00', 'christianism', 'Mr. <NAME> DVM', '5996233', 'SA0218IBYZVZJSEC8536V4XC', 'Inspector', 'Electromechanical Equipment Assembler', 500000, 'Kevon Frami', '8583564', 'SA0218IBYZVZJSEC8536V4XC', 'Electrical and Electronics Drafter', 'Home Entertainment Equipment Installer', 1000000, 0, '2019-08-29 01:21:22', '2019-08-29 01:21:22'),
(25, 138, '2019', 'bangla', '', '1940-05-04 00:00:00', 'hinduism', '<NAME> PhD', '8961206', 'SA0218IBYZVZJSEC8536V4XC', 'Supervisor of Police', 'Weapons Specialists', 1000000, 'Dr. <NAME>', '9094155', 'SA0218IBYZVZJSEC8536V4XC', 'Mathematical Scientist', 'Janitorial Supervisor', 700000, 0, '2019-08-29 01:21:22', '2019-08-29 01:21:22'),
(26, 191, '2019', 'bangla', '', '1967-07-14 00:00:00', 'islam', '<NAME>', '1219924', 'SA0218IBYZVZJSEC8536V4XC', 'Historian', 'Medical Equipment Preparer', 300000, '<NAME>', '8425393', 'SA0218IBYZVZJSEC8536V4XC', 'Keyboard Instrument Repairer and Tuner', 'Forest and Conservation Worker', 1000000, 0, '2019-08-29 01:21:22', '2019-08-29 01:21:22'),
(27, 97, '2019', 'bangla', '', '1937-09-15 00:00:00', 'other', '<NAME> Jr.', '6488964', 'SA0218IBYZVZJSEC8536V4XC', 'Engineering Teacher', 'Broadcast Technician', 1000000, 'H<NAME> V', '639143', 'SA0218IBYZVZJSEC8536V4XC', 'Soil Scientist', 'Butcher', 500000, 0, '2019-08-29 01:21:22', '2019-08-29 01:21:22'),
(28, 208, '2019', 'bangla', '', '2003-01-27 00:00:00', 'buddhism', '<NAME>', '7332883', 'SA0218IBYZVZJSEC8536V4XC', 'Insulation Installer', 'Farm Labor Contractor', 500000, '<NAME>', '7380477', 'SA0218IBYZVZJSEC8536V4XC', 'Fiber Product Cutting Machine Operator', 'Ticket Agent', 500000, 0, '2019-08-29 01:21:22', '2019-08-29 01:21:22'),
(29, 237, '2019', 'english', '', '1990-11-15 00:00:00', 'christianism', 'Dr. <NAME>', '5320434', 'SA0218IBYZVZJSEC8536V4XC', 'Clinical Psychologist', 'Pipe Fitter', 300000, '<NAME>', '705979', 'SA0218IBYZVZJSEC8536V4XC', 'Cement Mason and Concrete Finisher', 'Butcher', 1000000, 0, '2019-08-29 01:21:22', '2019-08-29 01:21:22'),
(30, 232, '2019', 'english', '', '1956-12-06 00:00:00', 'other', '<NAME>', '8769694', 'SA0218IBYZVZJSEC8536V4XC', 'Photographer', 'Government', 500000, 'Dr. <NAME>', '3613708', 'SA0218IBYZVZJSEC8536V4XC', 'Heating Equipment Operator', 'Embossing Machine Operator', 1000000, 0, '2019-08-29 01:21:22', '2019-08-29 01:21:22'),
(31, 220, '2019', 'english', '', '1924-12-15 00:00:00', 'other', '<NAME>', '295956', 'SA0218IBYZVZJSEC8536V4XC', 'Horticultural Worker', 'Biological Scientist', 700000, '<NAME> DDS', '9474608', 'SA0218IBYZVZJSEC8536V4XC', 'Photographic Process Worker', 'Set and Exhibit Designer', 500000, 0, '2019-08-29 01:21:22', '2019-08-29 01:21:22'),
(32, 244, '2019', 'english', '', '1930-03-05 00:00:00', 'islam', '<NAME>r.', '2752204', 'SA0218IBYZVZJSEC8536V4XC', 'Government Service Executive', 'Surveyor', 300000, '<NAME>', '1525474', 'SA0218IBYZVZJSEC8536V4XC', 'Aircraft Rigging Assembler', 'Athletic Trainer', 300000, 0, '2019-08-29 01:21:22', '2019-08-29 01:21:22'),
(33, 230, '2019', 'bangla', '', '1952-11-29 00:00:00', 'christianism', '<NAME>', '3341386', 'SA0218IBYZVZJSEC8536V4XC', 'Command Control Center Officer', 'Radiologic Technologist', 300000, '<NAME>', '5585219', 'SA0218IBYZVZJSEC8536V4XC', 'Social Scientists', 'Calibration Technician OR Instrumentation Technician', 500000, 0, '2019-08-29 01:21:22', '2019-08-29 01:21:22'),
(34, 144, '2019', 'bangla', '', '1946-10-26 00:00:00', 'christianism', 'Prof. <NAME> DVM', '1915031', 'SA0218IBYZVZJSEC8536V4XC', 'Oil Service Unit Operator', 'Homeland Security', 700000, '<NAME>', '3514319', 'SA0218IBYZVZJSEC8536V4XC', 'Auxiliary Equipment Operator', 'Bridge Tender OR Lock Tender', 300000, 0, '2019-08-29 01:21:22', '2019-08-29 01:21:22'),
(35, 79, '2019', 'bangla', '', '1971-08-25 00:00:00', 'hinduism', 'Abd<NAME>ren', '2975910', 'SA0218IBYZVZJSEC8536V4XC', 'Plating Operator', 'Editor', 300000, '<NAME>', '4128857', 'SA0218IBYZVZJSEC8536V4XC', 'Fire Inspector', 'Industrial Safety Engineer', 1000000, 0, '2019-08-29 01:21:22', '2019-08-29 01:21:22'),
(36, 95, '2019', 'bangla', '', '1990-03-16 00:00:00', 'buddhism', 'Dr. <NAME>', '931078', 'SA0218IBYZVZJSEC8536V4XC', 'Media and Communication Worker', 'Alteration Tailor', 300000, 'Danyka Green', '3603410', 'SA0218IBYZVZJSEC8536V4XC', 'Child Care', 'Natural Sciences Manager', 1000000, 0, '2019-08-29 01:21:22', '2019-08-29 01:21:22'),
(37, 131, '2019', 'english', '', '1963-06-17 00:00:00', 'christianism', '<NAME>', '7743385', 'SA0218IBYZVZJSEC8536V4XC', 'Preschool Education Administrators', 'Cook', 300000, 'Alvina Legros', '3579930', 'SA0218IBYZVZJSEC8536V4XC', 'Retail Salesperson', 'Detective', 700000, 0, '2019-08-29 01:21:22', '2019-08-29 01:21:22'),
(38, 123, '2019', 'english', '', '1968-09-30 00:00:00', 'other', 'Prof. <NAME>', '7754713', 'SA0218IBYZVZJSEC8536V4XC', 'Shoe and Leather Repairer', 'Information Systems Manager', 700000, '<NAME>', '4232219', 'SA0218IBYZVZJSEC8536V4XC', 'Massage Therapist', 'Lifeguard', 1000000, 0, '2019-08-29 01:21:22', '2019-08-29 01:21:22'),
(39, 203, '2019', 'bangla', '', '2001-04-09 00:00:00', 'hinduism', 'Prof. <NAME>', '6114115', 'SA0218IBYZVZJSEC8536V4XC', 'Computer', 'Technical Program Manager', 700000, '<NAME>', '855795', 'SA0218IBYZVZJSEC8536V4XC', 'Tractor Operator', 'Animal Scientist', 300000, 0, '2019-08-29 01:21:22', '2019-08-29 01:21:22'),
(40, 244, '2019', 'english', '', '1972-05-30 00:00:00', 'other', '<NAME>', '165496', 'SA0218IBYZVZJSEC8536V4XC', 'Annealing Machine Operator', 'Carpenter', 500000, '<NAME> PhD', '5682263', 'SA0218IBYZVZJSEC8536V4XC', 'Public Relations Specialist', 'Sheriff', 500000, 0, '2019-08-29 01:21:22', '2019-08-29 01:21:22'),
(41, 184, '2019', 'bangla', '', '1942-09-19 00:00:00', 'buddhism', 'Mrs. <NAME>', '9033529', 'SA0218IBYZVZJSEC8536V4XC', 'Coremaking Machine Operator', 'Metal Molding Operator', 500000, 'Santiago Ward', '7555784', 'SA0218IBYZVZJSEC8536V4XC', 'Tool and Die Maker', 'Biochemist or Biophysicist', 1000000, 0, '2019-08-29 01:21:22', '2019-08-29 01:21:22'),
(42, 76, '2019', 'english', '', '1930-09-17 00:00:00', 'christianism', 'Dr. <NAME> Jr.', '2021052', 'SA0218IBYZVZJSEC8536V4XC', 'Cabinetmaker', 'Machinist', 300000, '<NAME>', '982805', 'SA0218IBYZVZJSEC8536V4XC', 'Team Assembler', 'Electrical Engineering Technician', 700000, 0, '2019-08-29 01:21:22', '2019-08-29 01:21:22'),
(43, 210, '2019', 'bangla', '', '1964-03-06 00:00:00', 'islam', 'Mr. <NAME>', '7188717', 'SA0218IBYZVZJSEC8536V4XC', 'Rental Clerk', 'Material Movers', 500000, 'Prof. <NAME>', '9903226', 'SA0218IBYZVZJSEC8536V4XC', 'Staff Psychologist', 'Adjustment Clerk', 300000, 0, '2019-08-29 01:21:22', '2019-08-29 01:21:22'),
(44, 172, '2019', 'english', '', '1955-12-03 00:00:00', 'hinduism', '<NAME>', '9146753', 'SA0218IBYZVZJSEC8536V4XC', 'Team Assembler', 'Sculptor', 300000, 'E<NAME>', '1075030', 'SA0218IBYZVZJSEC8536V4XC', 'Set and Exhibit Designer', 'Mail Clerk', 1000000, 0, '2019-08-29 01:21:22', '2019-08-29 01:21:22'),
(45, 124, '2019', 'english', '', '1920-11-28 00:00:00', 'islam', 'Una Labadie MD', '7610330', 'SA0218IBYZVZJSEC8536V4XC', 'Personal Financial Advisor', 'Retail Sales person', 500000, 'Dr. <NAME>', '466470', 'SA0218IBYZVZJSEC8536V4XC', 'Gas Pumping Station Operator', 'Letterpress Setters Operator', 300000, 0, '2019-08-29 01:21:22', '2019-08-29 01:21:22'),
(46, 174, '2019', 'bangla', '', '2001-12-29 00:00:00', 'christianism', '<NAME>', '6896451', 'SA0218IBYZVZJSEC8536V4XC', 'Protective Service Worker', 'Art Teacher', 1000000, '<NAME>', '3126379', 'SA0218IBYZVZJSEC8536V4XC', 'Keyboard Instrument Repairer and Tuner', 'Geological Sample Test Technician', 1000000, 0, '2019-08-29 01:21:22', '2019-08-29 01:21:22'),
(47, 87, '2019', 'english', '', '1945-10-06 00:00:00', 'buddhism', '<NAME>', '5522592', 'SA0218IBYZVZJSEC8536V4XC', 'Textile Worker', 'Psychologist', 300000, 'Mr. <NAME>', '2743847', 'SA0218IBYZVZJSEC8536V4XC', 'Law Enforcement Teacher', 'Photographic Restorer', 300000, 0, '2019-08-29 01:21:22', '2019-08-29 01:21:22'),
(48, 168, '2019', 'english', '', '1956-12-26 00:00:00', 'islam', '<NAME>', '8996638', 'SA0218IBYZVZJSEC8536V4XC', 'Mechanical Equipment Sales Representative', 'Physical Scientist', 300000, '<NAME>', '5780693', 'SA0218IBYZVZJSEC8536V4XC', 'Precision Mold and Pattern Caster', 'Orthodontist', 1000000, 0, '2019-08-29 01:21:22', '2019-08-29 01:21:22'),
(49, 187, '2019', 'english', '', '1963-10-11 00:00:00', 'islam', '<NAME>', '7352885', 'SA0218IBYZVZJSEC8536V4XC', 'Farmworker', 'Public Health Social Worker', 1000000, '<NAME>', '1065134', 'SA0218IBYZVZJSEC8536V4XC', 'Engineering Manager', 'Rail Car Repairer', 700000, 0, '2019-08-29 01:21:22', '2019-08-29 01:21:22'),
(50, 146, '2019', 'english', '', '1951-02-15 00:00:00', 'islam', '<NAME>', '6069125', 'SA0218IBYZVZJSEC8536V4XC', 'Gas Plant Operator', 'Municipal Fire Fighter', 1000000, 'Miss <NAME> MD', '2810180', 'SA0218IBYZVZJSEC8536V4XC', 'Broadcast Technician', 'User Experience Researcher', 300000, 0, '2019-08-29 01:21:22', '2019-08-29 01:21:22'),
(51, 237, '2019', 'bangla', 'science', '1946-06-27 00:00:00', 'buddhism', 'De<NAME>', '9582092', 'SA0218IBYZVZJSEC8536V4XC', 'Loan Officer', 'Gas Plant Operator', 500000, 'Zola Veum', '1250457', 'SA0218IBYZVZJSEC8536V4XC', 'Budget Analyst', 'Pump Operators', 500000, 0, '2019-08-29 01:21:23', '2019-08-29 01:21:23'),
(52, 101, '2019', 'english', 'science', '1979-08-17 00:00:00', 'hinduism', 'Dr. <NAME>', '1910412', 'SA0218IBYZVZJSEC8536V4XC', 'Arbitrator', 'Ship Mates', 1000000, 'Mrs. <NAME>', '5489690', 'SA0218IBYZVZJSEC8536V4XC', 'Door To Door Sales', 'Psychiatric Technician', 1000000, 0, '2019-08-29 01:21:23', '2019-08-29 01:21:23'),
(53, 158, '2019', 'english', 'science', '1983-10-05 00:00:00', 'hinduism', 'Christian West MD', '5244418', 'SA0218IBYZVZJSEC8536V4XC', 'Director Of Talent Acquisition', 'Transit Police OR Railroad Police', 700000, '<NAME>', '8624565', 'SA0218IBYZVZJSEC8536V4XC', 'Maintenance Supervisor', 'Substation Maintenance', 300000, 0, '2019-08-29 01:21:23', '2019-08-29 01:21:23'),
(54, 196, '2019', 'english', 'science', '1937-01-12 00:00:00', 'other', 'Cordell Towne II', '759801', 'SA0218IBYZVZJSEC8536V4XC', 'ccc', 'Nuclear Power Reactor Operator', 1000000, '<NAME>', '2745262', 'SA0218IBYZVZJSEC8536V4XC', 'Engineering Teacher', 'Warehouse', 500000, 0, '2019-08-29 01:21:23', '2019-08-29 01:21:23'),
(55, 124, '2019', 'english', 'science', '1983-11-05 00:00:00', 'islam', 'Prof. <NAME>', '6135982', 'SA0218IBYZVZJSEC8536V4XC', 'Materials Inspector', 'Dentist', 700000, '<NAME>', '6948035', 'SA0218IBYZVZJSEC8536V4XC', 'Professor', 'Diagnostic Medical Sonographer', 300000, 0, '2019-08-29 01:21:23', '2019-08-29 01:21:23'),
(56, 114, '2019', 'english', 'science', '1968-11-07 00:00:00', 'buddhism', 'Dy<NAME> IV', '8467261', 'SA0218IBYZVZJSEC8536V4XC', 'Cook', 'Middle School Teacher', 700000, '<NAME>', '5295176', 'SA0218IBYZVZJSEC8536V4XC', 'Record Clerk', 'Office Machine and Cash Register Servicer', 700000, 0, '2019-08-29 01:21:23', '2019-08-29 01:21:23'),
(57, 212, '2019', 'english', 'science', '1937-10-25 00:00:00', 'other', 'Prof. <NAME>', '7513679', 'SA0218IBYZVZJSEC8536V4XC', 'Forest and Conservation Worker', 'Forming Machine Operator', 500000, 'Mr. <NAME>', '3414489', 'SA0218IBYZVZJSEC8536V4XC', 'Earth Driller', 'Stock Broker', 300000, 0, '2019-08-29 01:21:23', '2019-08-29 01:21:23'),
(58, 76, '2019', 'english', 'science', '1947-10-22 00:00:00', 'islam', '<NAME>', '4672428', 'SA0218IBYZVZJSEC8536V4XC', 'Telecommunications Line Installer', 'Psychology Teacher', 500000, '<NAME>', '3534759', 'SA0218IBYZVZJSEC8536V4XC', 'House Cleaner', 'Printing Machine Operator', 700000, 0, '2019-08-29 01:21:23', '2019-08-29 01:21:23'),
(59, 219, '2019', 'english', 'science', '1934-11-28 00:00:00', 'buddhism', 'Mr. <NAME>', '8151421', 'SA0218IBYZVZJSEC8536V4XC', 'Financial Manager', 'Computer Security Specialist', 500000, '<NAME>', '8087514', 'SA0218IBYZVZJSEC8536V4XC', 'Dishwasher', 'Physicist', 700000, 0, '2019-08-29 01:21:23', '2019-08-29 01:21:23'),
(60, 101, '2019', 'english', 'science', '1982-06-26 00:00:00', 'hinduism', 'Prof. <NAME>', '5782993', 'SA0218IBYZVZJSEC8536V4XC', 'Shuttle Car Operator', 'Percussion Instrument Repairer', 700000, 'Bettye Durgan', '4670419', 'SA0218IBYZVZJSEC8536V4XC', 'Manufacturing Sales Representative', 'Equal Opportunity Representative', 700000, 0, '2019-08-29 01:21:23', '2019-08-29 01:21:23'),
(61, 77, '2019', 'english', 'science', '1959-12-14 00:00:00', 'christianism', '<NAME>', '9332380', 'SA0218IBYZVZJSEC8536V4XC', 'Vice President Of Human Resources', 'Soil Scientist OR Plant Scientist', 700000, '<NAME>', '6077289', 'SA0218IBYZVZJSEC8536V4XC', 'Photographic Restorer', 'Etcher', 700000, 0, '2019-08-29 01:21:23', '2019-08-29 01:21:23'),
(62, 158, '2019', 'english', 'science', '1950-01-31 00:00:00', 'other', '<NAME>', '2325025', 'SA0218IBYZVZJSEC8536V4XC', 'Dot Etcher', 'Tailor', 1000000, '<NAME>', '8877140', 'SA0218IBYZVZJSEC8536V4XC', 'Logging Worker', 'Hairdresser OR Cosmetologist', 500000, 0, '2019-08-29 01:21:23', '2019-08-29 01:21:23'),
(63, 126, '2019', 'bangla', 'science', '1921-07-22 00:00:00', 'christianism', '<NAME>', '6883128', 'SA0218IBYZVZJSEC8536V4XC', 'Anesthesiologist', 'Organizational Development Manager', 700000, 'Marguerite Emmerich', '6374479', 'SA0218IBYZVZJSEC8536V4XC', 'Tire Builder', 'Postal Service Mail Sorter', 300000, 0, '2019-08-29 01:21:23', '2019-08-29 01:21:23'),
(64, 193, '2019', 'bangla', 'science', '1965-02-28 00:00:00', 'other', '<NAME>', '8339564', 'SA0218IBYZVZJSEC8536V4XC', 'Cook', 'Mechanical Equipment Sales Representative', 700000, 'Emerald Stanton', '3831377', 'SA0218IBYZVZJSEC8536V4XC', 'Epidemiologist', 'Sawing Machine Tool Setter', 1000000, 0, '2019-08-29 01:21:23', '2019-08-29 01:21:23'),
(65, 175, '2019', 'bangla', 'science', '1974-01-11 00:00:00', 'hinduism', 'Imelda Skiles Jr.', '6467777', 'SA0218IBYZVZJSEC8536V4XC', 'Automotive Specialty Technician', 'Bus Driver', 300000, 'Ms. <NAME> Sr.', '1542122', 'SA0218IBYZVZJSEC8536V4XC', 'Broadcast News Analyst', 'Fire-Prevention Engineer', 700000, 0, '2019-08-29 01:21:23', '2019-08-29 01:21:23'),
(66, 184, '2019', 'english', 'science', '1966-08-27 00:00:00', 'buddhism', 'Catal<NAME>udson PhD', '249486', 'SA0218IBYZVZJSEC8536V4XC', 'Electrical Drafter', 'Licensed Practical Nurse', 300000, 'Prof. <NAME>', '9123243', 'SA0218IBYZVZJSEC8536V4XC', 'Production Worker', 'Construction Manager', 300000, 0, '2019-08-29 01:21:23', '2019-08-29 01:21:23'),
(67, 214, '2019', 'english', 'science', '1924-12-01 00:00:00', 'hinduism', 'Dr. <NAME>', '7974258', 'SA0218IBYZVZJSEC8536V4XC', 'Vice President Of Marketing', 'Secretary', 500000, 'Prof. <NAME>', '6843116', 'SA0218IBYZVZJSEC8536V4XC', 'Lodging Manager', 'Stonemason', 700000, 0, '2019-08-29 01:21:23', '2019-08-29 01:21:23'),
(68, 174, '2019', 'bangla', 'science', '1955-05-26 00:00:00', 'other', '<NAME> Sr.', '6819297', 'SA0218IBYZVZJSEC8536V4XC', 'Aircraft Cargo Handling Supervisor', 'Armored Assault Vehicle Crew Member', 1000000, '<NAME>', '9325312', 'SA0218IBYZVZJSEC8536V4XC', 'Fiber Product Cutting Machine Operator', 'Food Batchmaker', 500000, 0, '2019-08-29 01:21:23', '2019-08-29 01:21:23'),
(69, 148, '2019', 'english', 'science', '1945-02-03 00:00:00', 'other', '<NAME>', '8141283', 'SA0218IBYZVZJSEC8536V4XC', 'Air Crew Officer', 'Therapist', 300000, '<NAME> DVM', '8931342', 'SA0218IBYZVZJSEC8536V4XC', 'Actor', 'Electrical and Electronics Drafter', 500000, 0, '2019-08-29 01:21:23', '2019-08-29 01:21:23'),
(70, 64, '2019', 'bangla', 'science', '1928-05-10 00:00:00', 'buddhism', '<NAME>', '5988211', 'SA0218IBYZVZJSEC8536V4XC', 'Fashion Model', 'Power Generating Plant Operator', 700000, '<NAME>', '4746943', 'SA0218IBYZVZJSEC8536V4XC', 'Electrical Engineering Technician', 'Semiconductor Processor', 1000000, 0, '2019-08-29 01:21:23', '2019-08-29 01:21:23'),
(71, 143, '2019', 'english', 'science', '2015-12-04 00:00:00', 'christianism', '<NAME>', '1635471', 'SA0218IBYZVZJSEC8536V4XC', 'Paving Equipment Operator', 'Mail Clerk', 500000, 'Prof. <NAME>', '3445306', 'SA0218IBYZVZJSEC8536V4XC', 'Home Entertainment Equipment Installer', 'Healthcare Practitioner', 1000000, 0, '2019-08-29 01:21:23', '2019-08-29 01:21:23'),
(72, 155, '2019', 'english', 'science', '1948-05-31 00:00:00', 'other', '<NAME> PhD', '4455921', 'SA0218IBYZVZJSEC8536V4XC', 'Technical Writer', 'Foundry Mold and Coremaker', 700000, '<NAME>', '1592866', 'SA0218IBYZVZJSEC8536V4XC', 'Art Director', 'Petroleum Pump Operator', 300000, 0, '2019-08-29 01:21:23', '2019-08-29 01:21:23'),
(73, 207, '2019', 'english', 'science', '2002-02-19 00:00:00', 'christianism', '<NAME>', '249128', 'SA0218IBYZVZJSEC8536V4XC', 'Private Detective and Investigator', 'Air Traffic Controller', 300000, '<NAME>', '4421607', 'SA0218IBYZVZJSEC8536V4XC', 'Civil Drafter', 'Plumber OR Pipefitter OR Steamfitter', 300000, 0, '2019-08-29 01:21:23', '2019-08-29 01:21:23'),
(74, 75, '2019', 'bangla', 'science', '1941-01-10 00:00:00', 'hinduism', '<NAME>', '6016191', 'SA0218IBYZVZJSEC8536V4XC', 'Audio-Visual Collections Specialist', 'Vice President Of Marketing', 700000, 'Jermey Kerluke DVM', '5946719', 'SA0218IBYZVZJSEC8536V4XC', 'Medical Laboratory Technologist', 'Recyclable Material Collector', 500000, 0, '2019-08-29 01:21:23', '2019-08-29 01:21:23'),
(75, 77, '2019', 'english', 'science', '2013-07-27 00:00:00', 'buddhism', '<NAME>', '3914972', 'SA0218IBYZVZJSEC8536V4XC', 'Data Processing Equipment Repairer', 'Automatic Teller Machine Servicer', 500000, '<NAME>', '519887', 'SA0218IBYZVZJSEC8536V4XC', 'Construction Equipment Operator', 'Geologist', 700000, 0, '2019-08-29 01:21:23', '2019-08-29 01:21:23'),
(76, 251, '2019', 'english', 'commerce', '1983-11-05 00:00:00', 'islam', 'Dr. <NAME>', '8180025', 'SA0218IBYZVZJSEC8536V4XC', 'Segmental Paver', 'Rail Yard Engineer', 700000, 'Clement Orn', '155615', 'SA0218IBYZVZJSEC8536V4XC', 'Engraver', 'Residential Advisor', 500000, 0, '2019-08-29 01:21:23', '2019-08-29 01:21:23'),
(77, 141, '2019', 'english', 'commerce', '1938-04-27 00:00:00', 'buddhism', 'Wilfrid Reichert DDS', '8373855', 'SA0218IBYZVZJSEC8536V4XC', 'Agricultural Sales Representative', 'Crushing Grinding Machine Operator', 1000000, '<NAME>', '4712670', 'SA0218IBYZVZJSEC8536V4XC', 'Answering Service', 'Oral Surgeon', 300000, 0, '2019-08-29 01:21:23', '2019-08-29 01:21:23'),
(78, 196, '2019', 'bangla', 'commerce', '2008-10-19 00:00:00', 'other', '<NAME> Jr.', '2813964', 'SA0218IBYZVZJSEC8536V4XC', 'Set and Exhibit Designer', 'Legal Support Worker', 700000, '<NAME> DDS', '1318135', 'SA0218IBYZVZJSEC8536V4XC', 'Chemical Equipment Controller', 'Food Preparation Worker', 1000000, 0, '2019-08-29 01:21:23', '2019-08-29 01:21:23'),
(79, 258, '2019', 'english', 'commerce', '1936-10-20 00:00:00', 'islam', '<NAME>', '9833649', 'SA0218IBYZVZJSEC8536V4XC', 'Biochemist', 'Project Manager', 500000, 'Zakary Lebsack DDS', '6793819', 'SA0218IBYZVZJSEC8536V4XC', 'Retail Sales person', 'History Teacher', 500000, 0, '2019-08-29 01:21:23', '2019-08-29 01:21:23'),
(80, 83, '2019', 'english', 'commerce', '2002-08-09 00:00:00', 'islam', 'Ms. <NAME>', '4641047', 'SA0218IBYZVZJSEC8536V4XC', 'Silversmith', 'Set Designer', 300000, '<NAME>', '8171810', 'SA0218IBYZVZJSEC8536V4XC', 'Commercial and Industrial Designer', 'Medical Laboratory Technologist', 300000, 0, '2019-08-29 01:21:23', '2019-08-29 01:21:23'),
(81, 251, '2019', 'bangla', 'commerce', '1946-12-30 00:00:00', 'buddhism', '<NAME>', '8114503', 'SA0218IBYZVZJSEC8536V4XC', 'Photographic Developer', 'Press Machine Setter, Operator', 1000000, '<NAME>', '8905554', 'SA0218IBYZVZJSEC8536V4XC', 'Electrical Parts Reconditioner', 'Personnel Recruiter', 1000000, 0, '2019-08-29 01:21:23', '2019-08-29 01:21:23'),
(82, 148, '2019', 'english', 'commerce', '1997-01-12 00:00:00', 'islam', '<NAME>', '9939968', 'SA0218IBYZVZJSEC8536V4XC', 'Special Education Teacher', 'Social Scientists', 500000, '<NAME>', '1048516', 'SA0218IBYZVZJSEC8536V4XC', 'Farmworker', 'Purchasing Manager', 700000, 0, '2019-08-29 01:21:23', '2019-08-29 01:21:23'),
(83, 232, '2019', 'english', 'commerce', '1961-04-11 00:00:00', 'islam', '<NAME>', '8744610', 'SA0218IBYZVZJSEC8536V4XC', 'Night Shift', 'Merchandise Displayer OR Window Trimmer', 700000, '<NAME>', '5995850', 'SA0218IBYZVZJSEC8536V4XC', 'Forest and Conservation Worker', 'Electronics Engineer', 1000000, 0, '2019-08-29 01:21:23', '2019-08-29 01:21:23'),
(84, 232, '2019', 'english', 'commerce', '1933-10-05 00:00:00', 'hinduism', 'Ret<NAME>', '388225', 'SA0218IBYZVZJSEC8536V4XC', 'Algorithm Developer', 'Retail Salesperson', 300000, '<NAME>', '7857880', 'SA0218IBYZVZJSEC8536V4XC', 'Pressing Machine Operator', 'Military Officer', 1000000, 0, '2019-08-29 01:21:23', '2019-08-29 01:21:23'),
(85, 148, '2019', 'bangla', 'commerce', '1966-01-16 00:00:00', 'other', '<NAME>', '5161173', 'SA0218IBYZVZJSEC8536V4XC', 'Photographic Reproduction Technician', 'Nuclear Power Reactor Operator', 500000, '<NAME>', '2980955', 'SA0218IBYZVZJSEC8536V4XC', 'Transportation Equipment Maintenance', 'Aerospace Engineer', 1000000, 0, '2019-08-29 01:21:23', '2019-08-29 01:21:23'),
(86, 215, '2019', 'bangla', 'commerce', '1965-11-27 00:00:00', 'christianism', 'Heaven Carter IV', '2642370', 'SA0218IBYZVZJSEC8536V4XC', 'Psychologist', 'Financial Examiner', 500000, '<NAME>', '4087098', 'SA0218IBYZVZJSEC8536V4XC', 'Interior Designer', 'Woodworker', 1000000, 0, '2019-08-29 01:21:23', '2019-08-29 01:21:23'),
(87, 256, '2019', 'bangla', 'commerce', '1945-01-26 00:00:00', 'buddhism', '<NAME>', '7308864', 'SA0218IBYZVZJSEC8536V4XC', 'Electric Motor Repairer', 'Broadcast News Analyst', 300000, '<NAME> Sr.', '7485680', 'SA0218IBYZVZJSEC8536V4XC', 'Decorator', 'Law Enforcement Teacher', 1000000, 0, '2019-08-29 01:21:23', '2019-08-29 01:21:23'),
(88, 193, '2019', 'english', 'commerce', '1946-07-09 00:00:00', 'other', '<NAME>', '9798966', 'SA0218IBYZVZJSEC8536V4XC', 'Athletes and Sports Competitor', 'Payroll Clerk', 500000, 'Mrs. <NAME>', '3607139', 'SA0218IBYZVZJSEC8536V4XC', 'Janitorial Supervisor', 'Recreation Worker', 500000, 0, '2019-08-29 01:21:23', '2019-08-29 01:21:23'),
(89, 210, '2019', 'bangla', 'commerce', '1927-05-02 00:00:00', 'other', '<NAME>', '9142403', 'SA0218IBYZVZJSEC8536V4XC', 'Mail Clerk', 'Percussion Instrument Repairer', 300000, '<NAME>', '3876075', 'SA0218IBYZVZJSEC8536V4XC', 'Director Religious Activities', 'Architectural Drafter', 1000000, 0, '2019-08-29 01:21:23', '2019-08-29 01:21:23'),
(90, 258, '2019', 'bangla', 'commerce', '1971-12-19 00:00:00', 'christianism', '<NAME>', '5824676', 'SA0218IBYZVZJSEC8536V4XC', 'Occupational Health Safety Specialist', 'Health Technologist', 1000000, 'Hortense Reichert', '2490417', 'SA0218IBYZVZJSEC8536V4XC', 'Industrial Engineer', 'Organizational Development Manager', 1000000, 0, '2019-08-29 01:21:24', '2019-08-29 01:21:24'),
(91, 216, '2019', 'english', 'arts', '1926-10-29 00:00:00', 'islam', '<NAME>', '3310349', 'SA0218IBYZVZJSEC8536V4XC', 'Excavating Machine Operator', 'Detective', 300000, 'Salvador Predovic', '2158903', 'SA0218IBYZVZJSEC8536V4XC', 'Immigration Inspector OR Customs Inspector', 'Food Batchmaker', 300000, 0, '2019-08-29 01:21:24', '2019-08-29 01:21:24'),
(92, 197, '2019', 'english', 'arts', '1989-05-05 00:00:00', 'hinduism', '<NAME>', '2238790', 'SA0218IBYZVZJSEC8536V4XC', 'Purchasing Manager', 'Captain', 300000, '<NAME>', '5947242', 'SA0218IBYZVZJSEC8536V4XC', 'Timing Device Assemblers', 'Radiation Therapist', 300000, 0, '2019-08-29 01:21:24', '2019-08-29 01:21:24'),
(93, 205, '2019', 'english', 'arts', '1926-03-09 00:00:00', 'islam', 'Dr. <NAME>', '3450617', 'SA0218IBYZVZJSEC8536V4XC', 'Roof Bolters Mining', 'Photographic Developer', 700000, 'Dr. <NAME>', '8910754', 'SA0218IBYZVZJSEC8536V4XC', 'Pipefitter', 'Police Detective', 300000, 0, '2019-08-29 01:21:24', '2019-08-29 01:21:24'),
(94, 190, '2019', 'english', 'arts', '1960-09-27 00:00:00', 'hinduism', '<NAME>', '7528629', 'SA0218IBYZVZJSEC8536V4XC', 'Jeweler', 'Aircraft Cargo Handling Supervisor', 300000, 'Travis Reynolds DVM', '9951764', 'SA0218IBYZVZJSEC8536V4XC', 'Welder-Fitter', 'Biological Scientist', 500000, 0, '2019-08-29 01:21:24', '2019-08-29 01:21:24'),
(95, 152, '2019', 'bangla', 'arts', '1931-04-11 00:00:00', 'islam', 'Mr. <NAME> Jr.', '7831943', 'SA0218IBYZVZJSEC8536V4XC', 'Boat Builder and Shipwright', 'Nuclear Technician', 700000, 'Prof. <NAME> PhD', '5750596', 'SA0218IBYZVZJSEC8536V4XC', 'Surveyor', 'Safety Engineer', 700000, 0, '2019-08-29 01:21:24', '2019-08-29 01:21:24'),
(96, 209, '2019', 'english', 'arts', '1969-07-27 00:00:00', 'christianism', '<NAME>', '3731666', 'SA0218IBYZVZJSEC8536V4XC', 'Law Teacher', 'Molding Machine Operator', 1000000, 'Prof. <NAME>', '3100813', 'SA0218IBYZVZJSEC8536V4XC', 'Healthcare Practitioner', 'Mathematical Scientist', 700000, 0, '2019-08-29 01:21:24', '2019-08-29 01:21:24'),
(97, 162, '2019', 'bangla', 'arts', '1945-07-10 00:00:00', 'islam', 'Prof. <NAME> DVM', '2175401', 'SA0218IBYZVZJSEC8536V4XC', 'Plate Finisher', 'Usher', 300000, 'Miss Adele Runte', '5325964', 'SA0218IBYZVZJSEC8536V4XC', 'Aircraft Mechanics OR Aircraft Service Technician', 'Farmer', 1000000, 0, '2019-08-29 01:21:24', '2019-08-29 01:21:24'),
(98, 249, '2019', 'bangla', 'arts', '2000-06-03 00:00:00', 'buddhism', 'Norma Harber DDS', '7227179', 'SA0218IBYZVZJSEC8536V4XC', 'Residential Advisor', 'Chemical Equipment Controller', 300000, 'Camylle Donnelly DVM', '4982298', 'SA0218IBYZVZJSEC8536V4XC', 'House Cleaner', 'Computer Specialist', 700000, 0, '2019-08-29 01:21:24', '2019-08-29 01:21:24'),
(99, 174, '2019', 'bangla', 'arts', '1992-11-08 00:00:00', 'islam', 'Titus Corwin III', '9177409', 'SA0218IBYZVZJSEC8536V4XC', 'Social Work Teacher', 'Product Safety Engineer', 300000, 'Prof. <NAME>', '6195825', 'SA0218IBYZVZJSEC8536V4XC', 'Ceiling Tile Installer', 'Tire Builder', 1000000, 0, '2019-08-29 01:21:24', '2019-08-29 01:21:24'),
(100, 93, '2019', 'bangla', 'arts', '1926-07-02 00:00:00', 'christianism', '<NAME>', '8621179', 'SA0218IBYZVZJSEC8536V4XC', 'Title Abstractor', 'Woodworking Machine Setter', 300000, '<NAME> MD', '9690908', 'SA0218IBYZVZJSEC8536V4XC', 'Physical Scientist', 'Molding Machine Operator', 1000000, 0, '2019-08-29 01:21:24', '2019-08-29 01:21:24');
-- --------------------------------------------------------
--
-- Table structure for table `subscriptions`
--
CREATE TABLE `subscriptions` (
`id` int(10) UNSIGNED NOT NULL,
`user_id` int(11) NOT NULL,
`name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`stripe_id` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`stripe_plan` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`quantity` int(11) NOT NULL,
`trial_ends_at` timestamp NULL DEFAULT NULL,
`ends_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;
-- --------------------------------------------------------
--
-- Table structure for table `syllabuses`
--
CREATE TABLE `syllabuses` (
`id` int(10) UNSIGNED NOT NULL,
`file_path` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`title` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`description` text COLLATE utf8mb4_unicode_ci NOT NULL,
`active` tinyint(4) NOT NULL,
`school_id` int(10) UNSIGNED NOT NULL,
`user_id` int(10) UNSIGNED NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`class_id` int(10) UNSIGNED NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `syllabuses`
--
INSERT INTO `syllabuses` (`id`, `file_path`, `title`, `description`, `active`, `school_id`, `user_id`, `created_at`, `updated_at`, `class_id`) VALUES
(1, 'http://www.franecki.net/', 'Odit numquam doloremque magnam ut consequatur autem voluptatem deserunt.', 'Et repudiandae nihil non. Laborum dignissimos asperiores perspiciatis ut cupiditate praesentium. Nulla voluptatem et eos enim iste temporibus.', 0, 1, 4, '2019-08-29 01:20:41', '2019-08-29 01:20:41', 4),
(2, 'https://marks.net/odio-sapiente-et-unde-fugiat-aut-unde-molestiae-maxime.html', 'Quia non sit distinctio debitis est placeat voluptatem nam.', 'Quia quo natus non occaecati error. Quia officiis incidunt quaerat dolor aut deleniti temporibus. Omnis esse minus corrupti pariatur quas corrupti recusandae.', 0, 1, 96, '2019-08-29 01:20:41', '2019-08-29 01:20:41', 10),
(3, 'http://haag.com/ea-aliquid-iusto-aliquam-debitis-aperiam', 'Molestiae quo officiis quidem.', 'Eum sit qui ut qui et. Quia dignissimos eaque et maxime eos ipsam. Aliquam similique quos quos eligendi sunt qui.', 1, 1, 53, '2019-08-29 01:20:41', '2019-08-29 01:20:41', 5),
(4, 'http://hagenes.biz/magni-dolorum-hic-voluptatem-et-nulla', 'Sed qui ut itaque nulla nam qui sunt quasi.', 'Explicabo laborum veniam similique dolore maxime iusto dolores tempora. Iusto nostrum eum iste excepturi dolorem. Iste deserunt enim nostrum esse.', 0, 1, 154, '2019-08-29 01:20:41', '2019-08-29 01:20:41', 10),
(5, 'http://www.parker.net/', 'Nostrum natus voluptates omnis nemo aut.', 'Quia vel qui facilis sit. Voluptas eveniet minus provident ratione voluptatem repellendus mollitia dolores. Est minima in laudantium odio.', 1, 1, 247, '2019-08-29 01:20:41', '2019-08-29 01:20:41', 3),
(6, 'https://www.bins.com/nam-dolorem-voluptas-nesciunt-ad-consequatur-voluptatum-fuga-doloremque', 'Quo qui non rerum qui corrupti veritatis.', 'Sunt quo nesciunt deserunt sint quos. Amet ipsa aut at ea. Sit deserunt nisi possimus ullam ut ut.', 1, 1, 241, '2019-08-29 01:20:41', '2019-08-29 01:20:41', 2),
(7, 'http://www.schimmel.com/', 'Ut delectus omnis provident suscipit omnis.', 'Sed est ad odit eius eligendi dolores eligendi similique. Dolor incidunt consequatur enim sunt. Quam et explicabo distinctio consequatur odio libero.', 0, 1, 118, '2019-08-29 01:20:41', '2019-08-29 01:20:41', 12),
(8, 'http://www.medhurst.com/', 'Molestiae dolorum voluptas in est.', 'Voluptas sit sequi earum quod voluptatem. Iure dolore nemo quibusdam ratione cupiditate eum autem. Nostrum nobis ratione eaque vel cupiditate reiciendis repellendus consequatur.', 0, 1, 134, '2019-08-29 01:20:41', '2019-08-29 01:20:41', 2),
(9, 'https://www.torp.com/soluta-et-praesentium-ipsa-consequatur-maiores', 'Nobis repellendus blanditiis aut voluptatem.', 'Facere omnis est ut corrupti unde. Officiis ea blanditiis veritatis rerum. Suscipit cumque accusamus cumque hic ut et et.', 1, 1, 91, '2019-08-29 01:20:42', '2019-08-29 01:20:42', 10),
(10, 'http://dubuque.biz/', 'Beatae facere ipsam eos perferendis.', 'Assumenda consequatur ut corrupti rerum. Enim hic id voluptas voluptatem possimus consectetur. Laborum sint qui inventore quas vel et.', 0, 1, 98, '2019-08-29 01:20:42', '2019-08-29 01:20:42', 10),
(11, 'https://www.bosco.org/quis-qui-voluptatem-quia-tempora-iusto', 'Omnis in error dolorem et veniam.', 'Eaque est suscipit fugiat natus dignissimos quod repudiandae quos. Et omnis harum accusantium voluptatum sit omnis nobis. Voluptate quia molestiae atque dolorum ut.', 0, 1, 160, '2019-08-29 01:20:42', '2019-08-29 01:20:42', 9),
(12, 'http://www.oreilly.com/accusamus-quo-molestias-natus', 'Porro laborum soluta aspernatur reiciendis.', 'Quasi temporibus eveniet libero voluptatem est in. Molestiae error ab aperiam nisi aut. Non asperiores omnis voluptas neque error facilis excepturi sit.', 0, 1, 194, '2019-08-29 01:20:42', '2019-08-29 01:20:42', 7),
(13, 'http://koelpin.com/amet-aliquid-doloribus-sed-quae-dolorem-libero-voluptatum', 'Sunt sequi dolor architecto quasi qui non.', 'Illum quo et quas consequatur quia aperiam velit. Illo explicabo repudiandae incidunt ab non inventore. Ipsa ad animi voluptas sit qui est.', 0, 1, 166, '2019-08-29 01:20:42', '2019-08-29 01:20:42', 9),
(14, 'http://www.hoeger.org/sit-cupiditate-totam-nesciunt-fugiat-vitae-quae-ut', 'Est nihil enim repellendus iure ea.', 'Ut quia vitae dolores velit minima in quia. Dolorem fuga at quia libero minus nam. Dolorem est quisquam exercitationem optio accusamus expedita sint.', 0, 1, 73, '2019-08-29 01:20:42', '2019-08-29 01:20:42', 7),
(15, 'http://www.blanda.info/asperiores-a-ea-ad-ut-a-nemo', 'Molestiae aut et consequatur iure.', 'Incidunt repudiandae quos deserunt et a. Blanditiis suscipit corrupti omnis optio odit soluta. Voluptas id dolorum sint ea.', 1, 1, 30, '2019-08-29 01:20:42', '2019-08-29 01:20:42', 5),
(16, 'http://www.feest.info/in-molestiae-nesciunt-rerum-quam-accusantium', 'Sequi reprehenderit dignissimos placeat quae recusandae ut quas.', 'Vero beatae nulla et laborum harum porro soluta illum. Et quibusdam nobis explicabo omnis necessitatibus sapiente. Velit sit mollitia vel amet.', 0, 1, 71, '2019-08-29 01:20:42', '2019-08-29 01:20:42', 7),
(17, 'https://goldner.com/tempora-natus-ab-tempore-consequatur-praesentium-velit-quidem.html', 'Praesentium sed temporibus eos nihil quaerat.', 'Voluptatem nisi voluptas et dolor molestias. Dignissimos occaecati est occaecati in. Alias amet corrupti nihil nihil quia neque in.', 0, 1, 237, '2019-08-29 01:20:42', '2019-08-29 01:20:42', 10),
(18, 'http://www.hackett.com/sed-aut-unde-provident-sed-autem', 'Corrupti quam repellendus necessitatibus distinctio enim quos doloremque.', 'Deleniti aut similique nihil. Sint possimus harum earum ut numquam. Dolorem laborum eos aut magni quidem qui quam hic.', 1, 1, 47, '2019-08-29 01:20:42', '2019-08-29 01:20:42', 1),
(19, 'http://www.miller.net/', 'Itaque perspiciatis perferendis autem corporis.', 'Sed consequatur quia odit eum consequatur. Et ut rem et aut. Animi sapiente autem eaque quo hic.', 1, 1, 152, '2019-08-29 01:20:42', '2019-08-29 01:20:42', 6),
(20, 'https://www.wolff.com/at-esse-quia-accusantium-assumenda-fuga-harum-facilis', 'Minima quia est qui magnam modi vel et delectus.', 'Quia harum velit consectetur nesciunt. Dicta praesentium velit doloremque odit. Quasi voluptas autem iste in in.', 0, 1, 163, '2019-08-29 01:20:42', '2019-08-29 01:20:42', 5),
(21, 'http://www.conroy.biz/doloremque-nostrum-quia-tempora-et', 'Assumenda ut pariatur facere libero dignissimos.', 'Consequatur veritatis ut minus. Tempore numquam fugit totam vel molestias ratione. Tempora voluptate autem occaecati impedit.', 0, 1, 8, '2019-08-29 01:20:42', '2019-08-29 01:20:42', 2),
(22, 'https://hamill.net/consequatur-quia-ut-officia-ut-velit.html', 'Voluptatem ipsam aut qui et labore laboriosam perferendis repellat.', 'In voluptas suscipit debitis repellendus inventore odio. Itaque facere dolorum possimus illo qui illo. Reprehenderit expedita voluptas eaque sapiente dolor.', 1, 1, 188, '2019-08-29 01:20:42', '2019-08-29 01:20:42', 5),
(23, 'http://www.kuvalis.com/et-voluptates-voluptatibus-eaque-tempore-sit-cum', 'Sit quia illo porro nesciunt.', 'Quasi incidunt alias occaecati. Quas laborum ducimus eum sapiente omnis sed. Fugit illo quis laborum aut incidunt quia.', 0, 1, 162, '2019-08-29 01:20:42', '2019-08-29 01:20:42', 1),
(24, 'http://www.veum.info/ut-molestias-aut-dolor-enim-doloribus.html', 'Modi quia autem deserunt numquam iste.', 'Voluptas exercitationem necessitatibus fuga rem voluptatem voluptate. Quaerat unde sequi est ullam voluptatum dolores porro id. Sint rerum enim esse libero dolor.', 0, 1, 12, '2019-08-29 01:20:42', '2019-08-29 01:20:42', 12),
(25, 'https://johnson.com/eveniet-inventore-et-corrupti-ratione-quos-et.html', 'Rerum consequatur in corporis dolor minus numquam voluptatem modi.', 'In magni et et vel corporis eos. Totam in vel atque quam aut earum consequatur. Velit dignissimos quibusdam pariatur ipsum.', 1, 1, 147, '2019-08-29 01:20:42', '2019-08-29 01:20:42', 13),
(26, 'http://kulas.com/id-aut-architecto-alias-nobis-eos-fugiat.html', 'Voluptatum sunt rerum velit non ut sed dolorum.', 'Accusamus velit excepturi nulla dolor ut molestias. Nobis aperiam in sint id culpa temporibus qui. Excepturi molestiae eos vel accusantium molestiae laborum.', 1, 1, 189, '2019-08-29 01:20:42', '2019-08-29 01:20:42', 13),
(27, 'http://schiller.com/adipisci-aut-fuga-corrupti-consequatur-autem-ad-sed', 'Autem qui dolores minus voluptatem ullam aut.', 'Sit sint odit temporibus. Consequatur aut ipsam aliquid magni dolores rerum. Aliquam architecto aut et qui.', 1, 1, 164, '2019-08-29 01:20:42', '2019-08-29 01:20:42', 12),
(28, 'http://www.murphy.com/ab-doloremque-exercitationem-numquam', 'Inventore minus inventore dolorem ad autem impedit.', 'Tempore sapiente fugit rerum esse dolorem. Omnis qui quis doloremque nihil id consequatur voluptatum. Voluptate repudiandae sapiente et sint nostrum quasi.', 0, 1, 149, '2019-08-29 01:20:42', '2019-08-29 01:20:42', 9),
(29, 'https://beahan.com/sint-doloribus-quisquam-incidunt-eos-eos-totam-corrupti-expedita.html', 'Necessitatibus optio tenetur sint commodi vel labore.', 'Natus ut ab adipisci deserunt molestias. Itaque unde ut sapiente doloribus inventore quod optio et. Nesciunt aut aspernatur dolores unde expedita ea praesentium.', 1, 1, 101, '2019-08-29 01:20:42', '2019-08-29 01:20:42', 12),
(30, 'http://www.bruen.com/', 'Laboriosam exercitationem quia aperiam aperiam ut et.', 'Vel enim molestiae dicta placeat est magni ratione nihil. Neque dignissimos odit sit qui odio provident debitis. Odit autem harum vel occaecati esse odio ut ut.', 1, 1, 89, '2019-08-29 01:20:42', '2019-08-29 01:20:42', 5),
(31, 'http://lubowitz.org/dolor-expedita-nihil-modi-tempore-unde-sed-sit', 'Qui sapiente numquam quo aut.', 'Vitae autem velit sit cum eligendi voluptatem quidem. Possimus consequatur vitae amet voluptas sit architecto officiis. Quas rerum officiis soluta.', 0, 1, 151, '2019-08-29 01:20:42', '2019-08-29 01:20:42', 9),
(32, 'http://www.nader.net/hic-quae-dolorem-et-veniam', 'Sed excepturi vero aut officia corporis tenetur voluptatem.', 'Pariatur nesciunt voluptatem libero aut aut id maiores. Cupiditate culpa enim aut error sunt itaque. Aut impedit aut fugiat consequuntur.', 1, 1, 131, '2019-08-29 01:20:42', '2019-08-29 01:20:42', 7),
(33, 'https://beahan.com/est-est-adipisci-sunt-temporibus.html', 'Quia in nostrum quia temporibus accusamus dolor consequatur laboriosam.', 'Praesentium aspernatur cum cumque quis eaque consequatur qui corporis. Voluptas in voluptatibus sed iure. Dignissimos veritatis quis perspiciatis doloribus aspernatur et ipsam.', 0, 1, 104, '2019-08-29 01:20:42', '2019-08-29 01:20:42', 7),
(34, 'http://howe.com/', 'Nisi aut non ut.', 'Rerum consequatur omnis omnis laborum nihil assumenda est. Quo aperiam quia libero labore sint ex. Quis accusamus asperiores et voluptas.', 0, 1, 110, '2019-08-29 01:20:42', '2019-08-29 01:20:42', 7),
(35, 'http://www.larson.com/cumque-consequatur-tenetur-dolorum-tempore-vitae', 'Maiores sit esse similique dolor eos.', 'Rerum modi sed quo est ut. Deserunt nesciunt veniam quibusdam. Illum repellendus et qui molestiae.', 1, 1, 49, '2019-08-29 01:20:42', '2019-08-29 01:20:42', 11),
(36, 'http://hamill.com/perferendis-voluptatum-doloremque-consequatur-quaerat-at-tempore-hic-temporibus.html', 'Quia vel quia qui suscipit.', 'Aperiam culpa distinctio ea. Ea sit dolore placeat repellendus. Et itaque ipsam quod qui totam sunt placeat.', 0, 1, 68, '2019-08-29 01:20:42', '2019-08-29 01:20:42', 4),
(37, 'http://walker.com/vel-dolorem-eius-nemo-modi', 'Mollitia aliquid nesciunt tenetur hic ex.', 'Ratione praesentium ut quaerat blanditiis cupiditate. Est officia sed necessitatibus cupiditate delectus animi odio nesciunt. Laboriosam saepe quod laudantium expedita sed.', 1, 1, 93, '2019-08-29 01:20:42', '2019-08-29 01:20:42', 10),
(38, 'https://www.ebert.biz/id-debitis-odio-neque-dolorem', 'Qui id labore et sequi.', 'Et sed voluptatem impedit officiis aut ut et. Iste corporis est voluptatem aut quia. Consectetur error ipsam facilis accusamus.', 0, 1, 165, '2019-08-29 01:20:42', '2019-08-29 01:20:42', 11),
(39, 'https://www.lang.net/maiores-enim-quo-nemo-possimus', 'Hic sunt omnis iure iusto.', 'Temporibus vel sunt debitis in dolorum minima quidem. Explicabo ea officia maiores nam esse eveniet autem. Sed mollitia consectetur debitis.', 0, 1, 18, '2019-08-29 01:20:42', '2019-08-29 01:20:42', 7),
(40, 'http://crooks.com/', 'Dolores perspiciatis eveniet dolor deleniti exercitationem omnis rem.', 'Magni quo possimus aut labore vel perferendis. At non distinctio vel veritatis neque consectetur. Libero culpa vitae ratione qui sit velit.', 0, 1, 135, '2019-08-29 01:20:42', '2019-08-29 01:20:42', 5),
(41, 'http://www.jerde.com/laborum-minus-quis-voluptatem-dolorum.html', 'Modi laborum voluptatem quia molestias et rerum eos.', 'Quasi explicabo aliquid velit molestias. Tempora maiores ullam enim quos dolorem vel sint. Maiores fugit sequi facilis repellat quia pariatur.', 0, 1, 80, '2019-08-29 01:20:42', '2019-08-29 01:20:42', 2),
(42, 'http://lindgren.com/', 'Eos rerum commodi incidunt quaerat.', 'Qui magnam inventore nobis repudiandae ex veritatis non. Molestiae consequatur sed labore sed dolore labore et. Reprehenderit repudiandae non rerum dolore recusandae quia.', 1, 1, 151, '2019-08-29 01:20:42', '2019-08-29 01:20:42', 2),
(43, 'http://bednar.com/fugiat-ut-pariatur-et-dolorum-molestiae-velit-non-excepturi.html', 'Qui velit voluptas aut est rerum iste tempore impedit.', 'Nesciunt et illum soluta aut minus facilis quidem. Veniam omnis sed dolores soluta occaecati nisi. Hic hic facilis et blanditiis commodi sit.', 0, 1, 152, '2019-08-29 01:20:42', '2019-08-29 01:20:42', 2),
(44, 'http://www.kozey.org/', 'Suscipit voluptatibus voluptas soluta.', 'Veniam omnis doloribus expedita aut sapiente. Aliquam quo quo aut nihil. Est aut autem esse amet ut.', 0, 1, 97, '2019-08-29 01:20:42', '2019-08-29 01:20:42', 8),
(45, 'http://www.kutch.net/qui-reprehenderit-ut-alias-necessitatibus-facere-ut.html', 'Consequatur culpa velit debitis eos.', 'Debitis perspiciatis cupiditate enim atque vitae illo. Praesentium molestiae atque odit mollitia sed est. Autem iusto aut sit similique.', 1, 1, 75, '2019-08-29 01:20:42', '2019-08-29 01:20:42', 13),
(46, 'http://www.welch.info/in-possimus-ab-recusandae-optio-veritatis', 'Quod iure at modi maiores voluptates fuga.', 'Animi perspiciatis dolor incidunt possimus. Tempore a ut accusantium rerum. Molestiae odio ipsa ea.', 1, 1, 250, '2019-08-29 01:20:42', '2019-08-29 01:20:42', 3),
(47, 'http://www.littel.com/quod-expedita-omnis-beatae-maiores-commodi', 'Laborum incidunt ut sed ad provident.', 'Sit enim corrupti sed quia odit. Quasi voluptates fuga ab unde est quia consequatur. Quia aut eum aperiam reprehenderit vitae velit laboriosam velit.', 0, 1, 124, '2019-08-29 01:20:42', '2019-08-29 01:20:42', 5),
(48, 'https://murphy.biz/omnis-iure-perferendis-saepe-est-eos-id.html', 'Hic nesciunt dolorem maxime.', 'Voluptatem minima cupiditate itaque ut autem officia. Necessitatibus ut beatae velit doloribus. Quaerat iusto harum consequatur molestias temporibus pariatur voluptatibus.', 1, 1, 213, '2019-08-29 01:20:42', '2019-08-29 01:20:42', 7),
(49, 'https://bogan.com/pariatur-soluta-est-animi-voluptate.html', 'Nesciunt adipisci asperiores incidunt repellendus ullam occaecati.', 'Qui aut corrupti perferendis et dolor aut est. Dignissimos recusandae rem est aut omnis. Est ex consectetur ipsum odio.', 1, 1, 209, '2019-08-29 01:20:42', '2019-08-29 01:20:42', 1),
(50, 'http://www.king.com/dolorem-consequatur-debitis-rerum-illo-sit-ut', 'Expedita ipsa iusto dolor incidunt.', 'Velit nulla aut odit est natus sunt perspiciatis ut. Nihil molestiae iusto aut sit tempora. Illum dignissimos deserunt voluptates ipsum dicta esse vel.', 0, 1, 197, '2019-08-29 01:20:42', '2019-08-29 01:20:42', 12);
-- --------------------------------------------------------
--
-- Table structure for table `users`
--
CREATE TABLE `users` (
`id` int(10) UNSIGNED NOT NULL,
`name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`password` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`role` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`active` tinyint(4) NOT NULL,
`school_id` int(11) NOT NULL,
`code` int(11) NOT NULL,
`student_code` int(11) NOT NULL,
`gender` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`blood_group` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`nationality` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`phone_number` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`address` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`about` text COLLATE utf8mb4_unicode_ci NOT NULL,
`pic_path` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`verified` tinyint(4) NOT NULL,
`section_id` int(10) UNSIGNED NOT NULL,
`remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`department_id` int(10) UNSIGNED NOT NULL DEFAULT '0',
`stripe_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`card_brand` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`card_last_four` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`trial_ends_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `users`
--
INSERT INTO `users` (`id`, `name`, `email`, `password`, `role`, `active`, `school_id`, `code`, `student_code`, `gender`, `blood_group`, `nationality`, `phone_number`, `address`, `about`, `pic_path`, `verified`, `section_id`, `remember_token`, `created_at`, `updated_at`, `department_id`, `stripe_id`, `card_brand`, `card_last_four`, `trial_ends_at`) VALUES
(1, '<NAME>', '<EMAIL>', '$2y$10$InzbaljttiCd1ujzUtwZ.OcrkdFwiZ0cJ30F.HLgDDlWxDhDj5hYi', 'master', 1, 0, 0, 0, 'male', '', '', '', '', '', '', 1, 0, 'RhhrrKQJn7Aq4VpoI3lqCcepNc4dWw4iJ1CHJzu3FGWuof0WvARCE4xKqdtq', NULL, NULL, 0, NULL, NULL, NULL, NULL),
(2, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'admin', 1, 1, 19945377, 7053724, 'male', 'o+', 'Bangladeshi', '1-238-867-9911', '7569 Yasmeen Square Suite 239\nBogisichhaven, NV 85373-7117', 'Soluta voluptatum asperiores id voluptates et doloremque enim. Architecto aliquid et saepe et eum. Et repellendus eos culpa explicabo ducimus nesciunt.', 'https://lorempixel.com/640/480/?41681', 1, 20, 'H6zYsKlRNX', '2019-08-29 01:20:32', '2019-08-29 01:23:56', 3, NULL, NULL, NULL, NULL),
(3, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'admin', 1, 1, 19945377, 3385158, 'female', 'ab', 'Bangladeshi', '979-980-5779', '50320 Art Prairie Apt. 990\nHaliehaven, NY 62561-0914', 'Et atque vitae eligendi aut quae alias nihil. Porro ea mollitia porro consectetur cum fuga. Id molestiae ducimus voluptas quaerat.', 'https://lorempixel.com/640/480/?37273', 1, 18, 'TDpji3Ck3TfnknAiaMpW7LhNtpvBWq8yAmynxvKsCWlqxEfOBY7mfaA9Xnbx', '2019-08-29 01:20:32', '2019-08-29 01:20:32', 7, NULL, NULL, NULL, NULL),
(4, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'admin', 1, 1, 19945377, 7562666, 'male', 'a+', 'Bangladeshi', '(349) 739-0377 x84577', '8702 Roob Hills\nWest Sunnyville, MA 12935', 'Cupiditate culpa autem repellendus enim. Mollitia incidunt excepturi et ut esse possimus. Expedita minus voluptas possimus est.', 'https://lorempixel.com/640/480/?85857', 1, 5, '6RbpkT7f4B', '2019-08-29 01:20:32', '2019-08-29 01:20:32', 7, NULL, NULL, NULL, NULL),
(5, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'admin', 1, 1, 19945377, 1972028, 'female', 'b+', 'Bangladeshi', '336-863-7796', '960 Esperanza Junctions Suite 698\nLake Alena, NY 58079-7069', 'Eligendi esse repellendus iure minus similique ab. Velit ratione similique minima sit eveniet. Voluptatem amet laborum voluptatibus aut.', 'https://lorempixel.com/640/480/?36456', 1, 17, 'inbLhiHb4L', '2019-08-29 01:20:32', '2019-08-29 01:20:32', 3, NULL, NULL, NULL, NULL),
(6, 'Prof. <NAME> III', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'admin', 1, 1, 19945377, 391909, 'female', 'ab', 'Bangladeshi', '768.220.9121 x59222', '174 Ledner Plaza Apt. 931\nOfeliaburgh, RI 81176', 'Qui placeat est quidem doloribus ex numquam repudiandae. Molestias non tempore reprehenderit labore consequuntur et aperiam. Omnis maxime sint ut natus.', 'https://lorempixel.com/640/480/?21931', 1, 8, 'U262wyAavU', '2019-08-29 01:20:32', '2019-08-29 01:20:32', 2, NULL, NULL, NULL, NULL),
(7, '<NAME> DDS', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'admin', 1, 1, 19945377, 5350586, 'male', 'ab', 'Bangladeshi', '1-348-271-2602', '66367 Beier Forks Apt. 247\nLake Carmineville, CO 41401', 'Voluptatem sint facere ea incidunt voluptatum et omnis. Rerum est sed autem praesentium commodi veniam. Iste voluptatum hic eveniet pariatur.', 'https://lorempixel.com/640/480/?13465', 1, 5, 'j7gH7M73Nw', '2019-08-29 01:20:32', '2019-08-29 01:20:32', 2, NULL, NULL, NULL, NULL),
(8, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'admin', 1, 1, 19945377, 7100761, 'male', 'o+', 'Bangladeshi', '1-220-761-3633 x51223', '31439 Murphy Via\nSouth Ronaldo, AR 41375', 'Fugit odio cupiditate in nihil ab neque reiciendis. Veritatis corporis ratione mollitia adipisci. Voluptas est minus est assumenda expedita molestias ratione.', 'https://lorempixel.com/640/480/?72303', 1, 8, 'YLyBLr8HNm', '2019-08-29 01:20:32', '2019-08-29 01:20:32', 3, NULL, NULL, NULL, NULL),
(9, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'admin', 1, 1, 19945377, 2952369, 'male', 'a+', 'Bangladeshi', '+1.767.341.1397', '35200 Emmerich Lakes Suite 148\nAbernathyview, ID 90106', 'Sit in velit qui aut quidem sit. Iste itaque voluptatem porro. Qui voluptatem quisquam quod aut dolorum.', 'https://lorempixel.com/640/480/?58805', 1, 15, 'pvUd3ZmTYa', '2019-08-29 01:20:32', '2019-08-29 01:20:32', 1, NULL, NULL, NULL, NULL),
(10, 'Dr. <NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'admin', 1, 1, 19945377, 5046126, 'male', 'a+', 'Bangladeshi', '1-370-675-1762 x5653', '3805 Cristopher Mill\nZoraborough, NY 16133', 'Ullam nulla tenetur dolores rerum harum. Velit optio fugit autem est commodi quos. Ea est doloremque itaque provident reiciendis quia ut qui.', 'https://lorempixel.com/640/480/?68171', 1, 11, 'NGNV73kybp', '2019-08-29 01:20:32', '2019-08-29 01:20:32', 10, NULL, NULL, NULL, NULL),
(11, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'admin', 1, 1, 19945377, 77150, 'female', 'o+', 'Bangladeshi', '(702) 872-1341', '9218 Scot Lodge Suite 890\nSouth Elenor, NC 48217-6025', 'Est facilis fugit quis rem. Maxime sunt in exercitationem natus quam aliquam similique. Non recusandae vel molestiae sint et sit.', 'https://lorempixel.com/640/480/?24917', 1, 4, 'RJWwSzmAYS', '2019-08-29 01:20:32', '2019-08-29 01:20:32', 8, NULL, NULL, NULL, NULL),
(12, 'Miss <NAME> DDS', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'accountant', 1, 1, 19945377, 9423065, 'female', 'a+', 'Bangladeshi', '+1.894.246.1960', '468 Fabiola Landing Suite 400\nBlandatown, RI 65164-2048', 'Officia dolorum optio autem autem consequatur fuga. Maiores mollitia atque repudiandae nobis necessitatibus eum. Qui inventore praesentium est non dolorum.', 'https://lorempixel.com/640/480/?39852', 1, 5, '246hcVfY14', '2019-08-29 01:20:33', '2019-08-29 01:20:33', 10, NULL, NULL, NULL, NULL),
(13, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'accountant', 1, 1, 19945377, 3534480, 'female', 'b+', 'Bangladeshi', '+1 (607) 568-6506', '88895 Predovic Green Suite 758\nLake Jabari, MS 05326', 'Dolorum occaecati sed perferendis eum dolorem. Voluptatem aut pariatur impedit unde voluptatem. Ab illo natus tenetur enim ab.', 'https://lorempixel.com/640/480/?97335', 1, 9, 'xauQhxEDZp', '2019-08-29 01:20:33', '2019-08-29 01:20:33', 3, NULL, NULL, NULL, NULL),
(14, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'accountant', 1, 1, 19945377, 8509734, 'female', 'a+', 'Bangladeshi', '1-553-643-7659 x57413', '101 Myah Via\nGleichnerport, MS 85945-7603', 'In repellat quasi velit sequi eos eaque corporis est. Nostrum labore architecto sint recusandae. Earum eligendi ad tempore.', 'https://lorempixel.com/640/480/?11724', 1, 14, 'mieSEbt8oT', '2019-08-29 01:20:33', '2019-08-29 01:20:33', 7, NULL, NULL, NULL, NULL),
(15, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'accountant', 1, 1, 19945377, 8432911, 'male', 'a+', 'Bangladeshi', '(814) 964-1337 x517', '203 Von Springs\nSouth Zena, RI 77061', 'Architecto debitis est et nihil molestias quos. Reiciendis itaque sapiente temporibus omnis voluptates consequatur rem blanditiis. Necessitatibus animi eveniet et quas numquam.', 'https://lorempixel.com/640/480/?11362', 1, 16, '2dxt6lLknn', '2019-08-29 01:20:33', '2019-08-29 01:20:33', 9, NULL, NULL, NULL, NULL),
(16, 'Dr. <NAME> IV', '<EMAIL>', <PASSWORD>$HnUsUeGC<PASSWORD>OOESU<PASSWORD>3fOiZpCfGEp7.aVtO46', 'accountant', 1, 1, 19945377, 5398810, 'male', 'b+', 'Bangladeshi', '764.460.4679', '3048 Jaqueline Ridges\nNew Titus, NC 85315-1537', 'Quod vel est rerum voluptates nobis atque saepe. Odio odit est aliquam perferendis. Aliquam eveniet possimus itaque et necessitatibus.', 'https://lorempixel.com/640/480/?71542', 1, 16, 'JrhVznPdVE', '2019-08-29 01:20:33', '2019-08-29 01:20:33', 7, NULL, NULL, NULL, NULL),
(17, 'Dr. <NAME> MD', '<EMAIL>', <PASSWORD>', 'accountant', 1, 1, 19945377, 4882679, 'male', 'ab', 'Bangladeshi', '(651) 476-4146 x9051', '65238 <NAME>\nNew Morganville, NH 59555-9588', 'Sed impedit omnis tempora eligendi. Quos eos iusto fugiat aut est porro. Aut animi ad placeat iusto cumque veniam.', 'https://lorempixel.com/640/480/?63912', 1, 6, 'p8gT7KOxcs', '2019-08-29 01:20:33', '2019-08-29 01:20:33', 4, NULL, NULL, NULL, NULL),
(18, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'accountant', 1, 1, 19945377, 6523530, 'female', 'o+', 'Bangladeshi', '557.766.6128 x36719', '17711 Metz Spurs\nPort Kiannafurt, NC 25219', 'Enim quia dolores consequatur pariatur. Rerum molestiae dolores modi ut maxime omnis et. Ex et ea nihil enim qui ipsam.', 'https://lorempixel.com/640/480/?87395', 1, 19, 'FXDaewqkRv', '2019-08-29 01:20:33', '2019-08-29 01:20:33', 5, NULL, NULL, NULL, NULL),
(19, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'accountant', 1, 1, 19945377, 7432893, 'male', 'o+', 'Bangladeshi', '(773) 892-0154', '5226 Ayla Cove\nTownefurt, OH 97946', 'Et doloribus consequatur maiores voluptatem aut aperiam. Inventore dolor aspernatur omnis non. Unde aspernatur dicta non praesentium.', 'https://lorempixel.com/640/480/?30592', 1, 17, '468NZflfe5', '2019-08-29 01:20:33', '2019-08-29 01:20:33', 8, NULL, NULL, NULL, NULL),
(20, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'accountant', 1, 1, 19945377, 3635394, 'male', 'ab', 'Bangladeshi', '+1-592-708-6364', '704 Arno Street Apt. 178\nEdenfort, LA 18015-0180', 'Eos aut voluptate ducimus. Iure accusamus quo sunt enim sequi iure autem. Exercitationem sint voluptatem totam distinctio.', 'https://lorempixel.com/640/480/?52082', 1, 4, 'GEmSoX4M2M', '2019-08-29 01:20:33', '2019-08-29 01:20:33', 7, NULL, NULL, NULL, NULL),
(21, '<NAME>az', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'accountant', 1, 1, 19945377, 6148628, 'male', 'a+', 'Bangladeshi', '651.772.2862', '6503 Auer Canyon Suite 838\nNorth Arnold, NV 70721', 'Occaecati cupiditate voluptatum optio dolore tempora tempora velit. Necessitatibus dolorum esse magni et. Rem consequuntur ut aliquam.', 'https://lorempixel.com/640/480/?49706', 1, 1, 'a71H9TzFIO', '2019-08-29 01:20:33', '2019-08-29 01:20:33', 3, NULL, NULL, NULL, NULL),
(22, '<NAME> DVM', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'librarian', 1, 1, 19945377, 8039469, 'male', 'b+', 'Bangladeshi', '396-532-6945 x312', '558 Laurine Meadow Apt. 718\nClotildeport, NM 14980', 'Qui ea illo repudiandae vel saepe. Quaerat quo laborum nihil. Omnis et soluta dolorum ipsam possimus vitae.', 'https://lorempixel.com/640/480/?13922', 1, 13, 'iGOwPOA6eC', '2019-08-29 01:20:33', '2019-08-29 01:20:33', 2, NULL, NULL, NULL, NULL),
(23, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'librarian', 1, 1, 19945377, 7247196, 'female', 'a+', 'Bangladeshi', '(749) 813-9769', '874 Pollich Streets Suite 817\nReganburgh, DC 67069', 'Aut reiciendis delectus molestiae minus quo in. Quisquam accusamus reiciendis voluptates pariatur ut optio. Sed in voluptatem perspiciatis cumque alias harum nihil.', 'https://lorempixel.com/640/480/?28083', 1, 19, 'UHMeVQNg6C', '2019-08-29 01:20:33', '2019-08-29 01:20:33', 4, NULL, NULL, NULL, NULL),
(24, '<NAME> Sr.', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'librarian', 1, 1, 19945377, 7839920, 'male', 'o+', 'Bangladeshi', '628.422.5694', '988 Von Prairie Suite 414\nWittingchester, MO 57864', 'Quia aliquid aut aperiam ipsam est. In aut accusantium atque ea tempore. Rem aut vero harum asperiores ut quae qui.', 'https://lorempixel.com/640/480/?96964', 1, 16, 'l2SRUusNuj', '2019-08-29 01:20:33', '2019-08-29 01:20:33', 6, NULL, NULL, NULL, NULL),
(25, '<NAME>', '<EMAIL>', <PASSWORD>', 'librarian', 1, 1, 19945377, 7458702, 'female', 'o+', 'Bangladeshi', '712.700.6624', '66618 Zieme Trafficway Suite 243\nNew Zitabury, LA 46839', 'Architecto laboriosam voluptatum praesentium hic accusamus sed optio. Quia animi est et aspernatur maxime. Et nam iusto veniam possimus ut ipsam.', 'https://lorempixel.com/640/480/?83989', 1, 14, 'Xdc3ygnHHt', '2019-08-29 01:20:33', '2019-08-29 01:20:33', 3, NULL, NULL, NULL, NULL),
(26, '<NAME>', '<EMAIL>', <PASSWORD>', 'librarian', 1, 1, 19945377, 8292662, 'female', 'ab', 'Bangladeshi', '1-250-939-8786', '51803 Walsh Glen Apt. 664\nSouth Altaside, MD 30316-3622', 'Itaque et est aliquam vel. Similique quae culpa ut et nulla omnis. Sint voluptatem qui possimus ut ipsa ullam et.', 'https://lorempixel.com/640/480/?36250', 1, 11, 'oCHcVc4BKG', '2019-08-29 01:20:33', '2019-08-29 01:20:33', 7, NULL, NULL, NULL, NULL),
(27, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'librarian', 1, 1, 19945377, 4858833, 'male', 'o+', 'Bangladeshi', '+1-668-316-8585', '68299 Hackett Ford\nSouth Augustus, WY 43550-7452', 'Occaecati accusamus omnis illo deleniti quibusdam officia est. Eveniet eos tenetur tempora amet occaecati vel. Architecto sit sunt temporibus quasi.', 'https://lorempixel.com/640/480/?75362', 1, 2, '8wAlFr2FgL', '2019-08-29 01:20:33', '2019-08-29 01:20:33', 9, NULL, NULL, NULL, NULL),
(28, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'librarian', 1, 1, 19945377, 6296874, 'male', 'a+', 'Bangladeshi', '1-398-203-0842', '95204 Leuschke Heights Apt. 212\nHerzogberg, IA 15317', 'Culpa ea illum voluptatem nostrum labore ducimus. Tempora sed officiis et eius delectus. Ipsa nam dolor non reiciendis tempore.', 'https://lorempixel.com/640/480/?87537', 1, 13, 'gcsqlv7N6e', '2019-08-29 01:20:33', '2019-08-29 01:20:33', 10, NULL, NULL, NULL, NULL),
(29, 'Mrs. <NAME> MD', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'librarian', 1, 1, 19945377, 8462991, 'male', 'a+', 'Bangladeshi', '+1 (654) 296-2054', '84590 Kaylin Plains\nEmelymouth, CO 62831-0390', 'Quam sunt occaecati sed non earum. Ea quia voluptas ipsum asperiores repudiandae veniam. Aut nihil voluptatem odit rerum.', 'https://lorempixel.com/640/480/?54820', 1, 19, 'RJTSwOnltX', '2019-08-29 01:20:33', '2019-08-29 01:20:33', 6, NULL, NULL, NULL, NULL),
(30, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'librarian', 1, 1, 19945377, 6623335, 'female', 'a+', 'Bangladeshi', '(696) 276-1657 x5526', '698 Norris Skyway\nEast Arlieport, AL 80493-8841', 'Nam et rerum dolorum quia voluptatibus. Unde vero provident officia qui quas nemo. Earum sed adipisci dolor vitae delectus.', 'https://lorempixel.com/640/480/?38024', 1, 15, 'Vo4Gj5xgab', '2019-08-29 01:20:33', '2019-08-29 01:20:33', 4, NULL, NULL, NULL, NULL),
(31, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'librarian', 1, 1, 19945377, 7156035, 'male', 'ab', 'Bangladeshi', '(240) 955-8589 x0001', '84915 Ephraim Brooks\nSanfordstad, OH 18092', 'Voluptatem omnis commodi voluptas in nostrum est. Ut omnis id excepturi voluptatem laborum minus iste. Ab commodi explicabo earum.', 'https://lorempixel.com/640/480/?41889', 1, 7, 'cBwc9qjDJG', '2019-08-29 01:20:33', '2019-08-29 01:20:33', 8, NULL, NULL, NULL, NULL),
(32, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'teacher', 1, 1, 19945377, 1003820, 'female', 'b+', 'Bangladeshi', '1-289-254-7775 x27335', '559 Evert Springs Suite 199\nJastport, FL 80302-2171', 'Eum eligendi quisquam dolorem officiis fugiat. Reprehenderit velit sit et quas non. Nemo illo quisquam autem nostrum maiores id quisquam.', 'https://lorempixel.com/640/480/?26393', 1, 12, 'vqNUIyzZ12', '2019-08-29 01:20:33', '2019-08-29 01:20:33', 6, NULL, NULL, NULL, NULL),
(33, 'Mrs. <NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'teacher', 1, 1, 19945377, 6685267, 'male', 'ab', 'Bangladeshi', '+16828699961', '7492 Ulises Park\nEstevanstad, KY 84186', 'Distinctio voluptas impedit aspernatur sed ut voluptatem ut. Eligendi itaque est quo aperiam eos et consequatur. Et alias labore deleniti incidunt dignissimos.', 'https://lorempixel.com/640/480/?45008', 1, 6, 'SlobtJR9is', '2019-08-29 01:20:33', '2019-08-29 01:20:33', 9, NULL, NULL, NULL, NULL),
(34, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'teacher', 1, 1, 19945377, 9396446, 'female', 'a+', 'Bangladeshi', '(394) 442-3087 x399', '21751 Janick View Apt. 036\nJerdefort, LA 22553-7947', 'Officia et quibusdam quis earum cupiditate cum voluptas. Quos et magnam sit ipsa non quia. Quisquam vitae voluptatibus provident dolores dolor iste nemo.', 'https://lorempixel.com/640/480/?41430', 1, 6, '3JItE8hZyo', '2019-08-29 01:20:34', '2019-08-29 01:20:34', 8, NULL, NULL, NULL, NULL),
(35, 'Prof. <NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'teacher', 1, 1, 19945377, 3874231, 'female', 'o+', 'Bangladeshi', '(312) 204-3536 x543', '27879 Norberto Motorway Suite 509\nPamelachester, DE 32642-6211', 'Laboriosam fuga excepturi necessitatibus molestiae repellat nulla sunt. Earum illum ut voluptatibus. Molestiae adipisci voluptas aliquam tenetur.', 'https://lorempixel.com/640/480/?81482', 1, 16, 'erLQIJDRRt', '2019-08-29 01:20:34', '2019-08-29 01:20:34', 7, NULL, NULL, NULL, NULL),
(36, 'Prof. <NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'teacher', 1, 1, 19945377, 9203131, 'male', 'a+', 'Bangladeshi', '395-997-7741 x686', '158 Wiegand Groves Suite 672\nKesslerhaven, AL 31441-9399', 'Explicabo cumque quam aut consequatur modi aspernatur. Eligendi dolores et ipsam alias aspernatur voluptatem quas. Sed repellendus porro iste consequatur et quas quia cum.', 'https://lorempixel.com/640/480/?49944', 1, 14, 'LBIu4FkoFG', '2019-08-29 01:20:34', '2019-08-29 01:20:34', 3, NULL, NULL, NULL, NULL),
(37, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'teacher', 1, 1, 19945377, 5715930, 'male', 'a+', 'Bangladeshi', '753-812-1276', '400 Mante Mountain\nDonnellmouth, CO 37102', 'Reprehenderit labore qui sint. Dolorem quod id quia vero ut nam. Atque vitae corporis et.', 'https://lorempixel.com/640/480/?76634', 1, 16, 'rFmWPE4yi5', '2019-08-29 01:20:34', '2019-08-29 01:20:34', 5, NULL, NULL, NULL, NULL),
(38, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'teacher', 1, 1, 19945377, 4645357, 'male', 'b+', 'Bangladeshi', '519-376-1172', '314 Alexzander Inlet Apt. 165\nNorth Rafaela, TN 70811-0287', 'Nulla quas est eum vero ut sit illum. Autem neque molestias perspiciatis in labore corporis. Eligendi quia beatae nisi iusto minima et excepturi.', 'https://lorempixel.com/640/480/?49182', 1, 7, 'C0bmHruufN', '2019-08-29 01:20:34', '2019-08-29 01:20:34', 5, NULL, NULL, NULL, NULL),
(39, '<NAME> V', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'teacher', 1, 1, 19945377, 2033923, 'female', 'ab', 'Bangladeshi', '270-724-9928', '85165 Delphine Brook Apt. 991\nTownetown, TN 31416', 'Inventore cumque provident autem et. Nihil facilis vitae fuga et doloribus rerum. Quis possimus aspernatur quae voluptatem.', 'https://lorempixel.com/640/480/?19706', 1, 3, 'M6XvDENQN2', '2019-08-29 01:20:34', '2019-08-29 01:20:34', 4, NULL, NULL, NULL, NULL),
(40, '<NAME>', '<EMAIL>', <PASSWORD>$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'teacher', 1, 1, 19945377, 1479434, 'male', 'o+', 'Bangladeshi', '+1 (482) 373-0591', '468 Lorna Lane Suite 955\nAllieshire, MO 73731', 'Eum sint incidunt tempora dolores commodi porro. Sit consequuntur rerum et optio at. Quis est culpa laudantium fuga et repellat voluptatem.', 'https://lorempixel.com/640/480/?42848', 1, 2, 'zCawpu3owi', '2019-08-29 01:20:34', '2019-08-29 01:20:34', 6, NULL, NULL, NULL, NULL),
(41, 'Prof. <NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'teacher', 1, 1, 19945377, 5461074, 'male', 'b+', 'Bangladeshi', '871-604-0893 x5926', '23694 Jorge Falls Apt. 187\nLoraberg, SC 98336-4447', 'Et explicabo ratione impedit culpa corporis officiis eveniet. Harum magni nisi aperiam voluptatem et unde. Quasi ea quas voluptatibus quo corrupti expedita.', 'https://lorempixel.com/640/480/?89979', 1, 20, 'NDa3EMwbso', '2019-08-29 01:20:34', '2019-08-29 01:20:34', 3, NULL, NULL, NULL, NULL),
(42, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'teacher', 1, 1, 19945377, 9894415, 'male', 'ab', 'Bangladeshi', '(339) 245-2461', '2629 Murphy Loaf\nPort Alejandrin, HI 51923', 'Enim sint est est ratione et sit. Quos ipsam voluptatum magnam. Quia et iusto inventore officiis deserunt.', 'https://lorempixel.com/640/480/?53532', 1, 8, 'sU9rhTNoQo', '2019-08-29 01:20:34', '2019-08-29 01:20:34', 8, NULL, NULL, NULL, NULL),
(43, 'Ms. <NAME> Jr.', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'teacher', 1, 1, 19945377, 528046, 'male', 'b+', 'Bangladeshi', '+1-757-823-9625', '2583 Jackson Island Suite 328\nWest Dewayne, MA 96883', 'Deserunt quia nisi voluptatem dicta et quia. Velit dicta amet perferendis sapiente et id. Enim dolor tempore tempora architecto qui doloremque cumque.', 'https://lorempixel.com/640/480/?22158', 1, 1, 'jWxfpduiec', '2019-08-29 01:20:34', '2019-08-29 01:20:34', 1, NULL, NULL, NULL, NULL),
(44, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'teacher', 1, 1, 19945377, 7697609, 'female', 'a+', 'Bangladeshi', '541.314.9695', '26024 Marcelo Drives\nPort Zachariah, SD 23443-3458', 'Impedit fugit labore itaque adipisci quia quos explicabo. Error rerum voluptas hic repellendus maxime consequatur quis. Quia eaque nemo reiciendis ex.', 'https://lorempixel.com/640/480/?24700', 1, 6, 'bltqZQWvxd', '2019-08-29 01:20:34', '2019-08-29 01:20:34', 3, NULL, NULL, NULL, NULL),
(45, 'Prof. <NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'teacher', 1, 1, 19945377, 1653496, 'female', 'o+', 'Bangladeshi', '1-990-406-1529 x3875', '573 Klocko Shore Apt. 393\nPort Einarmouth, CT 82615', 'Ut quaerat molestiae accusamus excepturi incidunt sed quia. Ea doloremque porro quia perferendis magnam voluptatem. Dignissimos aut repudiandae sequi.', 'https://lorempixel.com/640/480/?12728', 1, 7, 'QjfTVTKFJ6', '2019-08-29 01:20:34', '2019-08-29 01:20:34', 7, NULL, NULL, NULL, NULL),
(46, 'Prof. <NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'teacher', 1, 1, 19945377, 9411862, 'male', 'o+', 'Bangladeshi', '834.570.8369 x423', '23738 Wyman Port\nRennerton, DC 84595', 'Est consequatur ut inventore distinctio fuga. Enim doloribus suscipit vel velit ea. Sit velit beatae vitae libero neque repudiandae.', 'https://lorempixel.com/640/480/?31065', 1, 4, 'xe1yVWPlTV', '2019-08-29 01:20:34', '2019-08-29 01:20:34', 3, NULL, NULL, NULL, NULL),
(47, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'teacher', 1, 1, 19945377, 3751771, 'male', 'o+', 'Bangladeshi', '1-941-734-8949 x1671', '76245 Retta Bridge\nPort Erwinfurt, NE 27571', 'Veniam similique veritatis error ut pariatur est quia ab. Et quis animi incidunt recusandae maiores adipisci consectetur. Unde est tenetur ut ea tenetur dolorem fuga ex.', 'https://lorempixel.com/640/480/?43264', 1, 1, 'vUoxX3d6Oz', '2019-08-29 01:20:34', '2019-08-29 01:20:34', 4, NULL, NULL, NULL, NULL),
(48, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'teacher', 1, 1, 19945377, 4641163, 'male', 'o+', 'Bangladeshi', '879.820.5033', '68043 Jensen Track\nNew Destinee, ND 89231', 'Maiores assumenda aperiam veniam possimus rerum incidunt impedit. Aut omnis maxime modi magnam qui assumenda. Beatae rerum est in.', 'https://lorempixel.com/640/480/?39384', 1, 6, '8hKQ9BotkB', '2019-08-29 01:20:34', '2019-08-29 01:20:34', 9, NULL, NULL, NULL, NULL),
(49, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'teacher', 1, 1, 19945377, 2871722, 'male', 'b+', 'Bangladeshi', '524-438-2258 x114', '130 Raymond Circle\nWest Cameronmouth, NV 85370', 'Nobis et reprehenderit doloribus et sit distinctio numquam. Natus ut sunt et dicta. Illo ut qui et sapiente iure itaque dolorem.', 'https://lorempixel.com/640/480/?43437', 1, 15, 'NL5EOXP88h', '2019-08-29 01:20:34', '2019-08-29 01:20:34', 3, NULL, NULL, NULL, NULL),
(50, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'teacher', 1, 1, 19945377, 6313467, 'male', 'a+', 'Bangladeshi', '+13085065276', '620 Homenick Squares Apt. 928\nSouth Sheastad, SC 34628', 'Libero quis animi excepturi in optio minus dolor nihil. Quam quia labore dolores aperiam enim quam vel. Quo ratione dolorum quia ut.', 'https://lorempixel.com/640/480/?67627', 1, 19, 'ypxKGOtpJl', '2019-08-29 01:20:34', '2019-08-29 01:20:34', 10, NULL, NULL, NULL, NULL),
(51, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'teacher', 1, 1, 19945377, 598630, 'male', 'b+', 'Bangladeshi', '+1 (587) 867-3931', '759 Ladarius Orchard\nWest Ursulaview, KS 91435', 'Minima provident aut quasi saepe impedit temporibus. Et veritatis sit quos est tempora autem voluptatem minus. Qui molestiae veniam necessitatibus praesentium voluptatem.', 'https://lorempixel.com/640/480/?28905', 1, 6, 'DCBXWiffHA', '2019-08-29 01:20:34', '2019-08-29 01:20:34', 5, NULL, NULL, NULL, NULL),
(52, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'teacher', 1, 1, 19945377, 729661, 'male', 'o+', 'Bangladeshi', '+1.942.349.7301', '22396 Farrell Pines Apt. 552\nSouth Alayna, MI 04499-6033', 'Dolor dolorum voluptate consectetur voluptas et. Quos nesciunt sit libero. Debitis maxime maxime dolores possimus necessitatibus atque qui.', 'https://lorempixel.com/640/480/?82280', 1, 1, 'Snh7c3rh8C', '2019-08-29 01:20:34', '2019-08-29 01:20:34', 6, NULL, NULL, NULL, NULL),
(53, '<NAME>.', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'teacher', 1, 1, 19945377, 8549737, 'female', 'o+', 'Bangladeshi', '(430) 943-1609', '99116 Rolfson Glen\nEast Chasity, IA 95666', 'Distinctio omnis sed rerum necessitatibus. Quia et consequatur modi laboriosam laborum. Pariatur placeat magni sapiente laudantium.', 'https://lorempixel.com/640/480/?44485', 1, 6, 'UBrCjav3RU', '2019-08-29 01:20:34', '2019-08-29 01:20:34', 3, NULL, NULL, NULL, NULL),
(54, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'teacher', 1, 1, 19945377, 7470880, 'female', 'o+', 'Bangladeshi', '+1.936.757.8302', '50519 Yasmine Centers\nEmmittside, TX 42259-9609', 'Qui recusandae rerum asperiores quae velit perferendis mollitia ut. Quaerat ea minus et est. Consequatur velit nam porro nemo vel cupiditate.', 'https://lorempixel.com/640/480/?20170', 1, 7, 'Ui4XCqDJRD', '2019-08-29 01:20:34', '2019-08-29 01:20:34', 4, NULL, NULL, NULL, NULL),
(55, '<NAME>.', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'teacher', 1, 1, 19945377, 382094, 'female', 'a+', 'Bangladeshi', '+13676252180', '4967 Lauryn Stream\nNew Maynard, UT 45079', 'Et non dolorum velit magni. Repudiandae enim ut aut quo ipsam id quo. Corrupti laborum et qui consequatur.', 'https://lorempixel.com/640/480/?99570', 1, 8, '1RTLpn2GJ3', '2019-08-29 01:20:34', '2019-08-29 01:20:34', 8, NULL, NULL, NULL, NULL),
(56, 'Dr. <NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'teacher', 1, 1, 19945377, 3436442, 'female', 'ab', 'Bangladeshi', '1-986-664-4533 x50168', '39110 McCullough Divide Apt. 877\nPowlowskifurt, OR 39937', 'Perspiciatis earum esse et et deserunt et. Officia debitis et soluta nostrum. Molestiae omnis esse beatae repellat quam repellendus.', 'https://lorempixel.com/640/480/?78512', 1, 6, 'eic6RQi2Ev', '2019-08-29 01:20:34', '2019-08-29 01:20:34', 2, NULL, NULL, NULL, NULL),
(57, 'Miss <NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'teacher', 1, 1, 19945377, 7952484, 'male', 'b+', 'Bangladeshi', '+1-381-381-2259', '82213 Rahsaan Fork Apt. 301\nEmmieberg, MS 74861', 'Voluptatibus eos mollitia et ut quaerat iure nesciunt. Natus ducimus tempore quis dolore. Placeat praesentium voluptates repudiandae commodi.', 'https://lorempixel.com/640/480/?24112', 1, 19, 'V1yqSVzUz2', '2019-08-29 01:20:34', '2019-08-29 01:20:34', 7, NULL, NULL, NULL, NULL),
(58, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'teacher', 1, 1, 19945377, 5659652, 'female', 'a+', 'Bangladeshi', '628.395.2696 x3413', '7829 Zemlak Shoal Apt. 147\nLake Gina, DE 94999', 'Deserunt ut voluptates ipsum quasi aliquam. Recusandae et quae voluptatem. Porro repellat voluptas cumque voluptatem.', 'https://lorempixel.com/640/480/?78081', 1, 5, 'k6kl6iZxYA', '2019-08-29 01:20:34', '2019-08-29 01:20:34', 7, NULL, NULL, NULL, NULL),
(59, 'Dr. <NAME> DDS', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'teacher', 1, 1, 19945377, 6639264, 'male', 'ab', 'Bangladeshi', '460-276-6179', '724 Gislason Tunnel Apt. 849\nNew Axel, OR 95547-6063', 'Nostrum ut ut aut voluptates dolor quibusdam. Est quasi architecto expedita ut et maxime. Quod beatae et praesentium nihil ex.', 'https://lorempixel.com/640/480/?13689', 1, 4, 'PlObNYMo7R', '2019-08-29 01:20:34', '2019-08-29 01:20:34', 4, NULL, NULL, NULL, NULL),
(60, 'Mrs. <NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'teacher', 1, 1, 19945377, 3479941, 'male', 'o+', 'Bangladeshi', '(697) 709-6204 x0835', '2617 Sydnie Shore Suite 593\nNew Lawsonhaven, WY 28782-5238', 'Maiores amet voluptatibus ipsam placeat est rerum beatae. Id sunt iste suscipit. Expedita optio voluptatem doloribus beatae laudantium id expedita.', 'https://lorempixel.com/640/480/?33658', 1, 13, 'A0PbC3989i', '2019-08-29 01:20:34', '2019-08-29 01:20:34', 4, NULL, NULL, NULL, NULL),
(61, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'teacher', 1, 1, 19945377, 6059379, 'male', 'o+', 'Bangladeshi', '447-723-6060 x0289', '10331 Sheldon Plains\nNew Kayborough, MO 77454', 'Nihil distinctio ut quia ullam dolorem fugiat debitis autem. Recusandae quis eum odio quis cumque qui tempora. Accusantium aut sapiente voluptate.', 'https://lorempixel.com/640/480/?62318', 1, 8, 'CE9GNeF61U', '2019-08-29 01:20:34', '2019-08-29 01:20:34', 1, NULL, NULL, NULL, NULL),
(62, '<NAME>', '<EMAIL>', <PASSWORD>$10$HnUsUeGC5XnM<PASSWORD>hL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 8979969, 'female', 'o+', 'Bangladeshi', '+1 (641) 891-4580', '33639 Walker Walk\nWest Ena, AZ 70904-4315', 'Qui magni dolorum sequi eum et quidem sint. Soluta sed ea adipisci odio fuga eum omnis soluta. Voluptatem incidunt tenetur repellendus sit voluptas nihil illum.', 'https://lorempixel.com/640/480/?91024', 1, 8, 'zKv6JADlrd', '2019-08-29 01:20:38', '2019-08-29 01:20:38', 9, NULL, NULL, NULL, NULL),
(63, '<NAME>', '<EMAIL>', <PASSWORD>', 'student', 1, 1, 19945377, 5077103, 'male', 'b+', 'Bangladeshi', '(860) 874-8106', '595 Effertz Via Suite 446\nGleichnerview, LA 23966-2699', 'Corporis illo ducimus sed. Quod in odit nam voluptatem temporibus velit. Minus eum et facere voluptatem tenetur fugit.', 'https://lorempixel.com/640/480/?37733', 1, 2, 'Kkb5vtAx2w', '2019-08-29 01:20:38', '2019-08-29 01:20:38', 1, NULL, NULL, NULL, NULL),
(64, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 2181378, 'female', 'b+', 'Bangladeshi', '997-431-1268', '6316 Botsford Fall\nLoraineview, ND 43870', 'Cupiditate aut sit et sapiente. Quia dolorum maxime et qui delectus ut. Beatae quisquam sunt voluptates eligendi id similique similique consequatur.', 'https://lorempixel.com/640/480/?48568', 1, 5, 'FAUaprNBDW', '2019-08-29 01:20:38', '2019-08-29 01:20:38', 2, NULL, NULL, NULL, NULL),
(65, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 8912159, 'male', 'b+', 'Bangladeshi', '293.219.3317', '11831 Marley Way\nLake Xzavierstad, SC 19204-5738', 'Distinctio voluptate ut molestiae est optio inventore necessitatibus illum. Commodi sit nam natus animi recusandae consequatur nihil. Cupiditate alias molestias laboriosam vel perspiciatis soluta exercitationem.', 'https://lorempixel.com/640/480/?97160', 1, 1, 'eDSmyzbl8j', '2019-08-29 01:20:38', '2019-08-29 01:20:38', 2, NULL, NULL, NULL, NULL),
(66, 'Prof. <NAME>', '<EMAIL>', <PASSWORD>.aVtO46', 'student', 1, 1, 19945377, 223540, 'male', 'b+', 'Bangladeshi', '1-527-957-0663 x258', '9012 Glover Well Suite 954\nPort Conrad, MN 85449-0491', 'Officiis unde culpa illum quia nobis quo. Modi cum et voluptas consequatur aut nulla ea. Dolorem alias cumque adipisci veritatis porro voluptatem.', 'https://lorempixel.com/640/480/?84657', 1, 19, 'RAHvCyzwX4', '2019-08-29 01:20:38', '2019-08-29 01:20:38', 1, NULL, NULL, NULL, NULL),
(67, '<NAME>', '<EMAIL>', <PASSWORD>', 'student', 1, 1, 19945377, 7845870, 'female', 'o+', 'Bangladeshi', '+1-717-890-9696', '76666 Jessie Mountains\nDurganmouth, VA 41130-7346', 'Reprehenderit quia doloribus officiis magnam ad pariatur qui nesciunt. Corrupti veritatis autem corporis dolorem odit culpa quis perferendis. Accusamus cumque quis quos.', 'https://lorempixel.com/640/480/?26468', 1, 7, 'vabKZAXN36', '2019-08-29 01:20:38', '2019-08-29 01:20:38', 3, NULL, NULL, NULL, NULL),
(68, 'Ms. <NAME> DDS', '<EMAIL>', <PASSWORD>', 'student', 1, 1, 19945377, 6235229, 'male', 'o+', 'Bangladeshi', '220.307.2187 x21529', '1250 Leann Parkways Apt. 648\nNorth Floy, NJ 00708-5126', 'Ab qui enim provident atque totam est quam quasi. Ullam perferendis pariatur libero. Quam vel neque iusto ut asperiores ipsa.', 'https://lorempixel.com/640/480/?91629', 1, 3, 'SBwZnHknjO', '2019-08-29 01:20:38', '2019-08-29 01:20:38', 7, NULL, NULL, NULL, NULL),
(69, 'Miss <NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 6940315, 'male', 'b+', 'Bangladeshi', '(251) 412-1351', '36022 Ernser Summit\nWavaside, PA 47822-9250', 'Eligendi praesentium quibusdam non eius. Porro illum beatae aut blanditiis. Consequuntur harum aut consequatur ut quod.', 'https://lorempixel.com/640/480/?46238', 1, 8, '1chGau0laE', '2019-08-29 01:20:38', '2019-08-29 01:20:38', 6, NULL, NULL, NULL, NULL),
(70, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 2533201, 'female', 'b+', 'Bangladeshi', '+13536519794', '5604 Feest Knoll\nBrianafort, TX 94144-4232', 'Delectus nulla eos excepturi aut. Odit autem recusandae et odio accusamus. Sit voluptatibus laboriosam est soluta temporibus.', 'https://lorempixel.com/640/480/?53269', 1, 12, 'MHH7lwRQpR', '2019-08-29 01:20:38', '2019-08-29 01:20:38', 1, NULL, NULL, NULL, NULL),
(71, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 8472064, 'male', 'a+', 'Bangladeshi', '+1-817-281-4303', '1395 Maria Hill Apt. 899\nMillerberg, AK 77110', 'Necessitatibus tempora corrupti repellendus qui quo rerum. Fugiat et dolorem iusto velit. Est quo laudantium esse rerum modi.', 'https://lorempixel.com/640/480/?97766', 1, 5, 'PjGJnPTKfr', '2019-08-29 01:20:38', '2019-08-29 01:20:38', 6, NULL, NULL, NULL, NULL),
(72, '<NAME> DDS', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 9834878, 'male', 'a+', 'Bangladeshi', '945.883.6232 x1464', '9959 Clint Center\nRatkebury, NM 54414', 'Accusantium vero beatae facilis natus incidunt voluptatem aliquid id. Vero tempore quasi et deleniti et quasi ab. Magni nesciunt est autem maiores ut quisquam.', 'https://lorempixel.com/640/480/?99950', 1, 3, 'NBV3vbXAYZ', '2019-08-29 01:20:38', '2019-08-29 01:20:38', 1, NULL, NULL, NULL, NULL),
(73, '<NAME> DVM', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 6632474, 'female', 'ab', 'Bangladeshi', '+1-691-913-2646', '245 Erika Ridges Suite 250\nNew Muriel, IA 70605-2294', 'Ipsum commodi nobis odio totam ab minus dolor. Sed nisi voluptatem ea aut. Delectus quaerat magni et nostrum eum.', 'https://lorempixel.com/640/480/?60815', 1, 10, 'NPuXKdMyWu', '2019-08-29 01:20:38', '2019-08-29 01:20:38', 10, NULL, NULL, NULL, NULL),
(74, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 2558130, 'male', 'o+', 'Bangladeshi', '523.651.7726 x735', '915 Destinee Extension Apt. 862\nGoldnerhaven, MI 87436-1385', 'Et ipsam aut soluta adipisci est non. Est vel ullam sapiente. Corporis reprehenderit mollitia mollitia dolorem.', 'https://lorempixel.com/640/480/?17545', 1, 18, 'wjVia5oN14', '2019-08-29 01:20:38', '2019-08-29 01:20:38', 7, NULL, NULL, NULL, NULL),
(75, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 338255, 'male', 'o+', 'Bangladeshi', '215.566.4163', '2425 Enrico Fork\nRextown, IN 06003-7112', 'Corporis ipsa odit qui sapiente ut. Fugiat quasi neque dolore voluptatem dolorem unde cum. Iure velit nam quidem ipsa.', 'https://lorempixel.com/640/480/?70055', 1, 13, 'xYDYqe0Fs2', '2019-08-29 01:20:38', '2019-08-29 01:20:38', 7, NULL, NULL, NULL, NULL),
(76, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 4462569, 'male', 'b+', 'Bangladeshi', '418-685-7472', '501 Lang Mills Apt. 990\nWest Alessandrostad, NE 29434', 'Dolores et dolor aut voluptas corporis commodi. Rem provident illum officia corporis amet reprehenderit. Iusto hic quidem autem magni consequatur deserunt porro et.', 'https://lorempixel.com/640/480/?43929', 1, 9, '5sT4ygHUzf', '2019-08-29 01:20:38', '2019-08-29 01:20:38', 7, NULL, NULL, NULL, NULL),
(77, '<NAME> DDS', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 904981, 'male', 'a+', 'Bangladeshi', '1-451-257-8811 x72136', '58120 Cecelia Drives Apt. 614\nNew Chesleyside, AZ 77301-6719', 'Inventore et est et culpa consequuntur illum in. Perspiciatis quos et odit amet velit. Id molestias qui consequatur.', 'https://lorempixel.com/640/480/?54618', 1, 17, 'lB43fW1uUo', '2019-08-29 01:20:38', '2019-08-29 01:20:38', 6, NULL, NULL, NULL, NULL),
(78, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 3642183, 'female', 'ab', 'Bangladeshi', '1-498-568-2780 x557', '870 Lakin Turnpike\nNorth Clarabelle, KS 80322', 'Culpa nihil accusamus rerum molestias qui. Ducimus soluta officia vel accusantium temporibus soluta saepe. Aut tempore tempora accusantium exercitationem enim et cum eum.', 'https://lorempixel.com/640/480/?80590', 1, 10, '14cbNIMb5Z', '2019-08-29 01:20:38', '2019-08-29 01:20:38', 1, NULL, NULL, NULL, NULL),
(79, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 1280867, 'male', 'o+', 'Bangladeshi', '695.386.4784 x911', '538 Cristopher Burgs\nRaynorshire, MS 01744-1146', 'In dolores laborum sunt nostrum labore provident. Dicta placeat adipisci est et autem ut. Quidem molestiae consequatur architecto officiis.', 'https://lorempixel.com/640/480/?22357', 1, 17, '2pmSOrKLxi', '2019-08-29 01:20:38', '2019-08-29 01:20:38', 3, NULL, NULL, NULL, NULL),
(80, '<NAME>', '<EMAIL>', <PASSWORD>', 'student', 1, 1, 19945377, 3033610, 'male', 'b+', 'Bangladeshi', '+1 (724) 960-3150', '495 Erling Curve Apt. 720\nStrosinburgh, FL 68098-7432', 'Et asperiores numquam earum saepe maiores vero. Quas architecto iste aliquid quasi delectus doloremque. Quaerat vel possimus possimus aut beatae esse.', 'https://lorempixel.com/640/480/?23645', 1, 15, 'y1pyydLen5', '2019-08-29 01:20:38', '2019-08-29 01:20:38', 6, NULL, NULL, NULL, NULL),
(81, 'Rex Quigley', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 7687102, 'female', 'b+', 'Bangladeshi', '(618) 612-2174 x9323', '272 Bergstrom Rapid\nAstridton, NH 24583', 'Consequatur aliquam amet quod non dolor fuga id. Deleniti tenetur quia quidem consequatur velit ab. Et aut vitae fuga excepturi earum.', 'https://lorempixel.com/640/480/?47146', 1, 19, 'EyTJZ5tOKH', '2019-08-29 01:20:38', '2019-08-29 01:20:38', 2, NULL, NULL, NULL, NULL),
(82, 'Mr. <NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 6623278, 'male', 'o+', 'Bangladeshi', '1-698-515-4824 x7348', '19022 Brakus Squares Apt. 471\nHollyland, NH 34232', 'Omnis voluptatem iusto perspiciatis unde sunt molestiae. Fugit et dignissimos labore qui. Corporis similique expedita optio.', 'https://lorempixel.com/640/480/?72795', 1, 4, 'JZ5MkobiHu', '2019-08-29 01:20:38', '2019-08-29 01:20:38', 5, NULL, NULL, NULL, NULL),
(83, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 4016269, 'female', 'b+', 'Bangladeshi', '656-964-2287 x557', '85551 Camylle Viaduct Apt. 698\nKozeytown, NE 61139-1241', 'Hic consequuntur enim ut eos voluptatibus dignissimos aperiam. Dolor hic earum quisquam corporis ex dolores sit. Cumque dolor perferendis tempore inventore.', 'https://lorempixel.com/640/480/?66864', 1, 4, 'bmplQmbUIb', '2019-08-29 01:20:38', '2019-08-29 01:20:38', 1, NULL, NULL, NULL, NULL),
(84, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 3080758, 'female', 'b+', 'Bangladeshi', '949.512.6063 x617', '7382 Ron Stravenue\nPort Rex, TX 40495', 'Omnis aut ipsa eligendi fugiat. Distinctio sed earum dolorum non ipsa. Omnis illum rerum iste molestiae rem harum unde.', 'https://lorempixel.com/640/480/?48065', 1, 3, 'yndlvzw2Y1', '2019-08-29 01:20:38', '2019-08-29 01:20:38', 9, NULL, NULL, NULL, NULL),
(85, 'Mr. <NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 9967694, 'female', 'o+', 'Bangladeshi', '(252) 372-3868 x42178', '5430 Corwin Point Apt. 315\nRobelburgh, AR 66943-3919', 'Aperiam et ducimus inventore sapiente eius. Ipsam sed voluptatem aut et voluptatibus. Sint magnam autem non consequuntur ducimus.', 'https://lorempixel.com/640/480/?67759', 1, 5, 'D4nJEaYg4j', '2019-08-29 01:20:38', '2019-08-29 01:20:38', 5, NULL, NULL, NULL, NULL),
(86, 'Prof. <NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 5592402, 'female', 'a+', 'Bangladeshi', '297.624.8643 x8287', '655 Huel Falls\nWest Gabrielleside, FL 92098-3694', 'Dolore omnis eos reprehenderit sunt commodi dolor architecto neque. Ut tempore dolorum ex est. Est aut numquam occaecati corporis possimus aut est.', 'https://lorempixel.com/640/480/?38560', 1, 1, '21PmZEZcIt', '2019-08-29 01:20:38', '2019-08-29 01:20:38', 8, NULL, NULL, NULL, NULL),
(87, 'Prof. <NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 1101648, 'female', 'a+', 'Bangladeshi', '1-512-440-3150', '9993 Hettinger Groves Apt. 857\nCordiehaven, IL 13945-8700', 'Rerum recusandae aperiam quia quam atque rerum aperiam ducimus. Tempore ad iusto dolor dolores distinctio. Et cupiditate corrupti et sunt neque ea.', 'https://lorempixel.com/640/480/?56489', 1, 5, 'WMuqAPWCYi', '2019-08-29 01:20:38', '2019-08-29 01:20:38', 3, NULL, NULL, NULL, NULL),
(88, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 8613135, 'male', 'a+', 'Bangladeshi', '+12957888872', '8324 Johnston Common Suite 166\nDasiamouth, WI 63413-6374', 'Mollitia perspiciatis hic pariatur cupiditate molestias temporibus. Dignissimos assumenda nihil provident fugit velit corporis. Consequuntur corporis sunt molestias nisi rerum aut.', 'https://lorempixel.com/640/480/?94650', 1, 2, 'ykj6hr01fP', '2019-08-29 01:20:38', '2019-08-29 01:20:38', 1, NULL, NULL, NULL, NULL),
(89, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 1617511, 'male', 'b+', 'Bangladeshi', '876-998-3761 x75633', '17520 Jones Keys\nNew Abel, UT 51897', 'Sit cum sit sint minima. Explicabo ut est ex dolorum vitae ut ut. Est amet quibusdam voluptatem sapiente qui.', 'https://lorempixel.com/640/480/?54540', 1, 12, 'jK82e0Z82t', '2019-08-29 01:20:38', '2019-08-29 01:20:38', 2, NULL, NULL, NULL, NULL),
(90, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 3597580, 'male', 'ab', 'Bangladeshi', '1-646-342-1277', '81208 Clyde Road\nTrantowstad, RI 58009', 'Voluptates minus totam et vel. Ut fugiat vel quis et est nisi pariatur ad. Sapiente deserunt rerum facilis.', 'https://lorempixel.com/640/480/?93145', 1, 11, 'yphRZbJcLB', '2019-08-29 01:20:38', '2019-08-29 01:20:38', 1, NULL, NULL, NULL, NULL),
(91, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 449144, 'female', 'a+', 'Bangladeshi', '815.304.3792 x52986', '3766 Quentin Stravenue Apt. 730\nMarianostad, NM 83038-7024', 'Doloremque ea quos dolorem fugit dolores expedita saepe cupiditate. Ducimus odit a reiciendis ipsum et. Dolorem perspiciatis reiciendis ad amet ab voluptatibus est.', 'https://lorempixel.com/640/480/?45742', 1, 7, 'puZHtkctoQ', '2019-08-29 01:20:38', '2019-08-29 01:20:38', 3, NULL, NULL, NULL, NULL),
(92, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 9321299, 'female', 'b+', 'Bangladeshi', '528-340-7403 x065', '76962 Wolff Parkways Apt. 755\nMullermouth, TN 50151', 'Modi sint ducimus provident quod reiciendis nihil qui. Dignissimos et explicabo nemo officiis ut repellat numquam. Est ullam aliquid rem illum aut illum.', 'https://lorempixel.com/640/480/?53254', 1, 14, '4ltYtzqfYV', '2019-08-29 01:20:38', '2019-08-29 01:20:38', 8, NULL, NULL, NULL, NULL),
(93, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 9982420, 'male', 'a+', 'Bangladeshi', '(668) 399-5587 x85776', '1799 Eunice Shores\nLake Emie, IA 57812-8454', 'Soluta repudiandae sunt mollitia. Atque quis earum architecto enim porro aut. Et ea amet repudiandae molestias.', 'https://lorempixel.com/640/480/?29365', 1, 8, 'uxzBDsVWj8', '2019-08-29 01:20:38', '2019-08-29 01:20:38', 6, NULL, NULL, NULL, NULL),
(94, '<NAME>', '<EMAIL>', <PASSWORD>', 'student', 1, 1, 19945377, 2638887, 'male', 'b+', 'Bangladeshi', '595-585-7475 x421', '182 Henderson Inlet Suite 899\nBechtelarside, OR 71517', 'Velit quidem dolorem est eaque. Natus omnis consequatur quia nulla enim rerum earum. Sapiente aut vitae voluptas sed.', 'https://lorempixel.com/640/480/?72468', 1, 6, 'y0QQoYIoNV', '2019-08-29 01:20:38', '2019-08-29 01:20:38', 7, NULL, NULL, NULL, NULL);
INSERT INTO `users` (`id`, `name`, `email`, `password`, `role`, `active`, `school_id`, `code`, `student_code`, `gender`, `blood_group`, `nationality`, `phone_number`, `address`, `about`, `pic_path`, `verified`, `section_id`, `remember_token`, `created_at`, `updated_at`, `department_id`, `stripe_id`, `card_brand`, `card_last_four`, `trial_ends_at`) VALUES
(95, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 3246405, 'female', 'ab', 'Bangladeshi', '+1-539-735-2605', '1173 Lubowitz Junction\nDelphastad, DC 09989', 'Tempore saepe aut nobis. Delectus possimus sit amet doloremque rerum ut. Non laboriosam repudiandae ex similique sit vel temporibus enim.', 'https://lorempixel.com/640/480/?18842', 1, 20, '5m88msdXqP', '2019-08-29 01:20:38', '2019-08-29 01:20:38', 1, NULL, NULL, NULL, NULL),
(96, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 4047476, 'female', 'b+', 'Bangladeshi', '202.677.7795 x7914', '42919 Stamm Brook\nEast Lessieberg, NE 66320-4448', 'Vero fugit doloremque non doloremque atque beatae. Eos explicabo mollitia ducimus asperiores. In fugit qui molestiae autem quaerat.', 'https://lorempixel.com/640/480/?87405', 1, 1, 'icft3xb9Ih', '2019-08-29 01:20:38', '2019-08-29 01:20:38', 9, NULL, NULL, NULL, NULL),
(97, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 577861, 'male', 'ab', 'Bangladeshi', '(208) 247-5138 x183', '54524 Schumm Cliff\nWest Robb, MT 11720-4647', 'Ut est doloribus qui quas et. Cupiditate ut harum itaque maxime culpa rerum. Ut sunt laboriosam necessitatibus aut sed quam adipisci quisquam.', 'https://lorempixel.com/640/480/?34129', 1, 7, 'EiIy5nzilp', '2019-08-29 01:20:38', '2019-08-29 01:20:38', 3, NULL, NULL, NULL, NULL),
(98, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 6748756, 'female', 'b+', 'Bangladeshi', '1-627-645-4942', '4006 Ova Flats Apt. 573\nEast Shanonborough, IN 77759-0581', 'Repellendus nisi esse minus eum ea qui qui. Dicta suscipit magnam odio ratione eum pariatur autem. Fuga quia laborum provident ipsa quia suscipit maxime.', 'https://lorempixel.com/640/480/?58851', 1, 12, '1Nqli5CYXV', '2019-08-29 01:20:38', '2019-08-29 01:20:38', 8, NULL, NULL, NULL, NULL),
(99, 'Miss <NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 7064669, 'female', 'a+', 'Bangladeshi', '740.676.6221', '81520 Carolyn Highway Apt. 026\nMarjolainefurt, NV 36968', 'Qui accusamus porro quisquam explicabo voluptatem delectus facere. Esse ducimus dicta consequuntur consequatur id pariatur culpa. Et ut impedit pariatur veritatis harum.', 'https://lorempixel.com/640/480/?31074', 1, 16, 'rSlZV3Da0x', '2019-08-29 01:20:38', '2019-08-29 01:20:38', 3, NULL, NULL, NULL, NULL),
(100, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 8160866, 'female', 'ab', 'Bangladeshi', '(782) 754-3795', '703 Stacy Ranch\nCynthiaport, ND 90377-4763', 'Eos sit sunt autem qui nihil. Cupiditate amet similique earum repellendus et rerum distinctio. Itaque autem nihil ipsam velit.', 'https://lorempixel.com/640/480/?23970', 1, 15, 'uPTgEXZ49x', '2019-08-29 01:20:38', '2019-08-29 01:20:38', 2, NULL, NULL, NULL, NULL),
(101, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 2701715, 'female', 'ab', 'Bangladeshi', '+16612203801', '54559 Eleanore Mountains Apt. 294\nLake Carolynechester, NC 35479-6059', 'Laudantium ipsum possimus quasi adipisci. Blanditiis velit fugiat deserunt error facilis delectus. Aliquid aut aut non eos rerum sit.', 'https://lorempixel.com/640/480/?10560', 1, 9, '3VjHRwMcLM', '2019-08-29 01:20:38', '2019-08-29 01:20:38', 4, NULL, NULL, NULL, NULL),
(102, 'Dr. <NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 4724155, 'male', 'ab', 'Bangladeshi', '+1-929-451-7087', '69377 Gloria Parkway\nJabariburgh, ID 00794-8701', 'Sed similique rerum maxime molestias sint. Praesentium nihil fuga ut sint omnis voluptatem nam. Cum aut ipsum vero ratione enim eum.', 'https://lorempixel.com/640/480/?30022', 1, 10, 'Y93kGbakqy', '2019-08-29 01:20:38', '2019-08-29 01:20:38', 3, NULL, NULL, NULL, NULL),
(103, '<NAME> DDS', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 6650432, 'male', 'a+', 'Bangladeshi', '(353) 777-4236 x25612', '709 Khalid Pike\nQuinnchester, LA 04806-9493', 'Perferendis sint ut hic. Accusamus voluptatem qui dolorem et provident. Qui velit et delectus qui.', 'https://lorempixel.com/640/480/?77358', 1, 8, '1RCkX8leK6', '2019-08-29 01:20:38', '2019-08-29 01:20:38', 6, NULL, NULL, NULL, NULL),
(104, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 7568993, 'male', 'b+', 'Bangladeshi', '(761) 615-6499 x777', '57515 Gusikowski Extensions Apt. 740\nBechtelarchester, SD 47700', 'Laudantium numquam aliquam numquam non sed voluptas aliquam. Perferendis qui cumque facilis hic. Voluptatem aut maiores quibusdam nostrum expedita mollitia in.', 'https://lorempixel.com/640/480/?34474', 1, 14, 'jMrjg9JKi1', '2019-08-29 01:20:38', '2019-08-29 01:20:38', 5, NULL, NULL, NULL, NULL),
(105, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 2991964, 'male', 'ab', 'Bangladeshi', '(251) 968-4230 x10568', '439 Jonas Track\nNorth Sharonfurt, TN 51759', 'Quae asperiores quis non perspiciatis perferendis harum consequatur. Ipsam quia accusantium in et voluptates ratione commodi. Tenetur et doloremque aut quo mollitia ut.', 'https://lorempixel.com/640/480/?20498', 1, 5, 'mHwlEUXrMG', '2019-08-29 01:20:38', '2019-08-29 01:20:38', 10, NULL, NULL, NULL, NULL),
(106, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 2347681, 'male', 'b+', 'Bangladeshi', '224-706-6237 x745', '604 Sincere Forge Apt. 759\nPort Hortense, IA 95822', 'Labore aut eveniet qui soluta sed voluptas commodi. Omnis et ut dicta blanditiis. Aliquid vero molestias pariatur exercitationem.', 'https://lorempixel.com/640/480/?81448', 1, 5, 'eCtykwJXxT', '2019-08-29 01:20:38', '2019-08-29 01:20:38', 9, NULL, NULL, NULL, NULL),
(107, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 2514561, 'female', 'b+', 'Bangladeshi', '874.619.7046', '72242 O\'Conner Road Suite 943\nEast Jademouth, AK 88976', 'Tempora magnam laborum quisquam delectus veniam in. Maiores et cupiditate quia temporibus quos qui. Et et et tempora est.', 'https://lorempixel.com/640/480/?76619', 1, 1, 'dkfLLasJRN', '2019-08-29 01:20:38', '2019-08-29 01:20:38', 2, NULL, NULL, NULL, NULL),
(108, '<NAME>ort Sr.', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 4724590, 'male', 'o+', 'Bangladeshi', '660-274-1195 x6488', '622 Juana Prairie\nHudsonfort, NM 04346', 'Id praesentium repellat nam in quas quos. Natus maxime aut qui. Dolores id quia sit inventore sapiente.', 'https://lorempixel.com/640/480/?26449', 1, 10, 'vyyzvJ7gxf', '2019-08-29 01:20:38', '2019-08-29 01:20:38', 8, NULL, NULL, NULL, NULL),
(109, 'Mrs. <NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 5291374, 'female', 'o+', 'Bangladeshi', '(708) 907-6139 x3793', '80111 Hessel Neck\nPort Aureliafurt, DE 70928', 'Totam reiciendis earum est perferendis porro quia exercitationem quia. Voluptatem et est eius quo voluptatum expedita dolores. Omnis delectus blanditiis sed repellat numquam.', 'https://lorempixel.com/640/480/?88555', 1, 8, 'AJ1UXZseQV', '2019-08-29 01:20:38', '2019-08-29 01:20:38', 10, NULL, NULL, NULL, NULL),
(110, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 7686426, 'male', 'a+', 'Bangladeshi', '781-924-0303 x92165', '783 Jensen Manors Apt. 189\nJenkinsshire, AL 68363', 'Delectus maiores et minima amet sit nobis fugiat praesentium. Rerum maxime vel vitae et maxime adipisci. Quia est eaque alias.', 'https://lorempixel.com/640/480/?58071', 1, 7, 'X583BQSmEO', '2019-08-29 01:20:38', '2019-08-29 01:20:38', 8, NULL, NULL, NULL, NULL),
(111, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 9170064, 'male', 'ab', 'Bangladeshi', '1-394-465-8032', '80725 Angus Fork\nWest Jameson, SD 45355', 'Voluptates blanditiis qui quas ea officiis labore sed. Quia omnis ipsam qui. Qui dolor iusto ab cum voluptas et.', 'https://lorempixel.com/640/480/?99747', 1, 6, '5LThb1hC0i', '2019-08-29 01:20:38', '2019-08-29 01:20:38', 6, NULL, NULL, NULL, NULL),
(112, 'Ms. Kassandra Mohr DDS', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 6665477, 'female', 'ab', 'Bangladeshi', '508-544-9306 x51513', '608 Ruecker Squares\nMartyside, HI 85831-6629', 'Consequatur molestiae praesentium perferendis cumque sit. Expedita incidunt qui maxime non doloribus aliquid fuga. Et eum fugiat mollitia et.', 'https://lorempixel.com/640/480/?36012', 1, 5, 'M1AAECrJYI', '2019-08-29 01:20:38', '2019-08-29 01:20:38', 4, NULL, NULL, NULL, NULL),
(113, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 8402607, 'female', 'o+', 'Bangladeshi', '321-462-3195 x46939', '65920 Gislason Mountain\nHermanhaven, SD 92524', 'Et earum sint consequatur eius non neque. Minus aut est corporis ut officia repudiandae. Eum eligendi voluptates accusantium beatae.', 'https://lorempixel.com/640/480/?38560', 1, 6, 'So5nbsFj0s', '2019-08-29 01:20:38', '2019-08-29 01:20:38', 4, NULL, NULL, NULL, NULL),
(114, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 6738830, 'female', 'b+', 'Bangladeshi', '1-409-786-6089 x602', '82292 Fritsch Rapids Apt. 494\nSantoschester, MD 22813-6276', 'Veritatis voluptatem vel repudiandae ut est. Excepturi ipsum quis qui sit sed. Aut error eum sequi culpa dicta dolores earum.', 'https://lorempixel.com/640/480/?35651', 1, 8, '0ac1sxFXKg', '2019-08-29 01:20:38', '2019-08-29 01:20:38', 2, NULL, NULL, NULL, NULL),
(115, 'Prof. <NAME> MD', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 7880006, 'female', 'a+', 'Bangladeshi', '723.652.3446 x45994', '34330 Labadie Glen\nNew Joshuaview, ME 26488', 'Quia rerum aliquid veritatis a nemo delectus quia. Reiciendis non cum at ea et eaque. Quia et dolorum natus nihil deleniti numquam.', 'https://lorempixel.com/640/480/?20752', 1, 8, '0seozgYG2W', '2019-08-29 01:20:38', '2019-08-29 01:20:38', 7, NULL, NULL, NULL, NULL),
(116, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 3946000, 'female', 'o+', 'Bangladeshi', '816-253-1586', '6298 Cronin Greens\nLake Wilberland, NJ 31323-0243', 'Unde ut eveniet dolorem mollitia. Ea et reiciendis temporibus voluptas. Optio tenetur est perferendis vitae velit reprehenderit labore.', 'https://lorempixel.com/640/480/?19928', 1, 7, 'dcPUHtM3mj', '2019-08-29 01:20:38', '2019-08-29 01:20:38', 2, NULL, NULL, NULL, NULL),
(117, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 8235957, 'female', 'b+', 'Bangladeshi', '1-219-862-0483', '237 Kristy Meadow\nLefflerville, WV 26024-3371', 'Vitae quis aliquam repudiandae fugit quis. Voluptatem cupiditate debitis deleniti et esse quis perspiciatis. Accusamus tempora doloribus nisi voluptate est ut.', 'https://lorempixel.com/640/480/?60053', 1, 20, 'T33GtyucOy', '2019-08-29 01:20:38', '2019-08-29 01:20:38', 1, NULL, NULL, NULL, NULL),
(118, 'Mr. <NAME>.', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 5558232, 'female', 'ab', 'Bangladeshi', '317.294.4956 x39952', '640 Esta Harbor Suite 523\nNikolauston, WA 41068-5743', 'Amet est tenetur molestias enim unde laboriosam harum repudiandae. Ab et veniam est sed dolor sunt dicta quis. Dolorem tenetur harum minus veritatis unde.', 'https://lorempixel.com/640/480/?18352', 1, 18, 'Fd3lrbRSo0', '2019-08-29 01:20:38', '2019-08-29 01:20:38', 9, NULL, NULL, NULL, NULL),
(119, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 2276853, 'male', 'b+', 'Bangladeshi', '583.436.2780 x3843', '9650 Anderson Oval\nO\'Keefestad, WI 98172', 'Fugiat voluptatum esse non. Et est et ab fugit. In odit ex maiores qui omnis excepturi.', 'https://lorempixel.com/640/480/?52304', 1, 10, 'IOxwfzJoHV', '2019-08-29 01:20:38', '2019-08-29 01:20:38', 8, NULL, NULL, NULL, NULL),
(120, 'Dr. <NAME>', '<EMAIL>', <PASSWORD>', 'student', 1, 1, 19945377, 1718152, 'male', 'o+', 'Bangladeshi', '674.595.0995', '7770 Ewell Heights\nLake Autumn, OH 03144-0975', 'Facere earum quas delectus natus. Voluptatum voluptatem sed aperiam consectetur culpa nisi. Non voluptas maiores eligendi sit velit optio modi.', 'https://lorempixel.com/640/480/?29603', 1, 6, 'b6g4rVczcD', '2019-08-29 01:20:38', '2019-08-29 01:20:38', 4, NULL, NULL, NULL, NULL),
(121, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 187389, 'female', 'o+', 'Bangladeshi', '852-549-9969 x8598', '1143 Schroeder Fields\nMullerbury, RI 34621', 'Adipisci provident ab et tenetur ex omnis. Ad eius quo voluptas consequuntur ab nisi. Illo vel tempora perferendis incidunt a dolor.', 'https://lorempixel.com/640/480/?39327', 1, 1, '0NU5Z9eePE', '2019-08-29 01:20:38', '2019-08-29 01:20:38', 3, NULL, NULL, NULL, NULL),
(122, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 8510977, 'female', 'a+', 'Bangladeshi', '536-890-0517', '556 Cierra Pine\nEast Kennedymouth, TN 79022-7785', 'Assumenda ea reprehenderit quaerat. Veritatis distinctio eos maiores asperiores quia cum officiis. Reprehenderit eligendi est dicta aut necessitatibus nesciunt.', 'https://lorempixel.com/640/480/?85178', 1, 15, 'cQb5LvfRUA', '2019-08-29 01:20:38', '2019-08-29 01:20:38', 6, NULL, NULL, NULL, NULL),
(123, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 7841363, 'male', 'a+', 'Bangladeshi', '+1-716-613-0464', '9942 Carole Unions Apt. 433\nSchoenshire, ID 53272-1039', 'Minima ipsam qui ea. Similique qui asperiores recusandae quisquam. Voluptas sequi qui ut ducimus ut saepe deserunt.', 'https://lorempixel.com/640/480/?31412', 1, 8, 'LxrBqbUE1g', '2019-08-29 01:20:38', '2019-08-29 01:20:38', 6, NULL, NULL, NULL, NULL),
(124, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 2829952, 'male', 'a+', 'Bangladeshi', '539-424-0962', '42870 Nels Springs\nElmermouth, OK 12887', 'Aut mollitia mollitia impedit aut omnis. Corrupti doloribus est quia. Nisi qui in molestiae labore quia voluptatem aperiam.', 'https://lorempixel.com/640/480/?29639', 1, 6, 'osWN258DXF', '2019-08-29 01:20:38', '2019-08-29 01:20:38', 6, NULL, NULL, NULL, NULL),
(125, 'Dr. <NAME>', '<EMAIL>', <PASSWORD>$10$HnUsUeGC5<PASSWORD>hL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 5496587, 'male', 'ab', 'Bangladeshi', '+1.370.988.4821', '4896 Abshire Fields Suite 312\nRutherfordfort, IA 53639', 'Iste molestiae rerum praesentium iste qui dicta sed. Eius earum vitae reiciendis animi et rerum aut. Repudiandae amet ullam hic in facilis.', 'https://lorempixel.com/640/480/?74141', 1, 14, 'MwxPKbN6WU', '2019-08-29 01:20:38', '2019-08-29 01:20:38', 10, NULL, NULL, NULL, NULL),
(126, 'Ms. <NAME> I', '<EMAIL>', <PASSWORD>.aVtO46', 'student', 1, 1, 19945377, 4979247, 'female', 'b+', 'Bangladeshi', '+1-959-585-4904', '798 Miller Station\nKozeyshire, WI 71439', 'Beatae nulla sed odit laboriosam temporibus. Sunt fugiat necessitatibus maiores. Dolore error et nemo itaque.', 'https://lorempixel.com/640/480/?60307', 1, 6, 'XfC9INljq7', '2019-08-29 01:20:38', '2019-08-29 01:20:38', 2, NULL, NULL, NULL, NULL),
(127, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 5632539, 'male', 'b+', 'Bangladeshi', '1-654-318-3444 x32661', '6447 Russel Valley\nMurrayberg, NM 57980-3341', 'Quibusdam accusantium molestias itaque est id quia. Cupiditate assumenda sunt consequatur enim nemo aperiam. Ut eum modi quod voluptas ea.', 'https://lorempixel.com/640/480/?73472', 1, 4, 'YaWYvkTkqs', '2019-08-29 01:20:38', '2019-08-29 01:20:38', 7, NULL, NULL, NULL, NULL),
(128, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 68810, 'female', 'b+', 'Bangladeshi', '570.433.9035 x626', '8510 Moshe Port\nNew Lindsey, AL 89681', 'Ipsam illo quae asperiores qui et non accusamus molestiae. Ut et voluptate et commodi hic quam. Sit sed voluptatem aut reiciendis necessitatibus nihil molestiae.', 'https://lorempixel.com/640/480/?91201', 1, 9, 'rp3qGtmQYG', '2019-08-29 01:20:38', '2019-08-29 01:20:38', 5, NULL, NULL, NULL, NULL),
(129, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 4552050, 'female', 'a+', 'Bangladeshi', '(842) 917-4789 x612', '8959 Terence Lock\nNew Crawford, MN 09527-5515', 'Beatae iure vero illo et accusamus eligendi at. Enim vel veritatis officia qui. Quia labore reprehenderit qui beatae temporibus eaque vero.', 'https://lorempixel.com/640/480/?88970', 1, 12, '6gtDBQiRLp', '2019-08-29 01:20:38', '2019-08-29 01:20:38', 5, NULL, NULL, NULL, NULL),
(130, 'Dr. <NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 5855974, 'female', 'a+', 'Bangladeshi', '(272) 824-2016', '1628 Alisa Flat Apt. 601\nBrendenton, ID 66985', 'Provident voluptatem non sed sunt. Dignissimos soluta dolore voluptatibus. Cumque perferendis officia et nam optio a.', 'https://lorempixel.com/640/480/?93579', 1, 2, 'RHiF8GGOwi', '2019-08-29 01:20:38', '2019-08-29 01:20:38', 5, NULL, NULL, NULL, NULL),
(131, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 7311962, 'female', 'o+', 'Bangladeshi', '1-747-205-6131', '244 Vandervort Pass Suite 238\nLake Amelyville, AR 75704', 'Totam voluptatum modi dignissimos iusto. Iusto provident eaque facilis sapiente nam ut laborum. Velit qui nisi inventore quia.', 'https://lorempixel.com/640/480/?37914', 1, 10, '1Ai2jnAivI', '2019-08-29 01:20:38', '2019-08-29 01:20:38', 1, NULL, NULL, NULL, NULL),
(132, 'Prof. <NAME> Sr.', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 6640328, 'male', 'b+', 'Bangladeshi', '974.865.2480', '79793 Jacobi Fort Suite 104\nWest Laney, AL 72931', 'Deleniti sed et possimus itaque. Similique veniam labore quaerat sit aut vitae perferendis enim. Est consequatur sunt ut voluptas dolorem ut reprehenderit.', 'https://lorempixel.com/640/480/?57079', 1, 16, 'C3W6LDFpkJ', '2019-08-29 01:20:38', '2019-08-29 01:20:38', 10, NULL, NULL, NULL, NULL),
(133, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 9630971, 'female', 'ab', 'Bangladeshi', '456.869.9086 x9460', '934 Bins Knoll Apt. 979\nAnyachester, ID 94570', 'Ducimus dicta minima repellendus eum iure molestias illo. Voluptates distinctio cumque omnis sequi nam. Commodi consequuntur dolore et quia pariatur qui ipsam.', 'https://lorempixel.com/640/480/?62754', 1, 9, 'TTut3KTgt3', '2019-08-29 01:20:38', '2019-08-29 01:20:38', 3, NULL, NULL, NULL, NULL),
(134, 'Prof. <NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 9486943, 'male', 'ab', 'Bangladeshi', '230-637-3652 x5126', '45658 Carli Village\nPort Calista, IA 05446', 'Quia eveniet possimus quo non aut laborum. Molestias eius rerum culpa illo sed vitae rerum dignissimos. Ut aliquam quia atque hic voluptates.', 'https://lorempixel.com/640/480/?42842', 1, 13, 'QY6vYxnFPP', '2019-08-29 01:20:38', '2019-08-29 01:20:38', 4, NULL, NULL, NULL, NULL),
(135, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 4638672, 'female', 'a+', 'Bangladeshi', '1-664-810-8870 x32243', '87437 Toy Expressway Apt. 400\nBednarhaven, IN 59911-6203', 'Velit deleniti voluptas quam tempora non. Adipisci voluptas velit et. Aut aut eum velit blanditiis molestias.', 'https://lorempixel.com/640/480/?79389', 1, 1, 'hpzo7gPBOv', '2019-08-29 01:20:38', '2019-08-29 01:20:38', 4, NULL, NULL, NULL, NULL),
(136, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 6773332, 'male', 'o+', 'Bangladeshi', '749-867-1941 x236', '88013 Cassidy Grove\nEast Caleigh, MS 36011-7554', 'Ducimus quidem et ab provident ipsum maxime aliquid iusto. Error expedita maiores impedit. In deserunt et ut nesciunt.', 'https://lorempixel.com/640/480/?39334', 1, 2, 'aF1RdbETfb', '2019-08-29 01:20:38', '2019-08-29 01:20:38', 5, NULL, NULL, NULL, NULL),
(137, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 1594959, 'male', 'o+', 'Bangladeshi', '697-983-7084 x32347', '34230 Regan Club Apt. 063\nJenkinsburgh, NM 09789-5449', 'In cupiditate omnis sint neque velit provident repellendus asperiores. Quas voluptas quaerat maxime beatae assumenda. Sit quod et excepturi reprehenderit cupiditate et consequatur blanditiis.', 'https://lorempixel.com/640/480/?47230', 1, 18, 'DftaJLZB4y', '2019-08-29 01:20:38', '2019-08-29 01:20:38', 1, NULL, NULL, NULL, NULL),
(138, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 2499062, 'female', 'ab', 'Bangladeshi', '521.759.8765 x0523', '31772 Bogisich Drive Apt. 338\nWest Allan, KY 84096', 'Natus excepturi debitis qui voluptatibus ducimus est quidem. Quia magni ab saepe occaecati. Magnam nostrum facilis reiciendis.', 'https://lorempixel.com/640/480/?34054', 1, 17, 'sfVhJiioml', '2019-08-29 01:20:38', '2019-08-29 01:20:38', 5, NULL, NULL, NULL, NULL),
(139, 'Mr. <NAME> Sr.', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 7726486, 'female', 'ab', 'Bangladeshi', '(334) 932-1175 x76071', '56541 Bayer Views Suite 456\nMonteland, MS 13871', 'Praesentium iste vero modi. Quod qui aut optio modi assumenda. Rerum ratione non tenetur ullam beatae aut qui.', 'https://lorempixel.com/640/480/?91120', 1, 6, 'XoDmHHny3S', '2019-08-29 01:20:38', '2019-08-29 01:20:38', 6, NULL, NULL, NULL, NULL),
(140, '<NAME>.', '<EMAIL>', <PASSWORD>$10$HnUsUeGC5<PASSWORD>L<PASSWORD>OOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 692142, 'male', 'ab', 'Bangladeshi', '(570) 601-7028', '994 Rosetta Ramp Suite 862\nNew Devontemouth, NM 18399-3864', 'Necessitatibus velit dolor odio eligendi quisquam atque. Accusantium ducimus maiores qui doloribus consequatur rerum. Repellat odio in veritatis veniam.', 'https://lorempixel.com/640/480/?81568', 1, 3, 'khNEE2b0RU', '2019-08-29 01:20:38', '2019-08-29 01:20:38', 9, NULL, NULL, NULL, NULL),
(141, '<NAME> DVM', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 3755152, 'male', 'o+', 'Bangladeshi', '723.308.3844 x7978', '44578 Maiya Glen\nHudsonberg, DE 40994', 'Officiis aut ut ullam dicta ut. Quia numquam explicabo doloremque ut voluptatum repellat. Est vel odio recusandae sunt dolores blanditiis.', 'https://lorempixel.com/640/480/?94052', 1, 6, 'BXcVaKdB7c', '2019-08-29 01:20:38', '2019-08-29 01:20:38', 5, NULL, NULL, NULL, NULL),
(142, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 1873272, 'female', 'o+', 'Bangladeshi', '1-269-984-5363 x19889', '42460 Grayce Pass\nRichardburgh, DE 26872', 'Quos quaerat qui nulla nihil autem sequi. Cumque veniam illo deserunt ipsa nihil. Quam laboriosam quo qui autem ut animi laboriosam dicta.', 'https://lorempixel.com/640/480/?43174', 1, 1, 'kR90ocjAby', '2019-08-29 01:20:38', '2019-08-29 01:20:38', 2, NULL, NULL, NULL, NULL),
(143, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 4728509, 'female', 'o+', 'Bangladeshi', '251-215-4357', '529 Nader Ford\nConroyton, KS 69461-6484', 'Voluptatem ratione aut itaque facilis aperiam aut. Voluptate qui ipsa iste voluptatibus. Inventore culpa facere quia officiis consectetur eius.', 'https://lorempixel.com/640/480/?17299', 1, 5, 'wAqHmqdUqx', '2019-08-29 01:20:38', '2019-08-29 01:20:38', 9, NULL, NULL, NULL, NULL),
(144, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 1353086, 'male', 'b+', 'Bangladeshi', '613.261.2245 x9943', '632 Lynn Vista\nLake Alphonsoland, WA 43190-2684', 'Exercitationem odit nobis aut exercitationem omnis ipsa non. Animi reiciendis in cupiditate nihil saepe quia enim. Magni non quam consequuntur non.', 'https://lorempixel.com/640/480/?92899', 1, 17, 'tALS6qnzg1', '2019-08-29 01:20:38', '2019-08-29 01:20:38', 1, NULL, NULL, NULL, NULL),
(145, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 8900143, 'female', 'b+', 'Bangladeshi', '963-760-0245', '8233 Harmon Loop Suite 277\nAvabury, MD 55270-6188', 'Dicta sapiente accusamus laudantium deleniti facilis iure. Ex et ullam voluptates aut praesentium illum. Beatae omnis non aut aut eveniet architecto.', 'https://lorempixel.com/640/480/?16935', 1, 18, 'mMRIwanqK8', '2019-08-29 01:20:38', '2019-08-29 01:20:38', 1, NULL, NULL, NULL, NULL),
(146, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 2511414, 'female', 'ab', 'Bangladeshi', '(396) 342-4568 x932', '80440 Aubree Center\nSigridfurt, IN 63252-3294', 'Nemo non et ea quaerat dolores quia sequi. Commodi modi inventore sint blanditiis. Ad esse itaque nulla quis error hic voluptatibus.', 'https://lorempixel.com/640/480/?44713', 1, 16, 'XdCAA4HXhn', '2019-08-29 01:20:38', '2019-08-29 01:20:38', 6, NULL, NULL, NULL, NULL),
(147, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 6064794, 'male', 'ab', 'Bangladeshi', '+1 (282) 888-4672', '10457 Branson Junction Apt. 324\nLake Kaseyberg, KS 47865', 'Deleniti ipsa eos blanditiis dolorum. Odit architecto aliquam et rerum debitis odio. Et esse accusamus dolor ut debitis nostrum.', 'https://lorempixel.com/640/480/?36714', 1, 20, 'ZEVkuCDxX2', '2019-08-29 01:20:38', '2019-08-29 01:20:38', 2, NULL, NULL, NULL, NULL),
(148, '<NAME> DVM', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 2093759, 'male', 'a+', 'Bangladeshi', '1-343-733-2776 x44208', '4840 Kirlin Camp\nNew Jordi, KS 26687-0426', 'Minima quibusdam aut iste ut dicta. Voluptate et excepturi porro qui atque ab. Maiores dolorum nihil qui.', 'https://lorempixel.com/640/480/?76086', 1, 16, '5xVUSaN52i', '2019-08-29 01:20:38', '2019-08-29 01:20:38', 4, NULL, NULL, NULL, NULL),
(149, 'Dr. <NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 4371065, 'male', 'b+', 'Bangladeshi', '1-265-544-7747 x75903', '89071 Rupert Expressway Suite 122\nNorth Savannah, UT 69204-0028', 'Necessitatibus velit facere aut aperiam nesciunt et et. Voluptatem corrupti aut sint eaque minima tempore sed. Doloremque commodi magni molestiae assumenda.', 'https://lorempixel.com/640/480/?46606', 1, 5, 'SOgNqOiWBF', '2019-08-29 01:20:38', '2019-08-29 01:20:38', 4, NULL, NULL, NULL, NULL),
(150, 'Prof. <NAME> DDS', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 4071843, 'female', 'ab', 'Bangladeshi', '456-432-1673', '4823 Franz Gateway Apt. 083\nPort Christopher, CT 61331-3298', 'Quia illum ut quo id et in voluptas at. Officiis alias magni ea quia aut quasi rerum. Velit sunt nisi molestiae magni voluptas.', 'https://lorempixel.com/640/480/?83364', 1, 3, 'kTyCx4UmHs', '2019-08-29 01:20:38', '2019-08-29 01:20:38', 4, NULL, NULL, NULL, NULL),
(151, 'Prof. <NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 1542950, 'female', 'b+', 'Bangladeshi', '460-918-9430 x1765', '480 Beer Roads\nNew Jayce, CO 80806', 'Alias adipisci qui omnis. Iure qui ex sequi illum et libero. Quibusdam beatae molestiae et ipsum enim quasi quia.', 'https://lorempixel.com/640/480/?78203', 1, 1, 'ay3TCi7uy5', '2019-08-29 01:20:38', '2019-08-29 01:20:38', 1, NULL, NULL, NULL, NULL),
(152, 'Dr. <NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 4597606, 'male', 'b+', 'Bangladeshi', '1-303-947-7750', '756 Frederic Trail Suite 114\nFeilborough, SD 56363', 'Et minus blanditiis culpa et excepturi. Qui autem rem et molestiae eaque qui nemo. Quis eos iusto qui sit dicta.', 'https://lorempixel.com/640/480/?33190', 1, 2, 'wQJgn5iKob', '2019-08-29 01:20:38', '2019-08-29 01:20:38', 2, NULL, NULL, NULL, NULL),
(153, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 6877896, 'male', 'o+', 'Bangladeshi', '(952) 213-2632', '521 Donnell Terrace\nWest Jerrold, AR 30857', 'In debitis vel labore accusantium et. Laudantium reprehenderit sed ex deleniti. Accusantium consequatur beatae aut provident error.', 'https://lorempixel.com/640/480/?74666', 1, 4, 'd0J7Y3M3sP', '2019-08-29 01:20:38', '2019-08-29 01:20:38', 7, NULL, NULL, NULL, NULL),
(154, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 5799240, 'female', 'b+', 'Bangladeshi', '+12797919757', '348 Emile Tunnel Apt. 782\nDejuanborough, ID 94843', 'Ea repellat tempore in magni. Deleniti enim aut repudiandae eius voluptatem ad corrupti maiores. Itaque tempora et qui ut.', 'https://lorempixel.com/640/480/?93821', 1, 15, 'BJBiItA69T', '2019-08-29 01:20:38', '2019-08-29 01:20:38', 10, NULL, NULL, NULL, NULL),
(155, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 3574615, 'female', 'b+', 'Bangladeshi', '+1 (541) 499-7777', '644 Blanca Rest Suite 119\nLuciustown, MD 80656', 'Aut quis iste nesciunt excepturi officia. Velit perferendis minima temporibus veniam. Similique saepe debitis totam sint labore velit.', 'https://lorempixel.com/640/480/?45627', 1, 5, 'eih4jy2O3q', '2019-08-29 01:20:38', '2019-08-29 01:20:38', 3, NULL, NULL, NULL, NULL),
(156, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 9542479, 'female', 'a+', 'Bangladeshi', '640-200-8604 x6187', '9349 Monica Fort Suite 412\nBlanchemouth, VT 59890-2721', 'Aspernatur illum quas corporis est veniam molestias explicabo. Ipsa rem eos esse in alias qui. Soluta odio autem perspiciatis repellendus et.', 'https://lorempixel.com/640/480/?36444', 1, 19, 'aW5CXLaJOD', '2019-08-29 01:20:38', '2019-08-29 01:20:38', 2, NULL, NULL, NULL, NULL),
(157, '<NAME>', '<EMAIL>', <PASSWORD>', 'student', 1, 1, 19945377, 4812661, 'female', 'o+', 'Bangladeshi', '341.939.1863 x712', '55133 Gene Fields Apt. 732\nLake Chase, FL 28017', 'Ut laboriosam non deleniti nemo natus omnis. Perspiciatis quis voluptate distinctio aliquid sunt nemo occaecati distinctio. Explicabo omnis molestias necessitatibus quia ea rem.', 'https://lorempixel.com/640/480/?66808', 1, 10, 'GKTIb8zDOc', '2019-08-29 01:20:38', '2019-08-29 01:20:38', 4, NULL, NULL, NULL, NULL),
(158, 'Mr. <NAME> PhD', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 9145973, 'male', 'a+', 'Bangladeshi', '586-642-2432 x654', '724 Crona Corners\nBernhardland, FL 51399', 'Quis consequatur minus et eos omnis quis occaecati dolor. Qui libero deserunt recusandae fugiat nam vel aliquam. Laudantium laudantium consectetur et esse neque.', 'https://lorempixel.com/640/480/?38294', 1, 18, 'WsoXE96jOM', '2019-08-29 01:20:38', '2019-08-29 01:20:38', 8, NULL, NULL, NULL, NULL),
(159, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 2127599, 'female', 'b+', 'Bangladeshi', '1-735-562-0848 x6047', '877 Johan Branch\nNew Kitty, KY 67338', 'Est facere quisquam aut neque magnam fugiat. Et sapiente atque ipsa. Error esse esse repellendus laudantium laborum quis consectetur.', 'https://lorempixel.com/640/480/?28009', 1, 2, 'cTqNbirP4m', '2019-08-29 01:20:38', '2019-08-29 01:20:38', 1, NULL, NULL, NULL, NULL),
(160, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 2446690, 'male', 'a+', 'Bangladeshi', '+1.419.971.3051', '2088 Moore Trace\nSouth Michaela, UT 80426', 'Voluptatum voluptatem voluptatem tempore voluptatem cupiditate sed repudiandae. Doloremque sed quis quam doloremque odit. Corrupti expedita ea sed.', 'https://lorempixel.com/640/480/?50462', 1, 13, '6ObATHIgY0', '2019-08-29 01:20:38', '2019-08-29 01:20:38', 4, NULL, NULL, NULL, NULL),
(161, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 4089092, 'male', 'ab', 'Bangladeshi', '(513) 630-4019', '47322 Thaddeus Dam\nWest Eldridge, AL 40878', 'Doloremque nostrum nam inventore possimus aliquid laboriosam voluptas. Sunt dolorem deleniti quia voluptas. At deserunt ullam molestiae quidem vel incidunt.', 'https://lorempixel.com/640/480/?64396', 1, 8, 'qp7IamZ85W', '2019-08-29 01:20:38', '2019-08-29 01:20:38', 1, NULL, NULL, NULL, NULL),
(162, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 8620478, 'female', 'ab', 'Bangladeshi', '+1.812.405.8597', '42561 Reinger Vista\nJacobiton, TX 50427-7997', 'Voluptatem reprehenderit atque ullam saepe quia qui. Animi aut quam ea iste sint fugiat a. Reiciendis et excepturi omnis voluptate blanditiis libero.', 'https://lorempixel.com/640/480/?89320', 1, 9, 'CD5c01RLSv', '2019-08-29 01:20:38', '2019-08-29 01:20:38', 9, NULL, NULL, NULL, NULL),
(163, 'Prof. <NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 3310725, 'male', 'o+', 'Bangladeshi', '295.887.6681 x060', '20406 Mariana Viaduct Suite 246\nSchneiderchester, PA 43506', 'Adipisci nesciunt corrupti et incidunt similique et. Beatae eos vel voluptatem quasi amet. At voluptas laborum ab rerum voluptates.', 'https://lorempixel.com/640/480/?94384', 1, 15, 'wFrlHvKhKS', '2019-08-29 01:20:38', '2019-08-29 01:20:38', 5, NULL, NULL, NULL, NULL),
(164, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 9663553, 'female', 'ab', 'Bangladeshi', '1-335-988-2826 x69998', '84349 Karianne Points Apt. 715\nNew Jaymemouth, VT 23096', 'Ea vel blanditiis quis sequi. Repellat saepe praesentium ullam placeat dolore. Provident officiis rerum quis ab.', 'https://lorempixel.com/640/480/?16926', 1, 14, 'CgNoMYbZ8I', '2019-08-29 01:20:38', '2019-08-29 01:20:38', 10, NULL, NULL, NULL, NULL),
(165, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 3566142, 'male', 'o+', 'Bangladeshi', '408.323.5438', '8680 Katharina Manor\nPort Krystelview, ME 67406', 'Ad vitae repellat sunt voluptates recusandae nesciunt ut. Aut quod provident nemo labore deserunt maiores. Blanditiis et et rerum dolores voluptatum sapiente.', 'https://lorempixel.com/640/480/?14088', 1, 8, 'hzNnlvvj5g', '2019-08-29 01:20:38', '2019-08-29 01:20:38', 6, NULL, NULL, NULL, NULL),
(166, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 8618849, 'male', 'a+', 'Bangladeshi', '727.650.1777 x5580', '4153 Williamson Brooks Suite 339\nEast Rodrick, MN 75119-1279', 'Sapiente placeat modi consequuntur nobis veritatis quidem in aliquam. Nemo rem delectus ullam architecto voluptates voluptatem ad. Perspiciatis vel dolore vel corporis nihil molestias tenetur.', 'https://lorempixel.com/640/480/?10082', 1, 13, 'OQkYcm05zf', '2019-08-29 01:20:38', '2019-08-29 01:20:38', 2, NULL, NULL, NULL, NULL),
(167, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 1623015, 'male', 'ab', 'Bangladeshi', '464-982-4535 x622', '650 Howell Meadows\nLeuschkefurt, AZ 10051', 'Eos ut autem magnam molestiae iste sed ratione. Eum minima cupiditate hic necessitatibus ut dignissimos. Repellat ut expedita expedita hic laboriosam enim ipsum blanditiis.', 'https://lorempixel.com/640/480/?93197', 1, 3, 'F6ju0tUvOc', '2019-08-29 01:20:38', '2019-08-29 01:20:38', 10, NULL, NULL, NULL, NULL),
(168, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 2765519, 'female', 'a+', 'Bangladeshi', '+1 (613) 466-1761', '95132 Brionna Crescent Apt. 025\nEast Kennithland, CA 71346', 'Eos rerum eos impedit magni sed sequi quidem magni. Quia sunt quo quibusdam molestias qui. Inventore id qui eum.', 'https://lorempixel.com/640/480/?73486', 1, 15, 'l32sstkak8', '2019-08-29 01:20:38', '2019-08-29 01:20:38', 10, NULL, NULL, NULL, NULL),
(169, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 6759166, 'male', 'b+', 'Bangladeshi', '+1.270.495.8160', '61882 Alexzander Forest\nMaureenshire, TX 94704-8743', 'Praesentium aut quia impedit minima ab sed. Voluptas et adipisci corporis minus assumenda cupiditate. Rerum repellat occaecati neque hic accusamus reiciendis dignissimos.', 'https://lorempixel.com/640/480/?22281', 1, 15, 'GJPhNje0lu', '2019-08-29 01:20:38', '2019-08-29 01:20:38', 6, NULL, NULL, NULL, NULL),
(170, '<NAME> DDS', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 3063872, 'male', 'o+', 'Bangladeshi', '504-959-1030', '744 Beer Meadow Apt. 176\nKundeside, KS 55434-0787', 'Eos aut est saepe accusantium rerum rem. Harum repudiandae neque ut sed. Natus fugit laboriosam rerum et dicta explicabo dolores dolor.', 'https://lorempixel.com/640/480/?82012', 1, 12, 'xv0KNxNLhG', '2019-08-29 01:20:39', '2019-08-29 01:20:39', 8, NULL, NULL, NULL, NULL),
(171, 'Mrs. <NAME> PhD', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 390054, 'male', 'o+', 'Bangladeshi', '+1-669-976-2094', '2793 Shanelle Walk Apt. 551\nRickyville, LA 79753', 'Ullam dignissimos maiores nam in fugit sunt quis. Distinctio corrupti est adipisci ducimus odio eveniet itaque et. Velit architecto sed est non.', 'https://lorempixel.com/640/480/?47594', 1, 6, 'HwqJ4u9eq6', '2019-08-29 01:20:39', '2019-08-29 01:20:39', 2, NULL, NULL, NULL, NULL),
(172, 'Dr. <NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 8999435, 'male', 'ab', 'Bangladeshi', '1-383-314-3991 x133', '224 King Crescent\nWest Kenmouth, ME 73507', 'Reiciendis expedita quae vel exercitationem. Numquam cum est voluptates molestiae. Cumque delectus et quia doloremque perferendis labore.', 'https://lorempixel.com/640/480/?45078', 1, 20, 'h5NGggqXvC', '2019-08-29 01:20:39', '2019-08-29 01:20:39', 4, NULL, NULL, NULL, NULL),
(173, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 737207, 'female', 'b+', 'Bangladeshi', '465.355.9120 x784', '3347 Robel Streets\nWest Zitachester, TN 47150-4678', 'Omnis mollitia sapiente deserunt repellat aliquid non laborum. Ea voluptatum adipisci repudiandae laborum cumque vero ducimus. Atque cumque omnis enim et velit et.', 'https://lorempixel.com/640/480/?98309', 1, 16, 'XDEuqor1fz', '2019-08-29 01:20:39', '2019-08-29 01:20:39', 6, NULL, NULL, NULL, NULL),
(174, '<NAME> PhD', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 9746021, 'female', 'a+', 'Bangladeshi', '643.450.5807', '5547 Augusta Trail\nEast Jennifer, DC 76098-2337', 'Quod facilis qui et autem quisquam odit. Voluptas quod dignissimos sint excepturi animi mollitia aliquam sunt. Ad doloremque doloribus dolores quia nesciunt quia facere.', 'https://lorempixel.com/640/480/?89261', 1, 19, 'oyku5UpNSg', '2019-08-29 01:20:39', '2019-08-29 01:20:39', 2, NULL, NULL, NULL, NULL),
(175, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 7989659, 'male', 'ab', 'Bangladeshi', '1-319-409-9160', '5168 Rath Shore\nEast Jenniehaven, IN 65547', 'Id quam nihil quam dolores omnis temporibus odio. Eaque suscipit et saepe eius blanditiis sequi est. In qui molestias iusto voluptatem repudiandae rem.', 'https://lorempixel.com/640/480/?34021', 1, 1, '8Oxcm9pWZb', '2019-08-29 01:20:39', '2019-08-29 01:20:39', 5, NULL, NULL, NULL, NULL),
(176, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 3262329, 'male', 'a+', 'Bangladeshi', '313.703.1489', '511 Morton Court Suite 895\nKiannatown, NH 98872', 'Sint eius et quasi quam eius consequatur expedita. Maxime iusto aspernatur ut qui rerum qui. Ut sit aut velit atque.', 'https://lorempixel.com/640/480/?40488', 1, 16, '9oINeBaekm', '2019-08-29 01:20:39', '2019-08-29 01:20:39', 1, NULL, NULL, NULL, NULL),
(177, '<NAME> Jr.', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 5202714, 'male', 'ab', 'Bangladeshi', '649.951.2261 x213', '5611 Schamberger Ways Suite 981\nAriannaport, AZ 88614-3627', 'Nisi aspernatur nihil aut aut. Impedit atque nisi deleniti et. Sit ullam delectus occaecati facere a.', 'https://lorempixel.com/640/480/?44721', 1, 4, 'LPg067nz6u', '2019-08-29 01:20:39', '2019-08-29 01:20:39', 2, NULL, NULL, NULL, NULL),
(178, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 4372988, 'female', 'ab', 'Bangladeshi', '1-930-641-6081', '7930 Ryan Forges\nBreitenbergborough, OK 48550', 'Est rerum sit ad. Ut possimus nemo consequatur ipsa facilis magnam. Vitae aut placeat ad.', 'https://lorempixel.com/640/480/?95388', 1, 4, 'Kb6qFeYLAt', '2019-08-29 01:20:39', '2019-08-29 01:20:39', 2, NULL, NULL, NULL, NULL),
(179, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 7912751, 'female', 'ab', 'Bangladeshi', '(817) 962-1006 x76043', '71966 Mina Forks\nEddtown, GA 57178-8245', 'Repellat ullam id quis enim dolorem ipsam. Nihil aut rerum culpa eligendi rerum eum architecto accusantium. Illo reprehenderit quia optio deleniti.', 'https://lorempixel.com/640/480/?97248', 1, 16, 'FbllMVJx7P', '2019-08-29 01:20:39', '2019-08-29 01:20:39', 1, NULL, NULL, NULL, NULL),
(180, 'Prof. <NAME> MD', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 8291314, 'female', 'a+', 'Bangladeshi', '253-764-4599 x78468', '2498 Mya Tunnel Apt. 544\nWest Keegantown, DC 03757', 'Et enim libero tempore at molestias. Minima similique id expedita dolores consequuntur laborum non. Sit nesciunt iure optio unde alias maiores.', 'https://lorempixel.com/640/480/?99231', 1, 18, 'hZ8soBUpU4', '2019-08-29 01:20:39', '2019-08-29 01:20:39', 3, NULL, NULL, NULL, NULL),
(181, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 3579506, 'male', 'a+', 'Bangladeshi', '1-819-330-0106 x76519', '76986 Yundt Cape\nSouth Floberg, PA 29785-8862', 'Et sint eveniet voluptatum veniam eaque omnis. Nobis et et eaque cum necessitatibus. A omnis nesciunt ex natus voluptatem ut iure repellendus.', 'https://lorempixel.com/640/480/?77395', 1, 6, 'L2FW5KP3zy', '2019-08-29 01:20:39', '2019-08-29 01:20:39', 7, NULL, NULL, NULL, NULL),
(182, 'Mrs. <NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 1108887, 'male', 'ab', 'Bangladeshi', '(815) 431-5676 x9161', '411 Bins Alley\nPort Othatown, CO 44213', 'Repudiandae odit ex nisi nesciunt. Nam aut iusto optio molestias repellat consequatur. Tempora nam officia consectetur et commodi similique.', 'https://lorempixel.com/640/480/?97916', 1, 11, '4bQRGBiTiE', '2019-08-29 01:20:39', '2019-08-29 01:20:39', 6, NULL, NULL, NULL, NULL),
(183, '<NAME>', '<EMAIL>', <PASSWORD>$HnUsUeGC5<PASSWORD>L4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 5177758, 'male', 'a+', 'Bangladeshi', '991-345-5631 x018', '8161 VonRueden Fall\nPort Keyshawnland, AK 53620', 'Magni suscipit qui possimus est eos aut. Iusto commodi deleniti et pariatur modi iusto beatae. Eos est sint maiores fugit.', 'https://lorempixel.com/640/480/?66133', 1, 17, 'XGgtIY1CLH', '2019-08-29 01:20:39', '2019-08-29 01:20:39', 5, NULL, NULL, NULL, NULL),
(184, '<NAME> Jr.', '<EMAIL>', <PASSWORD>.aVtO46', 'student', 1, 1, 19945377, 339882, 'male', 'b+', 'Bangladeshi', '813-810-6947', '71856 Lemke Lights Suite 834\nHaagburgh, MS 46683', 'Ad labore minus quis saepe consequatur. Blanditiis repudiandae itaque necessitatibus et omnis. Omnis odit natus neque laudantium.', 'https://lorempixel.com/640/480/?49619', 1, 4, 'dOguT93kDI', '2019-08-29 01:20:39', '2019-08-29 01:20:39', 6, NULL, NULL, NULL, NULL),
(185, '<NAME> PhD', '<EMAIL>', <PASSWORD>$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 2991693, 'male', 'o+', 'Bangladeshi', '865.254.9700', '601 Wilderman Walk Apt. 372\nNorth Norbertland, VT 18208', 'Ut asperiores aut qui blanditiis et. Nihil porro doloribus voluptatem pariatur. Est sunt aut nam quae ut nihil nulla.', 'https://lorempixel.com/640/480/?33174', 1, 4, 'FzWcGGHn7J', '2019-08-29 01:20:39', '2019-08-29 01:20:39', 9, NULL, NULL, NULL, NULL),
(186, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 4446843, 'male', 'ab', 'Bangladeshi', '+1-424-807-8588', '5660 Okey Island Apt. 941\nKozeytown, AL 47401-6547', 'Provident delectus non ab sint cupiditate. In et reprehenderit dignissimos saepe eum ut. Vitae occaecati est quidem reiciendis tempore adipisci magni.', 'https://lorempixel.com/640/480/?58966', 1, 20, 'LXb5xFS4LT', '2019-08-29 01:20:39', '2019-08-29 01:20:39', 6, NULL, NULL, NULL, NULL),
(187, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 8429174, 'male', 'b+', 'Bangladeshi', '+1.919.237.2758', '828 Rutherford Springs Suite 281\nEast Hoseaborough, NM 80895-6692', 'Officia qui exercitationem neque ut quidem ullam architecto. Minima non debitis reprehenderit alias repellat consequatur. Facilis incidunt eos est est a in maiores optio.', 'https://lorempixel.com/640/480/?44046', 1, 9, 'iraf18I3WA', '2019-08-29 01:20:39', '2019-08-29 01:20:39', 4, NULL, NULL, NULL, NULL);
INSERT INTO `users` (`id`, `name`, `email`, `password`, `role`, `active`, `school_id`, `code`, `student_code`, `gender`, `blood_group`, `nationality`, `phone_number`, `address`, `about`, `pic_path`, `verified`, `section_id`, `remember_token`, `created_at`, `updated_at`, `department_id`, `stripe_id`, `card_brand`, `card_last_four`, `trial_ends_at`) VALUES
(188, '<NAME>', '<EMAIL>', <PASSWORD>$Hn<PASSWORD>GC<PASSWORD>IJOOES<PASSWORD>', 'student', 1, 1, 19945377, 953485, 'female', 'a+', 'Bangladeshi', '(686) 231-1251 x61760', '96775 Randal Hollow\nLake Gianniport, MN 24556-8341', 'Voluptates aperiam quaerat quas est. Occaecati non similique quibusdam ea ducimus exercitationem eos. Et autem exercitationem libero et aspernatur assumenda facere.', 'https://lorempixel.com/640/480/?33412', 1, 13, 'Zx6WI73hFV', '2019-08-29 01:20:39', '2019-08-29 01:20:39', 4, NULL, NULL, NULL, NULL),
(189, '<NAME>.', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 6962786, 'female', 'o+', 'Bangladeshi', '+1.696.922.5251', '4707 Seamus Inlet Suite 932\nFrancistown, ID 26579-5386', 'Incidunt nulla et occaecati id. Minima iusto magnam nobis adipisci. Amet qui ut sint sit ex.', 'https://lorempixel.com/640/480/?75559', 1, 12, '4DFgpzmXQn', '2019-08-29 01:20:39', '2019-08-29 01:20:39', 2, NULL, NULL, NULL, NULL),
(190, 'Dr. <NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 9582634, 'male', 'ab', 'Bangladeshi', '(424) 656-9807', '500 Wisoky Square Suite 886\nPort Leonorville, NE 38507-3939', 'Aut rerum excepturi consequuntur. Laudantium aspernatur sed temporibus aut doloribus quod aut qui. Delectus suscipit sequi assumenda aliquam fugiat sint maiores.', 'https://lorempixel.com/640/480/?29232', 1, 8, 'YEfTEkSIV6', '2019-08-29 01:20:39', '2019-08-29 01:20:39', 9, NULL, NULL, NULL, NULL),
(191, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 2801705, 'male', 'a+', 'Bangladeshi', '871-897-0471 x39254', '126 Garret Drive Apt. 599\nEast Alaynaville, ID 08624-6867', 'Eum dolorum qui architecto officiis quo neque corrupti. Corporis aliquid nam nesciunt ratione. Laboriosam consequuntur neque quibusdam aliquid aut tenetur.', 'https://lorempixel.com/640/480/?28181', 1, 20, 'TkzmjltLuB', '2019-08-29 01:20:39', '2019-08-29 01:20:39', 5, NULL, NULL, NULL, NULL),
(192, 'Mr. <NAME> DDS', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 440596, 'female', 'b+', 'Bangladeshi', '1-295-659-2276 x4687', '2627 Luettgen Haven Suite 942\nWalshport, CT 92977', 'Magnam alias commodi adipisci ratione tenetur accusantium ut. Quis aut libero expedita. Ut velit sunt aut tenetur.', 'https://lorempixel.com/640/480/?33502', 1, 9, 'pobeuF2OKH', '2019-08-29 01:20:39', '2019-08-29 01:20:39', 8, NULL, NULL, NULL, NULL),
(193, '<NAME>', '<EMAIL>', <PASSWORD>', 'student', 1, 1, 19945377, 356540, 'male', 'o+', 'Bangladeshi', '658-659-0949 x90480', '85127 Juston Walk Suite 925\nLake Destineefort, KY 06491-3219', 'Quia ad est perspiciatis quae iusto. Doloribus enim voluptatibus voluptatem inventore error molestiae quas. Esse qui beatae voluptatibus.', 'https://lorempixel.com/640/480/?79638', 1, 11, 'K86XnjQPMn', '2019-08-29 01:20:39', '2019-08-29 01:20:39', 4, NULL, NULL, NULL, NULL),
(194, '<NAME> MD', '<EMAIL>', <PASSWORD>', 'student', 1, 1, 19945377, 943893, 'female', 'o+', 'Bangladeshi', '+1 (495) 309-8777', '12173 Denesik Mission\nKalebstad, OK 46114-9585', 'Non aut perferendis officiis et occaecati amet necessitatibus. Deserunt voluptates ut velit reprehenderit voluptatibus ex sed. Animi quia eum nesciunt sed non quas hic laborum.', 'https://lorempixel.com/640/480/?27968', 1, 11, 'gSVHZcFGmt', '2019-08-29 01:20:39', '2019-08-29 01:20:39', 5, NULL, NULL, NULL, NULL),
(195, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 4198555, 'female', 'b+', 'Bangladeshi', '779.702.5239 x237', '358 D\'Amore Track\nNew Katrina, AK 65265', 'Consequatur ratione illo deleniti totam ullam cum dignissimos. Provident molestias ratione quia officia. Eius incidunt tempore reiciendis.', 'https://lorempixel.com/640/480/?25078', 1, 11, '5CkeZcHlwv', '2019-08-29 01:20:39', '2019-08-29 01:20:39', 4, NULL, NULL, NULL, NULL),
(196, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 4431720, 'male', 'o+', 'Bangladeshi', '975-546-8551 x7255', '2608 Anais Glens\nMohrshire, GA 31318', 'Quis molestiae officia numquam qui ullam. Dolorem esse est vitae expedita consectetur blanditiis quaerat deleniti. Voluptates architecto similique impedit ipsa rerum rerum.', 'https://lorempixel.com/640/480/?32299', 1, 10, 'YYKKBIkrGi', '2019-08-29 01:20:39', '2019-08-29 01:20:39', 4, NULL, NULL, NULL, NULL),
(197, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 5753098, 'female', 'a+', 'Bangladeshi', '(616) 450-6797', '513 Orlo Harbor Suite 954\nGarnetview, DC 06283-5022', 'Esse minima minus explicabo distinctio. Itaque quia magnam qui incidunt. Accusantium occaecati modi repellendus mollitia fuga magni.', 'https://lorempixel.com/640/480/?54908', 1, 9, 'WgepfetUzR', '2019-08-29 01:20:39', '2019-08-29 01:20:39', 2, NULL, NULL, NULL, NULL),
(198, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 9936367, 'male', 'b+', 'Bangladeshi', '+1.718.438.7703', '22118 Hermann Drive\nLangoshburgh, NE 63464', 'Aut itaque et consequuntur unde. Et nihil ad qui. Rem dolores rerum molestiae porro aperiam repellat.', 'https://lorempixel.com/640/480/?10247', 1, 18, 'u5WkH8vmgL', '2019-08-29 01:20:39', '2019-08-29 01:20:39', 1, NULL, NULL, NULL, NULL),
(199, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 639789, 'male', 'b+', 'Bangladeshi', '+1 (663) 296-6402', '981 Mante Shoal Suite 870\nMurazikfort, KS 64123-1055', 'Quia sint eos eaque qui ipsum nam placeat id. Vero consequatur doloremque eveniet sint voluptate aut eum. Omnis asperiores laboriosam nihil unde.', 'https://lorempixel.com/640/480/?86599', 1, 10, '2OeyZP440x', '2019-08-29 01:20:39', '2019-08-29 01:20:39', 3, NULL, NULL, NULL, NULL),
(200, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 1651770, 'female', 'ab', 'Bangladeshi', '(491) 677-2515 x0010', '8017 Koch Squares Suite 059\nNew Janis, MO 73397', 'Minus est laboriosam sed accusamus dolores eveniet. Voluptatem neque ipsa quasi deserunt explicabo hic totam. Laudantium placeat nulla delectus quam error necessitatibus aut.', 'https://lorempixel.com/640/480/?67174', 1, 2, 'VwCozek1LL', '2019-08-29 01:20:39', '2019-08-29 01:20:39', 3, NULL, NULL, NULL, NULL),
(201, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 4806333, 'female', 'a+', 'Bangladeshi', '1-975-678-1444', '666 Lempi Bridge Apt. 287\nLake Estevan, NH 52021-1892', 'Et in quo libero perspiciatis sit. Cumque odio temporibus quis praesentium sit. Inventore porro quia ut aperiam.', 'https://lorempixel.com/640/480/?36457', 1, 10, 'voDAOrrNYU', '2019-08-29 01:20:39', '2019-08-29 01:20:39', 7, NULL, NULL, NULL, NULL),
(202, 'Mrs. <NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 6523382, 'male', 'o+', 'Bangladeshi', '386.423.6949', '5639 Norma Plaza Suite 499\nDickimouth, KS 52948-8060', 'Modi ad eum perspiciatis accusantium eius modi. Eaque eos est sequi adipisci. Illo inventore error in maxime ullam magni doloremque.', 'https://lorempixel.com/640/480/?27763', 1, 13, 'Eaw2WRWAI2', '2019-08-29 01:20:39', '2019-08-29 01:20:39', 2, NULL, NULL, NULL, NULL),
(203, 'Miss <NAME> Jr.', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 4383818, 'female', 'b+', 'Bangladeshi', '(330) 481-4267', '34256 Sister Way Suite 155\nPort Othaport, AK 79098-8716', 'Est porro unde voluptatem eos et. Porro quisquam corporis ex quia sunt consectetur. Perferendis minima minus rem corporis quis porro quam voluptas.', 'https://lorempixel.com/640/480/?56120', 1, 19, 'pgZf1jJ223', '2019-08-29 01:20:39', '2019-08-29 01:20:39', 2, NULL, NULL, NULL, NULL),
(204, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 1956712, 'female', 'ab', 'Bangladeshi', '+19425500076', '72131 Hane Crossroad Suite 605\nPort Reubenchester, AL 05576-7820', 'Et eveniet eos temporibus dignissimos. Qui ullam voluptatem itaque voluptas qui voluptas porro sunt. Enim qui est eveniet quos quae aperiam et.', 'https://lorempixel.com/640/480/?19820', 1, 5, 'uMeSKu5jvT', '2019-08-29 01:20:39', '2019-08-29 01:20:39', 7, NULL, NULL, NULL, NULL),
(205, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 7934438, 'female', 'ab', 'Bangladeshi', '(487) 296-4389 x65852', '213 Tromp Pine\nLake Krystelmouth, NM 54332-8001', 'Et fugiat sed quia cum eum qui sint dolore. Magnam eligendi cum culpa est. Qui rerum ab aliquam necessitatibus perferendis quis sunt.', 'https://lorempixel.com/640/480/?58003', 1, 15, 'vU5XzByQ5Y', '2019-08-29 01:20:39', '2019-08-29 01:20:39', 4, NULL, NULL, NULL, NULL),
(206, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 1233023, 'male', 'b+', 'Bangladeshi', '(609) 259-8520', '954 Haag Squares\nLowechester, ID 88354', 'Molestiae architecto quo dolorem dolorum asperiores. Eum iusto quae non ab odio non suscipit repellat. Incidunt reiciendis dolorem illo quibusdam quia.', 'https://lorempixel.com/640/480/?70304', 1, 5, 'Mx9O7KCZxD', '2019-08-29 01:20:39', '2019-08-29 01:20:39', 4, NULL, NULL, NULL, NULL),
(207, 'Mr. <NAME> MD', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 8619318, 'male', 'ab', 'Bangladeshi', '+1.436.714.8447', '246 Icie Mill Suite 525\nHammesside, AZ 09529', 'Quasi aut cum numquam asperiores. Mollitia nobis et in quibusdam suscipit. Rerum sapiente doloremque consequuntur odit explicabo.', 'https://lorempixel.com/640/480/?45906', 1, 13, 'WaD9b4JQpF', '2019-08-29 01:20:39', '2019-08-29 01:20:39', 2, NULL, NULL, NULL, NULL),
(208, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 7198800, 'female', 'o+', 'Bangladeshi', '(521) 631-7418 x91549', '530 Jast Square\nRubyberg, NH 33454', 'Qui voluptatibus corrupti omnis saepe sit nesciunt dolores. Aut sint provident similique voluptas. Sapiente sunt rerum autem non omnis est provident.', 'https://lorempixel.com/640/480/?79902', 1, 19, '1kL2AN6RdT', '2019-08-29 01:20:39', '2019-08-29 01:20:39', 9, NULL, NULL, NULL, NULL),
(209, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 6415379, 'female', 'ab', 'Bangladeshi', '(560) 301-6285', '19818 Stracke Square Apt. 410\nWest Alysson, SD 94634-3898', 'Quibusdam ut ab animi qui. Nemo vero inventore totam iusto. Impedit officia quia nisi minus.', 'https://lorempixel.com/640/480/?18081', 1, 10, 'U9hyujt0FR', '2019-08-29 01:20:39', '2019-08-29 01:20:39', 8, NULL, NULL, NULL, NULL),
(210, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 4872711, 'female', 'b+', 'Bangladeshi', '1-901-634-1468', '5651 Odessa Drive\nJohnsfurt, AR 58651', 'Explicabo et commodi expedita nesciunt voluptas. Sed omnis ad non id est. Enim rerum omnis sed illum amet eius.', 'https://lorempixel.com/640/480/?85910', 1, 18, 'VPX0drC2SE', '2019-08-29 01:20:39', '2019-08-29 01:20:39', 7, NULL, NULL, NULL, NULL),
(211, 'Dr. <NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 1437735, 'male', 'a+', 'Bangladeshi', '794.625.8590 x821', '114 Rempel Prairie Suite 678\nSouth Chelsea, IN 39752-9854', 'Aspernatur maiores id voluptas officia sunt cum consequatur. Voluptate rerum aut enim ea. Sunt sed assumenda soluta laboriosam et et.', 'https://lorempixel.com/640/480/?61716', 1, 19, 'win17dDmS2', '2019-08-29 01:20:39', '2019-08-29 01:20:39', 2, NULL, NULL, NULL, NULL),
(212, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 7954275, 'female', 'a+', 'Bangladeshi', '484.439.8812 x6404', '693 Rogahn Wall Apt. 780\nBrucechester, MO 26153-9733', 'Aut ut atque qui rem. Repellat perspiciatis dolorum assumenda iure. Neque recusandae similique tempore eos.', 'https://lorempixel.com/640/480/?87912', 1, 4, 'aUP2EIwxRZ', '2019-08-29 01:20:39', '2019-08-29 01:20:39', 7, NULL, NULL, NULL, NULL),
(213, '<NAME>', '<EMAIL>', <PASSWORD>$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 6786035, 'female', 'a+', 'Bangladeshi', '+1 (463) 633-5040', '4783 Langworth Ports\nToyfort, NC 78191', 'Esse molestiae et doloremque quae recusandae neque. Inventore ut nulla rerum sint. Ea nam corporis optio omnis et.', 'https://lorempixel.com/640/480/?14966', 1, 12, '3m41pPiAir', '2019-08-29 01:20:39', '2019-08-29 01:20:39', 6, NULL, NULL, NULL, NULL),
(214, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 842183, 'male', 'b+', 'Bangladeshi', '1-535-784-8353', '544 Raegan Walks Suite 264\nNorth Elinore, MI 55223-7578', 'Odit non quae magni et magnam facilis. Ab molestias incidunt blanditiis ipsum debitis sunt adipisci modi. Ducimus beatae repellendus ducimus vitae nihil eligendi consequatur quos.', 'https://lorempixel.com/640/480/?91770', 1, 1, 'Lg4ug9NPWA', '2019-08-29 01:20:39', '2019-08-29 01:20:39', 8, NULL, NULL, NULL, NULL),
(215, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 3539948, 'female', 'ab', 'Bangladeshi', '1-509-317-9114 x90915', '10717 Kaia Mountain Suite 722\nLaverneborough, AK 57619-8286', 'Dolores eveniet itaque dolores fuga ut id omnis explicabo. Vitae omnis asperiores molestias corporis sed nihil ab est. Eum dolorum et fugit mollitia et.', 'https://lorempixel.com/640/480/?88298', 1, 3, '3HFA2DRnuQ', '2019-08-29 01:20:39', '2019-08-29 01:20:39', 4, NULL, NULL, NULL, NULL),
(216, 'Ms. <NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 2488345, 'female', 'a+', 'Bangladeshi', '+1.648.687.0286', '12944 Gerlach Manor\nKingshire, IA 33140-3172', 'Consequatur eius cumque ut officiis ullam dolorum repellat. Tempora velit placeat accusamus atque ex rerum. Animi fugit explicabo voluptatem qui animi qui.', 'https://lorempixel.com/640/480/?38370', 1, 16, 'HMeVSKqsUq', '2019-08-29 01:20:39', '2019-08-29 01:20:39', 2, NULL, NULL, NULL, NULL),
(217, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 636007, 'male', 'ab', 'Bangladeshi', '642.210.9394', '108 Borer Ridges Apt. 152\nLake Titusfort, MO 21974', 'Dolorem ut error eveniet. Voluptates dicta nesciunt iure. Fuga nihil laudantium facere qui voluptatem.', 'https://lorempixel.com/640/480/?99106', 1, 13, 'r5BJ5fW5aB', '2019-08-29 01:20:39', '2019-08-29 01:20:39', 2, NULL, NULL, NULL, NULL),
(218, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 6558434, 'female', 'b+', 'Bangladeshi', '+12057948666', '523 Dallin Mountain Apt. 378\nNew Liam, LA 24046-2163', 'Maxime sed ea et cumque voluptatem voluptas omnis. Error rerum itaque laboriosam maxime dolorem aut et eum. Error dolor cumque repellat ullam eos nemo.', 'https://lorempixel.com/640/480/?33557', 1, 11, 'GYUGLwY2uJ', '2019-08-29 01:20:39', '2019-08-29 01:20:39', 8, NULL, NULL, NULL, NULL),
(219, '<NAME> PhD', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 846168, 'female', 'o+', 'Bangladeshi', '329-817-2100', '302 Haley Avenue Apt. 252\nVeumberg, PA 39920', 'Quia doloribus et tempore nesciunt. Cupiditate animi omnis adipisci quibusdam quod ea. Sunt non debitis nihil in dolores inventore.', 'https://lorempixel.com/640/480/?96740', 1, 17, 'biJJNivLZj', '2019-08-29 01:20:39', '2019-08-29 01:20:39', 7, NULL, NULL, NULL, NULL),
(220, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 2333656, 'male', 'a+', 'Bangladeshi', '889.979.2664 x19893', '2314 Kiehn Green\nAbshireshire, LA 10287', 'Quis alias et ullam totam velit tempora qui. Animi rerum odio incidunt aut expedita laudantium eligendi. Illum et nemo cupiditate sed vel praesentium.', 'https://lorempixel.com/640/480/?98028', 1, 17, 'wMfzZ1zjBV', '2019-08-29 01:20:39', '2019-08-29 01:20:39', 3, NULL, NULL, NULL, NULL),
(221, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 9834477, 'female', 'a+', 'Bangladeshi', '1-765-894-9799', '4088 Brown Meadow\nPort Delphine, WV 10909', 'Deleniti non sed quaerat repellat alias. Repellat minima hic necessitatibus delectus. Sequi ut nostrum voluptas a.', 'https://lorempixel.com/640/480/?26676', 1, 17, 'i04oM7twae', '2019-08-29 01:20:39', '2019-08-29 01:20:39', 1, NULL, NULL, NULL, NULL),
(222, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 3751749, 'female', 'ab', 'Bangladeshi', '913.572.5353', '97641 Ratke Meadow\nWest Charlottechester, MA 57702', 'Exercitationem ut praesentium dolorem aut alias non aliquam. Earum quis architecto dolorum eligendi nobis. Quasi eligendi labore inventore consequatur consequatur unde quam.', 'https://lorempixel.com/640/480/?83565', 1, 7, 'odMUlWxdCs', '2019-08-29 01:20:39', '2019-08-29 01:20:39', 10, NULL, NULL, NULL, NULL),
(223, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 9468166, 'male', 'o+', 'Bangladeshi', '+1-753-536-9008', '1148 Quigley Locks Suite 076\nNew Kaden, NV 43877-9912', 'Sint alias est est reiciendis. Molestias reiciendis dignissimos at rerum sint. Distinctio accusantium excepturi alias reprehenderit dolor id.', 'https://lorempixel.com/640/480/?27146', 1, 10, 'dhK8uLm0vb', '2019-08-29 01:20:39', '2019-08-29 01:20:39', 4, NULL, NULL, NULL, NULL),
(224, 'Dr. <NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 9562597, 'female', 'a+', 'Bangladeshi', '984.335.1332 x7433', '776 Ewald Via Suite 424\nJarvistown, TX 64713', 'Vel et facilis corrupti sunt ut enim. Quia consequuntur fuga quia. Reiciendis eum molestiae non.', 'https://lorempixel.com/640/480/?32129', 1, 5, '9JaEyVgklb', '2019-08-29 01:20:39', '2019-08-29 01:20:39', 5, NULL, NULL, NULL, NULL),
(225, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 8184457, 'male', 'b+', 'Bangladeshi', '859-864-6603 x782', '5948 Janelle Center Suite 303\nDallasmouth, HI 39622', 'Beatae sed omnis molestiae debitis. Mollitia modi quam accusantium impedit. Incidunt debitis eligendi dignissimos.', 'https://lorempixel.com/640/480/?94968', 1, 9, 'pNnan20UfN', '2019-08-29 01:20:39', '2019-08-29 01:20:39', 2, NULL, NULL, NULL, NULL),
(226, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 5267789, 'male', 'ab', 'Bangladeshi', '1-441-210-7824 x59403', '2915 Lindgren Court\nNew Toby, KY 09910', 'Ipsa commodi qui accusantium voluptas deleniti. Fuga et praesentium dignissimos sequi animi ipsa. Est nemo neque soluta quo commodi voluptatem.', 'https://lorempixel.com/640/480/?69311', 1, 2, 'c994GlJiSl', '2019-08-29 01:20:39', '2019-08-29 01:20:39', 6, NULL, NULL, NULL, NULL),
(227, 'G<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 7899752, 'female', 'ab', 'Bangladeshi', '249-932-1708', '957 Lucas Islands Apt. 266\nWest Elenafort, VT 97522-7656', 'Natus laboriosam eum fugiat totam quia. Et tempora quam ut ea numquam inventore. Magnam odit quisquam ratione in eius.', 'https://lorempixel.com/640/480/?28026', 1, 18, 'smFlWAQT46', '2019-08-29 01:20:39', '2019-08-29 01:20:39', 9, NULL, NULL, NULL, NULL),
(228, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 144111, 'male', 'a+', 'Bangladeshi', '483.218.2552', '30359 Garth Wall\nSouth Florencio, SC 77768', 'Voluptate qui voluptatum quaerat quia voluptate quisquam eveniet. Sapiente omnis aut sit et quos sit. Quia sunt accusantium tempora saepe officiis.', 'https://lorempixel.com/640/480/?83568', 1, 14, 'cEiMEPFPcf', '2019-08-29 01:20:39', '2019-08-29 01:20:39', 9, NULL, NULL, NULL, NULL),
(229, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 430974, 'male', 'b+', 'Bangladeshi', '(372) 575-4464 x714', '73462 Swift Streets Apt. 545\nLake Sandrahaven, NJ 65470-8210', 'Impedit suscipit et cupiditate voluptas et voluptatum error. Et laudantium id quia qui. Id corporis eum a repellendus laudantium.', 'https://lorempixel.com/640/480/?96740', 1, 15, 'Dghq5wAk7U', '2019-08-29 01:20:39', '2019-08-29 01:20:39', 2, NULL, NULL, NULL, NULL),
(230, '<NAME>', '<EMAIL>', <PASSWORD>', 'student', 1, 1, 19945377, 4405772, 'male', 'ab', 'Bangladeshi', '402.896.2526 x0103', '9224 Leannon Gateway Suite 257\nJacobshaven, DE 58661-9873', 'Asperiores consequatur atque voluptatem dicta ullam voluptatem. Ab et repellat rerum cupiditate. Possimus unde facilis rerum quis quod corrupti enim.', 'https://lorempixel.com/640/480/?36703', 1, 2, 'nrl3TWHgFL', '2019-08-29 01:20:39', '2019-08-29 01:20:39', 2, NULL, NULL, NULL, NULL),
(231, '<NAME>', '<EMAIL>', <PASSWORD>', 'student', 1, 1, 19945377, 8786910, 'male', 'ab', 'Bangladeshi', '+1-991-348-8581', '572 Lubowitz Stravenue Suite 277\nO\'Connermouth, NJ 05617-3025', 'Nesciunt fugiat quaerat et incidunt aut quia. Accusamus molestias excepturi rerum magnam similique qui velit repellat. Tenetur deleniti quis voluptatum sed doloribus.', 'https://lorempixel.com/640/480/?63753', 1, 4, 'iI8BvUialX', '2019-08-29 01:20:39', '2019-08-29 01:20:39', 9, NULL, NULL, NULL, NULL),
(232, 'Mrs. <NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 4925497, 'female', 'b+', 'Bangladeshi', '(529) 586-2074', '789 Citlalli Mission Apt. 518\nPort Pearlstad, WI 37492-0000', 'Quam neque labore qui enim sed et eveniet. Voluptatem quia facilis consequuntur cum amet tempora velit. Deserunt ad et quaerat optio.', 'https://lorempixel.com/640/480/?64315', 1, 13, '80bxvl8rhE', '2019-08-29 01:20:39', '2019-08-29 01:20:39', 2, NULL, NULL, NULL, NULL),
(233, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 928592, 'male', 'b+', 'Bangladeshi', '(821) 831-4066', '3522 Weber Lodge Suite 086\nEast Dorothy, IA 85731', 'Sed incidunt perspiciatis nisi omnis error voluptatem ut. Quia dolore debitis consequatur atque consectetur incidunt. Recusandae ducimus est libero ut est.', 'https://lorempixel.com/640/480/?97930', 1, 8, 'rLlShOW1ut', '2019-08-29 01:20:39', '2019-08-29 01:20:39', 6, NULL, NULL, NULL, NULL),
(234, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 6151452, 'male', 'ab', 'Bangladeshi', '761.466.5625 x436', '383 Orie Station\nBrakushaven, MD 48835', 'Asperiores deserunt aliquam molestiae et. Sapiente a minus optio aut qui. Beatae ut ex repellat enim et aut quisquam aut.', 'https://lorempixel.com/640/480/?15321', 1, 14, 'oD9QE0V7rv', '2019-08-29 01:20:39', '2019-08-29 01:20:39', 5, NULL, NULL, NULL, NULL),
(235, 'Ms. <NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 3483517, 'male', 'a+', 'Bangladeshi', '445.534.1088', '3882 Jarod Views\nStephanieburgh, HI 79429', 'Officiis eaque et magni assumenda eos temporibus. Quia occaecati in voluptatum ut. Voluptas quod dolor laudantium omnis exercitationem.', 'https://lorempixel.com/640/480/?88740', 1, 17, 'ii4TUCp099', '2019-08-29 01:20:39', '2019-08-29 01:20:39', 5, NULL, NULL, NULL, NULL),
(236, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 3329053, 'female', 'b+', 'Bangladeshi', '1-435-303-0876', '9506 Keenan Forge\nTremblayborough, MA 45291-8967', 'Dolore doloremque id exercitationem vitae. Ullam perferendis consectetur voluptatibus autem molestiae saepe tenetur. Saepe voluptatibus vero explicabo voluptates optio.', 'https://lorempixel.com/640/480/?86061', 1, 12, 'DzWaUTRjA1', '2019-08-29 01:20:39', '2019-08-29 01:20:39', 2, NULL, NULL, NULL, NULL),
(237, 'Mr. <NAME>', '<EMAIL>', <PASSWORD>$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 7251046, 'female', 'b+', 'Bangladeshi', '461-975-6861 x72891', '81414 Rippin Knolls\nEmilianoshire, AL 74085', 'Doloremque autem nostrum perspiciatis ipsam. Aut necessitatibus aliquid unde voluptate tempora sed. Sapiente tempore sunt dolores rerum consequuntur et.', 'https://lorempixel.com/640/480/?39612', 1, 6, '7nmTIhYF9H', '2019-08-29 01:20:39', '2019-08-29 01:20:39', 8, NULL, NULL, NULL, NULL),
(238, '<NAME>', '<EMAIL>', <PASSWORD>$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 8726652, 'male', 'o+', 'Bangladeshi', '670.797.8698 x292', '46277 McCullough Street Apt. 554\nPearlinefort, MI 35485-7600', 'Blanditiis occaecati nisi dicta cupiditate eius. Voluptatem sed et itaque perferendis consequuntur non dicta. Quibusdam illo quasi praesentium perferendis pariatur similique.', 'https://lorempixel.com/640/480/?96713', 1, 20, 'mEtzxv2JTO', '2019-08-29 01:20:39', '2019-08-29 01:20:39', 5, NULL, NULL, NULL, NULL),
(239, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 4723532, 'male', 'a+', 'Bangladeshi', '610-582-1520', '1298 Mayer Cliffs Apt. 889\nNew Hunter, MO 67157', 'Commodi dolore ullam ut non dolore et incidunt aliquam. Itaque porro quaerat non rerum optio ipsum cupiditate velit. Et dolorem quis impedit nisi.', 'https://lorempixel.com/640/480/?59251', 1, 4, 'Vwb9uLar5H', '2019-08-29 01:20:39', '2019-08-29 01:20:39', 9, NULL, NULL, NULL, NULL),
(240, 'Prof. <NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 5953251, 'female', 'a+', 'Bangladeshi', '1-652-263-5335 x1374', '42206 Grimes Fields\nPort Joshua, OH 65083', 'Rerum eveniet molestiae laboriosam dolorum. Odit odio ipsa eos expedita praesentium omnis. Est molestiae officia eos perspiciatis accusantium dolor.', 'https://lorempixel.com/640/480/?81636', 1, 17, 'MiLxQRdL1P', '2019-08-29 01:20:39', '2019-08-29 01:20:39', 10, NULL, NULL, NULL, NULL),
(241, 'Prof. <NAME> MD', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 5509245, 'female', 'a+', 'Bangladeshi', '842.905.3944', '2916 Ryan Roads\nAleneland, KS 92266', 'Et ullam ut suscipit maxime rem. Hic quo dicta eum sed dolor. Culpa voluptates laboriosam modi quisquam nemo modi.', 'https://lorempixel.com/640/480/?49265', 1, 9, '8KINTbigJm', '2019-08-29 01:20:39', '2019-08-29 01:20:39', 5, NULL, NULL, NULL, NULL),
(242, 'Prof. <NAME> MD', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 8715391, 'female', 'a+', 'Bangladeshi', '(863) 747-7598', '2606 Kylie Row\nBotsfordport, IA 37403', 'Pariatur neque qui eos fuga rerum quia ex. Quo repudiandae quia quae error harum. Vel dolore ut ad vel voluptatem veniam aperiam.', 'https://lorempixel.com/640/480/?26971', 1, 18, 'dlfxjZW3Lz', '2019-08-29 01:20:39', '2019-08-29 01:20:39', 4, NULL, NULL, NULL, NULL),
(243, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 243199, 'female', 'o+', 'Bangladeshi', '+15486450508', '539 Lebsack Burg Suite 388\nKuhlmanmouth, MO 14709-2943', 'Ea explicabo quas autem et enim. Molestiae alias sapiente laboriosam qui reprehenderit. Molestiae voluptas doloremque dolores dolorum ut.', 'https://lorempixel.com/640/480/?38868', 1, 19, 'zrtnmCQ0d5', '2019-08-29 01:20:39', '2019-08-29 01:20:39', 5, NULL, NULL, NULL, NULL),
(244, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 333591, 'male', 'o+', 'Bangladeshi', '251-498-8361', '77105 Borer Motorway\nPort Donna, NV 53440', 'Tempore id voluptas rem alias ut. Quia eius asperiores debitis et. Ut et consectetur ad non.', 'https://lorempixel.com/640/480/?52433', 1, 7, 'RVqA1RGoKg', '2019-08-29 01:20:39', '2019-08-29 01:20:39', 3, NULL, NULL, NULL, NULL),
(245, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 758738, 'female', 'b+', 'Bangladeshi', '+1-441-779-1634', '231 Lehner Mountain Apt. 355\nEast Anissaton, MI 84493-8388', 'Blanditiis quae sint atque repudiandae provident. Quam voluptate temporibus laborum aut culpa quos. Debitis in dolorem et rem.', 'https://lorempixel.com/640/480/?12925', 1, 5, '0q8hhyhBMG', '2019-08-29 01:20:39', '2019-08-29 01:20:39', 2, NULL, NULL, NULL, NULL),
(246, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 498131, 'male', 'a+', 'Bangladeshi', '845-281-9640', '7698 Roob Mountains\nGregoriaview, NE 13819-2994', 'At hic non amet. Ad architecto qui quos et ducimus maiores. Quo officia ut voluptatum quia laboriosam facere.', 'https://lorempixel.com/640/480/?91478', 1, 9, 'xsp3wn7Ht8', '2019-08-29 01:20:39', '2019-08-29 01:20:39', 7, NULL, NULL, NULL, NULL),
(247, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 1188761, 'male', 'ab', 'Bangladeshi', '(821) 390-9564 x417', '82691 Aurelie Pass Suite 572\nDooleyland, OK 23695-8733', 'Ut ab exercitationem omnis vero vel illo. Molestiae mollitia inventore deserunt qui nam. Ut incidunt rerum id excepturi.', 'https://lorempixel.com/640/480/?68419', 1, 16, 'bSqX5koQsJ', '2019-08-29 01:20:39', '2019-08-29 01:20:39', 9, NULL, NULL, NULL, NULL),
(248, 'Mrs. <NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 8551813, 'male', 'ab', 'Bangladeshi', '378.253.9104', '34181 Streich Mountains\nManuelaberg, NV 91603', 'Eos non est corrupti vero repellendus aspernatur. Et molestiae sit magnam autem dolor. Qui consectetur iusto consequatur ipsa omnis.', 'https://lorempixel.com/640/480/?45739', 1, 12, 'r63coLlL0b', '2019-08-29 01:20:39', '2019-08-29 01:20:39', 1, NULL, NULL, NULL, NULL),
(249, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 7328812, 'female', 'b+', 'Bangladeshi', '+1-497-666-1943', '915 Blanca Drives Suite 562\nWest Raegan, UT 84879-8071', 'Veritatis magnam dolor optio et quaerat et. Sequi reiciendis ut iusto rerum. Quaerat quos eveniet ut rem.', 'https://lorempixel.com/640/480/?52292', 1, 6, 'FF6U4f4XBL', '2019-08-29 01:20:39', '2019-08-29 01:20:39', 1, NULL, NULL, NULL, NULL),
(250, '<NAME> PhD', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 4008620, 'male', 'b+', 'Bangladeshi', '+1 (494) 975-7993', '810 Legros Isle Apt. 336\nDarronhaven, DE 71832', 'Nisi provident eum voluptas rerum laborum qui hic labore. Facere in a assumenda ex eos expedita saepe. Sit qui maxime voluptatem.', 'https://lorempixel.com/640/480/?63975', 1, 18, 'qKXGawcjXc', '2019-08-29 01:20:39', '2019-08-29 01:20:39', 10, NULL, NULL, NULL, NULL),
(251, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 950217, 'male', 'o+', 'Bangladeshi', '(743) 918-2958', '81994 Shad Plains\nBergeshire, VA 29540-1393', 'Iste porro animi cumque dolorum at libero. Velit enim alias veritatis culpa ut magni pariatur voluptatem. Tempore saepe et enim rerum mollitia qui praesentium.', 'https://lorempixel.com/640/480/?93997', 1, 18, 'bts1S35IEr', '2019-08-29 01:20:39', '2019-08-29 01:20:39', 2, NULL, NULL, NULL, NULL),
(252, '<NAME> Sr.', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 2318834, 'male', 'o+', 'Bangladeshi', '241.633.5266', '2685 Hickle Pine\nSchulistmouth, LA 73316-2991', 'Quasi accusantium rerum libero sed. Cupiditate consectetur ipsum perferendis odio ipsam nesciunt ipsam saepe. Enim libero hic veniam quibusdam et accusamus.', 'https://lorempixel.com/640/480/?54594', 1, 1, 'Z2vuT4sp97', '2019-08-29 01:20:39', '2019-08-29 01:20:39', 6, NULL, NULL, NULL, NULL),
(253, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 939926, 'female', 'a+', 'Bangladeshi', '509-307-9318', '99953 Adams Isle Apt. 745\nEmmaburgh, CO 17554', 'Dignissimos ut qui provident. Autem laborum voluptas nostrum dicta quas. Qui et ipsum praesentium exercitationem.', 'https://lorempixel.com/640/480/?40898', 1, 1, 'BLUvHQwILz', '2019-08-29 01:20:39', '2019-08-29 01:20:39', 5, NULL, NULL, NULL, NULL),
(254, 'Mr. <NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 5788363, 'female', 'o+', 'Bangladeshi', '502.390.3039', '9236 Corkery Crossroad Suite 487\nSouth Zulatown, CO 21597-9347', 'Sed et maxime ullam architecto vitae quae. Vel dolorum accusantium quia exercitationem. Occaecati et rerum soluta odio ex.', 'https://lorempixel.com/640/480/?34903', 1, 13, 'sXNezkbrVg', '2019-08-29 01:20:39', '2019-08-29 01:20:39', 5, NULL, NULL, NULL, NULL),
(255, '<NAME>', '<EMAIL>', <PASSWORD>', 'student', 1, 1, 19945377, 1021400, 'male', 'b+', 'Bangladeshi', '(924) 959-3384 x2529', '4659 Kamryn Brook\nAbbottview, TN 78897', 'Ullam dolor ut illum. Molestias vitae veniam eum ratione aut non. Aliquam et quibusdam et voluptatum molestias tenetur assumenda.', 'https://lorempixel.com/640/480/?30390', 1, 13, 'suvsoyRlP6', '2019-08-29 01:20:39', '2019-08-29 01:20:39', 8, NULL, NULL, NULL, NULL),
(256, 'Dr. <NAME>', '<EMAIL>', <PASSWORD>', 'student', 1, 1, 19945377, 6300616, 'female', 'o+', 'Bangladeshi', '939.535.6927 x923', '32123 Mattie Extension\nNorth Glenda, SC 10351-9509', 'Aut aut hic fuga perferendis. Minima ad doloribus dicta velit illo alias. Eius aliquam soluta ad sapiente fuga illum.', 'https://lorempixel.com/640/480/?92645', 1, 9, 'luiHbm4oSt', '2019-08-29 01:20:39', '2019-08-29 01:20:39', 7, NULL, NULL, NULL, NULL),
(257, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 6443171, 'female', 'a+', 'Bangladeshi', '1-653-940-6979', '614 Walter Skyway\nWest Heath, WA 83701-9510', 'Aspernatur soluta omnis est sunt et. Doloribus quibusdam quaerat doloribus sit. Sequi soluta est quisquam qui.', 'https://lorempixel.com/640/480/?68961', 1, 20, 'SY5OLgbKNb', '2019-08-29 01:20:39', '2019-08-29 01:20:39', 5, NULL, NULL, NULL, NULL),
(258, 'Dr. <NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 9866664, 'female', 'a+', 'Bangladeshi', '(876) 489-0264 x97400', '3011 Block Port Suite 164\nPort Mavis, PA 31465-1482', 'Rem doloremque consectetur aut est vel. Dolorem quibusdam aut minima ratione aut ad aut. Blanditiis cupiditate tenetur eum voluptate animi.', 'https://lorempixel.com/640/480/?40570', 1, 6, '5eI6Y1GsZs', '2019-08-29 01:20:39', '2019-08-29 01:20:39', 9, NULL, NULL, NULL, NULL),
(259, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 1510560, 'male', 'b+', 'Bangladeshi', '(747) 586-1597', '703 Cassin Turnpike\nWunschton, VT 59452', 'Maxime maiores omnis et perspiciatis sint non. Consectetur illo est sunt dolorem vero. Doloribus assumenda omnis ut et similique natus aspernatur.', 'https://lorempixel.com/640/480/?41289', 1, 15, 'jWWFAaGknw', '2019-08-29 01:20:39', '2019-08-29 01:20:39', 8, NULL, NULL, NULL, NULL),
(260, 'Dr. <NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 78533, 'female', 'ab', 'Bangladeshi', '+1-684-320-2518', '22617 Margaretta Junction Suite 161\nNorth Treva, AZ 53000-1737', 'Dolor ut ratione vel. Qui dicta aspernatur qui. Magni aut sint a.', 'https://lorempixel.com/640/480/?94286', 1, 3, 'rmn88nifvV', '2019-08-29 01:20:39', '2019-08-29 01:20:39', 9, NULL, NULL, NULL, NULL),
(261, '<NAME>', '<EMAIL>', '$2y$10$HnUsUeGC5XnM21MPhL4IJOOESUbj0tPaCM3fOiZpCfGEp7.aVtO46', 'student', 1, 1, 19945377, 2423341, 'male', 'b+', 'Bangladeshi', '623-576-3095', '8975 Gusikowski View Suite 348\nBorerstad, WY 38698', 'Nobis id qui ullam repellendus officiis tempora. Accusantium dolorum eveniet dolorem sit explicabo. Maiores ut sint porro et molestiae voluptatem dignissimos.', 'https://lorempixel.com/640/480/?47597', 1, 2, 'QxD7SxziaO', '2019-08-29 01:20:39', '2019-08-29 01:20:39', 7, NULL, NULL, NULL, NULL);
--
-- Indexes for dumped tables
--
--
-- Indexes for table `accounts`
--
ALTER TABLE `accounts`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `account_sectors`
--
ALTER TABLE `account_sectors`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `attendances`
--
ALTER TABLE `attendances`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `books`
--
ALTER TABLE `books`
ADD PRIMARY KEY (`id`),
ADD UNIQUE KEY `books_book_code_unique` (`book_code`);
--
-- Indexes for table `classes`
--
ALTER TABLE `classes`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `courses`
--
ALTER TABLE `courses`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `departments`
--
ALTER TABLE `departments`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `events`
--
ALTER TABLE `events`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `exams`
--
ALTER TABLE `exams`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `exam_for_classes`
--
ALTER TABLE `exam_for_classes`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `faqs`
--
ALTER TABLE `faqs`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `feedbacks`
--
ALTER TABLE `feedbacks`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `fees`
--
ALTER TABLE `fees`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `forms`
--
ALTER TABLE `forms`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `grades`
--
ALTER TABLE `grades`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `grade_systems`
--
ALTER TABLE `grade_systems`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `homeworks`
--
ALTER TABLE `homeworks`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `issued_books`
--
ALTER TABLE `issued_books`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `messages`
--
ALTER TABLE `messages`
ADD PRIMARY KEY (`id`),
ADD UNIQUE KEY `messages_email_unique` (`email`);
--
-- Indexes for table `migrations`
--
ALTER TABLE `migrations`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `notices`
--
ALTER TABLE `notices`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `notifications`
--
ALTER TABLE `notifications`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `oauth_access_tokens`
--
ALTER TABLE `oauth_access_tokens`
ADD PRIMARY KEY (`id`),
ADD KEY `oauth_access_tokens_user_id_index` (`user_id`);
--
-- Indexes for table `oauth_auth_codes`
--
ALTER TABLE `oauth_auth_codes`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `oauth_clients`
--
ALTER TABLE `oauth_clients`
ADD PRIMARY KEY (`id`),
ADD KEY `oauth_clients_user_id_index` (`user_id`);
--
-- Indexes for table `oauth_personal_access_clients`
--
ALTER TABLE `oauth_personal_access_clients`
ADD PRIMARY KEY (`id`),
ADD KEY `oauth_personal_access_clients_client_id_index` (`client_id`);
--
-- Indexes for table `oauth_refresh_tokens`
--
ALTER TABLE `oauth_refresh_tokens`
ADD PRIMARY KEY (`id`),
ADD KEY `oauth_refresh_tokens_access_token_id_index` (`access_token_id`);
--
-- Indexes for table `password_resets`
--
ALTER TABLE `password_resets`
ADD KEY `password_resets_email_index` (`email`);
--
-- Indexes for table `payments`
--
ALTER TABLE `payments`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `routines`
--
ALTER TABLE `routines`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `schools`
--
ALTER TABLE `schools`
ADD PRIMARY KEY (`id`),
ADD UNIQUE KEY `schools_code_unique` (`code`);
--
-- Indexes for table `sections`
--
ALTER TABLE `sections`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `student_board_exams`
--
ALTER TABLE `student_board_exams`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `student_infos`
--
ALTER TABLE `student_infos`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `subscriptions`
--
ALTER TABLE `subscriptions`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `syllabuses`
--
ALTER TABLE `syllabuses`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `users`
--
ALTER TABLE `users`
ADD PRIMARY KEY (`id`),
ADD UNIQUE KEY `users_email_unique` (`email`),
ADD UNIQUE KEY `users_student_code_unique` (`student_code`),
ADD UNIQUE KEY `users_phone_number_unique` (`phone_number`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `accounts`
--
ALTER TABLE `accounts`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=51;
--
-- AUTO_INCREMENT for table `account_sectors`
--
ALTER TABLE `account_sectors`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=51;
--
-- AUTO_INCREMENT for table `attendances`
--
ALTER TABLE `attendances`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=51;
--
-- AUTO_INCREMENT for table `books`
--
ALTER TABLE `books`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=51;
--
-- AUTO_INCREMENT for table `classes`
--
ALTER TABLE `classes`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=14;
--
-- AUTO_INCREMENT for table `courses`
--
ALTER TABLE `courses`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=51;
--
-- AUTO_INCREMENT for table `departments`
--
ALTER TABLE `departments`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=11;
--
-- AUTO_INCREMENT for table `events`
--
ALTER TABLE `events`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=51;
--
-- AUTO_INCREMENT for table `exams`
--
ALTER TABLE `exams`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=11;
--
-- AUTO_INCREMENT for table `exam_for_classes`
--
ALTER TABLE `exam_for_classes`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=31;
--
-- AUTO_INCREMENT for table `faqs`
--
ALTER TABLE `faqs`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=51;
--
-- AUTO_INCREMENT for table `feedbacks`
--
ALTER TABLE `feedbacks`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=51;
--
-- AUTO_INCREMENT for table `fees`
--
ALTER TABLE `fees`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=51;
--
-- AUTO_INCREMENT for table `forms`
--
ALTER TABLE `forms`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=51;
--
-- AUTO_INCREMENT for table `grades`
--
ALTER TABLE `grades`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=58;
--
-- AUTO_INCREMENT for table `grade_systems`
--
ALTER TABLE `grade_systems`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;
--
-- AUTO_INCREMENT for table `homeworks`
--
ALTER TABLE `homeworks`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=51;
--
-- AUTO_INCREMENT for table `issued_books`
--
ALTER TABLE `issued_books`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6;
--
-- AUTO_INCREMENT for table `messages`
--
ALTER TABLE `messages`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=51;
--
-- AUTO_INCREMENT for table `migrations`
--
ALTER TABLE `migrations`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=43;
--
-- AUTO_INCREMENT for table `notices`
--
ALTER TABLE `notices`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=51;
--
-- AUTO_INCREMENT for table `notifications`
--
ALTER TABLE `notifications`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=51;
--
-- AUTO_INCREMENT for table `oauth_clients`
--
ALTER TABLE `oauth_clients`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `oauth_personal_access_clients`
--
ALTER TABLE `oauth_personal_access_clients`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `payments`
--
ALTER TABLE `payments`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `routines`
--
ALTER TABLE `routines`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=51;
--
-- AUTO_INCREMENT for table `schools`
--
ALTER TABLE `schools`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=52;
--
-- AUTO_INCREMENT for table `sections`
--
ALTER TABLE `sections`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=21;
--
-- AUTO_INCREMENT for table `student_board_exams`
--
ALTER TABLE `student_board_exams`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=201;
--
-- AUTO_INCREMENT for table `student_infos`
--
ALTER TABLE `student_infos`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=101;
--
-- AUTO_INCREMENT for table `subscriptions`
--
ALTER TABLE `subscriptions`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `syllabuses`
--
ALTER TABLE `syllabuses`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=51;
--
-- AUTO_INCREMENT for table `users`
--
ALTER TABLE `users`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=262;
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>Stoyan-Iliev/MS-SQL
SELECT TOP 5
e.EmployeeID,
e.FirstName,
e.Salary,
d.[Name] AS DepartmentName
FROM Employees e
JOIN Departments d ON e.DepartmentID = d.DepartmentID
WHERE e.Salary > 15000
ORDER BY d.DepartmentID ASC |
<reponame>atulnaik-github/mobile-shopee
-- phpMyAdmin SQL Dump
-- version 4.8.2
-- https://www.phpmyadmin.net/
--
-- Host: 127.0.0.1
-- Generation Time: Jun 28, 2021 at 07:03 PM
-- Server version: 10.1.34-MariaDB
-- PHP Version: 7.2.8
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: `msm`
--
-- --------------------------------------------------------
--
-- Table structure for table `tbl_brands`
--
CREATE TABLE `tbl_brands` (
`brand_id` int(11) NOT NULL,
`brand_name` varchar(255) NOT NULL,
`date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`brand_image` varchar(255) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `tbl_brands`
--
INSERT INTO `tbl_brands` (`brand_id`, `brand_name`, `date`, `brand_image`) VALUES
(1, 'samsung', '0000-00-00 00:00:00', ''),
(2, 'SONY', '0000-00-00 00:00:00', ''),
(3, 'samsung', '0000-00-00 00:00:00', ''),
(4, 'SONY', '0000-00-00 00:00:00', ''),
(5, 'samsung', '0000-00-00 00:00:00', ''),
(6, 'karban', '0000-00-00 00:00:00', ''),
(7, 'samsung', '0000-00-00 00:00:00', ''),
(8, 'SONY', '0000-00-00 00:00:00', ''),
(9, 'samsung', '0000-00-00 00:00:00', ''),
(10, 'samsung', '0000-00-00 00:00:00', ''),
(11, 'name', '0000-00-00 00:00:00', ''),
(12, 'test', '0000-00-00 00:00:00', ''),
(13, 'tests', '0000-00-00 00:00:00', ''),
(14, 'apple', '0000-00-00 00:00:00', ''),
(15, 'Nokiya', '0000-00-00 00:00:00', ''),
(16, 'Apple', '0000-00-00 00:00:00', ''),
(17, 'Sony', '2021-06-14 11:10:05', ''),
(18, 'oppo', '2021-06-14 11:11:54', ''),
(19, 'oppo', '2021-06-14 16:32:36', ''),
(20, 'Micromax', '2021-06-14 16:31:31', ''),
(21, '', '2021-06-14 16:50:12', ''),
(22, '', '2021-06-14 16:50:33', ''),
(23, 'Brand', '2021-06-14 17:40:09', '');
-- --------------------------------------------------------
--
-- Table structure for table `tbl_product`
--
CREATE TABLE `tbl_product` (
`product_id` int(11) NOT NULL,
`brand_name` varchar(255) NOT NULL,
`date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`prod_name` varchar(255) NOT NULL,
`ram` varchar(50) NOT NULL,
`inte_stor` varchar(100) NOT NULL,
`bat_cap` varchar(70) NOT NULL,
`oper_syst` varchar(200) NOT NULL,
`net_typ` varchar(50) NOT NULL,
`scr_size` varchar(100) NOT NULL,
`prim_cam` varchar(50) NOT NULL,
`seco_cam` varchar(50) NOT NULL,
`mrp` int(100) NOT NULL,
`product_brand_id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `tbl_product`
--
INSERT INTO `tbl_product` (`product_id`, `brand_name`, `date`, `prod_name`, `ram`, `inte_stor`, `bat_cap`, `oper_syst`, `net_typ`, `scr_size`, `prim_cam`, `seco_cam`, `mrp`, `product_brand_id`) VALUES
(2, 'samsang', '2021-06-14 11:33:03', 'Galaxy j7 nxt', '2GB', '16 GB', '3000', 'Android 10', 'voLTE', '13.97 cm', '8 MP', '5 MP', 11000, 1),
(3, 'Sony', '2021-06-14 11:33:03', 'Xperia 1 III', '12', '256', '4500', 'Android 11', '4 G', '6.5', '12 ', '8 ', 64999, 1),
(4, 'Nokia', '2021-06-14 11:33:03', 'Nokia 3.4', '4', '64', '4000', 'Android 10.0', 'LTE', '6.39\'', '12', '8', 10999, 0),
(8, 'Apple', '2021-06-14 17:08:39', '12', '8', '64', '5000', 'ios', 'LTE', '16.6', '24', '12', 47000, 0);
-- --------------------------------------------------------
--
-- Table structure for table `tbl_purchase`
--
CREATE TABLE `tbl_purchase` (
`purchase_id` int(11) NOT NULL,
`supplier_name` varchar(255) NOT NULL,
`brand_name` varchar(255) NOT NULL,
`date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`quantity` varchar(200) NOT NULL,
`amount` varchar(150) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `tbl_purchase`
--
INSERT INTO `tbl_purchase` (`purchase_id`, `supplier_name`, `brand_name`, `date`, `quantity`, `amount`) VALUES
(1, '<NAME>', 'samsang', '2021-06-14 15:08:46', '2', '25000'),
(2, '<NAME>', 'Sony', '2021-06-14 15:09:54', '3', '50000'),
(3, '<NAME>', 'Samsang', '2021-06-14 17:31:00', '1', '20000');
-- --------------------------------------------------------
--
-- Table structure for table `tbl_repair`
--
CREATE TABLE `tbl_repair` (
`repair_id` int(11) NOT NULL,
`cust_name` varchar(255) NOT NULL,
`date` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
`address` varchar(255) NOT NULL,
`mob_no` int(11) NOT NULL,
`brand_name` varchar(255) NOT NULL,
`model` varchar(255) NOT NULL,
`imei` varchar(255) NOT NULL,
`fault_desc` varchar(255) NOT NULL,
`amount` varchar(255) NOT NULL,
`status` enum('1','2','3') NOT NULL DEFAULT '1' COMMENT '1=pending,2=in progress,3=complete',
`date_comp` date NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `tbl_repair`
--
INSERT INTO `tbl_repair` (`repair_id`, `cust_name`, `date`, `address`, `mob_no`, `brand_name`, `model`, `imei`, `fault_desc`, `amount`, `status`, `date_comp`) VALUES
(1, '<NAME>', '2021-05-21 00:00:00', 'pune', 2147483647, 'Samsang', 'galaxy j3', '1876897879234567', 'display', '4000', '1', '0000-00-00'),
(2, '<NAME>', '2021-06-01 00:00:00', 'chakan', 2147483647, 'Sony', 'xperia e4', '1879589654747856', 'Battery ', '3000', '1', '0000-00-00'),
(3, '<NAME>ohite', '2021-06-14 21:12:00', 'Satara', 2147483647, 'Apple', '1245789856324567', '14523678965412314', 'Charging Socket', '2000', '1', '0000-00-00');
-- --------------------------------------------------------
--
-- Table structure for table `tbl_sale`
--
CREATE TABLE `tbl_sale` (
`sale_id` int(11) NOT NULL,
`cust_name` varchar(255) NOT NULL,
`date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`mob_no` int(11) NOT NULL,
`brand_name` varchar(255) NOT NULL,
`ram` varchar(50) NOT NULL,
`inte_stor` varchar(255) NOT NULL,
`bat_cap` varchar(255) NOT NULL,
`que` varchar(255) NOT NULL,
`price` varchar(150) NOT NULL,
`pur_price` varchar(150) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `tbl_sale`
--
INSERT INTO `tbl_sale` (`sale_id`, `cust_name`, `date`, `mob_no`, `brand_name`, `ram`, `inte_stor`, `bat_cap`, `que`, `price`, `pur_price`) VALUES
(1, '<NAME>', '2021-06-14 11:36:21', 2147483647, 'Samsang', '4', '12', '64', '1', '11000', '11000'),
(2, '<NAME>', '2021-06-14 11:36:21', 2147483647, 'Nokia', '6', '32', '4000', '1', '20000', '20000'),
(3, '<NAME>', '2021-06-11 18:30:00', 2147483647, 'Sony', '4', '32', '3500', '1', '19000', '19000');
-- --------------------------------------------------------
--
-- Table structure for table `tbl_staff`
--
CREATE TABLE `tbl_staff` (
`staff_id` int(11) NOT NULL,
`staff_name` varchar(255) NOT NULL,
`user_name` varchar(255) NOT NULL,
`password` varchar(255) NOT NULL,
`staff_add` varchar(255) NOT NULL,
`date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`mob_no` int(50) NOT NULL,
`email` varchar(255) NOT NULL,
`file_up` bigint(255) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `tbl_staff`
--
INSERT INTO `tbl_staff` (`staff_id`, `staff_name`, `user_name`, `password`, `staff_add`, `date`, `mob_no`, `email`, `file_up`) VALUES
(1, '<NAME>', 'Pooja', '123', 'karad', '2021-06-14 11:37:36', 2147483647, '<EMAIL>', 0),
(2, '<NAME>', 'Rutu', '123', 'pune', '2021-06-14 11:37:36', 2147483647, '<EMAIL>', 0),
(3, '<NAME>', 'varad', '123', 'katraj', '2021-06-14 11:37:36', 2147483647, '<EMAIL>', 0),
(4, '<NAME>', 'kiran', '123', 'narhe', '2021-06-14 17:16:36', 2147483647, '<EMAIL>', 0);
-- --------------------------------------------------------
--
-- Table structure for table `tbl_supplier`
--
CREATE TABLE `tbl_supplier` (
`supplier_id` int(11) NOT NULL,
`supplier_name` varchar(255) NOT NULL,
`supplier_add` varchar(255) NOT NULL,
`date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`supplier_email` varchar(150) NOT NULL,
`mob_no` int(50) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `tbl_supplier`
--
INSERT INTO `tbl_supplier` (`supplier_id`, `supplier_name`, `supplier_add`, `date`, `supplier_email`, `mob_no`) VALUES
(1, '<NAME>', 'Swarget', '2021-06-14 12:32:02', '<EMAIL>', 2147483647),
(2, 'ddsff', 'jhdhjd', '2021-06-14 12:34:32', 'fhjdj', 658989),
(3, '<NAME>', 'Chakan', '2021-06-14 17:25:50', '<EMAIL>', 2147483647);
--
-- Indexes for dumped tables
--
--
-- Indexes for table `tbl_brands`
--
ALTER TABLE `tbl_brands`
ADD PRIMARY KEY (`brand_id`);
--
-- Indexes for table `tbl_product`
--
ALTER TABLE `tbl_product`
ADD PRIMARY KEY (`product_id`);
--
-- Indexes for table `tbl_purchase`
--
ALTER TABLE `tbl_purchase`
ADD PRIMARY KEY (`purchase_id`);
--
-- Indexes for table `tbl_repair`
--
ALTER TABLE `tbl_repair`
ADD PRIMARY KEY (`repair_id`);
--
-- Indexes for table `tbl_sale`
--
ALTER TABLE `tbl_sale`
ADD PRIMARY KEY (`sale_id`);
--
-- Indexes for table `tbl_staff`
--
ALTER TABLE `tbl_staff`
ADD PRIMARY KEY (`staff_id`);
--
-- Indexes for table `tbl_supplier`
--
ALTER TABLE `tbl_supplier`
ADD PRIMARY KEY (`supplier_id`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `tbl_brands`
--
ALTER TABLE `tbl_brands`
MODIFY `brand_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=24;
--
-- AUTO_INCREMENT for table `tbl_product`
--
ALTER TABLE `tbl_product`
MODIFY `product_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9;
--
-- AUTO_INCREMENT for table `tbl_purchase`
--
ALTER TABLE `tbl_purchase`
MODIFY `purchase_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;
--
-- AUTO_INCREMENT for table `tbl_repair`
--
ALTER TABLE `tbl_repair`
MODIFY `repair_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;
--
-- AUTO_INCREMENT for table `tbl_sale`
--
ALTER TABLE `tbl_sale`
MODIFY `sale_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;
--
-- AUTO_INCREMENT for table `tbl_staff`
--
ALTER TABLE `tbl_staff`
MODIFY `staff_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;
--
-- AUTO_INCREMENT for table `tbl_supplier`
--
ALTER TABLE `tbl_supplier`
MODIFY `supplier_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;
COMMIT;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
DELIMITER //
CREATE OR REPLACE PROCEDURE update_user (
IN userID_in INT,
IN privilegeID_in INT,
IN userType_in VARCHAR(32),
IN firstName_in VARCHAR(32),
IN lastName_in VARCHAR(32),
IN email_in VARCHAR(128)
)
BEGIN
UPDATE users
SET privilegesID = privilegeID_in, userType = userType_in, firstName = firstName_in, lastName = lastName_in, email = email_in
WHERE userID = userID_in;
END
//
DELIMITER ; |
-- phpMyAdmin SQL Dump
-- version 4.8.3
-- https://www.phpmyadmin.net/
--
-- Host: 127.0.0.1
-- Waktu pembuatan: 09 Des 2019 pada 11.52
-- Versi server: 10.1.36-MariaDB
-- Versi PHP: 7.2.11
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET AUTOCOMMIT = 0;
START TRANSACTION;
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
--
-- Database: `indeks-artikel`
--
-- --------------------------------------------------------
--
-- Struktur dari tabel `article_editions`
--
CREATE TABLE `article_editions` (
`id` bigint(20) UNSIGNED NOT NULL,
`user_id` bigint(20) UNSIGNED NOT NULL,
`edition_title_id` bigint(20) UNSIGNED NOT NULL,
`article_title` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`subject` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`writer` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`pages` bigint(20) DEFAULT NULL,
`column` bigint(20) DEFAULT NULL,
`source` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`desc` text COLLATE utf8mb4_unicode_ci,
`keyword` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`detail_img` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`updated_by` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data untuk tabel `article_editions`
--
INSERT INTO `article_editions` (`id`, `user_id`, `edition_title_id`, `article_title`, `subject`, `writer`, `pages`, `column`, `source`, `desc`, `keyword`, `detail_img`, `updated_by`, `created_at`, `updated_at`) VALUES
(32, 1, 83, 'Mentari tenggelam', 'Fiksi', 'Trisna', 1, 1, 'www.trisna.com', NULL, 'matahari', NULL, NULL, '2019-10-11 01:21:13', '2019-10-11 01:21:13'),
(33, 1, 84, 'wwwwwwwwwww', 'aaaaaa', 'aaaaaa', 1, 1, 'aaaaaaa', 'rrrrrrr', 'dbdbd', 'rrrrrr', NULL, '2019-10-30 22:16:23', '2019-10-30 22:16:23'),
(34, 1, 83, 'Berlariiiiiinnnnn', 'aaaaaa', 'aaaaaa', 1, 1, 'aaaaaaa', 'cccccc', 'ccccc', 'cccccc', NULL, '2019-11-01 03:02:28', '2019-11-01 03:02:28'),
(35, 1, 83, 'Berlariiiiiimmmmmm', 'aaaaaa', 'aaaaaa', 1, 1, 'aaaaaaa', 'mmmmmmmm', 'mmmmmmm', 'mmmmmmm', NULL, '2019-11-01 03:19:16', '2019-11-01 03:19:16'),
(36, 1, 83, 'Mentari tenggelam nii', 'Fiksi', 'Trisna', 1, 1, 'www.trisna.com', NULL, 'matahariiiiii', NULL, NULL, '2019-11-01 03:42:54', '2019-11-01 03:42:54'),
(37, 1, 83, 'baruuu', 'Fiksi', 'Trisna', 1, 1, 'www.trisna.com', NULL, 'matahariiiiii', NULL, NULL, '2019-11-01 03:50:29', '2019-11-01 03:50:29');
-- --------------------------------------------------------
--
-- Struktur dari tabel `article_edition_status`
--
CREATE TABLE `article_edition_status` (
`id` bigint(20) UNSIGNED NOT NULL,
`article_edition_id` bigint(20) UNSIGNED NOT NULL,
`status_id` bigint(20) UNSIGNED 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 untuk tabel `article_edition_status`
--
INSERT INTO `article_edition_status` (`id`, `article_edition_id`, `status_id`, `created_at`, `updated_at`) VALUES
(17, 33, 1, NULL, NULL),
(18, 34, 3, NULL, NULL),
(19, 35, 3, NULL, NULL);
-- --------------------------------------------------------
--
-- Struktur dari tabel `edition_titles`
--
CREATE TABLE `edition_titles` (
`id` bigint(20) UNSIGNED NOT NULL,
`user_id` bigint(20) UNSIGNED NOT NULL,
`title_id` bigint(20) UNSIGNED NOT NULL,
`edition_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`edition_year` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`edition_title` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`slugs` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`volume` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`chapter` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`edition_no` int(11) DEFAULT NULL,
`publish_date` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`publish_month` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`publish_year` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`original_date` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`call_number` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`edition_image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`updated_by` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data untuk tabel `edition_titles`
--
INSERT INTO `edition_titles` (`id`, `user_id`, `title_id`, `edition_code`, `edition_year`, `edition_title`, `slugs`, `volume`, `chapter`, `edition_no`, `publish_date`, `publish_month`, `publish_year`, `original_date`, `call_number`, `edition_image`, `updated_by`, `created_at`, `updated_at`) VALUES
(83, 1, 44, '2', '222', NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, '111111111122', NULL, NULL, NULL, '2019-10-11 01:21:13', '2019-10-11 01:21:13'),
(84, 1, 45, '222', '2002', '2', '2', '1', '2', 2, '2', '6', '2002', '11-11-2000', '555', NULL, NULL, '2019-10-30 22:16:23', '2019-10-30 22:16:23');
-- --------------------------------------------------------
--
-- Struktur dari tabel `formats`
--
CREATE TABLE `formats` (
`id` bigint(20) UNSIGNED NOT NULL,
`title` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL,
`user_id` bigint(20) UNSIGNED 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 untuk tabel `formats`
--
INSERT INTO `formats` (`id`, `title`, `user_id`, `created_at`, `updated_at`) VALUES
(1, 'Digital', 1, '2019-08-22 08:09:47', '2019-08-22 08:09:47'),
(2, 'Bentuk Mikro', 1, '2019-08-22 08:09:56', '2019-08-22 08:09:56');
-- --------------------------------------------------------
--
-- Struktur dari tabel `format_title`
--
CREATE TABLE `format_title` (
`id` bigint(20) UNSIGNED NOT NULL,
`format_id` bigint(20) UNSIGNED DEFAULT NULL,
`title_id` bigint(20) UNSIGNED DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data untuk tabel `format_title`
--
INSERT INTO `format_title` (`id`, `format_id`, `title_id`, `created_at`, `updated_at`) VALUES
(27, 1, 44, NULL, NULL),
(28, 2, 45, NULL, NULL);
-- --------------------------------------------------------
--
-- Struktur dari tabel `languages`
--
CREATE TABLE `languages` (
`id` bigint(20) UNSIGNED NOT NULL,
`title` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL,
`user_id` bigint(20) UNSIGNED 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 untuk tabel `languages`
--
INSERT INTO `languages` (`id`, `title`, `user_id`, `created_at`, `updated_at`) VALUES
(1, 'Indonesia', 1, '2019-08-22 08:09:23', '2019-08-22 08:09:23'),
(2, 'English', 1, '2019-08-22 08:09:32', '2019-08-22 08:09:32');
-- --------------------------------------------------------
--
-- Struktur dari tabel `language_title`
--
CREATE TABLE `language_title` (
`id` bigint(20) UNSIGNED NOT NULL,
`title_id` bigint(20) UNSIGNED NOT NULL,
`language_id` bigint(20) UNSIGNED 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 untuk tabel `language_title`
--
INSERT INTO `language_title` (`id`, `title_id`, `language_id`, `created_at`, `updated_at`) VALUES
(11, 44, 1, NULL, NULL),
(12, 45, 1, NULL, NULL);
-- --------------------------------------------------------
--
-- Struktur dari tabel `migrations`
--
CREATE TABLE `migrations` (
`id` int(10) UNSIGNED NOT NULL,
`migration` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`batch` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data untuk tabel `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_12_024542_create_types_table', 1),
(4, '2019_08_12_024843_create_times_table', 1),
(5, '2019_08_12_024905_create_languages_table', 1),
(6, '2019_08_12_024948_create_formats_table', 1),
(7, '2019_08_13_032950_create_statuses_table', 1),
(17, '2019_08_16_035910_create_titles_table', 2),
(18, '2019_08_17_173103_title_type_table', 2),
(20, '2019_08_17_175233_format_title_table', 2),
(21, '2019_08_17_181430_time_title_table', 2),
(22, '2019_08_20_034346_create_edition_titles', 2),
(27, '2019_08_30_074615_create_article_editions_table', 3),
(34, '2019_08_30_083614_create_article_edition_status_table', 6),
(35, '2019_08_17_175148_language_title_table', 7),
(37, '2019_09_13_033453_update_titles_table', 8),
(38, '2019_09_13_084831_update_article_editions_table', 9),
(39, '2019_09_16_005650_update_types_table', 10),
(40, '2019_09_29_104151_update_title_table', 11),
(41, '2019_09_29_214359_update_edition_table', 12),
(42, '2019_10_08_041632_update_edition_table', 13),
(43, '2019_10_25_025304_update_some_tables', 14);
-- --------------------------------------------------------
--
-- Struktur dari tabel `password_resets`
--
CREATE TABLE `password_resets` (
`email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`token` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Struktur dari tabel `statuses`
--
CREATE TABLE `statuses` (
`id` bigint(20) UNSIGNED NOT NULL,
`title` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL,
`user_id` bigint(20) UNSIGNED 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 untuk tabel `statuses`
--
INSERT INTO `statuses` (`id`, `title`, `user_id`, `created_at`, `updated_at`) VALUES
(1, 'Dapat Digunakan', 1, '2019-08-22 08:12:50', '2019-08-22 08:12:50'),
(3, 'Tidak dapat digunakan', 1, '2019-09-11 00:24:54', '2019-09-11 00:24:54');
-- --------------------------------------------------------
--
-- Struktur dari tabel `times`
--
CREATE TABLE `times` (
`id` bigint(20) UNSIGNED NOT NULL,
`title` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL,
`user_id` bigint(20) UNSIGNED 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 untuk tabel `times`
--
INSERT INTO `times` (`id`, `title`, `user_id`, `created_at`, `updated_at`) VALUES
(1, 'Tahunan', 1, '2019-08-22 08:08:37', '2019-08-22 08:08:37'),
(2, 'Bulanan', 1, '2019-08-22 08:08:45', '2019-08-22 08:08:45');
-- --------------------------------------------------------
--
-- Struktur dari tabel `time_title`
--
CREATE TABLE `time_title` (
`id` bigint(20) UNSIGNED NOT NULL,
`title_id` bigint(20) UNSIGNED DEFAULT NULL,
`time_id` bigint(20) UNSIGNED DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data untuk tabel `time_title`
--
INSERT INTO `time_title` (`id`, `title_id`, `time_id`, `created_at`, `updated_at`) VALUES
(21, 44, 1, NULL, NULL),
(22, 45, 1, NULL, NULL);
-- --------------------------------------------------------
--
-- Struktur dari tabel `titles`
--
CREATE TABLE `titles` (
`id` bigint(20) UNSIGNED NOT NULL,
`user_id` bigint(20) UNSIGNED NOT NULL,
`title` text COLLATE utf8mb4_unicode_ci NOT NULL,
`kode` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`slug` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
`city` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`publisher` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`year` int(11) DEFAULT NULL,
`first_year` int(11) DEFAULT NULL,
`featured_img` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`updated_by` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data untuk tabel `titles`
--
INSERT INTO `titles` (`id`, `user_id`, `title`, `kode`, `slug`, `city`, `publisher`, `year`, `first_year`, `featured_img`, `updated_by`, `created_at`, `updated_at`) VALUES
(44, 1, '111111', '2', '111111', NULL, NULL, NULL, NULL, 'Untitled design.jpg.png', '1', '2019-10-11 01:21:13', '2019-10-13 09:18:00'),
(45, 1, 'Waktuuuuuuuuuuuuuuuuu', '9', 'waktuuuuuuuuuuuuuuuuu', 'hjghghj', 'vvhj', 888, 211111, NULL, NULL, '2019-10-30 22:16:23', '2019-10-30 22:16:23');
-- --------------------------------------------------------
--
-- Struktur dari tabel `title_type`
--
CREATE TABLE `title_type` (
`id` bigint(20) UNSIGNED NOT NULL,
`title_id` bigint(20) UNSIGNED NOT NULL,
`type_id` bigint(20) UNSIGNED 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 untuk tabel `title_type`
--
INSERT INTO `title_type` (`id`, `title_id`, `type_id`, `created_at`, `updated_at`) VALUES
(20, 44, 1, NULL, NULL),
(21, 45, 6, NULL, NULL);
-- --------------------------------------------------------
--
-- Struktur dari tabel `types`
--
CREATE TABLE `types` (
`id` bigint(20) UNSIGNED NOT NULL,
`title` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL,
`user_id` bigint(20) UNSIGNED 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 untuk tabel `types`
--
INSERT INTO `types` (`id`, `title`, `user_id`, `created_at`, `updated_at`) VALUES
(1, 'Majalah', 1, '2019-08-22 08:08:11', '2019-10-07 04:08:38'),
(6, 'Surat Kabar', 1, '2019-10-27 18:33:18', '2019-10-27 18:33:18');
-- --------------------------------------------------------
--
-- Struktur dari tabel `users`
--
CREATE TABLE `users` (
`id` bigint(20) UNSIGNED NOT NULL,
`name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`longname` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`email_verified_at` timestamp NULL DEFAULT NULL,
`password` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data untuk tabel `users`
--
INSERT INTO `users` (`id`, `name`, `longname`, `email`, `email_verified_at`, `password`, `remember_token`, `created_at`, `updated_at`) VALUES
(1, 'trisnapspt', '<NAME>', '<EMAIL>', NULL, '$2y$10$XgvP2DF8GzEFMrIsMlv3/.zy8hTVaNjdP2PWHoQW9CJnc4zcnOdm.', 'JgauoCfpD24oMdvhsLMUQiHKli2F1F62s5s5jYjrgKMikkbniuHdDtTLz1U0', '2019-08-22 08:07:50', '2019-08-22 08:07:50'),
(2, 'puti', '<NAME>', '<EMAIL>', NULL, '$2y$10$KUj4LMmxORrXSB7d9/NCp.EbfHd1/hNn0X2p4DRIeFG/zdbTKCpZ.', NULL, '2019-09-05 20:05:50', '2019-09-05 20:05:50');
--
-- Indexes for dumped tables
--
--
-- Indeks untuk tabel `article_editions`
--
ALTER TABLE `article_editions`
ADD PRIMARY KEY (`id`),
ADD KEY `article_editions_user_id_foreign` (`user_id`),
ADD KEY `article_editions_edition_title_id_foreign` (`edition_title_id`);
--
-- Indeks untuk tabel `article_edition_status`
--
ALTER TABLE `article_edition_status`
ADD PRIMARY KEY (`id`),
ADD KEY `article_edition_status_article_edition_id_foreign` (`article_edition_id`),
ADD KEY `article_edition_status_status_id_foreign` (`status_id`);
--
-- Indeks untuk tabel `edition_titles`
--
ALTER TABLE `edition_titles`
ADD PRIMARY KEY (`id`),
ADD UNIQUE KEY `edition_code` (`edition_code`),
ADD KEY `edition_titles_user_id_foreign` (`user_id`),
ADD KEY `edition_titles_title_id_foreign` (`title_id`);
--
-- Indeks untuk tabel `formats`
--
ALTER TABLE `formats`
ADD PRIMARY KEY (`id`),
ADD KEY `formats_user_id_foreign` (`user_id`);
--
-- Indeks untuk tabel `format_title`
--
ALTER TABLE `format_title`
ADD PRIMARY KEY (`id`),
ADD KEY `format_title_title_id_foreign` (`title_id`),
ADD KEY `format_title_format_id_foreign` (`format_id`);
--
-- Indeks untuk tabel `languages`
--
ALTER TABLE `languages`
ADD PRIMARY KEY (`id`),
ADD KEY `languages_user_id_foreign` (`user_id`);
--
-- Indeks untuk tabel `language_title`
--
ALTER TABLE `language_title`
ADD PRIMARY KEY (`id`),
ADD KEY `language_title_title_id_foreign` (`title_id`),
ADD KEY `language_title_language_id_foreign` (`language_id`);
--
-- Indeks untuk tabel `migrations`
--
ALTER TABLE `migrations`
ADD PRIMARY KEY (`id`);
--
-- Indeks untuk tabel `password_resets`
--
ALTER TABLE `password_resets`
ADD KEY `password_resets_email_index` (`email`);
--
-- Indeks untuk tabel `statuses`
--
ALTER TABLE `statuses`
ADD PRIMARY KEY (`id`),
ADD KEY `statuses_user_id_foreign` (`user_id`);
--
-- Indeks untuk tabel `times`
--
ALTER TABLE `times`
ADD PRIMARY KEY (`id`),
ADD KEY `times_user_id_foreign` (`user_id`);
--
-- Indeks untuk tabel `time_title`
--
ALTER TABLE `time_title`
ADD PRIMARY KEY (`id`),
ADD KEY `time_title_title_id_foreign` (`title_id`),
ADD KEY `time_title_time_id_foreign` (`time_id`);
--
-- Indeks untuk tabel `titles`
--
ALTER TABLE `titles`
ADD PRIMARY KEY (`id`),
ADD UNIQUE KEY `kode` (`kode`),
ADD KEY `titles_user_id_foreign` (`user_id`);
--
-- Indeks untuk tabel `title_type`
--
ALTER TABLE `title_type`
ADD PRIMARY KEY (`id`),
ADD KEY `title_type_title_id_foreign` (`title_id`),
ADD KEY `title_type_type_id_foreign` (`type_id`);
--
-- Indeks untuk tabel `types`
--
ALTER TABLE `types`
ADD PRIMARY KEY (`id`),
ADD KEY `types_user_id_foreign` (`user_id`);
--
-- Indeks untuk tabel `users`
--
ALTER TABLE `users`
ADD PRIMARY KEY (`id`),
ADD UNIQUE KEY `users_email_unique` (`email`);
--
-- AUTO_INCREMENT untuk tabel yang dibuang
--
--
-- AUTO_INCREMENT untuk tabel `article_editions`
--
ALTER TABLE `article_editions`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=38;
--
-- AUTO_INCREMENT untuk tabel `article_edition_status`
--
ALTER TABLE `article_edition_status`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=20;
--
-- AUTO_INCREMENT untuk tabel `edition_titles`
--
ALTER TABLE `edition_titles`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=85;
--
-- AUTO_INCREMENT untuk tabel `formats`
--
ALTER TABLE `formats`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;
--
-- AUTO_INCREMENT untuk tabel `format_title`
--
ALTER TABLE `format_title`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=29;
--
-- AUTO_INCREMENT untuk tabel `languages`
--
ALTER TABLE `languages`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;
--
-- AUTO_INCREMENT untuk tabel `language_title`
--
ALTER TABLE `language_title`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=13;
--
-- AUTO_INCREMENT untuk tabel `migrations`
--
ALTER TABLE `migrations`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=44;
--
-- AUTO_INCREMENT untuk tabel `statuses`
--
ALTER TABLE `statuses`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;
--
-- AUTO_INCREMENT untuk tabel `times`
--
ALTER TABLE `times`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;
--
-- AUTO_INCREMENT untuk tabel `time_title`
--
ALTER TABLE `time_title`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=23;
--
-- AUTO_INCREMENT untuk tabel `titles`
--
ALTER TABLE `titles`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=46;
--
-- AUTO_INCREMENT untuk tabel `title_type`
--
ALTER TABLE `title_type`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=22;
--
-- AUTO_INCREMENT untuk tabel `types`
--
ALTER TABLE `types`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7;
--
-- AUTO_INCREMENT untuk tabel `users`
--
ALTER TABLE `users`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;
--
-- Ketidakleluasaan untuk tabel pelimpahan (Dumped Tables)
--
--
-- Ketidakleluasaan untuk tabel `article_editions`
--
ALTER TABLE `article_editions`
ADD CONSTRAINT `article_editions_edition_title_id_foreign` FOREIGN KEY (`edition_title_id`) REFERENCES `edition_titles` (`id`),
ADD CONSTRAINT `article_editions_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE;
--
-- Ketidakleluasaan untuk tabel `article_edition_status`
--
ALTER TABLE `article_edition_status`
ADD CONSTRAINT `article_edition_status_article_edition_id_foreign` FOREIGN KEY (`article_edition_id`) REFERENCES `article_editions` (`id`) ON DELETE CASCADE,
ADD CONSTRAINT `article_edition_status_status_id_foreign` FOREIGN KEY (`status_id`) REFERENCES `statuses` (`id`);
--
-- Ketidakleluasaan untuk tabel `edition_titles`
--
ALTER TABLE `edition_titles`
ADD CONSTRAINT `edition_titles_title_id_foreign` FOREIGN KEY (`title_id`) REFERENCES `titles` (`id`),
ADD CONSTRAINT `edition_titles_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE;
--
-- Ketidakleluasaan untuk tabel `formats`
--
ALTER TABLE `formats`
ADD CONSTRAINT `formats_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE;
--
-- Ketidakleluasaan untuk tabel `format_title`
--
ALTER TABLE `format_title`
ADD CONSTRAINT `format_title_format_id_foreign` FOREIGN KEY (`format_id`) REFERENCES `formats` (`id`),
ADD CONSTRAINT `format_title_title_id_foreign` FOREIGN KEY (`title_id`) REFERENCES `titles` (`id`) ON DELETE CASCADE;
--
-- Ketidakleluasaan untuk tabel `languages`
--
ALTER TABLE `languages`
ADD CONSTRAINT `languages_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE;
--
-- Ketidakleluasaan untuk tabel `language_title`
--
ALTER TABLE `language_title`
ADD CONSTRAINT `language_title_language_id_foreign` FOREIGN KEY (`language_id`) REFERENCES `languages` (`id`),
ADD CONSTRAINT `language_title_title_id_foreign` FOREIGN KEY (`title_id`) REFERENCES `titles` (`id`) ON DELETE CASCADE;
--
-- Ketidakleluasaan untuk tabel `statuses`
--
ALTER TABLE `statuses`
ADD CONSTRAINT `statuses_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE;
--
-- Ketidakleluasaan untuk tabel `times`
--
ALTER TABLE `times`
ADD CONSTRAINT `times_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE;
--
-- Ketidakleluasaan untuk tabel `time_title`
--
ALTER TABLE `time_title`
ADD CONSTRAINT `time_title_time_id_foreign` FOREIGN KEY (`time_id`) REFERENCES `times` (`id`),
ADD CONSTRAINT `time_title_title_id_foreign` FOREIGN KEY (`title_id`) REFERENCES `titles` (`id`) ON DELETE CASCADE;
--
-- Ketidakleluasaan untuk tabel `titles`
--
ALTER TABLE `titles`
ADD CONSTRAINT `titles_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE;
--
-- Ketidakleluasaan untuk tabel `title_type`
--
ALTER TABLE `title_type`
ADD CONSTRAINT `title_type_title_id_foreign` FOREIGN KEY (`title_id`) REFERENCES `titles` (`id`) ON DELETE CASCADE,
ADD CONSTRAINT `title_type_type_id_foreign` FOREIGN KEY (`type_id`) REFERENCES `types` (`id`);
--
-- Ketidakleluasaan untuk tabel `types`
--
ALTER TABLE `types`
ADD CONSTRAINT `types_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE;
COMMIT;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
DELETE FROM `sys_entry` WHERE `code` = 'krap';
|
<filename>db/pathology2.sql
-- phpMyAdmin SQL Dump
-- version 4.5.4.1deb2ubuntu2
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: Jan 30, 2018 at 02:56 PM
-- Server version: 5.7.21-0ubuntu0.16.04.1
-- PHP Version: 7.0.22-0ubuntu0.16.04.1
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
--
-- Database: `pathology2`
--
-- --------------------------------------------------------
--
-- Table structure for table `accounts`
--
CREATE TABLE `accounts` (
`id` int(11) NOT NULL,
`patient_name` varchar(255) NOT NULL,
`test_name` varchar(255) NOT NULL,
`lab_id` int(11) NOT NULL,
`amount` float NOT NULL,
`due` float NOT NULL,
`date` date NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `accounts`
--
INSERT INTO `accounts` (`id`, `patient_name`, `test_name`, `lab_id`, `amount`, `due`, `date`) VALUES
(1, 'Hitesh', 'Lipid Profile', 1, 100, 20, '2018-01-17'),
(2, 'XYZ', 'Lipid Profile', 2, 500, 250, '2017-10-11'),
(3, 'abv', 't2', 1, 500, 200, '2018-01-21');
-- --------------------------------------------------------
--
-- Table structure for table `labs`
--
CREATE TABLE `labs` (
`id` int(11) NOT NULL,
`lab_name` varchar(255) NOT NULL,
`lab_add` text NOT NULL,
`lab_phone` varchar(255) NOT NULL,
`lab_email` varchar(255) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `labs`
--
INSERT INTO `labs` (`id`, `lab_name`, `lab_add`, `lab_phone`, `lab_email`) VALUES
(1, 'Diagno Labs', 'Indrapuri', '7554247774', '<EMAIL>'),
(2, 'Thyrocare', 'add1', '435', '');
-- --------------------------------------------------------
--
-- Table structure for table `lipid-profile`
--
CREATE TABLE `lipid-profile` (
`id` int(11) NOT NULL,
`col_name` varchar(255) NOT NULL,
`col_slug` varchar(255) NOT NULL,
`units` varchar(255) NOT NULL,
`reference` text NOT NULL,
`interpretations` text
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Dumping data for table `lipid-profile`
--
INSERT INTO `lipid-profile` (`id`, `col_name`, `col_slug`, `units`, `reference`, `interpretations`) VALUES
(1, 'S.CHOLESTEROL', 'scholesterol', 'mg/dL', '<p>130-250 mg/dL</p>', 'Having a total cholesterol level over 240 mg/dL may double the risk of heart disease.'),
(2, 'S.TRIGIYCERIDES', 'strigiycerides', 'mg/dL', '<p>Normal <150 mg/dL</p><p>Boderline 150 -199 mg/dL</p><p>High 200 - 499 mg/dL</p><p>Very High >500</p>', 'Highly elevated triglyceride levels may also cause fatty liver disease and pancreatitis.'),
(3, 'HDL-CHOLESTEROL', 'hdl-cholesterol', 'mg/dL', '<p>40-60 mg/dL</p>', 'A high-density lipoprotein (HDL) test measures the level of good cholesterol in your blood. '),
(4, 'VLDL-CHOLESTEROL', 'vldl-cholesterol', 'mg/dL', '<p>2-30 mg/dL</p>', 'VLDL -Cholesterol is a type of blood fat. It\'s considered one of the "bad" forms of cholesterol, along with LDL cholesterol and triglycerides.'),
(5, 'LDL- CHOLESTEROL', 'ldl-cholesterol', 'mg/dL', '<p>Normal 100-129 mg/dL</p><p>Borderline 130-159 mg/dL</p><p>High 160-189 mg/dL</p><p>Very high >190 mg/dL</p>', 'A higher value confers increasing risk for the development of coronary artery disease and needs to be remedied. '),
(6, 'RISK -FACTOR', 'risk-factor', 'mg/dL', '<p>Upto 6.0</p>', 'Risk Factor Upto 6.0 is desirable');
-- --------------------------------------------------------
--
-- Table structure for table `lipid-profile-conditions`
--
CREATE TABLE `lipid-profile-conditions` (
`id` int(11) NOT NULL,
`col_slug` varchar(255) NOT NULL,
`con1` varchar(255) NOT NULL,
`val1` float NOT NULL,
`and_or` varchar(255) DEFAULT NULL,
`con2` varchar(255) DEFAULT NULL,
`val2` float DEFAULT NULL,
`result` varchar(255) NOT NULL,
`show_y_n` char(1) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Dumping data for table `lipid-profile-conditions`
--
INSERT INTO `lipid-profile-conditions` (`id`, `col_slug`, `con1`, `val1`, `and_or`, `con2`, `val2`, `result`, `show_y_n`) VALUES
(1, 'scholesterol', 'LESSERTHAN', 130, NULL, NULL, NULL, 'Low', 'Y'),
(2, 'scholesterol', 'GREATERTHAN', 250, NULL, NULL, NULL, 'High', 'Y'),
(3, 'strigiycerides', 'LESSERTHAN', 150, NULL, NULL, NULL, 'Normal', 'N'),
(4, 'strigiycerides', 'GREATERTHANEQUAL', 150, 'AND', 'LESSERTHAN', 200, 'Boderline', 'Y'),
(5, 'strigiycerides', 'GREATERTHANEQUAL', 200, 'AND', 'LESSERTHAN', 500, 'High', 'Y'),
(6, 'strigiycerides', 'GREATERTHANEQUAL', 500, NULL, NULL, NULL, 'Very High', 'Y'),
(7, 'hdl-cholesterol', 'LESSERTHAN', 40, NULL, NULL, NULL, 'Low', 'Y'),
(8, 'hdl-cholesterol', 'GREATERTHAN', 60, NULL, NULL, NULL, 'High', 'Y'),
(9, 'vldl-cholesterol', 'LESSERTHAN', 2, NULL, NULL, NULL, 'Low', 'Y'),
(10, 'vldl-cholesterol', 'GREATERTHAN', 30, NULL, NULL, NULL, 'High', 'Y'),
(11, 'ldl-cholesterol', 'GREATERTHANEQUAL', 130, 'AND', 'LESSERTHAN', 160, 'Boderline', 'Y'),
(12, 'ldl-cholesterol', 'GREATERTHANEQUAL', 160, 'AND', 'LESSERTHAN', 190, 'High', 'Y'),
(13, 'ldl-cholesterol', 'GREATERTHANEQUAL', 190, NULL, NULL, NULL, 'Very High', 'Y'),
(14, 'ldl-cholesterol', 'LESSERTHAN', 100, NULL, NULL, NULL, 'Low', 'Y'),
(15, 'risk-factor', 'GREATERTHAN', 6, NULL, NULL, NULL, 'High', 'Y');
-- --------------------------------------------------------
--
-- Table structure for table `lipid-profile-details`
--
CREATE TABLE `lipid-profile-details` (
`id` int(11) NOT NULL,
`patient-id` int(11) NOT NULL,
`scholesterol` float DEFAULT NULL,
`strigiycerides` float DEFAULT NULL,
`hdl-cholesterol` float DEFAULT NULL,
`vldl-cholesterol` float DEFAULT NULL,
`ldl-cholesterol` float DEFAULT NULL,
`risk-factor` float DEFAULT NULL,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Dumping data for table `lipid-profile-details`
--
INSERT INTO `lipid-profile-details` (`id`, `patient-id`, `scholesterol`, `strigiycerides`, `hdl-cholesterol`, `vldl-cholesterol`, `ldl-cholesterol`, `risk-factor`, `created_at`) VALUES
(4, 1, 122, 122, 545, 333, 333, 33, '2018-01-30 09:15:22');
-- --------------------------------------------------------
--
-- Table structure for table `patients`
--
CREATE TABLE `patients` (
`id` int(11) NOT NULL,
`name` varchar(255) NOT NULL,
`age` int(11) NOT NULL,
`gender` char(1) NOT NULL,
`mobile` varchar(10) NOT NULL,
`ref_by` varchar(255) NOT NULL,
`due_amount` float NOT NULL,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `patients`
--
INSERT INTO `patients` (`id`, `name`, `age`, `gender`, `mobile`, `ref_by`, `due_amount`, `created_at`) VALUES
(1, 'Mrs <NAME>', 47, 'F', '7894561233', 'Dr. <NAME>', 0, '2017-12-30 06:34:02'),
(3, '<NAME>', 20, 'M', '7894561230', 'self', 1000, '2018-01-17 08:31:08'),
(4, 'New Patient', 20, 'O', '6549873210', 'self', 1000, '2018-01-17 09:09:57');
-- --------------------------------------------------------
--
-- Table structure for table `tests`
--
CREATE TABLE `tests` (
`test_id` int(11) NOT NULL,
`test_name` varchar(255) NOT NULL,
`test_slug` varchar(255) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `tests`
--
INSERT INTO `tests` (`test_id`, `test_name`, `test_slug`) VALUES
(13, 'LIPID PROFILE', 'lipid-profile');
-- --------------------------------------------------------
--
-- Table structure for table `text_based`
--
CREATE TABLE `text_based` (
`test_id` int(11) NOT NULL,
`test_name` varchar(255) NOT NULL,
`test_slug` varchar(255) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `text_based`
--
INSERT INTO `text_based` (`test_id`, `test_name`, `test_slug`) VALUES
(1, 'ANC Profile', 'anc-profile');
-- --------------------------------------------------------
--
-- Table structure for table `users`
--
CREATE TABLE `users` (
`id` int(11) NOT NULL,
`username` varchar(255) NOT NULL,
`password` varchar(255) NOT NULL,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `users`
--
INSERT INTO `users` (`id`, `username`, `password`, `created_at`) VALUES
(1, 'admin2', '<PASSWORD>', '2017-12-30 06:32:31');
--
-- Indexes for dumped tables
--
--
-- Indexes for table `accounts`
--
ALTER TABLE `accounts`
ADD PRIMARY KEY (`id`),
ADD KEY `lab_id` (`lab_id`);
--
-- Indexes for table `labs`
--
ALTER TABLE `labs`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `lipid-profile`
--
ALTER TABLE `lipid-profile`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `lipid-profile-conditions`
--
ALTER TABLE `lipid-profile-conditions`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `lipid-profile-details`
--
ALTER TABLE `lipid-profile-details`
ADD PRIMARY KEY (`id`),
ADD KEY `patient-id` (`patient-id`);
--
-- Indexes for table `patients`
--
ALTER TABLE `patients`
ADD PRIMARY KEY (`id`),
ADD KEY `id` (`id`),
ADD KEY `id_2` (`id`);
--
-- Indexes for table `tests`
--
ALTER TABLE `tests`
ADD PRIMARY KEY (`test_id`);
--
-- Indexes for table `text_based`
--
ALTER TABLE `text_based`
ADD PRIMARY KEY (`test_id`);
--
-- Indexes for table `users`
--
ALTER TABLE `users`
ADD PRIMARY KEY (`id`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `accounts`
--
ALTER TABLE `accounts`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;
--
-- AUTO_INCREMENT for table `labs`
--
ALTER TABLE `labs`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;
--
-- AUTO_INCREMENT for table `lipid-profile`
--
ALTER TABLE `lipid-profile`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7;
--
-- AUTO_INCREMENT for table `lipid-profile-conditions`
--
ALTER TABLE `lipid-profile-conditions`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=16;
--
-- AUTO_INCREMENT for table `lipid-profile-details`
--
ALTER TABLE `lipid-profile-details`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;
--
-- AUTO_INCREMENT for table `patients`
--
ALTER TABLE `patients`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;
--
-- AUTO_INCREMENT for table `tests`
--
ALTER TABLE `tests`
MODIFY `test_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=14;
--
-- AUTO_INCREMENT for table `text_based`
--
ALTER TABLE `text_based`
MODIFY `test_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
--
-- AUTO_INCREMENT for table `users`
--
ALTER TABLE `users`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
--
-- Constraints for dumped tables
--
--
-- Constraints for table `accounts`
--
ALTER TABLE `accounts`
ADD CONSTRAINT `accounts_ibfk_1` FOREIGN KEY (`lab_id`) REFERENCES `labs` (`id`) ON DELETE CASCADE ON UPDATE CASCADE;
--
-- Constraints for table `lipid-profile-details`
--
ALTER TABLE `lipid-profile-details`
ADD CONSTRAINT `lipid-profile-details_ibfk_1` FOREIGN KEY (`patient-id`) REFERENCES `patients` (`id`) ON DELETE CASCADE ON UPDATE CASCADE;
/*!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>tushartushar/dbSmellsData
Select * from Win32_Processa where name="sshd.exe"
|
<reponame>bertelsmannstift/Chancenportal<filename>packages/chancenportal/ext_tables.sql
#
# Table structure for table 'tx_chancenportal_domain_model_provider'
#
CREATE TABLE tx_chancenportal_domain_model_provider (
name varchar(255) DEFAULT '' NOT NULL,
slug varchar(255) DEFAULT '' NOT NULL,
subline varchar(255) DEFAULT '' NOT NULL,
short_description text,
long_description text,
number_of_employees int(11) DEFAULT '0' NOT NULL,
participation smallint(5) unsigned DEFAULT '0' NOT NULL,
content_image int(11) unsigned DEFAULT '0' NOT NULL,
logo int(11) unsigned DEFAULT '0' NOT NULL,
street varchar(255) DEFAULT '' NOT NULL,
city varchar(255) DEFAULT '' NOT NULL,
email varchar(255) DEFAULT '' NOT NULL,
website varchar(255) DEFAULT '' NOT NULL,
contact_salutation int(11) DEFAULT '0' NOT NULL,
contact_name varchar(255) DEFAULT '' NOT NULL,
contact_jurisdiction varchar(255) DEFAULT '' NOT NULL,
contact_phone varchar(255) DEFAULT '' NOT NULL,
contact_email varchar(255) DEFAULT '' NOT NULL,
contact_image int(11) unsigned DEFAULT '0' NOT NULL,
phone varchar(255) DEFAULT '' NOT NULL,
phone2 varchar(255) DEFAULT '' NOT NULL,
opening_hours text,
active smallint(5) unsigned DEFAULT '0' NOT NULL,
zip varchar(255) DEFAULT '' NOT NULL,
address varchar(255) DEFAULT '' NOT NULL,
lat varchar(255) DEFAULT '' NOT NULL,
lng varchar(255) DEFAULT '' NOT NULL,
approved smallint(5) unsigned DEFAULT '0' NOT NULL,
reminder_email_send smallint(5) unsigned DEFAULT '0' NOT NULL,
content_image_copyright varchar(255) DEFAULT '' NOT NULL,
labels int(11) unsigned DEFAULT '0' NOT NULL,
offers int(11) unsigned DEFAULT '0' NOT NULL,
owner_group int(11) unsigned DEFAULT '0',
carrier int(11) unsigned DEFAULT '0',
categories int(11) unsigned DEFAULT '0' NOT NULL,
creator int(11) unsigned DEFAULT '0',
author int(11) unsigned DEFAULT '0',
);
#
# Table structure for table 'tx_chancenportal_domain_model_offer'
#
CREATE TABLE tx_chancenportal_domain_model_offer (
provider int(11) unsigned DEFAULT '0' NOT NULL,
name varchar(255) DEFAULT '' NOT NULL,
slug varchar(255) DEFAULT '' NOT NULL,
address_type int(11) DEFAULT '0' NOT NULL,
address varchar(255) DEFAULT '' NOT NULL,
lat varchar(255) DEFAULT '' NOT NULL,
lng varchar(255) DEFAULT '' NOT NULL,
info varchar(255) DEFAULT '' NOT NULL,
short_description text,
long_description text,
speaker varchar(255) DEFAULT '' NOT NULL,
images int(11) unsigned DEFAULT '0' NOT NULL,
youtube varchar(255) DEFAULT '' NOT NULL,
conditions_of_participation text,
course_number varchar(255) DEFAULT '' NOT NULL,
allowed_participants varchar(255) DEFAULT '' NOT NULL,
costs varchar(255) DEFAULT '' NOT NULL,
all_ages smallint(5) unsigned DEFAULT '0' NOT NULL,
access int(11) DEFAULT '0' NOT NULL,
accessibility int(11) DEFAULT '0' NOT NULL,
participate varchar(255) DEFAULT '' NOT NULL,
donate varchar(255) DEFAULT '' NOT NULL,
provider_cooperation varchar(255) DEFAULT '' NOT NULL,
format varchar(255) DEFAULT '' NOT NULL,
no_costs smallint(5) unsigned DEFAULT '0' NOT NULL,
contact_salutation int(11) DEFAULT '0' NOT NULL,
contact_name varchar(255) DEFAULT '' NOT NULL,
contact_jurisdiction varchar(255) DEFAULT '' NOT NULL,
contact_phone varchar(255) DEFAULT '' NOT NULL,
contact_email varchar(255) DEFAULT '' NOT NULL,
contact_image int(11) unsigned DEFAULT '0' NOT NULL,
active smallint(5) unsigned DEFAULT '0' NOT NULL,
content_image int(11) unsigned DEFAULT '0' NOT NULL,
active_date datetime DEFAULT NULL,
zip text,
city text,
street text,
approved smallint(5) unsigned DEFAULT '0' NOT NULL,
date_type int(11) DEFAULT '0' NOT NULL,
start_date date DEFAULT NULL,
end_date date DEFAULT NULL,
reminder_email_send smallint(5) unsigned DEFAULT '0' NOT NULL,
images_copyright varchar(255) DEFAULT '' NOT NULL,
content_image_copyright varchar(255) DEFAULT '' NOT NULL,
participation smallint(5) unsigned DEFAULT '0' NOT NULL,
opening_hours text,
next_calculated_date datetime DEFAULT NULL,
moddate datetime DEFAULT NULL,
dates int(11) unsigned DEFAULT '0' NOT NULL,
target_groups int(11) unsigned DEFAULT '0' NOT NULL,
categories int(11) unsigned DEFAULT '0' NOT NULL,
district int(11) unsigned DEFAULT '0',
creator int(11) unsigned DEFAULT '0',
last_editor int(11) unsigned DEFAULT '0',
);
#
# Table structure for table 'tx_chancenportal_domain_model_label'
#
CREATE TABLE tx_chancenportal_domain_model_label (
provider int(11) unsigned DEFAULT '0' NOT NULL,
name varchar(255) DEFAULT '' NOT NULL,
text text,
);
#
# Table structure for table 'tx_chancenportal_domain_model_date'
#
CREATE TABLE tx_chancenportal_domain_model_date (
offer int(11) unsigned DEFAULT '0' NOT NULL,
start_date date DEFAULT NULL,
start_time varchar(255) DEFAULT '' NOT NULL,
end_date date DEFAULT NULL,
end_time varchar(255) DEFAULT '' NOT NULL,
active smallint(5) unsigned DEFAULT '0' NOT NULL,
);
#
# Table structure for table 'fe_users'
#
CREATE TABLE fe_users (
password_reset_hash varchar(255) DEFAULT '' NOT NULL,
confirmation_send smallint(5) unsigned DEFAULT '0' NOT NULL,
terms_and_conditions_date datetime DEFAULT NULL,
tx_extbase_type varchar(255) DEFAULT '' NOT NULL,
);
#
# Table structure for table 'fe_groups'
#
CREATE TABLE fe_groups (
tx_extbase_type varchar(255) DEFAULT '' NOT NULL,
);
#
# Table structure for table 'tx_chancenportal_domain_model_carrier'
#
CREATE TABLE tx_chancenportal_domain_model_carrier (
name varchar(255) DEFAULT '' NOT NULL,
);
#
# Table structure for table 'tx_chancenportal_domain_model_category'
#
CREATE TABLE tx_chancenportal_domain_model_category (
category1 int(11) unsigned DEFAULT '0' NOT NULL,
name varchar(255) DEFAULT '' NOT NULL,
images int(11) unsigned DEFAULT '0' NOT NULL,
color varchar(255) DEFAULT '' NOT NULL,
children int(11) unsigned DEFAULT '0' NOT NULL,
parent int(11) unsigned DEFAULT '0',
);
#
# Table structure for table 'tx_chancenportal_domain_model_targetgroup'
#
CREATE TABLE tx_chancenportal_domain_model_targetgroup (
name varchar(255) DEFAULT '' NOT NULL,
);
#
# Table structure for table 'tx_chancenportal_domain_model_district'
#
CREATE TABLE tx_chancenportal_domain_model_district (
name varchar(255) DEFAULT '' NOT NULL,
);
#
# Table structure for table 'tx_chancenportal_domain_model_log'
#
CREATE TABLE tx_chancenportal_domain_model_log (
date datetime DEFAULT NULL,
term text,
category int(11) unsigned DEFAULT '0',
offer int(11) unsigned DEFAULT '0',
);
#
# Table structure for table 'tx_chancenportal_domain_model_label'
#
CREATE TABLE tx_chancenportal_domain_model_label (
provider int(11) unsigned DEFAULT '0' NOT NULL,
);
#
# Table structure for table 'tx_chancenportal_domain_model_offer'
#
CREATE TABLE tx_chancenportal_domain_model_offer (
provider int(11) unsigned DEFAULT '0' NOT NULL,
);
#
# Table structure for table 'tx_chancenportal_provider_category_mm'
#
CREATE TABLE tx_chancenportal_provider_category_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,
PRIMARY KEY (uid_local,uid_foreign),
KEY uid_local (uid_local),
KEY uid_foreign (uid_foreign)
);
#
# Table structure for table 'tx_chancenportal_domain_model_date'
#
CREATE TABLE tx_chancenportal_domain_model_date (
offer int(11) unsigned DEFAULT '0' NOT NULL,
);
#
# Table structure for table 'tx_chancenportal_offer_targetgroup_mm'
#
CREATE TABLE tx_chancenportal_offer_targetgroup_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,
PRIMARY KEY (uid_local,uid_foreign),
KEY uid_local (uid_local),
KEY uid_foreign (uid_foreign)
);
#
# Table structure for table 'tx_chancenportal_offer_category_mm'
#
CREATE TABLE tx_chancenportal_offer_category_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,
PRIMARY KEY (uid_local,uid_foreign),
KEY uid_local (uid_local),
KEY uid_foreign (uid_foreign)
);
#
# Table structure for table 'tx_chancenportal_domain_model_category'
#
CREATE TABLE tx_chancenportal_domain_model_category (
category1 int(11) unsigned DEFAULT '0' NOT NULL,
);
## EXTENSION BUILDER DEFAULTS END TOKEN - Everything BEFORE this line is overwritten with the defaults of the extension builder
ALTER TABLE tx_chancenportal_domain_model_date MODIFY active smallint(5) unsigned DEFAULT '1' NOT NULL;
ALTER TABLE tx_chancenportal_domain_model_offer MODIFY address_type int(11) DEFAULT '1' NOT NULL;
|
<gh_stars>10-100
DELIMITER //
CREATE TABLE IF NOT EXISTS `items` (
`ID` BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT,
`Content` VARCHAR(500) NOT NULL,
PRIMARY KEY (`ID`),
INDEX `CONTENT_INDEX` (`Content`(191))
)
COLLATE='utf8mb4_general_ci'
ENGINE=InnoDB
AUTO_INCREMENT=1
//
CREATE TABLE IF NOT EXISTS `tags` (
`ID` BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT,
`Name` VARCHAR(50) NOT NULL,
`Guild` BIGINT(20) UNSIGNED NOT NULL,
PRIMARY KEY (`ID`),
UNIQUE INDEX `UNIQUE_NAME` (`Name`, `Guild`)
)
COLLATE='utf8mb4_general_ci'
ENGINE=InnoDB
AUTO_INCREMENT=1
//
CREATE TABLE IF NOT EXISTS `polloptions` (
`Poll` bigint(20) unsigned NOT NULL,
`Index` bigint(20) unsigned NOT NULL,
`Option` varchar(128) NOT NULL,
PRIMARY KEY (`Poll`,`Index`),
UNIQUE KEY `OPTION_INDEX` (`Option`,`Poll`),
KEY `POLL_INDEX` (`Poll`),
CONSTRAINT `FK_options_polls` FOREIGN KEY (`Poll`) REFERENCES `polls` (`ID`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4
//
CREATE TABLE IF NOT EXISTS `polls` (
`ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`Guild` bigint(20) unsigned NOT NULL,
`Name` varchar(50) NOT NULL,
`Description` varchar(2048) NOT NULL,
PRIMARY KEY (`ID`),
UNIQUE KEY `Index 2` (`Name`,`Guild`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4
//
CREATE TABLE IF NOT EXISTS `tags` (
`ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`Name` varchar(50) NOT NULL,
`Guild` bigint(20) unsigned NOT NULL,
PRIMARY KEY (`ID`),
UNIQUE KEY `UNIQUE_NAME` (`Name`,`Guild`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4
//
ALTER TABLE `members`
DROP COLUMN IF EXISTS `LastNickChange`//
IF NOT EXISTS (SELECT * FROM `information_schema`.`COLUMNS`
WHERE `TABLE_NAME` = "members" AND `COLUMN_NAME` = "FirstMessage")
THEN
ALTER TABLE `members` ADD `FirstMessage` datetime DEFAULT NULL;
END IF//
ALTER TABLE `users`
DROP COLUMN IF EXISTS `Email`,
DROP COLUMN IF EXISTS `Timezone`,
DROP COLUMN IF EXISTS `Verified`//
IF NOT EXISTS (SELECT * FROM `information_schema`.`COLUMNS`
WHERE `TABLE_NAME` = "users" AND `COLUMN_NAME` = "Discriminator")
THEN
ALTER TABLE `users` ADD `Discriminator` int(10) unsigned NOT NULL DEFAULT '0';
END IF//
DROP PROCEDURE IF EXISTS `SawUser`//
DROP TRIGGER IF EXISTS `members_before_update`//
DROP PROCEDURE IF EXISTS `AddChat`//
CREATE PROCEDURE `AddChat`(
IN `_id` BIGINT,
IN `_author` BIGINT,
IN `_username` VARCHAR(128),
IN `_message` VARCHAR(2000),
IN `_channel` BIGINT,
IN `_guild` BIGINT
)
MODIFIES SQL DATA
BEGIN
INSERT INTO users (ID, Username, Avatar, LastSeen, LastNameChange)
VALUES (_author, _username, '', UTC_TIMESTAMP(), UTC_TIMESTAMP())
ON DUPLICATE KEY UPDATE LastSeen=UTC_TIMESTAMP();
INSERT IGNORE INTO aliases (`User`, Alias, Duration, `Timestamp`)
VALUES (_id, _username, 0, UTC_TIMESTAMP());
INSERT INTO chatlog (ID, Author, Message, Timestamp, Channel, Guild)
VALUES (_id, _author, _message, UTC_TIMESTAMP(), _channel, _guild)
ON DUPLICATE KEY UPDATE /* This prevents a race condition from causing a serious error */
Message = _message COLLATE 'utf8mb4_general_ci', Timestamp = UTC_TIMESTAMP();
END//
DROP FUNCTION IF EXISTS `AddItem`//
CREATE DEFINER=`root`@`localhost` FUNCTION `AddItem`(`_content` VARCHAR(500)) RETURNS bigint(20)
MODIFIES SQL DATA
BEGIN
SET @id = (SELECT ID FROM items WHERE Content = _content);
IF @id IS NULL THEN
INSERT INTO items (Content) VALUES (_content);
RETURN LAST_INSERT_ID();
END IF;
RETURN @id;
END//
DROP FUNCTION IF EXISTS `AddMarkov`//
CREATE DEFINER=`root`@`localhost` FUNCTION `AddMarkov`(`_prev` BIGINT, `_prev2` BIGINT, `_speaker` VARCHAR(128), `_phrase` VARCHAR(64)) RETURNS bigint(20)
MODIFIES SQL DATA
DETERMINISTIC
BEGIN
INSERT INTO markov_transcripts_speaker (Speaker)
VALUES (_speaker)
ON DUPLICATE KEY UPDATE ID = ID;
SET @speakerid = (SELECT ID FROM markov_transcripts_speaker WHERE Speaker = _speaker);
INSERT INTO markov_transcripts (SpeakerID, Phrase)
VALUES (@speakerid, _phrase)
ON DUPLICATE KEY UPDATE Phrase = _phrase;
/*LAST_UPDATE_ID() doesn't work here because of the duplicate key possibility */
SET @ret = (SELECT ID FROM markov_transcripts WHERE SpeakerID = @speakerid AND Phrase = _phrase);
INSERT INTO markov_transcripts_map (Prev, Prev2, Next)
VALUES (_prev, _prev2, @ret)
ON DUPLICATE KEY UPDATE Count = Count + 1;
RETURN @ret;
END//
DROP PROCEDURE IF EXISTS `AddMember`//
CREATE DEFINER=`root`@`localhost` PROCEDURE `AddMember`(IN `_id` BIGINT, IN `_guild` BIGINT, IN `_firstseen` DATETIME, IN `_nickname` VARCHAR(128))
LANGUAGE SQL
NOT DETERMINISTIC
MODIFIES SQL DATA
SQL SECURITY DEFINER
COMMENT ''
INSERT INTO members (ID, Guild, FirstSeen, Nickname)
VALUES (_id, _guild, _firstseen, _nickname)
ON DUPLICATE KEY UPDATE
FirstSeen=GetMinDate(_firstseen,FirstSeen), Nickname=_nickname//
DROP PROCEDURE IF EXISTS `AddUser`//
CREATE PROCEDURE `AddUser`(
IN `_id` BIGINT,
IN `_username` VARCHAR(128),
IN `_discriminator` INT,
IN `_avatar` VARCHAR(512),
IN `_isonline` BIT
)
MODIFIES SQL DATA
BEGIN
DECLARE oldname VARCHAR(128) DEFAULT '';
SELECT Username INTO oldname
FROM users
WHERE ID = _id FOR UPDATE;
INSERT INTO users (ID, Username, Discriminator, Avatar, LastSeen, LastNameChange)
VALUES (_id, _username, _discriminator, _avatar, UTC_TIMESTAMP(), UTC_TIMESTAMP())
ON DUPLICATE KEY UPDATE
Username=IF(_username = '', Username, _username),
Discriminator=IF(_discriminator = 0, Discriminator, _discriminator),
Avatar=IF(_avatar = '', Avatar, _avatar),
LastSeen=IF(_isonline > 0, UTC_TIMESTAMP(), LastSeen),
LastNameChange=IF(_username = '', LastNameChange, IF(_username != `Username`, UTC_TIMESTAMP(), LastNameChange));
IF _username != '' THEN
IF oldname != '' THEN
INSERT INTO aliases (`User`, Alias, Duration, `Timestamp`)
VALUES (_id, oldname, 0, UTC_TIMESTAMP())
ON DUPLICATE KEY UPDATE `Duration` = `Duration` + (UNIX_TIMESTAMP(UTC_TIMESTAMP()) - UNIX_TIMESTAMP(`Timestamp`)), `Timestamp` = UTC_TIMESTAMP();
END IF;
IF _username != oldname THEN
INSERT INTO aliases (`User`, Alias, Duration, `Timestamp`)
VALUES (_id, _username, 0, UTC_TIMESTAMP())
ON DUPLICATE KEY UPDATE `Timestamp` = UTC_TIMESTAMP();
END IF;
END IF;
END//
DROP TRIGGER IF EXISTS `chatlog_before_delete`//
CREATE TRIGGER `chatlog_before_delete` BEFORE DELETE ON `chatlog` FOR EACH ROW DELETE FROM editlog WHERE ID = OLD.ID//
DROP TRIGGER IF EXISTS `chatlog_before_update`//
CREATE TRIGGER `chatlog_before_update` BEFORE UPDATE ON `chatlog` FOR EACH ROW INSERT INTO editlog (ID, `Timestamp`, Author, Message, Channel, Guild)
VALUES (OLD.ID, OLD.`Timestamp`, OLD.Author, OLD.Message, OLD.Channel, OLD.Guild)
ON DUPLICATE KEY UPDATE `Timestamp` = OLD.`Timestamp`, Message = OLD.Message//
CREATE TABLE IF NOT EXISTS `itemtags` (
`Item` bigint(20) unsigned NOT NULL,
`Tag` bigint(20) unsigned NOT NULL,
PRIMARY KEY (`Item`,`Tag`),
KEY `FK_itemtags_tags` (`Tag`),
CONSTRAINT `FK_itemtags_items` FOREIGN KEY (`Item`) REFERENCES `items` (`ID`),
CONSTRAINT `FK_itemtags_tags` FOREIGN KEY (`Tag`) REFERENCES `tags` (`ID`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4//
DROP TRIGGER IF EXISTS `itemtags_after_delete`//
CREATE TRIGGER `itemtags_after_delete` AFTER DELETE ON `itemtags` FOR EACH ROW BEGIN
IF (SELECT COUNT(*) FROM itemtags WHERE Item = OLD.Item) = 0 THEN
DELETE FROM items WHERE ID = OLD.Item;
END IF;
END//
DROP TRIGGER IF EXISTS `polloptions_before_delete`//
CREATE TRIGGER `polloptions_before_delete` BEFORE DELETE ON `polloptions` FOR EACH ROW DELETE FROM votes WHERE Poll = OLD.Poll AND `Option` = OLD.`Index`//
DROP TRIGGER IF EXISTS `polls_before_delete`//
CREATE TRIGGER `polls_before_delete` BEFORE DELETE ON `polls` FOR EACH ROW DELETE FROM polloptions WHERE Poll = OLD.ID//
DROP TRIGGER IF EXISTS `tags_before_delete`//
CREATE TRIGGER `tags_before_delete` BEFORE DELETE ON `tags` FOR EACH ROW DELETE FROM itemtags WHERE Tag = OLD.ID//
DROP TRIGGER IF EXISTS `users_before_update`//
ALTER TABLE `chatlog`
DROP COLUMN IF EXISTS `Everyone`//
ALTER TABLE `editlog`
DROP COLUMN IF EXISTS `Everyone`//
DROP PROCEDURE IF EXISTS `RemoveGuild`//
CREATE PROCEDURE `RemoveGuild`(
IN `_guild` BIGINT UNSIGNED
)
MODIFIES SQL DATA
BEGIN
DELETE FROM `members` WHERE Guild = _guild;
DELETE FROM `polls` WHERE Guild = _guild;
DELETE FROM `schedule` WHERE Guild = _guild;
DELETE FROM `chatlog` WHERE Guild = _guild;
DELETE FROM `debuglog` WHERE Guild = _guild;
DELETE FROM `editlog` WHERE Guild = _guild;
DELETE FROM `tags` WHERE Guild = _guild;
END//
|
<filename>src/SFA.Apprenticeships.Data.AvmsPlus/dbo/Stored Procedures/uspThirdPartyInsert.sql
CREATE PROCEDURE [dbo].[uspThirdPartyInsert]
@EdsUrn int ,
@ThirdPartyName nvarchar(255) ,
@AddressLine1 nvarchar(50) ,
@AddressLine2 nvarchar(50) ,
@AddressLine3 nvarchar(50) ,
@AddressLine4 nvarchar(50) ,
@Town nvarchar(50) ,
@County int,
@PostCode nvarchar(50) ,
@Latitude decimal(20, 15) ,
@Longitude decimal(20, 15),
@GeocodeEasting decimal(20, 15) ,
@GeocodeNorthing decimal(20, 15),
@ThirdPartyId int out
AS
BEGIN
SET NOCOUNT ON
BEGIN TRY
INSERT INTO [dbo].[ThirdParty]
(
EDSURN,
ThirdPartyName,
AddressLine1,
AddressLine2,
AddressLine3,
AddressLine4,
Town,
CountyId,
PostCode,
Latitude,
Longitude,
GeocodeEasting,
GeocodeNorthing
)
VALUES
(
@EdsUrn,
@ThirdPartyName,
@AddressLine1,
@AddressLine2,
@AddressLine3,
@AddressLine4,
@Town,
@County,
@PostCode,
@Latitude,
@Longitude,
@GeocodeEasting,
@GeocodeNorthing
)
SET @ThirdPartyId = SCOPE_IDENTITY()
END TRY
BEGIN CATCH
EXEC RethrowError;
END CATCH
SET NOCOUNT OFF
END |
<reponame>MalekiSirius/Onion-Architecture
USE [Kama.Mefa.Azmoon]
GO
IF EXISTS(SELECT 1 FROM sys.procedures WHERE [object_id] = OBJECT_ID('pbl.spIsUserAuthenticated'))
DROP PROCEDURE pbl.spIsUserAuthenticated
GO
CREATE PROCEDURE pbl.spIsUserAuthenticated
@AUserID UNIQUEIDENTIFIER,
@ACommandID UNIQUEIDENTIFIER
WITH ENCRYPTION
AS
BEGIN
SET NOCOUNT ON;
DECLARE @UserID UNIQUEIDENTIFIER = @AUserID
, @CommandID UNIQUEIDENTIFIER = @ACommandID
, @IsAuthorized BIT
, @IsNotAuthorized BIT
set @IsAuthorized = 1
set @IsNotAuthorized = 0
IF EXISTS(select * FROM org._Commands cmd WHERE cmd.UserID = @UserID AND cmd.CommandID = @CommandID)
begin
select @IsAuthorized
end
else
begin
select @IsNotAuthorized
end
END |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.