text
stringlengths 6
9.38M
|
|---|
-- phpMyAdmin SQL Dump
-- version 4.5.1
-- http://www.phpmyadmin.net
--
-- Host: 127.0.0.1
-- Generation Time: Jan 11, 2018 at 07:31 AM
-- Server version: 10.1.9-MariaDB
-- PHP Version: 5.6.15
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
--
-- Database: `sarang`
--
-- --------------------------------------------------------
--
-- Table structure for table `url_shortner`
--
CREATE TABLE `url_shortner` (
`url_id` varchar(5) NOT NULL,
`long_url` varchar(255) NOT NULL,
`short_url` varchar(50) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `url_shortner`
--
INSERT INTO `url_shortner` (`url_id`, `long_url`, `short_url`) VALUES
('hi', 'http://lipsindiaphpstudent.in/sarang/Sarang_Tutorials_Site/', 'http://localhost/us/hi'),
('wwc', 'https://www.w3schools.com/', 'http://localhost/us/wwc');
--
-- Indexes for dumped tables
--
--
-- Indexes for table `url_shortner`
--
ALTER TABLE `url_shortner`
ADD PRIMARY KEY (`url_id`);
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
-- phpMyAdmin SQL Dump
-- version 4.8.5
-- https://www.phpmyadmin.net/
--
-- Host: localhost
-- Generation Time: May 26, 2019 at 02:50 PM
-- Server version: 5.7.26-0ubuntu0.16.04.1
-- PHP Version: 7.0.33-0ubuntu0.16.04.4
CREATE DATABASE IF NOT EXISTS smart_home;
USE smart_home;
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: `smart_home`
--
-- --------------------------------------------------------
--
-- Table structure for table `Devices`
--
CREATE TABLE `Devices` (
`id` int(11) NOT NULL,
`name` varchar(64) NOT NULL,
`description` varchar(128) NOT NULL,
`state` int(11) NOT NULL,
`type` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `Devices`
--
INSERT INTO `Devices` (`id`, `name`, `description`, `state`, `type`) VALUES
(1, 'Lampara 1', 'Luz living', 1, 0),
(2, 'Lampara 2', 'Luz cocina', 0, 0),
(3, 'Velador', 'Velador living', 1, 0),
(4, 'Persiana 1', 'Persiana living', 1, 1),
(5, 'Persiana 2', 'Persiana de la cocina', 1, 1),
(6, 'Persiana 3', 'Persiana balcon', 0, 1);
--
-- Indexes for dumped tables
--
--
-- Indexes for table `Devices`
--
ALTER TABLE `Devices`
ADD PRIMARY KEY (`id`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `Devices`
--
ALTER TABLE `Devices`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7;
COMMIT;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
create table user_id_auto
(
id bigint default nextval('user_id_seq'::regclass) not null
constraint user_id_pk
primary key,
name varchar
);
alter table user_id_auto owner to len;
create table user_protobuf_id
(
id bigint not null
constraint user_protobuf_id_pk
primary key,
name varchar
);
alter table user_protobuf_id owner to len;
create unique index user_protobuf_id_id_uindex
on user_protobuf_id (id);
create table user_id_uuid
(
id varchar,
name varchar
);
alter table user_id_uuid owner to len;
|
1. Import this file into an empty PostgreSQL database. Note: the file contains a
lot of data and may take a while to run; your terminal should return to the
command prompt once the import is complete.
$ createdb lesson_3
$ psql lesson_3 < tickets.sql
2. Write a query that determines how many tickets have been sold.
SELECT count(id) AS "Number of Tickets Sold"
FROM tickets;
Number of Tickets Sold
------------------------
3783
(1 row)
3. Write a query that determines how many different customers purchased tickets
to at least one event.
SELECT count(DISTINCT customer_id)
AS "Number of Distinct Customers"
FROM tickets;
Number of Distinct Customers
------------------------------
1652
(1 row)
4. Write a query that determines what percentage of the customers in the
database have purchased a ticket to one of the events.
-- subquery:
SELECT round(100 * count(DISTINCT customer_id) /
(SELECT count(id) * 1.0 FROM customers), 2)
AS "Percentage of Customers Who Bought At Least One Ticket"
FROM tickets;
Percentage of Customers Who Bought At Least One Ticket
--------------------------------------------------------
16.52
(1 row)
-- left outer join:
SELECT round(100 * count(DISTINCT tickets.customer_id) /
(count(DISTINCT customers.id)::NUMERIC(8, 2)), 2)
AS "Percentage of Customers Who Bought At Least One Ticket"
FROM customers LEFT OUTER JOIN tickets
ON customers.id = tickets.customer_id;
Percentage of Customers Who Bought At Least One Ticket
--------------------------------------------------------
16.52
(1 row)
5. Write a query that returns the name of each event and how many tickets were
sold for it, in order from most popular to least popular.
SELECT events.name AS "Event Name",
count(tickets.id) AS "Tickets Sold"
FROM events LEFT OUTER JOIN tickets
ON events.id = tickets.event_id
GROUP BY "Event Name"
ORDER BY "Tickets Sold" DESC;
Event Name | Tickets Sold
----------------------------+--------------
A-Bomb | 555
Captain Deadshot Wolf | 541
Illustrious Firestorm | 521
Siren I | 457
Kool-Aid Man | 439
Green Husk Strange | 414
Ultra Archangel IX | 359
Red Hope Summers the Fated | 307
Magnificent Stardust | 134
Red Magus | 56
(10 rows)
6. Write a query that returns the user id, email address, and number of events
for all customers that have purchased tickets to three events.
SELECT customers.id AS "user id",
customers.email,
count(DISTINCT events.id) AS "number of events"
FROM customers INNER JOIN tickets ON customers.id = tickets.customer_id
INNER JOIN events ON events.id = tickets.event_id
GROUP BY "user id"
HAVING count(DISTINCT events.id) >= 3;
user id | email | number of events
---------+--------------------------------------+------------------
141 | isac.hayes@herzog.net | 3
326 | tatum.mraz@schinner.org | 3
624 | adelbert.yost@kleinwisozk.io | 3
1719 | lionel.feeney@metzquitzon.biz | 3
2058 | angela.ruecker@reichert.co | 3
3173 | audra.moore@beierlowe.biz | 3
4365 | ephraim.rath@rosenbaum.org | 3
6193 | gennaro.rath@mcdermott.co | 3
7175 | yolanda.hintz@binskshlerin.com | 3
7344 | amaya.goldner@stoltenberg.org | 3
7975 | ellen.swaniawski@schultzemmerich.net | 3
9978 | dayana.kessler@dickinson.io | 3
7. Write a query to print out a report of all tickets purchased by the customer
with the email address 'gennaro.rath@mcdermott.co'. The report should include
the event name and starts_at and the seat''s section name, row, and seat number.
SELECT tickets.id AS "ticket id",
events.name AS "event name",
events.starts_at AS "start time",
sections.name AS "section",
seats.row AS "seat row",
seats.number AS "seat number"
FROM tickets INNER JOIN customers ON tickets.customer_id = customers.id
INNER JOIN events ON tickets.event_id = events.id
INNER JOIN seats ON tickets.seat_id = seats.id
INNER JOIN sections ON seats.section_id = sections.id
WHERE customers.email = 'gennaro.rath@mcdermott.co';
ticket id | event name | start time | section | seat row | seat number
-----------+--------------------+---------------------+---------------+----------+-------------
113 | Kool-Aid Man | 2016-06-14 20:00:00 | Lower Balcony | H | 10
114 | Kool-Aid Man | 2016-06-14 20:00:00 | Lower Balcony | H | 11
2778 | Green Husk Strange | 2016-02-28 18:00:00 | Orchestra | O | 14
2779 | Green Husk Strange | 2016-02-28 18:00:00 | Orchestra | O | 15
2780 | Green Husk Strange | 2016-02-28 18:00:00 | Orchestra | O | 16
3682 | Ultra Archangel IX | 2016-05-23 18:00:00 | Upper Balcony | G | 7
3683 | Ultra Archangel IX | 2016-05-23 18:00:00 | Upper Balcony | G | 8
|
-- Adminer 4.3.1 MySQL dump
SET NAMES utf8;
SET time_zone = '+00:00';
SET foreign_key_checks = 0;
SET sql_mode = 'NO_AUTO_VALUE_ON_ZERO';
DROP TABLE IF EXISTS `commande`;
CREATE TABLE `commande` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`nom` varchar(80) NOT NULL,
`prenom` varchar(80) NOT NULL,
`mail` varchar(80) NOT NULL,
`livraison` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`token` varchar(255) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
INSERT INTO `commande` (`id`, `nom`, `prenom`, `mail`, `livraison`, `token`) VALUES
(1, 'test', 'test', 'zfzfzfz', '0000-00-00 00:00:00', NULL),
(2, 'test', 'test', 'zfzfzfz', '0000-00-00 00:00:00', '5a3253c040411');
-- 2017-12-14 10:43:27
|
-- MySQL dump 10.13 Distrib 8.0.17, for macos10.14 (x86_64)
--
-- Host: localhost Database: eteaching
-- ------------------------------------------------------
-- Server version 8.0.17
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!50503 SET NAMES utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `adonis_schema`
--
DROP TABLE IF EXISTS `adonis_schema`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `adonis_schema` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8mb4_general_ci DEFAULT NULL,
`batch` int(11) DEFAULT NULL,
`migration_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `adonis_schema`
--
LOCK TABLES `adonis_schema` WRITE;
/*!40000 ALTER TABLE `adonis_schema` DISABLE KEYS */;
INSERT INTO `adonis_schema` VALUES (1,'1503250034279_user',1,'2019-09-30 22:21:52'),(2,'1503250034280_token',1,'2019-09-30 22:21:52');
/*!40000 ALTER TABLE `adonis_schema` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `tokens`
--
DROP TABLE IF EXISTS `tokens`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tokens` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`user_id` int(10) unsigned DEFAULT NULL,
`token` varchar(255) COLLATE utf8mb4_general_ci NOT NULL,
`type` varchar(80) COLLATE utf8mb4_general_ci NOT NULL,
`is_revoked` tinyint(1) DEFAULT '0',
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `tokens_token_unique` (`token`),
KEY `tokens_user_id_foreign` (`user_id`),
KEY `tokens_token_index` (`token`),
CONSTRAINT `tokens_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `tokens`
--
LOCK TABLES `tokens` WRITE;
/*!40000 ALTER TABLE `tokens` DISABLE KEYS */;
/*!40000 ALTER TABLE `tokens` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `users`
--
DROP TABLE IF EXISTS `users`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `users` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`nome` varchar(80) COLLATE utf8mb4_general_ci NOT NULL,
`rg` varchar(80) COLLATE utf8mb4_general_ci NOT NULL,
`cpf` varchar(80) COLLATE utf8mb4_general_ci NOT NULL,
`orgaoemissor` varchar(80) COLLATE utf8mb4_general_ci NOT NULL,
`cep` int(8) DEFAULT NULL,
`logradouro` varchar(80) COLLATE utf8mb4_general_ci DEFAULT NULL,
`numero` varchar(45) COLLATE utf8mb4_general_ci DEFAULT NULL,
`bairro` varchar(80) COLLATE utf8mb4_general_ci DEFAULT NULL,
`completo` varchar(45) COLLATE utf8mb4_general_ci DEFAULT NULL,
`cidade` varchar(80) COLLATE utf8mb4_general_ci DEFAULT NULL,
`uf` varchar(2) COLLATE utf8mb4_general_ci DEFAULT NULL,
`email` varchar(254) COLLATE utf8mb4_general_ci NOT NULL,
`password` varchar(60) COLLATE utf8mb4_general_ci NOT NULL,
`professor` tinyint(4) DEFAULT '0',
`formacao` varchar(45) COLLATE utf8mb4_general_ci DEFAULT NULL,
`faculdade` varchar(45) COLLATE utf8mb4_general_ci DEFAULT NULL,
`anoinicio` varchar(45) COLLATE utf8mb4_general_ci DEFAULT NULL,
`anotermino` varchar(45) COLLATE utf8mb4_general_ci DEFAULT NULL,
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `users_rg_unique` (`rg`),
UNIQUE KEY `users_cpf_unique` (`cpf`),
UNIQUE KEY `users_email_unique` (`email`)
) ENGINE=InnoDB AUTO_INCREMENT=14 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `users`
--
LOCK TABLES `users` WRITE;
/*!40000 ALTER TABLE `users` DISABLE KEYS */;
INSERT INTO `users` VALUES (13,'Lucas Melo','37375845-5','461.974.848-03','SSP',12211110,'Travessa Constantino Pintus','21','Vila Rossi',NULL,'São José dos Campos','SP','lucasmelo@protonmail.com','$2a$10$e/3aanAM87hPUOnjLRgdWOwhcaU0vE23dqrmGoozdlHDfSKEsfbdu',1,'Desenvolvimento de Sistemas','FATEC','2016','2020','2019-09-30 21:23:33','2019-09-30 21:24:18');
/*!40000 ALTER TABLE `users` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2019-09-30 21:31:26
|
-- phpMyAdmin SQL Dump
-- version 5.0.2
-- https://www.phpmyadmin.net/
--
-- Host: 127.0.0.1
-- Generation Time: Sep 21, 2020 at 11:52 AM
-- Server version: 10.4.13-MariaDB
-- PHP Version: 7.2.32
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: `school_db`
--
-- --------------------------------------------------------
--
-- Table structure for table `students`
--
CREATE TABLE `students` (
`s_id` int(11) NOT NULL,
`firstname` varchar(255) NOT NULL,
`surname` varchar(255) NOT NULL,
`number` varchar(255) NOT NULL,
`email` varchar(255) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `students`
--
INSERT INTO `students` (`s_id`, `firstname`, `surname`, `number`, `email`) VALUES
(1, 'Ajie', 'Takon', '08168496216', 'nkimajie2@gmail.com'),
(5, 'okon', 'akan', '08123111112', 'okon@gmail.com'),
(6, 'okon', 'john', '08168496216', 'calabarplaylist@gmail.com'),
(8, 'okon', 'john', '08161116224', 'playlist@gmail.com'),
(9, 'ogar', 'obi', '08184228199', 'xtreme@gmail.com');
--
-- Indexes for dumped tables
--
--
-- Indexes for table `students`
--
ALTER TABLE `students`
ADD PRIMARY KEY (`s_id`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `students`
--
ALTER TABLE `students`
MODIFY `s_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=10;
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 PROCEDURE usp_InserRole(@id int,@name varchar(10))
AS
BEGIN
INSERT INTO Roles(Role_ID,Role_name) VALUES(@id,@name);
END
|
CREATE TABLE Tbl_Product_Sales
(
fld_product_id varchar(10) NOT NULL, -- internal identification code of product sold
fld_sale_id varchar(10) NOT NULL, -- internal identfication code of sales transaction
fld_product_quantity int Default 1, -- quantity of purchased product
fld_product_unit_price decimal(7,2), -- unit price of purchased product
PRIMARY KEY (fld_product_id, fld_sale_id)
)
|
use sakila;
-- How many distinct (different) actors' last names are there?
select count(distinct last_name)
from actor;
-- In how many different languages where the films originally produced? (Use the column language_id from the film table)
select count(distinct language_id)
from film;
-- How many movies were released with "PG-13" rating?
select count(film_id)
from film
where rating = 'PG-13';
-- Get 10 the longest movies from 2006.
select film_id, title, length
from film
where release_year = '2006'
order by length desc
limit 10;
-- How many days has been the company operating (check DATEDIFF() function)?
select min(convert(rental_date, date)) as first_rental, max(convert(rental_date, date)) as most_recent_rental,
datediff(max(convert(rental_date, date)), min(convert(rental_date, date))) as operational_days
from rental;
-- alternative
SELECT DATEDIFF(MAX(rental_date), MIN(rental_date)) AS active_days
FROM rental;
-- Show rental info with additional columns month and weekday. Get 20.
select *, date_format(convert(rental_date, date), '%M') as rental_month,
dayname(convert(rental_date, date)) as rental_weekday
from rental
limit 20;
-- Add an additional column day_type with values 'weekend' and 'workday' depending on the rental day of the week. Check the CASE function.
select *,
case
when weekday(convert(rental_date, date)) >= 5 then 'weekend'
else 'workday'
end as day_type
from rental
limit 20;
-- How many rentals were in the last month of activity?
select count(rental_id)
from rental
where rental_date >= (select max(rental_date) from rental) - interval 30 day;
-- alternatives
select count(*)
from rental
where date(rental_date) between date('2006-01-15') and date('2006-02-14');
SELECT count(*)
FROM rental
WHERE date_format(convert(substring_index(rental_date, ' ', 1), date), '%Y%m') = date_format(date_add('2005-06-19', interval -1 month), '%Y%m');
|
CREATE TABLE School
(
id BIGINT AUTO_INCREMENT,
name VARCHAR(50) NOT NULL ,
content VARCHAR(100),
del INT DEFAULT 1,
version INT DEFAULT 1,
create_date TIMESTAMP DEFAULT CURRENT_TIMESTAMP ,
modify_date TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (id)
);
DROP TABLE school;
CREATE TABLE Grade
(
id BIGINT AUTO_INCREMENT,
name VARCHAR(50) NOT NULL,
school_id BIGINT NOT NULL ,
content VARCHAR(100),
del INT DEFAULT 1,
version INT DEFAULT 1,
create_date TIMESTAMP DEFAULT CURRENT_TIMESTAMP ,
modify_date TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (id)
);
DROP TABLE grade;
CREATE TABLE CourseType
(
id CHAR(20) NOT NULL ,
name VARCHAR(100) NOT NULL ,
del INT DEFAULT 1,
version INT DEFAULT 1,
create_date TIMESTAMP DEFAULT CURRENT_TIMESTAMP ,
modify_date TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (id)
);
DROP TABLE coursetype;
CREATE TABLE Course
(
id CHAR(20) NOT NULL,
name VARCHAR(100) NOT NULL,
content VARCHAR(100) NOT NULL ,
grade_id BIGINT NOT NULL ,
course_type_id CHAR(20),
del INT DEFAULT 1,
version INT DEFAULT 1,
create_date TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
modify_date TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (id)
);
DROP TABLE course;
CREATE TABLE Question
(
id BIGINT AUTO_INCREMENT,
course_id CHAR(20) NOT NULL ,
points BIGINT NOT NULL ,
user_id CHAR(20) NOT NULL ,
title VARCHAR(100) NOT NULL ,
content VARCHAR(100) NOT NULL ,
photo1 VARCHAR(100),
photo2 VARCHAR(100),
photo3 VARCHAR(100),
del INT DEFAULT 1,
version INT DEFAULT 1,
create_date TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
modify_date TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (id)
);
DROP TABLE Question;
CREATE TABLE Comment
(
id BIGINT AUTO_INCREMENT,
question_id BIGINT NOT NULL ,
user_id CHAR(20) NOT NULL ,
content VARCHAR(100) NOT NULL ,
photo1 VARCHAR(100),
photo2 VARCHAR(100),
photo3 VARCHAR(100),
del INT DEFAULT 1,
version INT DEFAULT 1,
create_date TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
modify_date TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (id)
);
DROP TABLE comment;
CREATE TABLE Notice
(
id BIGINT AUTO_INCREMENT ,
course_id CHAR(20) NOT NULL ,
content VARCHAR(100) NOT NULL ,
photo1 VARCHAR(100),
photo2 VARCHAR(100),
photo3 VARCHAR(100),
del INT DEFAULT 1,
version INT DEFAULT 1,
create_date TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
modify_date TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (id)
);
DROP TABLE notice;
CREATE TABLE Winner
(
id BIGINT AUTO_INCREMENT,
question_id BIGINT NOT NULL ,
user_id CHAR(60) NOT NULL ,
del INT DEFAULT 1,
version INT DEFAULT 1,
create_date TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
modify_date TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (id)
);
DROP TABLE winner;
|
/*
Navicat MySQL Data Transfer
Source Server : localhost
Source Server Version : 50621
Source Host : localhost:3306
Source Database : pem
Target Server Type : MYSQL
Target Server Version : 50621
File Encoding : 65001
Date: 2015-11-05 17:46:39
*/
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for bank_running_water
-- ----------------------------
DROP TABLE IF EXISTS `bank_running_water`;
CREATE TABLE `bank_running_water` (
`id` int(11) NOT NULL,
`userID` int(11) DEFAULT NULL,
`running_name` varchar(255) COLLATE utf8_bin DEFAULT NULL COMMENT '流水名称',
`sum` varchar(255) COLLATE utf8_bin DEFAULT NULL COMMENT '流水金额',
`status` int(255) DEFAULT NULL COMMENT '0代表存入,1代表支出',
`bank_balance` float(255,0) DEFAULT NULL COMMENT '卡内余额',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
-- ----------------------------
-- Table structure for consume_detail
-- ----------------------------
DROP TABLE IF EXISTS `consume_detail`;
CREATE TABLE `consume_detail` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`user_id` int(11) DEFAULT NULL,
`consume_name` varchar(255) COLLATE utf8_bin DEFAULT NULL COMMENT '消费事由',
`consume_sum` float unsigned zerofill DEFAULT NULL COMMENT '消费金额',
`consume_date` date DEFAULT NULL COMMENT '消费时间',
`consume_address` varchar(255) COLLATE utf8_bin DEFAULT NULL COMMENT '消费地点',
`consume_reason` varchar(255) COLLATE utf8_bin DEFAULT NULL COMMENT '消费原因',
`record_ip` varchar(255) COLLATE utf8_bin DEFAULT NULL COMMENT '录入设备api地址',
`isNeed` int(11) DEFAULT NULL COMMENT '是否是必要开销 0 是,1 不是',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=142 DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
-- ----------------------------
-- Table structure for pem_bank
-- ----------------------------
DROP TABLE IF EXISTS `pem_bank`;
CREATE TABLE `pem_bank` (
`id` int(11) NOT NULL,
`user_id` int(11) DEFAULT NULL COMMENT '用户表id',
`bankCode` varchar(255) COLLATE utf8_bin DEFAULT NULL COMMENT '银行卡卡号',
`bankName` varchar(255) COLLATE utf8_bin DEFAULT NULL COMMENT '银行卡名称',
`type` int(11) DEFAULT NULL COMMENT '银行卡类型,0代表借记卡,1代表信用卡',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
-- ----------------------------
-- Table structure for pem_wage
-- ----------------------------
DROP TABLE IF EXISTS `pem_wage`;
CREATE TABLE `pem_wage` (
`id` int(11) NOT NULL,
`user_id` varchar(255) COLLATE utf8_bin DEFAULT NULL,
`bankId` int(11) DEFAULT NULL COMMENT '银行卡ID',
`sum` varchar(255) COLLATE utf8_bin DEFAULT NULL COMMENT '所发工资',
`wage_date` date DEFAULT NULL COMMENT '工资发放时间',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
-- ----------------------------
-- Table structure for take_money
-- ----------------------------
DROP TABLE IF EXISTS `take_money`;
CREATE TABLE `take_money` (
`id` int(11) NOT NULL,
`address` varchar(255) COLLATE utf8_bin DEFAULT NULL COMMENT '取钱记录',
`sum` float(255,0) DEFAULT NULL COMMENT '所取金额',
`bank_id` int(11) DEFAULT NULL COMMENT '银行卡卡号',
`take_date` date DEFAULT NULL COMMENT '取钱时间',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
|
-- For example, given the above Employee table, the nth highest salary where n = 2 is 200. If there is no nth highest salary, then the query should return null.
CREATE FUNCTION getNthHighestSalary(N INT) RETURNS INT
BEGIN
DECLARE M INT;
SET M=N-1;
RETURN (
# Write your MySQL query statement below.
SELECT DISTINCT Salary FROM Employee ORDER BY Salary DESC LIMIT M, 1
);
END
|
select * from confirmed_task where confirmation_id = $1;
|
CREATE TABLE users(username varchar(255) primary key not null, pagequota unsigned int, lastjob datetime, pagecount unsigned int);
CREATE TABLE config(key varchar(255), value unsigned int);
INSERT INTO config (key, value) VALUES ( "lastupdate", strftime('%s', 'now') );
|
-- phpMyAdmin SQL Dump
-- version 3.4.11.1deb2
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: Jun 05, 2014 at 06:47 PM
-- Server version: 5.5.35
-- PHP Version: 5.4.4-14+deb7u9
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: `imagestore`
--
-- --------------------------------------------------------
--
-- Table structure for table `people`
--
CREATE TABLE IF NOT EXISTS `people` (
`id` int(10) NOT NULL AUTO_INCREMENT,
`fname` varchar(30) NOT NULL,
`lname` varchar(40) NOT NULL,
`filename` varchar(50) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `fname` (`fname`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=5 ;
--
-- Dumping data for table `people`
--
INSERT INTO `people` (`id`, `fname`, `lname`, `filename`) VALUES
(2, 'lohith', 'mintu', 'logo1.jpg'),
(3, 'mintu', 'lohith', 'logo2.png'),
(4, 'test', 'harish', 'logo.png');
/*!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 */;
|
#Changement de mail OK
UPDATE `user`
SET
`mail_user` = :mail,
`clef_user` = :clef
WHERE
`login_user` = :login
|
-- q1
select course_id from section where semester = 'Fall' and year = 2009
UNION
select course_id from section where semester = 'Spring' and year = 2010;
-- q2
select course_id from section where semester = 'Fall' and year = 2009
INTERSECT
select course_id from section where semester = 'Spring' and year = 2010;
-- q3
select course_id from section where semester = 'Fall' and year = 2009
MINUS
select course_id from section where semester = 'Spring' and year = 2010;
-- q4
-- select course_id,count(*)
-- from takes
-- group by course_id;
select *
from course natural join takes
where takes.course_id = NULL;
select title
from course
where course_id not in
(
select course_id
from takes
);
-- q5
select distinct course_id
from section
where semester = 'Fall' and year = 2009 and
course_id in
(select course_id
from section
where semester = 'Spring' and year = 2010);
-- q6
select count(distinct ID)
from takes
where (course_id,sec_id,semester,year)
in
(select course_id,sec_id,semester,year
from teaches
where teaches.ID = 10101);
-- q7
select distinct course_id
from section
where semester = 'Fall' and year = 2009 and
course_id not in
(select course_id
from section
where semester = 'Spring' and year = 2010);
-- q8
select S.name
from student S
where S.name in
(select I.name
from instructor I);
-- Better
select * from instructor,student where instructor.name = student.name;
-- q9
select * -- can be only name
from instructor A
where A.salary > some
(select salary
from instructor B
where B.dept_name = 'Biology');
-- Better
select * -- can be only name
from instructor A
where A.salary >
(select min(salary)
from instructor B
where B.dept_name = 'Biology');
-- q10
select * -- can be only name
from instructor A
where A.salary > all
(select salary
from instructor B
where B.dept_name = 'Biology');
-- q11
-- select *
-- from instructor A
-- where (A.dept_name,A.salary) in
-- (select B.dept_name,avg(B.salary)
-- from instructor B
-- group by B.dept_name);
select A.dept_name,avg(A.salary)
from instructor A
group by A.dept_name
having avg(A.salary) >= all
(select avg(B.salary)
from instructor B
group by B.dept_name);
-- -- Brute Force Check
-- select dept_name , avg(salary)
-- from instructor
-- group by dept_name;
-- q12
select dept_name
from department
where budget <
(select avg(salary)
from instructor);
-- q13
select course_id
from section S
where S.semester = 'Fall' and year = 2009 and
exists
(select course_id
from section T
where T.semester = 'Spring' and T.year = 2010);
-- q14
-- -- NOT Working
-- select distinct S.ID,S.name
-- from student S
-- where not exists
-- ((select course_id
-- from course
-- where dept_name = 'Biology')
-- )
-- MINUS
-- (select T.course_id
-- from takes T
-- where S.ID = T.ID));
-- from Nishkal
select distinct S.ID,S.name
from student S
where not exists
((select course_id
from course
where dept_name = 'Biology')
minus
(select course_id
from takes t
where t.id = s.id));
-- q15
select T.course_id
from course T
where unique
(select R.course_id
from section R
where R.year = 2009 and R.course_id = T.course_id);
select T.course_id
from course T
where 1>=
(select count(R.course_id)
from section R
where R.year = 2009 and R.course_id = T.course_id);
-- q16
-- select * from student;
-- select * from takes;
-- select *
-- from student S inner join takes T on (S.id = T.id);
-- Cheap Trick
select name
from student S , takes T, course C
where
S.ID = T.ID
and T.course_id = C.course_id
and T.course_id like 'CS%'
group by name
having count(name) >=2;
-- select *
-- from course C
-- where C.dept_name = 'Comp. Sci.';
-- q17 (Be careful with the inner table)
select dept_name, AVG_SALARY
from (select dept_name,avg(salary) as AVG_SALARY
from instructor
group by dept_name)
where AVG_SALARY > 42000;
-- q18
create view all_courses as
(select course.course_id,sec_id,building,room_number
from course,section
where
course.course_id = section.course_id
and section.semester='Fall'
and section.year=2009
and course.dept_name='Physics');
-- q19
select course_id
from all_courses;
-- q20
create view department_total_salary as
(select dept_name,sum(salary) as total_salary
from instructor
group by dept_name);
|
--Building Classes
INSERT INTO BuildingClasses
(Type, DefaultBuilding, Description)
VALUES ('BUILDINGCLASS_RELIC_HAN', 'BUILDING_RELIC_HAN', 'TXT_KEY_BUILDING_RELIC_HAN');
--================================================================
--Building Definitions
--================================================================
--Culture Dummy
INSERT INTO Buildings
(Type, Description, Cost, FaithCost, PrereqTech, BuildingClass, GreatWorkCount, IconAtlas, PortraitIndex)
VALUES ('BUILDING_RELIC_HAN_CULTUREDUMMY', 'TXT_KEY_BUILDING_RELIC_CULTUREDUMMY_DESC', -1, -1, NULL, 'BUILDINGCLASS_RELIC_HAN', -1, 13, 'BW_ATLAS_1');
INSERT INTO Building_YieldChanges
(BuildingType, YieldType, Yield)
VALUES ('BUILDING_RELIC_HAN_CULTUREDUMMY', 'YIELD_CULTURE', 1);
--Science Dummy
INSERT INTO Buildings
(Type, Description, Cost, FaithCost, PrereqTech, BuildingClass, GreatWorkCount, IconAtlas, PortraitIndex)
VALUES ('BUILDING_RELIC_HAN_SCIENCEDUMMY', 'TXT_KEY_BUILDING_RELIC_SCIENCEDUMMY_DESC', -1, -1 NULL, 'BUILDINGCLASS_RELIC_HAN', -1, 13, 'BW_ATLAS_1');
INSERT INTO Building_YieldChanges
(BuildingType, YieldType, Yield)
VALUES ('BUILDING_RELIC_HAN_SCIENCEDUMMY', 'YIELD_SCIENCE', 1);
INSERT INTO Buildings
(Type, BuildingClass, Cost, SpecialistType, Happiness, SpecialistCount, GoldMaintenance, PrereqTech, Description, Help, Civilopedia, Strategy, ArtDefineTag, MinAreaSize, NeverCapture, Espionage, EspionageModifier, HurryCostModifier, PortraitIndex, IconAtlas)
SELECT 'BUILDING_RELIC_SILU_YIZHAN', BuildingClass, Cost, SpecialistType, Happiness, SpecialistCount, GoldMaintenance, PrereqTech, 'TXT_KEY_BUILDING_RELIC_SILU_YIZHAN', 'TXT_KEY_BUILDING_SILU_YIZHAN_HELP', 'TXT_KEY_CIV5_RELIC_SILU_YIZHAN_TEXT', 'TXT_KEY_BUILDING_RELIC_SILU_YIZHAN_STRATEGY', ArtDefineTag, MinAreaSize, NeverCapture, Espionage, EspionageModifier, HurryCostModifier, 3, 'RELIC_HAN_ATLAS'
FROM Buildings WHERE Type = 'BUILDING_CARAVANSARY';
--Flavors, wut do these do?
INSERT INTO Building_Flavors
(BuildingType, FlavorType, Flavor)
SELECT 'BUILDING_RELIC_SILU_YIZHAN', FlavorType, Flavor
FROM Building_Flavors WHERE BuildingType = 'BUILDING_CARAVANSARY';
--Text
INSERT INTO Language_en_US
(Tag, Text)
VALUES ('TXT_KEY_BUILDING_RELIC_SILU_YIZHAN', 'Silu Yizhan'),
('TXT_KEY_CIV5_RELIC_SILU_YIZHAN_TEXT', 'The Silk Road was dotted with outposts dedicated to trade. In these bustling hubs, ideas and gold flowed freely, leading to a distinct culture and significant scientific advancements from sharing.'),
('TXT_KEY_BUILDING_SILU_YIZHAN_STRATEGY', 'Silu Yizhan'),
('TXT_KEY_BUILDING_RELIC_SILU_YIZHAN_HELP', 'Replaces the Caravansary. Gain 50% extra [ICON_SCIENCE] and +1 [ICON_CULTURE] from each trade route.'),
|
INSERT INTO artist (name)
VALUES ('Jinglin_Joe'), ('Buckets_Mitchell'), ('Stifle_Tower');
SELECT * FROM artist
WHERE name ILIKE 'a%'
ORDER BY name ASC
LIMIT 5;
SELECT first_name, last_name FROM employee
WHERE city = ('Calgary')
SELECT * FROM employee
WHERE reports_to = 2;
SELECT COUNT(*) FROM employee
WHERE city = 'Lethbridge';
SELECT COUNT(*) FROM invoice
WHERE billing_country = 'USA';
SELECT MAX(total) FROM invoice;
SELECT MIN(total) FROM invoice;
SELECT * FROM invoice
WHERE total > 5;
SELECT COUNT(*) FROM invoice
WHERE total < 5;
SELECT SUM(total * quantity) FROM invoice;
SELECT * FROM invoice
JOIN invoice_line ON invoice.invoice_id = invoice_line.invoice_id
WHERE unit_price > 0.99;
SELECT customer.customer_id, customer.first_name, customer.last_name, invoice.customer_id, invoice.invoice_date, invoice.total FROM invoice
JOIN customer ON customer.customer_id = invoice.customer_id;
SELECT customer.first_name, customer.last_name, employee.first_name, employee.last_name, FROM customer
JOIN employee ON customer.support_rep_id = employee.employee_id;
SELECT album.title, artist.name, FROM album
JOIN artist ON artist.artist_id = album.artist_id;
|
CREATE TABLE categories (
-- database keys
id integer not null,
-- primary data
title text not null unique,
slug text not null unique,
-- secondary data
description text ,
priority integer not null default (3),
-- server information
created numeric not null default (strftime('%s', 'now')),
-- database wrangling
PRIMARY KEY (id)
);
|
--Query 1:
CREATE TABLE AUTHORS (id SERIAL PRIMARY KEY, name VARCHAR(255));
--This query will create a second table in the lab14_normal database named authors. Confirm the success of this command by typing \d authors in your SQL shell. You should see the authors table schema, as shown above.
--Query 2:
INSERT INTO authors(name) SELECT DISTINCT author FROM books;
--This query will use a simple subquery to retrieve unique author values from the books table and insert each one into the authors table in the name column. This is a great pattern for copying lots of data between tables.
--Confirm the success of this command by typing SELECT COUNT(*) FROM authors; in your SQL shell. The number should be greater than zero.
--Query 3:
ALTER TABLE books ADD COLUMN author_id INT;
--This query will add a column to the books table named author_id. This will connect each book to a specific author in the other table.
--Confirm the success of this command by typing \d books in your SQL shell. The table schema should now include a column for author_id, in addition to the column for the string author; the author column will be removed in Query 5.
--Query 4:
UPDATE books SET author_id=author.id FROM (SELECT * FROM authors) AS author WHERE books.author = author.name;
--This query will prepare a connection between the two tables. It works by running a subquery for every row in the books table. The subquery finds the author row that has a name matching the current book's author value. The id of that author row is then set as the value of the author_id property in the current book row.
--Confirm the success of this command by typing SELECT author_id FROM books; in your SQL shell. The result should display a column containing the unique ids for the authors. The numbers should match the total number returned from Query 2 when you confirmed the success of the insertion of names into the authors table.
--Query 5:
ALTER TABLE books DROP COLUMN author;
--his query will modify the books table by removing the column named author. Now that the books table contains a author_id column which will become a foreign key, your table does not need to contain a string representing each author.
--Confirm the success of this command by typing \d books in your SQL shell. The books table schema should be updated to reflect the schema provided above, without the author column.
--Query 6:
ALTER TABLE books ADD CONSTRAINT fk_authors FOREIGN KEY (author_id) REFERENCES authors(id);
--This query will modify the data type of the author_id in the books table, setting it as a foreign key which references the primary key in the authors table. Now PostgreSQL knows HOW these 2 tables are connected.
--Confirm the success of this command by typing \d books in your SQL shell. You should see details about the foreign key constraints, as shown in the schema above.
|
insert into TODO values (10001, 'Learn spring 5', false, sysdate(), 'yusuf');
insert into TODO values (10002, 'Learn kubernetes', false, sysdate(), 'yusuf');
insert into TODO values (10003, 'Learn chef', false, sysdate(), 'yusuf');
|
# ************************************************************
# Sequel Pro SQL dump
# Version 4541
#
# http://www.sequelpro.com/
# https://github.com/sequelpro/sequelpro
#
# Host: 127.0.0.1 (MySQL 5.7.32)
# Database: phpmvc
# Generation Time: 2021-06-15 03:53:31 +0000
# ************************************************************
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
# Dump of table task
# ------------------------------------------------------------
DROP TABLE IF EXISTS `task`;
CREATE TABLE `task` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`task_name` varchar(50) NOT NULL DEFAULT '',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8;
LOCK TABLES `task` WRITE;
/*!40000 ALTER TABLE `task` DISABLE KEYS */;
INSERT INTO `task` (`id`, `task_name`)
VALUES
(2,'Readinger'),
(3,'Sleepinger'),
(4,'Eatinger'),
(5,'Eater');
/*!40000 ALTER TABLE `task` ENABLE KEYS */;
UNLOCK TABLES;
# Dump of table user
# ------------------------------------------------------------
DROP TABLE IF EXISTS `user`;
CREATE TABLE `user` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`username` varchar(50) NOT NULL DEFAULT '',
`fullname` varchar(100) NOT NULL DEFAULT '',
`password` varchar(100) NOT NULL DEFAULT '',
PRIMARY KEY (`id`),
UNIQUE KEY `nickname` (`username`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
LOCK TABLES `user` WRITE;
/*!40000 ALTER TABLE `user` DISABLE KEYS */;
INSERT INTO `user` (`id`, `username`, `fullname`, `password`)
VALUES
(1,'Aziz','Abdul Aziz','$2y$10$8HgFTuGaqjHXpf.49pkFnuXzKsyaTg5jcKOaBjEHUXlsjQqXJvMlm');
/*!40000 ALTER TABLE `user` ENABLE KEYS */;
UNLOCK TABLES;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
LOAD DATA LOCAL INFILE "room.csv"
INTO TABLE Room
FIELDS TERMINATED BY ",";
LOAD DATA LOCAL INFILE "user.csv"
INTO TABLE User
FIELDS TERMINATED BY ",";
LOAD DATA LOCAL INFILE "userDepartment.csv"
INTO TABLE UserDepartment
FIELDS TERMINATED BY ",";
LOAD DATA LOCAL INFILE "event.dat"
INTO TABLE Event
FIELDS TERMINATED BY "<>";
|
show columns from STK_XQ_POST;
select * from STK_XQ_POST;
insert into STK_XQ_POST values (1, CURRENT_TIMESTAMP, false, 10, 'text', 'title', 'avatar_url', 100, null, false, null);
insert into STK_XQ_POST values (2, CURRENT_TIMESTAMP, true, 5, 'text123', 'title123', 'avatar_url', 160, null, false, null);
update STK_XQ_POST set is_read=false ;
alter table STK_XQ_POST add followers_Count integer(10)
|
DROP TABLE IF EXISTS chat;
CREATE TABLE chat (
chat_id serial NOT NULL,
sender_id int default 0,
message varchar(255) NOT NULL,
date timestamp without time zone NOT NULL default now()
);
ALTER TABLE chat OWNER TO developers;
GRANT ALL ON TABLE chat TO developers;
|
-- phpMyAdmin SQL Dump
-- version 4.9.1
-- https://www.phpmyadmin.net/
--
-- Host: 127.0.0.1
-- Generation Time: Dec 23, 2019 at 05:33 PM
-- Server version: 10.4.8-MariaDB
-- PHP Version: 7.3.10
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET AUTOCOMMIT = 0;
START TRANSACTION;
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
--
-- Database: `rdbmss`
--
-- --------------------------------------------------------
--
-- Table structure for table `prod_details`
--
CREATE TABLE `prod_details` (
`prod_id` varchar(10) NOT NULL,
`prod_spec` varchar(1000) DEFAULT NULL,
`manufacturer_details` varchar(500) DEFAULT NULL,
`importer_details` varchar(500) DEFAULT NULL,
`packers_details` varchar(500) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `prod_details`
--
INSERT INTO `prod_details` (`prod_id`, `prod_spec`, `manufacturer_details`, `importer_details`, `packers_details`) VALUES
('1', 'super quality honey', 'adsdsd', 'dsads', 'sddds'),
('12', 'super quality', 'azaz', 'azaz', 'azaz'),
('20', 'healthy product', 'azz', 'zaz', 'zaz'),
('21', 'healthy', 'azaz', 'azaz', 'azaz'),
('22', 'healthy', 'xsxs', 'xsx', 'sxs'),
('24', 'good honey', 'xsx', 'sxx', 'sxsx'),
('29', 'good quality olives', 'cdccd', 'dcdc', 'dccd'),
('30', 'good quality', 'vfvfv', 'fvfv', 'fvfv'),
('33', 'dddddd', 'ddddd', 'ddddddd', 'ddddd'),
('34', 'dddddddd', 'ddd', 'dd', 'dddd'),
('35', 'ddddddddd', 'dddddddd', 'dddddddd', 'ddddddd'),
('37', 'aaaaaaaaa', 'aaaaaaaaa', 'aaaaaa', 'aaaaaaaa'),
('38', 'qqqqqq', 'qqqqqqq', 'qqqqqqq', 'qqqqqqqqq'),
('39', 'cccccc', 'ccccccccc', 'ccccccc', 'cccccc'),
('4', 'fine quality cocoa powder', 'x xcx', 'xcxc', 'cxcx'),
('40', 'ccccc', 'cccccc', 'cccccc', 'ccccccc'),
('41', 'qqqqqq', 'qqqqq', 'qqq', 'qqqqq'),
('42', 'df', 'dfd', 'dfd', 'dfd'),
('44', 'dfdf', 'dffd', 'fdfd', 'fdfd'),
('49', 'dfdfd', 'dfdf', 'dfdf', 'dfdf'),
('50', 'asasas', 'asasas', 'asasa', 'sass'),
('51', 'eded', 'ede', 'eded', 'eded'),
('54', 'edede', 'eded', 'eded', 'eded'),
('57', 'dede', 'dede', 'dded', 'eded'),
('60', 'eded', 'edded', 'eeded', 'edede');
--
-- Indexes for dumped tables
--
--
-- Indexes for table `prod_details`
--
ALTER TABLE `prod_details`
ADD PRIMARY KEY (`prod_id`);
--
-- Constraints for dumped tables
--
--
-- Constraints for table `prod_details`
--
ALTER TABLE `prod_details`
ADD CONSTRAINT `f7` FOREIGN KEY (`prod_id`) REFERENCES `prod` (`prod_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 fleet (
id char(3) not null primary key,
[name] varchar(50)
);
create table ship (
id char(3) not null primary key,
[name] varchar(50),
date_finished varchar(10),
fleet_id char(3) not null,
foreign key (fleet_id) references fleet(id)
);
create table sailor (
id char(4) not null primary key,
ship_id char(3) not null,
birth_date varchar(10),
duty varchar(50),
rank varchar(50),
duty_start_date varchar(10),
duty_end_date varchar(10),
foreign key (ship_id) references ship(id)
);
|
CREATE TABLE [wms].[Centros_Distribucion] (
[Id] INT IDENTITY (1, 1) NOT NULL,
[Codigo] VARCHAR (20) NOT NULL,
[Nombre] VARCHAR (50) NOT NULL,
[Id_Tipo_Centro_Distribucion] INT NOT NULL,
[Id_Operador_Centro_Distribucion] INT NOT NULL,
[Id_Direccion] INT NULL,
[Bodega_Rentas] BIT NOT NULL,
[Activo] BIT NOT NULL,
[Fecha_Actualizacion] DATETIME2 (0) NOT NULL,
[Usuario_Actualizacion] VARCHAR (50) NOT NULL,
CONSTRAINT [PK_Centros_Distribucion] PRIMARY KEY CLUSTERED ([Id] ASC),
CONSTRAINT [FK_Centros_Distribucion_Direcciones] FOREIGN KEY ([Id_Direccion]) REFERENCES [geo].[Direcciones] ([Id]),
CONSTRAINT [FK_Centros_Distribucion_Operadores_Centros_Distribucion] FOREIGN KEY ([Id_Operador_Centro_Distribucion]) REFERENCES [wms].[Operadores_Centros_Distribucion] ([Id]),
CONSTRAINT [FK_Centros_Distribucion_Tipos_Centro_Distribucion] FOREIGN KEY ([Id_Tipo_Centro_Distribucion]) REFERENCES [wms].[Tipos_Centro_Distribucion] ([Id]),
CONSTRAINT [UK_Centros_Distribucion_01_Codigo] UNIQUE NONCLUSTERED ([Codigo] ASC)
);
|
create database uriage;
create table uriage.hanbai(id int not null primary key, shouhin_id int, uriage int);
create table uriage.shouhin(id int not null primary key, name varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci);
create user 'testuser'@'localhost' identified by 'testuser’;
grant all on uriage.* to 'testuser'@'localhost’;
insert into uriage.shouhin values (1, 'テレビ'), (2, 'DVD'), (3, 'パソコン');
insert into uriage.hanbai values (1,1, 320000), (2,2, 160000), (3,3, 180000), (4,1, 128000), (5,3, 98000), (6,2, 140000), (7,1, 175000);
|
-- phpMyAdmin SQL Dump
-- version 5.0.2
-- https://www.phpmyadmin.net/
--
-- Host: 127.0.0.1
-- Waktu pembuatan: 29 Sep 2020 pada 16.39
-- Versi server: 10.4.13-MariaDB
-- Versi PHP: 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: `veggo`
--
DELIMITER $$
--
-- Prosedur
--
CREATE DEFINER=`root`@`localhost` PROCEDURE `sp_get_barang_by_id_reseller` (`idd` VARCHAR(191), `dates` DATE) NO SQL
BEGIN
SELECT id_user, id_barang, SUM(volume) as volume, SUM(harga) as harga, bobot_kemasan, SUM(harga_diskon) as harga_diskon
FROM keranjang_resellers JOIN parent_keranjang_resellers ON id_parent_keranjang=parent_keranjang_resellers.id
WHERE id_user=idd and status=0 and tanggal_pre_order=dates
GROUP BY id_barang, bobot_kemasan;
END$$
CREATE DEFINER=`root`@`localhost` PROCEDURE `sp_get_barang_by_kategori` (IN `nama_sub_kategori` VARCHAR(255), `tanggals` DATE) NO SQL
BEGIN
SELECT k.sub_kategori,b.* FROM kategoris k, barangs_groups bg, barangs b,barang_tanggals
WHERE b.id=barang_tanggals.`id_barang` AND tanggal=tanggals AND bg.id_kategori = k.id AND b.id = bg.id_barang AND k.sub_kategori = nama_sub_kategori;
END$$
CREATE DEFINER=`root`@`localhost` PROCEDURE `sp_get_barang_by_tanggal` (IN `date` DATE) NO SQL
BEGIN
select * from barangs join barang_tanggals on barangs.id=barang_tanggals.`id_barang` where tanggal=date;
END$$
CREATE DEFINER=`root`@`localhost` PROCEDURE `sp_get_barang_by_tanggal_and_jenis` (IN `date` DATE, `jeniss` VARCHAR(191)) NO SQL
BEGIN
SELECT * FROM barangs JOIN barang_tanggals ON barangs.id=barang_tanggals.`id_barang` WHERE tanggal=DATE and jenis=jeniss;
END$$
CREATE DEFINER=`root`@`localhost` PROCEDURE `sp_get_barang_by_tanggal_and_kategori` (IN `date` DATE, `kateg` VARCHAR(191)) NO SQL
BEGIN
SELECT * FROM barangs JOIN barang_tanggals ON barangs.id=barang_tanggals.`id_barang` WHERE tanggal=DATE AND id_kategori=kateg;
END$$
CREATE DEFINER=`root`@`localhost` PROCEDURE `sp_get_barang_by_tanggal_and_search` (IN `date` DATE, `search` VARCHAR(191)) NO SQL
BEGIN
SELECT * FROM barangs JOIN barang_tanggals ON barangs.id=barang_tanggals.`id_barang` WHERE tanggal=date AND nama LIKE CONCAT('%', search, '%');
END$$
CREATE DEFINER=`root`@`localhost` PROCEDURE `sp_get_barang_by_transaksi` (`idUser` VARCHAR(191)) BEGIN
select detail_transaksis.id, transaksis.id, transaksis.`id_user`, harga_diskon,harga_akhir_diskon, nama, volume, jenis, satuan, volume_kirim_kurir from transaksis
join detail_transaksis on transaksis.`id`=detail_transaksis.`id_transaksi`
join barangs on barangs.`id`=detail_transaksis.`id_barang`
where transaksis.id=idUser;
END$$
CREATE DEFINER=`root`@`localhost` PROCEDURE `sp_get_buyer_list` (IN `kode` VARCHAR(100), IN `date` DATE) NO SQL
BEGIN
SELECT b.kode,u.name FROM transaksis t
LEFT JOIN users u ON u.id = t.id_user
LEFT JOIN detail_transaksis dt ON dt.id_transaksi = t.id
LEFT JOIN barangs b ON b.id = dt.id_barang
WHERE t.tanggal_pre_order = date AND t.status = 1 AND b.kode = kode;
END$$
CREATE DEFINER=`root`@`localhost` PROCEDURE `sp_get_isi_paket` (IN `id_barang_parent` VARCHAR(255)) NO SQL
select barangs.nama, barangs.satuan, isi_pakets.volume
from barangs
inner join isi_pakets
on barangs.id = isi_pakets.id_barang
where isi_pakets.id_barang_parent = id_barang_parent$$
CREATE DEFINER=`root`@`localhost` PROCEDURE `sp_get_kurir_detail_barang` (IN `id_transaksi` VARCHAR(255)) NO SQL
select barangs.nama, detail_transaksis.volume_kirim_kurir, detail_transaksis.harga_akhir_diskon, transaksis.`total_bayar_akhir`,transaksis.`total_bayar`, barangs.jenis, barangs.id as barang_id, detail_transaksis.id as detail_transaksi_id
from detail_transaksis
inner join barangs
on detail_transaksis.id_barang = barangs.id
inner join transaksis
on detail_transaksis.id_transaksi = transaksis.id
where detail_transaksis.id_transaksi = id_transaksi$$
CREATE DEFINER=`root`@`localhost` PROCEDURE `sp_get_paket_akan_dikirim` (IN `id_kurir` VARCHAR(256)) NO SQL
select transaksis.nomor_invoice, users.name, alamats.alamat, alamats.blok_nomor, alamats.kecamatan, alamats.kotkab, alamats.kodepos, users.nomor_hp, transaksis.tanggal_pengiriman, alamats.lat, alamats.long, transaksis.id as transaksi_id
from transaksis
inner join users
on users.id = transaksis.id_user
inner join alamats
on alamats.id = transaksis.id_alamat
where transaksis.status = '5' and transaksis.id_kurir = id_kurir$$
CREATE DEFINER=`root`@`localhost` PROCEDURE `sp_get_paket_akan_dikirim_by_id_transaksi` (IN `id_transaksi` VARCHAR(255)) NO SQL
select transaksis.nomor_invoice, users.name, alamats.alamat,alamats.`info_tambahan`, alamats.blok_nomor, alamats.kecamatan, alamats.kotkab, alamats.kodepos, users.nomor_hp, transaksis.tanggal_pengiriman, alamats.lat, alamats.long, transaksis.keterangan, transaksis.id as transaksi_id, transaksis.total_bayar, transaksis.isAlreadyPay
from transaksis
inner join users
on users.id = transaksis.id_user
inner join alamats
on alamats.id = transaksis.id_alamat
where transaksis.id = id_transaksi$$
CREATE DEFINER=`root`@`localhost` PROCEDURE `sp_get_paket_ke_reseller` (IN `idreseller` VARCHAR(256)) NO SQL
BEGIN
SELECT transaksis.nomor_invoice, transaksis.is_diterima_reseller, transaksis.status, transaksis.`is_confirm_finish_byuser`, users.name, alamats.alamat, alamats.blok_nomor, alamats.kecamatan, alamats.kotkab, alamats.kodepos, users.nomor_hp, transaksis.tanggal_pengiriman, alamats.lat, alamats.long, transaksis.id AS transaksi_id
FROM transaksis
INNER JOIN users
ON users.id = transaksis.id_user
INNER JOIN alamats
ON alamats.id = transaksis.id_alamat
WHERE transaksis.id_reseller = idreseller
order by transaksis.tanggal_pengiriman desc;
END$$
CREATE DEFINER=`root`@`localhost` PROCEDURE `sp_get_paket_sedang_dikirim` (IN `id_kurir` VARCHAR(255)) NO SQL
BEGIN
select transaksis.nomor_invoice, users.name, alamats.alamat, alamats.blok_nomor, alamats.kecamatan, alamats.kotkab, alamats.kodepos, users.nomor_hp, transaksis.tanggal_pengiriman, alamats.lat, alamats.long, transaksis.id as transaksi_id
from transaksis
inner join users
on users.id = transaksis.id_user
inner join alamats
on alamats.id = transaksis.id_alamat
where transaksis.status = '6' and transaksis.id_kurir = id_kurir;
END$$
CREATE DEFINER=`root`@`localhost` PROCEDURE `sp_get_paket_selesai_dikirim` (IN `id_kurir` VARCHAR(255)) NO SQL
BEGIN
SELECT transaksis.`is_confirm_finish_byuser`, transaksis.`nama_penerima`, transaksis.nomor_invoice, users.name, alamats.alamat, alamats.blok_nomor, alamats.kecamatan, alamats.kotkab, alamats.kodepos, users.nomor_hp, transaksis.tanggal_pengiriman, alamats.lat, alamats.long, transaksis.id AS transaksi_id
FROM transaksis
INNER JOIN users
ON users.id = transaksis.id_user
INNER JOIN alamats
ON alamats.id = transaksis.id_alamat
WHERE transaksis.status = '7' AND transaksis.id_kurir = id_kurir;
END$$
CREATE DEFINER=`root`@`localhost` PROCEDURE `sp_get_total_bayar_veggo_by_petani` (IN `date` DATE) NO SQL
BEGIN
SELECT transaksis.id_user AS id_petani, users.`name`AS nama_petani,SUM((harga_beli/bobot)*((bobot_terima*volume_terima)-COALESCE(volume_klaim, 0))) AS harga FROM transaksis
JOIN detail_transaksis ON transaksis.id=detail_transaksis.`id_transaksi`
JOIN barangs ON detail_transaksis.`id_barang`=barangs.id
JOIN users ON transaksis.`id_user`=users.id
LEFT JOIN detail_klaims ON detail_klaims.`id_detail_transaksi`= detail_transaksis.`id`
WHERE nomor_invoice LIKE '%VGPETANI%' AND transaksis.status=3 AND tanggal_pre_order=date
GROUP BY transaksis.id_user;
END$$
CREATE DEFINER=`root`@`localhost` PROCEDURE `sp_get_total_bayar_veggo_by_tanggal` (IN `date` DATE) NO SQL
BEGIN
SELECT transaksis.id_user AS id_petani, users.`name`as nama_petani, isAlreadyPay, nama,sum(COALESCE(volume_klaim, 0)) AS volume_klaim,SUM((harga_beli/bobot)*((bobot_terima*volume_terima)-COALESCE(volume_klaim, 0))) AS harga, SUM((bobot_kemasan * volume)) AS jumlah,SUM((bobot_kirim_petani*volume_kirim_petani)) AS jumlah_kirim, SUM((bobot_terima*volume_terima)) AS jumlah_terima, SUM(selisih_kirim), SUM(selisih_terima), NAME FROM transaksis
JOIN detail_transaksis ON transaksis.id=detail_transaksis.`id_transaksi`
JOIN barangs ON detail_transaksis.`id_barang`=barangs.id
JOIN users ON transaksis.`id_user`=users.id
LEFT JOIN detail_klaims ON detail_klaims.`id_detail_transaksi`= detail_transaksis.`id`
WHERE nomor_invoice LIKE '%VGPETANI%' AND transaksis.status=3 AND tanggal_pre_order=date
GROUP BY nama;
END$$
CREATE DEFINER=`root`@`localhost` PROCEDURE `sp_get_total_non_paket` (IN `date` DATE) NO SQL
BEGIN
SELECT b.kode AS kode_barang,b.id_user AS supplier_barang,b.nama AS nama_barang, SUM(dt.volume) AS volume, dt.bobot_kemasan AS bobot FROM transaksis t
INNER JOIN detail_transaksis dt ON dt.id_transaksi = t.id
INNER JOIN barangs b ON b.id = dt.id_barang
WHERE t.tanggal_pre_order = DATE AND t.status = 1 AND b.is_paket = 0 AND t.tipe_transaksi = 'FROM_BUYER' AND dt.is_canceled_by_veggo = 0 AND dt.is_exclude_rekap = 0 AND b.jenis != 'Timbang'
GROUP BY kode_barang,supplier_barang,nama_barang, dt.bobot_kemasan;
END$$
CREATE DEFINER=`root`@`localhost` PROCEDURE `sp_get_total_paket` (IN `date` DATE) NO SQL
BEGIN
SELECT (SELECT b2.kode FROM barangs b2 WHERE b2.id = ip.id_barang) AS kode_barang,(SELECT b2.id_user FROM barangs b2 WHERE b2.id = ip.id_barang) AS supplier_barang,(SELECT b2.nama FROM barangs b2 WHERE b2.id = ip.id_barang) AS nama_barang, SUM(dt.volume) AS volume,ip.volume AS bobot FROM barangs b
LEFT JOIN isi_pakets ip ON ip.id_barang_parent = b.id
LEFT JOIN detail_transaksis dt ON dt.id_barang = b.id
LEFT JOIN transaksis t ON t.id = dt.id_transaksi
WHERE t.tanggal_pre_order = DATE AND t.status = 1 AND b.is_paket = 1 AND t.tipe_transaksi = 'FROM_BUYER' AND dt.is_canceled_by_veggo = 0 AND dt.is_exclude_rekap = 0
GROUP BY kode_barang,supplier_barang,nama_barang, ip.volume;
END$$
CREATE DEFINER=`root`@`localhost` PROCEDURE `sp_get_total_pre_order` (IN `date` DATE) NO SQL
BEGIN
SELECT b.kode,b.nama,b.jenis,dt.bobot_kemasan,b.satuan, SUM(dt.volume) AS volume FROM transaksis t
INNER JOIN detail_transaksis dt ON dt.id_transaksi = t.id
INNER JOIN barangs b ON b.id = dt.id_barang
WHERE t.tanggal_pre_order = date AND t.status = 1 AND t.tipe_transaksi = 'FROM_BUYER' AND dt.is_canceled_by_veggo = 0 AND dt.is_exclude_rekap = 0
GROUP BY b.kode,b.nama,b.jenis,dt.bobot_kemasan,b.satuan;
END$$
CREATE DEFINER=`root`@`localhost` PROCEDURE `sp_get_total_timbang` (IN `date` DATE) NO SQL
BEGIN
SELECT b.kode AS kode_barang,b.id_user AS supplier_barang,b.nama AS nama_barang, SUM(COALESCE(dt.bobot_kemasan, 1)) AS volume, dt.volume AS bobot FROM transaksis t
INNER JOIN detail_transaksis dt ON dt.id_transaksi = t.id
INNER JOIN barangs b ON b.id = dt.id_barang
WHERE t.tanggal_pre_order = DATE AND t.status = 1 AND b.is_paket = 0 AND t.tipe_transaksi = 'FROM_BUYER' AND dt.is_canceled_by_veggo = 0 AND dt.is_exclude_rekap = 0 AND b.jenis = 'Timbang'
GROUP BY kode_barang,supplier_barang,nama_barang,dt.volume;
END$$
DELIMITER ;
-- --------------------------------------------------------
--
-- Struktur dari tabel `alamats`
--
CREATE TABLE `alamats` (
`id` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`id_user` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`kotkab` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`daerah` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`kodepos` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`long` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`lat` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`blok_nomor` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`alamat` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`info_tambahan` varchar(1000) COLLATE utf8mb4_unicode_ci DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Struktur dari tabel `barangs`
--
CREATE TABLE `barangs` (
`id` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`id_user` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`id_kategori` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`nama` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`kode` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`jenis` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`satuan` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`bobot` int(11) NOT NULL,
`harga_beli` int(11) NOT NULL,
`harga_jual` int(11) NOT NULL,
`deskripsi` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`diskon` int(11) DEFAULT 0,
`jenis_diskon` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`show_etalase` int(11) DEFAULT NULL,
`is_paket` int(11) DEFAULT 0,
`ketersediaan` int(11) DEFAULT NULL,
`stok` int(11) DEFAULT NULL,
`bobot_minimum_timbang` int(11) DEFAULT NULL,
`bobot_kemasan_kemas` int(11) DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data untuk tabel `barangs`
--
INSERT INTO `barangs` (`id`, `id_user`, `id_kategori`, `nama`, `kode`, `jenis`, `satuan`, `bobot`, `harga_beli`, `harga_jual`, `deskripsi`, `diskon`, `jenis_diskon`, `show_etalase`, `is_paket`, `ketersediaan`, `stok`, `bobot_minimum_timbang`, `bobot_kemasan_kemas`, `created_at`, `updated_at`) VALUES
('08e642e7-e5d0-4e8e-af6d-456dc3492654', '52539219-07c9-4383-800c-66a9dfa50157', '2', 'Apel', 'B1317', 'Timbang', 'Gram', 1000, 50000, 55000, 'Ini Apel', 10, 'Potongan Persen', NULL, 0, NULL, 2050, 500, NULL, '2020-09-27 15:00:52', '2020-09-28 15:08:33'),
('112161f4-d386-4b97-9df1-8deb3e03bdb6', '52539219-07c9-4383-800c-66a9dfa50157', '1', 'Wortel', 'B1278', 'Kemas', 'Gram', 1000, 5000, 5500, 'ini wortel', 0, '-', NULL, 0, NULL, NULL, NULL, NULL, '2020-09-27 14:59:05', '2020-09-27 14:59:05'),
('39582314-34f8-4787-9dab-4d4a6be65fa0', '3', '5', 'Tempe', 'B9681', 'Kemas', 'Gram', 1000, 5000, 10000, 'Ini Tempe', 0, '-', NULL, 0, NULL, NULL, NULL, NULL, '2020-09-29 14:23:07', '2020-09-29 14:23:07'),
('577a19a8-8b60-416b-b933-0db5f5e07c5b', '3', '5', 'Terasi', 'B6990', 'Kemas', 'Gram', 1000, 1000, 2500, 'Ini Terasi', 0, '-', NULL, 0, NULL, NULL, NULL, NULL, '2020-09-29 12:42:18', '2020-09-29 12:42:18'),
('63ef0dc2-a772-4063-bf3e-5a8d057a4df8', '52539219-07c9-4383-800c-66a9dfa50157', '1', 'Kangkung', 'B4250', 'Kemas', 'Gram', 1000, 4000, 5000, 'Ini Kangkung', 0, '-', NULL, 0, NULL, NULL, NULL, NULL, '2020-09-29 12:44:33', '2020-09-29 12:44:33'),
('baa6e9c9-aadc-45e5-9fde-1e0b33219960', '3', '1', 'Cabai Keriting', 'B1515', 'Timbang', 'Gram', 1000, 25000, 30000, 'Ini Cabai', 0, '-', NULL, 0, NULL, NULL, 500, NULL, '2020-09-29 12:43:12', '2020-09-29 12:43:12'),
('cd84709b-ceb3-4a1a-b27f-f663cdabd5d4', '3', '1', 'Daun Singkong', 'B2709', 'Kemas', 'Gram', 1000, 5000, 8000, 'ini daun singkong', 0, '-', NULL, 0, NULL, NULL, NULL, NULL, '2020-09-29 12:46:16', '2020-09-29 12:46:16'),
('dbc0a797-9e5f-4f5a-8324-e20f175964ef', '52539219-07c9-4383-800c-66a9dfa50157', '5', 'Paket WA', 'BP488', 'Paket', 'Pcs', 1, 5500, 5500, '-', 500, '0', 0, 1, 0, 0, NULL, NULL, '2020-09-27 15:02:05', '2020-09-27 15:02:05'),
('f7d48d89-8790-48eb-ba22-8da30e538455', '3', '1', 'Bayam', 'B1223', 'Timbang', 'Gram', 1000, 5000, 8000, 'ini bayam', 10, 'Potongan Persen', NULL, 0, NULL, NULL, 500, NULL, '2020-09-29 12:45:25', '2020-09-29 12:45:25');
-- --------------------------------------------------------
--
-- Struktur dari tabel `barangs_groups`
--
CREATE TABLE `barangs_groups` (
`id` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`id_barang` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`id_kategori` 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 untuk tabel `barangs_groups`
--
INSERT INTO `barangs_groups` (`id`, `id_barang`, `id_kategori`, `created_at`, `updated_at`) VALUES
('01412be3-5b9f-4fd0-8405-751125f8db84', 'cd84709b-ceb3-4a1a-b27f-f663cdabd5d4', 'ed3adc92-e534-4fb3-9a50-727b36601ea9', '2020-09-29 12:46:16', '2020-09-29 12:46:16'),
('24b90ff9-141c-4801-8aef-b75131072f4c', 'baa6e9c9-aadc-45e5-9fde-1e0b33219960', 'f49d5386-455a-46a6-bacd-2368cfa4bed1', '2020-09-29 12:43:12', '2020-09-29 12:43:12'),
('33a48014-fe78-4251-b485-2f49507936e2', '577a19a8-8b60-416b-b933-0db5f5e07c5b', 'cfad237b-e716-4d18-82b8-0940f9d834c5', '2020-09-29 12:42:18', '2020-09-29 12:42:18'),
('3d00d091-81c0-49ae-89b0-f70a0c5a0927', '63ef0dc2-a772-4063-bf3e-5a8d057a4df8', 'f49d5386-455a-46a6-bacd-2368cfa4bed1', '2020-09-29 12:44:33', '2020-09-29 12:44:33'),
('48d2e3cf-de10-42d4-a92a-3a801f5ec759', '08e642e7-e5d0-4e8e-af6d-456dc3492654', '5925d487-508b-450f-9c60-fdf7c0ba0385', '2020-09-27 15:00:52', '2020-09-27 15:00:52'),
('53fa85b8-f2ca-4f8e-a6b7-c2897d00f9bc', '63ef0dc2-a772-4063-bf3e-5a8d057a4df8', 'ed3adc92-e534-4fb3-9a50-727b36601ea9', '2020-09-29 12:44:33', '2020-09-29 12:44:33'),
('5604b83f-75ec-4f09-b537-3d5e47afca35', 'dbc0a797-9e5f-4f5a-8324-e20f175964ef', '5925d487-508b-450f-9c60-fdf7c0ba0385', '2020-09-27 15:02:05', '2020-09-27 15:02:05'),
('56ad59e9-226d-4dfe-948e-9ee9195ca959', '112161f4-d386-4b97-9df1-8deb3e03bdb6', 'acbc6531-e6e7-4368-b26a-5104fea9581f', '2020-09-27 14:59:05', '2020-09-27 14:59:05'),
('61f55d08-71cf-4070-9c86-957aeb2e4b89', 'f7d48d89-8790-48eb-ba22-8da30e538455', 'f49d5386-455a-46a6-bacd-2368cfa4bed1', '2020-09-29 12:45:25', '2020-09-29 12:45:25'),
('ae4aca94-4146-4ed9-87ca-1fcd6b21f8aa', '39582314-34f8-4787-9dab-4d4a6be65fa0', '305aa35c-4c22-4cc2-bc3f-65b11c3d5a94', '2020-09-29 14:23:07', '2020-09-29 14:23:07'),
('ca967269-2ea3-4981-b6e4-78b63d8fed4d', 'dbc0a797-9e5f-4f5a-8324-e20f175964ef', 'ed3adc92-e534-4fb3-9a50-727b36601ea9', '2020-09-27 15:02:05', '2020-09-27 15:02:05'),
('d5ba18f6-93f8-453c-a014-246677a505fb', 'dbc0a797-9e5f-4f5a-8324-e20f175964ef', 'acbc6531-e6e7-4368-b26a-5104fea9581f', '2020-09-27 15:02:05', '2020-09-27 15:02:05'),
('e1c11e86-3f1d-4ac8-b454-1546ceab433f', 'cd84709b-ceb3-4a1a-b27f-f663cdabd5d4', 'f49d5386-455a-46a6-bacd-2368cfa4bed1', '2020-09-29 12:46:16', '2020-09-29 12:46:16');
-- --------------------------------------------------------
--
-- Struktur dari tabel `barangs_kemasans`
--
CREATE TABLE `barangs_kemasans` (
`id` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`id_barang` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`bobot_kemasan` 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 untuk tabel `barangs_kemasans`
--
INSERT INTO `barangs_kemasans` (`id`, `id_barang`, `bobot_kemasan`, `created_at`, `updated_at`) VALUES
('08c51ec0-36e9-4bcd-9165-1e825645034d', 'cd84709b-ceb3-4a1a-b27f-f663cdabd5d4', '400', '2020-09-29 12:46:16', '2020-09-29 12:46:16'),
('36e584e6-d5a9-4bbc-8285-5e923f08fed7', '39582314-34f8-4787-9dab-4d4a6be65fa0', '500', '2020-09-29 14:23:07', '2020-09-29 14:23:07'),
('417643a3-e006-4502-84ac-267eb76a8606', '577a19a8-8b60-416b-b933-0db5f5e07c5b', '200', '2020-09-29 12:42:18', '2020-09-29 12:42:18'),
('bb211f3b-0b82-42a6-b094-8675a50441b6', '63ef0dc2-a772-4063-bf3e-5a8d057a4df8', '500', '2020-09-29 12:44:33', '2020-09-29 12:44:33'),
('e280dfcf-2473-4f72-9163-400f8bbaccd1', '112161f4-d386-4b97-9df1-8deb3e03bdb6', '400', '2020-09-27 14:59:05', '2020-09-27 14:59:05');
-- --------------------------------------------------------
--
-- Struktur dari tabel `barang_tanggals`
--
CREATE TABLE `barang_tanggals` (
`id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`id_barang` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`tanggal` date DEFAULT NULL,
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data untuk tabel `barang_tanggals`
--
INSERT INTO `barang_tanggals` (`id`, `id_barang`, `tanggal`, `created_at`, `updated_at`) VALUES
('79188482-2dbc-45d4-857f-8b2897bc6ca7', '112161f4-d386-4b97-9df1-8deb3e03bdb6', '2020-10-03', '2020-09-29 13:27:16', '2020-09-29 13:27:16'),
('8cc6e73a-3fdf-466b-8b18-b1b34774ad22', '08e642e7-e5d0-4e8e-af6d-456dc3492654', '2020-10-03', '2020-09-29 13:27:16', '2020-09-29 13:27:16'),
('36bdd413-8c10-4643-87b4-7d551a0afb5f', 'dbc0a797-9e5f-4f5a-8324-e20f175964ef', '2020-10-03', '2020-09-29 13:27:16', '2020-09-29 13:27:16'),
('5809dbe5-695d-4e1d-9cb9-64e8e04d687a', 'f7d48d89-8790-48eb-ba22-8da30e538455', '2020-10-07', '2020-09-29 19:47:26', '2020-09-29 19:47:26'),
('3baeaf2d-09ea-4df5-9e61-3897d32bd406', '112161f4-d386-4b97-9df1-8deb3e03bdb6', '2020-10-07', '2020-09-29 19:47:26', '2020-09-29 19:47:26'),
('c8940576-62dd-4d1a-8122-e373e12a9342', '08e642e7-e5d0-4e8e-af6d-456dc3492654', '2020-10-07', '2020-09-29 19:47:26', '2020-09-29 19:47:26'),
('e2bc75f0-82c1-4ce7-8e81-e0b7e2a44611', 'baa6e9c9-aadc-45e5-9fde-1e0b33219960', '2020-10-07', '2020-09-29 19:47:26', '2020-09-29 19:47:26'),
('c143378a-9f97-495a-9498-8f6f244c8483', 'cd84709b-ceb3-4a1a-b27f-f663cdabd5d4', '2020-10-07', '2020-09-29 19:47:27', '2020-09-29 19:47:27'),
('1847a2ac-b481-4cb1-8fa1-cdce8cabb2d0', '63ef0dc2-a772-4063-bf3e-5a8d057a4df8', '2020-10-07', '2020-09-29 19:47:27', '2020-09-29 19:47:27'),
('dc5b8ee1-88d1-45db-823b-da74c97436c6', '577a19a8-8b60-416b-b933-0db5f5e07c5b', '2020-10-07', '2020-09-29 19:47:27', '2020-09-29 19:47:27'),
('68458d18-161b-4246-b890-dab88e4eb28f', 'dbc0a797-9e5f-4f5a-8324-e20f175964ef', '2020-10-07', '2020-09-29 19:47:27', '2020-09-29 19:47:27');
-- --------------------------------------------------------
--
-- Struktur dari tabel `base_kategoris`
--
CREATE TABLE `base_kategoris` (
`id` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`kategori` 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 untuk tabel `base_kategoris`
--
INSERT INTO `base_kategoris` (`id`, `kategori`, `created_at`, `updated_at`) VALUES
('1', 'Sayur', NULL, NULL),
('2', 'Buah', NULL, NULL),
('3', 'Beras', NULL, NULL),
('4', 'Daging dan Telor', NULL, NULL),
('5', 'Makanan Sehat', NULL, NULL),
('6', 'Minuman Sehat', NULL, NULL),
('7', 'Berkebun', NULL, NULL),
('8', 'Lain - Lain', NULL, NULL);
-- --------------------------------------------------------
--
-- Struktur dari tabel `bobot_kemasans`
--
CREATE TABLE `bobot_kemasans` (
`id` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`bobot_kemasan` 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 untuk tabel `bobot_kemasans`
--
INSERT INTO `bobot_kemasans` (`id`, `bobot_kemasan`, `created_at`, `updated_at`) VALUES
('1', 100, NULL, NULL),
('2', 200, NULL, NULL),
('3', 250, NULL, NULL),
('4', 300, NULL, NULL),
('5', 400, NULL, NULL),
('6', 500, NULL, NULL),
('7', 1000, NULL, NULL);
-- --------------------------------------------------------
--
-- Struktur dari tabel `detail_keranjangs`
--
CREATE TABLE `detail_keranjangs` (
`id` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`id_keranjang` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`id_barang` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`volume` int(11) NOT NULL,
`harga` int(11) NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`bobot_kemasan` int(11) DEFAULT NULL,
`harga_diskon` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Struktur dari tabel `detail_klaims`
--
CREATE TABLE `detail_klaims` (
`id` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`id_klaim` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`id_barang` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`volume_klaim` int(11) NOT NULL,
`keterangan` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`foto_bukti` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`id_detail_transaksi` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Struktur dari tabel `detail_transaksis`
--
CREATE TABLE `detail_transaksis` (
`id` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`id_barang` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`harga` int(11) NOT NULL,
`status` int(11) NOT NULL DEFAULT 0,
`is_info_petani` tinyint(1) NOT NULL DEFAULT 0,
`is_canceled_by_veggo` tinyint(1) NOT NULL DEFAULT 0,
`bobot_kemasan` int(11) DEFAULT 1,
`volume` int(11) NOT NULL,
`volume_selisih` int(11) DEFAULT NULL,
`volume_kirim_petani` int(11) DEFAULT NULL,
`volume_terima` int(11) DEFAULT NULL,
`keterangan` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`id_transaksi` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`volume_kirim_kurir` int(11) DEFAULT NULL,
`harga_akhir` int(11) DEFAULT NULL,
`is_exclude_rekap` tinyint(4) DEFAULT 0,
`bobot_selisih` int(11) DEFAULT NULL,
`bobot_kirim_petani` int(11) DEFAULT NULL,
`bobot_terima` int(11) DEFAULT NULL,
`selisih_kirim` int(11) DEFAULT NULL,
`selisih_terima` int(11) DEFAULT NULL,
`harga_diskon` int(11) DEFAULT NULL,
`harga_akhir_diskon` int(11) DEFAULT NULL,
`bobot_kirim_kurir` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Struktur dari tabel `failed_jobs`
--
CREATE TABLE `failed_jobs` (
`id` bigint(20) UNSIGNED NOT NULL,
`connection` text COLLATE utf8mb4_unicode_ci NOT NULL,
`queue` text COLLATE utf8mb4_unicode_ci NOT NULL,
`payload` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`exception` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`failed_at` timestamp NOT NULL DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Struktur dari tabel `foto_barangs`
--
CREATE TABLE `foto_barangs` (
`id` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`id_barang` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`path` 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 untuk tabel `foto_barangs`
--
INSERT INTO `foto_barangs` (`id`, `id_barang`, `path`, `created_at`, `updated_at`) VALUES
('23d1c973-0918-42db-ba7f-d8bd845c4ba8', '63ef0dc2-a772-4063-bf3e-5a8d057a4df8', '1601383473LesajaLogotype.png', '2020-09-29 12:44:33', '2020-09-29 12:44:33'),
('6dd285ac-7663-47fb-8a6f-14fec854c0bb', '08e642e7-e5d0-4e8e-af6d-456dc3492654', '1601218852Screenshot 2020-09-12 205331.png', '2020-09-27 15:00:52', '2020-09-27 15:00:52'),
('9b31d4e7-3727-4d59-8765-07ab7e148cea', '577a19a8-8b60-416b-b933-0db5f5e07c5b', '1601383338LesajaLogotype.png', '2020-09-29 12:42:18', '2020-09-29 12:42:18'),
('9c5beb14-2fc1-46c9-b4e2-7bfe484700c4', 'cd84709b-ceb3-4a1a-b27f-f663cdabd5d4', '1601383576LesajaLogotype.png', '2020-09-29 12:46:16', '2020-09-29 12:46:16'),
('a97c0424-9db2-4656-b371-30565254b6a1', 'f7d48d89-8790-48eb-ba22-8da30e538455', '1601383525LesajaLogotype.png', '2020-09-29 12:45:25', '2020-09-29 12:45:25'),
('ace36351-e80a-4a35-a1b2-00cbea02816c', '112161f4-d386-4b97-9df1-8deb3e03bdb6', '1601218745LesajaLogotype.png', '2020-09-27 14:59:05', '2020-09-27 14:59:05'),
('bd95472d-2bc9-4b4b-800c-db9003959a7e', '39582314-34f8-4787-9dab-4d4a6be65fa0', '1601389387Screenshot 2020-09-12 205331.png', '2020-09-29 14:23:07', '2020-09-29 14:23:07'),
('e8608a53-fdf0-4bb0-becf-ee603d053066', 'dbc0a797-9e5f-4f5a-8324-e20f175964ef', '1601218925LesajaLogotype.png', '2020-09-27 15:02:05', '2020-09-27 15:02:05'),
('e98bea2d-135a-4fdb-a77c-ea55182a111d', 'baa6e9c9-aadc-45e5-9fde-1e0b33219960', '1601383392LesajaLogotype.png', '2020-09-29 12:43:12', '2020-09-29 12:43:12');
-- --------------------------------------------------------
--
-- Struktur dari tabel `hari_pengiriman`
--
CREATE TABLE `hari_pengiriman` (
`id` bigint(20) UNSIGNED NOT NULL,
`nama_hari` varchar(199) DEFAULT NULL,
`tersedia` tinyint(1) DEFAULT 1,
`urutan` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Struktur dari tabel `inventaris`
--
CREATE TABLE `inventaris` (
`id` varchar(191) NOT NULL,
`id_transaksi` varchar(191) NOT NULL,
`id_barang` varchar(191) DEFAULT NULL,
`tanggal` date DEFAULT NULL,
`status` varchar(50) DEFAULT NULL,
`keterangan` varchar(250) DEFAULT NULL,
`jumlah` int(11) DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data untuk tabel `inventaris`
--
INSERT INTO `inventaris` (`id`, `id_transaksi`, `id_barang`, `tanggal`, `status`, `keterangan`, `jumlah`, `created_at`, `updated_at`) VALUES
('79ec9410-019c-11eb-a160-4d72e9b3b27b', 'tambah manual', '08e642e7-e5d0-4e8e-af6d-456dc3492654', '2020-09-28', 'IN', 'Tambah Stok', 1000, '2020-09-28 15:08:33', '2020-09-28 15:08:33'),
('ac4d41d0-00d3-11eb-b4c9-9da29c4ec224', 'tambah manual', '08e642e7-e5d0-4e8e-af6d-456dc3492654', '2020-09-27', 'IN', 'Tambah Stok', 1000, '2020-09-27 15:11:09', '2020-09-27 15:11:09'),
('fa3e9000-00d4-11eb-bc9d-dda45f6da469', 'tambah manual', '08e642e7-e5d0-4e8e-af6d-456dc3492654', '2020-09-27', 'IN', 'Tambah Stok', 1050, '2020-09-27 15:20:29', '2020-09-27 15:20:29');
-- --------------------------------------------------------
--
-- Struktur dari tabel `isi_pakets`
--
CREATE TABLE `isi_pakets` (
`id` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`id_barang_parent` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`id_barang` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`volume` int(11) NOT NULL,
`harga` 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 untuk tabel `isi_pakets`
--
INSERT INTO `isi_pakets` (`id`, `id_barang_parent`, `id_barang`, `volume`, `harga`, `created_at`, `updated_at`) VALUES
('69663f41-f69c-42c7-88f3-04ca670a556e', 'dbc0a797-9e5f-4f5a-8324-e20f175964ef', '08e642e7-e5d0-4e8e-af6d-456dc3492654', 100, 5000, '2020-09-27 15:02:05', '2020-09-27 15:02:05'),
('f8fa9da7-0aea-4e11-9f98-1ed2d3646ea1', 'dbc0a797-9e5f-4f5a-8324-e20f175964ef', '112161f4-d386-4b97-9df1-8deb3e03bdb6', 100, 500, '2020-09-27 15:02:05', '2020-09-27 15:02:05');
-- --------------------------------------------------------
--
-- Struktur dari tabel `isi_reseps`
--
CREATE TABLE `isi_reseps` (
`id` varchar(191) NOT NULL,
`id_parent_resep` varchar(191) DEFAULT NULL,
`id_barang` varchar(191) DEFAULT NULL,
`volume` float DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Struktur dari tabel `kategoris`
--
CREATE TABLE `kategoris` (
`id` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`kategori` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`sub_kategori` 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 untuk tabel `kategoris`
--
INSERT INTO `kategoris` (`id`, `kategori`, `sub_kategori`, `created_at`, `updated_at`) VALUES
('305aa35c-4c22-4cc2-bc3f-65b11c3d5a94', '5', 'Tempe', '2020-09-25 21:03:57', '2020-09-25 21:03:57'),
('3a2f99b8-566f-4880-8b9d-d13f0f3e4d57', '5', 'Mie', '2020-09-25 21:04:07', '2020-09-25 21:04:07'),
('5925d487-508b-450f-9c60-fdf7c0ba0385', '2', 'Buah Kemas', '2020-09-25 21:03:28', '2020-09-25 21:03:28'),
('acbc6531-e6e7-4368-b26a-5104fea9581f', '1', 'Sayur Kemas', '2020-09-25 21:02:27', '2020-09-25 21:02:27'),
('cfad237b-e716-4d18-82b8-0940f9d834c5', '5', 'Kue Kering', '2020-09-25 21:04:27', '2020-09-25 21:04:27'),
('ed3adc92-e534-4fb3-9a50-727b36601ea9', '1', 'Sayur Paket', '2020-09-25 20:55:49', '2020-09-25 20:55:49'),
('f49d5386-455a-46a6-bacd-2368cfa4bed1', '1', 'Sayur Timbang', '2020-09-25 21:02:38', '2020-09-25 21:02:38');
-- --------------------------------------------------------
--
-- Struktur dari tabel `keranjangs`
--
CREATE TABLE `keranjangs` (
`id` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`id_user` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`tanggal_pre_order` date DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Struktur dari tabel `keranjang_resellers`
--
CREATE TABLE `keranjang_resellers` (
`id` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NOT NULL DEFAULT current_timestamp(),
`updated_at` timestamp NOT NULL DEFAULT current_timestamp(),
`id_parent_keranjang` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`id_barang` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`volume` int(11) DEFAULT NULL,
`harga` int(11) DEFAULT NULL,
`bobot_kemasan` int(11) DEFAULT NULL,
`harga_diskon` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Struktur dari tabel `klaims`
--
CREATE TABLE `klaims` (
`id` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`kode_klaim` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`id_transaksi` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`klaim_to` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`klaim_from` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`tanggal_kirim` datetime NOT NULL,
`status` 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;
-- --------------------------------------------------------
--
-- 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;
-- --------------------------------------------------------
--
-- Struktur dari tabel `parent_keranjang_resellers`
--
CREATE TABLE `parent_keranjang_resellers` (
`id` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`id_user` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`tanggal_pre_order` date DEFAULT NULL,
`created_at` timestamp NOT NULL DEFAULT current_timestamp(),
`updated_at` timestamp NOT NULL DEFAULT current_timestamp(),
`name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`status` int(11) DEFAULT 0,
`id_transaksi` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`alamat` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`nohp` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- 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 `reseps`
--
CREATE TABLE `reseps` (
`id` varchar(191) NOT NULL,
`judul` varchar(191) DEFAULT NULL,
`foto` varchar(191) DEFAULT NULL,
`artikel` longtext DEFAULT NULL,
`is_show` int(11) DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Struktur dari tabel `sample_database`
--
CREATE TABLE `sample_database` (
`id` bigint(20) UNSIGNED NOT NULL,
`sample` 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;
-- --------------------------------------------------------
--
-- Struktur dari tabel `tanggals`
--
CREATE TABLE `tanggals` (
`id` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`tanggal` date DEFAULT NULL,
`flag` int(11) DEFAULT NULL,
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data untuk tabel `tanggals`
--
INSERT INTO `tanggals` (`id`, `tanggal`, `flag`, `created_at`, `updated_at`) VALUES
('08470547-af0f-45a1-aeea-be1676638ba4', '2020-10-07', 1, '2020-09-29 19:47:05', '2020-09-29 19:47:27'),
('7c9d9399-a861-4569-9479-24c5df68c244', '2020-10-03', 1, '2020-09-29 13:26:54', '2020-09-29 13:27:16');
-- --------------------------------------------------------
--
-- Struktur dari tabel `transaksis`
--
CREATE TABLE `transaksis` (
`id` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`id_user` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`id_alamat` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`id_kurir` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`nomor_invoice` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`total_bayar` int(11) NOT NULL,
`status` int(11) DEFAULT NULL,
`is_info_petani` tinyint(1) NOT NULL DEFAULT 0,
`is_canceled_by_veggo` tinyint(1) NOT NULL DEFAULT 0,
`bukti_transfer` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`tanggal_pre_order` date NOT NULL,
`keterangan` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`tipe_transaksi` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT 'FROM_BUYER',
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`isCheckout` tinyint(1) NOT NULL DEFAULT 0,
`isAlreadyPay` tinyint(1) NOT NULL DEFAULT 0,
`tanggal_pengiriman` timestamp NULL DEFAULT NULL,
`tanggal_terima` timestamp NULL DEFAULT NULL,
`nama_penerima` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`keterangan_penerima` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`foto_penerima` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`total_bayar_akhir` int(11) DEFAULT NULL,
`is_exclude_rekap` tinyint(4) DEFAULT 0,
`is_confirm_finish_byuser` tinyint(4) NOT NULL DEFAULT 0,
`id_reseller` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`is_diterima_reseller` int(11) DEFAULT NULL,
`ongkir` int(11) DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Struktur dari tabel `users`
--
CREATE TABLE `users` (
`id` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`name` 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,
`role` int(11) NOT NULL,
`remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`nomor_hp` varchar(199) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`nomor_rek` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`bank` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`atas_nama` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data untuk tabel `users`
--
INSERT INTO `users` (`id`, `name`, `email`, `email_verified_at`, `password`, `role`, `remember_token`, `created_at`, `updated_at`, `nomor_hp`, `nomor_rek`, `bank`, `atas_nama`) VALUES
('3', 'petani 2', 'petani2@gmail.com', NULL, '$2y$10$Wvy0U5s0NcRztBBCrbt08Oq0XFKDe0RJ8m691XfW8cfQZXnZPA.kW', 3, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('3dceb0cc-9983-470e-9e2b-67facc51175d', 'penjual', 'penjual@gmail.com', NULL, '$2y$10$Wvy0U5s0NcRztBBCrbt08Oq0XFKDe0RJ8m691XfW8cfQZXnZPA.kW', 1, NULL, '2019-11-19 09:19:36', '2020-09-16 06:54:11', NULL, '0943002527', 'BCA', 'VEGGO'),
('52539219-07c9-4383-800c-66a9dfa50157', 'petani 1', 'petani1@gmail.com', NULL, '$2y$10$Wvy0U5s0NcRztBBCrbt08Oq0XFKDe0RJ8m691XfW8cfQZXnZPA.kW', 3, NULL, '2019-11-19 09:20:52', '2019-11-19 09:20:52', NULL, NULL, NULL, NULL),
('75e884dc-9848-423f-8056-7dec9229d15b', 'Pembeli 2', 'pembeli2@gmail.com', NULL, '$2y$10$Wvy0U5s0NcRztBBCrbt08Oq0XFKDe0RJ8m691XfW8cfQZXnZPA.kW', 2, NULL, '2020-08-04 00:26:46', '2020-08-04 00:26:46', '086425163527', NULL, NULL, NULL),
('b0e0e59c-d033-4834-a80c-5399784de2b4', 'Pembeli 1', 'pembeli1@gmail.com', NULL, '$2y$10$Wvy0U5s0NcRztBBCrbt08Oq0XFKDe0RJ8m691XfW8cfQZXnZPA.kW', 2, NULL, '2020-09-16 06:03:15', '2020-09-16 06:03:15', '083526172364', NULL, NULL, NULL),
('ca1f9059-7889-44de-9c26-960283f5b887', 'Reseller_keputih', 'resellerkeputih@gmail.com', NULL, '$2y$10$Wvy0U5s0NcRztBBCrbt08Oq0XFKDe0RJ8m691XfW8cfQZXnZPA.kW', 4, NULL, NULL, NULL, '083212454345', NULL, NULL, NULL),
('edfc818a-88df-457a-9f43-529f9ffadasd', 'Kurir', 'kurir@gmail.com', '2019-12-30 08:10:46', '$2y$10$Wvy0U5s0NcRztBBCrbt08Oq0XFKDe0RJ8m691XfW8cfQZXnZPA.kW', 5, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
--
-- Indexes for dumped tables
--
--
-- Indeks untuk tabel `alamats`
--
ALTER TABLE `alamats`
ADD PRIMARY KEY (`id`);
--
-- Indeks untuk tabel `barangs`
--
ALTER TABLE `barangs`
ADD PRIMARY KEY (`id`);
--
-- Indeks untuk tabel `barangs_groups`
--
ALTER TABLE `barangs_groups`
ADD PRIMARY KEY (`id`);
--
-- Indeks untuk tabel `barangs_kemasans`
--
ALTER TABLE `barangs_kemasans`
ADD PRIMARY KEY (`id`);
--
-- Indeks untuk tabel `base_kategoris`
--
ALTER TABLE `base_kategoris`
ADD PRIMARY KEY (`id`);
--
-- Indeks untuk tabel `bobot_kemasans`
--
ALTER TABLE `bobot_kemasans`
ADD PRIMARY KEY (`id`),
ADD UNIQUE KEY `bobot_kemasans_bobot_kemasan_unique` (`bobot_kemasan`);
--
-- Indeks untuk tabel `detail_keranjangs`
--
ALTER TABLE `detail_keranjangs`
ADD PRIMARY KEY (`id`);
--
-- Indeks untuk tabel `detail_klaims`
--
ALTER TABLE `detail_klaims`
ADD PRIMARY KEY (`id`);
--
-- Indeks untuk tabel `detail_transaksis`
--
ALTER TABLE `detail_transaksis`
ADD PRIMARY KEY (`id`);
--
-- Indeks untuk tabel `failed_jobs`
--
ALTER TABLE `failed_jobs`
ADD PRIMARY KEY (`id`);
--
-- Indeks untuk tabel `foto_barangs`
--
ALTER TABLE `foto_barangs`
ADD PRIMARY KEY (`id`);
--
-- Indeks untuk tabel `hari_pengiriman`
--
ALTER TABLE `hari_pengiriman`
ADD PRIMARY KEY (`id`),
ADD UNIQUE KEY `id` (`id`);
--
-- Indeks untuk tabel `inventaris`
--
ALTER TABLE `inventaris`
ADD PRIMARY KEY (`id`);
--
-- Indeks untuk tabel `isi_pakets`
--
ALTER TABLE `isi_pakets`
ADD PRIMARY KEY (`id`);
--
-- Indeks untuk tabel `isi_reseps`
--
ALTER TABLE `isi_reseps`
ADD PRIMARY KEY (`id`);
--
-- Indeks untuk tabel `kategoris`
--
ALTER TABLE `kategoris`
ADD PRIMARY KEY (`id`);
--
-- Indeks untuk tabel `keranjangs`
--
ALTER TABLE `keranjangs`
ADD PRIMARY KEY (`id`);
--
-- Indeks untuk tabel `keranjang_resellers`
--
ALTER TABLE `keranjang_resellers`
ADD PRIMARY KEY (`id`);
--
-- Indeks untuk tabel `klaims`
--
ALTER TABLE `klaims`
ADD PRIMARY KEY (`id`);
--
-- Indeks untuk tabel `migrations`
--
ALTER TABLE `migrations`
ADD PRIMARY KEY (`id`);
--
-- Indeks untuk tabel `parent_keranjang_resellers`
--
ALTER TABLE `parent_keranjang_resellers`
ADD PRIMARY KEY (`id`);
--
-- Indeks untuk tabel `password_resets`
--
ALTER TABLE `password_resets`
ADD KEY `password_resets_email_index` (`email`);
--
-- Indeks untuk tabel `reseps`
--
ALTER TABLE `reseps`
ADD PRIMARY KEY (`id`);
--
-- Indeks untuk tabel `sample_database`
--
ALTER TABLE `sample_database`
ADD PRIMARY KEY (`id`);
--
-- Indeks untuk tabel `tanggals`
--
ALTER TABLE `tanggals`
ADD PRIMARY KEY (`id`);
--
-- Indeks untuk tabel `transaksis`
--
ALTER TABLE `transaksis`
ADD PRIMARY KEY (`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 `failed_jobs`
--
ALTER TABLE `failed_jobs`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT untuk tabel `hari_pengiriman`
--
ALTER TABLE `hari_pengiriman`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT untuk tabel `migrations`
--
ALTER TABLE `migrations`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT untuk tabel `sample_database`
--
ALTER TABLE `sample_database`
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 */;
|
SELECT coh.name, AVG(completed_at-started_at) AS average_assistance_request_duration
FROM students stu
JOIN cohorts coh ON coh.id = stu.cohort_id
JOIN assistance_requests req ON req.student_id = stu.id
GROUP BY coh.name
ORDER BY average_assistance_request_duration DESC
LIMIT 1;
|
create table movieTable
( `movieID` int unsigned not null auto_increment primary key,
`movieName` char(50) not null
);
create table slotTable
( `slotID` int unsigned not null auto_increment primary key,
`movieID` text not null,
`day` text not null,
`time` time not null
);
create table seatsTable
( `seatID` int unsigned not null auto_increment primary key,
`slotID` text not null,
`seatNumber` char(2) not null,
`availability` text not null
);
create table transTable
( `transID` int unsigned not null auto_increment primary key,
`name` text not null,
`email` text not null,
`number` char(8) not null,
`address` text not null,
`slotID` int not null,
`seatID` int not null
);
|
SELECT DISTINCT
v0123.product,
COALESCE(lang_en, lang_zh, lang_de, lang_fr) AS lang,
COALESCE(review_en_id, review_zh_id, review_de_id, review_fr_id) AS review_id
FROM
(
SELECT
v012.product AS product,
review_en_id,
lang_en,
review_zh_id,
lang_zh,
review_de_id,
lang_de
FROM
(SELECT
v01.product AS product,
review_en_id,
lang_en,
review_zh_id,
lang_zh
FROM
(
SELECT
v0.product AS product,
v1.review_en_id AS review_en_id,
v1.language AS lang_en,
v1.text AS review_en
FROM (SELECT review.product
FROM review
WHERE (review.language = 'en' OR review.language = 'zh' OR review.language = 'de' OR review.language = 'fr'
AND product < 1000)
) v0
LEFT JOIN
(SELECT
review.product,
review.nr AS review_en_id,
review.language,
review.text
FROM review
WHERE (review.language = 'en'
AND product < 1000)
) v1
ON v0.product = v1.product
) v01
LEFT JOIN
(SELECT
review.product,
review.nr AS review_zh_id,
review.language AS lang_zh,
review.text AS review_zh
FROM review
WHERE (review.language = 'zh'
AND product < 1000)
) v2
ON v01.product = v2.product) v012
LEFT JOIN
(SELECT
review.product,
review.nr AS review_de_id,
review.language AS lang_de,
review.text AS review_de
FROM review
WHERE (review.language = 'de'
AND product < 1000)) v3
ON (v012.product = v3.product)) v0123
LEFT JOIN
(SELECT
review.product,
review.nr AS review_fr_id,
review.language AS lang_fr,
review.text AS review_fr
FROM review
WHERE (review.language = 'fr'
AND product < 1000)) v4
ON (v0123.product = v4.product);
|
CREATE TABLE lms_create_table_test (lms_test_id INTEGER, lms_test_timestamp TIMESTAMP)
|
-- get a list of hashes, user_ids, and usernames for future use.
USE cs340_smithb22;
Select credential.user_id, credential.hash, credential.exp_date, user.username
FROM credential
INNER JOIN user on credential.user_id=user.id
-- return all hashes and experation dates for a given usernames
USE cs340_smithb22;
SELECT hash, exp_date
FROM credential
Where user_id in (SELECT id from user
where username = "test_user00");
|
/* Formatted on 17/06/2014 18:06:29 (QP5 v5.227.12220.39754) */
CREATE OR REPLACE FORCE VIEW MCRE_OWN.V_MCRE0_ST_RICH_MON
(
ID_DPER,
COD_SNDG
)
AS
WITH T_MCRE0_FL_RICH_MON
AS (SELECT (SELECT TO_NUMBER (
TO_CHAR (
TO_DATE (TRIM (PERIODO_RIF), 'DDMMYYYY'),
'YYYYMMDD'))
FROM TE_MCRE0_RICH_MON_DT
WHERE ROWNUM = 1)
ID_DPER,
RPAD (FA8_NDG_GRP, 16, 0) AS COD_SNDG
FROM TE_MCRE0_RICH_MON
WHERE FND_MCRE0_is_numeric (FA8_NDG_GRP) = 1)
SELECT "ID_DPER", "COD_SNDG"
FROM (SELECT COUNT (1) OVER (PARTITION BY ID_DPER, COD_SNDG) NUM_RECS,
ID_DPER,
COD_SNDG
FROM T_MCRE0_FL_RICH_MON) tmp
WHERE NUM_RECS = 1
AND TRIM (TO_CHAR (ID_DPER)) IS NOT NULL
AND TRIM (TO_CHAR (COD_SNDG)) IS NOT NULL;
GRANT SELECT ON MCRE_OWN.V_MCRE0_ST_RICH_MON TO MCRE_USR;
|
--
-- Drop existing objects
--
DROP SCHEMA IF EXISTS "order" CASCADE;
--
-- Order schema
--
CREATE SCHEMA IF NOT EXISTS "order";
--
-- Cart
--
CREATE SEQUENCE "order".cart_id_seq INCREMENT 1 MINVALUE 1 START 1 CACHE 1;
CREATE TABLE "order".cart
(
"id" integer NOT NULL DEFAULT nextval('order.cart_id_seq'::regclass),
"key" uuid NOT NULL,
"account" integer,
"total_price" numeric(20,6) NOT NULL,
"total_price_excluding_tax" numeric(20,6) NOT NULL,
"total_tax" numeric(20,6) NOT NULL,
"currency" text NOT NULL,
"created_on" timestamp NOT NULL DEFAULT now(),
"modified_on" timestamp NOT NULL DEFAULT now(),
CONSTRAINT pk_cart PRIMARY KEY (id),
CONSTRAINT uq_cart_key UNIQUE ("key"),
CONSTRAINT fk_cart_account FOREIGN KEY ("account")
REFERENCES web.account (id) MATCH SIMPLE
ON UPDATE NO ACTION ON DELETE SET NULL
);
--
-- Cart item
--
CREATE SEQUENCE "order".cart_item_id_seq INCREMENT 1 MINVALUE 1 START 1 CACHE 1;
CREATE TABLE "order".cart_item
(
"id" integer NOT NULL DEFAULT nextval('order.cart_item_id_seq'::regclass),
"key" uuid NOT NULL,
"cart" integer NOT NULL,
"product" uuid NOT NULL,
"pricing_model" uuid NOT NULL,
"added_on" timestamp NOT NULL DEFAULT now(),
"removed_on" timestamp,
CONSTRAINT pk_cart_item PRIMARY KEY (id),
CONSTRAINT fk_cart_item_cart FOREIGN KEY ("cart")
REFERENCES "order".cart (id) MATCH SIMPLE
ON UPDATE NO ACTION ON DELETE CASCADE
);
|
-- phpMyAdmin SQL Dump
-- version 4.4.10
-- http://www.phpmyadmin.net
--
-- Client : localhost
-- Généré le : Jeu 04 Février 2016 à 18:46
-- Version du serveur : 5.5.42
-- Version de PHP : 5.6.10
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";
--
-- Base de données : `ecv_goodplanet`
--
-- --------------------------------------------------------
--
-- Structure de la table `article`
--
CREATE TABLE `article` (
`id` int(11) NOT NULL,
`title` varchar(255) NOT NULL,
`content` text NOT NULL,
`date` datetime NOT NULL,
`category` varchar(255) NOT NULL,
`picture` varchar(255) NOT NULL,
`id_author` int(11) NOT NULL,
`intro` text NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Structure de la table `location`
--
CREATE TABLE `location` (
`id` int(11) NOT NULL,
`name` varchar(255) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Structure de la table `media`
--
CREATE TABLE `media` (
`id` int(11) NOT NULL,
`type` varchar(255) NOT NULL,
`url` varchar(255) NOT NULL,
`date` datetime NOT NULL,
`id_theme` int(11) NOT NULL,
`id_location` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Structure de la table `theme`
--
CREATE TABLE `theme` (
`id` int(11) NOT NULL,
`name` varchar(255) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Structure de la table `user`
--
CREATE TABLE `user` (
`id` int(11) NOT NULL,
`name` varchar(255) NOT NULL,
`role` varchar(255) NOT NULL,
`create_date` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Index pour les tables exportées
--
--
-- Index pour la table `article`
--
ALTER TABLE `article`
ADD PRIMARY KEY (`id`);
--
-- Index pour la table `location`
--
ALTER TABLE `location`
ADD PRIMARY KEY (`id`);
--
-- Index pour la table `media`
--
ALTER TABLE `media`
ADD PRIMARY KEY (`id`);
--
-- Index pour la table `theme`
--
ALTER TABLE `theme`
ADD PRIMARY KEY (`id`);
--
-- Index pour la table `user`
--
ALTER TABLE `user`
ADD PRIMARY KEY (`id`);
--
-- AUTO_INCREMENT pour les tables exportées
--
--
-- AUTO_INCREMENT pour la table `article`
--
ALTER TABLE `article`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT pour la table `location`
--
ALTER TABLE `location`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT pour la table `media`
--
ALTER TABLE `media`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT pour la table `theme`
--
ALTER TABLE `theme`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT pour la table `user`
--
ALTER TABLE `user`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
|
USE SCLOUD_PHONE;
DROP TABLE IF EXISTS PHONE_TABS_CLICK;
DROP TABLE IF EXISTS PHONE_TABS_CLICK_SUMMARY;
DROP TABLE IF EXISTS PHONE_TABS_CLICK_SUMMARY_OBS;
DROP TABLE IF EXISTS PHONE_ACTIVITY_DAILY;
CREATE TABLE PHONE_TABS_CLICK
(
IMEI STRING COMMENT '手机IMEI号',
TAB_TYPE CHAR(1) COMMENT '手机Tab页类型,[最新页(1) |关注页(2) | 排行页(3)| 广场页(4) |管理页 (5)]',
EXPOSURE_ON_PHONE INT COMMENT '曝光手机次数',
EXPOSURE_SUM INT COMMENT '曝光总次数',
SUMMARY_DATE STRING COMMENT '统计日期'
);
CREATE TABLE PHONE_TABS_CLICK_SUMMARY
(
IMEI STRING COMMENT '手机IMEI号',
EXPOSURE_ON_PHONE_LATEST INT COMMENT '曝光手机次数-最新',
EXPOSURE_SUM_LATEST INT COMMENT '曝光总次数-最新页',
EXPOSURE_ON_PHONE_FOLLOW INT COMMENT '曝光手机次数-关注页',
EXPOSURE_SUM_FOLLOW INT COMMENT '曝光总次数-关注页',
EXPOSURE_SUM_TOP INT COMMENT '曝光总次数-排行页',
EXPOSURE_ON_PHONE_TOP INT COMMENT '曝光手机次数-排行页',
EXPOSURE_SUM_DESK INT COMMENT '曝光总次数-广场页',
EXPOSURE_ON_PHONE_DESK INT COMMENT '曝光手机次数-广场页',
EXPOSURE_SUM_MANA INT COMMENT '曝光总次数-管理页',
EXPOSURE_ON_PHONE_MANA INT COMMENT '曝光手机次数-管理页',
SUMMARY_DATE STRING COMMENT '统计日期'
) ROW FORMAT DELIMITED FIELDS TERMINATED BY '\t';
CREATE TABLE PHONE_TABS_CLICK_SUMMARY_OBS
(
IMEI STRING COMMENT '手机IMEI号',
EXPOSURE_ON_PHONE_LATEST INT COMMENT '曝光手机次数-最新',
EXPOSURE_SUM_LATEST INT COMMENT '曝光总次数-最新页',
EXPOSURE_ON_PHONE_FOLLOW INT COMMENT '曝光手机次数-关注页',
EXPOSURE_SUM_FOLLOW INT COMMENT '曝光总次数-关注页',
EXPOSURE_SUM_TOP INT COMMENT '曝光总次数-排行页',
EXPOSURE_ON_PHONE_TOP INT COMMENT '曝光手机次数-排行页',
EXPOSURE_SUM_DESK INT COMMENT '曝光总次数-广场页',
EXPOSURE_ON_PHONE_DESK INT COMMENT '曝光手机次数-广场页',
EXPOSURE_SUM_MANA INT COMMENT '曝光总次数-管理页',
EXPOSURE_ON_PHONE_MANA INT COMMENT '曝光手机次数-管理页',
SUMMARY_DATE STRING COMMENT '统计日期',
SOFTWARE_VERSION STRING COMMENT '软件版本编',
EXTERNAL_MODEL STRING COMMENT '外部机型',
GROUP_TITLE STRING COMMENT '分组名称',
ACTIVITY_DAILY INT COMMENT '手机日活跃汇总数'
) ROW FORMAT DELIMITED FIELDS TERMINATED BY '\t';
CREATE TABLE PHONE_ACTIVITY_DAILY
(
IMEI STRING COMMENT '手机IMEI号',
GROUP_TITLE STRING COMMENT '分组名称',
SOFTWARE_VERSION STRING COMMENT '软件版本编',
EXTERNAL_MODEL STRING COMMENT '外部机型',
ACTIVITY_DAILY INT COMMENT '手机日活跃汇总数',
SUMMARY_DATE STRING COMMENT '统计日期'
) ROW FORMAT DELIMITED FIELDS TERMINATED BY '\t';
|
create table if not exists t11.t0 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t10 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t11 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t12 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t13 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t14 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t15 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t16 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t17 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t18 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t19 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t20 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t21 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t22 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t23 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t24 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t25 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t26 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t27 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t28 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t29 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t30 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t31 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t32 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t33 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t34 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t35 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t36 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t37 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t38 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t39 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t40 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t41 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t42 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t43 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t44 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t45 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t46 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t47 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t48 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t49 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t50 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t51 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t52 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t53 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t54 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t55 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t56 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t57 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t58 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t59 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t60 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t61 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t62 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t63 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t64 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t65 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t66 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t67 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t68 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t69 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t70 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t71 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t72 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t73 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t74 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t75 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t76 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t77 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t78 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t79 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t80 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t81 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t82 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t83 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t84 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t85 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t86 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t87 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t88 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t89 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t90 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t91 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t92 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t93 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t94 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t95 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t96 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t97 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t98 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t99 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t100 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t101 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t102 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t103 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t104 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t105 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t106 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t107 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t108 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t109 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t110 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t111 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t112 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t113 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t114 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t115 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t116 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t117 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t118 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t119 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t120 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t121 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t122 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t123 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t124 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t125 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t126 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t127 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t128 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t129 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t130 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t131 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t132 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t133 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t134 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t135 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t136 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t137 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t138 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t139 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t140 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t141 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t142 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t143 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t144 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t145 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t146 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t147 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t148 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t149 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t150 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t151 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t152 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t153 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t154 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t155 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t156 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t157 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t158 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t159 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t160 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t161 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t162 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t163 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t164 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t165 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t166 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t167 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t168 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t169 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t170 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t171 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t172 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t173 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t174 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t175 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t176 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t177 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t178 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t179 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t180 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t181 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t182 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t183 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t184 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t185 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t186 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t187 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t188 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t189 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t190 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t191 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t192 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t193 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t194 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t195 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t196 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t197 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t198 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t199 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t200 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t201 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t202 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t203 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t204 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t205 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t206 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t207 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t208 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t209 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t210 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t211 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t212 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t213 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t214 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t215 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t216 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t217 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t218 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t219 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t220 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t221 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t222 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t223 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t224 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t225 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t226 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t227 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t228 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t229 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t230 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t231 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t232 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t233 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t234 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t235 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t236 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t237 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t238 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t239 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t240 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t241 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t242 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t243 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t244 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t245 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t246 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t247 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t248 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t249 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t250 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t251 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t252 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t253 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t254 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t255 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t256 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t257 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t258 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t259 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t260 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t261 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t262 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t263 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t264 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t265 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t266 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t267 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t268 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t269 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t270 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t271 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t272 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t273 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t274 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t275 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t276 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t277 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t278 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t279 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t280 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t281 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t282 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t283 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t284 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t285 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t286 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t287 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t288 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t289 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t290 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t291 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t292 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t293 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t294 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t295 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t296 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t297 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t298 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t299 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t300 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t301 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t302 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t303 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t304 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t305 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t306 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t307 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t308 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t309 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t310 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t311 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t312 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t313 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t314 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t315 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t316 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t317 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t318 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t319 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t320 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t321 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t322 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t323 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t324 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t325 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t326 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t327 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t328 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t329 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t330 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t331 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t332 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t333 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t334 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t335 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t336 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t337 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t338 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t339 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t340 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t341 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t342 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t343 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t344 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t345 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t346 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t347 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t348 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t349 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t350 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t351 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t352 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t353 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t354 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t355 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t356 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t357 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t358 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t359 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t360 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t361 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t362 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t363 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t364 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t365 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t366 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t367 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t368 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t369 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t370 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t371 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t372 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t373 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t374 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t375 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t376 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t377 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t378 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t379 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t380 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t381 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t382 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t383 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t384 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t385 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t386 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t387 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t388 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t389 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t390 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t391 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t392 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t393 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t394 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t395 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t396 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t397 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t398 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t399 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t400 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t401 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t402 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t403 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t404 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t405 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t406 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t407 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t408 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t409 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t410 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t411 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t412 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t413 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t414 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t415 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t416 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t417 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t418 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t419 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t420 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t421 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t422 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t423 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t424 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t425 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t426 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t427 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t428 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t429 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t430 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t431 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t432 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t433 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t434 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t435 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t436 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t437 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t438 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t439 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t440 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t441 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t442 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t443 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t444 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t445 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t446 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t447 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t448 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t449 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t450 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t451 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t452 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t453 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t454 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t455 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t456 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t457 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t458 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t459 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t460 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t461 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t462 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t463 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t464 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t465 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t466 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t467 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t468 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t469 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t470 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t471 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t472 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t473 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t474 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t475 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t476 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t477 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t478 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t479 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t480 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t481 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t482 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t483 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t484 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t485 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t486 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t487 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t488 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t489 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t490 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t491 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t492 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t493 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t494 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t495 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t496 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t497 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t498 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t499 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t500 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t501 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t502 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t503 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t504 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t505 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t506 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t507 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t508 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t509 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t510 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t511 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t512 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t513 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t514 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t515 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t516 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t517 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t518 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t519 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t520 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t521 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t522 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t523 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t524 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t525 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t526 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t527 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t528 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t529 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t530 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t531 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t532 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t533 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t534 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t535 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t536 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t537 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t538 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t539 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t540 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t541 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t542 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t543 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t544 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t545 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t546 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t547 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t548 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t549 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t550 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t551 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t552 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t553 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t554 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t555 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t556 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t557 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t558 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t559 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t560 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t561 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t562 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t563 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t564 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t565 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t566 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t567 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t568 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t569 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t570 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t571 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t572 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t573 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t574 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t575 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t576 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t577 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t578 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t579 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t580 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t581 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t582 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t583 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t584 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t585 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t586 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t587 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t588 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t589 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t590 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t591 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t592 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t593 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t594 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t595 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t596 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t597 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t598 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t599 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t600 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t601 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t602 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t603 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t604 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t605 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t606 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t607 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t608 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t609 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t610 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t611 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t612 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t613 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t614 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t615 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t616 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t617 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t618 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t619 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t620 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t621 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t622 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t623 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t624 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t625 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t626 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t627 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t628 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t629 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t630 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t631 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t632 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t633 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t634 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t635 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t636 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t637 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t638 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t639 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t640 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t641 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t642 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t643 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t644 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t645 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t646 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t647 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t648 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t649 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t650 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t651 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t652 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t653 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t654 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t655 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t656 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t657 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t658 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t659 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t660 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t661 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t662 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t663 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t664 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t665 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t666 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t667 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t668 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t669 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t670 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t671 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t672 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t673 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t674 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t675 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t676 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t677 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t678 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t679 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t680 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t681 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t682 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t683 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t684 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t685 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t686 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t687 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t688 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t689 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t690 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t691 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t692 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t693 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t694 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t695 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t696 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t697 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t698 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t699 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t700 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t701 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t702 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t703 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t704 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t705 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t706 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t707 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t708 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t709 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t710 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t711 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t712 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t713 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t714 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t715 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t716 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t717 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t718 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t719 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t720 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t721 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t722 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t723 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t724 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t725 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t726 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t727 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t728 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t729 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t730 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t731 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t732 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t733 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t734 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t735 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t736 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t737 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t738 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t739 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t740 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t741 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t742 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t743 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t744 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t745 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t746 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t747 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t748 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t749 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t750 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t751 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t752 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t753 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t754 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t755 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t756 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t757 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t758 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t759 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t760 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t761 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t762 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t763 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t764 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t765 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t766 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t767 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t768 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t769 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t770 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t771 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t772 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t773 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t774 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t775 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t776 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t777 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t778 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t779 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t780 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t781 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t782 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t783 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t784 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t785 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t786 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t787 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t788 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t789 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t790 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t791 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t792 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t793 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t794 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t795 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t796 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t797 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t798 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t799 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t800 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t801 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t802 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t803 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t804 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t805 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t806 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t807 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t808 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t809 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t810 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t811 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t812 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t813 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t814 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t815 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t816 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t817 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t818 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t819 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t820 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t821 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t822 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t823 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t824 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t825 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t826 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t827 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t828 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t829 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t830 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t831 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t832 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t833 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t834 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t835 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t836 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t837 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t838 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t839 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t840 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t841 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t842 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t843 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t844 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t845 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t846 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t847 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t848 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t849 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t850 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t851 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t852 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t853 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t854 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t855 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t856 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t857 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t858 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t859 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t860 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t861 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t862 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t863 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t864 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t865 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t866 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t867 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t868 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t869 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t870 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t871 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t872 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t873 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t874 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t875 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t876 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t877 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t878 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t879 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t880 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t881 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t882 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t883 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t884 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t885 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t886 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t887 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t888 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t889 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t890 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t891 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t892 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t893 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t894 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t895 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t896 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t897 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t898 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t899 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t900 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t901 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t902 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t903 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t904 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t905 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t906 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t907 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t908 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t909 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t910 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t911 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t912 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t913 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t914 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t915 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t916 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t917 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t918 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t919 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t920 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t921 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t922 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t923 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t924 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t925 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t926 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t927 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t928 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t929 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t930 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t931 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t932 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t933 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t934 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t935 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t936 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t937 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t938 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t939 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t940 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t941 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t942 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t943 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t944 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t945 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t946 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t947 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t948 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t949 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t950 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t951 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t952 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t953 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t954 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t955 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t956 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t957 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t958 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t959 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t960 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t961 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t962 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t963 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t964 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t965 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t966 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t967 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t968 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t969 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t970 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t971 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t972 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t973 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t974 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t975 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t976 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t977 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t978 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t979 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t980 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t981 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t982 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t983 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t984 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t985 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t986 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t987 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t988 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t989 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t990 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t991 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t992 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t993 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t994 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t995 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t996 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t997 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t998 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t999 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1000 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1001 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1002 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1003 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1004 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1005 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1006 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1007 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1008 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1009 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1010 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1011 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1012 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1013 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1014 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1015 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1016 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1017 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1018 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1019 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1020 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1021 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1022 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1023 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1024 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1025 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1026 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1027 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1028 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1029 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1030 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1031 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1032 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1033 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1034 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1035 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1036 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1037 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1038 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1039 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1040 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1041 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1042 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1043 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1044 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1045 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1046 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1047 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1048 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1049 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1050 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1051 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1052 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1053 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1054 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1055 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1056 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1057 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1058 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1059 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1060 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1061 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1062 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1063 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1064 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1065 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1066 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1067 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1068 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1069 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1070 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1071 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1072 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1073 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1074 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1075 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1076 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1077 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1078 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1079 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1080 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1081 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1082 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1083 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1084 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1085 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1086 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1087 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1088 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1089 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1090 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1091 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1092 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1093 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1094 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1095 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1096 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1097 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1098 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1099 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1100 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1101 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1102 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1103 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1104 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1105 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1106 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1107 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1108 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1109 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1110 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1111 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1112 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1113 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1114 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1115 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1116 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1117 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1118 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1119 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1120 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1121 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1122 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1123 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1124 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1125 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1126 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1127 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1128 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1129 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1130 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1131 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1132 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1133 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1134 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1135 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1136 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1137 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1138 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1139 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1140 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1141 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1142 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1143 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1144 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1145 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1146 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1147 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1148 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1149 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1150 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1151 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1152 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1153 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1154 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1155 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1156 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1157 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1158 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1159 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1160 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1161 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1162 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1163 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1164 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1165 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1166 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1167 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1168 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1169 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1170 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1171 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1172 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1173 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1174 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1175 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1176 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1177 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1178 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1179 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1180 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1181 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1182 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1183 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1184 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1185 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1186 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1187 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1188 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1189 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1190 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1191 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1192 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1193 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1194 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1195 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1196 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1197 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1198 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1199 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1200 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1201 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1202 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1203 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1204 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1205 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1206 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1207 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1208 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1209 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1210 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1211 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1212 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1213 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1214 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1215 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1216 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1217 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1218 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1219 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1220 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1221 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1222 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1223 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1224 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1225 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1226 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1227 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1228 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1229 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1230 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1231 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1232 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1233 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1234 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1235 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1236 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1237 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1238 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1239 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1240 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1241 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1242 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1243 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1244 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1245 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1246 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1247 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1248 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1249 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1250 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1251 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1252 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1253 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1254 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1255 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1256 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1257 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1258 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1259 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1260 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1261 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1262 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1263 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1264 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1265 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1266 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1267 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1268 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1269 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1270 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1271 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1272 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1273 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1274 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1275 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1276 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1277 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1278 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1279 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1280 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1281 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1282 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1283 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1284 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1285 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1286 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1287 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1288 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1289 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1290 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1291 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1292 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1293 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1294 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1295 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1296 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1297 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1298 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1299 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1300 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1301 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1302 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1303 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1304 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1305 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1306 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1307 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1308 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1309 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1310 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1311 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1312 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1313 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1314 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1315 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1316 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1317 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1318 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1319 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1320 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1321 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1322 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1323 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1324 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1325 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1326 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1327 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1328 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1329 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1330 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1331 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1332 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1333 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1334 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1335 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1336 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1337 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1338 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1339 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1340 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1341 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1342 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1343 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1344 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1345 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1346 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1347 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1348 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1349 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1350 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1351 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1352 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1353 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1354 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1355 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1356 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1357 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1358 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1359 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1360 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1361 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1362 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1363 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1364 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1365 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1366 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1367 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1368 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1369 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1370 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1371 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1372 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1373 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1374 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1375 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1376 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1377 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1378 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1379 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1380 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1381 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1382 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1383 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1384 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1385 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1386 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1387 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1388 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1389 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1390 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1391 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1392 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1393 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1394 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1395 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1396 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1397 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1398 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1399 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1400 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1401 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1402 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1403 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1404 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1405 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1406 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1407 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1408 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1409 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1410 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1411 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1412 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1413 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1414 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1415 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1416 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1417 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1418 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1419 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1420 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1421 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1422 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1423 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1424 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1425 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1426 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1427 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1428 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1429 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1430 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1431 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1432 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1433 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1434 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1435 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1436 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1437 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1438 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1439 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1440 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1441 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1442 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1443 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1444 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1445 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1446 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1447 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1448 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1449 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1450 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1451 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1452 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1453 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1454 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1455 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1456 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1457 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1458 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1459 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1460 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1461 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1462 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1463 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1464 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1465 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1466 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1467 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1468 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1469 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1470 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1471 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1472 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1473 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1474 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1475 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1476 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1477 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1478 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1479 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1480 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1481 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1482 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1483 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1484 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1485 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1486 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1487 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1488 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1489 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1490 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1491 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1492 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1493 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1494 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1495 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1496 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1497 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1498 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1499 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1500 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1501 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1502 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1503 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1504 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1505 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1506 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1507 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1508 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1509 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1510 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1511 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1512 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1513 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1514 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1515 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1516 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1517 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1518 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1519 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1520 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1521 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1522 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1523 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1524 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1525 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1526 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1527 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1528 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1529 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1530 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1531 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1532 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1533 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1534 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1535 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1536 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1537 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1538 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1539 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1540 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1541 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1542 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1543 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1544 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1545 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1546 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1547 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1548 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1549 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1550 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1551 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1552 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1553 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1554 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1555 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1556 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1557 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1558 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1559 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1560 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1561 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1562 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1563 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1564 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1565 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1566 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1567 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1568 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1569 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1570 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1571 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1572 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1573 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1574 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1575 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1576 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1577 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1578 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1579 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1580 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1581 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1582 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1583 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1584 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1585 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1586 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1587 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1588 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1589 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1590 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1591 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1592 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1593 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1594 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1595 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1596 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1597 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1598 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1599 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1600 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1601 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1602 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1603 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1604 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1605 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1606 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1607 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1608 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1609 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1610 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1611 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1612 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1613 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1614 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1615 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1616 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1617 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1618 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1619 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1620 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1621 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1622 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1623 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1624 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1625 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1626 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1627 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1628 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1629 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1630 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1631 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1632 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1633 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1634 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1635 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1636 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1637 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1638 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1639 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1640 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1641 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1642 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1643 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1644 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1645 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1646 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1647 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1648 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1649 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1650 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1651 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1652 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1653 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1654 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1655 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1656 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1657 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1658 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1659 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1660 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1661 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1662 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1663 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1664 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1665 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1666 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1667 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1668 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1669 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1670 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1671 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1672 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1673 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1674 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1675 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1676 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1677 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1678 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1679 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1680 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1681 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1682 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1683 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1684 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1685 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1686 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1687 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1688 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1689 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1690 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1691 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1692 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1693 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1694 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1695 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1696 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1697 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1698 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1699 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1700 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1701 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1702 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1703 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1704 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1705 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1706 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1707 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1708 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1709 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1710 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1711 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1712 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1713 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1714 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1715 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1716 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1717 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1718 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1719 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1720 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1721 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1722 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1723 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1724 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1725 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1726 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1727 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1728 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1729 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1730 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1731 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1732 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1733 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1734 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1735 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1736 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1737 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1738 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1739 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1740 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1741 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1742 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1743 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1744 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1745 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1746 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1747 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1748 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1749 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1750 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1751 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1752 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1753 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1754 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1755 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1756 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1757 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1758 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1759 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1760 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1761 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1762 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1763 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1764 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1765 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1766 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1767 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1768 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1769 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1770 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1771 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1772 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1773 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1774 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1775 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1776 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1777 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1778 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1779 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1780 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1781 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1782 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1783 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1784 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1785 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1786 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1787 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1788 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1789 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1790 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1791 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1792 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1793 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1794 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1795 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1796 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1797 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1798 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1799 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1800 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1801 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1802 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1803 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1804 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1805 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1806 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1807 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1808 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1809 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1810 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1811 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1812 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1813 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1814 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1815 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1816 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1817 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1818 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1819 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1820 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1821 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1822 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1823 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1824 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1825 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1826 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1827 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1828 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1829 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1830 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1831 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1832 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1833 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1834 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1835 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1836 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1837 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1838 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1839 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1840 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1841 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1842 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1843 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1844 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1845 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1846 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1847 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1848 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1849 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1850 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1851 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1852 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1853 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1854 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1855 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1856 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1857 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1858 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1859 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1860 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1861 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1862 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1863 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1864 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1865 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1866 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1867 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1868 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1869 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1870 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1871 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1872 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1873 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1874 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1875 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1876 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1877 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1878 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1879 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1880 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1881 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1882 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1883 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1884 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1885 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1886 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1887 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1888 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1889 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1890 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1891 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1892 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1893 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1894 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1895 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1896 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1897 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1898 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1899 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1900 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1901 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1902 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1903 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1904 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1905 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1906 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1907 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1908 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1909 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1910 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1911 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1912 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1913 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1914 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1915 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1916 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1917 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1918 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1919 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1920 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1921 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1922 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1923 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1924 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1925 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1926 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1927 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1928 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1929 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1930 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1931 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1932 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1933 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1934 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1935 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1936 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1937 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1938 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1939 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1940 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1941 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1942 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1943 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1944 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1945 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1946 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1947 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1948 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1949 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1950 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1951 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1952 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1953 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1954 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1955 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1956 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1957 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1958 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1959 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1960 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1961 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1962 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1963 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1964 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1965 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1966 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1967 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1968 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1969 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1970 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1971 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1972 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1973 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1974 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1975 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1976 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1977 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1978 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1979 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1980 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1981 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1982 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1983 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1984 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1985 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1986 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1987 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1988 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1989 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1990 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1991 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1992 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1993 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1994 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1995 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1996 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1997 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1998 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t1999 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2000 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2001 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2002 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2003 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2004 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2005 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2006 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2007 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2008 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2009 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2010 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2011 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2012 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2013 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2014 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2015 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2016 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2017 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2018 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2019 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2020 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2021 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2022 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2023 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2024 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2025 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2026 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2027 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2028 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2029 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2030 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2031 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2032 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2033 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2034 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2035 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2036 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2037 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2038 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2039 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2040 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2041 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2042 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2043 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2044 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2045 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2046 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2047 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2048 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2049 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2050 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2051 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2052 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2053 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2054 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2055 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2056 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2057 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2058 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2059 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2060 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2061 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2062 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2063 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2064 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2065 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2066 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2067 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2068 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2069 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2070 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2071 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2072 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2073 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2074 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2075 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2076 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2077 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2078 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2079 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2080 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2081 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2082 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2083 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2084 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2085 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2086 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2087 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2088 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2089 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2090 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2091 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2092 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2093 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2094 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2095 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2096 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2097 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2098 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2099 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2100 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2101 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2102 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2103 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2104 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2105 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2106 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2107 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2108 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2109 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2110 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2111 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2112 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2113 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2114 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2115 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2116 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2117 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2118 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2119 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2120 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2121 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2122 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2123 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2124 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2125 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2126 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2127 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2128 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2129 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2130 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2131 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2132 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2133 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2134 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2135 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2136 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2137 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2138 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2139 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2140 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2141 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2142 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2143 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2144 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2145 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2146 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2147 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2148 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2149 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2150 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2151 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2152 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2153 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2154 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2155 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2156 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2157 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2158 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2159 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2160 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2161 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2162 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2163 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2164 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2165 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2166 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2167 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2168 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2169 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2170 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2171 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2172 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2173 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2174 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2175 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2176 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2177 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2178 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2179 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2180 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2181 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2182 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2183 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2184 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2185 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2186 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2187 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2188 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2189 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2190 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2191 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2192 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2193 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2194 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2195 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2196 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2197 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2198 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2199 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2200 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2201 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2202 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2203 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2204 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2205 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2206 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2207 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2208 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2209 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2210 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2211 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2212 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2213 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2214 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2215 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2216 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2217 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2218 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2219 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2220 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2221 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2222 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2223 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2224 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2225 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2226 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2227 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2228 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2229 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2230 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2231 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2232 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2233 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2234 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2235 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2236 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2237 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2238 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2239 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2240 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2241 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2242 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2243 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2244 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2245 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2246 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2247 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2248 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2249 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2250 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2251 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2252 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2253 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2254 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2255 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2256 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2257 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2258 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2259 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2260 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2261 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2262 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2263 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2264 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2265 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2266 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2267 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2268 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2269 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2270 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2271 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2272 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2273 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2274 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2275 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2276 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2277 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2278 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2279 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2280 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2281 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2282 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2283 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2284 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2285 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2286 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2287 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2288 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2289 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2290 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2291 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2292 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2293 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2294 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2295 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2296 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2297 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2298 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2299 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2300 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2301 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2302 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2303 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2304 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2305 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2306 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2307 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2308 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2309 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2310 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2311 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2312 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2313 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2314 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2315 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2316 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2317 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2318 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2319 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2320 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2321 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2322 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2323 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2324 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2325 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2326 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2327 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2328 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2329 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2330 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2331 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2332 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2333 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2334 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2335 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2336 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2337 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2338 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2339 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2340 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2341 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2342 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2343 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2344 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2345 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2346 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2347 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2348 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2349 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2350 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2351 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2352 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2353 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2354 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2355 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2356 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2357 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2358 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2359 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2360 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2361 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2362 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2363 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2364 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2365 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2366 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2367 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2368 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2369 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2370 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2371 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2372 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2373 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2374 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2375 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2376 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2377 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2378 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2379 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2380 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2381 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2382 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2383 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2384 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2385 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2386 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2387 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2388 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2389 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2390 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2391 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2392 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2393 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2394 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2395 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2396 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2397 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2398 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2399 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2400 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2401 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2402 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2403 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2404 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2405 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2406 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2407 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2408 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2409 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2410 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2411 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2412 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2413 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2414 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2415 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2416 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2417 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2418 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2419 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2420 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2421 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2422 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2423 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2424 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2425 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2426 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2427 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2428 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2429 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2430 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2431 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2432 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2433 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2434 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2435 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2436 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2437 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2438 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2439 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2440 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2441 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2442 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2443 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2444 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2445 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2446 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2447 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2448 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2449 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2450 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2451 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2452 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2453 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2454 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2455 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2456 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2457 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2458 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2459 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2460 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2461 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2462 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2463 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2464 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2465 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2466 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2467 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2468 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2469 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2470 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2471 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2472 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2473 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2474 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2475 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2476 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2477 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2478 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2479 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2480 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2481 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2482 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2483 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2484 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2485 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2486 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2487 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2488 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2489 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2490 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2491 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2492 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2493 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2494 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2495 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2496 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2497 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2498 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2499 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2500 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2501 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2502 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2503 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2504 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2505 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2506 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2507 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2508 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2509 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2510 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2511 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2512 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2513 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2514 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2515 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2516 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2517 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2518 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2519 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2520 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2521 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2522 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2523 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2524 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2525 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2526 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2527 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2528 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2529 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2530 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2531 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2532 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2533 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2534 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2535 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2536 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2537 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2538 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2539 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2540 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2541 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2542 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2543 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2544 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2545 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2546 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2547 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2548 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2549 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2550 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2551 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2552 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2553 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2554 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2555 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2556 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2557 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2558 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2559 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2560 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2561 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2562 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2563 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2564 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2565 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2566 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2567 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2568 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2569 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2570 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2571 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2572 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2573 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2574 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2575 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2576 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2577 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2578 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2579 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2580 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2581 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2582 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2583 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2584 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2585 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2586 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2587 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2588 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2589 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2590 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2591 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2592 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2593 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2594 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2595 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2596 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2597 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2598 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2599 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2600 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2601 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2602 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2603 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2604 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2605 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2606 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2607 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2608 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2609 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2610 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2611 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2612 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2613 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2614 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2615 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2616 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2617 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2618 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2619 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2620 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2621 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2622 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2623 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2624 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2625 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2626 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2627 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2628 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2629 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2630 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2631 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2632 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2633 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2634 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2635 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2636 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2637 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2638 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2639 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2640 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2641 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2642 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2643 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2644 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2645 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2646 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2647 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2648 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2649 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2650 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2651 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2652 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2653 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2654 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2655 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2656 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2657 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2658 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2659 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2660 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2661 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2662 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2663 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2664 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2665 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2666 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2667 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2668 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2669 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2670 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2671 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2672 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2673 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2674 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2675 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2676 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2677 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2678 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2679 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2680 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2681 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2682 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2683 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2684 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2685 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2686 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2687 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2688 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2689 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2690 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2691 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2692 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2693 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2694 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2695 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2696 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2697 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2698 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2699 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2700 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2701 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2702 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2703 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2704 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2705 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2706 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2707 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2708 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2709 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2710 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2711 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2712 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2713 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2714 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2715 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2716 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2717 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2718 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2719 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2720 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2721 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2722 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2723 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2724 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2725 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2726 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2727 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2728 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2729 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2730 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2731 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2732 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2733 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2734 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2735 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2736 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2737 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2738 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2739 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2740 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2741 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2742 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2743 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2744 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2745 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2746 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2747 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2748 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2749 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2750 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2751 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2752 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2753 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2754 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2755 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2756 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2757 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2758 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2759 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2760 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2761 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2762 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2763 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2764 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2765 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2766 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2767 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2768 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2769 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2770 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2771 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2772 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2773 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2774 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2775 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2776 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2777 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2778 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2779 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2780 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2781 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2782 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2783 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2784 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2785 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2786 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2787 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2788 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2789 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2790 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2791 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2792 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2793 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2794 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2795 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2796 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2797 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2798 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2799 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2800 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2801 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2802 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2803 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2804 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2805 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2806 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2807 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2808 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2809 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2810 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2811 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2812 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2813 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2814 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2815 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2816 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2817 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2818 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2819 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2820 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2821 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2822 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2823 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2824 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2825 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2826 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2827 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2828 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2829 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2830 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2831 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2832 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2833 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2834 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2835 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2836 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2837 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2838 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2839 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2840 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2841 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2842 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2843 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2844 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2845 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2846 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2847 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2848 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2849 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2850 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2851 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2852 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2853 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2854 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2855 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2856 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2857 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2858 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2859 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2860 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2861 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2862 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2863 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2864 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2865 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2866 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2867 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2868 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2869 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2870 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2871 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2872 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2873 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2874 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2875 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2876 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2877 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2878 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2879 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2880 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2881 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2882 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2883 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2884 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2885 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2886 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2887 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2888 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2889 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2890 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2891 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2892 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2893 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2894 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2895 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2896 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2897 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2898 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2899 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2900 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2901 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2902 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2903 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2904 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2905 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2906 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2907 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2908 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2909 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2910 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2911 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2912 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2913 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2914 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2915 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2916 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2917 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2918 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2919 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2920 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2921 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2922 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2923 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2924 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2925 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2926 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2927 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2928 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2929 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2930 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2931 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2932 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2933 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2934 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2935 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2936 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2937 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2938 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2939 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2940 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2941 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2942 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2943 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2944 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2945 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2946 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2947 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2948 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2949 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2950 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2951 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2952 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2953 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2954 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2955 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2956 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2957 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2958 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2959 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2960 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2961 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2962 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2963 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2964 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2965 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2966 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2967 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2968 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2969 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2970 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2971 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2972 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2973 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2974 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2975 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2976 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2977 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2978 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2979 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2980 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2981 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2982 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2983 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2984 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2985 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2986 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2987 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2988 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2989 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2990 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2991 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2992 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2993 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2994 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2995 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2996 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2997 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2998 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t2999 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3000 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3001 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3002 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3003 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3004 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3005 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3006 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3007 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3008 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3009 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3010 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3011 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3012 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3013 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3014 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3015 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3016 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3017 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3018 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3019 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3020 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3021 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3022 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3023 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3024 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3025 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3026 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3027 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3028 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3029 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3030 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3031 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3032 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3033 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3034 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3035 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3036 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3037 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3038 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3039 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3040 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3041 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3042 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3043 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3044 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3045 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3046 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3047 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3048 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3049 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3050 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3051 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3052 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3053 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3054 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3055 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3056 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3057 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3058 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3059 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3060 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3061 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3062 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3063 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3064 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3065 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3066 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3067 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3068 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3069 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3070 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3071 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3072 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3073 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3074 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3075 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3076 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3077 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3078 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3079 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3080 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3081 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3082 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3083 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3084 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3085 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3086 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3087 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3088 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3089 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3090 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3091 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3092 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3093 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3094 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3095 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3096 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3097 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3098 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3099 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3100 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3101 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3102 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3103 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3104 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3105 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3106 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3107 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3108 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3109 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3110 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3111 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3112 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3113 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3114 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3115 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3116 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3117 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3118 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3119 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3120 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3121 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3122 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3123 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3124 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3125 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3126 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3127 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3128 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3129 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3130 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3131 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3132 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3133 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3134 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3135 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3136 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3137 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3138 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3139 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3140 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3141 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3142 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3143 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3144 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3145 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3146 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3147 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3148 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3149 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3150 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3151 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3152 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3153 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3154 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3155 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3156 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3157 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3158 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3159 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3160 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3161 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3162 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3163 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3164 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3165 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3166 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3167 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3168 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3169 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3170 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3171 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3172 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3173 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3174 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3175 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3176 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3177 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3178 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3179 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3180 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3181 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3182 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3183 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3184 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3185 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3186 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3187 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3188 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3189 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3190 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3191 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3192 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3193 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3194 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3195 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3196 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3197 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3198 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3199 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3200 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3201 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3202 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3203 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3204 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3205 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3206 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3207 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3208 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3209 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3210 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3211 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3212 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3213 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3214 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3215 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3216 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3217 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3218 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3219 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3220 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3221 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3222 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3223 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3224 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3225 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3226 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3227 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3228 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3229 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3230 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3231 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3232 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3233 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3234 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3235 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3236 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3237 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3238 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3239 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3240 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3241 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3242 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3243 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3244 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3245 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3246 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3247 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3248 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3249 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3250 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3251 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3252 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3253 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3254 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3255 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3256 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3257 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3258 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3259 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3260 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3261 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3262 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3263 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3264 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3265 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3266 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3267 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3268 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3269 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3270 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3271 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3272 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3273 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3274 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3275 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3276 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3277 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3278 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3279 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3280 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3281 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3282 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3283 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3284 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3285 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3286 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3287 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3288 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3289 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3290 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3291 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3292 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3293 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3294 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3295 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3296 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3297 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3298 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3299 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3300 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3301 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3302 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3303 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3304 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3305 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3306 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3307 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3308 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3309 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3310 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3311 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3312 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3313 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3314 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3315 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3316 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3317 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3318 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3319 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3320 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3321 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3322 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3323 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3324 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3325 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3326 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3327 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3328 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3329 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3330 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3331 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3332 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3333 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3334 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3335 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3336 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3337 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3338 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3339 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3340 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3341 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3342 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3343 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3344 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3345 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3346 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3347 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3348 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3349 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3350 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3351 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3352 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3353 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3354 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3355 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3356 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3357 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3358 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3359 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3360 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3361 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3362 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3363 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3364 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3365 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3366 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3367 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3368 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3369 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3370 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3371 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3372 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3373 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3374 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3375 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3376 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3377 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3378 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3379 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3380 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3381 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3382 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3383 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3384 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3385 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3386 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3387 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3388 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3389 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3390 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3391 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3392 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3393 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3394 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3395 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3396 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3397 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3398 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3399 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3400 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3401 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3402 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3403 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3404 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3405 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3406 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3407 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3408 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3409 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3410 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3411 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3412 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3413 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3414 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3415 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3416 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3417 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3418 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3419 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3420 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3421 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3422 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3423 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3424 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3425 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3426 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3427 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3428 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3429 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3430 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3431 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3432 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3433 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3434 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3435 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3436 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3437 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3438 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3439 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3440 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3441 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3442 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3443 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3444 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3445 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3446 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3447 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3448 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3449 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3450 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3451 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3452 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3453 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3454 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3455 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3456 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3457 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3458 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3459 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3460 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3461 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3462 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3463 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3464 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3465 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3466 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3467 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3468 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3469 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3470 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3471 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3472 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3473 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3474 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3475 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3476 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3477 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3478 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3479 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3480 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3481 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3482 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3483 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3484 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3485 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3486 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3487 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3488 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3489 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3490 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3491 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3492 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3493 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3494 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3495 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3496 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3497 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3498 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3499 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3500 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3501 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3502 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3503 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3504 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3505 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3506 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3507 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3508 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3509 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3510 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3511 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3512 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3513 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3514 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3515 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3516 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3517 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3518 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3519 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3520 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3521 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3522 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3523 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3524 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3525 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3526 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3527 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3528 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3529 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3530 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3531 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3532 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3533 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3534 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3535 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3536 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3537 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3538 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3539 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3540 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3541 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3542 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3543 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3544 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3545 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3546 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3547 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3548 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3549 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3550 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3551 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3552 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3553 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3554 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3555 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3556 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3557 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3558 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3559 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3560 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3561 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3562 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3563 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3564 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3565 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3566 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3567 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3568 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3569 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3570 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3571 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3572 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3573 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3574 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3575 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3576 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3577 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3578 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3579 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3580 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3581 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3582 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3583 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3584 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3585 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3586 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3587 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3588 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3589 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3590 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3591 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3592 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3593 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3594 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3595 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3596 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3597 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3598 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3599 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3600 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3601 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3602 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3603 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3604 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3605 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3606 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3607 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3608 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3609 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3610 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3611 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3612 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3613 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3614 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3615 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3616 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3617 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3618 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3619 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3620 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3621 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3622 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3623 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3624 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3625 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3626 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3627 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3628 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3629 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3630 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3631 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3632 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3633 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3634 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3635 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3636 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3637 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3638 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3639 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3640 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3641 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3642 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3643 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3644 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3645 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3646 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3647 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3648 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3649 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3650 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3651 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3652 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3653 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3654 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3655 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3656 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3657 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3658 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3659 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3660 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3661 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3662 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3663 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3664 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3665 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3666 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3667 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3668 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3669 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3670 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3671 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3672 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3673 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3674 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3675 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3676 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3677 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3678 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3679 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3680 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3681 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3682 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3683 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3684 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3685 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3686 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3687 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3688 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3689 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3690 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3691 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3692 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3693 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3694 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3695 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3696 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3697 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3698 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3699 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3700 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3701 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3702 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3703 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3704 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3705 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3706 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3707 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3708 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3709 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3710 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3711 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3712 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3713 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3714 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3715 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3716 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3717 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3718 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3719 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3720 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3721 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3722 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3723 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3724 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3725 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3726 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3727 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3728 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3729 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3730 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3731 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3732 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3733 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3734 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3735 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3736 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3737 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3738 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3739 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3740 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3741 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3742 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3743 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3744 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3745 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3746 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3747 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3748 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3749 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3750 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3751 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3752 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3753 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3754 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3755 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3756 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3757 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3758 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3759 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3760 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3761 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3762 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3763 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3764 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3765 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3766 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3767 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3768 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3769 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3770 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3771 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3772 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3773 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3774 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3775 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3776 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3777 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3778 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3779 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3780 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3781 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3782 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3783 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3784 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3785 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3786 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3787 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3788 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3789 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3790 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3791 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3792 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3793 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3794 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3795 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3796 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3797 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3798 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3799 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3800 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3801 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3802 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3803 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3804 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3805 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3806 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3807 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3808 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3809 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3810 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3811 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3812 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3813 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3814 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3815 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3816 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3817 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3818 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3819 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3820 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3821 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3822 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3823 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3824 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3825 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3826 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3827 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3828 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3829 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3830 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3831 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3832 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3833 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3834 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3835 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3836 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3837 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3838 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3839 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3840 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3841 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3842 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3843 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3844 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3845 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3846 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3847 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3848 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3849 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3850 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3851 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3852 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3853 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3854 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3855 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3856 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3857 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3858 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3859 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3860 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3861 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3862 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3863 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3864 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3865 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3866 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3867 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3868 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3869 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3870 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3871 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3872 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3873 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3874 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3875 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3876 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3877 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3878 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3879 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3880 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3881 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3882 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3883 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3884 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3885 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3886 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3887 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3888 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3889 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3890 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3891 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3892 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3893 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3894 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3895 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3896 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3897 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3898 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3899 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3900 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3901 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3902 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3903 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3904 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3905 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3906 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3907 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3908 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3909 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3910 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3911 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3912 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3913 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3914 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3915 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3916 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3917 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3918 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3919 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3920 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3921 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3922 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3923 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3924 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3925 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3926 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3927 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3928 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3929 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3930 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3931 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3932 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3933 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3934 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3935 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3936 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3937 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3938 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3939 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3940 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3941 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3942 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3943 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3944 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3945 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3946 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3947 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3948 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3949 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3950 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3951 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3952 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3953 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3954 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3955 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3956 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3957 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3958 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3959 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3960 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3961 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3962 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3963 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3964 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3965 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3966 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3967 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3968 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3969 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3970 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3971 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3972 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3973 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3974 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3975 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3976 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3977 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3978 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3979 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3980 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3981 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3982 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3983 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3984 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3985 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3986 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3987 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3988 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3989 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3990 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3991 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3992 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3993 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3994 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3995 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3996 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3997 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3998 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t3999 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4000 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4001 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4002 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4003 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4004 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4005 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4006 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4007 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4008 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4009 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4010 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4011 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4012 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4013 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4014 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4015 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4016 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4017 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4018 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4019 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4020 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4021 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4022 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4023 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4024 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4025 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4026 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4027 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4028 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4029 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4030 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4031 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4032 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4033 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4034 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4035 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4036 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4037 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4038 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4039 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4040 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4041 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4042 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4043 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4044 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4045 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4046 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4047 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4048 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4049 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4050 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4051 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4052 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4053 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4054 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4055 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4056 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4057 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4058 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4059 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4060 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4061 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4062 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4063 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4064 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4065 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4066 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4067 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4068 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4069 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4070 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4071 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4072 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4073 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4074 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4075 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4076 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4077 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4078 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4079 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4080 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4081 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4082 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4083 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4084 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4085 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4086 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4087 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4088 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4089 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4090 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4091 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4092 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4093 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4094 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4095 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4096 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4097 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4098 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4099 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4100 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4101 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4102 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4103 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4104 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4105 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4106 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4107 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4108 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4109 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4110 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4111 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4112 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4113 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4114 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4115 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4116 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4117 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4118 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4119 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4120 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4121 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4122 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4123 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4124 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4125 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4126 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4127 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4128 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4129 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4130 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4131 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4132 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4133 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4134 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4135 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4136 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4137 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4138 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4139 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4140 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4141 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4142 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4143 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4144 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4145 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4146 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4147 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4148 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4149 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4150 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4151 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4152 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4153 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4154 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4155 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4156 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4157 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4158 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4159 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4160 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4161 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4162 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4163 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4164 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4165 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4166 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4167 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4168 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4169 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4170 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4171 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4172 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4173 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4174 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4175 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4176 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4177 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4178 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4179 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4180 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4181 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4182 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4183 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4184 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4185 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4186 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4187 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4188 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4189 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4190 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4191 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4192 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4193 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4194 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4195 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4196 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4197 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4198 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4199 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4200 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4201 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4202 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4203 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4204 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4205 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4206 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4207 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4208 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4209 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4210 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4211 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4212 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4213 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4214 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4215 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4216 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4217 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4218 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4219 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4220 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4221 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4222 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4223 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4224 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4225 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4226 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4227 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4228 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4229 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4230 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4231 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4232 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4233 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4234 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4235 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4236 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4237 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4238 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4239 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4240 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4241 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4242 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4243 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4244 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4245 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4246 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4247 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4248 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4249 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4250 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4251 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4252 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4253 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4254 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4255 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4256 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4257 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4258 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4259 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4260 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4261 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4262 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4263 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4264 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4265 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4266 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4267 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4268 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4269 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4270 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4271 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4272 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4273 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4274 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4275 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4276 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4277 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4278 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4279 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4280 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4281 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4282 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4283 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4284 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4285 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4286 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4287 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4288 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4289 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4290 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4291 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4292 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4293 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4294 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4295 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4296 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4297 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4298 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4299 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4300 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4301 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4302 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4303 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4304 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4305 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4306 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4307 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4308 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4309 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4310 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4311 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4312 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4313 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4314 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4315 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4316 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4317 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4318 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4319 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4320 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4321 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4322 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4323 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4324 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4325 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4326 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4327 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4328 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4329 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4330 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4331 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4332 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4333 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4334 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4335 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4336 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4337 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4338 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4339 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4340 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4341 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4342 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4343 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4344 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4345 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4346 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4347 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4348 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4349 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4350 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4351 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4352 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4353 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4354 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4355 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4356 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4357 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4358 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4359 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4360 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4361 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4362 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4363 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4364 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4365 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4366 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4367 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4368 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4369 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4370 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4371 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4372 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4373 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4374 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4375 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4376 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4377 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4378 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4379 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4380 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4381 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4382 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4383 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4384 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4385 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4386 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4387 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4388 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4389 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4390 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4391 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4392 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4393 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4394 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4395 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4396 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4397 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4398 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4399 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4400 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4401 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4402 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4403 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4404 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4405 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4406 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4407 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4408 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4409 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4410 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4411 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4412 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4413 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4414 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4415 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4416 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4417 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4418 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4419 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4420 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4421 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4422 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4423 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4424 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4425 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4426 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4427 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4428 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4429 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4430 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4431 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4432 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4433 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4434 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4435 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4436 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4437 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4438 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4439 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4440 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4441 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4442 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4443 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4444 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4445 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4446 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4447 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4448 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4449 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4450 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4451 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4452 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4453 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4454 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4455 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4456 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4457 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4458 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4459 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4460 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4461 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4462 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4463 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4464 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4465 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4466 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4467 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4468 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4469 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4470 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4471 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4472 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4473 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4474 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4475 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4476 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4477 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4478 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4479 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4480 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4481 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4482 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4483 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4484 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4485 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4486 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4487 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4488 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4489 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4490 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4491 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4492 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4493 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4494 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4495 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4496 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4497 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4498 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4499 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4500 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4501 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4502 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4503 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4504 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4505 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4506 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4507 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4508 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4509 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4510 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4511 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4512 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4513 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4514 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4515 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4516 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4517 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4518 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4519 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4520 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4521 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4522 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4523 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4524 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4525 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4526 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4527 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4528 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4529 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4530 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4531 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4532 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4533 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4534 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4535 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4536 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4537 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4538 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4539 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4540 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4541 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4542 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4543 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4544 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4545 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4546 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4547 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4548 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4549 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4550 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4551 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4552 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4553 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4554 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4555 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4556 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4557 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4558 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4559 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4560 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4561 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4562 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4563 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4564 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4565 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4566 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4567 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4568 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4569 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4570 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4571 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4572 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4573 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4574 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4575 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4576 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4577 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4578 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4579 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4580 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4581 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4582 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4583 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4584 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4585 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4586 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4587 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4588 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4589 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4590 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4591 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4592 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4593 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4594 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4595 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4596 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4597 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4598 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4599 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4600 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4601 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4602 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4603 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4604 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4605 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4606 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4607 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4608 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4609 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4610 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4611 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4612 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4613 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4614 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4615 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4616 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4617 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4618 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4619 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4620 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4621 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4622 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4623 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4624 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4625 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4626 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4627 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4628 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4629 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4630 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4631 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4632 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4633 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4634 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4635 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4636 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4637 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4638 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4639 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4640 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4641 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4642 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4643 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4644 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4645 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4646 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4647 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4648 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4649 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4650 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4651 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4652 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4653 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4654 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4655 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4656 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4657 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4658 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4659 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4660 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4661 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4662 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4663 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4664 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4665 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4666 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4667 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4668 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4669 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4670 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4671 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4672 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4673 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4674 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4675 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4676 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4677 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4678 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4679 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4680 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4681 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4682 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4683 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4684 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4685 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4686 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4687 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4688 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4689 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4690 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4691 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4692 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4693 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4694 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4695 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4696 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4697 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4698 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4699 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4700 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4701 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4702 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4703 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4704 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4705 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4706 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4707 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4708 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4709 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4710 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4711 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4712 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4713 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4714 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4715 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4716 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4717 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4718 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4719 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4720 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4721 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4722 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4723 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4724 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4725 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4726 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4727 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4728 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4729 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4730 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4731 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4732 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4733 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4734 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4735 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4736 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4737 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4738 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4739 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4740 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4741 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4742 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4743 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4744 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4745 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4746 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4747 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4748 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4749 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4750 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4751 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4752 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4753 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4754 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4755 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4756 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4757 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4758 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4759 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4760 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4761 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4762 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4763 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4764 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4765 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4766 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4767 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4768 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4769 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4770 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4771 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4772 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4773 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4774 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4775 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4776 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4777 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4778 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4779 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4780 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4781 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4782 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4783 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4784 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4785 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4786 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4787 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4788 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4789 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4790 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4791 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4792 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4793 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4794 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4795 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4796 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4797 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4798 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4799 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4800 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4801 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4802 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4803 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4804 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4805 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4806 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4807 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4808 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4809 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4810 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4811 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4812 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4813 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4814 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4815 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4816 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4817 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4818 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4819 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4820 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4821 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4822 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4823 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4824 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4825 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4826 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4827 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4828 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4829 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4830 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4831 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4832 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4833 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4834 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4835 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4836 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4837 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4838 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4839 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4840 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4841 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4842 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4843 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4844 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4845 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4846 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4847 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4848 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4849 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4850 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4851 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4852 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4853 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4854 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4855 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4856 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4857 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4858 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4859 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4860 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4861 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4862 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4863 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4864 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4865 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4866 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4867 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4868 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4869 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4870 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4871 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4872 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4873 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4874 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4875 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4876 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4877 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4878 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4879 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4880 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4881 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4882 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4883 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4884 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4885 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4886 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4887 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4888 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4889 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4890 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4891 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4892 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4893 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4894 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4895 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4896 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4897 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4898 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4899 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4900 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4901 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4902 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4903 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4904 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4905 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4906 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4907 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4908 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4909 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4910 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4911 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4912 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4913 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4914 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4915 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4916 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4917 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4918 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4919 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4920 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4921 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4922 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4923 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4924 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4925 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4926 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4927 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4928 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4929 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4930 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4931 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4932 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4933 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4934 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4935 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4936 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4937 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4938 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4939 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4940 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4941 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4942 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4943 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4944 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4945 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4946 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4947 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4948 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4949 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4950 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4951 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4952 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4953 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4954 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4955 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4956 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4957 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4958 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4959 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4960 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4961 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4962 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4963 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4964 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4965 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4966 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4967 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4968 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4969 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4970 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4971 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4972 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4973 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4974 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4975 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4976 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4977 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4978 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4979 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4980 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4981 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4982 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4983 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4984 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4985 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4986 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4987 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4988 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4989 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4990 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4991 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4992 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4993 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4994 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4995 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4996 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4997 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4998 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t4999 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5000 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5001 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5002 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5003 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5004 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5005 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5006 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5007 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5008 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5009 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5010 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5011 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5012 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5013 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5014 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5015 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5016 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5017 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5018 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5019 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5020 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5021 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5022 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5023 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5024 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5025 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5026 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5027 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5028 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5029 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5030 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5031 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5032 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5033 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5034 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5035 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5036 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5037 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5038 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5039 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5040 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5041 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5042 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5043 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5044 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5045 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5046 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5047 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5048 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5049 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5050 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5051 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5052 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5053 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5054 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5055 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5056 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5057 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5058 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5059 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5060 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5061 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5062 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5063 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5064 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5065 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5066 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5067 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5068 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5069 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5070 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5071 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5072 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5073 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5074 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5075 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5076 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5077 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5078 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5079 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5080 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5081 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5082 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5083 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5084 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5085 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5086 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5087 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5088 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5089 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5090 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5091 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5092 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5093 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5094 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5095 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5096 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5097 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5098 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5099 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5100 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5101 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5102 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5103 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5104 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5105 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5106 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5107 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5108 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5109 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5110 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5111 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5112 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5113 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5114 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5115 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5116 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5117 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5118 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5119 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5120 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5121 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5122 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5123 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5124 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5125 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5126 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5127 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5128 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5129 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5130 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5131 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5132 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5133 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5134 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5135 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5136 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5137 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5138 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5139 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5140 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5141 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5142 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5143 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5144 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5145 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5146 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5147 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5148 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5149 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5150 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5151 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5152 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5153 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5154 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5155 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5156 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5157 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5158 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5159 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5160 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5161 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5162 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5163 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5164 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5165 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5166 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5167 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5168 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5169 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5170 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5171 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5172 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5173 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5174 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5175 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5176 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5177 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5178 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5179 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5180 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5181 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5182 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5183 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5184 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5185 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5186 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5187 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5188 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5189 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5190 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5191 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5192 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5193 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5194 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5195 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5196 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5197 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5198 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5199 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5200 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5201 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5202 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5203 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5204 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5205 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5206 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5207 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5208 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5209 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5210 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5211 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5212 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5213 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5214 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5215 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5216 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5217 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5218 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5219 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5220 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5221 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5222 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5223 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5224 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5225 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5226 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5227 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5228 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5229 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5230 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5231 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5232 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5233 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5234 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5235 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5236 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5237 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5238 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5239 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5240 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5241 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5242 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5243 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5244 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5245 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5246 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5247 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5248 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5249 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5250 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5251 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5252 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5253 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5254 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5255 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5256 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5257 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5258 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5259 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5260 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5261 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5262 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5263 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5264 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5265 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5266 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5267 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5268 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5269 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5270 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5271 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5272 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5273 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5274 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5275 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5276 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5277 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5278 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5279 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5280 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5281 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5282 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5283 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5284 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5285 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5286 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5287 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5288 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5289 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5290 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5291 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5292 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5293 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5294 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5295 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5296 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5297 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5298 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5299 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5300 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5301 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5302 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5303 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5304 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5305 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5306 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5307 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5308 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5309 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5310 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5311 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5312 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5313 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5314 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5315 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5316 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5317 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5318 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5319 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5320 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5321 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5322 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5323 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5324 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5325 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5326 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5327 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5328 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5329 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5330 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5331 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5332 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5333 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5334 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5335 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5336 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5337 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5338 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5339 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5340 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5341 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5342 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5343 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5344 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5345 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5346 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5347 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5348 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5349 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5350 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5351 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5352 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5353 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5354 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5355 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5356 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5357 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5358 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5359 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5360 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5361 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5362 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5363 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5364 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5365 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5366 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5367 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5368 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5369 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5370 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5371 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5372 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5373 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5374 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5375 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5376 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5377 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5378 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5379 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5380 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5381 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5382 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5383 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5384 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5385 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5386 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5387 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5388 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5389 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5390 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5391 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5392 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5393 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5394 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5395 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5396 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5397 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5398 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5399 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5400 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5401 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5402 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5403 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5404 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5405 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5406 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5407 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5408 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5409 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5410 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5411 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5412 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5413 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5414 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5415 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5416 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5417 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5418 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5419 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5420 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5421 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5422 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5423 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5424 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5425 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5426 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5427 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5428 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5429 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5430 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5431 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5432 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5433 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5434 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5435 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5436 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5437 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5438 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5439 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5440 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5441 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5442 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5443 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5444 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5445 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5446 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5447 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5448 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5449 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5450 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5451 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5452 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5453 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5454 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5455 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5456 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5457 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5458 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5459 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5460 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5461 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5462 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5463 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5464 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5465 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5466 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5467 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5468 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5469 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5470 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5471 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5472 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5473 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5474 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5475 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5476 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5477 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5478 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5479 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5480 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5481 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5482 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5483 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5484 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5485 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5486 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5487 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5488 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5489 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5490 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5491 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5492 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5493 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5494 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5495 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5496 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5497 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5498 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5499 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5500 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5501 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5502 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5503 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5504 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5505 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5506 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5507 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5508 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5509 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5510 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5511 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5512 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5513 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5514 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5515 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5516 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5517 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5518 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5519 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5520 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5521 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5522 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5523 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5524 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5525 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5526 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5527 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5528 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5529 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5530 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5531 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5532 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5533 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5534 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5535 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5536 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5537 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5538 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5539 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5540 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5541 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5542 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5543 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5544 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5545 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5546 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5547 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5548 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5549 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5550 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5551 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5552 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5553 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5554 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5555 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5556 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5557 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5558 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5559 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5560 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5561 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5562 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5563 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5564 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5565 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5566 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5567 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5568 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5569 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5570 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5571 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5572 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5573 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5574 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5575 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5576 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5577 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5578 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5579 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5580 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5581 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5582 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5583 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5584 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5585 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5586 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5587 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5588 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5589 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5590 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5591 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5592 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5593 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5594 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5595 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5596 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5597 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5598 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5599 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5600 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5601 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5602 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5603 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5604 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5605 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5606 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5607 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5608 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5609 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5610 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5611 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5612 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5613 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5614 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5615 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5616 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5617 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5618 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5619 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5620 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5621 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5622 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5623 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5624 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5625 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5626 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5627 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5628 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5629 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5630 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5631 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5632 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5633 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5634 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5635 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5636 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5637 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5638 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5639 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5640 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5641 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5642 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5643 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5644 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5645 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5646 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5647 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5648 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5649 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5650 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5651 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5652 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5653 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5654 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5655 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5656 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5657 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5658 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5659 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5660 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5661 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5662 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5663 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5664 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5665 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5666 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5667 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5668 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5669 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5670 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5671 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5672 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5673 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5674 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5675 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5676 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5677 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5678 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5679 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5680 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5681 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5682 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5683 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5684 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5685 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5686 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5687 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5688 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5689 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5690 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5691 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5692 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5693 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5694 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5695 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5696 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5697 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5698 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5699 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5700 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5701 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5702 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5703 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5704 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5705 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5706 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5707 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5708 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5709 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5710 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5711 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5712 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5713 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5714 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5715 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5716 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5717 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5718 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5719 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5720 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5721 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5722 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5723 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5724 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5725 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5726 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5727 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5728 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5729 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5730 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5731 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5732 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5733 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5734 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5735 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5736 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5737 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5738 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5739 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5740 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5741 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5742 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5743 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5744 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5745 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5746 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5747 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5748 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5749 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5750 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5751 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5752 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5753 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5754 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5755 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5756 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5757 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5758 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5759 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5760 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5761 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5762 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5763 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5764 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5765 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5766 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5767 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5768 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5769 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5770 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5771 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5772 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5773 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5774 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5775 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5776 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5777 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5778 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5779 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5780 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5781 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5782 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5783 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5784 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5785 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5786 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5787 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5788 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5789 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5790 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5791 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5792 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5793 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5794 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5795 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5796 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5797 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5798 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5799 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5800 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5801 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5802 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5803 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5804 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5805 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5806 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5807 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5808 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5809 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5810 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5811 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5812 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5813 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5814 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5815 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5816 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5817 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5818 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5819 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5820 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5821 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5822 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5823 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5824 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5825 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5826 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5827 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5828 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5829 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5830 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5831 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5832 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5833 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5834 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5835 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5836 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5837 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5838 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5839 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5840 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5841 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5842 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5843 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5844 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5845 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5846 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5847 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5848 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5849 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5850 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5851 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5852 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5853 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5854 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5855 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5856 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5857 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5858 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5859 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5860 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5861 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5862 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5863 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5864 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5865 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5866 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5867 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5868 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5869 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5870 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5871 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5872 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5873 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5874 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5875 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5876 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5877 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5878 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5879 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5880 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5881 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5882 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5883 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5884 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5885 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5886 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5887 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5888 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5889 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5890 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5891 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5892 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5893 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5894 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5895 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5896 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5897 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5898 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5899 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5900 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5901 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5902 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5903 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5904 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5905 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5906 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5907 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5908 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5909 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5910 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5911 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5912 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5913 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5914 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5915 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5916 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5917 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5918 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5919 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5920 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5921 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5922 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5923 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5924 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5925 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5926 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5927 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5928 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5929 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5930 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5931 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5932 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5933 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5934 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5935 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5936 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5937 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5938 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5939 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5940 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5941 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5942 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5943 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5944 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5945 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5946 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5947 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5948 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5949 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5950 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5951 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5952 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5953 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5954 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5955 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5956 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5957 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5958 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5959 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5960 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5961 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5962 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5963 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5964 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5965 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5966 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5967 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5968 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5969 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5970 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5971 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5972 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5973 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5974 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5975 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5976 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5977 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5978 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5979 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5980 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5981 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5982 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5983 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5984 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5985 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5986 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5987 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5988 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5989 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5990 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5991 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5992 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5993 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5994 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5995 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5996 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5997 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5998 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t5999 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6000 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6001 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6002 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6003 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6004 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6005 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6006 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6007 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6008 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6009 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6010 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6011 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6012 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6013 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6014 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6015 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6016 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6017 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6018 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6019 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6020 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6021 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6022 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6023 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6024 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6025 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6026 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6027 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6028 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6029 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6030 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6031 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6032 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6033 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6034 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6035 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6036 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6037 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6038 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6039 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6040 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6041 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6042 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6043 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6044 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6045 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6046 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6047 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6048 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6049 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6050 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6051 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6052 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6053 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6054 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6055 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6056 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6057 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6058 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6059 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6060 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6061 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6062 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6063 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6064 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6065 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6066 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6067 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6068 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6069 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6070 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6071 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6072 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6073 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6074 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6075 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6076 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6077 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6078 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6079 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6080 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6081 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6082 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6083 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6084 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6085 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6086 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6087 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6088 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6089 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6090 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6091 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6092 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6093 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6094 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6095 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6096 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6097 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6098 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6099 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6100 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6101 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6102 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6103 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6104 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6105 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6106 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6107 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6108 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6109 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6110 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6111 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6112 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6113 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6114 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6115 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6116 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6117 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6118 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6119 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6120 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6121 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6122 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6123 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6124 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6125 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6126 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6127 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6128 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6129 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6130 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6131 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6132 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6133 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6134 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6135 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6136 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6137 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6138 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6139 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6140 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6141 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6142 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6143 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6144 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6145 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6146 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6147 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6148 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6149 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6150 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6151 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6152 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6153 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6154 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6155 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6156 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6157 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6158 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6159 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6160 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6161 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6162 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6163 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6164 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6165 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6166 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6167 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6168 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6169 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6170 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6171 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6172 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6173 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6174 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6175 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6176 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6177 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6178 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6179 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6180 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6181 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6182 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6183 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6184 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6185 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6186 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6187 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6188 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6189 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6190 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6191 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6192 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6193 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6194 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6195 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6196 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6197 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6198 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6199 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6200 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6201 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6202 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6203 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6204 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6205 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6206 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6207 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6208 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6209 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6210 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6211 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6212 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6213 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6214 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6215 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6216 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6217 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6218 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6219 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6220 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6221 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6222 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6223 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6224 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6225 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6226 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6227 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6228 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6229 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6230 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6231 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6232 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6233 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6234 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6235 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6236 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6237 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6238 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6239 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6240 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6241 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6242 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6243 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6244 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6245 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6246 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6247 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6248 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6249 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6250 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6251 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6252 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6253 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6254 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6255 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6256 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6257 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6258 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6259 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6260 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6261 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6262 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6263 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6264 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6265 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6266 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6267 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6268 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6269 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6270 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6271 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6272 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6273 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6274 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6275 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6276 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6277 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6278 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6279 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6280 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6281 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6282 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6283 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6284 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6285 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6286 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6287 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6288 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6289 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6290 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6291 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6292 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6293 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6294 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6295 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6296 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6297 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6298 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6299 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6300 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6301 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6302 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6303 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6304 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6305 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6306 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6307 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6308 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6309 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6310 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6311 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6312 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6313 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6314 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6315 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6316 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6317 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6318 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6319 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6320 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6321 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6322 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6323 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6324 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6325 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6326 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6327 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6328 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6329 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6330 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6331 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6332 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6333 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6334 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6335 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6336 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6337 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6338 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6339 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6340 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6341 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6342 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6343 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6344 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6345 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6346 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6347 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6348 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6349 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6350 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6351 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6352 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6353 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6354 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6355 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6356 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6357 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6358 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6359 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6360 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6361 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6362 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6363 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6364 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6365 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6366 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6367 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6368 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6369 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6370 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6371 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6372 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6373 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6374 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6375 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6376 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6377 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6378 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6379 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6380 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6381 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6382 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6383 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6384 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6385 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6386 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6387 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6388 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6389 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6390 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6391 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6392 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6393 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6394 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6395 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6396 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6397 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6398 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6399 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6400 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6401 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6402 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6403 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6404 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6405 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6406 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6407 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6408 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6409 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6410 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6411 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6412 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6413 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6414 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6415 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6416 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6417 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6418 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6419 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6420 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6421 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6422 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6423 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6424 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6425 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6426 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6427 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6428 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6429 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6430 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6431 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6432 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6433 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6434 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6435 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6436 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6437 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6438 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6439 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6440 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6441 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6442 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6443 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6444 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6445 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6446 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6447 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6448 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6449 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6450 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6451 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6452 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6453 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6454 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6455 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6456 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6457 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6458 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6459 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6460 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6461 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6462 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6463 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6464 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6465 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6466 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6467 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6468 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6469 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6470 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6471 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6472 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6473 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6474 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6475 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6476 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6477 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6478 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6479 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6480 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6481 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6482 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6483 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6484 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6485 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6486 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6487 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6488 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6489 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6490 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6491 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6492 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6493 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6494 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6495 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6496 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6497 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6498 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6499 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6500 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6501 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6502 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6503 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6504 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6505 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6506 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6507 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6508 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6509 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6510 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6511 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6512 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6513 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6514 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6515 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6516 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6517 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6518 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6519 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6520 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6521 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6522 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6523 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6524 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6525 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6526 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6527 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6528 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6529 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6530 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6531 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6532 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6533 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6534 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6535 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6536 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6537 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6538 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6539 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6540 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6541 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6542 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6543 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6544 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6545 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6546 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6547 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6548 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6549 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6550 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6551 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6552 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6553 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6554 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6555 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6556 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6557 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6558 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6559 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6560 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6561 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6562 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6563 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6564 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6565 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6566 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6567 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6568 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6569 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6570 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6571 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6572 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6573 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6574 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6575 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6576 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6577 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6578 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6579 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6580 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6581 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6582 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6583 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6584 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6585 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6586 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6587 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6588 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6589 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6590 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6591 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6592 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6593 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6594 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6595 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6596 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6597 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6598 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6599 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6600 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6601 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6602 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6603 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6604 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6605 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6606 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6607 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6608 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6609 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6610 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6611 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6612 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6613 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6614 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6615 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6616 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6617 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6618 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6619 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6620 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6621 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6622 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6623 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6624 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6625 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6626 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6627 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6628 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6629 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6630 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6631 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6632 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6633 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6634 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6635 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6636 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6637 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6638 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6639 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6640 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6641 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6642 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6643 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6644 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6645 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6646 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6647 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6648 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6649 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6650 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6651 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6652 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6653 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6654 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6655 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6656 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6657 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6658 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6659 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6660 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6661 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6662 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6663 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6664 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6665 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6666 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6667 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6668 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6669 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6670 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6671 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6672 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6673 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6674 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6675 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6676 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6677 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6678 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6679 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6680 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6681 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6682 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6683 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6684 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6685 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6686 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6687 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6688 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6689 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6690 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6691 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6692 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6693 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6694 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6695 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6696 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6697 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6698 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6699 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6700 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6701 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6702 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6703 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6704 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6705 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6706 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6707 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6708 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6709 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6710 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6711 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6712 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6713 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6714 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6715 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6716 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6717 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6718 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6719 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6720 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6721 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6722 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6723 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6724 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6725 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6726 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6727 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6728 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6729 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6730 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6731 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6732 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6733 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6734 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6735 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6736 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6737 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6738 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6739 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6740 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6741 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6742 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6743 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6744 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6745 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6746 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6747 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6748 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6749 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6750 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6751 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6752 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6753 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6754 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6755 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6756 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6757 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6758 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6759 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6760 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6761 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6762 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6763 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6764 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6765 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6766 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6767 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6768 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6769 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6770 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6771 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6772 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6773 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6774 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6775 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6776 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6777 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6778 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6779 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6780 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6781 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6782 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6783 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6784 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6785 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6786 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6787 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6788 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6789 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6790 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6791 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6792 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6793 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6794 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6795 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6796 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6797 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6798 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6799 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6800 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6801 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6802 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6803 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6804 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6805 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6806 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6807 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6808 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6809 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6810 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6811 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6812 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6813 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6814 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6815 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6816 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6817 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6818 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6819 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6820 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6821 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6822 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6823 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6824 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6825 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6826 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6827 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6828 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6829 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6830 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6831 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6832 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6833 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6834 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6835 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6836 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6837 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6838 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6839 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6840 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6841 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6842 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6843 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6844 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6845 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6846 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6847 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6848 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6849 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6850 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6851 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6852 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6853 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6854 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6855 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6856 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6857 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6858 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6859 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6860 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6861 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6862 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6863 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6864 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6865 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6866 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6867 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6868 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6869 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6870 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6871 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6872 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6873 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6874 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6875 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6876 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6877 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6878 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6879 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6880 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6881 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6882 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6883 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6884 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6885 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6886 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6887 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6888 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6889 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6890 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6891 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6892 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6893 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6894 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6895 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6896 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6897 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6898 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6899 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6900 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6901 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6902 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6903 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6904 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6905 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6906 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6907 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6908 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6909 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6910 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6911 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6912 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6913 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6914 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6915 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6916 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6917 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6918 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6919 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6920 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6921 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6922 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6923 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6924 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6925 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6926 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6927 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6928 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6929 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6930 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6931 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6932 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6933 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6934 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6935 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6936 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6937 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6938 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6939 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6940 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6941 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6942 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6943 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6944 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6945 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6946 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6947 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6948 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6949 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6950 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6951 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6952 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6953 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6954 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6955 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6956 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6957 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6958 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6959 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6960 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6961 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6962 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6963 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6964 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6965 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6966 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6967 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6968 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6969 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6970 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6971 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6972 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6973 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6974 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6975 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6976 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6977 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6978 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6979 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6980 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6981 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6982 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6983 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6984 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6985 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6986 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6987 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6988 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6989 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6990 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6991 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6992 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6993 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6994 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6995 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6996 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6997 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6998 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t6999 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7000 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7001 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7002 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7003 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7004 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7005 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7006 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7007 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7008 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7009 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7010 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7011 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7012 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7013 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7014 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7015 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7016 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7017 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7018 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7019 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7020 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7021 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7022 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7023 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7024 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7025 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7026 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7027 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7028 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7029 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7030 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7031 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7032 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7033 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7034 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7035 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7036 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7037 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7038 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7039 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7040 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7041 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7042 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7043 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7044 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7045 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7046 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7047 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7048 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7049 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7050 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7051 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7052 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7053 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7054 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7055 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7056 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7057 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7058 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7059 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7060 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7061 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7062 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7063 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7064 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7065 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7066 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7067 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7068 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7069 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7070 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7071 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7072 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7073 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7074 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7075 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7076 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7077 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7078 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7079 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7080 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7081 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7082 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7083 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7084 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7085 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7086 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7087 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7088 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7089 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7090 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7091 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7092 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7093 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7094 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7095 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7096 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7097 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7098 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7099 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7100 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7101 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7102 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7103 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7104 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7105 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7106 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7107 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7108 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7109 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7110 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7111 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7112 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7113 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7114 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7115 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7116 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7117 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7118 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7119 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7120 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7121 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7122 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7123 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7124 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7125 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7126 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7127 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7128 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7129 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7130 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7131 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7132 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7133 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7134 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7135 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7136 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7137 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7138 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7139 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7140 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7141 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7142 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7143 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7144 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7145 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7146 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7147 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7148 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7149 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7150 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7151 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7152 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7153 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7154 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7155 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7156 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7157 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7158 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7159 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7160 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7161 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7162 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7163 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7164 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7165 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7166 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7167 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7168 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7169 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7170 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7171 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7172 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7173 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7174 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7175 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7176 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7177 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7178 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7179 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7180 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7181 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7182 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7183 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7184 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7185 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7186 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7187 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7188 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7189 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7190 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7191 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7192 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7193 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7194 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7195 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7196 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7197 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7198 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7199 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7200 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7201 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7202 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7203 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7204 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7205 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7206 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7207 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7208 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7209 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7210 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7211 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7212 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7213 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7214 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7215 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7216 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7217 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7218 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7219 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7220 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7221 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7222 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7223 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7224 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7225 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7226 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7227 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7228 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7229 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7230 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7231 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7232 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7233 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7234 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7235 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7236 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7237 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7238 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7239 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7240 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7241 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7242 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7243 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7244 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7245 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7246 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7247 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7248 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7249 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7250 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7251 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7252 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7253 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7254 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7255 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7256 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7257 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7258 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7259 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7260 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7261 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7262 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7263 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7264 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7265 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7266 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7267 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7268 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7269 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7270 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7271 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7272 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7273 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7274 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7275 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7276 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7277 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7278 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7279 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7280 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7281 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7282 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7283 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7284 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7285 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7286 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7287 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7288 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7289 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7290 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7291 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7292 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7293 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7294 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7295 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7296 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7297 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7298 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7299 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7300 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7301 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7302 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7303 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7304 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7305 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7306 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7307 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7308 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7309 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7310 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7311 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7312 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7313 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7314 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7315 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7316 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7317 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7318 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7319 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7320 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7321 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7322 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7323 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7324 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7325 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7326 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7327 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7328 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7329 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7330 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7331 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7332 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7333 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7334 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7335 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7336 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7337 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7338 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7339 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7340 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7341 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7342 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7343 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7344 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7345 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7346 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7347 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7348 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7349 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7350 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7351 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7352 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7353 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7354 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7355 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7356 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7357 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7358 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7359 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7360 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7361 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7362 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7363 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7364 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7365 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7366 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7367 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7368 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7369 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7370 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7371 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7372 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7373 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7374 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7375 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7376 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7377 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7378 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7379 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7380 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7381 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7382 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7383 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7384 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7385 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7386 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7387 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7388 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7389 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7390 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7391 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7392 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7393 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7394 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7395 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7396 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7397 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7398 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7399 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7400 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7401 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7402 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7403 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7404 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7405 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7406 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7407 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7408 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7409 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7410 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7411 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7412 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7413 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7414 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7415 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7416 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7417 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7418 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7419 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7420 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7421 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7422 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7423 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7424 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7425 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7426 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7427 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7428 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7429 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7430 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7431 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7432 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7433 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7434 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7435 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7436 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7437 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7438 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7439 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7440 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7441 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7442 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7443 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7444 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7445 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7446 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7447 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7448 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7449 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7450 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7451 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7452 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7453 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7454 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7455 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7456 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7457 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7458 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7459 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7460 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7461 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7462 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7463 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7464 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7465 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7466 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7467 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7468 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7469 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7470 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7471 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7472 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7473 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7474 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7475 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7476 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7477 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7478 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7479 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7480 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7481 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7482 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7483 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7484 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7485 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7486 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7487 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7488 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7489 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7490 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7491 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7492 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7493 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7494 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7495 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7496 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7497 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7498 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7499 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7500 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7501 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7502 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7503 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7504 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7505 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7506 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7507 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7508 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7509 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7510 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7511 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7512 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7513 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7514 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7515 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7516 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7517 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7518 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7519 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7520 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7521 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7522 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7523 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7524 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7525 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7526 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7527 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7528 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7529 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7530 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7531 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7532 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7533 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7534 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7535 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7536 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7537 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7538 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7539 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7540 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7541 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7542 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7543 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7544 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7545 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7546 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7547 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7548 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7549 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7550 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7551 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7552 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7553 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7554 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7555 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7556 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7557 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7558 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7559 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7560 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7561 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7562 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7563 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7564 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7565 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7566 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7567 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7568 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7569 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7570 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7571 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7572 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7573 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7574 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7575 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7576 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7577 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7578 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7579 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7580 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7581 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7582 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7583 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7584 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7585 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7586 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7587 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7588 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7589 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7590 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7591 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7592 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7593 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7594 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7595 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7596 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7597 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7598 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7599 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7600 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7601 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7602 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7603 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7604 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7605 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7606 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7607 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7608 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7609 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7610 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7611 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7612 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7613 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7614 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7615 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7616 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7617 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7618 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7619 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7620 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7621 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7622 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7623 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7624 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7625 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7626 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7627 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7628 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7629 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7630 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7631 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7632 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7633 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7634 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7635 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7636 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7637 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7638 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7639 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7640 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7641 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7642 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7643 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7644 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7645 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7646 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7647 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7648 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7649 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7650 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7651 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7652 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7653 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7654 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7655 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7656 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7657 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7658 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7659 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7660 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7661 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7662 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7663 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7664 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7665 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7666 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7667 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7668 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7669 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7670 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7671 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7672 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7673 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7674 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7675 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7676 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7677 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7678 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7679 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7680 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7681 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7682 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7683 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7684 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7685 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7686 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7687 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7688 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7689 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7690 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7691 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7692 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7693 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7694 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7695 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7696 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7697 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7698 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7699 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7700 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7701 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7702 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7703 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7704 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7705 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7706 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7707 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7708 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7709 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7710 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7711 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7712 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7713 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7714 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7715 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7716 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7717 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7718 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7719 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7720 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7721 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7722 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7723 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7724 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7725 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7726 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7727 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7728 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7729 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7730 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7731 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7732 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7733 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7734 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7735 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7736 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7737 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7738 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7739 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7740 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7741 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7742 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7743 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7744 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7745 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7746 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7747 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7748 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7749 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7750 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7751 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7752 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7753 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7754 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7755 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7756 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7757 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7758 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7759 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7760 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7761 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7762 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7763 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7764 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7765 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7766 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7767 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7768 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7769 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7770 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7771 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7772 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7773 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7774 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7775 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7776 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7777 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7778 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7779 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7780 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7781 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7782 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7783 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7784 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7785 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7786 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7787 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7788 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7789 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7790 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7791 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7792 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7793 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7794 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7795 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7796 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7797 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7798 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7799 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7800 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7801 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7802 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7803 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7804 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7805 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7806 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7807 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7808 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7809 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7810 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7811 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7812 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7813 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7814 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7815 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7816 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7817 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7818 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7819 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7820 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7821 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7822 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7823 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7824 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7825 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7826 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7827 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7828 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7829 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7830 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7831 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7832 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7833 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7834 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7835 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7836 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7837 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7838 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7839 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7840 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7841 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7842 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7843 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7844 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7845 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7846 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7847 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7848 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7849 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7850 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7851 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7852 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7853 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7854 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7855 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7856 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7857 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7858 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7859 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7860 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7861 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7862 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7863 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7864 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7865 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7866 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7867 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7868 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7869 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7870 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7871 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7872 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7873 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7874 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7875 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7876 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7877 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7878 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7879 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7880 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7881 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7882 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7883 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7884 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7885 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7886 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7887 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7888 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7889 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7890 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7891 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7892 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7893 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7894 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7895 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7896 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7897 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7898 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7899 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7900 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7901 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7902 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7903 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7904 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7905 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7906 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7907 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7908 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7909 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7910 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7911 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7912 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7913 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7914 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7915 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7916 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7917 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7918 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7919 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7920 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7921 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7922 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7923 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7924 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7925 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7926 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7927 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7928 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7929 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7930 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7931 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7932 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7933 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7934 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7935 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7936 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7937 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7938 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7939 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7940 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7941 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7942 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7943 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7944 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7945 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7946 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7947 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7948 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7949 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7950 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7951 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7952 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7953 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7954 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7955 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7956 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7957 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7958 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7959 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7960 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7961 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7962 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7963 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7964 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7965 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7966 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7967 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7968 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7969 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7970 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7971 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7972 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7973 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7974 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7975 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7976 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7977 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7978 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7979 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7980 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7981 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7982 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7983 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7984 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7985 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7986 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7987 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7988 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7989 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7990 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7991 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7992 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7993 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7994 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7995 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7996 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7997 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7998 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t7999 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8000 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8001 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8002 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8003 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8004 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8005 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8006 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8007 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8008 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8009 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8010 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8011 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8012 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8013 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8014 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8015 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8016 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8017 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8018 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8019 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8020 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8021 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8022 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8023 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8024 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8025 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8026 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8027 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8028 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8029 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8030 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8031 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8032 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8033 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8034 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8035 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8036 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8037 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8038 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8039 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8040 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8041 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8042 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8043 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8044 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8045 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8046 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8047 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8048 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8049 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8050 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8051 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8052 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8053 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8054 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8055 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8056 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8057 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8058 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8059 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8060 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8061 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8062 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8063 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8064 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8065 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8066 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8067 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8068 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8069 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8070 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8071 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8072 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8073 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8074 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8075 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8076 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8077 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8078 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8079 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8080 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8081 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8082 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8083 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8084 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8085 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8086 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8087 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8088 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8089 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8090 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8091 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8092 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8093 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8094 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8095 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8096 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8097 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8098 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8099 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8100 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8101 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8102 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8103 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8104 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8105 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8106 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8107 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8108 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8109 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8110 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8111 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8112 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8113 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8114 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8115 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8116 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8117 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8118 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8119 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8120 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8121 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8122 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8123 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8124 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8125 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8126 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8127 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8128 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8129 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8130 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8131 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8132 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8133 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8134 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8135 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8136 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8137 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8138 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8139 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8140 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8141 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8142 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8143 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8144 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8145 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8146 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8147 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8148 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8149 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8150 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8151 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8152 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8153 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8154 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8155 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8156 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8157 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8158 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8159 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8160 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8161 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8162 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8163 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8164 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8165 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8166 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8167 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8168 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8169 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8170 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8171 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8172 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8173 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8174 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8175 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8176 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8177 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8178 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8179 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8180 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8181 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8182 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8183 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8184 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8185 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8186 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8187 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8188 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8189 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8190 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8191 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8192 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8193 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8194 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8195 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8196 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8197 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8198 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8199 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8200 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8201 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8202 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8203 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8204 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8205 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8206 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8207 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8208 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8209 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8210 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8211 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8212 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8213 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8214 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8215 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8216 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8217 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8218 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8219 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8220 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8221 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8222 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8223 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8224 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8225 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8226 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8227 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8228 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8229 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8230 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8231 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8232 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8233 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8234 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8235 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8236 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8237 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8238 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8239 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8240 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8241 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8242 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8243 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8244 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8245 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8246 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8247 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8248 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8249 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8250 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8251 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8252 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8253 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8254 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8255 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8256 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8257 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8258 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8259 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8260 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8261 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8262 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8263 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8264 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8265 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8266 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8267 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8268 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8269 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8270 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8271 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8272 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8273 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8274 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8275 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8276 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8277 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8278 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8279 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8280 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8281 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8282 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8283 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8284 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8285 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8286 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8287 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8288 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8289 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8290 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8291 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8292 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8293 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8294 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8295 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8296 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8297 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8298 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8299 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8300 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8301 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8302 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8303 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8304 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8305 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8306 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8307 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8308 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8309 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8310 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8311 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8312 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8313 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8314 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8315 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8316 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8317 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8318 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8319 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8320 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8321 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8322 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8323 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8324 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8325 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8326 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8327 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8328 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8329 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8330 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8331 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8332 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8333 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8334 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8335 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8336 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8337 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8338 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8339 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8340 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8341 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8342 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8343 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8344 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8345 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8346 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8347 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8348 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8349 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8350 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8351 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8352 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8353 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8354 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8355 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8356 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8357 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8358 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8359 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8360 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8361 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8362 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8363 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8364 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8365 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8366 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8367 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8368 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8369 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8370 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8371 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8372 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8373 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8374 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8375 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8376 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8377 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8378 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8379 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8380 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8381 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8382 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8383 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8384 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8385 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8386 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8387 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8388 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8389 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8390 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8391 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8392 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8393 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8394 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8395 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8396 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8397 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8398 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8399 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8400 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8401 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8402 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8403 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8404 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8405 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8406 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8407 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8408 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8409 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8410 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8411 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8412 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8413 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8414 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8415 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8416 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8417 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8418 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8419 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8420 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8421 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8422 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8423 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8424 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8425 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8426 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8427 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8428 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8429 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8430 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8431 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8432 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8433 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8434 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8435 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8436 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8437 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8438 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8439 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8440 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8441 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8442 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8443 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8444 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8445 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8446 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8447 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8448 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8449 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8450 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8451 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8452 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8453 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8454 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8455 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8456 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8457 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8458 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8459 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8460 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8461 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8462 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8463 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8464 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8465 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8466 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8467 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8468 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8469 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8470 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8471 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8472 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8473 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8474 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8475 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8476 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8477 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8478 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8479 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8480 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8481 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8482 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8483 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8484 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8485 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8486 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8487 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8488 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8489 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8490 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8491 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8492 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8493 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8494 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8495 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8496 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8497 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8498 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8499 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8500 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8501 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8502 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8503 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8504 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8505 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8506 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8507 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8508 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8509 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8510 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8511 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8512 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8513 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8514 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8515 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8516 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8517 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8518 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8519 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8520 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8521 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8522 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8523 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8524 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8525 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8526 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8527 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8528 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8529 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8530 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8531 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8532 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8533 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8534 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8535 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8536 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8537 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8538 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8539 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8540 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8541 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8542 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8543 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8544 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8545 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8546 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8547 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8548 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8549 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8550 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8551 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8552 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8553 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8554 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8555 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8556 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8557 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8558 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8559 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8560 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8561 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8562 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8563 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8564 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8565 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8566 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8567 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8568 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8569 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8570 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8571 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8572 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8573 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8574 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8575 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8576 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8577 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8578 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8579 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8580 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8581 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8582 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8583 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8584 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8585 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8586 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8587 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8588 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8589 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8590 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8591 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8592 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8593 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8594 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8595 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8596 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8597 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8598 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8599 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8600 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8601 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8602 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8603 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8604 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8605 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8606 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8607 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8608 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8609 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8610 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8611 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8612 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8613 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8614 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8615 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8616 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8617 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8618 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8619 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8620 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8621 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8622 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8623 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8624 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8625 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8626 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8627 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8628 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8629 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8630 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8631 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8632 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8633 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8634 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8635 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8636 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8637 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8638 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8639 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8640 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8641 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8642 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8643 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8644 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8645 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8646 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8647 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8648 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8649 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8650 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8651 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8652 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8653 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8654 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8655 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8656 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8657 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8658 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8659 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8660 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8661 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8662 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8663 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8664 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8665 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8666 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8667 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8668 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8669 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8670 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8671 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8672 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8673 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8674 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8675 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8676 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8677 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8678 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8679 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8680 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8681 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8682 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8683 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8684 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8685 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8686 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8687 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8688 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8689 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8690 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8691 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8692 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8693 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8694 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8695 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8696 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8697 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8698 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8699 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8700 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8701 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8702 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8703 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8704 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8705 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8706 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8707 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8708 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8709 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8710 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8711 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8712 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8713 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8714 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8715 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8716 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8717 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8718 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8719 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8720 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8721 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8722 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8723 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8724 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8725 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8726 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8727 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8728 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8729 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8730 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8731 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8732 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8733 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8734 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8735 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8736 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8737 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8738 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8739 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8740 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8741 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8742 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8743 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8744 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8745 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8746 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8747 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8748 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8749 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8750 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8751 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8752 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8753 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8754 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8755 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8756 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8757 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8758 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8759 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8760 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8761 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8762 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8763 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8764 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8765 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8766 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8767 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8768 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8769 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8770 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8771 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8772 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8773 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8774 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8775 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8776 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8777 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8778 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8779 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8780 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8781 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8782 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8783 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8784 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8785 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8786 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8787 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8788 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8789 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8790 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8791 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8792 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8793 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8794 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8795 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8796 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8797 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8798 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8799 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8800 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8801 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8802 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8803 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8804 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8805 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8806 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8807 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8808 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8809 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8810 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8811 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8812 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8813 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8814 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8815 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8816 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8817 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8818 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8819 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8820 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8821 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8822 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8823 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8824 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8825 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8826 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8827 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8828 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8829 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8830 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8831 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8832 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8833 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8834 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8835 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8836 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8837 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8838 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8839 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8840 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8841 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8842 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8843 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8844 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8845 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8846 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8847 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8848 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8849 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8850 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8851 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8852 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8853 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8854 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8855 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8856 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8857 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8858 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8859 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8860 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8861 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8862 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8863 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8864 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8865 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8866 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8867 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8868 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8869 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8870 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8871 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8872 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8873 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8874 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8875 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8876 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8877 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8878 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8879 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8880 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8881 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8882 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8883 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8884 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8885 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8886 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8887 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8888 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8889 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8890 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8891 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8892 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8893 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8894 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8895 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8896 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8897 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8898 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8899 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8900 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8901 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8902 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8903 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8904 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8905 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8906 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8907 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8908 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8909 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8910 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8911 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8912 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8913 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8914 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8915 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8916 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8917 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8918 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8919 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8920 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8921 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8922 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8923 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8924 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8925 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8926 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8927 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8928 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8929 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8930 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8931 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8932 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8933 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8934 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8935 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8936 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8937 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8938 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8939 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8940 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8941 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8942 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8943 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8944 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8945 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8946 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8947 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8948 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8949 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8950 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8951 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8952 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8953 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8954 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8955 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8956 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8957 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8958 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8959 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8960 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8961 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8962 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8963 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8964 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8965 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8966 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8967 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8968 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8969 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8970 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8971 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8972 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8973 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8974 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8975 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8976 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8977 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8978 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8979 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8980 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8981 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8982 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8983 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8984 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8985 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8986 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8987 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8988 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8989 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8990 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8991 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8992 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8993 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8994 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8995 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8996 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8997 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8998 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t8999 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9000 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9001 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9002 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9003 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9004 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9005 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9006 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9007 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9008 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9009 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9010 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9011 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9012 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9013 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9014 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9015 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9016 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9017 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9018 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9019 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9020 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9021 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9022 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9023 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9024 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9025 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9026 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9027 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9028 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9029 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9030 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9031 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9032 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9033 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9034 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9035 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9036 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9037 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9038 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9039 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9040 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9041 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9042 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9043 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9044 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9045 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9046 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9047 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9048 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9049 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9050 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9051 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9052 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9053 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9054 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9055 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9056 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9057 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9058 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9059 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9060 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9061 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9062 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9063 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9064 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9065 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9066 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9067 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9068 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9069 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9070 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9071 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9072 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9073 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9074 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9075 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9076 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9077 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9078 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9079 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9080 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9081 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9082 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9083 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9084 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9085 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9086 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9087 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9088 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9089 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9090 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9091 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9092 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9093 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9094 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9095 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9096 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9097 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9098 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9099 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9100 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9101 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9102 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9103 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9104 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9105 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9106 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9107 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9108 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9109 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9110 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9111 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9112 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9113 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9114 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9115 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9116 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9117 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9118 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9119 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9120 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9121 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9122 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9123 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9124 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9125 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9126 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9127 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9128 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9129 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9130 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9131 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9132 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9133 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9134 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9135 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9136 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9137 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9138 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9139 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9140 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9141 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9142 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9143 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9144 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9145 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9146 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9147 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9148 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9149 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9150 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9151 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9152 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9153 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9154 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9155 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9156 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9157 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9158 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9159 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9160 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9161 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9162 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9163 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9164 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9165 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9166 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9167 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9168 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9169 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9170 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9171 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9172 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9173 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9174 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9175 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9176 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9177 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9178 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9179 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9180 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9181 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9182 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9183 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9184 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9185 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9186 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9187 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9188 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9189 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9190 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9191 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9192 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9193 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9194 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9195 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9196 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9197 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9198 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9199 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9200 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9201 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9202 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9203 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9204 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9205 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9206 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9207 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9208 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9209 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9210 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9211 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9212 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9213 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9214 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9215 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9216 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9217 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9218 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9219 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9220 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9221 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9222 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9223 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9224 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9225 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9226 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9227 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9228 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9229 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9230 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9231 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9232 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9233 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9234 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9235 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9236 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9237 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9238 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9239 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9240 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9241 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9242 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9243 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9244 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9245 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9246 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9247 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9248 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9249 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9250 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9251 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9252 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9253 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9254 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9255 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9256 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9257 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9258 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9259 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9260 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9261 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9262 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9263 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9264 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9265 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9266 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9267 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9268 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9269 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9270 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9271 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9272 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9273 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9274 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9275 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9276 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9277 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9278 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9279 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9280 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9281 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9282 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9283 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9284 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9285 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9286 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9287 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9288 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9289 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9290 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9291 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9292 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9293 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9294 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9295 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9296 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9297 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9298 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9299 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9300 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9301 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9302 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9303 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9304 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9305 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9306 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9307 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9308 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9309 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9310 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9311 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9312 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9313 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9314 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9315 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9316 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9317 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9318 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9319 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9320 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9321 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9322 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9323 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9324 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9325 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9326 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9327 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9328 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9329 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9330 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9331 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9332 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9333 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9334 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9335 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9336 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9337 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9338 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9339 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9340 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9341 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9342 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9343 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9344 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9345 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9346 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9347 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9348 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9349 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9350 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9351 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9352 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9353 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9354 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9355 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9356 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9357 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9358 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9359 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9360 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9361 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9362 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9363 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9364 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9365 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9366 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9367 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9368 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9369 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9370 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9371 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9372 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9373 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9374 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9375 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9376 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9377 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9378 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9379 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9380 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9381 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9382 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9383 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9384 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9385 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9386 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9387 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9388 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9389 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9390 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9391 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9392 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9393 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9394 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9395 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9396 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9397 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9398 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9399 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9400 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9401 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9402 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9403 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9404 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9405 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9406 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9407 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9408 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9409 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9410 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9411 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9412 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9413 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9414 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9415 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9416 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9417 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9418 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9419 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9420 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9421 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9422 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9423 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9424 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9425 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9426 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9427 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9428 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9429 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9430 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9431 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9432 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9433 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9434 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9435 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9436 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9437 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9438 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9439 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9440 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9441 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9442 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9443 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9444 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9445 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9446 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9447 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9448 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9449 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9450 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9451 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9452 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9453 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9454 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9455 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9456 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9457 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9458 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9459 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9460 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9461 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9462 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9463 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9464 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9465 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9466 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9467 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9468 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9469 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9470 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9471 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9472 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9473 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9474 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9475 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9476 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9477 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9478 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9479 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9480 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9481 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9482 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9483 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9484 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9485 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9486 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9487 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9488 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9489 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9490 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9491 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9492 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9493 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9494 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9495 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9496 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9497 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9498 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9499 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9500 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9501 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9502 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9503 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9504 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9505 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9506 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9507 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9508 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9509 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9510 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9511 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9512 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9513 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9514 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9515 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9516 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9517 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9518 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9519 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9520 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9521 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9522 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9523 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9524 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9525 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9526 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9527 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9528 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9529 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9530 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9531 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9532 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9533 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9534 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9535 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9536 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9537 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9538 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9539 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9540 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9541 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9542 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9543 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9544 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9545 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9546 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9547 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9548 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9549 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9550 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9551 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9552 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9553 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9554 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9555 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9556 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9557 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9558 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9559 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9560 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9561 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9562 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9563 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9564 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9565 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9566 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9567 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9568 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9569 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9570 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9571 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9572 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9573 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9574 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9575 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9576 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9577 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9578 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9579 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9580 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9581 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9582 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9583 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9584 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9585 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9586 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9587 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9588 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9589 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9590 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9591 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9592 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9593 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9594 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9595 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9596 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9597 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9598 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9599 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9600 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9601 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9602 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9603 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9604 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9605 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9606 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9607 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9608 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9609 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9610 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9611 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9612 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9613 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9614 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9615 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9616 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9617 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9618 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9619 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9620 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9621 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9622 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9623 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9624 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9625 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9626 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9627 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9628 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9629 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9630 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9631 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9632 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9633 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9634 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9635 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9636 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9637 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9638 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9639 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9640 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9641 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9642 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9643 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9644 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9645 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9646 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9647 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9648 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9649 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9650 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9651 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9652 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9653 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9654 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9655 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9656 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9657 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9658 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9659 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9660 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9661 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9662 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9663 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9664 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9665 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9666 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9667 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9668 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9669 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9670 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9671 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9672 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9673 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9674 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9675 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9676 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9677 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9678 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9679 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9680 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9681 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9682 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9683 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9684 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9685 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9686 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9687 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9688 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9689 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9690 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9691 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9692 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9693 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9694 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9695 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9696 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9697 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9698 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9699 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9700 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9701 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9702 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9703 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9704 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9705 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9706 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9707 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9708 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9709 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9710 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9711 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9712 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9713 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9714 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9715 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9716 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9717 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9718 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9719 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9720 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9721 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9722 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9723 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9724 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9725 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9726 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9727 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9728 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9729 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9730 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9731 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9732 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9733 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9734 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9735 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9736 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9737 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9738 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9739 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9740 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9741 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9742 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9743 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9744 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9745 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9746 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9747 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9748 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9749 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9750 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9751 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9752 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9753 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9754 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9755 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9756 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9757 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9758 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9759 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9760 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9761 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9762 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9763 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9764 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9765 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9766 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9767 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9768 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9769 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9770 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9771 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9772 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9773 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9774 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9775 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9776 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9777 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9778 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9779 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9780 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9781 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9782 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9783 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9784 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9785 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9786 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9787 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9788 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9789 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9790 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9791 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9792 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9793 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9794 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9795 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9796 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9797 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9798 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9799 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9800 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9801 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9802 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9803 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9804 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9805 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9806 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9807 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9808 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9809 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9810 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9811 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9812 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9813 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9814 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9815 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9816 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9817 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9818 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9819 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9820 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9821 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9822 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9823 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9824 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9825 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9826 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9827 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9828 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9829 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9830 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9831 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9832 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9833 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9834 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9835 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9836 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9837 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9838 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9839 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9840 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9841 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9842 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9843 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9844 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9845 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9846 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9847 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9848 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9849 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9850 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9851 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9852 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9853 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9854 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9855 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9856 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9857 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9858 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9859 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9860 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9861 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9862 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9863 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9864 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9865 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9866 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9867 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9868 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9869 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9870 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9871 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9872 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9873 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9874 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9875 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9876 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9877 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9878 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9879 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9880 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9881 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9882 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9883 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9884 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9885 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9886 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9887 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9888 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9889 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9890 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9891 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9892 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9893 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9894 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9895 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9896 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9897 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9898 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9899 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9900 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9901 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9902 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9903 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9904 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9905 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9906 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9907 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9908 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9909 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9910 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9911 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9912 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9913 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9914 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9915 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9916 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9917 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9918 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9919 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9920 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9921 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9922 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9923 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9924 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9925 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9926 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9927 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9928 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9929 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9930 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9931 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9932 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9933 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9934 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9935 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9936 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9937 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9938 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9939 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9940 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9941 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9942 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9943 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9944 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9945 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9946 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9947 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9948 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9949 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9950 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9951 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9952 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9953 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9954 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9955 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9956 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9957 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9958 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9959 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9960 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9961 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9962 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9963 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9964 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9965 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9966 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9967 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9968 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9969 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9970 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9971 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9972 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9973 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9974 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9975 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9976 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9977 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9978 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9979 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9980 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9981 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9982 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9983 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9984 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9985 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9986 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9987 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9988 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9989 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9990 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9991 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9992 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9993 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9994 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9995 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9996 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9997 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9998 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t9999 (a int, b int, PRIMARY KEY(a));
create table if not exists t11.t10000 (a int, b int, PRIMARY KEY(a));
|
DELIMITER $$
CREATE PROCEDURE p_insert_user_info
(IN P_UINAME VARCHAR(100),P_UIAGE TINYINT,P_UIID VARCHAR(100),
P_UIPWD VARCHAR(100))
BEGIN
DECLARE EXIT HANDLER FOR SQLEXCEPTION
BEGIN
GET DIAGNOSTICS CONDITION 1
@ER_NO= RETURNED_SQLSTATE, @ER_MSG=MESSAGE_TEXT;
SELECT @ER_NO, @ER_MSG;
ROLLBACK;
END;
START TRANSACTION;
INSERT INTO USER_INFO(ID,PWD,NAME,AGE,CLASS_NUM)
VALUES(P_UIID,P_UIPWD,P_UINAME,P_UIAGE,3);
COMMIT;
SELECT * FROM USER_INFO;
END
$$
DELIMITER ;
DELIMITER $$
CREATE PROCEDURE p_test
(IN P_UINAME VARCHAR(100),P_UIAGE TINYINT,P_UIID VARCHAR(100),
P_UIPWD VARCHAR(100))
BEGIN
DECLARE EXIT HANDLER FOR SQLEXCEPTION
BEGIN
GET DIAGNOSTICS CONDITION 1
@ER_NO= RETURNED_SQLSTATE, @ER_MSG=MESSAGE_TEXT;
SELECT @ER_NO, @ER_MSG;
ROLLBACK;
END;
START TRANSACTION;
SET @T:=1;
WHILE @T<4 DO
INSERT INTO USER_INFO(ID,PWD,NAME,AGE,CLASS_NUM)
VALUES(P_UIID,P_UIPWD,P_UINAME,P_UIAGE,3);
SET @T:=@T+1;
END WHILE;
COMMIT;
SELECT * FROM USER_INFO;
END
$$ DELIMITER ;
drop PROCEDURE p_test;
CALL p_test("ㅎㅇ",33,"id","pwd");
DESC USER_INFO;
SELECT * FROM USER_INFO
WHERE UINO<10;
CREATE TABLE USER_INFO(
NO INT AUTO_INCREMENT PRIMARY KEY,
ID VARCHAR (100),
PWD VARCHAR (100),
NAME VARCHAR (100),
AGE INT,
CLASS_NUM INT);
INSERT INTO USER_INFO(ID,PWD,NAME,AGE,CLASS_NUM)
VALUES('RED','RED','홍길동',30,1),
('BLUE','BLUE','청길동',15,2),
('GREEN','GREEN','녹길동',20,2),
('BLACK','BLACK','흑길동',40,2);
SELECT * FROM USER_INFO
WHERE CLASS_NUM BETWEEN 1 AND 2;
SELECT * FROM USER_INFO
WHERE SUBSTR(ID,1,1) IN ('B','A');
SELECT * FROM USER_INFO
WHERE CLASS_NUM IN (1,2) AND AGE>=30;
|
-- insertion d'entités dans les tables
-- pour la table Client
INSERT INTO Client(nom, prenom, adresse) VALUES
('de Funès', 'Louis', '85 rue de la Barre'),
('de Funès', 'Olivier', '85 rue de la Barre'),
('Grosso', 'Guy', '1 boulevard Foch'),
('Modo', 'Michel', '3 boulevard Foch');
-- pour la table modele
INSERT INTO Modele VALUES
('Citroën 2CV', 'peinture bleue', 50, 'essence'),
('Citroën DS 21 Pallas', 'peinture noire avec un bateau sur le toit', 500, 'essence'),
('Cadillac DeVille 1964', 'convertible', 400, 'sans plomb'),
('Citroën Méhari', '4 x 4 vert', 250, 'diesel'),
('Soucoupe volante', 'trop top', 1500, 'hydrogène'),
('Citroën DS', 'voiture volante', 750, 'éléctricité'),
('Chenard et Walcker T4 Torpédo', 'peinture verte', 1500, 'essence'),
('Chevrolet Impala SS', 'décapotable', 600, 'essence');
-- pour la table Voiture
INSERT INTO Voiture(modele, reparation, disponible) VALUES
('Citroën 2CV', '', True),
('Citroën 2CV', '', True),
('Citroën 2CV', '', True),
('Cadillac DeVille 1964', 'moteur explosé', False),
('Cadillac DeVille 1964', '', True),
('Cadillac DeVille 1964', '', True),
('Citroën DS 21 Pallas', 'roue AD arrachée', False),
('Citroën DS 21 Pallas', 'siège griffé', False),
('Citroën DS 21 Pallas', '', True),
('Citroën DS', '', False),
('Citroën DS', '', True),
('Citroën DS', '', True),
('Citroën Méhari', 'siège griffé', False),
('Citroën Méhari', 'inondée', False),
('Citroën Méhari', '', True),
('Soucoupe volante', '', False),
('Chenard et Walcker T4 Torpédo', '', True),
('Chevrolet Impala SS', '', True),
('Chevrolet Impala SS', '', True);
-- pour la table Location
INSERT INTO Location(n_client, n_voiture, debut_loc, fin_loc, paye) VALUES
(1, 1, '2022-08-05', '2022-08-08', True),
(1, 7, '2022-08-10', '2022-08-12', True),
(2, 4, '2022-08-10', '2022-08-12', True),
(3, 13, '2022-08-13', '2022-08-22', False),
(1, 1, '2022-08-14', '2022-08-25', True),
(4, 16, '2022-08-20', '', False),
(2, 14, '2022-08-20', '2022-08-25', False),
(1, 8, '2022-08-30', '2022-09-01', True),
(2, 10, '2022-08-30', '', False);
|
drop table if exists employee;
create table employee (
employee_id int,
first_name varchar(32),
last_name varchar(32),
email varchar(32),
phone_number varchar(32),
hire_date date,
salary float
);
|
-- menu_panel
INSERT INTO sw_ui_panel_styles VALUES (6133006549113932327,-1472711898,-1476066045,0,0,0,0,0,0,0,0,0,0);
.quit
|
create table CONTENTREVIEW_ITEM (
id bigint generated by default as identity,
contentId varchar(255) not null,
userId varchar(255),
siteId varchar(255),
taskId varchar(255),
externalId varchar(255),
dateQueued timestamp,
dateSubmitted timestamp,
dateReportReceived timestamp,
status bigint,
reviewScore integer,
lastError clob(255),
retryCount bigint,
nextRetryTime timestamp,
primary key (id)
);
create table CONTENTREVIEW_LOCK (
ID bigint generated by default as identity,
LAST_MODIFIED timestamp not null,
NAME varchar(255) not null unique,
HOLDER varchar(255) not null,
primary key (ID)
);
create table CONTENTREVIEW_SYNC_ITEM (
id bigint generated by default as identity,
siteId varchar(255) not null,
dateQueued timestamp not null,
lastTried timestamp,
status integer not null,
messages clob(255),
primary key (id)
);
create index eval_lock_name on CONTENTREVIEW_LOCK (NAME);
create index contentreview_content_id on CONTENTREVIEW_ITEM (contentId);
|
-- Write queries to return the following:
-- The following changes are applied to the "dvdstore" database.**
-- 1. Add actors, Hampton Avenue, and Lisa Byway to the actor table.
insert into actor(first_name,last_name)
values('HAMPTON', 'AVENUE'),('LISA', 'BYWAY');
--select *
--from actor
-- 2. Add "Euclidean PI", "The epic story of Euclid as a pizza delivery boy in
-- ancient Greece", to the film table. The movie was released in 2008 in English.
-- Since its an epic, the run length is 3hrs and 18mins. There are no special
-- features, the film speaks for itself, and doesn't need any gimmicks.
insert into film (title, description,release_year,language_id,length)
values ('EUCLIDEAN PI','The epic story of Euclid as a pizza delivery boy in
ancient Greece',2008,1,198);
--select *
--from film
--order by length desc
-- 3. Hampton Avenue plays Euclid, while Lisa Byway plays his slightly
-- overprotective mother, in the film, "Euclidean PI". Add them to the film.
insert into film_actor(actor_id, film_id)
values (203,1001);
insert into film_actor(actor_id, film_id)
values(204,1001);
--select *
--from film_actor
-- 4. Add Mathmagical to the category table.
insert into category(name)
values('Mathmagial');
--17
-- 5. Assign the Mathmagical category to the following films, "Euclidean PI",
-- "EGG IGBY", "KARATE MOON", "RANDOM GO", and "YOUNG LANGUAGE"
update film_category
set category_id = 17
where film_id in(494,274,714,996);
insert into film_category(film_id, category_id)
values(1001,17);
--select * from film_category
-- 6. Mathmagical films always have a "G" rating, adjust all Mathmagical films
-- accordingly.
-- (5 rows affected)
update film
set rating = 'G'
where film_id in(494,274,714,996,1001);
-- 7. Add a copy of "Euclidean PI" to all the stores.
insert into inventory(film_id,store_id)
values(1001,1),(1001,2);
--select * from inventory
-- 8. The Feds have stepped in and have impounded all copies of the pirated film,
-- "Euclidean PI". The film has been seized from all stores, and needs to be
-- deleted from the film table. Delete "Euclidean PI" from the film table.
-- (Did it succeed? Why?)
-- <It did not work because it's embeded in other tables, there are constriants in place to keep that from happening>
delete
from film
where film_id = 1001;
-- 9. Delete Mathmagical from the category table.
-- (Did it succeed? Why?)
-- <NO IT VIOLATES THE FORIEGN KEY CONSTRAINT!>
delete
--select *
from category
where name = 'Mathmagical';
-- 10. Delete all links to Mathmagical in the film_category tale.
-- (Did it succeed? Why?)
-- <YES! BECAUSE YOU CAN CHANGE THE CATEGORY OF ANY FILM YOU WANT IT'S A FREE COUNTRY>
delete
--select *
from film_category
where category_id = 17;
-- 11. Retry deleting Mathmagical from the category table, followed by retrying
-- to delete "Euclidean PI".
-- (Did either deletes succeed? Why?)
-- <MAGICAL IS GONE BECAUSE YOU CAN ADD AND DELETE CATEGORIES>
delete
--select *
from category
where name = 'Mathmagical';
delete
from inventory
where film_id = 1001;
-- 12. Check database metadata to determine all constraints of the film id, and
-- describe any remaining adjustments needed before the film "Euclidean PI" can
-- be removed from the film table.
SELECT * FROM INFORMATION_SCHEMA.TABLE_CONSTRAINTS;
SELECT * FROM INFORMATION_SCHEMA.CONSTRAINT_COLUMN_USAGE;
SELECT * FROM INFORMATION_SCHEMA.REFERENTIAL_CONSTRAINTS;
--Delete all connections to the film and the film should be good to delete
--
|
--liquibase formatted sql
--changeset lautaro:settlement_definition splitStatements:false
-- creo la tabla settlement
CREATE TABLE settlement(
id SERIAL NOT NULL,
date timestamp without time zone,
amount NUMERIC(17,4),
concept VARCHAR(250),
chek_number NUMERIC(8), -- número de cheque en caso de que el pago se realice con uno
discounted boolean DEFAULT FALSE,
person INT,
last_update_on timestamp without time zone,
deleted_on timestamp without time zone,
last_update_user INT,
CONSTRAINT pk_settlement PRIMARY KEY (id),
CONSTRAINT pk_person_person FOREIGN KEY (person) REFERENCES person (id)
);
|
-- Problem 16
CREATE DATABASE SoftUni
USE SoftUni
CREATE TABLE Towns
(
Id int IDENTITY NOT NULL,
Name nvarchar(20) NOT NULL,
CONSTRAINT PK_IdTown PRIMARY KEY (Id)
)
CREATE TABLE Adresses
(
Id int IDENTITY NOT NULL,
AddressText nvarchar(50) NOT NULL,
TownId int FOREIGN KEY REFERENCES Towns(Id)
CONSTRAINT PK_IdAdress PRIMARY KEY (Id)
)
CREATE TABLE Departments
(
Id int IDENTITY NOT NULL,
Name nvarchar(20) NOT NULL,
CONSTRAINT PK_IdDepartment PRIMARY KEY (Id)
)
CREATE TABLE Employees
(
Id int IDENTITY NOT NULL,
FirstName nvarchar(20) NOT NULL,
MiddleName nvarchar(20),
LastName nvarchar(20) NOT NULL,
JobTitle nvarchar(20) NOT NULL,
DepartmentId int FOREIGN KEY REFERENCES Departments(Id),
HireDate date,
Salary decimal(7, 2) NOT NULL,
AddressId int FOREIGN KEY REFERENCES Adresses(Id),
CONSTRAINT PK_IdEmployee PRIMARY KEY (Id)
)
-- Problem 17
BACKUP DATABASE SoftUni
TO DISK = 'C:\Users\home PC\Desktop\softuni-backup.bak'
RESTORE DATABASE SoftUni
FROM DISK='C:\Users\home PC\Desktop\softuni-backup.bak'
-- Problem 18
INSERT INTO Towns(Name)
VALUES ('Sofia'),
('Plovdiv'),
('Varna'),
('Burgas')
INSERT INTO Departments(Name)
VALUES ('Engineering'),
('Sales'),
('Marketing'),
('Software Development'),
('Quality Assurance')
INSERT INTO Employees(FirstName, MiddleName, LastName, JobTitle, DepartmentId, HireDate, Salary)
VALUES('Ivan', 'Ivanov', 'Ivanov', '.NET Developer', 4, '2013-02-01', 3500.00),
('Petar', 'Petrov', 'Petrov', 'Senior Engineer', 1, '2004-02-03', 4000.00),
('Maria', 'Petrova', 'Ivanova', 'Intern', 5, '2016-08-28', 525.25),
('Georgi', 'Teziev', 'Ivanov', 'CEO', 2, '2007-12-09', 3000.00),
('Peter', 'Pan', 'Pan', 'Intern', 3, '2016-08-28', 599.88)
-- Problem 19
SELECT * FROM Towns
SELECT * FROM Departments
SELECT * FROM Employees
-- Problem 20
SELECT * FROM Towns ORDER BY Name
SELECT * FROM Departments ORDER BY Name
SELECT * FROM Employees ORDER BY Salary DESC
-- Problem 21
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
-- Problem 22
UPDATE Employees
SET Salary = Salary * 1.10
SELECT Salary FROM Employees
|
--PROJECTS--
INSERT INTO PROJECT(project_id,title,description,owner_id,creation_date,is_deleted)
VALUES (1, 'Skyroof App', 'Implement this API', 1, CURRENT_TIMESTAMP(), false);
INSERT INTO PROJECT_COLLABORATORS(fk_project, fk_user) VALUES (1,1);
INSERT INTO PROJECT_COLLABORATORS(fk_project, fk_user) VALUES (1,2);
INSERT INTO PROJECT(project_id,title,description,owner_id,creation_date,is_deleted)
VALUES (2, 'Hermes App', 'Implement this app', 1, CURRENT_TIMESTAMP(), false);
INSERT INTO PROJECT_COLLABORATORS(fk_project, fk_user) VALUES (2,1);
INSERT INTO PROJECT_COLLABORATORS(fk_project, fk_user) VALUES (2,3);
INSERT INTO PROJECT(project_id,title,description,owner_id,creation_date,is_deleted)
VALUES (3, 'Hlios App', 'Implement this app', 1, CURRENT_TIMESTAMP(), false);
INSERT INTO PROJECT_COLLABORATORS(fk_project, fk_user) VALUES (3,1);
INSERT INTO PROJECT_COLLABORATORS(fk_project, fk_user) VALUES (3,2);
|
/* manager quản lý trên 2 nhân viên*/
USE coowell;
SELECT (select last_name from employees where a.manager_id = employee_id) as name_manager ,manager_id, COUNT(manager_id)
FROM employees a
GROUP BY manager_id
Having Count(manager_id) > 2;
|
-- phpMyAdmin SQL Dump
-- version 5.1.0
-- https://www.phpmyadmin.net/
--
-- 主機: 127.0.0.1
-- 產生時間: 2021-04-01 03:34:28
-- 伺服器版本: 10.4.18-MariaDB
-- PHP 版本: 8.0.3
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 */;
--
-- 資料庫: `mydatabase`
--
-- --------------------------------------------------------
--
-- 資料表結構 `park`
--
CREATE TABLE `park` (
`id` int(11) NOT NULL,
`pm_name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`pm_overview` varchar(2048) COLLATE utf8_unicode_ci NOT NULL,
`pm_location` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`pm_lon` float NOT NULL,
`pm_lat` float NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
--
-- 已傾印資料表的索引
--
--
-- 資料表索引 `park`
--
ALTER TABLE `park`
ADD PRIMARY KEY (`id`);
--
-- 在傾印的資料表使用自動遞增(AUTO_INCREMENT)
--
--
-- 使用資料表自動遞增(AUTO_INCREMENT) `park`
--
ALTER TABLE `park`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
COMMIT;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
with source_data as (
select
order_id
, product_id
, quantity
, unit_price
, discount
/* Stitch extration */
, _sdc_extracted_at as last_elt_extract
, _sdc_received_at
, _sdc_sequence
, _sdc_batched_at
, _sdc_table_version
from {{ source('northwind_etl','order_details') }}
)
select *
from source_data
|
INSERT INTO wlbPoint VALUES (7088,
'31/2-N-14',
'31/2-N-14 BY1H',
'TROLL',
'054 ',
'DEVELOPMENT',
'Statoil Petroleum AS',
'NO',
'COSLPromoter',
'TROLL N1',
'9999-12-31',
'9999-12-31',
NULL,
NULL,
0,
'PRODUCTION',
341.000000,
'http://factpages.npd.no/FactPages/Default.aspx?nav1=wellbore'+'@'+'nav2=PageView|Development|All'+'@'+'nav3=7088',
'http://www.npd.no/FactMapSearch?NPDID_wellbore=7088',
'NO');
INSERT INTO wlbPoint VALUES
(7089,
'31/2-N-14',
'31/2-N-14 BY2H',
'TROLL',
'054 ',
'DEVELOPMENT',
'Statoil Petroleum AS',
'NO',
'COSLPromoter',
'TROLL N1',
'9999-12-31',
'9999-12-31',
NULL,
NULL,
0,
'PRODUCTION',
341.000000,
'http://factpages.npd.no/FactPages/Default.aspx?nav1=wellbore'+'@'+'nav2=PageView|Development|All'+'@'+'nav3=7089',
'http://www.npd.no/FactMapSearch?NPDID_wellbore=7089',
'NO');
INSERT INTO wlbPoint VALUES
(7090,
'31/2-N-14',
'31/2-N-14 BY3H',
'TROLL',
'054 ',
'DEVELOPMENT',
'Statoil Petroleum AS',
'NO',
'COSLPromoter',
'TROLL N1',
'9999-12-31',
'9999-12-31',
NULL,
NULL,
0,
'PRODUCTION',
341.000000,
'http://factpages.npd.no/FactPages/Default.aspx?nav1=wellbore'+'@'+'nav2=PageView|Development|All'+'@'+'nav3=7090',
'http://www.npd.no/FactMapSearch?NPDID_wellbore=7090',
'NO');
INSERT INTO wlbPoint VALUES
(7091,
'6610/10-1',
'6610/10-1',
NULL,
'386 ',
'EXPLORATION',
'Statoil Petroleum AS',
'NO',
'WEST ALPHA',
NULL,
'2013-01-02',
'2013-02-03',
'DRY',
'P'+'@'+'A',
1,
'WILDCAT',
244.000000,
'http://factpages.npd.no/FactPages/Default.aspx?nav1=wellbore'+'@'+'nav2=PageView|Exploration|All'+'@'+'nav3=7091',
'http://www.npd.no/FactMapSearch?NPDID_wellbore=7091',
'NO');
INSERT INTO wlbPoint VALUES
(7092,
'6407/1-A-2',
'6407/1-A-2 H',
'TYRIHANS',
'073 ',
'DEVELOPMENT',
'Statoil Petroleum AS',
'NO',
'TRANSOCEAN LEADER',
'TYRIHANS A',
'2013-01-07',
'2013-03-12',
'OIL',
'PLUGGED',
99,
'OBSERVATION',
288.100000,
'http://factpages.npd.no/FactPages/Default.aspx?nav1=wellbore'+'@'+'nav2=PageView|Development|All'+'@'+'nav3=7092',
'http://www.npd.no/FactMapSearch?NPDID_wellbore=7092',
'NO');
INSERT INTO wlbPoint VALUES
(7093,
'6407/1-A-2',
'6407/1-A-2 AY1H',
'TYRIHANS',
'073 ',
'DEVELOPMENT',
'Statoil Petroleum AS',
'YES',
'TRANSOCEAN LEADER',
'TYRIHANS A',
'2013-03-15',
'2013-03-28',
'OIL',
'SUSP.AT TD',
50,
'PRODUCTION',
288.100000,
'http://factpages.npd.no/FactPages/Default.aspx?nav1=wellbore'+'@'+'nav2=PageView|Development|All'+'@'+'nav3=7093',
'http://www.npd.no/FactMapSearch?NPDID_wellbore=7093',
'NO');
INSERT INTO wlbPoint VALUES
(7094,
'6407/1-A-2',
'6407/1-A-2 AY3H',
'TYRIHANS',
'073 ',
'DEVELOPMENT',
'Statoil Petroleum AS',
'YES',
'TRANSOCEAN LEADER',
'TYRIHANS A',
'2013-04-15',
'9999-12-31',
NULL,
NULL,
0,
'PRODUCTION',
288.100000,
'http://factpages.npd.no/FactPages/Default.aspx?nav1=wellbore'+'@'+'nav2=PageView|Development|All'+'@'+'nav3=7094',
'http://www.npd.no/FactMapSearch?NPDID_wellbore=7094',
'NO');
INSERT INTO wlbPoint VALUES
(7095,
'16/1-16',
'16/1-16 A',
NULL,
'457 ',
'EXPLORATION',
'Wintershall Norge AS',
'NO',
'BREDFORD DOLPHIN',
NULL,
'2012-12-07',
'2013-01-01',
'OIL',
'P'+'@'+'A',
5,
'APPRAISAL',
113.000000,
'http://factpages.npd.no/FactPages/Default.aspx?nav1=wellbore'+'@'+'nav2=PageView|Exploration|All'+'@'+'nav3=7095',
'http://www.npd.no/FactMapSearch?NPDID_wellbore=7095',
'NO');
INSERT INTO wlbPoint VALUES
(7096,
'6608/10-P-1',
'6608/10-P-1 H',
'SKULD',
'128 ',
'DEVELOPMENT',
'Statoil Petroleum AS',
'NO',
'DEEPSEA BERGEN',
'FOSSEKALL P',
'2013-02-08',
'2013-04-09',
'OIL',
'PLUGGED',
99,
'OBSERVATION',
358.000000,
'http://factpages.npd.no/FactPages/Default.aspx?nav1=wellbore'+'@'+'nav2=PageView|Development|All'+'@'+'nav3=7096',
'http://www.npd.no/FactMapSearch?NPDID_wellbore=7096',
'NO');
INSERT INTO wlbPoint VALUES
(7097,
'6608/10-R-4',
'6608/10-R-4 H',
'SKULD',
'128 ',
'DEVELOPMENT',
'Statoil Petroleum AS',
'NO',
'DEEPSEA BERGEN',
'FOSSEKALL R',
'2013-01-03',
'2013-01-12',
NULL,
'SUSPENDED',
0,
'INJECTION',
358.000000,
'http://factpages.npd.no/FactPages/Default.aspx?nav1=wellbore'+'@'+'nav2=PageView|Development|All'+'@'+'nav3=7097',
'http://www.npd.no/FactMapSearch?NPDID_wellbore=7097',
'NO');
INSERT INTO wlbPoint VALUES
(7098,
'16/4-6',
'16/4-6 S',
NULL,
'359 ',
'EXPLORATION',
'Lundin Norway AS',
'NO',
'BREDFORD DOLPHIN',
NULL,
'2013-03-11',
'2013-05-04',
'OIL',
'P'+'@'+'A',
5,
'WILDCAT',
100.500000,
'http://factpages.npd.no/FactPages/Default.aspx?nav1=wellbore'+'@'+'nav2=PageView|Exploration|All'+'@'+'nav3=7098',
'http://www.npd.no/FactMapSearch?NPDID_wellbore=7098',
'YES');
INSERT INTO wlbPoint VALUES
(7099,
'6608/10-P-4',
'6608/10-P-4 H',
'SKULD',
'128 ',
'DEVELOPMENT',
'Statoil Petroleum AS',
'NO',
'DEEPSEA BERGEN',
'FOSSEKALL P',
'2013-02-15',
'2013-03-23',
'OIL',
'PLUGGED',
50,
'PRODUCTION',
358.000000,
'http://factpages.npd.no/FactPages/Default.aspx?nav1=wellbore'+'@'+'nav2=PageView|Development|All'+'@'+'nav3=7099',
'http://www.npd.no/FactMapSearch?NPDID_wellbore=7099',
'NO');
INSERT INTO wlbPoint VALUES
(7100,
'4/4-U-1',
'4/4-U-1',
NULL,
'541 ',
'SHALLOW',
'Repsol Exploration Norge AS',
'NO',
'BUCENTAUR',
NULL,
'2012-12-11',
'2012-12-12',
NULL,
'P'+'@'+'A',
0,
NULL,
61.900000,
'http://factpages.npd.no/FactPages/default.aspx?nav1=wellbore'+'@'+'nav2=PageView|Shallow'+'@'+'nav3=7100',
NULL,
'NO');
INSERT INTO wlbPoint VALUES
(7101,
'4/4-U-2',
'4/4-U-2',
NULL,
'541 ',
'SHALLOW',
'Repsol Exploration Norge AS',
'NO',
'BUCENTAUR',
NULL,
'2012-12-11',
'2012-12-11',
NULL,
'P'+'@'+'A',
0,
NULL,
62.100000,
'http://factpages.npd.no/FactPages/default.aspx?nav1=wellbore'+'@'+'nav2=PageView|Shallow'+'@'+'nav3=7101',
NULL,
'NO');
INSERT INTO wlbPoint VALUES
(7102,
'4/4-U-3',
'4/4-U-3',
NULL,
'541 ',
'SHALLOW',
'Repsol Exploration Norge AS',
'NO',
'BUCENTAUR',
NULL,
'2012-12-06',
'2012-12-06',
NULL,
'P'+'@'+'A',
0,
NULL,
61.800000,
'http://factpages.npd.no/FactPages/default.aspx?nav1=wellbore'+'@'+'nav2=PageView|Shallow'+'@'+'nav3=7102',
NULL,
'NO');
INSERT INTO wlbPoint VALUES
(7103,
'4/4-U-4',
'4/4-U-4',
NULL,
'541 ',
'SHALLOW',
'Repsol Exploration Norge AS',
'NO',
'BUCENTAUR',
NULL,
'2012-12-12',
'2012-12-13',
NULL,
'P'+'@'+'A',
0,
NULL,
61.900000,
'http://factpages.npd.no/FactPages/default.aspx?nav1=wellbore'+'@'+'nav2=PageView|Shallow'+'@'+'nav3=7103',
NULL,
'NO');
INSERT INTO wlbPoint VALUES
(7104,
'2/7-U-48',
'2/7-U-48',
'ELDFISK',
'018 ',
'SHALLOW',
'ConocoPhillips Skandinavia AS',
'NO',
'BUCENTAUR',
NULL,
'2012-11-29',
'2012-11-29',
NULL,
'P'+'@'+'A',
0,
NULL,
73.000000,
'http://factpages.npd.no/FactPages/default.aspx?nav1=wellbore'+'@'+'nav2=PageView|Shallow'+'@'+'nav3=7104',
NULL,
'NO');
INSERT INTO wlbPoint VALUES
(7105,
'25/11-26',
'25/11-26',
NULL,
'169 ',
'EXPLORATION',
'Statoil Petroleum AS',
'NO',
'OCEAN VANGUARD',
NULL,
'2013-01-18',
'2013-02-18',
'DRY',
'P'+'@'+'A',
1,
'WILDCAT',
130.000000,
'http://factpages.npd.no/FactPages/Default.aspx?nav1=wellbore'+'@'+'nav2=PageView|Exploration|All'+'@'+'nav3=7105',
'http://www.npd.no/FactMapSearch?NPDID_wellbore=7105',
'NO');
INSERT INTO wlbPoint VALUES
(7106,
'7122/7-H-1',
'7122/7-H-1 H',
'GOLIAT',
'229 ',
'DEVELOPMENT',
'Eni Norge AS',
'NO',
'SCARABEO 8',
'GOLIAT H',
'2013-02-06',
'2013-03-07',
'WATER',
'PLUGGED',
99,
'OBSERVATION',
383.000000,
'http://factpages.npd.no/FactPages/Default.aspx?nav1=wellbore'+'@'+'nav2=PageView|Development|All'+'@'+'nav3=7106',
'http://www.npd.no/FactMapSearch?NPDID_wellbore=7106',
'NO');
INSERT INTO wlbPoint VALUES
(7107,
'16/2-16',
'16/2-16 A',
NULL,
'501 ',
'EXPLORATION',
'Lundin Norway AS',
'NO',
'TRANSOCEAN WINNER',
NULL,
'2012-12-13',
'2013-02-07',
'OIL',
'P'+'@'+'A',
5,
'APPRAISAL',
115.000000,
'http://factpages.npd.no/FactPages/Default.aspx?nav1=wellbore'+'@'+'nav2=PageView|Exploration|All'+'@'+'nav3=7107',
'http://www.npd.no/FactMapSearch?NPDID_wellbore=7107',
'NO');
INSERT INTO wlbPoint VALUES
(7108,
'7122/7-H-1',
'7122/7-H-1 AH',
'GOLIAT',
'229 ',
'DEVELOPMENT',
'Eni Norge AS',
'NO',
'SCARABEO 8',
'GOLIAT H',
'9999-12-31',
'9999-12-31',
NULL,
NULL,
0,
'INJECTION',
383.000000,
'http://factpages.npd.no/FactPages/Default.aspx?nav1=wellbore'+'@'+'nav2=PageView|Development|All'+'@'+'nav3=7108',
'http://www.npd.no/FactMapSearch?NPDID_wellbore=7108',
'NO');
INSERT INTO wlbPoint VALUES
(7109,
'34/7-P-12',
'34/7-P-12 A',
'SNORRE',
'089 ',
'DEVELOPMENT',
'Statoil Petroleum AS',
'NO',
'SNORRE A',
'SNORRE A',
'2013-01-25',
'2013-03-12',
'OIL',
'SUSP.AT TD',
50,
'PRODUCTION',
309.000000,
'http://factpages.npd.no/FactPages/Default.aspx?nav1=wellbore'+'@'+'nav2=PageView|Development|All'+'@'+'nav3=7109',
'http://www.npd.no/FactMapSearch?NPDID_wellbore=7109',
'NO');
INSERT INTO wlbPoint VALUES
(7110,
'6201/11-3',
'6201/11-3 R',
NULL,
'519 ',
'EXPLORATION',
'Lundin Norway AS',
'NO',
'BREDFORD DOLPHIN',
NULL,
'2012-08-16',
'2012-10-21',
'OIL',
'P'+'@'+'A',
5,
'WILDCAT',
382.500000,
'http://factpages.npd.no/FactPages/Default.aspx?nav1=wellbore'+'@'+'nav2=PageView|Exploration|All'+'@'+'nav3=7110',
'http://www.npd.no/FactMapSearch?NPDID_wellbore=7110',
'NO');
INSERT INTO wlbPoint VALUES
(7111,
'6506/6-U-1',
'6506/6-U-1',
NULL,
'513 ',
'SHALLOW',
'Maersk Oil Norway AS',
'NO',
'TRANSOCEAN BARENTS',
NULL,
'2012-12-06',
'2012-12-08',
NULL,
'P'+'@'+'A',
0,
NULL,
449.000000,
'http://factpages.npd.no/FactPages/default.aspx?nav1=wellbore'+'@'+'nav2=PageView|Shallow'+'@'+'nav3=7111',
NULL,
'NO');
INSERT INTO wlbPoint VALUES
(7112,
'8/5-1',
'8/5-1',
NULL,
'453 S',
'EXPLORATION',
'Lundin Norway AS',
'NO',
'MÆRSK GUARDIAN',
NULL,
'2013-01-10',
'2013-03-31',
'DRY',
'P'+'@'+'A',
1,
'WILDCAT',
72.000000,
'http://factpages.npd.no/FactPages/Default.aspx?nav1=wellbore'+'@'+'nav2=PageView|Exploration|All'+'@'+'nav3=7112',
'http://www.npd.no/FactMapSearch?NPDID_wellbore=7112',
'NO');
INSERT INTO wlbPoint VALUES
(7113,
'16/1-17',
'16/1-17',
NULL,
'338 ',
'EXPLORATION',
'Lundin Norway AS',
'NO',
'TRANSOCEAN WINNER',
NULL,
'2013-02-11',
'2013-03-20',
'DRY',
'P'+'@'+'A',
1,
'WILDCAT',
109.000000,
'http://factpages.npd.no/FactPages/Default.aspx?nav1=wellbore'+'@'+'nav2=PageView|Exploration|All'+'@'+'nav3=7113',
'http://www.npd.no/FactMapSearch?NPDID_wellbore=7113',
'NO');
INSERT INTO wlbPoint VALUES
(7114,
'7218/11-1',
'7218/11-1',
NULL,
'531 ',
'EXPLORATION',
'Repsol Exploration Norge AS',
'NO',
'TRANSOCEAN BARENTS',
NULL,
'2013-03-04',
'2013-04-10',
'DRY',
'P'+'@'+'A',
1,
'WILDCAT',
325.000000,
'http://factpages.npd.no/FactPages/Default.aspx?nav1=wellbore'+'@'+'nav2=PageView|Exploration|All'+'@'+'nav3=7114',
'http://www.npd.no/FactMapSearch?NPDID_wellbore=7114',
'NO');
INSERT INTO wlbPoint VALUES
(7115,
'16/8-3',
'16/8-3 S',
NULL,
'360 ',
'EXPLORATION',
'Statoil Petroleum AS',
'NO',
'SONGA TRYM',
NULL,
'2013-03-11',
'2013-04-30',
'DRY',
'P'+'@'+'A',
1,
'WILDCAT',
71.500000,
'http://factpages.npd.no/FactPages/Default.aspx?nav1=wellbore'+'@'+'nav2=PageView|Exploration|All'+'@'+'nav3=7115',
'http://www.npd.no/FactMapSearch?NPDID_wellbore=7115',
'NO');
INSERT INTO wlbPoint VALUES
(7116,
'6608/10-G-3',
'6608/10-G-3 AH',
'URD',
'128 ',
'DEVELOPMENT',
'Statoil Petroleum AS',
'NO',
'TRANSOCEAN SPITSBERGEN',
'NORNE G',
'2013-01-02',
'2013-03-12',
'OIL',
'SUSP.AT TD',
50,
'PRODUCTION',
377.000000,
'http://factpages.npd.no/FactPages/Default.aspx?nav1=wellbore'+'@'+'nav2=PageView|Development|All'+'@'+'nav3=7116',
'http://www.npd.no/FactMapSearch?NPDID_wellbore=7116',
'NO');
INSERT INTO wlbPoint VALUES
(7117,
'7122/7-H-3',
'7122/7-H-3 H',
'GOLIAT',
'229 ',
'DEVELOPMENT',
'Eni Norge AS',
'NO',
'SCARABEO 8',
'GOLIAT H',
'2013-03-10',
'2013-03-31',
'WATER',
'SUSP.AT TD',
173,
'INJECTION',
384.000000,
'http://factpages.npd.no/FactPages/Default.aspx?nav1=wellbore'+'@'+'nav2=PageView|Development|All'+'@'+'nav3=7117',
'http://www.npd.no/FactMapSearch?NPDID_wellbore=7117',
'NO');
INSERT INTO wlbPoint VALUES
(7118,
'7122/7-H-4',
'7122/7-H-4 H',
'GOLIAT',
'229 ',
'DEVELOPMENT',
'Eni Norge AS',
'NO',
'SCARABEO 8',
'GOLIAT H',
'2013-04-07',
'9999-12-31',
NULL,
NULL,
0,
'INJECTION',
383.000000,
'http://factpages.npd.no/FactPages/Default.aspx?nav1=wellbore'+'@'+'nav2=PageView|Development|All'+'@'+'nav3=7118',
'http://www.npd.no/FactMapSearch?NPDID_wellbore=7118',
'NO');
INSERT INTO wlbPoint VALUES
(7119,
'7218/11-U-1',
'7218/11-U-1',
NULL,
'531 ',
'SHALLOW',
'Repsol Exploration Norge AS',
'NO',
'TRANSOCEAN BARENTS',
NULL,
'2013-03-02',
'2013-03-04',
NULL,
NULL,
0,
NULL,
325.000000,
'http://factpages.npd.no/FactPages/default.aspx?nav1=wellbore'+'@'+'nav2=PageView|Shallow'+'@'+'nav3=7119',
NULL,
'NO');
INSERT INTO wlbPoint VALUES
(7120,
'35/9-8',
'35/9-8',
NULL,
'418 ',
'EXPLORATION',
'Wintershall Norge AS',
'NO',
'TRANSOCEAN ARCTIC',
NULL,
'2013-02-03',
'2013-04-11',
'OIL',
'P'+'@'+'A',
5,
'APPRAISAL',
369.000000,
'http://factpages.npd.no/FactPages/Default.aspx?nav1=wellbore'+'@'+'nav2=PageView|Exploration|All'+'@'+'nav3=7120',
'http://www.npd.no/FactMapSearch?NPDID_wellbore=7120',
'NO');
INSERT INTO wlbPoint VALUES
(7121,
'7/4-3',
'7/4-3',
NULL,
'495 ',
'EXPLORATION',
'Lundin Norway AS',
'NO',
'MÆRSK GUARDIAN',
NULL,
'2013-04-05',
'9999-12-31',
NULL,
NULL,
0,
'WILDCAT',
82.000000,
'http://factpages.npd.no/FactPages/Default.aspx?nav1=wellbore'+'@'+'nav2=PageView|Exploration|All'+'@'+'nav3=7121',
'http://www.npd.no/FactMapSearch?NPDID_wellbore=7121',
'NO');
INSERT INTO wlbPoint VALUES
(7122,
'15/12-A-1',
'15/12-A-1 B',
'VARG',
'038 ',
'DEVELOPMENT',
'Talisman Energy Norge AS',
'NO',
'ROWAN STAVANGER',
'VARG A',
'2013-02-19',
'2013-04-09',
'OIL',
'SUSP.AT TD',
50,
'PRODUCTION',
84.000000,
'http://factpages.npd.no/FactPages/Default.aspx?nav1=wellbore'+'@'+'nav2=PageView|Development|All'+'@'+'nav3=7122',
'http://www.npd.no/FactMapSearch?NPDID_wellbore=7122',
'NO');
INSERT INTO wlbPoint VALUES
(7123,
'16/5-3',
'16/5-3',
NULL,
'502 ',
'EXPLORATION',
'Statoil Petroleum AS',
'NO',
'OCEAN VANGUARD',
NULL,
'2013-02-20',
'2013-03-18',
'OIL',
'P'+'@'+'A',
5,
'APPRAISAL',
108.000000,
'http://factpages.npd.no/FactPages/Default.aspx?nav1=wellbore'+'@'+'nav2=PageView|Exploration|All'+'@'+'nav3=7123',
'http://www.npd.no/FactMapSearch?NPDID_wellbore=7123',
'NO');
INSERT INTO wlbPoint VALUES
(7124,
'6507/7-A-28',
'6507/7-A-28 B',
'HEIDRUN',
'095 ',
'DEVELOPMENT',
'Statoil Petroleum AS',
'NO',
'HEIDRUN',
'HEIDRUN',
'2013-02-25',
'2013-04-12',
'OIL',
'PLUGGED',
99,
'OBSERVATION',
345.600000,
'http://factpages.npd.no/FactPages/Default.aspx?nav1=wellbore'+'@'+'nav2=PageView|Development|All'+'@'+'nav3=7124',
'http://www.npd.no/FactMapSearch?NPDID_wellbore=7124',
'NO');
INSERT INTO wlbPoint VALUES
(7125,
'6507/7-A-28',
'6507/7-A-28 C',
'HEIDRUN',
'095 ',
'DEVELOPMENT',
'Statoil Petroleum AS',
'NO',
'HEIDRUN',
'HEIDRUN',
'2013-04-13',
'9999-12-31',
NULL,
NULL,
0,
'PRODUCTION',
345.600000,
'http://factpages.npd.no/FactPages/Default.aspx?nav1=wellbore'+'@'+'nav2=PageView|Development|All'+'@'+'nav3=7125',
'http://www.npd.no/FactMapSearch?NPDID_wellbore=7125',
'NO');
INSERT INTO wlbPoint VALUES
(7126,
'25/11-A-21',
'25/11-A-21 H',
'BALDER',
'001 ',
'DEVELOPMENT',
'ExxonMobil Exploration '+'@'+' Production Norway AS',
'NO',
'WEST ALPHA',
'BALDER FPU',
'2013-04-15',
'2013-04-22',
'OIL',
'PLUGGED',
99,
'OBSERVATION',
126.000000,
'http://factpages.npd.no/FactPages/Default.aspx?nav1=wellbore'+'@'+'nav2=PageView|Development|All'+'@'+'nav3=7126',
'http://www.npd.no/FactMapSearch?NPDID_wellbore=7126',
'NO');
INSERT INTO wlbPoint VALUES
(7127,
'25/11-A-21',
'25/11-A-21 AH',
'BALDER',
'001 ',
'DEVELOPMENT',
'ExxonMobil Exploration '+'@'+' Production Norway AS',
'NO',
'WEST ALPHA',
'BALDER FPU',
'2013-04-23',
'9999-12-31',
NULL,
NULL,
0,
'PRODUCTION',
126.000000,
'http://factpages.npd.no/FactPages/Default.aspx?nav1=wellbore'+'@'+'nav2=PageView|Development|All'+'@'+'nav3=7127',
'http://www.npd.no/FactMapSearch?NPDID_wellbore=7127',
'NO');
INSERT INTO wlbPoint VALUES
(7128,
'25/11-A-22',
'25/11-A-22 H',
'BALDER',
'001 ',
'DEVELOPMENT',
'ExxonMobil Exploration '+'@'+' Production Norway AS',
'NO',
'WEST ALPHA',
'BALDER FPU',
'9999-12-31',
'9999-12-31',
NULL,
'PREDRILLED',
99,
'OBSERVATION',
126.000000,
'http://factpages.npd.no/FactPages/Default.aspx?nav1=wellbore'+'@'+'nav2=PageView|Development|All'+'@'+'nav3=7128',
'http://www.npd.no/FactMapSearch?NPDID_wellbore=7128',
'NO');
INSERT INTO wlbPoint VALUES
(7129,
'25/11-A-23',
'25/11-A-23 H',
'BALDER',
'001 ',
'DEVELOPMENT',
'ExxonMobil Exploration '+'@'+' Production Norway AS',
'NO',
'WEST ALPHA',
'BALDER FPU',
'9999-12-31',
'9999-12-31',
NULL,
'PREDRILLED',
0,
'PRODUCTION',
126.000000,
'http://factpages.npd.no/FactPages/Default.aspx?nav1=wellbore'+'@'+'nav2=PageView|Development|All'+'@'+'nav3=7129',
'http://www.npd.no/FactMapSearch?NPDID_wellbore=7129',
'NO');
INSERT INTO wlbPoint VALUES
(7130,
'16/5-U-1',
'16/5-U-1',
NULL,
'502 ',
'SHALLOW',
'Statoil Petroleum AS',
'NO',
'OCEAN VANGUARD',
NULL,
'9999-12-31',
'9999-12-31',
NULL,
NULL,
0,
NULL,
108.000000,
'http://factpages.npd.no/FactPages/default.aspx?nav1=wellbore'+'@'+'nav2=PageView|Shallow'+'@'+'nav3=7130',
NULL,
'NO');
INSERT INTO wlbPoint VALUES
(7131,
'6608/10-M-4',
'6608/10-M-4 BH',
'NORNE',
'128 ',
'DEVELOPMENT',
'Statoil Petroleum AS',
'NO',
'TRANSOCEAN SPITSBERGEN',
'NORNE M',
'2013-04-06',
'9999-12-31',
NULL,
NULL,
0,
'PRODUCTION',
375.000000,
'http://factpages.npd.no/FactPages/Default.aspx?nav1=wellbore'+'@'+'nav2=PageView|Development|All'+'@'+'nav3=7131',
'http://www.npd.no/FactMapSearch?NPDID_wellbore=7131',
'NO');
INSERT INTO wlbPoint VALUES
(7132,
'25/4-F-1',
'25/4-F-1 H',
'VILJE',
'036 D',
'DEVELOPMENT',
'Marathon Oil Norge AS',
'NO',
'TRANSOCEAN WINNER',
'25/4-F-1 H',
'2013-03-26',
'2013-04-25',
'OIL',
'PLUGGED',
99,
'OBSERVATION',
122.000000,
'http://factpages.npd.no/FactPages/Default.aspx?nav1=wellbore'+'@'+'nav2=PageView|Development|All'+'@'+'nav3=7132',
'http://www.npd.no/FactMapSearch?NPDID_wellbore=7132',
'NO');
INSERT INTO wlbPoint VALUES
(7133,
'25/11-A-22',
'25/11-A-22 AH',
'BALDER',
'001 ',
'DEVELOPMENT',
'ExxonMobil Exploration '+'@'+' Production Norway AS',
'NO',
'WEST ALPHA',
'BALDER FPU',
'9999-12-31',
'9999-12-31',
NULL,
NULL,
0,
'PRODUCTION',
126.000000,
'http://factpages.npd.no/FactPages/Default.aspx?nav1=wellbore'+'@'+'nav2=PageView|Development|All'+'@'+'nav3=7133',
'http://www.npd.no/FactMapSearch?NPDID_wellbore=7133',
'NO');
INSERT INTO wlbPoint VALUES
(7134,
'2/4-X-27',
'2/4-X-27 B',
'EKOFISK',
'018 ',
'DEVELOPMENT',
'ConocoPhillips Skandinavia AS',
'NO',
'EKOFISK X',
'EKOFISK X',
'2013-02-07',
'9999-12-31',
NULL,
NULL,
0,
'PRODUCTION',
76.000000,
'http://factpages.npd.no/FactPages/Default.aspx?nav1=wellbore'+'@'+'nav2=PageView|Development|All'+'@'+'nav3=7134',
'http://www.npd.no/FactMapSearch?NPDID_wellbore=7134',
'NO');
INSERT INTO wlbPoint VALUES
(7135,
'33/12-B-5',
'33/12-B-5 A',
'STATFJORD',
'037 ',
'DEVELOPMENT',
'Statoil Petroleum AS',
'NO',
'STATFJORD B',
'STATFJORD B',
'2013-04-02',
'2013-05-03',
'GAS',
'SUSP.AT TD',
90,
'PRODUCTION',
144.500000,
'http://factpages.npd.no/FactPages/Default.aspx?nav1=wellbore'+'@'+'nav2=PageView|Development|All'+'@'+'nav3=7135',
'http://www.npd.no/FactMapSearch?NPDID_wellbore=7135',
'NO');
INSERT INTO wlbPoint VALUES
(7136,
'2/11-A-3',
'2/11-A-3 A',
'HOD',
'033 ',
'DEVELOPMENT',
'BP Norge AS',
'NO',
'KOLSKAYA',
'HOD',
'1991-05-15',
'1991-07-23',
'OIL',
'PRODUCING',
50,
'PRODUCTION',
72.000000,
'http://factpages.npd.no/FactPages/Default.aspx?nav1=wellbore'+'@'+'nav2=PageView|Development|All'+'@'+'nav3=7136',
'http://www.npd.no/FactMapSearch?NPDID_wellbore=7136',
'NO');
INSERT INTO wlbPoint VALUES
(7137,
'3/7-9',
'3/7-9 S',
NULL,
'289 ',
'EXPLORATION',
'DONG E'+'@'+'P Norge AS',
'NO',
'MÆRSK GIANT',
NULL,
'2013-03-14',
'2013-04-30',
'DRY',
'P'+'@'+'A',
1,
'WILDCAT',
63.400000,
'http://factpages.npd.no/FactPages/Default.aspx?nav1=wellbore'+'@'+'nav2=PageView|Exploration|All'+'@'+'nav3=7137',
'http://www.npd.no/FactMapSearch?NPDID_wellbore=7137',
'NO');
INSERT INTO wlbPoint VALUES
(7138,
'25/4-F-1',
'25/4-F-1 AH',
'VILJE',
'036 D',
'DEVELOPMENT',
'Marathon Oil Norge AS',
'NO',
'TRANSOCEAN WINNER',
'25/4-F-1 H',
'2013-04-26',
'9999-12-31',
NULL,
NULL,
0,
'PRODUCTION',
122.000000,
'http://factpages.npd.no/FactPages/Default.aspx?nav1=wellbore'+'@'+'nav2=PageView|Development|All'+'@'+'nav3=7138',
'http://www.npd.no/FactMapSearch?NPDID_wellbore=7138',
'NO');
INSERT INTO wlbPoint VALUES
(7139,
'30/9-J-14',
'30/9-J-14 BH',
'OSEBERG SØR',
'104 ',
'DEVELOPMENT',
'Statoil Petroleum AS',
'NO',
'BORGLAND DOLPHIN',
'OSEBERG SØR J',
'2013-02-19',
'2013-04-07',
'OIL',
'SUSP.AT TD',
50,
'PRODUCTION',
109.000000,
'http://factpages.npd.no/FactPages/Default.aspx?nav1=wellbore'+'@'+'nav2=PageView|Development|All'+'@'+'nav3=7139',
'http://www.npd.no/FactMapSearch?NPDID_wellbore=7139',
'NO');
INSERT INTO wlbPoint VALUES
(7140,
'16/2-17',
'16/2-17 A',
NULL,
'265 ',
'EXPLORATION',
'Statoil Petroleum AS',
'NO',
'OCEAN VANGUARD',
NULL,
'9999-12-31',
'9999-12-31',
NULL,
NULL,
0,
'APPRAISAL',
111.000000,
'http://factpages.npd.no/FactPages/Default.aspx?nav1=wellbore'+'@'+'nav2=PageView|Exploration|All'+'@'+'nav3=7140',
'http://www.npd.no/FactMapSearch?NPDID_wellbore=7140',
'NO');
INSERT INTO wlbPoint VALUES
(7141,
'6406/9-3',
'6406/9-3',
NULL,
'255 ',
'EXPLORATION',
'A/S Norske Shell',
'NO',
'TRANSOCEAN BARENTS',
NULL,
'2013-04-17',
'9999-12-31',
NULL,
NULL,
0,
'WILDCAT',
298.000000,
'http://factpages.npd.no/FactPages/Default.aspx?nav1=wellbore'+'@'+'nav2=PageView|Exploration|All'+'@'+'nav3=7141',
'http://www.npd.no/FactMapSearch?NPDID_wellbore=7141',
'NO');
INSERT INTO wlbPoint VALUES
(7142,
'26/5-1',
'26/5-1',
NULL,
'506 S',
'EXPLORATION',
'Rocksource Exploration Norway AS',
'NO',
'BORGLAND DOLPHIN',
NULL,
'2013-04-10',
'9999-12-31',
NULL,
NULL,
0,
'WILDCAT',
260.000000,
'http://factpages.npd.no/FactPages/Default.aspx?nav1=wellbore'+'@'+'nav2=PageView|Exploration|All'+'@'+'nav3=7142',
'http://www.npd.no/FactMapSearch?NPDID_wellbore=7142',
'NO');
INSERT INTO wlbPoint VALUES
(7143,
'2/4-K-18',
'2/4-K-18 A',
'EKOFISK',
'018 ',
'DEVELOPMENT',
'ConocoPhillips Skandinavia AS',
'NO',
'EKOFISK K',
'EKOFISK K',
'9999-12-31',
'9999-12-31',
NULL,
NULL,
0,
'INJECTION',
73.800000,
'http://factpages.npd.no/FactPages/Default.aspx?nav1=wellbore'+'@'+'nav2=PageView|Development|All'+'@'+'nav3=7143',
'http://www.npd.no/FactMapSearch?NPDID_wellbore=7143',
'NO');
INSERT INTO wlbPoint VALUES
(7144,
'16/2-U-17',
'16/2-U-17',
NULL,
'265 ',
'SHALLOW',
'Statoil Petroleum AS',
'NO',
'OCEAN VANGUARD',
NULL,
'2013-03-22',
'2013-03-24',
NULL,
'P'+'@'+'A',
0,
NULL,
111.000000,
'http://factpages.npd.no/FactPages/default.aspx?nav1=wellbore'+'@'+'nav2=PageView|Shallow'+'@'+'nav3=7144',
NULL,
'NO');
INSERT INTO wlbPoint VALUES
(7145,
'2/4-B-7',
'2/4-B-7 A',
'EKOFISK',
'018 ',
'DEVELOPMENT',
'ConocoPhillips Skandinavia AS',
'NO',
'EKOFISK B',
'EKOFISK B',
'9999-12-31',
'9999-12-31',
NULL,
NULL,
0,
'PRODUCTION',
74.000000,
'http://factpages.npd.no/FactPages/Default.aspx?nav1=wellbore'+'@'+'nav2=PageView|Development|All'+'@'+'nav3=7145',
'http://www.npd.no/FactMapSearch?NPDID_wellbore=7145',
'NO');
INSERT INTO wlbPoint VALUES
(7146,
'34/8-C-3',
'34/8-C-3 AH',
'VISUND',
'120 ',
'DEVELOPMENT',
'Statoil Petroleum AS',
'NO',
'COSLPioneer',
'VISUND NORD ITS',
'9999-12-31',
'9999-12-31',
NULL,
NULL,
0,
'PRODUCTION',
378.000000,
'http://factpages.npd.no/FactPages/Default.aspx?nav1=wellbore'+'@'+'nav2=PageView|Development|All'+'@'+'nav3=7146',
'http://www.npd.no/FactMapSearch?NPDID_wellbore=7146',
'NO');
INSERT INTO wlbPoint VALUES
(7147,
'33/9-C-30',
'33/9-C-30 B',
'STATFJORD',
'037 ',
'DEVELOPMENT',
'Statoil Petroleum AS',
'NO',
'STATFJORD C',
'STATFJORD C',
'2013-04-28',
'9999-12-31',
NULL,
NULL,
0,
'PRODUCTION',
145.600000,
'http://factpages.npd.no/FactPages/Default.aspx?nav1=wellbore'+'@'+'nav2=PageView|Development|All'+'@'+'nav3=7147',
'http://www.npd.no/FactMapSearch?NPDID_wellbore=7147',
'NO');
INSERT INTO wlbPoint VALUES
(7148,
'34/10-H-4',
'34/10-H-4 AH',
'GULLFAKS SØR',
'050',
'DEVELOPMENT',
'Statoil Petroleum AS',
'NO',
'DEEPSEA ATLANTIC',
'GULLFAKS SØR H',
'2013-04-04',
'2013-04-12',
NULL,
'SUSPENDED',
0,
'PRODUCTION',
135.000000,
'http://factpages.npd.no/FactPages/Default.aspx?nav1=wellbore'+'@'+'nav2=PageView|Development|All'+'@'+'nav3=7148',
'http://www.npd.no/FactMapSearch?NPDID_wellbore=7148',
'NO');
INSERT INTO wlbPoint VALUES
(7149,
'7225/3-2',
'7225/3-2',
NULL,
'535 ',
'EXPLORATION',
'Total E'+'@'+'P Norge AS',
'NO',
'LEIV EIRIKSSON',
NULL,
'2013-04-30',
'9999-12-31',
NULL,
NULL,
0,
'APPRAISAL',
383.000000,
'http://factpages.npd.no/FactPages/Default.aspx?nav1=wellbore'+'@'+'nav2=PageView|Exploration|All'+'@'+'nav3=7149',
'http://www.npd.no/FactMapSearch?NPDID_wellbore=7149',
'NO');
INSERT INTO wlbPoint VALUES
(7150,
'31/2-O-22',
'31/2-O-22 Y1H',
'TROLL',
'054 ',
'DEVELOPMENT',
'Statoil Petroleum AS',
'YES',
'WEST VENTURE ',
'TROLL O2',
'2013-05-04',
'9999-12-31',
NULL,
NULL,
0,
'PRODUCTION',
338.000000,
'http://factpages.npd.no/FactPages/Default.aspx?nav1=wellbore'+'@'+'nav2=PageView|Development|All'+'@'+'nav3=7150',
'http://www.npd.no/FactMapSearch?NPDID_wellbore=7150',
'NO');
INSERT INTO wlbPoint VALUES
(7151,
'31/2-O-22',
'31/2-O-22 Y2H',
'TROLL',
'054 ',
'DEVELOPMENT',
'Statoil Petroleum AS',
'YES',
'WEST VENTURE ',
'TROLL O2',
'9999-12-31',
'9999-12-31',
NULL,
NULL,
0,
'PRODUCTION',
338.000000,
'http://factpages.npd.no/FactPages/Default.aspx?nav1=wellbore'+'@'+'nav2=PageView|Development|All'+'@'+'nav3=7151',
'http://www.npd.no/FactMapSearch?NPDID_wellbore=7151',
'NO');
INSERT INTO wlbPoint VALUES
(7152,
'31/2-O-22',
'31/2-O-22 Y3H',
'TROLL',
'054 ',
'DEVELOPMENT',
'Statoil Petroleum AS',
'YES',
'WEST VENTURE ',
'TROLL O2',
'9999-12-31',
'9999-12-31',
NULL,
NULL,
0,
'PRODUCTION',
338.000000,
'http://factpages.npd.no/FactPages/Default.aspx?nav1=wellbore'+'@'+'nav2=PageView|Development|All'+'@'+'nav3=7152',
'http://www.npd.no/FactMapSearch?NPDID_wellbore=7152',
'NO');
INSERT INTO wlbPoint VALUES
(7153,
'31/2-O-22',
'31/2-O-22 Y4H',
'TROLL',
'054 ',
'DEVELOPMENT',
'Statoil Petroleum AS',
'YES',
'WEST VENTURE ',
'TROLL O2',
'9999-12-31',
'9999-12-31',
NULL,
NULL,
0,
'PRODUCTION',
338.000000,
'http://factpages.npd.no/FactPages/Default.aspx?nav1=wellbore'+'@'+'nav2=PageView|Development|All'+'@'+'nav3=7153',
'http://www.npd.no/FactMapSearch?NPDID_wellbore=7153',
'NO');
INSERT INTO wlbPoint VALUES
(7154,
'31/2-O-22',
'31/2-O-22 Y5H',
'TROLL',
'054 ',
'DEVELOPMENT',
'Statoil Petroleum AS',
'YES',
'WEST VENTURE ',
'TROLL O2',
'9999-12-31',
'9999-12-31',
NULL,
NULL,
0,
'PRODUCTION',
338.000000,
'http://factpages.npd.no/FactPages/Default.aspx?nav1=wellbore'+'@'+'nav2=PageView|Development|All'+'@'+'nav3=7154',
'http://www.npd.no/FactMapSearch?NPDID_wellbore=7154',
'NO');
INSERT INTO wlbPoint VALUES
(7155,
'31/2-O-24',
'31/2-O-24 Y1H',
'TROLL',
'054 ',
'DEVELOPMENT',
'Statoil Petroleum AS',
'YES',
'WEST VENTURE ',
'TROLL O2',
'2013-04-28',
'2013-05-03',
NULL,
'SUSPENDED',
0,
'PRODUCTION',
338.000000,
'http://factpages.npd.no/FactPages/Default.aspx?nav1=wellbore'+'@'+'nav2=PageView|Development|All'+'@'+'nav3=7155',
'http://www.npd.no/FactMapSearch?NPDID_wellbore=7155',
'NO');
INSERT INTO wlbPoint VALUES
(7156,
'6406/6-3',
'6406/6-3',
NULL,
'511 ',
'EXPLORATION',
'Wintershall Norge AS',
'NO',
'TRANSOCEAN ARCTIC',
NULL,
'2013-04-14',
'9999-12-31',
NULL,
NULL,
0,
'WILDCAT',
243.000000,
'http://factpages.npd.no/FactPages/Default.aspx?nav1=wellbore'+'@'+'nav2=PageView|Exploration|All'+'@'+'nav3=7156',
'http://www.npd.no/FactMapSearch?NPDID_wellbore=7156',
'NO');
INSERT INTO wlbPoint VALUES
(7157,
'31/2-K-22',
'31/2-K-22 BY1H',
'TROLL',
'054 ',
'DEVELOPMENT',
'Statoil Petroleum AS',
'YES',
'COSLInnovator',
'TROLL K2',
'2013-03-21',
'2013-03-30',
'OIL',
'SUSP.AT TD',
50,
'PRODUCTION',
317.400000,
'http://factpages.npd.no/FactPages/Default.aspx?nav1=wellbore'+'@'+'nav2=PageView|Development|All'+'@'+'nav3=7157',
'http://www.npd.no/FactMapSearch?NPDID_wellbore=7157',
'NO');
INSERT INTO wlbPoint VALUES
(7158,
'31/2-K-22',
'31/2-K-22 BY2H',
'TROLL',
'054 ',
'DEVELOPMENT',
'Statoil Petroleum AS',
'YES',
'COSLInnovator',
'TROLL K2',
'2013-04-04',
'2013-04-10',
'OIL',
'SUSP.AT TD',
50,
'PRODUCTION',
317.400000,
'http://factpages.npd.no/FactPages/Default.aspx?nav1=wellbore'+'@'+'nav2=PageView|Development|All'+'@'+'nav3=7158',
'http://www.npd.no/FactMapSearch?NPDID_wellbore=7158',
'NO');
INSERT INTO wlbPoint VALUES
(7159,
'6407/1-A-2',
'6407/1-A-2 AY2H',
'TYRIHANS',
'073 ',
'DEVELOPMENT',
'Statoil Petroleum AS',
'YES',
'TRANSOCEAN LEADER',
'TYRIHANS A',
'2013-03-29',
'2013-04-14',
'OIL',
'SUSP.AT TD',
50,
'PRODUCTION',
288.100000,
'http://factpages.npd.no/FactPages/Default.aspx?nav1=wellbore'+'@'+'nav2=PageView|Development|All'+'@'+'nav3=7159',
'http://www.npd.no/FactMapSearch?NPDID_wellbore=7159',
'NO');
INSERT INTO wlbPoint VALUES
(7160,
'34/7-H-2',
'34/7-H-2 AH',
'VIGDIS',
'089 ',
'DEVELOPMENT',
'Statoil Petroleum AS',
'NO',
'BIDEFORD DOLPHIN',
'VIGDIS H',
'2013-05-05',
'9999-12-31',
NULL,
NULL,
99,
'OBSERVATION',
292.000000,
'http://factpages.npd.no/FactPages/Default.aspx?nav1=wellbore'+'@'+'nav2=PageView|Development|All'+'@'+'nav3=7160',
'http://www.npd.no/FactMapSearch?NPDID_wellbore=7160',
'NO');
INSERT INTO wlbPoint VALUES
(7161,
'34/7-H-2',
'34/7-H-2 BH',
'VIGDIS',
'089 ',
'DEVELOPMENT',
'Statoil Petroleum AS',
'NO',
'BIDEFORD DOLPHIN',
'VIGDIS H',
'9999-12-31',
'9999-12-31',
NULL,
NULL,
0,
'INJECTION',
292.000000,
'http://factpages.npd.no/FactPages/Default.aspx?nav1=wellbore'+'@'+'nav2=PageView|Development|All'+'@'+'nav3=7161',
'http://www.npd.no/FactMapSearch?NPDID_wellbore=7161',
'NO');
INSERT INTO wlbPoint VALUES
(7162,
'31/2-L-24',
'31/2-L-24 BY1H',
'TROLL',
'054 ',
'DEVELOPMENT',
'Statoil Petroleum AS',
'YES',
'STENA DON',
'TROLL L2',
'2013-04-11',
'9999-12-31',
NULL,
NULL,
0,
'PRODUCTION',
329.400000,
'http://factpages.npd.no/FactPages/Default.aspx?nav1=wellbore'+'@'+'nav2=PageView|Development|All'+'@'+'nav3=7162',
'http://www.npd.no/FactMapSearch?NPDID_wellbore=7162',
'NO');
INSERT INTO wlbPoint VALUES
(7163,
'31/2-L-24',
'31/2-L-24 BY2H',
'TROLL',
'054 ',
'DEVELOPMENT',
'Statoil Petroleum AS',
'YES',
'STENA DON',
'TROLL L2',
'9999-12-31',
'9999-12-31',
NULL,
NULL,
0,
'PRODUCTION',
329.400000,
'http://factpages.npd.no/FactPages/Default.aspx?nav1=wellbore'+'@'+'nav2=PageView|Development|All'+'@'+'nav3=7163',
'http://www.npd.no/FactMapSearch?NPDID_wellbore=7163',
'NO');
INSERT INTO wlbPoint VALUES
(7164,
'31/2-L-24',
'31/2-L-24 BY3H',
'TROLL',
'054 ',
'DEVELOPMENT',
'Statoil Petroleum AS',
'YES',
'STENA DON',
'TROLL L2',
'9999-12-31',
'9999-12-31',
NULL,
NULL,
0,
'PRODUCTION',
329.400000,
'http://factpages.npd.no/FactPages/Default.aspx?nav1=wellbore'+'@'+'nav2=PageView|Development|All'+'@'+'nav3=7164',
'http://www.npd.no/FactMapSearch?NPDID_wellbore=7164',
'NO');
INSERT INTO wlbPoint VALUES
(7165,
'35/11-R-14',
'35/11-R-14 BH',
'VEGA',
'090 C',
'DEVELOPMENT',
'Statoil Petroleum AS',
'NO',
'BORGLAND DOLPHIN',
'VEGA SØR',
'9999-12-31',
'9999-12-31',
NULL,
NULL,
0,
'PRODUCTION',
368.000000,
'http://factpages.npd.no/FactPages/Default.aspx?nav1=wellbore'+'@'+'nav2=PageView|Development|All'+'@'+'nav3=7165',
'http://www.npd.no/FactMapSearch?NPDID_wellbore=7165',
'NO');
INSERT INTO wlbPoint VALUES
(7166,
'7220/5-2',
'7220/5-2',
NULL,
'532 ',
'EXPLORATION',
'Statoil Petroleum AS',
'NO',
'WEST HERCULES',
NULL,
'9999-12-31',
'9999-12-31',
NULL,
NULL,
0,
'WILDCAT',
398.000000,
'http://factpages.npd.no/FactPages/Default.aspx?nav1=wellbore'+'@'+'nav2=PageView|Exploration|All'+'@'+'nav3=7166',
'http://www.npd.no/FactMapSearch?NPDID_wellbore=7166',
'NO');
INSERT INTO wlbPoint VALUES
(7167,
'6407/7-A-20',
'6407/7-A-20 H',
'NJORD',
'107 ',
'DEVELOPMENT',
'Statoil Petroleum AS',
'NO',
'NJORD A',
'NJORD A',
'9999-12-31',
'9999-12-31',
NULL,
NULL,
0,
'PRODUCTION',
330.000000,
'http://factpages.npd.no/FactPages/Default.aspx?nav1=wellbore'+'@'+'nav2=PageView|Development|All'+'@'+'nav3=7167',
'http://www.npd.no/FactMapSearch?NPDID_wellbore=7167',
'NO');
INSERT INTO wlbPoint VALUES
(7168,
'6407/7-A-20',
'6407/7-A-20 AY2H',
'NJORD',
'107 ',
'DEVELOPMENT',
'StatoilHydro Petroleum AS',
'YES',
'NJORD A',
'NJORD A',
'9999-12-31',
'9999-12-31',
NULL,
NULL,
0,
'PRODUCTION',
330.000000,
'http://factpages.npd.no/FactPages/Default.aspx?nav1=wellbore'+'@'+'nav2=PageView|Development|All'+'@'+'nav3=7168',
'http://www.npd.no/FactMapSearch?NPDID_wellbore=7168',
'NO');
INSERT INTO wlbPoint VALUES
(7169,
'16/2-21',
'16/2-21',
NULL,
'501 ',
'EXPLORATION',
'Lundin Norway AS',
'NO',
'BREDFORD DOLPHIN',
NULL,
'2013-05-05',
'9999-12-31',
NULL,
NULL,
0,
'APPRAISAL',
112.000000,
'http://factpages.npd.no/FactPages/Default.aspx?nav1=wellbore'+'@'+'nav2=PageView|Exploration|All'+'@'+'nav3=7169',
'http://www.npd.no/FactMapSearch?NPDID_wellbore=7169',
'NO');
INSERT INTO wlbPoint VALUES
(7170,
'31/2-X-21',
'31/2-X-21 AY1H',
'TROLL',
'054 ',
'DEVELOPMENT',
'Statoil Petroleum AS',
'YES',
'COSLInnovator',
'TROLL T2',
'9999-12-31',
'9999-12-31',
NULL,
NULL,
0,
'PRODUCTION',
327.900000,
'http://factpages.npd.no/FactPages/Default.aspx?nav1=wellbore'+'@'+'nav2=PageView|Development|All'+'@'+'nav3=7170',
'http://www.npd.no/FactMapSearch?NPDID_wellbore=7170',
'NO');
INSERT INTO wlbPoint VALUES
(7171,
'31/2-X-21',
'31/2-X-21 AY2H',
'TROLL',
'054 ',
'DEVELOPMENT',
'Statoil Petroleum AS',
'YES',
'COSLInnovator',
'TROLL T2',
'9999-12-31',
'9999-12-31',
NULL,
NULL,
0,
'PRODUCTION',
327.900000,
'http://factpages.npd.no/FactPages/Default.aspx?nav1=wellbore'+'@'+'nav2=PageView|Development|All'+'@'+'nav3=7171',
'http://www.npd.no/FactMapSearch?NPDID_wellbore=7171',
'NO');
INSERT INTO wlbPoint VALUES
(7172,
'34/10-B-14',
'34/10-B-14 B',
'GULLFAKS',
'050 ',
'DEVELOPMENT',
'Statoil Petroleum AS',
'NO',
'GULLFAKS B',
'GULLFAKS B',
'9999-12-31',
'9999-12-31',
NULL,
NULL,
0,
'INJECTION',
142.600000,
'http://factpages.npd.no/FactPages/Default.aspx?nav1=wellbore'+'@'+'nav2=PageView|Development|All'+'@'+'nav3=7172',
'http://www.npd.no/FactMapSearch?NPDID_wellbore=7172',
'NO');
INSERT INTO wlbPoint VALUES
(7173,
'6407/7-A-20',
'6407/7-A-20 AY1H',
'NJORD',
'107 ',
'DEVELOPMENT',
'Statoil Petroleum AS',
'YES',
'NJORD A',
'NJORD A',
'9999-12-31',
'9999-12-31',
NULL,
NULL,
0,
'PRODUCTION',
330.000000,
'http://factpages.npd.no/FactPages/Default.aspx?nav1=wellbore'+'@'+'nav2=PageView|Development|All'+'@'+'nav3=7173',
'http://www.npd.no/FactMapSearch?NPDID_wellbore=7173',
'NO');
INSERT INTO wlbPoint VALUES
(7174,
'6608/10-P-1',
'6608/10-P-1 AH',
'SKULD',
'128 ',
'DEVELOPMENT',
'Statoil Petroleum AS',
'NO',
'DEEPSEA BERGEN',
'FOSSEKALL P',
'9999-12-31',
'9999-12-31',
NULL,
NULL,
0,
'PRODUCTION',
358.000000,
'http://factpages.npd.no/FactPages/Default.aspx?nav1=wellbore'+'@'+'nav2=PageView|Development|All'+'@'+'nav3=7174',
'http://www.npd.no/FactMapSearch?NPDID_wellbore=7174',
'NO');
INSERT INTO wlbPoint VALUES
(7175,
'16/2-17',
'16/2-17 B',
NULL,
'265 ',
'EXPLORATION',
'Statoil Petroleum AS',
'NO',
'OCEAN VANGUARD',
NULL,
'9999-12-31',
'9999-12-31',
NULL,
NULL,
0,
'APPRAISAL',
111.000000,
'http://factpages.npd.no/FactPages/Default.aspx?nav1=wellbore'+'@'+'nav2=PageView|Exploration|All'+'@'+'nav3=7175',
'http://www.npd.no/FactMapSearch?NPDID_wellbore=7175',
'NO');
INSERT INTO wlbPoint VALUES
(7176,
'34/8-V-1',
'34/8-V-1 H',
'VISUND SØR',
'120 ',
'DEVELOPMENT',
'Statoil Petroleum AS',
'NO',
'SCARABEO 5',
'VISUND SØR',
'9999-12-31',
'9999-12-31',
NULL,
NULL,
0,
'PRODUCTION',
291.000000,
'http://factpages.npd.no/FactPages/Default.aspx?nav1=wellbore'+'@'+'nav2=PageView|Development|All'+'@'+'nav3=7176',
'http://www.npd.no/FactMapSearch?NPDID_wellbore=7176',
'NO');
INSERT INTO wlbPoint VALUES
(7177,
'34/8-V-2',
'34/8-V-2 H',
'VISUND SØR',
'120 ',
'DEVELOPMENT',
'Statoil Petroleum AS',
'NO',
'SCARABEO 5',
'VISUND SØR',
'9999-12-31',
'9999-12-31',
NULL,
NULL,
99,
'OBSERVATION',
291.000000,
'http://factpages.npd.no/FactPages/Default.aspx?nav1=wellbore'+'@'+'nav2=PageView|Development|All'+'@'+'nav3=7177',
'http://www.npd.no/FactMapSearch?NPDID_wellbore=7177',
'NO');
INSERT INTO wlbPoint VALUES
(7178,
'34/8-V-2',
'34/8-V-2 AH',
'VISUND SØR',
'120 ',
'DEVELOPMENT',
'Statoil Petroleum AS',
'NO',
'SCARABEO 5',
'VISUND SØR',
'9999-12-31',
'9999-12-31',
NULL,
NULL,
0,
'PRODUCTION',
291.000000,
'http://factpages.npd.no/FactPages/Default.aspx?nav1=wellbore'+'@'+'nav2=PageView|Development|All'+'@'+'nav3=7178',
'http://www.npd.no/FactMapSearch?NPDID_wellbore=7178',
'NO');
INSERT INTO wlbPoint VALUES
(7179,
'25/11-27',
'25/11-27',
NULL,
'169 ',
'EXPLORATION',
'Statoil Petroleum AS',
'NO',
'SONGA TRYM',
NULL,
'2013-05-06',
'9999-12-31',
NULL,
NULL,
0,
'WILDCAT',
126.000000,
'http://factpages.npd.no/FactPages/Default.aspx?nav1=wellbore'+'@'+'nav2=PageView|Exploration|All'+'@'+'nav3=7179',
'http://www.npd.no/FactMapSearch?NPDID_wellbore=7179',
'NO');
INSERT INTO wlbPoint VALUES
(7180,
'2/1-16',
'2/1-16 S',
NULL,
'299 ',
'EXPLORATION',
'Talisman Energy Norge AS',
'NO',
'MÆRSK GIANT',
NULL,
'9999-12-31',
'9999-12-31',
NULL,
NULL,
0,
'WILDCAT',
67.000000,
'http://factpages.npd.no/FactPages/Default.aspx?nav1=wellbore'+'@'+'nav2=PageView|Exploration|All'+'@'+'nav3=7180',
'http://www.npd.no/FactMapSearch?NPDID_wellbore=7180',
'NO');
INSERT INTO wlbPoint VALUES
(7181,
'16/2-20',
'16/2-20',
NULL,
'501 ',
'EXPLORATION',
'Lundin Norway AS',
'NO',
'ISLAND INNOVATOR',
NULL,
'9999-12-31',
'9999-12-31',
NULL,
NULL,
0,
'WILDCAT',
109.500000,
'http://factpages.npd.no/FactPages/Default.aspx?nav1=wellbore'+'@'+'nav2=PageView|Exploration|All'+'@'+'nav3=7181',
'http://www.npd.no/FactMapSearch?NPDID_wellbore=7181',
'NO');
INSERT INTO wlbPoint VALUES
(7182,
'16/3-6',
'16/3-6',
NULL,
'501 ',
'EXPLORATION',
'Lundin Norway AS',
'NO',
'BREDFORD DOLPHIN',
NULL,
'9999-12-31',
'9999-12-31',
NULL,
NULL,
0,
'APPRAISAL',
117.000000,
'http://factpages.npd.no/FactPages/Default.aspx?nav1=wellbore'+'@'+'nav2=PageView|Exploration|All'+'@'+'nav3=7182',
'http://www.npd.no/FactMapSearch?NPDID_wellbore=7182',
'NO');
INSERT INTO wlbPoint VALUES
(7183,
'34/10-A-20',
'34/10-A-20 B',
'GULLFAKS',
'050 ',
'DEVELOPMENT',
'Statoil Petroleum AS',
'NO',
'GULLFAKS A',
'GULLFAKS A',
'9999-12-31',
'9999-12-31',
NULL,
NULL,
99,
'OBSERVATION',
134.300000,
'http://factpages.npd.no/FactPages/Default.aspx?nav1=wellbore'+'@'+'nav2=PageView|Development|All'+'@'+'nav3=7183',
'http://www.npd.no/FactMapSearch?NPDID_wellbore=7183',
'NO');
INSERT INTO wlbPoint VALUES
(7184,
'34/10-A-20',
'34/10-A-20 C',
'GULLFAKS',
'050 ',
'DEVELOPMENT',
'Statoil Petroleum AS',
'NO',
'GULLFAKS A',
'GULLFAKS A',
'9999-12-31',
'9999-12-31',
NULL,
NULL,
0,
'INJECTION',
134.300000,
'http://factpages.npd.no/FactPages/Default.aspx?nav1=wellbore'+'@'+'nav2=PageView|Development|All'+'@'+'nav3=7184',
'http://www.npd.no/FactMapSearch?NPDID_wellbore=7184',
'NO');
INSERT INTO wlbPoint VALUES
(7185,
'31/3-U-1',
'31/3-U-1',
NULL,
'551 ',
'SHALLOW',
'Tullow Oil Norge AS',
'NO',
'TRANSOCEAN BARENTS',
NULL,
'9999-12-31',
'9999-12-31',
NULL,
NULL,
0,
NULL,
348.000000,
'http://factpages.npd.no/FactPages/default.aspx?nav1=wellbore'+'@'+'nav2=PageView|Shallow'+'@'+'nav3=7185',
NULL,
'NO');
INSERT INTO wlbPoint VALUES
(7186,
'25/11-G-37',
'25/11-G-37 A',
'GRANE',
'169 B1',
'DEVELOPMENT',
'Statoil Petroleum AS',
'NO',
'GRANE',
'GRANE',
'9999-12-31',
'9999-12-31',
NULL,
NULL,
99,
'OBSERVATION',
127.500000,
'http://factpages.npd.no/FactPages/Default.aspx?nav1=wellbore'+'@'+'nav2=PageView|Development|All'+'@'+'nav3=7186',
'http://www.npd.no/FactMapSearch?NPDID_wellbore=7186',
'NO');
INSERT INTO wlbPoint VALUES
(7187,
'25/11-G-37',
'25/11-G-37 B',
'GRANE',
'169 B1',
'DEVELOPMENT',
'Statoil Petroleum AS',
'NO',
'GRANE',
'GRANE',
'9999-12-31',
'9999-12-31',
NULL,
NULL,
99,
'OBSERVATION',
127.500000,
'http://factpages.npd.no/FactPages/Default.aspx?nav1=wellbore'+'@'+'nav2=PageView|Development|All'+'@'+'nav3=7187',
'http://www.npd.no/FactMapSearch?NPDID_wellbore=7187',
'NO');
INSERT INTO wlbPoint VALUES
(7188,
'25/11-G-37',
'25/11-G-37 CY1',
'GRANE',
'169 B1',
'DEVELOPMENT',
'Statoil Petroleum AS',
'YES',
'GRANE',
'GRANE',
'9999-12-31',
'9999-12-31',
NULL,
NULL,
0,
'PRODUCTION',
127.500000,
'http://factpages.npd.no/FactPages/Default.aspx?nav1=wellbore'+'@'+'nav2=PageView|Development|All'+'@'+'nav3=7188',
'http://www.npd.no/FactMapSearch?NPDID_wellbore=7188',
'NO');
INSERT INTO wlbPoint VALUES
(7189,
'25/11-G-37',
'25/11-G-37 CY2',
'GRANE',
'169 B1',
'DEVELOPMENT',
'Statoil Petroleum AS',
'YES',
'GRANE',
'GRANE',
'9999-12-31',
'9999-12-31',
NULL,
NULL,
0,
'PRODUCTION',
127.500000,
'http://factpages.npd.no/FactPages/Default.aspx?nav1=wellbore'+'@'+'nav2=PageView|Development|All'+'@'+'nav3=7189',
'http://www.npd.no/FactMapSearch?NPDID_wellbore=7189',
'NO');
INSERT INTO wlbPoint VALUES
(7190,
'34/10-D-2',
'34/10-D-2 AH',
'GULLFAKS SØR',
'050 ',
'DEVELOPMENT',
'Statoil Petroleum AS',
'NO',
'DEEPSEA ATLANTIC',
'GULLFAKS SØR D',
'9999-12-31',
'9999-12-31',
NULL,
NULL,
0,
'PRODUCTION',
134.000000,
'http://factpages.npd.no/FactPages/Default.aspx?nav1=wellbore'+'@'+'nav2=PageView|Development|All'+'@'+'nav3=7190',
'http://www.npd.no/FactMapSearch?NPDID_wellbore=7190',
'NO');
INSERT INTO wlbPoint VALUES
(7191,
'6407/9-E-4',
'6407/9-E-4 H',
'DRAUGEN',
'093 ',
'DEVELOPMENT',
'A/S Norske Shell',
'NO',
'WEST NAVIGATOR',
'DRAUGEN E',
'9999-12-31',
'9999-12-31',
NULL,
NULL,
0,
'PRODUCTION',
296.000000,
'http://factpages.npd.no/FactPages/Default.aspx?nav1=wellbore'+'@'+'nav2=PageView|Development|All'+'@'+'nav3=7191',
'http://www.npd.no/FactMapSearch?NPDID_wellbore=7191',
'NO');
INSERT INTO wlbPoint VALUES
(7192,
'6608/2-1',
'6608/2-1 S',
NULL,
'330 ',
'EXPLORATION',
'RWE Dea Norge AS',
'NO',
'TRANSOCEAN WINNER',
NULL,
'9999-12-31',
'9999-12-31',
NULL,
NULL,
0,
'WILDCAT',
303.000000,
'http://factpages.npd.no/FactPages/Default.aspx?nav1=wellbore'+'@'+'nav2=PageView|Exploration|All'+'@'+'nav3=7192',
'http://www.npd.no/FactMapSearch?NPDID_wellbore=7192',
'NO');
|
USE employeesDB;
INSERT INTO department
(name)
VALUES
("Sales");
INSERT INTO department
(name)
VALUES
("Engineering");
INSERT INTO department
(name)
VALUES
("Finance");
INSERT INTO department
(name)
VALUES
("Legal");
INSERT INTO role
(title, salary, department_id)
VALUES
("Sales Lead", 100000, 1);
INSERT INTO role
(title, salary, department_id)
VALUES
("Salesperson", 80000, 1);
INSERT INTO role
(title, salary, department_id)
VALUES
("Lead Engineer", 150000, 2);
INSERT INTO role
(title, salary, department_id)
VALUES
("Software Engineer", 120000, 2);
INSERT INTO role
(title, salary, department_id)
VALUES
("Account Manager", 150000, 3);
INSERT INTO role
(title, salary, department_id)
VALUES
("Accountant", 125000, 3);
INSERT INTO role
(title, salary, department_id)
VALUES
("Legal Team Lead", 250000, 4);
INSERT INTO employee
(first_name, last_name, role_id, manager_id)
VALUES
("Stephen", "Bodie", 1, null);
INSERT INTO employee
(first_name, last_name, role_id, manager_id)
VALUES
("Simon", "Kraus", 1, 1);
INSERT INTO employee
(first_name, last_name, role_id, manager_id)
VALUES
("Heather", "Newlin", 2, 2);
INSERT INTO employee
(first_name, last_name, role_id, manager_id)
VALUES
("Caleb", "Chaney", 3, null);
INSERT INTO employee
(first_name, last_name, role_id, manager_id)
VALUES
("Andrea", "Boyd", 4, 4);
INSERT INTO employee
(first_name, last_name, role_id, manager_id)
VALUES
("Chad", "Tarpey", 5, null);
INSERT INTO employee
(first_name, last_name, role_id, manager_id)
VALUES
("Allister", "Rampenthal", 6, 6);
INSERT INTO employee
(first_name, last_name, role_id, manager_id)
VALUES
("Zak", "Monnet", 7, null);
|
alter table list
add column sizeChoice integer;
alter table list_item
add column rank integer;
alter table list_item
add column is_chosen boolean;
|
CREATE TABLE year_statistics
(id_month INT PRIMARY KEY AUTO_INCREMENT NOT NULL,
month_name VARCHAR(10) UNIQUE NOT NULL,
amount_of_orders INT NOT NULL, # total amount of orders per month
couriers_shifts_per_month INT NOT NULL, # number of the shifts in total for all the courier per month
average_check FLOAT NOT NULL); # average check for 1 customer in the current month
INSERT INTO year_statistics VALUES
(NULL,'January', 350, 120, 24.6),
(NULL,'February', 211, 88, 18.0),
(NULL,'March', 298, 101, 23.5),
(NULL,'April', 312, 105, 22.0),
(NULL,'May', 405, 121, 22.3),
(NULL,'June', 401, 121, 16.9),
(NULL,'July', 346, 118, 17.9),
(NULL,'August', 318, 117, 20.02),
(NULL,'September', 377, 115, 21.5),
(NULL,'October', 385, 119, 22.1),
(NULL,'November', 381, 120, 23.6),
(NULL,'December', 429, 121, 24.56);
|
SELECT NULL AS TABLE_CAT,
n.nspname AS TABLE_SCHEM,
ct.relname AS TABLE_NAME,
a.attname AS COLUMN_NAME,
(i.keys).n AS KEY_SEQ,
ci.relname AS PK_NAME
FROM pg_catalog.pg_class ct
JOIN pg_catalog.pg_attribute a ON (ct.oid = a.attrelid)
JOIN pg_catalog.pg_namespace n ON (ct.relnamespace = n.oid)
JOIN (SELECT i.indexrelid,
i.indrelid,
i.indisprimary,
information_schema._pg_expandarray(i.indkey) AS keys
FROM pg_catalog.pg_index i) i ON (a.attnum = (i.keys).x AND a.attrelid = i.indrelid)
JOIN pg_catalog.pg_class ci ON (ci.oid = i.indexrelid)
WHERE true AND ct.relname = 'j' AND i.indisprimary
ORDER BY table_name, pk_name, key_seq
|
INSERT INTO igualas(id,nombre, slim_duracion, med_duracion, plus_duracion, slim, med, plus) VALUES
(1,'empresariales', 3, 7, 10, 24000, 35000, 55000),
(2,'estudiantiles', 3, 7, 10, 3000, 5000, 9500),
(3,'mipymes', 3, 7, 10, 9000, 14000, 25000),
(4,'abogados', 3, 7, 10, 24000, 35000, 55000),
(5,'familias', 3, 7, 10, 24000, 35000, 55000)
;
|
-- CS 61A Fall 2014
-- Name: Ganesh Prasad Rapolu
-- Login: cs61a-yp
create table parents as
select "abraham" as parent, "barack" as child union
select "abraham" , "clinton" union
select "delano" , "herbert" union
select "fillmore" , "abraham" union
select "fillmore" , "delano" union
select "fillmore" , "grover" union
select "eisenhower" , "fillmore";
create table dogs as
select "abraham" as name, "long" as fur, 26 as height union
select "barack" , "short" , 52 union
select "clinton" , "long" , 47 union
select "delano" , "long" , 46 union
select "eisenhower" , "short" , 35 union
select "fillmore" , "curly" , 32 union
select "grover" , "short" , 28 union
select "herbert" , "curly" , 31;
create table sizes as
select "toy" as size, 24 as min, 28 as max union
select "mini", 28, 35 union
select "medium", 35, 45 union
select "standard", 45, 60;
-------------------------------------------------------------
-- PLEASE DO NOT CHANGE ANY SQL STATEMENTS ABOVE THIS LINE --
-------------------------------------------------------------
create table dog_sizes as
select name, size from dogs, sizes where min < height and height <= max;
-- The names of all "toy" and "mini" dogs
select name from dog_sizes where
size in ("toy", "mini");
-- Expected output:
-- abraham
-- eisenhower
-- fillmore
-- grover
-- herbert
-- All dogs with parents ordered by decreasing height of their parent
select child from dogs, parents where parents.parent = dogs.name order by height desc;
-- Expected output:
-- herbert
-- fillmore
-- abraham
-- delano
-- grover
-- barack
-- clinton
-- Sentences about siblings that are the same size
with collection as (
select dog_sizes.*, parent from dog_sizes, parents where dog_sizes.name = parents.child)
select printf('%s and %s are %s siblings', A.name, B.name, A.size) from collection as A, collection as B where A.name < B.name and A.parent = B.parent and A.size = B.size;
-- Expected output:
-- barack and clinton are standard siblings
-- abraham and grover are toy siblings
-- Ways to stack 4 dogs to a height of at least 170, ordered by total height
select printf("%s, %s, %s, %s", A.name, B.name, C.name, D.name), A.height + B.height + C.height + D.height as total
from dogs as A, dogs as B, dogs as C, dogs as D where
total >= 170 and A.name < B.name and B.name < C.name and C.name < D.name
order by total;
-- Expected output:
-- abraham, delano, clinton, barack|171
-- grover, delano, clinton, barack|173
-- herbert, delano, clinton, barack|176
-- fillmore, delano, clinton, barack|177
-- eisenhower, delano, clinton, barack|180
|
UPDATE Boek
SET isbn=9789024532080,
WHERE isbn=9789024532070;
SELECT * FROM Boek;
|
-- drop database itcast;
create database itcast default character set utf8;
use itcast;
create table it_user_info(
ui_user_id bigint unsigned auto_increment comment '用户ID',
ui_name varchar(64) not null comment '用户名',
ui_passwd varchar(128) not null comment '密码',
ui_age int unsigned null comment '年龄',
ui_mobile char(11) not null comment '手机号',
ui_avatar varchar(128) null comment '头像',
ui_ctime datetime not null default current_timestamp comment '创建时间',
ui_utime datetime not null default current_timestamp on update current_timestamp comment '更新时间',
primary key (ui_user_id),
unique (ui_mobile)
) engine=InnoDB default charset=utf8 comment '用户表';
insert it_user_info () valuse();
create table it_house_info(
hi_house_id bigint unsigned auto_increment comment '房屋id',
hi_user_id bigint unsigned not null comment '用户ID',
hi_name varchar(64) not null comment '房屋名',
hi_address varchar(256) not null comment '地址',
hi_price int unsigned not null comment '价格',
hi_ctime datetime not null default current_timestamp comment '创建时间',
hi_utime datetime not null default current_timestamp on update current_timestamp comment '更新时间',
primary key (hi_house_id),
constraint foreign key (hi_user_id) references it_user_info(ui_user_id)
) engine=InnoDB default charset=utf8 comment='房屋信息表';
create table it_house_image(
hi_image_id bigint unsigned auto_increment comment '房屋id',
hi_house_id bigint unsigned comment '房屋id',
hi_url varchar(128) not null comment '图片url',
hi_ctime datetime not null default current_timestamp comment '创建时间',
hi_utime datetime not null default current_timestamp on update current_timestamp comment '更新时间',
primary key (hi_image_id),
constraint foreign key (hi_house_id) references it_house_info(hi_house_id)
) engine=InnoDB default charset=utf8 comment='房屋图片';
group by : 的字段, 前后都必须有
使用聚合.
mysql> select ui_name, ui_age, count(*) as num from it_user_info group by ui_age;
ERROR 1055 (42000): Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'itcast.it_user_info.ui_name' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by
mysql> select ui_age, count(*) as num from it_user_info group by ui_age;
+--------+-----+
| ui_age | num |
+--------+-----+
| 22 | 3 |
| 24 | 3 |
+--------+-----+
2 rows in set (0.00 sec)
聚合
mysql> select max(ui_name), ui_age, count(*) as num from it_user_info group by ui_age;
+--------------+--------+-----+
| max(ui_name) | ui_age | num |
+--------------+--------+-----+
| tp3 | 22 | 3 |
| hyh3 | 24 | 3 |
+--------------+--------+-----+
2 rows in set (0.00 sec)
联合 和 嵌套
嵌套: 子查询的结果会放到临时表, 父查询的对象是在临时表中。
2次查询
联合: 先把两个表的字段结合在一起,查询一次, 查询的过程中进行过滤。
能使用的联合就一定使用联合.
|
SELECT USER_ID AS keeperId,USER_CNAME AS CName,USER_ENAME AS Ename,
year(LEND_DATE) AS BorrowYear,COUNT(YEAR(LEND_DATE)) AS BorrowCnt
FROM dbo.MEMBER_M
LEFT JOIN dbo.BOOK_LEND_RECORD
ON dbo.MEMBER_M.USER_ID = dbo.BOOK_LEND_RECORD.KEEPER_ID
GROUP BY USER_ID,USER_CNAME,USER_ENAME,year(LEND_DATE)
ORDER BY USER_ID, year(LEND_DATE) ASC;
|
# Write your MySQL query statement below
# Calculate the change in the global rankings after updating each team's points.
## Calculate ranks before and after the changes
with ranks as
(select
T.team_id,
T.name,
rank() over (order by points desc, name) as rank_old,
rank() over (order by points + points_change desc, name) as rank_new
from TeamPoints T
join PointsChange P using (team_id))
## Report rank_diff
select
team_id,
name,
(cast(rank_old as signed) - cast(rank_new as signed)) as rank_diff
from ranks
|
create table award_funding_propoals_bk
as
select * from award_funding_proposals
where award_id in ('106012','104880');
select * from award_funding_propoals_bk;
Update Award_Funding_Proposals
Set Proposal_ID = 5642
Where Award_ID = 104880 ;
select *
from Award_Funding_Proposals
Where Award_ID = 104880 ;
--insert into award_funding_proposals_bk
select *
from Award_Funding_Proposals
where Proposal_ID = 5642;
Update Award_Funding_Proposals
Set Proposal_ID = 5642
Where Award_ID = 104880 ;
delete from award_funding_proposals where award_id = '106012';
select lead_unit_number,award_number,award_id,update_user,sequence_number from award where award_id in ('106012','104880');
|
--
-- @(#) dbcreate/cffbpfl/mysql/crsp_create_fbpfl.mysql
--
-- net.sourceforge.MssCF.CFFBPfl
--
-- Copyright (c) 2018 Mark Stephen Sobkow
--
-- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License.
-- You may obtain a copy of the License at
--
-- http://www.apache.org/licenses/LICENSE-2.0
--
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS,
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
-- Manufactured by MSS Code Factory 2.10
--
delimiter ////
create procedure cffbpf211.sp_create_fbpfl(
argAuditClusterId bigint,
argAuditUserId varchar(36),
argAuditSessionId varchar(36),
secClusterId bigint,
secTenantId bigint,
argClassCode varchar(4),
argTenantId bigint,
argDescription varchar(50),
argImpStart timestamp,
argImpDone timestamp )
not deterministic
modifies sql data
begin
declare permissionFlag boolean;
declare isSystemUser boolean;
declare argFBPflId bigint;
if( argClassCode = 'FBPF' )
then
select cffbpf211.sp_is_tenant_user( argTenantId,
'CreateFBPfl',
argAuditUserId ),
cffbpf211.sp_is_system_user( argAuditUserId )
into permissionFlag, isSystemUser;
if( ( permissionFlag = false ) and ( isSystemUser = false ) )
then
signal sqlstate '45003'
set message_text = 'sp_create_fbpfl() Permission denied, not granted CreateFBPfl access to current Tenant',
schema_name = 'cffbpf211',
table_name = 'FBPfl';
end if;
end if;
select cffbpf211.sp_next_fbpflidgen( argTenantId )
into argFBPflId;
insert into cffbpf211.FBPfl(
createdby,
createdat,
updatedby,
updatedat,
tenantid,
fbpflid,
description,
impstart,
impdone,
revision )
values (
argAuditUserId,
now(),
argAuditUserId,
now(),
argTenantId,
argFBPflId,
argDescription,
argImpStart,
argImpDone,
1 );
insert into cffbpf211.FBPfl_h (
tenantid,
fbpflid,
auditclusterid,
auditsessionid,
auditstamp,
description,
impstart,
impdone,
revision,
auditaction )
select
fbpf.tenantid,
fbpf.fbpflid,
argAuditClusterId,
argAuditSessionId,
now(),
fbpf.description,
fbpf.impstart,
fbpf.impdone,
fbpf.revision,
1
from cffbpf211.FBPfl as fbpf
where
fbpf.tenantid = argTenantId
and fbpf.fbpflid = argFBPflId;
select
date_format( fbpf.createdat, '%Y-%m-%d %H:%i:%S' ) as createdat,
fbpf.createdby as createdby,
date_format( fbpf.updatedat, '%Y-%m-%d %H:%i:%S' ) as updatedat,
fbpf.updatedby as updatedby,
fbpf.tenantid as tenantid,
fbpf.fbpflid as fbpflid,
fbpf.description as description,
date_format( fbpf.impstart, '%Y-%m-%d %H:%i:%S' ) as impstart,
date_format( fbpf.impdone, '%Y-%m-%d %H:%i:%S' ) as impdone,
fbpf.revision as revision
from cffbpf211.FBPfl as fbpf
where
fbpf.tenantid = argTenantId
and fbpf.fbpflid = argFBPflId;
end;////
|
/*
# Upload https://bit.ly/state-names-unpartitioned (state-names-unpartitioned.zip) into S3 lesson-exercises-fname-lname bucket
# Upload https://bit.ly/state-names-partitioned (state-names-partitioned.zip) into S3 lesson-exercises-fname-lname bucket
# SSH into EC2 instance using EC2 Instance Connect
# Start a screen session in case your connection to the server drops
screen
# Configure AWS CLI
aws configure
# Get Access Key ID and Secret Access Key from My Security Credentials
# List S3 lesson-exercises-fname-lname bucket contents
aws s3 ls s3://lesson-exercises-fname-lname
# Reconnect to the EC2 server via SSH using EC2 Instance Connect
# Resume the previous screen session
screen -rd
# Confirm you're in the home directory
pwd
# Make a data directory
mkdir data
# Change into the data directory
cd data
# Copy state-names-unpartitioned.zip from S3 bucket to EC2 data directory
aws s3 cp s3://lesson-exercises-fname-lname/state-names-unpartitioned.zip state-names-unpartitioned.zip
# Unzip state-names-unpartitioned.zip
unzip state-names-unpartitioned.zip
# View first 10 rows of state-names-unpartitioned.csv
head state-names-unpartitioned.csv
# Confirm all rows present
wc -l state-names-unpartitioned.csv
# Copy state-names-unpartitioned.csv to state-names-unpartitioned folder in S3 bucket (S3 will create the folder if it doesn't exist)
aws s3 cp state-names-unpartitioned.csv s3://lesson-exercises-fname-lname/state-names-unpartitioned/
# Confirm state-names-unpartitioned.csv is in the S3 bucket via the aws cli
aws s3 ls s3://lesson-exercises-fname-lname/state-names-unpartitioned/
# Confirm state-names-unpartitioned.csv is in the S3 bucket via the AWS S3 console
# Go to Athena console
# Go to Settings. Set Query result location to s3://lesson-exercises-fname-lname/query-results/ (S3 will create the folder if it doesn't exist)
*/
-- Create lesson_exercises database
CREATE DATABASE lesson_exercises;
-- ------------------------------------------------------------
-- Unpartitioned table
-- Create state_names_unpartitioned table
-- https://docs.aws.amazon.com/athena/latest/ug/data-types.html
-- https://docs.aws.amazon.com/athena/latest/ug/supported-serdes.html
CREATE EXTERNAL TABLE lesson_exercises.state_names_unpartitioned (
`state_name_id` INT,
`name` STRING,
`year` INT,
`gender` STRING,
`state` STRING,
`name_count` INT
)
ROW FORMAT SERDE 'org.apache.hadoop.hive.serde2.OpenCSVSerde'
WITH SERDEPROPERTIES (
'separatorChar' = ','
)
LOCATION 's3://lesson-exercise-alexander-poirier/state-names-unpartitioned'
TBLPROPERTIES (
'has_encrypted_date' = 'false'
);
-- Select the first 10 rows from the table
SELECT *
FROM lesson_exercises.state_names_unpartitioned
LIMIT 10;
-- (Run time: 1.25 seconds, Data scanned: 321.51 KB)
-- Count the # of rows in the state_names_unpartitioned table
SELECT COUNT(*)
FROM lesson_exercises.state_names_unpartitioned;
-- (Run time: 5.18 seconds, Data scanned: 147.53 MB)
-- Count the # of rows by year for females
SELECT
year,
COUNT(*) AS year_count
FROM lesson_exercises.state_names_unpartitioned
WHERE gender = 'F'
GROUP BY year;
-- (Run time: 7.25 seconds, Data scanned: 147.53 MB)
-- Count the # of rows by year for females in California
SELECT
year,
COUNT(*)
FROM lesson_exercises.state_names_unpartitioned
WHERE gender = 'F'
AND state = 'CA'
GROUP BY year;
-- (Run time: 7.06 seconds, Data scanned: 147.53 MB)
-- ------------------------------------------------------------
-- Partitioned table
-- Determine partions based on cardinality
SELECT
COUNT(DISTINCT(gender)) AS distinct_gender_count,
COUNT(DISTINCT(state)) AS distinct_state_count,
COUNT(DISTINCT(year)) AS distinct_year_count,
COUNT(DISTINCT(name)) AS distinct_name_count
FROM lesson_exercises.state_names_unpartitioned;
-- (Run time: 14.52 seconds, Data scanned: 147.53 MB)
/*
parse_state_names.sh:
#!/bin/bash
file="$1"
echo "file: $file"
while IFS="," read state_name_id name year gender state name_count
do
mkdir -p /home/ec2-user/data/state-names-partitioned/gender=$gender/state=$state
echo "$state_name_id,$name,$year,$name_count" >> /home/ec2-user/data/state-names-partitioned/gender=$gender/state=$state/data.csv
done < $file
-------------------------------------------------------------------------------------------
[ec2-user@ip-172-31-25-164 scripts]$ time sh parse_state_names.sh ../data/state-names-unpartitioned.csv
file: ../data/state_names.csv
real 97m42.079s
user 77m11.414s
sys 19m47.577s
*/
/*
# SSH into EC2 instance using EC2 Instance Connect
# Refresh browser tab if command line is not responding
# Reconnect to screen session if you were disconnected
screen -rd
# Copy state-names-partitioned.zip from S3 bucket to EC2 data directory
aws s3 cp s3://lesson-exercises-fname-lname/state-names-partitioned.zip state-names-partitioned.zip
# Unzip state-names-partitioned.zip
unzip state-names-partitioned.zip
# View first 10 rows of a sample data.csv file
head state-names-partitioned/gender=M/state=TX/data.csv
# Verify a row was added to the correct partition folder
grep "4937855,John" state-names-unpartitioned.csv
# Recursively list the directories under state-names-partitioned
ls -R state-names-partitioned
# Copy state-names-partitioned.csv to state-names-partitioned folder in S3 bucket (S3 will create the folder if it doesn't exist)
aws s3 cp --recursive state-names-partitioned/ s3://lesson-exercises-fname-lname/state-names-partitioned/
# Confirm the state-names-partitioned folder is in the S3 bucket via the aws cli
aws s3 ls s3://lesson-exercises-fname-lname/state-names-partitioned/
# Confirm the state-names-partitioned folder is in the S3 bucket via the AWS S3 console
*/
-- Create state_names_partitioned table
CREATE EXTERNAL TABLE lesson_exercises.state_names_partitioned (
`state_name_id` INT,
`name` STRING,
`year` INT,
`name_count` INT
)
PARTITIONED BY (
`gender` STRING,
`state` STRING
)
ROW FORMAT SERDE 'org.apache.hadoop.hive.serde2.OpenCSVSerde'
WITH SERDEPROPERTIES (
'separatorChar' = ','
)
LOCATION 's3://lesson-exercise-alexander-poirier/state-names-partitioned'
TBLPROPERTIES (
'has_encrypted_date' = 'false'
);
-- Select the first 10 rows from the table
SELECT *
FROM lesson_exercises.state_names_partitioned
LIMIT 10;
-- (Run time: 0.82 seconds, Data scanned: 0 KB)
-- Load partitions to view the data
MSCK REPAIR TABLE lesson_exercises.state_names_partitioned;
-- (Run time: 31.76 seconds, Data scanned: 0 KB)
-- Select the first 10 rows from the table
SELECT *
FROM lesson_exercises.state_names_partitioned
LIMIT 10;
-- (Run time: 1.36 seconds, Data scanned: 3.23 MB)
-- Count the # of rows in the state_names_partitioned table
SELECT COUNT(*)
FROM lesson_exercises.state_names_partitioned;
-- (Run time: 6.28 seconds, Data scanned: 120.6 MB)
-- Count the # of rows by year for females
SELECT
year,
COUNT(*) AS year_count
FROM lesson_exercises.state_names_partitioned
WHERE gender = 'F'
GROUP BY year;
-- (Run time: 4.06 seconds, Data scanned: 67.6 MB)
-- Count the # of rows by year for females in California
SELECT
year,
COUNT(*)
FROM lesson_exercises.state_names_partitioned
WHERE gender = 'F'
AND state = 'CA'
GROUP BY year;
-- (Run time: 4.1 seconds, Data scanned: 4.36 MB)
-- ------------------------------------------------------------
-- Partitioned table in Parquet columnar storage format with Snappy compression
-- https://docs.aws.amazon.com/athena/latest/ug/compression-formats.html
-- Create state_names_partitioned_parquet_snappy table using CTAS (Create Table As Select)
CREATE TABLE lesson_exercises.state_names_partitioned_parquet_snappy
WITH (
format = 'Parquet',
parquet_compression = 'SNAPPY',
partitioned_by = ARRAY['gender','state'],
external_location = 's3://lesson-exercise-alexander-poirier/state-names-partitioned-parquet-snappy/'
) AS SELECT *
FROM lesson_exercises.state_names_partitioned;
-- (Run time: 33.79 seconds, Data scanned: 120.61 MB)
-- Confirm the state-names-partitioned-parquet-snappy folder is in the S3 bucket via the AWS S3 console
-- Select the first 10 rows from the table
SELECT *
FROM lesson_exercises.state_names_partitioned_parquet_snappy
LIMIT 10;
-- (Run time: 1.18 seconds, Data scanned: 1.17 MB)
-- Count the # of rows in the state_names_partitioned_parquet_snappy table
SELECT COUNT(*)
FROM lesson_exercises.state_names_partitioned_parquet_snappy;
-- (Run time: 3.9 seconds, Data scanned: 0 KB)
-- Count the # of rows by year for females
SELECT
year,
COUNT(*) AS year_count
FROM lesson_exercises.state_names_partitioned_parquet_snappy
WHERE gender = 'F'
GROUP BY year;
-- (Run time: 2.24 seconds, Data scanned: 48.09 KB)
-- Count the # of rows by year for females in California
SELECT
year,
COUNT(*)
FROM lesson_exercises.state_names_partitioned_parquet_snappy
WHERE gender = 'F'
AND state = 'CA'
GROUP BY year;
-- (Run time: 1.18 seconds, Data scanned: 1.15 KB)
-- Compare to indexes queries
-- One column in WHERE
SELECT COUNT(*)
FROM lesson_exercises.state_names_partitioned_parquet_snappy
WHERE name = 'Jane';
-- (Run time: 3.63 seconds, Data scanned: 17.71 MB)
-- 1: 263ms
-- 2: 289ms
-- 3: 255ms
-- Two columns in WHERE
SELECT COUNT(*)
FROM lesson_exercises.state_names_partitioned_parquet_snappy
WHERE name = 'Angel'
AND YEAR =1979;
-- (Run time: 3.39 seconds, Data scanned: 11.14 MB)
-- 1: 276ms
-- 2: 248ms
-- 3: 266ms
-- Three columns in WHERE
SELECT COUNT(*)
FROM lesson_exercises.state_names_partitioned_parquet_snappy
WHERE name = 'Angel'
AND YEAR =1979
AND gender = 'F';
-- (Run time: 2.06 seconds, Data scanned: 6.94 MB)
|
-- 20/09/2019 - pickup_time for orders
ALTER TABLE `orders` ADD `pickup_time` DATETIME NULL DEFAULT NULL AFTER `delivery_date`;
|
create table if not exists foss4g.bhmfoss4g (
gid serial primary key,
code character varying(15),
geom geometry(MultiPolygon, 4326));
insert into foss4g.bhmfoss4g (code, geom)
select
b.code,
st_multi(st_intersection(a.geom, b.geom)) as geom
from
foss4g.bhmbuffer1000 a, foss4g.divisions b
where
st_intersects(a.geom, b.geom);
|
-- These indexes were added later to the 6.4 install DDL SQL scripts and may already be present on your system
-- create index IDX_VInstLog_pInstId on VariableInstanceLog(processInstanceId);
-- create index IDX_VInstLog_varId on VariableInstanceLog(variableId);
-- create index IDX_VInstLog_pId on VariableInstanceLog(processId);
-- create index IDX_NInstLog_pInstId on NodeInstanceLog(processInstanceId);
-- create index IDX_NInstLog_nodeType on NodeInstanceLog(nodeType);
-- create index IDX_NInstLog_pId on NodeInstanceLog(processId);
|
CREATE TABLE FAM_MEMBER(
MEM_NO INT NOT NULL PRIMARY KEY AUTO_INCREMENT
,ID VARCHAR(20) NOT NULL
,PASS VARCHAR(20) NOT NULL
,E_MAIL VARCHAR(100) NOT NULL
,MEM_PIC_PATH VARCHAR(255)
,NAME VARCHAR(20) NOT NULL
,BIRTHDAY VARCHAR(20) NOT NULL
,TEL INT NOT NULL
);
CREATE SEQUENCE SEQ_MEMBER_NO;
ALTER TABLE FAM_MEMBER ADD MEM_NO INT auto_increment primary key
ALTER TABLE FAM_MEMBER ADD login_pic_path varchar(100);
insert into fam_member(id,pass,e_Mail,name,birthday,tel)
values("test","test","test@test","test","test","1234")
/*
show full columns from 테이블명 ; //컬럼명 조회하기
사용자 아이디
사용자 비밀번호
사용자 이메일
사용자 이름
사용자 생년월일
사용자 연락처
*/
|
--script to stop unused properties from making it into the export
UPDATE public."FileProperty"
SET "AllowExport" = 'false'
WHERE "Name" IN ('date_created','date_range','start_date','file_name_language','file_name_translation_language');
COMMIT;
|
/* Get hard drive capacities that are identical for two or more PCs.
Result set: hd.*/
SELECT hd FROM pc
GROUP BY hd
HAVING count(model) >= 2
|
DROP DATABASE IF EXISTS react_colors;
CREATE DATABASE react_colors;
\c react_colors
CREATE TABLE colors(
id serial primary key,
name varchar,
hex varchar,
red int,
green int,
blue int
);
|
/* Welcome to the SQL mini project. You will carry out this project partly in
the PHPMyAdmin interface, and partly in Jupyter via a Python connection.
This is Tier 2 of the case study, which means that there'll be less guidance for you about how to setup
your local SQLite connection in PART 2 of the case study. This will make the case study more challenging for you:
you might need to do some digging, aand revise the Working with Relational Databases in Python chapter in the previous resource.
Otherwise, the questions in the case study are exactly the same as with Tier 1.
PART 1: PHPMyAdmin
You will complete questions 1-9 below in the PHPMyAdmin interface.
Log in by pasting the following URL into your browser, and
using the following Username and Password:
URL: https://sql.springboard.com/
Username: student
Password: learn_sql@springboard
The data you need is in the "country_club" database. This database
contains 3 tables:
i) the "Bookings" table,
ii) the "Facilities" table, and
iii) the "Members" table.
In this case study, you'll be asked a series of questions. You can
solve them using the platform, but for the final deliverable,
paste the code for each solution into this script, and upload it
to your GitHub.
Before starting with the questions, feel free to take your time,
exploring the data, and getting acquainted with the 3 tables. */
/* QUESTIONS
/* Q1: Some of the facilities charge a fee to members, but some do not.
Write a SQL query to produce a list of the names of the facilities that do. */
SELECT name FROM `Facilities` WHERE membercost > 0;
/* Q2: How many facilities do not charge a fee to members? */
5
/* Q3: Write an SQL query to show a list of facilities that charge a fee to members,
where the fee is less than 20% of the facility's monthly maintenance cost.
Return the facid, facility name, member cost, and monthly maintenance of the
facilities in question. */
Select facid, name, membercost, monthlymaintenance
from Facilities
Where membercost < (0.2*monthlymaintenance);
/* Q4: Write an SQL query to retrieve the details of facilities with ID 1 and 5.
Try writing the query without using the OR operator. */
Select *
from Facilities
Where facid = 1 or facid = 5;
/* Q5: Produce a list of facilities, with each labelled as
'cheap' or 'expensive', depending on if their monthly maintenance cost is
more than $100. Return the name and monthly maintenance of the facilities
in question. */
Select *,
case WHEN monthlymaintenance > 100 then 'expensive'
else 'cheap' end AS price
from Facilities;
/* Q6: You'd like to get the first and last name of the last member(s)
who signed up. Try not to use the LIMIT clause for your solution. */
SELECT surname, firstname FROM `Members`;
/* Q7: Produce a list of all members who have used a tennis court.
Include in your output the name of the court, and the name of the member
formatted as a single column. Ensure no duplicate data, and order by
the member name. */
select distinct concat(mems.firstname, ' ', mems.surname) as member, facs.name as facility
from Members as mems
inner join Bookings as bks
on mems.memid = bks.memid
inner join Facilities as facs
on bks.facid = facs.facid
where bks.facid = 1 or bks.facid = 0
order by member;
/* Q8: Produce a list of bookings on the day of 2012-09-14 which
will cost the member (or guest) more than $30. Remember that guests have
different costs to members (the listed costs are per half-hour 'slot'), and
the guest user's ID is always 0. Include in your output the name of the
facility, the name of the member formatted as a single column, and the cost.
Order by descending cost, and do not use any subqueries. */
select facs.name as facility, concat(mems.firstname, ' ', mems.surname) as member,
case
when mems.memid = 0 then
bks.slots*facs.guestcost
else
bks.slots*facs.membercost
end as cost
from Members as mems
inner join Bookings as bks
on mems.memid = bks.memid
inner join Facilities as facs
on bks.facid = facs.facid
where
bks.starttime >= '2012-09-14' and
bks.starttime < '2012-09-15' and (
(mems.memid = 0 and bks.slots*facs.guestcost > 30) or
(mems.memid != 0 and bks.slots*facs.membercost > 30)
)
order by cost desc;
/* Q9: This time, produce the same result as in Q8, but using a subquery. */
SELECT * FROM (
select facs.name as facility, concat(mems.firstname, ' ', mems.surname) as member,
case
when mems.memid = 0 then
bks.slots*facs.guestcost
else
bks.slots*facs.membercost
end as cost
from Members as mems
inner join Bookings as bks
on mems.memid = bks.memid
inner join Facilities as facs
on bks.facid = facs.facid
where
bks.starttime >= '2012-09-14' and
bks.starttime < '2012-09-15' and (
(mems.memid = 0 and bks.slots*facs.guestcost > 30) or
(mems.memid != 0 and bks.slots*facs.membercost > 30)
)
order by cost desc) as cost
WHERE cost>30;
/* PART 2: SQLite
Export the country club data from PHPMyAdmin, and connect to a local SQLite instance from Jupyter notebook
for the following questions.
QUESTIONS:
/* Q10: Produce a list of facilities with a total revenue less than 1000.
The output of facility name and total revenue, sorted by revenue. Remember
that there's a different cost for guests and members! */
engine = create_engine('sqlite:///sqlite_db_pythonsqlite.db')
with engine.connect() as con:
rs = con.execute('''SELECT name, SUM(
CASE WHEN memid =0
THEN guestcost * slots
ELSE membercost * slots
END ) AS total_revenue
FROM Facilities
INNER JOIN Bookings ON Facilities.facid = Bookings.facid
GROUP BY name
HAVING total_revenue < 1000
ORDER BY total_revenue;''')
/* Q11: Produce a report of members and who recommended them in alphabetic surname,firstname order */
engine = create_engine('sqlite:///sqlite_db_pythonsqlite.db')
with engine.connect() as con:
rs = con.execute('''SELECT M1.firstname || ' ' || M1.surname || ' ' || 'recommended by' || ' ' || M2.firstname || ' ' || M2.surname
AS members_recommended
FROM Members AS M1
LEFT JOIN Members AS M2 ON M1.recommendedby = M2.memid
WHERE M2.memid != 0
ORDER BY M1.surname, M1.firstname;''')
/* Q12: Find the facilities with their usage by member, but not guests */
engine = create_engine('sqlite:///sqlite_db_pythonsqlite.db')
with engine.connect() as con:
SELECT F.name AS facility, members_only.bookings AS members_usage
FROM (
SELECT facid, name
FROM Facilities
) AS F
INNER JOIN (
SELECT facid, COUNT( * ) AS bookings
FROM Bookings
WHERE memid != 0
GROUP BY facid
) AS members_only ON F.facid = members_only.facid
/* Q13: Find the facilities usage by month, but not guests */
engine = create_engine('sqlite:///sqlite_db_pythonsqlite.db')
with engine.connect() as con:
SELECT F.name AS facility, members_only.monthly_period, members_only.bookings AS members_usage
FROM (
SELECT facid, name
FROM Facilities
) AS F
INNER JOIN (
SELECT facid, strftime('%Y-%m', starttime) AS monthly_period, COUNT( * ) AS bookings
FROM Bookings
WHERE memid != 0
GROUP BY facid, monthly_period
) AS members_only ON F.facid = members_only.facid
|
WITH DUPLICATE
AS
(
SELECT ROW_NUMBER() OVER(PARTITION BY Passangers ORDER BY Passangers) Pass, Vagons
FROM LinkerT
)
DELETE
FROM DUPLICATE
WHERE Pass > 1
SELECT *
FROM LinkerT
|
select t1.*, t2.new_req, t2.all_oc_req,
t3.new_keys, t3.alll_oc_keys, t3.new_rec_keys,
t4.new_plan, t4.all_oc_plan, t4.new_rec_plan,
t4.new_plan_exp, t4.all_oc_plan_exp, t4.new_rec_plan_exp,
t4.new_trial, t4.all_oc_trial, t4.new_rec_trial,
t4.new_trial_deal, t4.all_oc_trial_deal, t4.new_rec_trial_deal,
t5.new_deal_num, t5.all_oc_deal_num, t5.new_rec_deal_num,
t5.new_deal_amount, t5.all_oc_deal_amount, t5.new_rec_deal_amount
from(
select cd.date, cd.user_id, cdme.job_number, cdme.`name`, cdme.department_name, cdme.city, cdme.branch, cdme.center, cdme.region,
concat(ifnull(cdme.city,''),ifnull(cdme.branch,''),ifnull(cdme.center,''),ifnull(cdme.region,'')) as region_name
from bidata.charlie_dept_history cd
left join view_user_info ui on ui.user_id = cd.user_id
inner join bidata.charlie_dept_month_end cdme on cdme.user_id = cd.user_id
and cdme.class = '销售' and cdme.stats_date = curdate()
and cdme.date >= date_format(date_sub(curdate(),interval 1 day),'%Y-%m-01')
where (cd.department_name like '%销售_区%' or cd.department_name like '销售考核_组')
and cd.date >= date_format(date_sub(curdate(),interval 1 day),'%Y-%m-01')
and cd.date < curdate()
) as t1
left join (
select aa.date,
aa.user_id,
count(case when aa.key_attr = 'new' then aa.student_intention_id else null end) as new_req,
count(case when aa.key_attr = 'all_oc' then aa.student_intention_id else null end) as all_oc_req
from(
select min(date(view_time)) as date,
ss.user_id,
ss.student_intention_id,
case when s.submit_time >= date_format(date_sub(curdate(),interval 1 day),'%Y-%m-01')
then 'new' else 'all_oc' end as key_attr,
case when s.coil_in in (13,22) or s.know_origin in (56,71,22,24,25,41) then 1 else 0 end as is_rec
from hfjydb.ss_collection_sale_roster_action ss
left join hfjydb.view_student s on s.student_intention_id = ss.student_intention_id
where view_time >= date_format(date_sub(curdate(),interval 1 day),'%Y-%m-01')
and view_time < curdate()
group by user_id, ss.student_intention_id
) as aa
group by aa.date, aa.user_id
) as t2 on t2.date = t1.date and t2.user_id = t1.user_id
left join (
select aa.date,
aa.track_userid as user_id,
count(case when aa.key_attr = 'new' then aa.intention_id else null end) as new_keys,
count(case when aa.key_attr = 'all_oc' then aa.intention_id else null end) as alll_oc_keys,
count(case when aa.key_attr = 'new' and aa.is_rec = 1 then aa.intention_id else null end) as new_rec_keys
from(
select min(date(into_pool_date)) as date,
tpel.track_userid,
tpel.intention_id,
case when s.submit_time >= date_format(date_sub(curdate(),interval 1 day),'%Y-%m-01')
then 'new' else 'all_oc' end as key_attr,
case when s.coil_in in (13,22) or s.know_origin in (56,71,22,24,25,41) then 1 else 0 end as is_rec
from hfjydb.tms_pool_exchange_log tpel
left join hfjydb.view_student s on s.student_intention_id = tpel.intention_id
where tpel.into_pool_date >= date_format(date_sub(curdate(),interval 1 day),'%Y-%m-01')
and tpel.into_pool_date < curdate()
group by tpel.intention_id, tpel.track_userid
) as aa
group by aa.date, aa.track_userid
) as t3 on t3.date = t1.date and t3.user_id = t1.user_id
left join (
select
bb.date,
bb.apply_user_id as user_id,
count(case when bb.key_attr = 'new' then bb.student_intention_id end) as new_plan,
count(case when bb.key_attr = 'all_oc' then bb.student_intention_id end) as all_oc_plan,
count(case when bb.key_attr = 'new' and bb.is_rec = 1 then bb.student_intention_id end) as new_rec_plan,
count(case when bb.key_attr = 'new' and bb.is_trial_exp = 1 then bb.student_intention_id end) as new_plan_exp,
count(case when bb.key_attr = 'all_oc' and bb.is_trial_exp = 1 then bb.student_intention_id end) as all_oc_plan_exp,
count(case when bb.key_attr = 'new' and bb.is_rec =1 and bb.is_trial_exp = 1 then bb.student_intention_id end) as new_rec_plan_exp,
count(case when bb.key_attr = 'new' and bb.is_trial = 1 then bb.student_intention_id end) as new_trial,
count(case when bb.key_attr = 'all_oc' and bb.is_trial = 1 then bb.student_intention_id end) as all_oc_trial,
count(case when bb.key_attr = 'new' and bb.is_rec = 1 and bb.is_trial = 1 then bb.student_intention_id end) as new_rec_trial,
count(case when bb.key_attr = 'new' and bb.is_trial_deal = 1 then bb.student_intention_id end) as new_trial_deal,
count(case when bb.key_attr = 'all_oc' and bb.is_trial_deal = 1 then bb.student_intention_id end) as all_oc_trial_deal,
count(case when bb.key_attr = 'new' and bb.is_trial_deal = 1 and bb.is_rec = 1 then bb.student_intention_id end) as new_rec_trial_deal
from(
select
lpo.apply_user_id, lpo.student_intention_id,
min(date(lp.adjust_start_time)) as date,
case when lp.status in (3,5) then 1 else 0 end is_trial,
case when s.submit_time >= date_format(date_sub(curdate(),interval 1 day),'%Y-%m-01')
then 'new' else 'all_oc' end key_attr,
case when s.coil_in in (13,22) or s.know_origin in (56,71,22,24,25,41) then 1 else 0 end is_rec,
case when aa.student_intention_id is not null then 1 else 0 end is_trial_deal,
(case when lp.student_id in (select distinct student_id
from hfjydb.lesson_plan
where lesson_type=3 and status in (3,5) and solve_status <> 6
and adjust_start_time >= date_format(date_sub(curdate(),interval 1 day),'%Y-%m-01')
and adjust_start_time < curdate()
)
then 1 else 0 end) is_trial_exp,
aa.real_pay_amount
from hfjydb.lesson_plan_order lpo
left join hfjydb.lesson_relation lr on lpo.order_id = lr.order_id
left join hfjydb.lesson_plan lp on lr.plan_id = lp.lesson_plan_id
left join hfjydb.view_student s on s.student_intention_id = lpo.student_intention_id
left join (
select min(tcp.pay_date) min_date,
tc.contract_id,
tc.student_intention_id,
sum(tcp.sum/100) real_pay_amount,
(tc.sum-666) * 10 contract_amount,
tcp.submit_user_id
from hfjydb.view_tms_contract_payment tcp
left join hfjydb.view_tms_contract tc on tc.contract_id = tcp.contract_id
where tcp.pay_status in (2, 4) and tc.status <> 8
group by tc.contract_id
having max(tcp.pay_date) >= date_format(date_sub(curdate(),interval 1 day),'%Y-%m-01')
and max(tcp.pay_date) < curdate()
and real_pay_amount >= contract_amount
) as aa on aa.student_intention_id = lpo.student_intention_id
and aa.submit_user_id = lpo.apply_user_id
where lp.lesson_type = 2
and lp.adjust_start_time >= date_format(date_sub(curdate(),interval 1 day),'%Y-%m-01')
and lp.adjust_start_time < curdate()
and s.account_type = 1
and lp.solve_status <> 6
group by lpo.apply_user_id, lpo.student_intention_id
) as bb
group by bb.date, bb.apply_user_id
) as t4 on t4.user_id = t1.user_id and t4.date = t1.date
left join (
select date(c.max_date) as date,
c.submit_user_id as user_id,
count(distinct case when c.key_attr = 'new' then c.contract_id else null end) as new_deal_num,
sum(case when c.key_attr = 'new' then c.real_pay_amount else 0 end) as new_deal_amount,
count(distinct case when c.key_attr = 'all_oc' then c.contract_id else null end) as all_oc_deal_num,
sum(case when c.key_attr = 'all_oc' then c.real_pay_amount else 0 end) as all_oc_deal_amount,
count(distinct case when c.key_attr = 'new' and c.is_recommend = 1 then c.contract_id else null end) as new_rec_deal_num,
sum(distinct case when c.key_attr = 'new' and c.is_recommend = 1 then c.real_pay_amount else 0 end) as new_rec_deal_amount
from(
select min(tcp.pay_date) min_date,
max(tcp.pay_date) max_date,
tc.contract_id,
tc.student_intention_id,
case when s.submit_time >= date_format(date_sub(curdate(),interval 1 day),'%Y-%m-01')
then 'new' else 'all_oc' end as key_attr,
case when s.coil_in in (13,22) or s.know_origin in (56,71,22,24,25,41) then 1 else 0 end as is_recommend,
sum(tcp.sum/100) real_pay_amount,
(tc.sum-666) * 10 contract_amount,
tcp.submit_user_id
from hfjydb.view_tms_contract_payment tcp
left join hfjydb.view_tms_contract tc on tc.contract_id = tcp.contract_id
left join hfjydb.view_student s on s.student_intention_id = tc.student_intention_id
inner join bidata.charlie_dept_month_end cdme on cdme.user_id = tcp.submit_user_id
and cdme.stats_date = curdate() and cdme.class = '销售'
and cdme.date >= date_format(date_sub(curdate(),interval 1 day),'%Y-%m-01')
where tcp.pay_status in (2,4) and tc.status <> 8
group by tc.contract_id
having max(tcp.pay_date) >= date_format(date_sub(curdate(),interval 1 day),'%Y-%m-01')
and max(tcp.pay_date) < curdate()
and real_pay_amount >= contract_amount
) as c
group by date(c.max_date), c.submit_user_id
) as t5 on t5.user_id = t1.user_id and t5.date = t1.date
|
INSERT INTO 'db_blog_pessoal','postagem'('date','texto','titulo',)
VALUES
('2020-07-26 10:10:10.000','Eu estou aprendendo','API Rest Spring');
ALTER TABLE db_blog_pessoal DROP COLUMN column_date;
|
CREATE TABLE IF NOT EXISTS Account(
Id INT AUTO_INCREMENT PRIMARY KEY,
Name VARCHAR(255),
Balance DECIMAL(20, 2),
CurrencyCode VARCHAR(3),
Status BOOLEAN,
CreatedDate TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
UpdatedDate TIMESTAMP NULL);
CREATE TABLE IF NOT EXISTS Transaction(
Id INT AUTO_INCREMENT PRIMARY KEY,
TransactionIdentifier UUID DEFAULT RANDOM_UUID(),
SourceAccount INT,
DestinationAccount INT,
CurrencyCode VARCHAR(3),
Amount DECIMAL(20,2),
Description VARCHAR(255),
Status BOOLEAN,
CreatedDate TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
FOREIGN KEY (SourceAccount) REFERENCES Account(Id),
FOREIGN KEY (DestinationAccount) REFERENCES ACCOUNT(Id));
INSERT INTO Account SELECT * FROM(
SELECT 1, 'DEMO ONE', 20000.00, 'INR', TRUE, CURRENT_TIMESTAMP(), NULL
)a WHERE NOT EXISTS(SELECT * FROM Account WHERE Id = 1);
INSERT INTO Account SELECT * FROM(
SELECT 2, 'DEMO TWO', 20000.00, 'INR', TRUE, CURRENT_TIMESTAMP(), NULL
)a WHERE NOT EXISTS(SELECT * FROM Account WHERE Id = 2);
INSERT INTO Account SELECT * FROM(
SELECT 3, 'DEMO THREE', 100.00, 'INR', TRUE, CURRENT_TIMESTAMP(), NULL
)a WHERE NOT EXISTS(SELECT * FROM Account WHERE Id = 3);
INSERT INTO Account SELECT * FROM(
SELECT 4, 'DEMO FOUR', 50.00, 'INR', TRUE, CURRENT_TIMESTAMP(), NULL
)a WHERE NOT EXISTS(SELECT * FROM Account WHERE Id = 4);
INSERT INTO Account SELECT * FROM(
SELECT 5, 'DEMO FIVE', 700.00, 'INR', FALSE, CURRENT_TIMESTAMP(), NULL
)a WHERE NOT EXISTS(SELECT * FROM Account WHERE Id = 5);
|
#Турнирные таблицы турниров
CREATE VIEW RFPL_table AS
SELECT name,
matches_complited AS 'matches',
matches_win AS 'win',
matches_draw AS 'draw',
matches_loose AS 'loose',
points
FROM clubs JOIN tournaments_clubs
ON clubs.id = club_id AND tournament_id = 1 ORDER BY points DESC;
SELECT * FROM goal_pass gp ;
CREATE VIEW Cup_of_russia_table AS
SELECT name,
matches_complited AS 'matches',
matches_win AS 'win',
matches_draw AS 'draw',
matches_loose AS 'loose',
points
FROM clubs JOIN tournaments_clubs
ON clubs.id = club_id AND tournament_id = 2 ORDER BY points DESC;
#Список лучших бомбардиров турнира
CREATE VIEW bombardiers AS
SELECT CONCAT (first_name, ' ', last_name) AS player,
clubs.name AS club,
amplua,
goals_scored,
minutes_on_field / goals_scored AS 'min on goal',
minutes_on_field AS 'minutes',
matches_complited AS 'matches'
FROM players JOIN clubs ON clubs.id = club_id
JOIN profile_players ON players.id = profile_players.player_id
JOIN tournaments_players ON players.id = tournaments_players.player_id
AND goals_scored > 0 AND tournament_id = 2 ORDER BY goals_scored DESC LIMIT 20;
#Список лучших распасовщиков турнира
CREATE VIEW passers AS
SELECT CONCAT (first_name, ' ', last_name) AS player,
clubs.name AS club,
amplua,
passes_complited AS passes
FROM players JOIN clubs ON clubs.id = club_id
JOIN profile_players ON players.id = profile_players.player_id
JOIN tournaments_players ON players.id = tournaments_players.player_id
AND passes_complited > 0 AND tournament_id = 2 ORDER BY passes_complited DESC LIMIT 20;
SELECT * FROM passers;
#Список лучших игроков турнира по системе гол + пас
CREATE VIEW goal_pass AS
SELECT CONCAT (first_name, ' ', last_name) AS player,
clubs.name AS club,
amplua,
goals_scored + passes_complited AS 'gol+pass',
goals_scored AS 'goals',
passes_complited AS passes,
matches_complited AS 'matches'
FROM players JOIN clubs ON clubs.id = club_id
JOIN profile_players ON players.id = profile_players.player_id
JOIN tournaments_players ON players.id = tournaments_players.player_id
AND goals_scored + passes_complited> 0 AND tournament_id = 1
ORDER BY goals_scored + passes_complited DESC LIMIT 20;
|
alter table data_${sid} add column copy_entry bytea;
|
/*
Project Option: Coyote Residence Office
TEAM: King James & The Knights of the Data Table
Comments on Attributes for Student
COMMENT BY: James Small
*/
COMMENT ON COLUMN student.student_number
IS 'The number that uniquely identifies each student at the university - Format: 600001';
COMMENT ON COLUMN student.first_name
IS 'The first name of the student - Format: John';
COMMENT ON COLUMN student.last_name
IS 'The last name of the student - Format: Smith';
COMMENT ON COLUMN student.gender
IS 'The gender of the student - Format: M';
COMMENT ON COLUMN student.date_of_birth
IS 'The date of birth for the student - Format: 05-JAN-85';
COMMENT ON COLUMN student.current_status
IS 'Shows whether a student is currently renting or on the waitlist - Format: Renting';
COMMENT ON COLUMN student.additional_comments
IS 'Any additional information pertaining to the student not mentioned elsewhere - Format: Text';
COMMENT ON COLUMN student.residence_type
IS 'Shows the type of residence the student is currently renting - Format: Student Apartment';
COMMENT ON COLUMN student.minor
IS 'The students minor if applicable - Format: Philosphy';
COMMENT ON COLUMN student.major
IS 'The students major at the university- Format: Philosphy';
COMMENT ON COLUMN student.special_needs
IS 'Information in this field lets us know whether there is any special accomodations needed for the student - Format: Blind';
COMMENT ON COLUMN student.street
IS 'The street the student lives on - Format: 123 Four St';
COMMENT ON COLUMN student.city
IS 'The city the student lives in - Format: Riverside';
COMMENT ON COLUMN student.state
IS 'The state the student lives in - Format: CA';
COMMENT ON COLUMN student.zip
IS 'The zip code the student lives in - Format: 92504';
COMMENT ON COLUMN student.nationality
IS 'The nation of origin or naturalization of student - Format: German';
COMMENT ON COLUMN student.class
IS 'The standing of student in terms of academic progress - Format: Junior';
COMMENT ON COLUMN student.phone_number
IS 'The phone number of the student, if applicable - Format: 909-844-8887';
COMMENT ON COLUMN student.email_address
IS 'The email address of the student- Format: agonz@gmail.com';
COMMENT ON COLUMN student.advisor_number
IS 'Foreign key referencing advisor_number in advisor. Shows which advisor is responsible for advising this particular student - Format: 1001';
|
set linesize 120 pagesize 200 trimspool on
column username format a10
column osuser format a10
column sid format 99999
column object format a35
column type format a35
select s.username, s.sid, s.serial#,
s.osuser, k.ctime, o.object_name object, k.kaddr,
case l.locked_mode when 1 then 'No Lock'
when 2 then 'Row Share'
when 3 then 'Row Exclusive'
when 4 then 'Shared Table'
when 5 then 'Shared Row Exclusive'
when 6 then 'Exclusive'
end locked_mode,
case
when k.type = 'AE' then 'Application Edition'
when k.type = 'BL' then 'Buffer Cache Management (PCM lock)'
when k.type = 'CF' then 'Controlfile Transaction'
when k.type = 'CI' then 'Cross Instance Call'
when k.type = 'CU' then 'Bind Enqueue'
when k.type = 'DF' then 'Data File'
when k.type = 'DL' then 'Direct Loader'
when k.type = 'DM' then 'Database Mount'
when k.type = 'DR' then 'Distributed Recovery'
when k.type = 'DX' then 'Distributed Transaction'
when k.type = 'FS' then 'File Set'
when k.type = 'IN' then 'Instance Number'
when k.type = 'IR' then 'Instance Recovery'
when k.type = 'IS' then 'Instance State'
when k.type = 'IV' then 'Library Cache Invalidation'
when k.type = 'JQ' then 'Job Queue'
when k.type = 'KK' then 'Redo Log Kick'
when k.type like 'L%' then 'Library Cache Lock'
when k.type = 'MM' then 'Mount Definition'
when k.type = 'MR' then 'Media Recovery'
when k.type like 'N%' then 'Library Cache Pin'
when k.type = 'PF' then 'Password File'
when k.type = 'PI' then 'Parallel Slaves'
when k.type = 'PR' then 'Process Startup'
when k.type = 'PS' then 'Parallel slave Synchronization'
when k.type like 'Q%' then 'Row Cache Lock'
when k.type = 'RT' then 'Redo Thread'
when k.type = 'SC' then 'System Commit number'
when k.type = 'SM' then 'SMON synchronization'
when k.type = 'SN' then 'Sequence Number'
when k.type = 'SQ' then 'Sequence Enqueue'
when k.type = 'SR' then 'Synchronous Replication'
when k.type = 'SS' then 'Sort Segment'
when k.type = 'ST' then 'Space Management Transaction'
when k.type = 'SV' then 'Sequence Number Value'
when k.type = 'TA' then 'Transaction Recovery'
when k.type = 'TM' then 'DML Enqueue'
when k.type = 'TS' then 'Table Space (or Temporary Segment)'
when k.type = 'TT' then 'Temporary Table'
when k.type = 'TX' then 'Transaction'
when k.type = 'UL' then 'User-defined Locks'
when k.type = 'UN' then 'User Name'
when k.type = 'US' then 'Undo segment Serialization'
when k.type = 'WL' then 'Writing redo Log'
when k.type = 'XA' then 'Instance Attribute Lock'
when k.type = 'XI' then 'Instance Registration Lock'
end type
from v$session s, sys.v_$_lock c, sys.v_$locked_object l, dba_objects o, sys.v_$lock k
where o.object_id = l.object_id
and l.session_id = s.sid
and k.sid = s.sid
and s.saddr = c.saddr
and k.kaddr = c.kaddr
and k.lmode = l.locked_mode
and k.lmode = c.lmode
and k.request = c.request
order by object;
|
-- phpMyAdmin SQL Dump
-- version 4.9.7
-- https://www.phpmyadmin.net/
--
-- Servidor: localhost:8889
-- Tiempo de generación: 19-07-2021 a las 14:41:39
-- Versión del servidor: 5.7.32
-- Versión de PHP: 7.4.12
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";
--
-- Base de datos: `asociados`
--
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `asociado`
--
CREATE TABLE `asociado` (
`idAsociado` int(11) NOT NULL,
`nombreAsociado` varchar(50) NOT NULL,
`ApellidoAsociado` varchar(50) NOT NULL,
`dui` varchar(10) NOT NULL,
`nit` varchar(17) NOT NULL,
`codEstadoCivil` int(11) NOT NULL,
`fechaIngreso` date NOT NULL,
`codLocalizacion` int(11) NOT NULL,
`codInfoUsuario` int(11) NOT NULL,
`active` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Volcado de datos para la tabla `asociado`
--
INSERT INTO `asociado` (`idAsociado`, `nombreAsociado`, `ApellidoAsociado`, `dui`, `nit`, `codEstadoCivil`, `fechaIngreso`, `codLocalizacion`, `codInfoUsuario`, `active`) VALUES
(1, 'Gregor', 'Molina', '21321312-3', '1231-231232-132-1', 2, '2021-07-18', 11, 1, 1),
(2, 'Baron', 'Cortez', '06445785-3', '2398-472389-423-4', 1, '2021-07-19', 13, 1, 1);
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `departamento`
--
CREATE TABLE `departamento` (
`idDepartamento` int(11) NOT NULL,
`nombreDepartamento` varchar(45) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Volcado de datos para la tabla `departamento`
--
INSERT INTO `departamento` (`idDepartamento`, `nombreDepartamento`) VALUES
(1, 'Ahuachapán'),
(2, 'Cabañas'),
(3, 'Chalatenango'),
(4, 'Cuscatlán'),
(5, 'La Libertad'),
(6, 'La Paz'),
(7, 'La Unión'),
(8, 'Morazán'),
(9, 'San Miguel'),
(10, 'San Salvador'),
(11, 'San Vicente'),
(12, 'Santa Ana'),
(13, 'Sonsonate'),
(14, 'Usulután');
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `estadoCivil`
--
CREATE TABLE `estadoCivil` (
`idEstadoCivil` int(11) NOT NULL,
`nombreEstadoCivil` varchar(50) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Volcado de datos para la tabla `estadoCivil`
--
INSERT INTO `estadoCivil` (`idEstadoCivil`, `nombreEstadoCivil`) VALUES
(1, 'Casado/a'),
(2, 'Soltero/a');
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `infoUsuario`
--
CREATE TABLE `infoUsuario` (
`idInfoUsuario` int(11) NOT NULL,
`nombreEmpleado` varchar(50) NOT NULL,
`apellidoEmpleado` varchar(50) NOT NULL,
`codUsuario` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Volcado de datos para la tabla `infoUsuario`
--
INSERT INTO `infoUsuario` (`idInfoUsuario`, `nombreEmpleado`, `apellidoEmpleado`, `codUsuario`) VALUES
(1, 'Alberto', 'Grande', 1);
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `localizacion`
--
CREATE TABLE `localizacion` (
`idLocalizacion` int(11) NOT NULL,
`direccion` text NOT NULL,
`codDepartamento` int(11) NOT NULL,
`codMunicipio` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Volcado de datos para la tabla `localizacion`
--
INSERT INTO `localizacion` (`idLocalizacion`, `direccion`, `codDepartamento`, `codMunicipio`) VALUES
(5, 'qwe', 1, 1),
(6, 'eqweqw', 1, 1),
(7, 'eqweqw', 1, 1),
(8, 'eqweqw', 1, 1),
(9, 'eqweqw', 1, 1),
(10, 'eqweqw', 1, 1),
(11, 'Calle al Volcan\r\n', 6, 96),
(12, 'qweqweqweqwe', 3, 27),
(13, 'Calle al Volcan', 8, 140);
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `municipio`
--
CREATE TABLE `municipio` (
`idMunicipio` int(11) NOT NULL,
`nombreMunicipio` varchar(45) CHARACTER SET utf8mb4 NOT NULL,
`codDepartamento` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Volcado de datos para la tabla `municipio`
--
INSERT INTO `municipio` (`idMunicipio`, `nombreMunicipio`, `codDepartamento`) VALUES
(1, 'Ahuachapán', 1),
(2, 'Apaneca', 1),
(3, 'Atiquizaya', 1),
(4, 'Concepción de Ataco', 1),
(5, 'El Refugio', 1),
(6, 'Guaymango', 1),
(7, 'Jujutla', 1),
(8, 'San Francisco Menéndez', 1),
(9, 'San Lorenzo', 1),
(10, 'San Pedro Puxtla', 1),
(11, 'Tacuba', 1),
(12, 'Turín', 1),
(13, 'Sensuntepeque', 2),
(14, 'Cinquera', 2),
(15, 'Dolores', 2),
(16, 'Guacotecti', 2),
(17, 'Ilobasco', 2),
(18, 'Jutiapa', 2),
(19, 'San Isidro', 2),
(20, 'Tejutepeque', 2),
(21, 'Victoria', 2),
(22, 'Chalatenango', 3),
(23, 'Agua Caliente', 3),
(24, 'Arcatao', 3),
(25, 'Azacualpa', 3),
(26, 'Cancasque', 3),
(27, 'Citalá', 3),
(28, 'Comalapa', 3),
(29, 'Concepción Quezaltepeque', 3),
(30, 'Dulce Nombre de María', 3),
(31, 'El Carrizal', 3),
(32, 'El Paraíso', 3),
(33, 'La Laguna', 3),
(34, 'La Palma', 3),
(35, 'La Reina', 3),
(36, 'Las Flores', 3),
(37, 'Las Vueltas', 3),
(38, 'Nombre de Jesús', 3),
(39, 'Nueva Concepción', 3),
(40, 'Nueva Trinidad', 3),
(41, 'Ojos de Agua', 3),
(42, 'Potonico', 3),
(43, 'San Antonio de la Cruz', 3),
(44, 'San Antonio Los Ranchos', 3),
(45, 'San Fernando', 3),
(46, 'San Francisco Lempa', 3),
(47, 'San Francisco Morazán', 3),
(48, 'San Ignacio', 3),
(49, 'San Isidro Labrador', 3),
(50, 'San Luis del Carmen', 3),
(51, 'San Miguel de Mercedes', 3),
(52, 'San Rafael', 3),
(53, 'Santa Rita', 3),
(54, 'Tejutla', 3),
(55, 'Cojutepeque', 4),
(56, 'Candelaria', 4),
(57, 'El Carmen', 4),
(58, 'El Rosario', 4),
(59, 'Monte San Juan', 4),
(60, 'Oratorio de Concepción', 4),
(61, 'San Bartolomé Perulapía', 4),
(62, 'San Cristóbal', 4),
(63, 'San José Guayabal', 4),
(64, 'San Pedro Perulapán', 4),
(65, 'San Rafael Cedros', 4),
(66, 'San Ramón', 4),
(67, 'Santa Cruz Analquito', 4),
(68, 'Santa Cruz Michapa', 4),
(69, 'Suchitoto', 4),
(70, 'Tenancingo', 4),
(71, 'Santa Tecla', 5),
(72, 'Antiguo Cuscatlán', 5),
(73, 'Chiltiupán', 5),
(74, 'Ciudad Arce', 5),
(75, 'Colón', 5),
(76, 'Comasagua', 5),
(77, 'Huizúcar', 5),
(78, 'Jayaque', 5),
(79, 'Jicalapa', 5),
(80, 'La Libertad', 5),
(81, 'Nuevo Cuscatlán', 5),
(82, 'Quezaltepeque', 5),
(83, 'San Juan Opico', 5),
(84, 'Sacacoyo', 5),
(85, 'San José Villanueva', 5),
(86, 'San Matías', 5),
(87, 'San Pablo Tacachico', 5),
(88, 'Talnique', 5),
(89, 'Tamanique', 5),
(90, 'Teotepeque', 5),
(91, 'Tepecoyo', 5),
(92, 'Zaragoza', 5),
(93, 'Zacatecoluca', 6),
(94, 'Cuyultitán', 6),
(95, 'El Rosario', 6),
(96, 'Jerusalén', 6),
(97, 'Mercedes La Ceiba', 6),
(98, 'Olocuilta', 6),
(99, 'Paraíso de Osorio', 6),
(100, 'San Antonio Masahuat', 6),
(101, 'San Emigdio', 6),
(102, 'San Francisco Chinameca', 6),
(103, 'San Pedro Masahuat', 6),
(104, 'San Juan Nonualco', 6),
(105, 'San Juan Talpa', 6),
(106, 'San Juan Tepezontes', 6),
(107, 'San Luis La Herradura', 6),
(108, 'San Luis Talpa', 6),
(109, 'San Miguel Tepezontes', 6),
(110, 'San Pedro Nonualco', 6),
(111, 'San Rafael Obrajuelo', 6),
(112, 'Santa María Ostuma', 6),
(113, 'Santiago Nonualco', 6),
(114, 'Tapalhuaca', 6),
(115, 'La Unión', 7),
(116, 'Anamorós', 7),
(117, 'Bolívar', 7),
(118, 'Concepción de Oriente', 7),
(119, 'Conchagua', 7),
(120, 'El Carmen', 7),
(121, 'El Sauce', 7),
(122, 'Intipucá', 7),
(123, 'Lislique', 7),
(124, 'Meanguera del Golfo', 7),
(125, 'Nueva Esparta', 7),
(126, 'Pasaquina', 7),
(127, 'Polorós', 7),
(128, 'San Alejo', 7),
(129, 'San José', 7),
(130, 'Santa Rosa de Lima', 7),
(131, 'Yayantique', 7),
(132, 'Yucuaiquín', 7),
(133, 'San Francisco Gotera', 8),
(134, 'Arambala', 8),
(135, 'Cacaopera', 8),
(136, 'Chilanga', 8),
(137, 'Corinto', 8),
(138, 'Delicias de Concepción', 8),
(139, 'El Divisadero', 8),
(140, 'El Rosario', 8),
(141, 'Gualococti', 8),
(142, 'Guatajiagua', 8),
(143, 'Joateca', 8),
(144, 'Jocoaitique', 8),
(145, 'Jocoro', 8),
(146, 'Lolotiquillo', 8),
(147, 'Meanguera', 8),
(148, 'Osicala', 8),
(149, 'Perquín', 8),
(150, 'San Carlos', 8),
(151, 'San Fernando', 8),
(152, 'San Isidro', 8),
(153, 'San Simón', 8),
(154, 'Sensembra', 8),
(155, 'Sociedad', 8),
(156, 'Torola', 8),
(157, 'Yamabal', 8),
(158, 'Yoloaiquín', 8),
(159, 'San Miguel', 9),
(160, 'Carolina', 9),
(161, 'Chapeltique', 9),
(162, 'Chinameca', 9),
(163, 'Chirilagua', 9),
(164, 'Ciudad Barrios', 9),
(165, 'Comacarán', 9),
(166, 'El Tránsito', 9),
(167, 'Lolotique', 9),
(168, 'Moncagua', 9),
(169, 'Nueva Guadalupe', 9),
(170, 'Nuevo Edén de San Juan', 9),
(171, 'Quelepa', 9),
(172, 'San Antonio', 9),
(173, 'San Gerardo', 9),
(174, 'San Jorge', 9),
(175, 'San Luis de la Reina', 9),
(176, 'San Rafael Oriente', 9),
(177, 'Sesori', 9),
(178, 'Uluazapa', 9),
(179, 'San Salvador', 10),
(180, 'Aguilares', 10),
(181, 'Apopa', 10),
(182, 'Ayutuxtepeque', 10),
(183, 'Cuscatancingo', 10),
(184, 'Delgado', 10),
(185, 'El Paisnal', 10),
(186, 'Guazapa', 10),
(187, 'Ilopango', 10),
(188, 'Mejicanos', 10),
(189, 'Nejapa', 10),
(190, 'Panchimalco', 10),
(191, 'Rosario de Mora', 10),
(192, 'San Marcos', 10),
(193, 'San Martín', 10),
(194, 'Santiago Texacuangos', 10),
(195, 'Santo Tomás', 10),
(196, 'Soyapango', 10),
(197, 'Tonacatepeque', 10),
(198, 'San Vicente', 11),
(199, 'Apastepeque', 11),
(200, 'Guadalupe', 11),
(201, 'San Cayetano Istepeque', 11),
(202, 'San Esteban Catarina', 11),
(203, 'San Ildefonso', 11),
(204, 'San Lorenzo', 11),
(205, 'San Sebastián', 11),
(206, 'Santa Clara', 11),
(207, 'Santo Domingo', 11),
(208, 'Tecoluca', 11),
(209, 'Tepetitán', 11),
(210, 'Verapaz', 11),
(211, 'Santa Ana', 12),
(212, 'Candelaria de la Frontera', 12),
(213, 'Chalchuapa', 12),
(214, 'Coatepeque', 12),
(215, 'El Congo', 12),
(216, 'El Porvenir', 12),
(217, 'Masahuat', 12),
(218, 'Metapán', 12),
(219, 'San Antonio Pajonal', 12),
(220, 'San Sebastián Salitrillo', 12),
(221, 'Santa Rosa Guachipilín', 12),
(222, 'Santiago de la Frontera', 12),
(223, 'Texistepeque', 12),
(224, 'Sonsonate', 13),
(225, 'Acajutla', 13),
(226, 'Armenia', 13),
(227, 'Caluco', 13),
(228, 'Cuisnahuat', 13),
(229, 'Izalco', 13),
(230, 'Juayúa', 13),
(231, 'Nahuizalco', 13),
(232, 'Nahulingo', 13),
(233, 'Salcoatitán', 13),
(234, 'San Antonio del Monte', 13),
(235, 'San Julián', 13),
(236, 'Santa Catarina Masahuat', 13),
(237, 'Santa Isabel Ishuatán', 13),
(238, 'Santo Domingo de Guzmán', 13),
(239, 'Sonzacate', 13),
(240, 'Usulután', 14),
(241, 'Alegría', 14),
(242, 'Berlín', 14),
(243, 'California', 14),
(244, 'Concepción Batres', 14),
(245, 'El Triunfo', 14),
(246, 'Ereguayquín', 14),
(247, 'Estanzuelas', 14),
(248, 'Jiquilisco', 14),
(249, 'Jucuapa', 14),
(250, 'Jucuarán', 14),
(251, 'Mercedes Umaña', 14),
(252, 'Nueva Granada', 14),
(253, 'Ozatlán', 14),
(254, 'Puerto El Triunfo', 14),
(255, 'San Agustín', 14),
(256, 'San Buenaventura', 14),
(257, 'San Dionisio', 14),
(258, 'San Francisco Javier', 14),
(259, 'Santa Elena', 14),
(260, 'Santa María', 14),
(261, 'Santiago de María', 14),
(262, 'Tecapán', 14);
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `usuario`
--
CREATE TABLE `usuario` (
`idUsuario` int(11) NOT NULL,
`nombreUsuario` varchar(50) NOT NULL,
`password` varchar(50) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Volcado de datos para la tabla `usuario`
--
INSERT INTO `usuario` (`idUsuario`, `nombreUsuario`, `password`) VALUES
(1, 'alberto.grande', 'd812dcb0c98fed47d8aaf144b8886910e7815baf');
--
-- Índices para tablas volcadas
--
--
-- Indices de la tabla `asociado`
--
ALTER TABLE `asociado`
ADD PRIMARY KEY (`idAsociado`),
ADD KEY `codInfoUsuario` (`codInfoUsuario`),
ADD KEY `codLocalizacion` (`codLocalizacion`),
ADD KEY `codEstadoCivil` (`codEstadoCivil`);
--
-- Indices de la tabla `departamento`
--
ALTER TABLE `departamento`
ADD PRIMARY KEY (`idDepartamento`);
--
-- Indices de la tabla `estadoCivil`
--
ALTER TABLE `estadoCivil`
ADD PRIMARY KEY (`idEstadoCivil`);
--
-- Indices de la tabla `infoUsuario`
--
ALTER TABLE `infoUsuario`
ADD PRIMARY KEY (`idInfoUsuario`),
ADD KEY `codUsuario` (`codUsuario`);
--
-- Indices de la tabla `localizacion`
--
ALTER TABLE `localizacion`
ADD PRIMARY KEY (`idLocalizacion`),
ADD KEY `codDepartamento` (`codDepartamento`),
ADD KEY `codMunicipio` (`codMunicipio`);
--
-- Indices de la tabla `municipio`
--
ALTER TABLE `municipio`
ADD PRIMARY KEY (`idMunicipio`),
ADD KEY `codDepartamento` (`codDepartamento`);
--
-- Indices de la tabla `usuario`
--
ALTER TABLE `usuario`
ADD PRIMARY KEY (`idUsuario`);
--
-- AUTO_INCREMENT de las tablas volcadas
--
--
-- AUTO_INCREMENT de la tabla `asociado`
--
ALTER TABLE `asociado`
MODIFY `idAsociado` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;
--
-- AUTO_INCREMENT de la tabla `departamento`
--
ALTER TABLE `departamento`
MODIFY `idDepartamento` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=15;
--
-- AUTO_INCREMENT de la tabla `estadoCivil`
--
ALTER TABLE `estadoCivil`
MODIFY `idEstadoCivil` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;
--
-- AUTO_INCREMENT de la tabla `infoUsuario`
--
ALTER TABLE `infoUsuario`
MODIFY `idInfoUsuario` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
--
-- AUTO_INCREMENT de la tabla `localizacion`
--
ALTER TABLE `localizacion`
MODIFY `idLocalizacion` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=14;
--
-- AUTO_INCREMENT de la tabla `municipio`
--
ALTER TABLE `municipio`
MODIFY `idMunicipio` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=263;
--
-- AUTO_INCREMENT de la tabla `usuario`
--
ALTER TABLE `usuario`
MODIFY `idUsuario` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
--
-- Restricciones para tablas volcadas
--
--
-- Filtros para la tabla `asociado`
--
ALTER TABLE `asociado`
ADD CONSTRAINT `asociado_ibfk_1` FOREIGN KEY (`codLocalizacion`) REFERENCES `localizacion` (`idLocalizacion`) ON DELETE NO ACTION ON UPDATE CASCADE,
ADD CONSTRAINT `asociado_ibfk_2` FOREIGN KEY (`codInfoUsuario`) REFERENCES `infoUsuario` (`idInfoUsuario`) ON DELETE NO ACTION ON UPDATE CASCADE,
ADD CONSTRAINT `asociado_ibfk_3` FOREIGN KEY (`codEstadoCivil`) REFERENCES `estadoCivil` (`idEstadoCivil`) ON DELETE NO ACTION ON UPDATE CASCADE;
--
-- Filtros para la tabla `infoUsuario`
--
ALTER TABLE `infoUsuario`
ADD CONSTRAINT `infousuario_ibfk_1` FOREIGN KEY (`codUsuario`) REFERENCES `usuario` (`idUsuario`) ON DELETE NO ACTION ON UPDATE CASCADE;
--
-- Filtros para la tabla `localizacion`
--
ALTER TABLE `localizacion`
ADD CONSTRAINT `localizacion_ibfk_1` FOREIGN KEY (`codMunicipio`) REFERENCES `municipio` (`idMunicipio`) ON DELETE NO ACTION ON UPDATE CASCADE,
ADD CONSTRAINT `localizacion_ibfk_2` FOREIGN KEY (`codDepartamento`) REFERENCES `departamento` (`idDepartamento`) ON DELETE NO ACTION ON UPDATE CASCADE;
|
/* tbluser
This table holds registred users data.
*/
DROP TABLE IF EXISTS tbrecipeimages, tblrecipesteps, tblrecipeingredients, tblrecipe, tbluser;
CREATE TABLE `recipe`.`tbluser` (
`user_id` INT NOT NULL AUTO_INCREMENT,
`username` VARCHAR(45) NULL,
`pass` VARCHAR(50) NULL,
`email_address` VARCHAR(500) NULL,
`FirstName` VARCHAR(100) NULL,
`MiddleName` VARCHAR(100) NULL,
`LastName` VARCHAR(100) NULL,
`CreatedDate` DATETIME NULL,
`LastUpdatedDate` DATETIME NULL,
PRIMARY KEY (`user_id`));
/* tblrecipecategory
This table holds data from pre defined as well user defined categories.
*/
DROP TABLE IF EXISTS tblrecipe, tblrecipecategory;
CREATE TABLE `recipe`.`tblrecipecategory` (
`Cat_id` INT NOT NULL AUTO_INCREMENT,
`Cat_name` VARCHAR(100) NOT NULL,
`CreatedDate` DATETIME NULL DEFAULT now(),
`CreatedBy` INT NULL,
`LastUpdatedDate` DATETIME NULL DEFAULT now(),
`LastUpdatedBy` INT NULL,
PRIMARY KEY (`Cat_id`));
/* tblrecipe
Core table that hold all the Recipies
*/
DROP TABLE IF EXISTS tblrecipe;
CREATE TABLE `recipe`.`tblrecipe` (
`Recipe_id` INT NOT NULL AUTO_INCREMENT,
`Recipe_name` VARCHAR(100) NOT NULL,
`cat_id` INT NULL,
`desc` LONGTEXT NULL,
`cusine_id` INT NULL,
`spice_level_1to10` INT NULL,
`owner_id` INT NULL,
`CreatedDate` DATETIME NULL,
`LastUpdatedDate` DATETIME NULL,
PRIMARY KEY (`Recipe_id`),
UNIQUE INDEX `Recipe_name_UNIQUE` (`Recipe_name` ASC),
INDEX `fk_tblrecipe_tblrecipecategory_cat_id_idx` (`cat_id` ASC),
CONSTRAINT `fk_tblrecipe_tblrecipecategory_cat_id`
FOREIGN KEY (`cat_id`)
REFERENCES `recipe`.`tblrecipecategory` (`Cat_id`)
ON DELETE RESTRICT
ON UPDATE RESTRICT);
ALTER TABLE `recipe`.`tblrecipe`
ADD INDEX `fk_tblrecipe_tbluser_idx` (`owner_id` ASC);
ALTER TABLE `recipe`.`tblrecipe`
ADD CONSTRAINT `fk_tblrecipe_tbluser`
FOREIGN KEY (`owner_id`)
REFERENCES `recipe`.`tbluser` (`user_id`)
ON DELETE RESTRICT
ON UPDATE RESTRICT;
DROP TABLE IF EXISTS tblrecipeingredients;
CREATE TABLE `recipe`.`tblrecipeingredients` (
`Ing_id` INT NOT NULL AUTO_INCREMENT,
`Ing_name` VARCHAR(100) NULL,
`recipe_id` INT NULL,
`quantity` VARCHAR(100) NULL,
`image_url` VARCHAR(3000) NULL,
`CreatedDate` DATETIME NULL,
PRIMARY KEY (`Ing_id`),
INDEX `fk_tblrecipeingredients_tblrecipe_recipe_id_idx` (`recipe_id` ASC),
CONSTRAINT `fk_tblrecipeingredients_tblrecipe_recipe_id`
FOREIGN KEY (`recipe_id`)
REFERENCES `recipe`.`tblrecipe` (`Recipe_id`)
ON DELETE RESTRICT
ON UPDATE RESTRICT);
DROP TABLE IF EXISTS tblrecipesteps;
CREATE TABLE `recipe`.`tblrecipesteps` (
`step_id` INT NOT NULL AUTO_INCREMENT,
`recipe_id` INT NULL,
`step_desc` TEXT NULL,
`CreatedDate` DATETIME NULL,
`LastUpdatedDate` DATETIME NULL,
PRIMARY KEY (`step_id`),
INDEX `fk_tblrecipesteps_tblrecipe_recipe_id_idx` (`recipe_id` ASC),
CONSTRAINT `fk_tblrecipesteps_tblrecipe_recipe_id`
FOREIGN KEY (`recipe_id`)
REFERENCES `recipe`.`tblrecipe` (`Recipe_id`)
ON DELETE RESTRICT
ON UPDATE RESTRICT);
DROP TABLE IF EXISTS tbrecipeimages;
CREATE TABLE `recipe`.`tbrecipeimages` (
`img_id` INT NOT NULL AUTO_INCREMENT,
`recipe_id` INT NULL,
`image_url` VARCHAR(3000) NULL,
`CreatedDate` DATETIME NULL,
PRIMARY KEY (`img_id`),
INDEX `fk_tbrecipeimages_tblrecipe_recipe_id_idx` (`recipe_id` ASC),
CONSTRAINT `fk_tbrecipeimages_tblrecipe_recipe_id`
FOREIGN KEY (`recipe_id`)
REFERENCES `recipe`.`tblrecipe` (`Recipe_id`)
ON DELETE RESTRICT
ON UPDATE RESTRICT);
|
-- phpMyAdmin SQL Dump
-- version 5.0.2
-- https://www.phpmyadmin.net/
--
-- Host: 127.0.0.1
-- Generation Time: Jan 27, 2021 at 06:35 AM
-- Server version: 10.5.5-MariaDB
-- PHP Version: 7.3.11
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
START TRANSACTION;
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
--
-- Database: `shopping`
--
-- --------------------------------------------------------
--
-- Table structure for table `customer`
--
CREATE TABLE `customer` (
`customer_id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `customer`
--
INSERT INTO `customer` (`customer_id`) VALUES
(10001),
(10002);
-- --------------------------------------------------------
--
-- Table structure for table `history`
--
CREATE TABLE `history` (
`history_id` int(30) NOT NULL,
`customer_id` varchar(30) NOT NULL,
`total` int(11) NOT NULL,
`bill_detail` varchar(1000) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
-- --------------------------------------------------------
--
-- Table structure for table `product`
--
CREATE TABLE `product` (
`product_id` int(11) NOT NULL,
`product_des` varchar(50) NOT NULL,
`unit_price` int(11) NOT NULL,
`quantity` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `product`
--
INSERT INTO `product` (`product_id`, `product_des`, `unit_price`, `quantity`) VALUES
(200001, 'High Speed router', 3000, 15),
(200002, '27inch 4K Monitor', 6500, 996),
(200003, 'RGB keyboard', 1200, 98),
(200004, '15.6 inchMacBook Pro', 23000, 20),
(200005, 'IPad', 6000, 20),
(200006, 'IPad mini', 4000, 20),
(200007, 'IPad Pro', 9500, 20),
(200008, 'IOT door Sensor', 200, 800),
(200009, 'IOT Power switch', 1000, 1000),
(200010, 'IOT Temperature Sensor', 1000, 1000);
--
-- Indexes for dumped tables
--
--
-- Indexes for table `customer`
--
ALTER TABLE `customer`
ADD PRIMARY KEY (`customer_id`);
--
-- Indexes for table `history`
--
ALTER TABLE `history`
ADD PRIMARY KEY (`history_id`);
--
-- Indexes for table `product`
--
ALTER TABLE `product`
ADD PRIMARY KEY (`product_id`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `customer`
--
ALTER TABLE `customer`
MODIFY `customer_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=10003;
--
-- AUTO_INCREMENT for table `history`
--
ALTER TABLE `history`
MODIFY `history_id` int(30) NOT NULL AUTO_INCREMENT;
COMMIT;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
CREATE TABLE Employees (
Id INT PRIMARY KEY IDENTITY,
FirstName NVARCHAR(17) NOT NULL,
LastName NVARCHAR(17) NOT NULL,
Title NVARCHAR(30),
Notes NVARCHAR(MAX)
)
INSERT Employees (FirstName, LastName, Notes) VALUES
('Bruce', 'Wayne', NULL),
('Stanimir', 'Stanimirov', NULL),
('Roberto', 'Firmino', NULL)
CREATE TABLE Customers (
AccountNumber INT PRIMARY KEY IDENTITY,
FirstName NVARCHAR(17) NOT NULL,
LastName NVARCHAR(17) NOT NULL,
PhoneNumber VARCHAR(17) NOT NULL,
EmergencyName NVARCHAR(17),
EmergencyNumber VARCHAR(17),
Notes NVARCHAR(MAX)
)
INSERT Customers (FirstName, LastName, PhoneNumber) VALUES
('Andrwe', 'Robertson', '0879567892'),
('Steven', 'Gerrard', '0879567332'),
('Sadio', 'Mane', '0879566666')
CREATE TABLE RoomStatus(
Id INT PRIMARY KEY IDENTITY NOT NULL,
RoomStatus BIT,
Notes VARCHAR(MAX)
)
INSERT INTO RoomStatus(RoomStatus, Notes)
VALUES
(1,'Refill the minibar'),
(2,'Check the towels'),
(3,'Move the bed for couple')
CREATE TABLE RoomTypes (
RoomType NVARCHAR(20) PRIMARY KEY NOT NULL,
Notes NVARCHAR(MAX)
)
INSERT RoomTypes (RoomType) VALUES
('Large'),
('President Apartment'),
('Double')
CREATE TABLE BedTypes (
BedType NVARCHAR(20) PRIMARY KEY NOT NULL,
Notes NVARCHAR(MAX)
)
INSERT BedTypes (BedType) VALUES
('Queen'),
('King'),
('Person and a half')
CREATE TABLE Rooms (
RoomNumber INT PRIMARY KEY IDENTITY,
RoomType NVARCHAR(20) FOREIGN KEY REFERENCES RoomTypes(RoomType) NOT NULL,
BedType NVARCHAR(20) FOREIGN KEY REFERENCES BedTypes(BedType) NOT NULL,
Rate DECIMAL(7, 2) NOT NULL,
RoomStatus BIT NOT NULL,
Notes NVARCHAR(MAX)
)
INSERT Rooms (RoomType, BedType, Rate, RoomStatus) VALUES
('Large', 'Queen', 1234.55, 1),
('President Apartment', 'King', 5534.55, 0),
('Double', 'Queen', 789.55, 1)
CREATE TABLE Payments (
Id INT PRIMARY KEY IDENTITY,
EmployeeId INT FOREIGN KEY REFERENCES Employees(Id) NOT NULL,
PaymentDate SMALLDATETIME NOT NULL,
AccountNumber INT FOREIGN KEY REFERENCES Customers(AccountNumber) NOT NULL,
FirstDateOccupied DATE NOT NULL,
LastDateOccupied DATE NOT NULL,
TotalDays AS DATEDIFF(DAY, FirstDateOccupied, LastDateOccupied),
AmountCharged DECIMAL (8, 2) NOT NULL,
TaxRate DECIMAL (5, 2),
TaxAmount AS (AmountCharged * (TaxRate/100)),
PaymentTotal AS (AmountCharged * (TaxRate/100)) + AmountCharged,
Notes NVARCHAR(MAX)
)
INSERT Payments (EmployeeId, PaymentDate, AccountNumber, FirstDateOccupied, LastDateOccupied, AmountCharged, TaxRate) VALUES
(2, '2019-10-01', 1, '2019-10-01', '2019-10-10', 10034.55, 20.50),
(3, '2019-09-18', 3, '2019-09-22', '2019-09-27', 5000.55, 32.50),
(1, '2017-01-01', 2, '2017-01-19', '2017-01-23', 1245.55, 12.37)
CREATE TABLE Occupancies (
Id INT PRIMARY KEY IDENTITY,
EmployeeId INT FOREIGN KEY REFERENCES Employees(Id) NOT NULL,
DateOccupied DATE NOT NULL,
AccountNumber INT FOREIGN KEY REFERENCES Customers(AccountNumber) NOT NULL,
RoomNumber INT FOREIGN KEY REFERENCES Rooms(RoomNumber) NOT NULL,
RateApplied DECIMAL (8, 2) NOT NULL,
PhoneCharge DECIMAL (5, 2),
Notes NVARCHAR(MAX)
)
INSERT Occupancies(EmployeeId, DateOccupied, AccountNumber, RoomNumber, RateApplied, PhoneCharge) VALUES
(2, '2019-10-01', 1, 2, 20.50, 9),
(3, '2019-09-18', 3, 2, 32.50, 5),
(1, '2017-01-01', 2, 3, 12.37, 4)
|
--0insert with check option
delete form employee_temp where department_id in (select department_id from departments d natural join locations lo where lo.country_id='UK');
insert into (select d.department_id , d.department_name , d.manager_id,d.location_id
from departments d where location_id = (select location_id from locations l where l.city = 'Oxford') with check option
) values (2234,'sdfds',203,2500);
-- Corelated delete and update
delete from employee_temp where department_id in (select department_id from departments d natural join locations lo where lo.country_id='UK');
update employee_temp temp set (temp.salary , temp.commission_pct) = (select avg(emp.salary), avg(emp.commission_pct) from employee_temp emp join departments d on emp.department_id = d.department_id
where temp.department_id = emp.department_id group by d.department_id);
|
-- CreateEnum
CREATE TYPE "SkillCatergory" AS ENUM ('PROG_LANG', 'PROG_TECH', 'OTHER');
-- CreateTable
CREATE TABLE "Link" (
"id" SERIAL NOT NULL,
"url" TEXT NOT NULL,
"title" TEXT,
"description" TEXT,
"imageUrl" TEXT,
PRIMARY KEY ("id")
);
-- CreateTable
CREATE TABLE "Skill" (
"id" SERIAL NOT NULL,
"name" TEXT NOT NULL,
"category" "SkillCatergory" NOT NULL DEFAULT E'OTHER',
"projectId" INTEGER NOT NULL,
PRIMARY KEY ("id")
);
-- CreateTable
CREATE TABLE "Project" (
"id" SERIAL NOT NULL,
"name" TEXT NOT NULL,
"description" TEXT,
"initial_date" TIMESTAMP(3),
"end_date" TIMESTAMP(3),
"other_info" TEXT,
"userid" INTEGER NOT NULL,
"project_link_id" INTEGER NOT NULL,
"project_devlink_id" INTEGER NOT NULL,
PRIMARY KEY ("id")
);
-- CreateIndex
CREATE UNIQUE INDEX "Project_project_link_id_unique" ON "Project"("project_link_id");
-- CreateIndex
CREATE UNIQUE INDEX "Project_project_devlink_id_unique" ON "Project"("project_devlink_id");
-- AddForeignKey
ALTER TABLE "Skill" ADD FOREIGN KEY ("projectId") REFERENCES "Project"("id") ON DELETE CASCADE ON UPDATE CASCADE;
-- AddForeignKey
ALTER TABLE "Project" ADD FOREIGN KEY ("userid") REFERENCES "users"("id") ON DELETE CASCADE ON UPDATE CASCADE;
-- AddForeignKey
ALTER TABLE "Project" ADD FOREIGN KEY ("project_link_id") REFERENCES "Link"("id") ON DELETE CASCADE ON UPDATE CASCADE;
-- AddForeignKey
ALTER TABLE "Project" ADD FOREIGN KEY ("project_devlink_id") REFERENCES "Link"("id") ON DELETE CASCADE ON UPDATE CASCADE;
|
#Номенклатурни данни за липсващи имунизации - да/не
INSERT INTO school_health.confirmation_flag (confirmation_flag_code, confirmation_flag_value) VALUES ('Y','ДА');
INSERT INTO school_health.confirmation_flag (confirmation_flag_code, confirmation_flag_value) VALUES ('N','НЕ');
|
.headers on
.nullvalue '-null-'
.mode csv
-- -- 01
SELECT DISTINCT taken, quant FROM Survey;
|
-- phpMyAdmin SQL Dump
-- version phpStudy 2014
-- http://www.phpmyadmin.net
--
-- 主机: localhost
-- 生成日期: 2015 年 09 月 18 日 17:44
-- 服务器版本: 5.5.40
-- PHP 版本: 5.3.29
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 */;
--
-- 数据库: `yvvyshop`
--
-- --------------------------------------------------------
--
-- 表的结构 `user_group`
--
CREATE TABLE IF NOT EXISTS `user_group` (
`group_id` int(11) NOT NULL AUTO_INCREMENT,
`group_name` varchar(36) NOT NULL,
`controller` varchar(36) NOT NULL,
PRIMARY KEY (`group_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=11 ;
--
-- 转存表中的数据 `user_group`
--
INSERT INTO `user_group` (`group_id`, `group_name`, `controller`) VALUES
(1, '全部权限', 'all'),
(2, '商品分类', 'catalogue'),
(3, '前端用户', 'customer'),
(4, '新闻管理', 'news'),
(5, '线下店铺', 'shop'),
(6, 'spu管理', 'spu'),
(7, 'sku管理', 'goods'),
(8, '后台帐号', 'user'),
(9, '权限管理', 'user_group'),
(10, '广告管理', 'banner');
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
DROP ROLE IF EXISTS demo;
create user demo with password 'demo';
drop database if exists amazingdemo;
create database amazingdemo with owner demo;
|
select city, count(city)
from venues
group by (city)
order by 2 DESC
LIMIT 5;
|
/* Formatted on 17/06/2014 18:03:06 (QP5 v5.227.12220.39754) */
CREATE OR REPLACE FORCE VIEW MCRE_OWN.V_MCRE0_APP_RICERCA_ABI_NOME
(
COD_COMPARTO,
COD_RAMO_CALCOLATO,
COD_ABI_ISTITUTO,
DESC_ISTITUTO,
COD_ABI_CARTOLARIZZATO,
COD_NDG,
COD_SNDG,
DESC_NOME_CONTROPARTE,
COD_GRUPPO_ECONOMICO,
VAL_ANA_GRE,
ID_UTENTE,
COGNOME,
NOME,
COD_GESTORE_MKT,
DESC_ANAG_GESTORE_MKT,
COD_STATO,
COD_PROCESSO,
DTA_DECORRENZA_STATO,
VAL_TOT_UTILIZZO,
VAL_TOT_ACCORDATO,
VAL_TOT_SOSTITUZIONI,
VAL_MAU,
COD_GRUPPO_LEGAME,
COD_GRUPPO_SUPER,
FLG_OUTSOURCING,
FLG_TARGET,
ESISTE_DEL_ATTIVA,
ESISTE_DEL_ATTIVA_SNDG
)
AS
WITH v0
AS (SELECT cod_sndg
FROM (SELECT cod_sndg, desc_nome_controparte
FROM t_mcre0_app_anagrafica_gruppo
WHERE UPPER (desc_nome_controparte) LIKE
'%'
|| SYS_CONTEXT ('userenv', 'client_info')
|| '%')
WHERE ( UPPER (desc_nome_controparte) LIKE
SYS_CONTEXT ('userenv', 'client_info') || '%'
OR UPPER (desc_nome_controparte) LIKE
'% '
|| SYS_CONTEXT ('userenv', 'client_info')
|| '%')),
v1
AS (SELECT -- 111111 v1 - solo IN
-- 111121 v1.2- esiste_del_sndg
-- 111121 - aggiunte ssostituzioni
cod_comparto,
x.cod_ramo_calcolato,
x.cod_abi_istituto,
x.desc_istituto,
x.cod_abi_cartolarizzato,
x.cod_ndg,
x.cod_sndg,
x.desc_nome_controparte,
NULLIF (x.cod_gruppo_economico, '-1') cod_gruppo_economico,
x.desc_gruppo_economico val_ana_gre,
NULLIF (x.id_utente, -1) id_utente,
u.cognome,
u.nome,
x.cod_gestore_mkt,
x.desc_anag_gestore_mkt,
NULLIF (x.cod_stato, '-1') cod_stato,
x.cod_processo,
x.dta_decorrenza_stato,
x.scsb_uti_tot val_tot_utilizzo,
x.scsb_acc_tot val_tot_accordato,
x.scsb_uti_sostituzioni val_tot_sostituzioni,
x.gb_val_mau val_mau,
x.cod_gruppo_legame,
x.cod_gruppo_super,
x.flg_outsourcing,
x.flg_target,
CASE
WHEN x.cod_stato = 'IN'
THEN
CASE
WHEN (EXISTS
(SELECT cod_abi, cod_ndg
FROM t_mcrei_app_delibere d
WHERE x.cod_abi_istituto =
d.cod_abi
AND x.cod_ndg = d.cod_ndg
AND d.flg_attiva = '1'
AND d.cod_fase_delibera NOT IN
('AN', 'VA') --13dic
AND d.flg_no_delibera = 0))
THEN
'Y'
ELSE
'N'
END
ELSE
CASE
WHEN (EXISTS
(SELECT cod_abi, cod_ndg
FROM t_mcrei_app_delibere d
WHERE x.cod_abi_istituto =
d.cod_abi
AND x.cod_ndg = d.cod_ndg
AND d.cod_microtipologia_delib IN
('CI', 'CS')
AND d.flg_attiva = '1'
AND d.cod_fase_delibera NOT IN
('AN', 'VA') --13dic
AND d.flg_no_delibera = 0))
THEN
'Y'
ELSE
'N'
END
END
AS esiste_del_attiva,
CASE
WHEN EXISTS
(SELECT cod_abi, cod_ndg
FROM t_mcrei_app_delibere d
WHERE x.cod_sndg = d.cod_sndg
AND d.flg_attiva = '1'
AND d.cod_fase_delibera NOT IN
('AN', 'VA') --13dic
AND d.flg_no_delibera = 0)
THEN
'Y'
ELSE
'N'
END
AS esiste_del_attiva_sndg
FROM v_mcre0_app_upd_fields_pall x, t_mcre0_app_utenti u
WHERE x.id_utente = u.id_utente)
SELECT v1."COD_COMPARTO",
v1."COD_RAMO_CALCOLATO",
v1."COD_ABI_ISTITUTO",
v1."DESC_ISTITUTO",
v1."COD_ABI_CARTOLARIZZATO",
v1."COD_NDG",
v1."COD_SNDG",
v1."DESC_NOME_CONTROPARTE",
v1."COD_GRUPPO_ECONOMICO",
v1."VAL_ANA_GRE",
v1."ID_UTENTE",
v1."COGNOME",
v1."NOME",
v1."COD_GESTORE_MKT",
v1."DESC_ANAG_GESTORE_MKT",
v1."COD_STATO",
v1."COD_PROCESSO",
v1."DTA_DECORRENZA_STATO",
v1."VAL_TOT_UTILIZZO",
v1."VAL_TOT_ACCORDATO",
v1."VAL_TOT_SOSTITUZIONI",
v1."VAL_MAU",
v1."COD_GRUPPO_LEGAME",
v1."COD_GRUPPO_SUPER",
v1."FLG_OUTSOURCING",
v1."FLG_TARGET",
v1."ESISTE_DEL_ATTIVA",
v1."ESISTE_DEL_ATTIVA_SNDG"
FROM v1, v0
WHERE v1.cod_sndg = v0.cod_sndg;
GRANT DELETE, INSERT, REFERENCES, SELECT, UPDATE, ON COMMIT REFRESH, QUERY REWRITE, DEBUG, FLASHBACK, MERGE VIEW ON MCRE_OWN.V_MCRE0_APP_RICERCA_ABI_NOME TO MCRE_USR;
|
.headers on
.nullvalue '-null-'
.mode csv
-- -- 01
SELECT min(dated) FROM Visited
WHERE dated IS NOT NULL;
|
DROP EXTENSION IF EXISTS cstore_fdw;
CREATE EXTENSION cstore_fdw;
DROP SERVER IF EXISTS cstore_server;
CREATE SERVER cstore_server FOREIGN DATA WRAPPER cstore_fdw;
DROP FOREIGN TABLE IF EXISTS cstore_data;
CREATE FOREIGN TABLE cstore_data (
date date NOT NULL,
category text NOT NULL,
value_1 int NOT NULL,
value_2 int NOT NULL,
value_3 int NOT NULL,
value_4 int NOT NULL,
value_5 int NOT NULL,
value_6 int NOT NULL,
value_7 int NOT NULL,
value_8 int NOT NULL,
value_9 int NOT NULL,
value_10 int NOT NULL
)
SERVER cstore_server;
COPY cstore_data FROM '/home/kd/zbd/zad2/data/data-60-10-10.csv' (FORMAT 'csv');
ANALYZE cstore_data;
\echo 'query1 Execution Time'
EXPLAIN ANALYZE
SELECT
SUM(value_3)
FROM
cstore_data
WHERE
date BETWEEN '2020-01-05' AND '2020-01-08';
\echo 'query2 Execution Time'
EXPLAIN ANALYZE
SELECT
SUM(value_3)
FROM
cstore_data
WHERE
date BETWEEN '2020-01-05' AND '2020-01-08' AND
category = 'A';
DROP FOREIGN TABLE IF EXISTS cstore_data;
DROP SERVER IF EXISTS cstore_server;
DROP EXTENSION IF EXISTS cstore_fdw;
|
CALL add_entry('01',2019,0,200,0.5,0);
|
-- phpMyAdmin SQL Dump
-- version 5.0.1
-- https://www.phpmyadmin.net/
--
-- Host: 127.0.0.1
-- Generation Time: May 15, 2020 at 05:33 PM
-- Server version: 10.4.11-MariaDB
-- PHP Version: 7.4.2
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: `interiordesign_project`
--
-- --------------------------------------------------------
--
-- Table structure for table `admin`
--
CREATE TABLE `admin` (
`user_id` int(255) NOT NULL,
`user_name` varchar(255) NOT NULL,
`user_pass` varchar(255) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `admin`
--
INSERT INTO `admin` (`user_id`, `user_name`, `user_pass`) VALUES
(1, 'monim', '1234');
-- --------------------------------------------------------
--
-- Table structure for table `client`
--
CREATE TABLE `client` (
`client_id` int(255) NOT NULL,
`client_name` varchar(255) NOT NULL,
`client_email` varchar(255) NOT NULL,
`client_phone` varchar(255) NOT NULL,
`client_location` varchar(255) NOT NULL,
`client_profile` varchar(255) NOT NULL,
`client_pass` varchar(255) NOT NULL,
`room_name` varchar(255) NOT NULL,
`flag` varchar(255) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `client`
--
INSERT INTO `client` (`client_id`, `client_name`, `client_email`, `client_phone`, `client_location`, `client_profile`, `client_pass`, `room_name`, `flag`) VALUES
(1, 'monim', 'sparklingmonim@gmail.com', '', 'dhaka bangladesh', 'person.JPG', '1234', '', '1');
-- --------------------------------------------------------
--
-- Table structure for table `designer`
--
CREATE TABLE `designer` (
`designer_id` int(255) NOT NULL,
`designer_name` varchar(255) NOT NULL,
`designer_email` varchar(255) NOT NULL,
`designer_phone` varchar(255) NOT NULL,
`designer_location` varchar(255) NOT NULL,
`designer_profile` varchar(255) NOT NULL,
`designer_pass` varchar(255) NOT NULL,
`designer_dob` varchar(255) NOT NULL,
`room_name` varchar(255) NOT NULL,
`salary` varchar(255) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `designer`
--
INSERT INTO `designer` (`designer_id`, `designer_name`, `designer_email`, `designer_phone`, `designer_location`, `designer_profile`, `designer_pass`, `designer_dob`, `room_name`, `salary`) VALUES
(1, 'monim', 'monim@gmail.com', '019125485', 'tangail', 'fsd.hjsdhf', '1234', 'sdf', 'sdf', '1000'),
(2, 'monim', 'sparklingmonim@gmail.com', '01723030645', 'khilkhet,panir pamp, kalihati,tangail', 'person.JPG ', '1234', '2020-05-02', 'dining', ''),
(3, 'monim', 'sparklingmonim@gmail.com', '01723030645', 'khilkhet,panir pamp, kalihati,tangail', 'person.JPG ', '1234', '2020-05-15', 'living', ''),
(4, 'monim', 'sparklingmonim@gmail.com', '01723030645', 'khilkhet,panir pamp, kalihati,tangail', 'IMG_20180917_075839.jpg ', '1234', '2020-05-02', 'office', '');
-- --------------------------------------------------------
--
-- Table structure for table `dining_room`
--
CREATE TABLE `dining_room` (
`image` varchar(255) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `dining_room`
--
INSERT INTO `dining_room` (`image`) VALUES
('person.JPG'),
('person.JPG'),
('IMG_20180917_075240.jpg'),
('20190129_174208.jpg'),
('18446536_309779719436089_5512349408863053673_n.jpg'),
('20190129_203759.jpg'),
('20190129_203759.jpg'),
('20190129_131503.jpg');
-- --------------------------------------------------------
--
-- Table structure for table `drowing`
--
CREATE TABLE `drowing` (
`image` varchar(255) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
-- --------------------------------------------------------
--
-- Table structure for table `living`
--
CREATE TABLE `living` (
`image` varchar(255) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
-- --------------------------------------------------------
--
-- Table structure for table `office`
--
CREATE TABLE `office` (
`image` varchar(255) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `office`
--
INSERT INTO `office` (`image`) VALUES
('IMG_20180927_234914.jpg');
--
-- Indexes for dumped tables
--
--
-- Indexes for table `admin`
--
ALTER TABLE `admin`
ADD PRIMARY KEY (`user_id`);
--
-- Indexes for table `client`
--
ALTER TABLE `client`
ADD PRIMARY KEY (`client_id`);
--
-- Indexes for table `designer`
--
ALTER TABLE `designer`
ADD PRIMARY KEY (`designer_id`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `client`
--
ALTER TABLE `client`
MODIFY `client_id` int(255) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
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 */;
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.