text stringlengths 6 9.38M |
|---|
--
-- PostgreSQL database dump
--
-- Started on 2002-01-01 00:09:28 BRST
SET client_encoding = 'UTF8';
SET check_function_bodies = false;
SET client_min_messages = warning;
--
-- TOC entry 1529 (class 0 OID 0)
-- Dependencies: 5
-- Name: SCHEMA public; Type: COMMENT; Schema: -; Owner: postgres
--
COMMENT ON SCHEMA public IS 'Standard public schema';
SET search_path = public, pg_catalog;
SET default_tablespace = '';
SET default_with_oids = false;
--
-- TOC entry 1185 (class 1259 OID 16470)
-- Dependencies: 5
-- Name: bairro; Type: TABLE; Schema: public; Owner: postgres; Tablespace:
--
CREATE TABLE bairro (
cidade_codigo integer NOT NULL,
bairro_codigo integer NOT NULL,
bairro_descricao character varying(72)
);
--
-- TOC entry 1186 (class 1259 OID 16472)
-- Dependencies: 5
-- Name: cidade; Type: TABLE; Schema: public; Owner: postgres; Tablespace:
--
CREATE TABLE cidade (
uf_codigo integer NOT NULL,
cidade_codigo integer NOT NULL,
cidade_descricao character varying(72) NOT NULL,
cidade_cep character varying(8) NOT NULL
);
--
-- TOC entry 1187 (class 1259 OID 16474)
-- Dependencies: 5
-- Name: endereco; Type: TABLE; Schema: public; Owner: postgres; Tablespace:
--
CREATE TABLE endereco (
bairro_codigo integer NOT NULL,
endereco_codigo integer NOT NULL,
endereco_cep character varying(8),
endereco_logradouro character varying(72),
endereco_complemento character varying(72)
);
--
-- TOC entry 1188 (class 1259 OID 16476)
-- Dependencies: 5
-- Name: uf; Type: TABLE; Schema: public; Owner: postgres; Tablespace:
--
CREATE TABLE uf (
uf_codigo integer NOT NULL,
uf_sigla character varying(2) NOT NULL,
uf_descricao character varying(72) NOT NULL
);
--
-- TOC entry 1189 (class 1259 OID 16478)
-- Dependencies: 1255 5
-- Name: vw_enderecos; Type: VIEW; Schema: public; Owner: postgres
--
CREATE VIEW vw_enderecos AS
SELECT a.uf_sigla, a.uf_descricao, b.cidade_codigo, b.cidade_descricao, c.bairro_codigo, c.bairro_descricao, d.endereco_logradouro, d.endereco_cep, d.endereco_complemento FROM uf a, cidade b, bairro c, endereco d WHERE (((a.uf_codigo = b.uf_codigo) AND (b.cidade_codigo = c.cidade_codigo)) AND (c.bairro_codigo = d.bairro_codigo));
--
-- TOC entry 1513 (class 2606 OID 16482)
-- Dependencies: 1185 1185
-- Name: bairropk; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace:
--
ALTER TABLE ONLY bairro
ADD CONSTRAINT bairropk PRIMARY KEY (bairro_codigo);
--
-- TOC entry 1515 (class 2606 OID 16484)
-- Dependencies: 1186 1186
-- Name: cidadepk; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace:
--
ALTER TABLE ONLY cidade
ADD CONSTRAINT cidadepk PRIMARY KEY (cidade_codigo);
--
-- TOC entry 1517 (class 2606 OID 16486)
-- Dependencies: 1187 1187
-- Name: enderecopk; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace:
--
ALTER TABLE ONLY endereco
ADD CONSTRAINT enderecopk PRIMARY KEY (endereco_codigo);
--
-- TOC entry 1520 (class 2606 OID 16488)
-- Dependencies: 1188 1188
-- Name: ufpk; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace:
--
ALTER TABLE ONLY uf
ADD CONSTRAINT ufpk PRIMARY KEY (uf_codigo);
--
-- TOC entry 1518 (class 1259 OID 16489)
-- Dependencies: 1187
-- Name: indx_cep; Type: INDEX; Schema: public; Owner: postgres; Tablespace:
--
CREATE INDEX indx_cep ON endereco USING btree (endereco_cep);
--
-- TOC entry 1525 (class 2606 OID 16490)
-- Dependencies: 1187 1185 1512
-- Name: bairrofk; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY endereco
ADD CONSTRAINT bairrofk FOREIGN KEY (bairro_codigo) REFERENCES bairro(bairro_codigo) ON DELETE CASCADE;
--
-- TOC entry 1521 (class 2606 OID 16495)
-- Dependencies: 1185 1186 1514
-- Name: cidadefk; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY bairro
ADD CONSTRAINT cidadefk FOREIGN KEY (cidade_codigo) REFERENCES cidade(cidade_codigo) ON DELETE CASCADE;
--
-- TOC entry 1522 (class 2606 OID 16500)
-- Dependencies: 1185 1186 1514
-- Name: fk74563de5fd1e63f8; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY bairro
ADD CONSTRAINT fk74563de5fd1e63f8 FOREIGN KEY (cidade_codigo) REFERENCES cidade(cidade_codigo);
--
-- TOC entry 1523 (class 2606 OID 16505)
-- Dependencies: 1186 1188 1519
-- Name: fk76794b246f2aff58; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY cidade
ADD CONSTRAINT fk76794b246f2aff58 FOREIGN KEY (uf_codigo) REFERENCES uf(uf_codigo);
--
-- TOC entry 1526 (class 2606 OID 16510)
-- Dependencies: 1187 1185 1512
-- Name: fk95d357c91accf8d8; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY endereco
ADD CONSTRAINT fk95d357c91accf8d8 FOREIGN KEY (bairro_codigo) REFERENCES bairro(bairro_codigo);
--
-- TOC entry 1524 (class 2606 OID 16515)
-- Dependencies: 1186 1188 1519
-- Name: uffk; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY cidade
ADD CONSTRAINT uffk FOREIGN KEY (uf_codigo) REFERENCES uf(uf_codigo) ON DELETE CASCADE;
--
-- TOC entry 1530 (class 0 OID 0)
-- Dependencies: 5
-- Name: public; Type: ACL; Schema: -; Owner: postgres
--
REVOKE ALL ON SCHEMA public FROM PUBLIC;
REVOKE ALL ON SCHEMA public FROM postgres;
GRANT ALL ON SCHEMA public TO postgres;
GRANT ALL ON SCHEMA public TO PUBLIC;
-- Completed on 2002-01-01 00:09:29 BRST
--
-- PostgreSQL database dump complete
--
|
---- charge (correction)
INSERT INTO RECUT.BILLOPERATION (ID,NAME,NAME_BS,TYPE_ID,D1,D2,REQ_CYCLE,REQ_READING,REQ_KWH,REQ_GEL,SEQ,DIFF_GROUP_ID) VALUES
(1011, 'netwrk', 'ÓÀÀÅÀÍÓÏ ÂÀÃÀáÃÉÓ ÂÀÃÌÏÔÀÍÀ', 4, null, null, 0, 1, 0, 0, 200001, 0); |
DELIMITER $$
USE `cci_gh_go_qa`$$
DROP PROCEDURE IF EXISTS `SPFieldStaffRegionAssignment`$$
CREATE DEFINER=`surender.sarwa`@`%` PROCEDURE `SPFieldStaffRegionAssignment`(IN pSeasonId INT(10), IN pFlag INT)
BEGIN
-- ====================================================================================
IF pFlag=1 THEN
SELECT IFNULL(FSL.seasonId,pSeasonId) AS seasonId, /* FSL.seasonGeographyConfigurationId, */ FS.fieldStaffGoId, FS.firstName, FS.lastName,
-- GROUP_CONCAT(DISTINCT SGC.superRegionId) AS superRegionId
GROUP_CONCAT(SR.superRegionName) superRegionName
FROM FieldStaffLeadershipSeason FSL
INNER JOIN SeasonGeographyConfiguration SGC ON (FSL.seasonGeographyConfigurationId= SGC.seasonGeographyConfigurationId AND FSL.seasonId= pSeasonId AND regionId IS NULL AND usStatesId IS NULL)
RIGHT JOIN FieldStaff FS ON (FSL.fieldStaffGoId= FS.fieldStaffGoId )
LEFT JOIN SuperRegion SR ON (SR.superRegionId= SGC.superRegionId)
WHERE fieldStaffTypeId=5
GROUP BY FS.fieldStaffGoId;
ELSE
IF pFlag=2 THEN
SELECT seasonId, fieldStaffGoId, firstName, lastName,
fieldStaffTypeName, GROUP_CONCAT(DISTINCT regionName) regionName, GROUP_CONCAT(DISTINCT stateCode) stateCode
FROM(
SELECT IFNULL(FSL.seasonId,pSeasonId) AS seasonId, /* FSL.seasonGeographyConfigurationId, */ FS.fieldStaffGoId,
FS.firstName, FS.lastName, FS.fieldStaffTypeId,
IF(SGC.usStatesId IS NOT NULL, NULL, R.regionId) AS regionId, IF(SGC.usStatesId IS NOT NULL, NULL, R.regionName) AS regionName,
SGC.usStatesId AS usStatesId, US.stateCode AS stateCode,
FST.fieldStaffTypeName
FROM FieldStaffLeadershipSeason FSL
INNER JOIN SeasonGeographyConfiguration SGC ON (FSL.seasonGeographyConfigurationId= SGC.seasonGeographyConfigurationId AND FSL.seasonId= pSeasonId)
RIGHT JOIN FieldStaff FS ON (FSL.fieldStaffGoId= FS.fieldStaffGoId )
LEFT JOIN Region R ON (R.regionId = SGC.regionId)
LEFT JOIN LookupUSStates US ON (US.usStatesId=SGC.usStatesId)
LEFT JOIN FieldStaffType FST ON (FST.fieldStaffTypeId = FS.fieldStaffTypeId)
WHERE FS.fieldStaffTypeId =3
-- GROUP BY FS.fieldStaffGoId
UNION ALL
SELECT IFNULL(FSL.seasonId,pSeasonId) AS seasonId, /* FSL.seasonGeographyConfigurationId, */ FS.fieldStaffGoId,
FS.firstName, FS.lastName, FS.fieldStaffTypeId,
R.regionId AS regionId, R.regionName AS regionName,
SGC.usStatesId AS usStatesId, US.stateCode AS stateCode,
FST.fieldStaffTypeName
FROM FieldStaffLeadershipSeason FSL
INNER JOIN SeasonGeographyConfiguration SGC ON (FSL.seasonGeographyConfigurationId= SGC.seasonGeographyConfigurationId AND FSL.seasonId= pSeasonId)
RIGHT JOIN FieldStaff FS ON (FSL.fieldStaffGoId= FS.fieldStaffGoId )
LEFT JOIN Region R ON (R.regionId = SGC.regionId)
LEFT JOIN LookupUSStates US ON (US.usStatesId=SGC.usStatesId)
LEFT JOIN FieldStaffType FST ON (FST.fieldStaffTypeId = FS.fieldStaffTypeId)
WHERE FS.fieldStaffTypeId =3
-- GROUP BY FS.fieldStaffGoId
) TAB1
GROUP BY fieldStaffGoId;
ELSE
IF pFlag=3 THEN
SELECT seasonId, fieldStaffGoId, firstName, lastName,
fieldStaffTypeName, GROUP_CONCAT(DISTINCT regionName) regionName, GROUP_CONCAT(DISTINCT stateCode) stateCode
FROM(
SELECT IFNULL(FSL.seasonId,pSeasonId) AS seasonId, /* FSL.seasonGeographyConfigurationId, */ FS.fieldStaffGoId,
FS.firstName, FS.lastName, FS.fieldStaffTypeId,
IF(SGC.usStatesId IS NOT NULL, NULL, R.regionId) AS regionId, IF(SGC.usStatesId IS NOT NULL, NULL, R.regionName) AS regionName,
SGC.usStatesId AS usStatesId, US.stateCode AS stateCode,
FST.fieldStaffTypeName
FROM FieldStaffLeadershipSeason FSL
INNER JOIN SeasonGeographyConfiguration SGC ON (FSL.seasonGeographyConfigurationId= SGC.seasonGeographyConfigurationId AND FSL.seasonId= pSeasonId)
RIGHT JOIN FieldStaff FS ON (FSL.fieldStaffGoId= FS.fieldStaffGoId )
LEFT JOIN Region R ON (R.regionId = SGC.regionId)
LEFT JOIN LookupUSStates US ON (US.usStatesId=SGC.usStatesId)
LEFT JOIN FieldStaffType FST ON (FST.fieldStaffTypeId = FS.fieldStaffTypeId)
WHERE SGC.usStatesId IS NOT NULL AND FS.fieldStaffTypeId IN (2,3,4)
-- GROUP BY FS.fieldStaffGoId
UNION
SELECT IFNULL(FSL.seasonId,pSeasonId) AS seasonId, /* FSL.seasonGeographyConfigurationId, */ FS.fieldStaffGoId,
FS.firstName, FS.lastName, FS.fieldStaffTypeId,
R.regionId AS regionId, R.regionName AS regionName,
SGC.usStatesId AS usStatesId, US.stateCode AS stateCode,
FST.fieldStaffTypeName
FROM FieldStaffLeadershipSeason FSL
INNER JOIN SeasonGeographyConfiguration SGC ON (FSL.seasonGeographyConfigurationId= SGC.seasonGeographyConfigurationId AND FSL.seasonId= pSeasonId)
RIGHT JOIN FieldStaff FS ON (FSL.fieldStaffGoId= FS.fieldStaffGoId )
LEFT JOIN Region R ON (R.regionId = SGC.regionId)
LEFT JOIN LookupUSStates US ON (US.usStatesId=SGC.usStatesId)
LEFT JOIN FieldStaffType FST ON (FST.fieldStaffTypeId = FS.fieldStaffTypeId)
WHERE SGC.usStatesId IS NULL AND FS.fieldStaffTypeId IN (2,3,4)
-- GROUP BY FS.fieldStaffGoId
) TAB1
GROUP BY fieldStaffGoId;
END IF;
END IF;
END IF;
-- ====================================================================================
END$$
DELIMITER ; |
CREATE TABLE "Users" ("id_user" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL ,
"nom_user" VARCHAR NOT NULL ,
"prenom_user" VARCHAR NOT NULL ,
"email_user" VARCHAR NOT NULL ,
"password_user" VARCHAR NOT NULL ,
"date_naiss_user" DATETIME NOT NULL);
CREATE TABLE "Tokens" ("id_token" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL ,
"id_user" INTEGER NOT NULL,
"token" VARCHAR NOT NULL,
"date_last_use" DATETIME NOT NULL,
FOREIGN KEY(id_user) REFERENCES Users(id_user));
|
/*
SQLyog Community Edition- MySQL GUI v6.52
MySQL - 5.0.22-community-nt : Database - onlineregistration
*********************************************************************
*/
/*!40101 SET NAMES utf8 */;
/*!40101 SET SQL_MODE=''*/;
/*!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' */;
create database if not exists `onlineregistration`;
USE `onlineregistration`;
/*Table structure for table `department` */
DROP TABLE IF EXISTS `department`;
CREATE TABLE `department` (
`ID` varchar(32) NOT NULL,
`NAME` varchar(30) default NULL,
`NBRLEVEL` int(11) default NULL,
`PHONE` varchar(10) default NULL,
PRIMARY KEY (`ID`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*Data for the table `department` */
insert into `department`(`ID`,`NAME`,`NBRLEVEL`,`PHONE`) values ('GI','Computer Engineering',10,'9958321');
/*Table structure for table `person` */
DROP TABLE IF EXISTS `person`;
CREATE TABLE `person` (
`ID` varchar(32) NOT NULL,
`FIRSTNAME` varchar(30) default NULL,
`LASTNAME` varchar(30) default NULL,
`USERLOGIN` varchar(10) default NULL,
`USERROLE` varchar(10) default NULL,
`TYPE` varchar(30) default NULL,
PRIMARY KEY (`ID`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*Data for the table `person` */
insert into `person`(`ID`,`FIRSTNAME`,`LASTNAME`,`USERLOGIN`,`USERROLE`,`TYPE`) values ('PS1613379','Edmon','BERTOS LU','ebertos','FDK','APPUSER'),('PS8613079','Adwin','LEWIS CLEF','adwiner','ADMIN','APPUSER');
/*Table structure for table `realm_groups` */
DROP TABLE IF EXISTS `realm_groups`;
CREATE TABLE `realm_groups` (
`GROUPID` varchar(20) NOT NULL,
`DESCRIPTION` varchar(45) default NULL,
PRIMARY KEY (`GROUPID`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*Data for the table `realm_groups` */
insert into `realm_groups`(`GROUPID`,`DESCRIPTION`) values ('administrator','Administrator group');
/*Table structure for table `realm_users` */
DROP TABLE IF EXISTS `realm_users`;
CREATE TABLE `realm_users` (
`USERID` varchar(255) NOT NULL,
`PASSWORD` varchar(255) NOT NULL,
PRIMARY KEY (`USERID`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*Data for the table `realm_users` */
/*The password 8c6976e5b5410415bde908bd4dee15dfb167a9c873fc4bb8a81f6f2ab448a918 is equal to 'admin' in clear*/
insert into `realm_users`(`USERID`,`PASSWORD`) values ('naf','8c6976e5b5410415bde908bd4dee15dfb167a9c873fc4bb8a81f6f2ab448a918');
/*Table structure for table `student` */
DROP TABLE IF EXISTS `student`;
CREATE TABLE `student` (
`ID` varchar(32) NOT NULL,
`FIRSTNAME` varchar(30) default NULL,
`LASTNAME` varchar(30) default NULL,
`BIRTHDATE` date default NULL,
`PHONE` varchar(10) default NULL,
`EMAIL` varchar(60) default NULL,
`DEPARTID` varchar(15) default NULL,
PRIMARY KEY (`ID`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*Data for the table `student` */
insert into `student`(`ID`,`FIRSTNAME`,`LASTNAME`,`BIRTHDATE`,`PHONE`,`EMAIL`,`DEPARTID`) values ('7315489','Bernard','SOYER','2013-07-15','9658421','bsoyer@hotmail.com','GI'),('8964723','Betoszos','LASCARIS','2013-07-18','96842347','lascaris@yahoo.fr','GE');
/*Table structure for table `users_groups` */
DROP TABLE IF EXISTS `users_groups`;
CREATE TABLE `users_groups` (
`GROUPID` varchar(20) NOT NULL,
`USERID` varchar(255) NOT NULL,
PRIMARY KEY (`GROUPID`,`USERID`),
KEY `USERID` (`USERID`),
KEY `GROUPID` (`GROUPID`),
CONSTRAINT `GROUPID` FOREIGN KEY (`GROUPID`) REFERENCES `realm_groups` (`GROUPID`) ON DELETE NO ACTION ON UPDATE NO ACTION,
CONSTRAINT `USERID` FOREIGN KEY (`USERID`) REFERENCES `realm_users` (`USERID`) ON DELETE NO ACTION ON UPDATE NO ACTION
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*Data for the table `users_groups` */
insert into `users_groups`(`GROUPID`,`USERID`) values ('administrator','naf');
/* Procedure structure for procedure `getStudentsName` */
/*!50003 DROP PROCEDURE IF EXISTS `getStudentsName` */;
DELIMITER $$
/*!50003 CREATE DEFINER=`sonar`@`%localhost` PROCEDURE `getStudentsName`()
BEGIN
SELECT ID,LASTNAME FROM STUDENT ORDER BY LASTNAME ASC;
END */$$
DELIMITER ;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
|
-- By now the day part table should contain only one record from 6am till 24am
-- Due to limitation of DateTime it is required to limit it to 23 keeping in mind that
-- 23 hours means booking for the whole 23rd hour (in the other words from 23:00:00 till 23:59:59)
UPDATE day_part SET end_time = '23:00:00';
|
-- View of InputSamples_precompute in assay.ExpressionMatrix.matrix
-- so container filters can be applied and additional columns defined
-- in qview.xml from the Runs table will show up
SELECT
RowId,
Run,
TargetProtocolApplication,
Material,
Biosample,
Role,
Source_Container AS folder
FROM
-- Must use full path to access data held in /Studies
-- HIPCMatrix must be enabled for the /HIPC/ folder
Project."hipcmatrix".InputSamples_precompute
-- https://www.labkey.org/Documentation/wiki-page.view?name=crossFolderQueries
|
CREATE TABLE departments (
dept_no VARCHAR(4) NOT NULL,
dept_name VARCHAR(40) NOT NULL,
PRIMARY KEY (dept_no),
UNIQUE (dept_name)
);
CREATE TABLE employees (
emp_no INT NOT NULL,
birth_date DATE NOT NULL,
first_name VARCHAR NOT NULL,
last_name VARCHAR NOT NULL,
gender VARCHAR NOT NULL,
hire_date DATE NOT NULL
);
CREATE TABLE dept_manager (
dept_no VARCHAR(4) NOT NULL,
emp_no INT NOT NULL,
from_date DATE NOT NULL,
to_date DATE NOT NULL,
FOREIGN KEY (emp_no) REFERENCES employees (emp_no),
FOREIGN KEY (dept_no) REFERENCES departments (dept_no),
PRIMARY KEY (emp_no, dept_no)
);
CREATE TABLE salaries (
emp_no INT NOT NULL,
salary INT NOT NULL,
from_date DATE NOT NULL,
to_date DATE NOT NULL,
FOREIGN KEY (emp_no) REFERENCES employees (emp_no),
PRIMARY KEY (emp_no)
);
SELECT * FROM salaries
CREATE TABLE titles (
emp_no INT NOT NULL,
title VARCHAR NOT NULL,
from_date DATE NOT NULL,
to_date DATE NOT NULL
);
CREATE TABLE dept_emp (
emp_no INT NOT NULL,
dept_no VARCHAR NOT NULL,
from_date DATE NOT NULL,
to_date DATE NOT NULL
);
-- SELECT * FROM titles;
-- SELECT first_name, last_name
-- FROM employees
-- WHERE (birth_date BETWEEN '1952-01-01' AND '1955-12-31')
-- AND (hire_date BETWEEN '1985-01-01' AND '1988-12-31');
-- SELECT first_name, last_name
-- FROM employees
-- WHERE birth_date BETWEEN '1952-01-01' AND '1952-12-31';
-- SELECT COUNT(first_name)
-- FROM employees
-- WHERE (birth_date BETWEEN '1952-01-01' AND '1955-12-31')
-- AND (hire_date BETWEEN '1985-01-01' AND '1988-12-31');
-- SELECT first_name, last_name
-- INTO retirement_info
-- FROM employees
-- WHERE (birth_date BETWEEN '1952-01-01' AND '1955-12-31')
-- AND (hire_date BETWEEN '1985-01-01' AND '1988-12-31');
-- SELECT * FROM retirement_info;
-- SELECT emp_no, first_name, last_name
-- INTO retirement_info
-- FROM employees
-- WHERE (birth_date BETWEEN '1952-01-01' AND '1955-12-31')
-- AND (hire_date BETWEEN '1985-01-01' AND '1988-12-31');
-- -- Check the table
-- SELECT * FROM retirement_info;
-- SELECT retirement_info.emp_no,
-- retirement_info.first_name,
-- retirement_info.last_name,
-- dept_emp.to_date
-- FROM retirement_info
-- LEFT JOIN dept_emp
-- ON retirement_info.emp_no = dept_emp.emp_no;
-- SELECT ri.emp_no,
-- ri.first_name,
-- ri.last_name,
-- de.to_date
-- FROM retirement_info as ri
-- LEFT JOIN dept_emp as de
-- ON ri.emp_no = de.emp_no;
-- SELECT ri.emp_no,
-- ri.first_name,
-- ri.last_name,
-- de.to_date
-- INTO current_emp
-- FROM retirement_info as ri
-- LEFT JOIN dept_emp as de
-- ON ri.emp_no = de.emp_no
-- WHERE de.to_date = ('9999-01-01');
-- SELECT * FROM current_emp;
-- SELECT COUNT(ce.emp_no), de.dept_no
-- INTO retirees_by_department
-- FROM current_emp as ce
-- LEFT JOIN dept_emp as de
-- ON ce.emp_no = de.emp_no
-- GROUP BY de.dept_no
-- ORDER BY de.dept_no;
-- SELECT * FROM salaries
-- ORDER BY to_date DESC;
-- SELECT emp_no, first_name, last_name, gender
-- INTO emp_info
-- FROM employees
-- WHERE (birth_date BETWEEN '1952-01-01' AND '1955-12-31')
-- AND (hire_date BETWEEN '1985-01-01' AND '1988-12-31');
-- SELECT e.emp_no,
-- e.first_name,
-- e.last_name,
-- e.gender,
-- s.salary,
-- de.to_date
-- INTO emp_info
-- FROM employees as e
-- INNER JOIN salaries as s
-- ON (e.emp_no = s.emp_no)
-- INNER JOIN dept_emp as de
-- ON (e.emp_no = de.emp_no)
-- WHERE (e.birth_date BETWEEN '1952-01-01' AND '1955-12-31')
-- AND (e.hire_date BETWEEN '1985-01-01' AND '1988-12-31')
-- AND (de.to_date = '9999-01-01');
-- SELECT dm.dept_no,
-- d.dept_name,
-- dm.emp_no,
-- ce.last_name,
-- ce.first_name,
-- dm.from_date,
-- dm.to_date
-- -- INTO manager_info
-- FROM dept_manager AS dm
-- INNER JOIN departments AS d
-- ON (dm.dept_no = d.dept_no)
-- INNER JOIN current_emp AS ce
-- ON (dm.emp_no = ce.emp_no);
-- SELECT ce.emp_no,
-- ce.first_name,
-- ce.last_name,
-- d.dept_name
-- FROM current_emp as ce
-- INNER JOIN dept_emp AS de
-- ON (ce.emp_no = de.emp_no)
-- INNER JOIN departments AS d
-- ON (de.dept_no = d.dept_no);
-- ________________ Module 7 Submission
CREATE TABLE employees (
emp_no INT NOT NULL,
birth_date DATE NOT NULL,
first_name VARCHAR NOT NULL,
last_name VARCHAR NOT NULL,
gender VARCHAR NOT NULL,
hire_date DATE NOT NULL
);
CREATE TABLE dept_emp (
emp_no INT NOT NULL,
dept_no VARCHAR NOT NULL,
from_date DATE NOT NULL,
to_date DATE NOT NULL
);
CREATE TABLE salaries (
emp_no INT NOT NULL,
salary INT NOT NULL,
from_date DATE NOT NULL,
to_date DATE NOT NULL,
FOREIGN KEY (emp_no) REFERENCES employees (emp_no),
PRIMARY KEY (emp_no)
);
CREATE TABLE titles (
emp_no INT NOT NULL,
title VARCHAR NOT NULL,
from_date DATE NOT NULL,
to_date DATE NOT NULL
);
-- table to identify all current employees
SELECT de.emp_no,
e.first_name,
e.last_name,
de.to_date
INTO employed
FROM dept_emp as de
LEFT JOIN employees as e
ON de.emp_no = e.emp_no
WHERE de.to_date = ('9999-01-01');
SELECT * FROM employed
___________________________
-- table to identify all current employees within retirement range
SELECT employed.emp_no,
employed.first_name,
employed.last_name,
ti.title,
ti.from_date,
sal.salary
INTO retirement_eligible
FROM employed
INNER JOIN titles as ti
ON (employed.emp_no = ti.emp_no)
INNER JOIN salaries as sal
ON (employed.emp_no = sal.emp_no)
INNER JOIN employees as e
ON (employed.emp_no = e.emp_no)
WHERE (birth_date BETWEEN '1952-01-01' AND '1955-12-31')
AND (hire_date BETWEEN '1985-01-01' AND '1988-12-31');
-- SELECT * FROM retirement_eligible
________________________
-- second table to partition duplicate data
SELECT emp_no,
first_name,
last_name,
title,
from_date,
salary
INTO retirement_eligible_partitioned
FROM
(SELECT emp_no,
first_name,
last_name,
title,
from_date,
salary,
ROW_NUMBER() OVER
(PARTITION BY (emp_no)
ORDER BY from_date DESC) rn
FROM retirement_eligible
) tmp WHERE rn = 1
ORDER BY emp_no
SELECT * FROM retirement_eligible_partitioned
____________________________
-- third table to gather the number of vacancies by title
SELECT rep.title, COUNT(*)
INTO retirements_by_title
FROM retirement_eligible_partitioned as rep
GROUP BY rep.title
SELECT * FROM retirements_by_title
______________
-- Table 2
SELECT employed.emp_no,
employed.first_name,
employed.last_name,
ti.title,
ti.from_date,
employed.to_date
INTO mentorship_eligible
FROM employed
INNER JOIN titles as ti
ON (employed.emp_no = ti.emp_no)
INNER JOIN employees as e
ON (employed.emp_no = e.emp_no)
WHERE (e.birth_date BETWEEN '1965-01-01' AND '1965-12-31');
SELECT * FROM mentorship_eligible
____________
SELECT * FROM retirements_by_title
SELECT * FROM retirement_eligible |
SELECT *
FROM billing;
SELECT *
FROM clients;
SELECT *
FROM leads;
SELECT *
FROM sites;
SELECT CONCAT(clients.first_name,' ',clients.last_name) as client_name, SUM(billing.amount) as Total_Revenue, MONTHNAME(billing.charged_datetime) as month_charge, YEAR(billing.charged_datetime) as year_charge
FROM clients
JOIN billing ON clients.client_id = billing.client_id
GROUP BY MONTHNAME(billing.charged_datetime)
ORDER BY clients.client_id; |
CREATE DATABASE IF NOT EXISTS `banco` /*!40100 DEFAULT CHARACTER SET latin1 */;
USE `banco`;
-- Volcando estructura para tabla banco.clientes
CREATE TABLE IF NOT EXISTS `clientes` (
`NumeroDeCuenta` int(11) NOT NULL,
`Nombre` varchar(60) DEFAULT NULL,
`SaldoAnterior` int(11) DEFAULT NULL,
`SaldoActual` int(11) DEFAULT NULL,
PRIMARY KEY (`NumeroDeCuenta`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- Volcando datos para la tabla banco.clientes: ~6 rows (aproximadamente)
/*!40000 ALTER TABLE `clientes` DISABLE KEYS */;
INSERT INTO `clientes` (`NumeroDeCuenta`, `Nombre`, `SaldoAnterior`, `SaldoActual`) VALUES
(0, '3', 2, 750),
(1, 'Oscar', 78, 800),
(12, '3', 2, 750),
(1457, 'Juan Lopez', 3000, 2357),
(1545, 'Pedro Vasquez', 2000, 4735),
(4759, 'Perla Ruiz', 6890, 7835);
/*!40000 ALTER TABLE `clientes` ENABLE KEYS */;
-- Volcando estructura para procedimiento banco.delCli
DELIMITER //
CREATE PROCEDURE `delCli`(
IN `nc` INT
)
BEGIN
/*Declara rollback en caso de exepcion*/
DECLARE EXIT HANDLER FOR SQLEXCEPTION
BEGIN
ROLLBACK;
END;
START TRANSACTION;
DELETE FROM movimientos WHERE NumeroDeCuenta = nc;
DELETE FROM clientes WHERE NumeroDeCuenta = nc;
COMMIT;
END//
DELIMITER ;
-- Volcando estructura para tabla banco.movimientos
CREATE TABLE IF NOT EXISTS `movimientos` (
`FechaMov` date NOT NULL,
`TipoMov` varchar(12) DEFAULT NULL,
`Cantidad` int(11) DEFAULT NULL,
`NumeroDeCuenta` int(11) DEFAULT NULL,
KEY `NumeroDeCuenta` (`NumeroDeCuenta`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- Volcando datos para la tabla banco.movimientos: ~7 rows (aproximadamente)
/*!40000 ALTER TABLE `movimientos` DISABLE KEYS */;
INSERT INTO `movimientos` (`FechaMov`, `TipoMov`, `Cantidad`, `NumeroDeCuenta`) VALUES
('2020-07-11', 'Deposito', 210, 4759),
('2020-10-10', 'Deposito', 2000, 1545),
('2021-02-10', 'Retiro', 200, 1457),
('2021-04-20', 'Deposito', 2, 1457),
('2021-04-22', 'Deposito', 300, 1457),
('2021-04-22', 'Retiro', 300, 1457);
/*!40000 ALTER TABLE `movimientos` ENABLE KEYS */;
-- Volcando estructura para procedimiento banco.nuevoCli
DELIMITER //
CREATE PROCEDURE `nuevoCli`(nc INT, nom VARCHAR(40), sant INT, sact INT)
BEGIN
DECLARE EXIT HANDLER FOR SQLEXCEPTION
BEGIN
ROLLBACK;
END;
START TRANSACTION;
INSERT INTO clientes VALUES (nc, nom, sant, sact);
COMMIT;
END//
DELIMITER ;
-- Volcando estructura para procedimiento banco.upCli
DELIMITER //
CREATE PROCEDURE `upCli`(nc INT, nom VARCHAR(40), sant INT, sact INT)
BEGIN
DECLARE EXIT HANDLER FOR SQLEXCEPTION
BEGIN
SELECT "Cliente no existe";
ROLLBACK;
END;
START TRANSACTION;
UPDATE clientes SET Nombre = nom, SaldoAnterior = sant, SaldoActual = sact WHERE NumeroDeCuenta = nc;
COMMIT;
END//
DELIMITER ;
|
INSERT INTO FLIGHT_RESERVATION VALUES
(227798461,
'4-Aug-1998',
'SW148',
966.40);
INSERT INTO FLIGHT_RESERVATION VALUES
(354718017,
'30-Oct-1999',
'TWA124',
567.18);
INSERT INTO FLIGHT_RESERVATION VALUES
(184512329,
'16-Nov-1998',
'Delta282',
306.67);
INSERT INTO FLIGHT_RESERVATION VALUES
(907138061,
'14-Nov-1998',
'AA169',
436.31);
INSERT INTO FLIGHT_RESERVATION VALUES
(531433105,
'12-Oct-1999',
'SW50',
123.10);
INSERT INTO FLIGHT_RESERVATION VALUES
(410308837,
'7-Sep-1998',
'UA234',
598.03);
INSERT INTO FLIGHT_RESERVATION VALUES
(353454589,
'29-Jul-1998',
'AL113',
1225.77);
INSERT INTO FLIGHT_RESERVATION VALUES
(226644897,
'11-Jan-1999',
'USAir235',
657.64);
INSERT INTO FLIGHT_RESERVATION VALUES
(972561645,
'4-Feb-1998',
'AA103',
837.86);
INSERT INTO FLIGHT_RESERVATION VALUES
(331427001,
'12-Jul-1999',
'USAir257',
414.01);
INSERT INTO FLIGHT_RESERVATION VALUES
(484356689,
'11-May-1999',
'TWA33',
941.49);
INSERT INTO FLIGHT_RESERVATION VALUES
(694140625,
'9-Jun-1999',
'USAir135',
796.34);
INSERT INTO FLIGHT_RESERVATION VALUES
(151992797,
'26-May-1998',
'NW93',
1507.52);
INSERT INTO FLIGHT_RESERVATION VALUES
(699826049,
'2-Apr-1999',
'NW178',
868.02);
INSERT INTO FLIGHT_RESERVATION VALUES
(974017333,
'8-Jan-1998',
'UA146',
1515.44);
INSERT INTO FLIGHT_RESERVATION VALUES
(990606689,
'17-May-1999',
'TWA234',
1012.68);
INSERT INTO FLIGHT_RESERVATION VALUES
(826196289,
'23-Apr-1999',
'Delta277',
451.05);
INSERT INTO FLIGHT_RESERVATION VALUES
(873162841,
'19-Jun-1999',
'UA111',
84.42);
INSERT INTO FLIGHT_RESERVATION VALUES
(714794921,
'9-Mar-1999',
'USAir193',
254.76);
INSERT INTO FLIGHT_RESERVATION VALUES
(194482421,
'8-Aug-1999',
'UA132',
1183.56);
INSERT INTO FLIGHT_RESERVATION VALUES
(705676269,
'10-Oct-1999',
'USAir123',
1085.37);
INSERT INTO FLIGHT_RESERVATION VALUES
(510668945,
'8-Jul-1999',
'AA279',
522.64);
INSERT INTO FLIGHT_RESERVATION VALUES
(946853637,
'10-Aug-1998',
'TWA245',
1192.17);
INSERT INTO FLIGHT_RESERVATION VALUES
(351696777,
'8-Aug-1999',
'AL4',
930.10);
INSERT INTO FLIGHT_RESERVATION VALUES
(492623901,
'20-Apr-1999',
'USAir97',
452.74);
INSERT INTO FLIGHT_RESERVATION VALUES
(566918945,
'26-Jun-1999',
'NW149',
1209.97);
INSERT INTO FLIGHT_RESERVATION VALUES
(257489013,
'30-Apr-1998',
'AA273',
1370.79);
INSERT INTO FLIGHT_RESERVATION VALUES
(874673461,
'2-Oct-1999',
'AL250',
63.55);
INSERT INTO FLIGHT_RESERVATION VALUES
(724380493,
'12-Oct-1999',
'UA43',
836.39);
INSERT INTO FLIGHT_RESERVATION VALUES
(584661865,
'26-Dec-1998',
'CA215',
95.23);
INSERT INTO FLIGHT_RESERVATION VALUES
(767721557,
'31-Mar-1998',
'AL169',
506.16);
INSERT INTO FLIGHT_RESERVATION VALUES
(310360717,
'20-Oct-1999',
'AL23',
1015.15);
INSERT INTO FLIGHT_RESERVATION VALUES
(565106201,
'23-Jun-1999',
'TWA78',
1307.39);
INSERT INTO FLIGHT_RESERVATION VALUES
(132135009,
'24-May-1998',
'AA63',
1196.70);
INSERT INTO FLIGHT_RESERVATION VALUES
(133645629,
'18-Feb-1998',
'AA152',
421.11);
INSERT INTO FLIGHT_RESERVATION VALUES
(584606933,
'15-Aug-1998',
'NW262',
757.29);
INSERT INTO FLIGHT_RESERVATION VALUES
(207336425,
'16-Mar-1999',
'SW96',
147.69);
INSERT INTO FLIGHT_RESERVATION VALUES
(767364501,
'15-Nov-1999',
'USAir190',
401.61);
INSERT INTO FLIGHT_RESERVATION VALUES
(111013793,
'18-May-1999',
'Delta87',
1013.91);
INSERT INTO FLIGHT_RESERVATION VALUES
(964651489,
'1-Aug-1999',
'UA0',
244.69);
INSERT INTO FLIGHT_RESERVATION VALUES
(760772705,
'21-Jul-1998',
'AA23',
631.13);
INSERT INTO FLIGHT_RESERVATION VALUES
(611825561,
'25-Mar-1998',
'AA249',
1354.17);
INSERT INTO FLIGHT_RESERVATION VALUES
(454666137,
'14-Nov-1998',
'AA288',
1125.38);
INSERT INTO FLIGHT_RESERVATION VALUES
(255017089,
'14-Mar-1999',
'USAir67',
1143.19);
INSERT INTO FLIGHT_RESERVATION VALUES
(626739501,
'6-Jul-1999',
'TWA117',
733.58);
INSERT INTO FLIGHT_RESERVATION VALUES
(906781005,
'23-Jun-1999',
'NW99',
745.43);
INSERT INTO FLIGHT_RESERVATION VALUES
(991513061,
'4-Aug-1999',
'AA217',
990.20);
INSERT INTO FLIGHT_RESERVATION VALUES
(144137573,
'29-May-1999',
'TWA151',
1219.91);
INSERT INTO FLIGHT_RESERVATION VALUES
(189950561,
'16-Jan-1999',
'Delta213',
1443.07);
INSERT INTO FLIGHT_RESERVATION VALUES
(403717041,
'24-Jun-1999',
'SW228',
294.17);
INSERT INTO FLIGHT_RESERVATION VALUES
(778460693,
'21-Apr-1998',
'CA214',
1153.62);
INSERT INTO FLIGHT_RESERVATION VALUES
(705072021,
'29-Aug-1999',
'AA94',
301.77);
INSERT INTO FLIGHT_RESERVATION VALUES
(979263305,
'18-Feb-1999',
'TWA75',
1049.71);
INSERT INTO FLIGHT_RESERVATION VALUES
(273721313,
'20-Nov-1998',
'CA174',
445.42);
INSERT INTO FLIGHT_RESERVATION VALUES
(372708129,
'6-Sep-1999',
'CA81',
1203.29);
INSERT INTO FLIGHT_RESERVATION VALUES
(892169189,
'1-Feb-1999',
'SW225',
86.80);
INSERT INTO FLIGHT_RESERVATION VALUES
(171301269,
'14-Jun-1998',
'USAir251',
234.57);
INSERT INTO FLIGHT_RESERVATION VALUES
(765908813,
'19-Sep-1999',
'USAir264',
638.27);
INSERT INTO FLIGHT_RESERVATION VALUES
(661428833,
'24-Jul-1999',
'UA28',
886.70);
INSERT INTO FLIGHT_RESERVATION VALUES
(952758789,
'19-Apr-1999',
'USAir32',
415.57);
INSERT INTO FLIGHT_RESERVATION VALUES
(737838745,
'25-Jul-1998',
'UA92',
1541.17);
INSERT INTO FLIGHT_RESERVATION VALUES
(403607177,
'3-Feb-1998',
'TWA61',
774.04);
INSERT INTO FLIGHT_RESERVATION VALUES
(166467285,
'1-Jan-1998',
'NW22',
686.15);
INSERT INTO FLIGHT_RESERVATION VALUES
(906176757,
'16-Jun-1999',
'AL76',
298.61);
INSERT INTO FLIGHT_RESERVATION VALUES
(781481933,
'29-Dec-1998',
'SW134',
53.30);
INSERT INTO FLIGHT_RESERVATION VALUES
(717871093,
'31-Oct-1999',
'Delta218',
1487.19);
INSERT INTO FLIGHT_RESERVATION VALUES
(836770629,
'24-Feb-1998',
'SW192',
556.10);
INSERT INTO FLIGHT_RESERVATION VALUES
(511877441,
'30-Jun-1998',
'AA84',
1332.01);
INSERT INTO FLIGHT_RESERVATION VALUES
(646954345,
'31-Dec-1999',
'Delta182',
1479.32);
INSERT INTO FLIGHT_RESERVATION VALUES
(370703125,
'24-Feb-1999',
'CA203',
389.02);
INSERT INTO FLIGHT_RESERVATION VALUES
(778817749,
'22-Jul-1999',
'AL58',
975.09);
INSERT INTO FLIGHT_RESERVATION VALUES
(457495117,
'13-May-1999',
'UA103',
110.47);
INSERT INTO FLIGHT_RESERVATION VALUES
(209259033,
'26-Feb-1999',
'UA182',
350.29);
INSERT INTO FLIGHT_RESERVATION VALUES
(698068237,
'2-Apr-1999',
'CA89',
75.73);
INSERT INTO FLIGHT_RESERVATION VALUES
(438735961,
'24-Sep-1998',
'CA143',
1151.52);
INSERT INTO FLIGHT_RESERVATION VALUES
(796807861,
'28-Jun-1999',
'NW285',
102.00);
INSERT INTO FLIGHT_RESERVATION VALUES
(204672241,
'11-Jul-1999',
'UA89',
527.31);
INSERT INTO FLIGHT_RESERVATION VALUES
(851849365,
'26-Mar-1999',
'SW151',
200.05);
INSERT INTO FLIGHT_RESERVATION VALUES
(699633789,
'21-Jun-1999',
'SW186',
1299.65);
INSERT INTO FLIGHT_RESERVATION VALUES
(160012817,
'6-Jul-1999',
'NW161',
698.93);
INSERT INTO FLIGHT_RESERVATION VALUES
(526296997,
'9-Sep-1999',
'SW24',
1408.73);
INSERT INTO FLIGHT_RESERVATION VALUES
(718283081,
'15-Sep-1998',
'AL65',
948.41);
INSERT INTO FLIGHT_RESERVATION VALUES
(786425781,
'19-Jul-1998',
'SW216',
827.92);
INSERT INTO FLIGHT_RESERVATION VALUES
(166769409,
'5-Apr-1998',
'USAir255',
1122.72);
INSERT INTO FLIGHT_RESERVATION VALUES
(164242553,
'9-Feb-1998',
'USAir33',
485.42);
INSERT INTO FLIGHT_RESERVATION VALUES
(578811645,
'21-Feb-1998',
'TWA71',
793.59);
INSERT INTO FLIGHT_RESERVATION VALUES
(304620361,
'5-Jan-1998',
'TWA95',
371.44);
INSERT INTO FLIGHT_RESERVATION VALUES
(497210693,
'9-Feb-1999',
'AL159',
851.22);
INSERT INTO FLIGHT_RESERVATION VALUES
(889093017,
'14-Nov-1999',
'NW288',
121.96);
INSERT INTO FLIGHT_RESERVATION VALUES
(473672485,
'8-Aug-1998',
'SW76',
231.37);
INSERT INTO FLIGHT_RESERVATION VALUES
(438790893,
'22-Jul-1998',
'AA261',
813.37);
INSERT INTO FLIGHT_RESERVATION VALUES
(601800537,
'30-Jan-1998',
'CA210',
750.06);
INSERT INTO FLIGHT_RESERVATION VALUES
(247106933,
'12-Feb-1998',
'NW51',
1202.37);
INSERT INTO FLIGHT_RESERVATION VALUES
(698974609,
'20-Aug-1999',
'SW85',
1266.96);
INSERT INTO FLIGHT_RESERVATION VALUES
(663735961,
'6-Jan-1998',
'SW107',
758.34);
INSERT INTO FLIGHT_RESERVATION VALUES
(555630493,
'19-Aug-1999',
'TWA220',
789.06);
INSERT INTO FLIGHT_RESERVATION VALUES
(322006225,
'19-Jun-1998',
'CA15',
1301.94);
INSERT INTO FLIGHT_RESERVATION VALUES
(811776733,
'17-Mar-1998',
'CA202',
1484.59);
INSERT INTO FLIGHT_RESERVATION VALUES
(221398925,
'12-Jun-1998',
'TWA128',
742.23);
INSERT INTO FLIGHT_RESERVATION VALUES
(863742065,
'9-Aug-1998',
'SW60',
947.86);
INSERT INTO FLIGHT_RESERVATION VALUES
(451947021,
'26-Jun-1999',
'CA240',
919.25);
INSERT INTO FLIGHT_RESERVATION VALUES
(442471313,
'10-Apr-1999',
'Delta270',
579.54);
INSERT INTO FLIGHT_RESERVATION VALUES
(572055053,
'20-Dec-1999',
'AA142',
1369.92);
INSERT INTO FLIGHT_RESERVATION VALUES
(179815673,
'28-Apr-1998',
'USAir76',
397.99);
INSERT INTO FLIGHT_RESERVATION VALUES
(350131225,
'30-Sep-1999',
'TWA108',
773.27);
INSERT INTO FLIGHT_RESERVATION VALUES
(780822753,
'25-Feb-1999',
'NW96',
606.23);
INSERT INTO FLIGHT_RESERVATION VALUES
(486416625,
'12-Feb-1998',
'USAir206',
954.59);
INSERT INTO FLIGHT_RESERVATION VALUES
(986679077,
'8-Jul-1998',
'NW182',
1085.51);
INSERT INTO FLIGHT_RESERVATION VALUES
(967013549,
'30-May-1999',
'NW235',
169.16);
INSERT INTO FLIGHT_RESERVATION VALUES
(949078369,
'21-Oct-1999',
'CA190',
316.05);
INSERT INTO FLIGHT_RESERVATION VALUES
(264602661,
'29-May-1998',
'CA95',
217.45);
INSERT INTO FLIGHT_RESERVATION VALUES
(104312133,
'10-Sep-1999',
'USAir109',
351.44);
INSERT INTO FLIGHT_RESERVATION VALUES
(461972045,
'10-Feb-1998',
'AL64',
52.98);
INSERT INTO FLIGHT_RESERVATION VALUES
(410363769,
'7-Jul-1998',
'SW34',
225.37);
INSERT INTO FLIGHT_RESERVATION VALUES
(777197265,
'30-Jul-1998',
'NW254',
52.93);
INSERT INTO FLIGHT_RESERVATION VALUES
(694992065,
'18-Jun-1998',
'AA132',
1253.51);
INSERT INTO FLIGHT_RESERVATION VALUES
(398416137,
'24-Mar-1998',
'Delta249',
1198.03);
INSERT INTO FLIGHT_RESERVATION VALUES
(765249633,
'21-Jul-1998',
'AL181',
806.04);
INSERT INTO FLIGHT_RESERVATION VALUES
(940399169,
'12-Sep-1999',
'AL270',
1033.46);
INSERT INTO FLIGHT_RESERVATION VALUES
(568374633,
'6-Jan-1998',
'SW176',
818.04);
INSERT INTO FLIGHT_RESERVATION VALUES
(192971801,
'22-Nov-1998',
'NW112',
817.90);
INSERT INTO FLIGHT_RESERVATION VALUES
(546154785,
'22-Oct-1998',
'UA254',
168.93);
INSERT INTO FLIGHT_RESERVATION VALUES
(770248413,
'30-Oct-1999',
'NW188',
1312.19);
INSERT INTO FLIGHT_RESERVATION VALUES
(204919433,
'6-Sep-1999',
'TWA98',
585.45);
INSERT INTO FLIGHT_RESERVATION VALUES
(617675781,
'18-Aug-1999',
'USAir212',
476.64);
INSERT INTO FLIGHT_RESERVATION VALUES
(685873413,
'22-Apr-1998',
'UA145',
336.74);
INSERT INTO FLIGHT_RESERVATION VALUES
(385562133,
'19-Mar-1999',
'UA83',
187.60);
INSERT INTO FLIGHT_RESERVATION VALUES
(746957397,
'18-Mar-1998',
'Delta148',
394.47);
INSERT INTO FLIGHT_RESERVATION VALUES
(163336181,
'10-Feb-1999',
'AA243',
1222.65);
INSERT INTO FLIGHT_RESERVATION VALUES
(764453125,
'15-Jan-1999',
'NW134',
882.44);
INSERT INTO FLIGHT_RESERVATION VALUES
(525335693,
'3-Nov-1998',
'AA42',
103.65);
INSERT INTO FLIGHT_RESERVATION VALUES
(190499877,
'10-Jan-1998',
'TWA49',
1017.39);
INSERT INTO FLIGHT_RESERVATION VALUES
(707791137,
'18-Feb-1999',
'UA198',
614.47);
INSERT INTO FLIGHT_RESERVATION VALUES
(949682617,
'12-Dec-1998',
'USAir20',
1040.05);
INSERT INTO FLIGHT_RESERVATION VALUES
(302752685,
'26-Jan-1999',
'NW219',
196.85);
INSERT INTO FLIGHT_RESERVATION VALUES
(270947265,
'16-Feb-1998',
'NW13',
1498.50);
INSERT INTO FLIGHT_RESERVATION VALUES
(845339965,
'26-Jan-1999',
'SW184',
672.47);
INSERT INTO FLIGHT_RESERVATION VALUES
(469937133,
'19-Oct-1999',
'NW280',
1439.63);
INSERT INTO FLIGHT_RESERVATION VALUES
(899832153,
'21-Mar-1999',
'Delta0',
235.17);
INSERT INTO FLIGHT_RESERVATION VALUES
(594384765,
'13-Dec-1999',
'CA227',
1396.65);
INSERT INTO FLIGHT_RESERVATION VALUES
(161468505,
'11-May-1999',
'AL153',
589.89);
INSERT INTO FLIGHT_RESERVATION VALUES
(200387573,
'25-Aug-1999',
'NW275',
912.29);
INSERT INTO FLIGHT_RESERVATION VALUES
(868383789,
'29-Jun-1999',
'AL90',
161.79);
INSERT INTO FLIGHT_RESERVATION VALUES
(678402709,
'8-Sep-1998',
'SW180',
149.01);
INSERT INTO FLIGHT_RESERVATION VALUES
(694937133,
'29-Apr-1998',
'Delta45',
1192.72);
INSERT INTO FLIGHT_RESERVATION VALUES
(230572509,
'19-Dec-1999',
'SW189',
1282.76);
INSERT INTO FLIGHT_RESERVATION VALUES
(211621093,
'23-Jul-1998',
'UA177',
311.34);
INSERT INTO FLIGHT_RESERVATION VALUES
(321704101,
'31-Jan-1999',
'Delta43',
814.28);
INSERT INTO FLIGHT_RESERVATION VALUES
(926748657,
'17-Jul-1998',
'AL184',
1180.63);
INSERT INTO FLIGHT_RESERVATION VALUES
(275286865,
'12-Jun-1999',
'SW129',
783.57);
INSERT INTO FLIGHT_RESERVATION VALUES
(231890869,
'18-Oct-1999',
'NW187',
1147.58);
INSERT INTO FLIGHT_RESERVATION VALUES
(495397949,
'25-Dec-1998',
'Delta156',
1275.48);
INSERT INTO FLIGHT_RESERVATION VALUES
(654013061,
'21-Oct-1999',
'NW227',
709.73);
INSERT INTO FLIGHT_RESERVATION VALUES
(133398437,
'10-Sep-1998',
'NW210',
86.21);
INSERT INTO FLIGHT_RESERVATION VALUES
(856738281,
'23-Oct-1998',
'AA197',
1064.18);
INSERT INTO FLIGHT_RESERVATION VALUES
(176190185,
'22-Mar-1998',
'NW63',
1052.14);
INSERT INTO FLIGHT_RESERVATION VALUES
(140704345,
'14-Nov-1999',
'TWA244',
1502.12);
INSERT INTO FLIGHT_RESERVATION VALUES
(121807861,
'10-Sep-1999',
'USAir137',
782.83);
INSERT INTO FLIGHT_RESERVATION VALUES
(582189941,
'31-Mar-1999',
'AA193',
589.34);
INSERT INTO FLIGHT_RESERVATION VALUES
(117770385,
'4-Nov-1999',
'AA145',
187.60);
INSERT INTO FLIGHT_RESERVATION VALUES
(967672729,
'16-Jun-1998',
'CA22',
224.59);
INSERT INTO FLIGHT_RESERVATION VALUES
(728555297,
'12-May-1999',
'USAir180',
108.27);
INSERT INTO FLIGHT_RESERVATION VALUES
(564996337,
'7-Sep-1998',
'NW169',
880.38);
INSERT INTO FLIGHT_RESERVATION VALUES
(273117065,
'18-Aug-1999',
'NW7',
773.18);
INSERT INTO FLIGHT_RESERVATION VALUES
(724270629,
'2-Nov-1998',
'Delta154',
168.97);
INSERT INTO FLIGHT_RESERVATION VALUES
(682687377,
'2-Oct-1999',
'CA242',
1224.12);
INSERT INTO FLIGHT_RESERVATION VALUES
(431182861,
'27-Sep-1999',
'SW75',
348.55);
INSERT INTO FLIGHT_RESERVATION VALUES
(693481445,
'13-May-1998',
'AA140',
421.34);
INSERT INTO FLIGHT_RESERVATION VALUES
(948776245,
'2-Apr-1998',
'CA32',
111.98);
INSERT INTO FLIGHT_RESERVATION VALUES
(784310913,
'2-Aug-1999',
'SW195',
773.22);
INSERT INTO FLIGHT_RESERVATION VALUES
(743579101,
'8-Sep-1998',
'TWA77',
258.92);
INSERT INTO FLIGHT_RESERVATION VALUES
(436676025,
'31-Aug-1999',
'AA164',
1355.63);
INSERT INTO FLIGHT_RESERVATION VALUES
(543325805,
'22-Jan-1999',
'USAir173',
375.10);
INSERT INTO FLIGHT_RESERVATION VALUES
(879562377,
'7-Sep-1998',
'NW216',
275.59);
INSERT INTO FLIGHT_RESERVATION VALUES
(825592041,
'19-Jan-1999',
'USAir228',
1305.28);
INSERT INTO FLIGHT_RESERVATION VALUES
(112881469,
'10-Jan-1998',
'AA57',
685.88);
INSERT INTO FLIGHT_RESERVATION VALUES
(884808349,
'31-Jan-1999',
'TWA188',
453.75);
INSERT INTO FLIGHT_RESERVATION VALUES
(483450317,
'10-Oct-1999',
'USAir258',
635.71);
INSERT INTO FLIGHT_RESERVATION VALUES
(681176757,
'26-Aug-1999',
'USAir192',
1516.54);
INSERT INTO FLIGHT_RESERVATION VALUES
(339996337,
'8-Mar-1998',
'AL276',
90.37);
INSERT INTO FLIGHT_RESERVATION VALUES
(706637573,
'25-Jul-1999',
'UA208',
290.92);
INSERT INTO FLIGHT_RESERVATION VALUES
(455270385,
'29-Jan-1998',
'UA39',
98.75);
INSERT INTO FLIGHT_RESERVATION VALUES
(281988525,
'14-May-1998',
'Delta175',
67.21);
INSERT INTO FLIGHT_RESERVATION VALUES
(344390869,
'29-Nov-1999',
'AL194',
368.01);
INSERT INTO FLIGHT_RESERVATION VALUES
(139440917,
'12-May-1998',
'AL258',
855.53);
INSERT INTO FLIGHT_RESERVATION VALUES
(372817993,
'25-May-1999',
'NW50',
1103.68);
INSERT INTO FLIGHT_RESERVATION VALUES
(130322265,
'4-Oct-1999',
'NW130',
1273.01);
INSERT INTO FLIGHT_RESERVATION VALUES
(612677001,
'15-Aug-1999',
'USAir46',
179.55);
INSERT INTO FLIGHT_RESERVATION VALUES
(624679565,
'10-May-1998',
'AL111',
440.11);
INSERT INTO FLIGHT_RESERVATION VALUES
(826141357,
'29-Dec-1998',
'CA211',
1141.81);
INSERT INTO FLIGHT_RESERVATION VALUES
(527203369,
'18-Feb-1999',
'UA206',
312.07);
INSERT INTO FLIGHT_RESERVATION VALUES
(301901245,
'18-Jan-1998',
'TWA201',
1099.29);
INSERT INTO FLIGHT_RESERVATION VALUES
(231286621,
'4-Nov-1998',
'AA114',
1314.11);
INSERT INTO FLIGHT_RESERVATION VALUES
(326345825,
'11-Nov-1998',
'CA147',
1143.46);
INSERT INTO FLIGHT_RESERVATION VALUES
(875634765,
'29-Jan-1998',
'Delta60',
768.78);
INSERT INTO FLIGHT_RESERVATION VALUES
(477957153,
'18-May-1998',
'USAir88',
1260.01);
INSERT INTO FLIGHT_RESERVATION VALUES
(855419921,
'29-Dec-1998',
'AL12',
1112.79);
INSERT INTO FLIGHT_RESERVATION VALUES
(316458129,
'27-Mar-1999',
'AA270',
967.91);
INSERT INTO FLIGHT_RESERVATION VALUES
(879370117,
'28-Jul-1999',
'Delta196',
1170.01);
INSERT INTO FLIGHT_RESERVATION VALUES
(532943725,
'12-Jul-1998',
'TWA39',
796.98);
INSERT INTO FLIGHT_RESERVATION VALUES
(529565429,
'4-May-1999',
'USAir11',
934.54);
INSERT INTO FLIGHT_RESERVATION VALUES
(134249877,
'8-May-1999',
'CA131',
593.50);
INSERT INTO FLIGHT_RESERVATION VALUES
(763436889,
'28-Mar-1999',
'UA44',
219.33);
INSERT INTO FLIGHT_RESERVATION VALUES
(725177001,
'23-Sep-1998',
'UA158',
1105.69);
INSERT INTO FLIGHT_RESERVATION VALUES
(219586181,
'6-Jan-1998',
'TWA233',
1480.92);
INSERT INTO FLIGHT_RESERVATION VALUES
(229061889,
'5-May-1999',
'Delta20',
902.72);
INSERT INTO FLIGHT_RESERVATION VALUES
(314755249,
'2-Apr-1998',
'AL21',
209.26);
INSERT INTO FLIGHT_RESERVATION VALUES
(493585205,
'12-Dec-1999',
'AL149',
283.37);
INSERT INTO FLIGHT_RESERVATION VALUES
(720397949,
'7-Oct-1999',
'TWA212',
1118.28);
INSERT INTO FLIGHT_RESERVATION VALUES
(729516601,
'16-Jul-1999',
'TWA97',
1109.86);
INSERT INTO FLIGHT_RESERVATION VALUES
(894036865,
'11-Sep-1999',
'AL91',
584.71);
INSERT INTO FLIGHT_RESERVATION VALUES
(701089477,
'24-Mar-1999',
'USAir100',
687.34);
INSERT INTO FLIGHT_RESERVATION VALUES
(249523925,
'16-Jul-1999',
'SW133',
1195.28);
INSERT INTO FLIGHT_RESERVATION VALUES
(592022705,
'20-Oct-1998',
'TWA286',
86.85);
INSERT INTO FLIGHT_RESERVATION VALUES
(286630249,
'25-Aug-1998',
'AA67',
410.17);
INSERT INTO FLIGHT_RESERVATION VALUES
(330218505,
'5-Apr-1999',
'CA272',
396.02);
INSERT INTO FLIGHT_RESERVATION VALUES
(500534057,
'17-May-1999',
'AL192',
919.29);
INSERT INTO FLIGHT_RESERVATION VALUES
(581887817,
'16-Aug-1998',
'UA218',
348.60);
INSERT INTO FLIGHT_RESERVATION VALUES
(298770141,
'29-Jun-1998',
'UA194',
901.62);
INSERT INTO FLIGHT_RESERVATION VALUES
(396658325,
'3-Apr-1999',
'NW87',
1438.81);
INSERT INTO FLIGHT_RESERVATION VALUES
(626547241,
'6-Oct-1999',
'AL164',
775.23);
INSERT INTO FLIGHT_RESERVATION VALUES
(162127685,
'31-Mar-1999',
'AA167',
846.69);
INSERT INTO FLIGHT_RESERVATION VALUES
(152706909,
'18-Nov-1999',
'SW55',
1313.84);
INSERT INTO FLIGHT_RESERVATION VALUES
(710208129,
'14-Jun-1999',
'UA153',
1310.50);
INSERT INTO FLIGHT_RESERVATION VALUES
(666867065,
'21-Feb-1999',
'SW233',
192.68);
INSERT INTO FLIGHT_RESERVATION VALUES
(408551025,
'24-Nov-1999',
'AA176',
1007.96);
INSERT INTO FLIGHT_RESERVATION VALUES
(694085693,
'13-Jan-1998',
'SW194',
1427.69);
INSERT INTO FLIGHT_RESERVATION VALUES
(273968505,
'28-Oct-1998',
'CA115',
1214.09);
INSERT INTO FLIGHT_RESERVATION VALUES
(783349609,
'16-Jan-1998',
'USAir215',
773.86);
INSERT INTO FLIGHT_RESERVATION VALUES
(860665893,
'16-Aug-1999',
'Delta63',
226.19);
INSERT INTO FLIGHT_RESERVATION VALUES
(151443481,
'1-Mar-1998',
'TWA213',
653.65);
INSERT INTO FLIGHT_RESERVATION VALUES
(872860717,
'5-Jun-1999',
'Delta155',
1023.85);
INSERT INTO FLIGHT_RESERVATION VALUES
(947760009,
'14-Dec-1998',
'NW16',
1377.97);
INSERT INTO FLIGHT_RESERVATION VALUES
(317364501,
'7-Jun-1998',
'TWA127',
142.10);
INSERT INTO FLIGHT_RESERVATION VALUES
(414593505,
'12-Feb-1998',
'NW263',
704.60);
INSERT INTO FLIGHT_RESERVATION VALUES
(321649169,
'14-Jul-1999',
'Delta65',
353.13);
INSERT INTO FLIGHT_RESERVATION VALUES
(513745117,
'13-Feb-1998',
'CA195',
1026.04);
INSERT INTO FLIGHT_RESERVATION VALUES
(911175537,
'18-Sep-1999',
'UA4',
688.21);
INSERT INTO FLIGHT_RESERVATION VALUES
(118676757,
'3-Jul-1999',
'AL215',
1186.08);
INSERT INTO FLIGHT_RESERVATION VALUES
(542666625,
'7-May-1999',
'CA180',
1258.18);
INSERT INTO FLIGHT_RESERVATION VALUES
(981076049,
'27-Mar-1999',
'CA167',
514.04);
INSERT INTO FLIGHT_RESERVATION VALUES
(846054077,
'15-Oct-1999',
'USAir223',
143.89);
INSERT INTO FLIGHT_RESERVATION VALUES
(981378173,
'17-Oct-1998',
'SW3',
774.96);
INSERT INTO FLIGHT_RESERVATION VALUES
(641461181,
'29-Jan-1999',
'AA124',
1456.62);
INSERT INTO FLIGHT_RESERVATION VALUES
(699029541,
'31-Jan-1998',
'CA28',
1022.52);
INSERT INTO FLIGHT_RESERVATION VALUES
(242465209,
'29-Mar-1998',
'CA30',
768.28);
INSERT INTO FLIGHT_RESERVATION VALUES
(289953613,
'26-Nov-1998',
'UA215',
59.52);
INSERT INTO FLIGHT_RESERVATION VALUES
(385369873,
'23-Aug-1999',
'TWA45',
127.91);
INSERT INTO FLIGHT_RESERVATION VALUES
(432446289,
'6-Sep-1999',
'SW109',
1129.41);
INSERT INTO FLIGHT_RESERVATION VALUES
(781179809,
'11-May-1999',
'UA269',
1375.45);
INSERT INTO FLIGHT_RESERVATION VALUES
(858193969,
'25-Sep-1999',
'AL49',
1035.52);
INSERT INTO FLIGHT_RESERVATION VALUES
(879864501,
'16-Feb-1998',
'USAir140',
1234.92);
INSERT INTO FLIGHT_RESERVATION VALUES
(389297485,
'4-Dec-1999',
'Delta279',
961.54);
INSERT INTO FLIGHT_RESERVATION VALUES
(963690185,
'22-Jul-1998',
'CA88',
1225.63);
INSERT INTO FLIGHT_RESERVATION VALUES
(319644165,
'20-Sep-1998',
'USAir194',
317.56);
INSERT INTO FLIGHT_RESERVATION VALUES
(522616577,
'9-Oct-1998',
'UA129',
877.22);
INSERT INTO FLIGHT_RESERVATION VALUES
(819384765,
'9-Feb-1999',
'CA296',
962.96);
INSERT INTO FLIGHT_RESERVATION VALUES
(805377197,
'8-Dec-1999',
'CA135',
404.17);
INSERT INTO FLIGHT_RESERVATION VALUES
(856326293,
'19-Jan-1998',
'SW15',
590.44);
INSERT INTO FLIGHT_RESERVATION VALUES
(245541381,
'5-Mar-1998',
'NW143',
1266.60);
INSERT INTO FLIGHT_RESERVATION VALUES
(318682861,
'22-May-1998',
'USAir253',
1235.42);
INSERT INTO FLIGHT_RESERVATION VALUES
(237384033,
'18-Jan-1999',
'SW5',
582.52);
INSERT INTO FLIGHT_RESERVATION VALUES
(148120117,
'8-Apr-1999',
'TWA238',
312.66);
INSERT INTO FLIGHT_RESERVATION VALUES
(611276245,
'12-Aug-1999',
'AL294',
793.18);
INSERT INTO FLIGHT_RESERVATION VALUES
(252352905,
'30-Oct-1998',
'Delta211',
582.42);
INSERT INTO FLIGHT_RESERVATION VALUES
(924029541,
'29-Oct-1999',
'TWA0',
877.18);
INSERT INTO FLIGHT_RESERVATION VALUES
(807849121,
'5-Oct-1999',
'UA250',
1362.91);
INSERT INTO FLIGHT_RESERVATION VALUES
(718530273,
'5-Feb-1999',
'Delta206',
1020.18);
INSERT INTO FLIGHT_RESERVATION VALUES
(541156005,
'15-Jan-1999',
'CA282',
65.66);
INSERT INTO FLIGHT_RESERVATION VALUES
(505065917,
'1-Jul-1999',
'CA298',
604.95);
INSERT INTO FLIGHT_RESERVATION VALUES
(873574829,
'27-Apr-1998',
'AA277',
762.74);
INSERT INTO FLIGHT_RESERVATION VALUES
(378009033,
'20-Aug-1999',
'CA292',
452.42);
INSERT INTO FLIGHT_RESERVATION VALUES
(627151489,
'12-Feb-1998',
'UA14',
1075.25);
INSERT INTO FLIGHT_RESERVATION VALUES
(476144409,
'8-Mar-1999',
'Delta224',
1424.66);
INSERT INTO FLIGHT_RESERVATION VALUES
(766870117,
'9-Aug-1998',
'AA178',
298.79);
INSERT INTO FLIGHT_RESERVATION VALUES
(317721557,
'2-Oct-1999',
'AA264',
1013.18);
INSERT INTO FLIGHT_RESERVATION VALUES
(463235473,
'1-Aug-1998',
'TWA249',
500.53);
INSERT INTO FLIGHT_RESERVATION VALUES
(854623413,
'11-Jul-1998',
'SW41',
755.23);
INSERT INTO FLIGHT_RESERVATION VALUES
(720947265,
'30-Dec-1998',
'SW285',
787.05);
INSERT INTO FLIGHT_RESERVATION VALUES
(580075073,
'19-Sep-1999',
'AL146',
476.45);
INSERT INTO FLIGHT_RESERVATION VALUES
(338238525,
'11-Jun-1999',
'AL94',
1207.09);
INSERT INTO FLIGHT_RESERVATION VALUES
(418026733,
'12-Jun-1999',
'AL291',
777.57);
INSERT INTO FLIGHT_RESERVATION VALUES
(524072265,
'8-Feb-1998',
'USAir99',
286.85);
INSERT INTO FLIGHT_RESERVATION VALUES
(429672241,
'19-Sep-1998',
'AA227',
489.64);
INSERT INTO FLIGHT_RESERVATION VALUES
(214093017,
'26-Apr-1998',
'Delta179',
434.11);
INSERT INTO FLIGHT_RESERVATION VALUES
(554010009,
'28-Dec-1998',
'UA213',
229.58);
INSERT INTO FLIGHT_RESERVATION VALUES
(639291381,
'7-Mar-1998',
'UA2',
747.04);
INSERT INTO FLIGHT_RESERVATION VALUES
(490151977,
'13-Jan-1998',
'Delta61',
1354.67);
INSERT INTO FLIGHT_RESERVATION VALUES
(332141113,
'15-Dec-1999',
'NW0',
1415.33);
INSERT INTO FLIGHT_RESERVATION VALUES
(487680053,
'11-Dec-1999',
'Delta126',
1058.09);
INSERT INTO FLIGHT_RESERVATION VALUES
(896096801,
'11-Oct-1999',
'SW222',
1179.21);
INSERT INTO FLIGHT_RESERVATION VALUES
(973165893,
'20-Jan-1999',
'AA290',
392.18);
INSERT INTO FLIGHT_RESERVATION VALUES
(551538085,
'17-Dec-1999',
'USAir82',
791.58);
INSERT INTO FLIGHT_RESERVATION VALUES
(236972045,
'2-Jul-1998',
'USAir85',
1206.31);
INSERT INTO FLIGHT_RESERVATION VALUES
(766513061,
'16-Nov-1998',
'AL1',
1203.34);
INSERT INTO FLIGHT_RESERVATION VALUES
(761267089,
'9-Oct-1998',
'TWA11',
672.01);
INSERT INTO FLIGHT_RESERVATION VALUES
(413989257,
'8-Sep-1999',
'SW16',
1254.70);
INSERT INTO FLIGHT_RESERVATION VALUES
(765002441,
'16-Dec-1998',
'TWA174',
399.00);
INSERT INTO FLIGHT_RESERVATION VALUES
(381881713,
'14-Dec-1998',
'AA209',
825.68);
INSERT INTO FLIGHT_RESERVATION VALUES
(893432617,
'19-Jul-1998',
'CA238',
593.55);
INSERT INTO FLIGHT_RESERVATION VALUES
(712680053,
'4-Apr-1999',
'AA88',
52.61);
INSERT INTO FLIGHT_RESERVATION VALUES
(567825317,
'10-Sep-1998',
'SW22',
1386.72);
INSERT INTO FLIGHT_RESERVATION VALUES
(565600585,
'16-Feb-1999',
'Delta90',
1529.08);
INSERT INTO FLIGHT_RESERVATION VALUES
(433599853,
'8-Aug-1998',
'AA90',
1002.65);
INSERT INTO FLIGHT_RESERVATION VALUES
(191159057,
'1-Jan-1998',
'CA36',
127.13);
INSERT INTO FLIGHT_RESERVATION VALUES
(635665893,
'13-Dec-1999',
'Delta215',
177.49);
INSERT INTO FLIGHT_RESERVATION VALUES
(809909057,
'21-Jul-1998',
'NW114',
720.35);
INSERT INTO FLIGHT_RESERVATION VALUES
(434506225,
'26-Apr-1998',
'NW246',
412.59);
INSERT INTO FLIGHT_RESERVATION VALUES
(997308349,
'21-Jan-1999',
'SW244',
967.18);
INSERT INTO FLIGHT_RESERVATION VALUES
(694030761,
'14-Apr-1999',
'AA46',
518.34);
INSERT INTO FLIGHT_RESERVATION VALUES
(923919677,
'29-Jan-1999',
'AA121',
677.00);
INSERT INTO FLIGHT_RESERVATION VALUES
(593478393,
'24-Mar-1999',
'USAir27',
1211.80);
INSERT INTO FLIGHT_RESERVATION VALUES
(286932373,
'21-Mar-1999',
'TWA283',
1061.75);
INSERT INTO FLIGHT_RESERVATION VALUES
(785464477,
'10-Jan-1999',
'CA247',
515.45);
INSERT INTO FLIGHT_RESERVATION VALUES
(687878417,
'21-Mar-1999',
'Delta191',
419.19);
INSERT INTO FLIGHT_RESERVATION VALUES
(404513549,
'8-May-1998',
'CA288',
1145.11);
INSERT INTO FLIGHT_RESERVATION VALUES
(794885253,
'16-Sep-1999',
'Delta49',
1456.62);
INSERT INTO FLIGHT_RESERVATION VALUES
(197915649,
'31-May-1999',
'SW70',
1179.58);
INSERT INTO FLIGHT_RESERVATION VALUES
(269381713,
'22-Feb-1998',
'Delta142',
893.02);
INSERT INTO FLIGHT_RESERVATION VALUES
(581283569,
'10-Oct-1999',
'TWA106',
627.70);
INSERT INTO FLIGHT_RESERVATION VALUES
(301242065,
'26-Aug-1999',
'AA76',
1260.42);
INSERT INTO FLIGHT_RESERVATION VALUES
(173416137,
'15-Dec-1998',
'NW239',
126.63);
INSERT INTO FLIGHT_RESERVATION VALUES
(943475341,
'13-Apr-1999',
'NW277',
990.29);
INSERT INTO FLIGHT_RESERVATION VALUES
(963333129,
'21-Aug-1999',
'NW44',
209.30);
INSERT INTO FLIGHT_RESERVATION VALUES
(980773925,
'3-Jan-1998',
'NW10',
583.16);
INSERT INTO FLIGHT_RESERVATION VALUES
(176492309,
'3-Dec-1998',
'CA3',
931.84);
INSERT INTO FLIGHT_RESERVATION VALUES
(494793701,
'10-Sep-1999',
'Delta237',
1190.06);
INSERT INTO FLIGHT_RESERVATION VALUES
(112277221,
'5-Jun-1999',
'AL161',
553.08);
INSERT INTO FLIGHT_RESERVATION VALUES
(875030517,
'30-Oct-1999',
'Delta109',
336.70);
INSERT INTO FLIGHT_RESERVATION VALUES
(180831909,
'13-Oct-1998',
'SW183',
222.71);
INSERT INTO FLIGHT_RESERVATION VALUES
(368423461,
'8-Dec-1999',
'USAir288',
1266.87);
INSERT INTO FLIGHT_RESERVATION VALUES
(544891357,
'19-Apr-1998',
'USAir81',
642.07);
INSERT INTO FLIGHT_RESERVATION VALUES
(260015869,
'21-Aug-1998',
'AA116',
1332.97);
INSERT INTO FLIGHT_RESERVATION VALUES
(868630981,
'9-Mar-1998',
'AA127',
463.64);
INSERT INTO FLIGHT_RESERVATION VALUES
(948117065,
'26-Sep-1998',
'UA147',
872.97);
INSERT INTO FLIGHT_RESERVATION VALUES
(898266601,
'20-Jan-1999',
'NW152',
1467.69);
INSERT INTO FLIGHT_RESERVATION VALUES
(199179077,
'19-Nov-1999',
'UA36',
882.31);
INSERT INTO FLIGHT_RESERVATION VALUES
(802905273,
'1-Nov-1998',
'AA248',
756.47);
INSERT INTO FLIGHT_RESERVATION VALUES
(252655029,
'8-Mar-1999',
'CA52',
189.07);
INSERT INTO FLIGHT_RESERVATION VALUES
(957894897,
'6-Feb-1999',
'CA166',
102.51);
INSERT INTO FLIGHT_RESERVATION VALUES
(129113769,
'21-Feb-1998',
'UA251',
1415.37);
INSERT INTO FLIGHT_RESERVATION VALUES
(746710205,
'5-Apr-1998',
'CA173',
473.57);
INSERT INTO FLIGHT_RESERVATION VALUES
(564749145,
'28-Mar-1998',
'USAir246',
196.99);
INSERT INTO FLIGHT_RESERVATION VALUES
(314096069,
'4-Feb-1999',
'USAir102',
1386.62);
INSERT INTO FLIGHT_RESERVATION VALUES
(634512329,
'27-Jun-1999',
'NW174',
531.29);
INSERT INTO FLIGHT_RESERVATION VALUES
(313739013,
'20-Sep-1998',
'USAir259',
1154.45);
INSERT INTO FLIGHT_RESERVATION VALUES
(851245117,
'17-May-1999',
'CA50',
513.94);
INSERT INTO FLIGHT_RESERVATION VALUES
(452496337,
'21-Jun-1999',
'Delta295',
879.61);
INSERT INTO FLIGHT_RESERVATION VALUES
(726138305,
'21-Oct-1999',
'Delta54',
272.24);
INSERT INTO FLIGHT_RESERVATION VALUES
(426843261,
'4-Aug-1998',
'AA291',
983.43);
INSERT INTO FLIGHT_RESERVATION VALUES
(270095825,
'31-Jan-1998',
'AA133',
519.25);
INSERT INTO FLIGHT_RESERVATION VALUES
(911477661,
'16-Dec-1999',
'AL281',
1524.00);
INSERT INTO FLIGHT_RESERVATION VALUES
(757339477,
'8-Jan-1998',
'NW176',
705.65);
INSERT INTO FLIGHT_RESERVATION VALUES
(916970825,
'7-Feb-1998',
'Delta271',
1250.99);
INSERT INTO FLIGHT_RESERVATION VALUES
(782086181,
'20-Jun-1999',
'TWA29',
1319.01);
INSERT INTO FLIGHT_RESERVATION VALUES
(105822753,
'10-Aug-1998',
'TWA35',
375.97);
INSERT INTO FLIGHT_RESERVATION VALUES
(311267089,
'13-Jan-1999',
'TWA114',
139.77);
INSERT INTO FLIGHT_RESERVATION VALUES
(356228637,
'14-Aug-1999',
'AL219',
1188.32);
INSERT INTO FLIGHT_RESERVATION VALUES
(168582153,
'14-Apr-1999',
'Delta193',
1094.39);
INSERT INTO FLIGHT_RESERVATION VALUES
(406079101,
'4-Oct-1998',
'UA59',
657.73);
INSERT INTO FLIGHT_RESERVATION VALUES
(535415649,
'9-Aug-1998',
'NW98',
1507.02);
INSERT INTO FLIGHT_RESERVATION VALUES
(977450561,
'12-Sep-1998',
'Delta173',
787.41);
INSERT INTO FLIGHT_RESERVATION VALUES
(792523193,
'20-Feb-1998',
'TWA299',
1182.60);
INSERT INTO FLIGHT_RESERVATION VALUES
(975582885,
'11-Apr-1998',
'CA293',
280.03);
INSERT INTO FLIGHT_RESERVATION VALUES
(752203369,
'24-Sep-1999',
'CA1',
338.21);
INSERT INTO FLIGHT_RESERVATION VALUES
(743029785,
'15-Jun-1999',
'Delta130',
1181.27);
INSERT INTO FLIGHT_RESERVATION VALUES
(244635009,
'12-Apr-1998',
'UA17',
1446.82);
INSERT INTO FLIGHT_RESERVATION VALUES
(759866333,
'22-Mar-1999',
'TWA202',
1520.06);
INSERT INTO FLIGHT_RESERVATION VALUES
(509460449,
'18-Jun-1999',
'USAir239',
161.79);
INSERT INTO FLIGHT_RESERVATION VALUES
(927297973,
'22-Mar-1999',
'UA117',
1493.37);
INSERT INTO FLIGHT_RESERVATION VALUES
(128262329,
'12-Jan-1999',
'UA178',
448.30);
INSERT INTO FLIGHT_RESERVATION VALUES
(145648193,
'30-Sep-1999',
'NW180',
1167.58);
INSERT INTO FLIGHT_RESERVATION VALUES
(975692749,
'23-Jan-1999',
'Delta23',
477.73);
INSERT INTO FLIGHT_RESERVATION VALUES
(982339477,
'11-Apr-1999',
'NW271',
1511.23);
INSERT INTO FLIGHT_RESERVATION VALUES
(782690429,
'3-Aug-1999',
'AL25',
461.67);
INSERT INTO FLIGHT_RESERVATION VALUES
(584854125,
'5-Mar-1999',
'AA55',
54.26);
INSERT INTO FLIGHT_RESERVATION VALUES
(460269165,
'2-Dec-1998',
'AA158',
1504.41);
INSERT INTO FLIGHT_RESERVATION VALUES
(401547241,
'5-Nov-1998',
'USAir290',
1011.99);
INSERT INTO FLIGHT_RESERVATION VALUES
(889395141,
'17-Nov-1998',
'USAir62',
80.30);
INSERT INTO FLIGHT_RESERVATION VALUES
(464196777,
'12-Jun-1999',
'CA255',
1380.63);
INSERT INTO FLIGHT_RESERVATION VALUES
(758850097,
'11-Mar-1999',
'TWA173',
834.19);
INSERT INTO FLIGHT_RESERVATION VALUES
(483505249,
'15-Jun-1998',
'NW55',
1370.79);
INSERT INTO FLIGHT_RESERVATION VALUES
(772555541,
'27-Jul-1998',
'NW196',
1086.15);
INSERT INTO FLIGHT_RESERVATION VALUES
(733746337,
'2-Aug-1999',
'AA213',
1161.59);
INSERT INTO FLIGHT_RESERVATION VALUES
(788897705,
'30-May-1998',
'AA266',
1300.61);
INSERT INTO FLIGHT_RESERVATION VALUES
(819686889,
'20-Dec-1998',
'TWA175',
936.64);
INSERT INTO FLIGHT_RESERVATION VALUES
(495288085,
'18-Aug-1998',
'Delta253',
1016.20);
INSERT INTO FLIGHT_RESERVATION VALUES
(956027221,
'18-Aug-1998',
'AL190',
93.62);
INSERT INTO FLIGHT_RESERVATION VALUES
(709960937,
'14-Feb-1998',
'NW204',
710.60);
INSERT INTO FLIGHT_RESERVATION VALUES
(662527465,
'25-Sep-1999',
'USAir188',
1238.77);
INSERT INTO FLIGHT_RESERVATION VALUES
(392620849,
'22-Jul-1999',
'CA171',
973.40);
INSERT INTO FLIGHT_RESERVATION VALUES
(827047729,
'1-Jun-1999',
'SW63',
1325.83);
INSERT INTO FLIGHT_RESERVATION VALUES
(342825317,
'12-Nov-1999',
'AL52',
600.37);
INSERT INTO FLIGHT_RESERVATION VALUES
(208847045,
'26-Oct-1999',
'TWA30',
1344.60);
INSERT INTO FLIGHT_RESERVATION VALUES
(506027221,
'30-Aug-1999',
'AL298',
1332.75);
INSERT INTO FLIGHT_RESERVATION VALUES
(442169189,
'23-Sep-1999',
'AL109',
382.93);
INSERT INTO FLIGHT_RESERVATION VALUES
(449832153,
'8-Jun-1998',
'AA216',
994.55);
INSERT INTO FLIGHT_RESERVATION VALUES
(324780273,
'23-Jul-1998',
'NW71',
87.77);
INSERT INTO FLIGHT_RESERVATION VALUES
(980279541,
'8-Mar-1998',
'CA31',
548.92);
INSERT INTO FLIGHT_RESERVATION VALUES
(549533081,
'3-Jul-1998',
'CA112',
264.92);
INSERT INTO FLIGHT_RESERVATION VALUES
(709658813,
'30-Apr-1999',
'USAir231',
1202.79);
INSERT INTO FLIGHT_RESERVATION VALUES
(352355957,
'25-Oct-1998',
'Delta174',
120.54);
INSERT INTO FLIGHT_RESERVATION VALUES
(838034057,
'5-Jul-1998',
'Delta53',
678.42);
INSERT INTO FLIGHT_RESERVATION VALUES
(665054321,
'6-Jun-1998',
'AL235',
1340.07);
INSERT INTO FLIGHT_RESERVATION VALUES
(137326049,
'10-Mar-1998',
'AA85',
414.88);
INSERT INTO FLIGHT_RESERVATION VALUES
(189703369,
'20-Jun-1999',
'USAir210',
1287.98);
INSERT INTO FLIGHT_RESERVATION VALUES
(155673217,
'19-May-1999',
'Delta289',
805.95);
INSERT INTO FLIGHT_RESERVATION VALUES
(944381713,
'11-Feb-1999',
'NW247',
1112.65);
INSERT INTO FLIGHT_RESERVATION VALUES
(821856689,
'27-Nov-1999',
'SW290',
576.89);
INSERT INTO FLIGHT_RESERVATION VALUES
(348565673,
'16-Jan-1998',
'TWA266',
71.97);
INSERT INTO FLIGHT_RESERVATION VALUES
(715509033,
'15-Mar-1999',
'SW84',
584.21);
INSERT INTO FLIGHT_RESERVATION VALUES
(230682373,
'16-Apr-1999',
'USAir45',
467.34);
INSERT INTO FLIGHT_RESERVATION VALUES
(630172729,
'18-Jan-1998',
'Delta8',
758.57);
INSERT INTO FLIGHT_RESERVATION VALUES
(582739257,
'12-Feb-1999',
'USAir143',
1041.42);
INSERT INTO FLIGHT_RESERVATION VALUES
(159957885,
'9-Sep-1999',
'USAir208',
964.98);
INSERT INTO FLIGHT_RESERVATION VALUES
(403305053,
'5-May-1999',
'TWA189',
984.07);
INSERT INTO FLIGHT_RESERVATION VALUES
(417367553,
'6-Apr-1999',
'UA261',
688.21);
INSERT INTO FLIGHT_RESERVATION VALUES
(790902709,
'6-Jan-1998',
'NW81',
416.26);
INSERT INTO FLIGHT_RESERVATION VALUES
(288442993,
'2-Jun-1998',
'USAir150',
1120.07);
INSERT INTO FLIGHT_RESERVATION VALUES
(912933349,
'11-Aug-1999',
'CA275',
656.58);
INSERT INTO FLIGHT_RESERVATION VALUES
(662884521,
'24-Aug-1998',
'USAir280',
1083.86);
INSERT INTO FLIGHT_RESERVATION VALUES
(158804321,
'19-Feb-1998',
'Delta229',
801.14);
INSERT INTO FLIGHT_RESERVATION VALUES
(148614501,
'20-Dec-1999',
'NW270',
357.89);
INSERT INTO FLIGHT_RESERVATION VALUES
(501797485,
'10-Sep-1999',
'Delta153',
633.01);
INSERT INTO FLIGHT_RESERVATION VALUES
(621603393,
'23-Dec-1998',
'NW116',
1346.57);
INSERT INTO FLIGHT_RESERVATION VALUES
(200332641,
'7-Jul-1999',
'Delta236',
51.24);
INSERT INTO FLIGHT_RESERVATION VALUES
(337991333,
'7-Aug-1998',
'Delta70',
692.06);
INSERT INTO FLIGHT_RESERVATION VALUES
(625888061,
'13-May-1998',
'UA278',
1002.24);
INSERT INTO FLIGHT_RESERVATION VALUES
(485510253,
'4-Oct-1998',
'SW54',
612.55);
INSERT INTO FLIGHT_RESERVATION VALUES
(864099121,
'15-Feb-1999',
'UA232',
930.23);
INSERT INTO FLIGHT_RESERVATION VALUES
(307092285,
'23-May-1999',
'USAir48',
836.58);
INSERT INTO FLIGHT_RESERVATION VALUES
(719381713,
'9-Mar-1998',
'SW263',
1240.46);
INSERT INTO FLIGHT_RESERVATION VALUES
(602651977,
'24-Apr-1999',
'NW128',
802.98);
INSERT INTO FLIGHT_RESERVATION VALUES
(729461669,
'23-Dec-1998',
'AA108',
1448.01);
INSERT INTO FLIGHT_RESERVATION VALUES
(960668945,
'6-Sep-1999',
'USAir6',
1019.82);
|
/*create table sql uesd to set up initila tables for the raw data*/
create table accident_df (
ID varchar(10) Primary Key,
Start_Time date,
City varchar (55),
County varchar(55),
State varchar(2),
Zipcode varchar(10)
);
create table covid_df (
date date,
County varchar(55),
State varchar(30),
cases int,
deaths int )
create table covid_by_day
(Date date,
Value int,
seven_day_average int,
parts_per_million int
)
create table coviddays(
date date,
county varchar (60),
state2 varchar(2),
deaths int,
newdeaths int)
|
CREATE TABLE `t_user`(
`USER_ID` int(20) NOT NULL AUTO_INCREMENT,
`USER_NAME` varchar(50) NOT NULL,
`PASSWORDS` varchar(20) NOT NULL,
`sex` varchar(12) DEFAULT NULL,
`age` int(11) DEFAULT NULL,
`birthday` date NULL DEFAULT NULL,
`email` varchar(50) DEFAULT NULL,
PRIMARY KEY `USER_ID`,
UNIQUE KEY `USER_NAME_UNIQUE` (`USER_NAME`),
UNIQUE KEY `email_UNIQUE` (`email`)
)ENGINE=InnoDB DEFAULT CHARSET=utf8; |
select Gia FROM DanhSachHang
ORDER BY GIA DESC; |
CREATE TABLE message_metadata (
id int(11) NOT NULL AUTO_INCREMENT,
channel_id varchar(255) DEFAULT NULL,
created_timestamp datetime DEFAULT NULL,
message_id varchar(255) DEFAULT NULL,
operation_name varchar(255) DEFAULT NULL,
requestor_id varchar(255) DEFAULT NULL,
routing varchar(255) DEFAULT NULL,
service_name varchar(255) DEFAULT NULL,
target_system varchar(255) DEFAULT NULL,
transaction_id varchar(255) DEFAULT NULL,
type varchar(255) DEFAULT NULL,
PRIMARY KEY (id,created_timestamp)
) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=latin1
PARTITION BY RANGE (to_days(created_timestamp))
(PARTITION p20170727 VALUES LESS THAN (TO_DAYS('2017-07-27')),
PARTITION p20170728 VALUES LESS THAN (TO_DAYS('2017-07-28')),
PARTITION p20170729 VALUES LESS THAN (TO_DAYS('2017-07-29')),
PARTITION p20170730 VALUES LESS THAN (TO_DAYS('2017-07-30')),
PARTITION p20170731 VALUES LESS THAN (TO_DAYS('2017-07-31')),
PARTITION p20170801 VALUES LESS THAN (TO_DAYS('2017-08-01')),
PARTITION p20170802 VALUES LESS THAN (TO_DAYS('2017-08-02')),
PARTITION p20170803 VALUES LESS THAN (TO_DAYS('2017-08-03')),
PARTITION p20170804 VALUES LESS THAN (TO_DAYS('2017-08-04')),
PARTITION p20170805 VALUES LESS THAN (TO_DAYS('2017-08-05')),
PARTITION p20170806 VALUES LESS THAN (TO_DAYS('2017-08-06')),
PARTITION p20170807 VALUES LESS THAN (TO_DAYS('2017-08-07')),
PARTITION p20170808 VALUES LESS THAN (TO_DAYS('2017-08-08')),
PARTITION p20170809 VALUES LESS THAN (TO_DAYS('2017-08-09')),
PARTITION p20170810 VALUES LESS THAN (TO_DAYS('2017-08-10')),
PARTITION p20170811 VALUES LESS THAN (TO_DAYS('2017-08-11')),
PARTITION p20170812 VALUES LESS THAN (TO_DAYS('2017-08-12')),
PARTITION p20170813 VALUES LESS THAN (TO_DAYS('2017-08-13')),
PARTITION p20170814 VALUES LESS THAN (TO_DAYS('2017-08-14')),
PARTITION p20170815 VALUES LESS THAN (TO_DAYS('2017-08-15'))
); |
-- 테이블 정보
ALTER TABLE ys_table
DROP CONSTRAINT FK_restaurant_TO_ys_table; -- 식당 업로드 -> 테이블 정보
-- 테이블 정보
ALTER TABLE ys_table
DROP CONSTRAINT FK_MEMBER_TO_ys_table; -- 회원 -> 테이블 정보
-- 테이블 정보
ALTER TABLE ys_table
DROP CONSTRAINT PK_ys_table; -- 테이블 정보 기본키
-- 테이블 정보
DROP TABLE ys_table;
-- 테이블 정보
CREATE TABLE ys_table (
tablenum number(8) NOT NULL, -- 테이블 번호
tableuser NUMBER(8) NOT NULL, -- 테이블 인원수
opentime1 VARCHAR2(30) NOT NULL, -- 시작시간1
closetime1 VARCHAR2(30) NOT NULL, -- 마감시간1
opentime2 VARCHAR2(30) NULL, -- 시작시간2
closetime2 VARCHAR2(30) NULL, -- 마감시간2
upnum NUMBER(8) NOT NULL, -- 업로드 번호
idx NUMBER(8) NOT NULL -- 회원번호
);
-- 테이블 정보 기본키
CREATE UNIQUE INDEX PK_ys_table
ON ys_table ( -- 테이블 정보
tablenum ASC -- 테이블 번호
);
-- 테이블 정보
ALTER TABLE ys_table
ADD
CONSTRAINT PK_ys_table -- 테이블 정보 기본키
PRIMARY KEY (
tablenum -- 테이블 번호
);
-- 테이블 정보
ALTER TABLE ys_table
ADD
CONSTRAINT FK_restaurant_TO_ys_table -- 식당 업로드 -> 테이블 정보
FOREIGN KEY (
upnum -- 업로드 번호
)
REFERENCES restaurant ( -- 식당 업로드
upnum -- 업로드 번호
);
-- 테이블 정보
ALTER TABLE ys_table
ADD
CONSTRAINT FK_MEMBER_TO_ys_table -- 회원 -> 테이블 정보
FOREIGN KEY (
idx -- 회원번호
)
REFERENCES MEMBER ( -- 회원
idx -- 회원번호
);
DROP SEQUENCE ys_table_tablenum_SEQ;
CREATE SEQUENCE ys_table_tablenum_SEQ
START WITH 1
INCREMENT BY 1
NOCACHE; |
--Insertar Curso:
CREATE OR REPLACE PROCEDURE INSERTAR_CURSO
(P_Fecha_Inicio IN Cursos.Fecha_Inicio%TYPE,
P_Fecha_Fin IN Cursos.Fecha_Fin%TYPE,
P_Tipo_Examen IN Cursos.Tipo_Examen%TYPE,
P_Nivel_Examen IN Cursos.Nivel_Examen%TYPE,
P_Id_Curso IN Cursos.Id_Curso%TYPE
) IS
BEGIN
INSERT INTO Cursos(Fecha_Inicio,Fecha_Fin,Tipo_Examen,Nivel_Examen, Id_Curso)
VALUES (P_Fecha_Inicio, P_Fecha_Fin, P_Tipo_Examen, P_Nivel_Examen, P_Id_Curso);
END;
/
--Insertar Usuario:
create or replace PROCEDURE INSERTAR_USUARIO_CON_CURSO
(P_DNI_Usuario IN Usuarios.DNI_Usuario%TYPE,
P_Nombre IN Usuarios.Nombre%TYPE,
P_Apellidos IN Usuarios.Apellidos%TYPE,
P_Edad IN Usuarios.Edad%TYPE,
P_Localidad IN Usuarios.Localidad%TYPE,
P_TelefonoMovil IN Usuarios.Telefono_Movil%TYPE,
P_TelefonoFijo IN Usuarios.Telefono_Fijo%TYPE,
P_Email IN Usuarios.Email%TYPE,
P_NombrePadreMadre IN Usuarios.Nombre_Padre_Madre%TYPE,
P_Usuario IN Usuarios.Usuario%TYPE,
P_Pass IN Usuarios.Pass%TYPE,
P_TipoUsuario IN Usuarios.TipoUsuario%TYPE,
P_Tipo_Examen IN Usuarios.Tipo_Examen%TYPE,
P_Nivel_Examen IN Usuarios.Nivel_Examen%TYPE,
P_Id_Curso IN Usuarios.Id_Curso%TYPE
) IS
BEGIN
INSERT INTO Usuarios(DNI_Usuario,Nombre,Apellidos,Edad,Localidad ,Telefono_Movil,
Telefono_Fijo,Email,Nombre_Padre_Madre,Usuario,Pass, TipoUsuario, Tipo_Examen, Nivel_Examen,Id_Curso)
VALUES (P_DNI_Usuario,P_Nombre,P_Apellidos,P_Edad,P_Localidad,P_TelefonoMovil,
P_TelefonoFijo,P_Email,P_NombrePadreMadre,P_Usuario,P_Pass,P_TipoUsuario, P_Tipo_Examen, P_Nivel_Examen,P_Id_Curso);
END;
/
--Insertar Usuario:
create or replace PROCEDURE INSERTAR_USUARIO
(P_DNI_Usuario IN Usuarios.DNI_Usuario%TYPE,
P_Nombre IN Usuarios.Nombre%TYPE,
P_Apellidos IN Usuarios.Apellidos%TYPE,
P_Edad IN Usuarios.Edad%TYPE,
P_Localidad IN Usuarios.Localidad%TYPE,
P_TelefonoMovil IN Usuarios.Telefono_Movil%TYPE,
P_TelefonoFijo IN Usuarios.Telefono_Fijo%TYPE,
P_Email IN Usuarios.Email%TYPE,
P_NombrePadreMadre IN Usuarios.Nombre_Padre_Madre%TYPE,
P_Usuario IN Usuarios.Usuario%TYPE,
P_Pass IN Usuarios.Pass%TYPE,
P_TipoUsuario IN Usuarios.TipoUsuario%TYPE,
P_Tipo_Examen IN Usuarios.Tipo_Examen%TYPE,
P_Nivel_Examen IN Usuarios.Nivel_Examen%TYPE
) IS
BEGIN
INSERT INTO Usuarios(DNI_Usuario,Nombre,Apellidos,Edad,Localidad ,Telefono_Movil,
Telefono_Fijo,Email,Nombre_Padre_Madre,Usuario,Pass, TipoUsuario, Tipo_Examen, Nivel_Examen)
VALUES (P_DNI_Usuario,P_Nombre,P_Apellidos,P_Edad,P_Localidad,P_TelefonoMovil,
P_TelefonoFijo,P_Email,P_NombrePadreMadre,P_Usuario,P_Pass,P_TipoUsuario, P_Tipo_Examen, P_Nivel_Examen);
END;
/
--Insertar Usuario:
create or replace PROCEDURE INSERTAR_USUARIO_CON_CURSO
(P_DNI_Usuario IN Usuarios.DNI_Usuario%TYPE,
P_Nombre IN Usuarios.Nombre%TYPE,
P_Apellidos IN Usuarios.Apellidos%TYPE,
P_Edad IN Usuarios.Edad%TYPE,
P_Localidad IN Usuarios.Localidad%TYPE,
P_TelefonoMovil IN Usuarios.Telefono_Movil%TYPE,
P_TelefonoFijo IN Usuarios.Telefono_Fijo%TYPE,
P_Email IN Usuarios.Email%TYPE,
P_NombrePadreMadre IN Usuarios.Nombre_Padre_Madre%TYPE,
P_Usuario IN Usuarios.Usuario%TYPE,
P_Pass IN Usuarios.Pass%TYPE,
P_TipoUsuario IN Usuarios.TipoUsuario%TYPE,
P_Tipo_Examen IN Usuarios.Tipo_Examen%TYPE,
P_Nivel_Examen IN Usuarios.Nivel_Examen%TYPE,
P_Id_Curso IN Usuarios.Id_Curso%TYPE
) IS
BEGIN
INSERT INTO Usuarios(DNI_Usuario,Nombre,Apellidos,Edad,Localidad ,Telefono_Movil,
Telefono_Fijo,Email,Nombre_Padre_Madre,Usuario,Pass, TipoUsuario, Tipo_Examen, Nivel_Examen,Id_Curso)
VALUES (P_DNI_Usuario,P_Nombre,P_Apellidos,P_Edad,P_Localidad,P_TelefonoMovil,
P_TelefonoFijo,P_Email,P_NombrePadreMadre,P_Usuario,P_Pass,P_TipoUsuario, P_Tipo_Examen, P_Nivel_Examen,P_Id_Curso);
END;
/
--Insertar Usuario:
create or replace PROCEDURE INSERTAR_PROFESOR
(P_DNI_Usuario IN Usuarios.DNI_Usuario%TYPE,
P_Nombre IN Usuarios.Nombre%TYPE,
P_Apellidos IN Usuarios.Apellidos%TYPE,
P_Edad IN Usuarios.Edad%TYPE,
P_Localidad IN Usuarios.Localidad%TYPE,
P_TelefonoMovil IN Usuarios.Telefono_Movil%TYPE,
P_TelefonoFijo IN Usuarios.Telefono_Fijo%TYPE,
P_Email IN Usuarios.Email%TYPE,
P_Usuario IN Usuarios.Usuario%TYPE,
P_Pass IN Usuarios.Pass%TYPE,
P_TipoUsuario IN Usuarios.TipoUsuario%TYPE,
P_Nivel_Examen IN Usuarios.Nivel_Examen%TYPE
) IS
BEGIN
INSERT INTO Usuarios(DNI_Usuario,Nombre,Apellidos,Edad,Localidad ,Telefono_Movil,
Telefono_Fijo,Email,Usuario,Pass, TipoUsuario, Nivel_Examen)
VALUES (P_DNI_Usuario,P_Nombre,P_Apellidos,P_Edad,P_Localidad,P_TelefonoMovil,
P_TelefonoFijo,P_Email,P_Usuario,P_Pass,P_TipoUsuario, P_Nivel_Examen);
END;
/
--Insertar Horario_Curso:
CREATE OR REPLACE PROCEDURE INSERTAR_HORARIO_CURSO
(P_Hora_Inicio IN Horario_Curso.Hora_Inicio%TYPE,
P_Hora_Fin IN Horario_Curso.Hora_Fin%TYPE,
P_Dia IN Horario_Curso.Dia%TYPE,
P_Id_Horario IN Horario_Curso.Id_Horario%TYPE,
P_Id_Curso IN Horario_Curso.Id_Curso%TYPE
) IS
BEGIN
INSERT INTO Horario_Curso(Hora_Inicio,Hora_Fin,Dia,Id_Horario,Id_Curso)
VALUES (P_Hora_Inicio,P_Hora_Fin,P_Dia,P_Id_Horario,P_Id_Curso);
END;
/
--Insertar Recibo:
CREATE OR REPLACE PROCEDURE INSERTAR_RECIBO
(P_Id_Recibo IN Recibos.Id_Recibo%TYPE,
P_Fecha_Recibo IN Recibos.Fecha_Recibo%TYPE,
P_Por_Pagar IN Recibos.Por_Pagar%TYPE,
P_Cuenta_Bancaria IN Recibos.Cuenta_Bancaria%TYPE,
P_Hermanos IN Recibos.Hermanos%TYPE,
P_Pagado IN Recibos.Pagado%TYPE,
P_DNI_Usuario IN Recibos.DNI_Usuario%TYPE,
P_Forma_Pago IN Recibos.Forma_Pago%TYPE
) IS
BEGIN
INSERT INTO Recibos(Id_Recibo,Fecha_Recibo,Por_Pagar,Cuenta_Bancaria,Hermanos,Pagado,DNI_Usuario,Forma_Pago)
VALUES (P_Id_Recibo,P_Fecha_Recibo,P_Por_Pagar,P_Cuenta_Bancaria,P_Hermanos,P_Pagado,P_DNI_Usuario,P_Forma_Pago);
END;
/
--Quitar Alumno:
CREATE OR REPLACE PROCEDURE QUITAR_USUARIO (DNI_Usuario_A_QUITAR IN Usuarios.DNI_Usuario%TYPE) AS
BEGIN
DELETE FROM Recibos WHERE DNI_Usuario = DNI_Usuario_A_QUITAR;
DELETE FROM Usuarios WHERE DNI_Usuario = DNI_Usuario_A_QUITAR;
END;
/
--Modificar Alumno:
CREATE OR REPLACE PROCEDURE MODIFICAR_USUARIO
(DNI_USU_A_MOD IN USUARIOS.DNI_USUARIO%TYPE,
NOM_USU_A_MOD IN USUARIOS.NOMBRE%TYPE,
APE_USU_A_MOD IN USUARIOS.APELLIDOS%TYPE,
EDAD_A_MOD IN USUARIOS.EDAD%TYPE,
LOCALIDAD_A_MOD IN USUARIOS.LOCALIDAD%TYPE,
TELEFONO_MOVIL_A_MOD IN USUARIOS.TELEFONO_MOVIL%TYPE,
TELEFONO_FIJO_A_MOD IN USUARIOS.TELEFONO_FIJO%TYPE,
EMAIL_A_MOD IN USUARIOS.EMAIL%TYPE,
NOMBRE_PADRE_MADRE_A_MOD IN USUARIOS.NOMBRE_PADRE_MADRE%TYPE) IS
BEGIN
UPDATE USUARIOS
SET NOMBRE=NOM_USU_A_MOD, APELLIDOS=APE_USU_A_MOD, EDAD=EDAD_A_MOD, LOCALIDAD=LOCALIDAD_A_MOD, TELEFONO_MOVIL=TELEFONO_MOVIL_A_MOD, TELEFONO_FIJO=TELEFONO_FIJO_A_MOD, EMAIL=EMAIL_A_MOD, NOMBRE_PADRE_MADRE=NOMBRE_PADRE_MADRE_A_MOD
WHERE DNI_USUARIO = DNI_USU_A_MOD;
END;
/
--Asignar usuario:
CREATE OR REPLACE PROCEDURE ASIGNAR_USUARIO
(DNI_USU_A_MOD IN USUARIOS.DNI_USUARIO%TYPE,
NOM_USU_A_MOD IN USUARIOS.NOMBRE%TYPE,
APE_USU_A_MOD IN USUARIOS.APELLIDOS%TYPE,
TIP_EX_A_MOD IN USUARIOS.TIPO_EXAMEN%TYPE,
NIV_EX_A_MOD IN USUARIOS.NIVEL_EXAMEN%TYPE,
ID_CURSO_A_MOD IN USUARIOS.ID_CURSO%TYPE) IS
BEGIN
UPDATE USUARIOS
SET NOMBRE=NOM_USU_A_MOD, APELLIDOS=APE_USU_A_MOD, TIPO_EXAMEN=TIP_EX_A_MOD, NIVEL_EXAMEN=NIV_EX_A_MOD, ID_CURSO=ID_CURSO_A_MOD
WHERE DNI_USUARIO = DNI_USU_A_MOD;
END;
/
CREATE OR REPLACE PROCEDURE MODIFICAR_RECIBO
(IDR_REC_A_MOD IN RECIBOS.ID_RECIBO%TYPE,
PAG_REC_A_MOD IN RECIBOS.PAGADO%TYPE) IS
BEGIN
UPDATE RECIBOS
SET PAGADO=PAG_REC_A_MOD
WHERE ID_RECIBO = IDR_REC_A_MOD;
END;
/
|
CREATE TABLE Request (
RequestNumber INT UNSIGNED NOT NULL AUTO_INCREMENT,
RequestDate TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
PreferredPickUpDate TIMESTAMP NOT NULL,
ItemDescription VARCHAR(255) NOT NULL,
Weight DECIMAL(5,2) NOT NULL,
PickUpAddress VARCHAR(255) NOT NULL,
PickUpSuburb VARCHAR(255) NOT NULL,
PickUpStateCode VARCHAR(3) NOT NULL,
Recipient VARCHAR(50),
DeliveryAddress VARCHAR(255) NOT NULL,
DeliverySuburb VARCHAR(50) NOT NULL,
DeliveryStateCode VARCHAR(3) NOT NULL,
CustomerId INT UNSIGNED NOT NULL,
PRIMARY KEY (RequestNumber),
FOREIGN KEY (CustomerId)
REFERENCES Customer(CustomerId)
ON UPDATE CASCADE
ON DELETE CASCADE,
FOREIGN KEY (PickUpStateCode) REFERENCES State(StateCode)
ON UPDATE CASCADE
ON DELETE RESTRICT,
FOREIGN KEY (DeliveryStateCode) REFERENCES State(StateCode)
ON UPDATE CASCADE
ON DELETE RESTRICT
); |
--Leetcode 175. Combine Two Tables
SELECT firstName, lastName, city, state FROM Person LEFT JOIN Address ON Person.personId = Address.personId |
insert into md_classes (class_id, class_name, short_class_name, access_level, is_namespace, description)
values (100, 'Ci','Ci','global', false,'This is basic super class, all classes will extend this one');
INSERT INTO md_class_attributes(
attribute_id, class_id, attribute_name, data_type, is_mandatory,
is_inheritable, is_encrypted, is_immutable, force_on_dependent,
default_value, value_format, description, created, updated)
VALUES (101, 100, 'testAttribute', 'string', false,
false, false, false, false,'',
'{"help":"Assembly description","category":"1.Configuration","order":1}', 'testAttrbitue', '2016-09-02 16:18:23.652701', '2016-09-02 16:18:23.652701');
insert into ns_namespaces values (1, 'test', '2016-09-02');
insert into dj_rfc_ci (rfc_id, release_id, ns_id, ci_id, class_id, ci_name, action_id) values (1,0, 1, 1, 1, 'test',1)
|
-- phpMyAdmin SQL Dump
-- version 4.5.1
-- http://www.phpmyadmin.net
--
-- Servidor: 127.0.0.1
-- Tiempo de generación: 13-10-2017 a las 06:00:49
-- Versión del servidor: 10.1.13-MariaDB
-- Versión de PHP: 5.6.21
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 */;
--
-- Base de datos: `expositor`
--
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `expo`
--
CREATE TABLE `expo` (
`id` int(11) NOT NULL,
`nombre` varchar(50) NOT NULL,
`descripcion` varchar(1000) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Volcado de datos para la tabla `expo`
--
INSERT INTO `expo` (`id`, `nombre`, `descripcion`) VALUES
(1, 'Mark Elliot Zuckerberg', 'Facebook es un sitio web de redes sociales creado por Mark Zuckerberg y fundado junto a Eduardo Saverin, Chris Hughes y Dustin Moskovitz. Originalmente era un sitio para estudiantes de la Universidad de Harvard'),
(2, 'Steven Paul Jobs', 'Apple Inc. es una empresa multinacional estadounidense que diseña y produce equipos electrónicos, software y servicios en línea, con sede en Cupertino y la sede europea en la ciudad de Cork'),
(3, 'Jan Koum', 'WhatsApp es una aplicación de mensajería instantánea para teléfonos inteligentes, que envía ... WhatsApp Inc. fue fundada en 2009 por Jan Koum (quien había llegado desde Ucrania a Estados Unidos a principios ');
--
-- Índices para tablas volcadas
--
--
-- Indices de la tabla `expo`
--
ALTER TABLE `expo`
ADD PRIMARY KEY (`id`);
--
-- AUTO_INCREMENT de las tablas volcadas
--
--
-- AUTO_INCREMENT de la tabla `expo`
--
ALTER TABLE `expo`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
/*
SQLyog Community v13.1.5 (64 bit)
MySQL - 10.4.6-MariaDB : Database - lenpro2
*********************************************************************
*/
/*!40101 SET NAMES utf8 */;
/*!40101 SET SQL_MODE=''*/;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
CREATE DATABASE /*!32312 IF NOT EXISTS*/`lenpro2` /*!40100 DEFAULT CHARACTER SET latin1 */;
USE `lenpro2`;
/*Table structure for table `asignar_materia_docente` */
DROP TABLE IF EXISTS `asignar_materia_docente`;
CREATE TABLE `asignar_materia_docente` (
`id_administrador` int(11) NOT NULL AUTO_INCREMENT,
`nombre` varchar(100) DEFAULT NULL,
`materia` varchar(100) DEFAULT NULL,
`periodo` varchar(100) DEFAULT NULL,
PRIMARY KEY (`id_administrador`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=latin1;
/*Data for the table `asignar_materia_docente` */
insert into `asignar_materia_docente`(`id_administrador`,`nombre`,`materia`,`periodo`) values
(1,'Cindy','sistemas','4'),
(2,'Leonardo','Lenguaje','5'),
(3,'Carlos','Electiva ','4');
/*Table structure for table `docentes` */
DROP TABLE IF EXISTS `docentes`;
CREATE TABLE `docentes` (
`id_docentes` int(11) NOT NULL AUTO_INCREMENT,
`nombre` varchar(100) DEFAULT NULL,
`edad` varchar(100) DEFAULT NULL,
`correo` varbinary(100) DEFAULT NULL,
PRIMARY KEY (`id_docentes`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=latin1;
/*Data for the table `docentes` */
insert into `docentes`(`id_docentes`,`nombre`,`edad`,`correo`) values
(1,'Cindy','35','cindy@gmail.com'),
(2,'Leonardo','35','leonardo@gmail.com'),
(3,'Carlos','38','carlos@gmail.com');
/*Table structure for table `estudiantes` */
DROP TABLE IF EXISTS `estudiantes`;
CREATE TABLE `estudiantes` (
`id_estudiantes` int(11) NOT NULL AUTO_INCREMENT,
`nombre` varchar(100) DEFAULT NULL,
`edad` varchar(100) DEFAULT NULL,
`correo` varchar(100) DEFAULT NULL,
PRIMARY KEY (`id_estudiantes`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=latin1;
/*Data for the table `estudiantes` */
insert into `estudiantes`(`id_estudiantes`,`nombre`,`edad`,`correo`) values
(1,'Sebastian','22','sebas@gmail.com'),
(2,'Camilo','18','camilo@gmail.com'),
(3,'Francisco','20','francisco@gmail.com');
/*Table structure for table `materias` */
DROP TABLE IF EXISTS `materias`;
CREATE TABLE `materias` (
`id_materias` int(11) NOT NULL AUTO_INCREMENT,
`materia` varchar(100) DEFAULT NULL,
PRIMARY KEY (`id_materias`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=latin1;
/*Data for the table `materias` */
insert into `materias`(`id_materias`,`materia`) values
(1,'Lenguaje'),
(2,'Fundamentos de Investigación'),
(3,'Electiva ');
/*Table structure for table `notas` */
DROP TABLE IF EXISTS `notas`;
CREATE TABLE `notas` (
`id_notas` int(11) NOT NULL AUTO_INCREMENT,
`Nombre` varchar(100) DEFAULT NULL,
`Materia` varchar(100) DEFAULT NULL,
`Periodo` varchar(100) DEFAULT NULL,
`Nota` varchar(100) DEFAULT NULL,
PRIMARY KEY (`id_notas`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=latin1;
/*Data for the table `notas` */
insert into `notas`(`id_notas`,`Nombre`,`Materia`,`Periodo`,`Nota`) values
(1,'Cindy','Sistemas','4','5.0'),
(2,'Leonardo','Lenguaje','4','5.0'),
(3,'Carlos','Electiva ','4','5.0');
/*Table structure for table `periodo_academico` */
DROP TABLE IF EXISTS `periodo_academico`;
CREATE TABLE `periodo_academico` (
`id_periodos` int(11) NOT NULL AUTO_INCREMENT,
`periodo` varchar(100) DEFAULT NULL,
PRIMARY KEY (`id_periodos`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=latin1;
/*Data for the table `periodo_academico` */
insert into `periodo_academico`(`id_periodos`,`periodo`) values
(1,'4'),
(2,'6'),
(3,'2');
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
|
/* Formatted on 17/06/2014 18:10:35 (QP5 v5.227.12220.39754) */
CREATE OR REPLACE FORCE VIEW MCRE_OWN.V_MCRES_APP_LISTA_TRIMESTRI
(
COD_LABEL_TRIM,
DESC_LABEL_TRIM
)
AS
SELECT val_anno || val_mese cod_label_trim,
val_mese || '/' || val_anno desc_label_trim
FROM (SELECT '03' val_mese FROM DUAL
UNION
SELECT '06' val_mese FROM DUAL
UNION
SELECT '09' val_mese FROM DUAL
UNION
SELECT '12' VAL_MESE FROM DUAL) A,
(SELECT TO_NUMBER (TO_CHAR (SYSDATE, 'YYYY')) val_anno FROM DUAL
UNION
SELECT TO_NUMBER (TO_CHAR (SYSDATE, 'YYYY')) - 1 val_anno
FROM DUAL
UNION
SELECT TO_NUMBER (TO_CHAR (SYSDATE, 'YYYY')) - 2 val_anno
FROM DUAL
UNION
SELECT TO_NUMBER (TO_CHAR (SYSDATE, 'YYYY')) - 3 val_anno
FROM DUAL
UNION
SELECT TO_NUMBER (TO_CHAR (SYSDATE, 'YYYY')) - 4 VAL_ANNO
FROM DUAL) B
ORDER BY val_anno || val_mese;
GRANT SELECT ON MCRE_OWN.V_MCRES_APP_LISTA_TRIMESTRI TO MCRE_USR;
|
CREATE VIEW AS
SELECT e1.name AS EmployeeName, e2.name AS ManagerName
FROM employees e1 LEFT JOIN employees e2 ON e1.mgrId = e2.id
|
-- that lists all cities contained in the database hbtn_0d_usa.
SELECT
cities.id,
cities.name,
states.name
FROM
cities
JOIN states ON states.id = cities.state_id
ORDER BY
cities.id ASC;
|
DROP TABLE DEPARTMENTS
DROP TABLE STUDENTS
|
UPDATE
PAY_INFO
SET
PAYMENT_VOUCHER_NO = /*paymentVoucherNo*/
,PAYMENT_VOUCHER_DATE = /*businessDate*/
WHERE
PAYMENT_VOUCHER_OBJECT = '1'
AND CONTRACT_NO = /*contractNo*/
|
CREATE PROC [ERP].[Usp_Del_Movimiento]
@IdMovimientoTesoreria INT
AS
BEGIN
DELETE FROM [ERP].[MovimientoTesoreriaDetalleCuentaPagar] WHERE IdMovimientoTesoreriaDetalle IN (SELECT MTD.ID FROM ERP.MovimientoTesoreria MT INNER JOIN ERP.MovimientoTesoreriaDetalle MTD ON MTD.IdMovimientoTesoreria = MT.ID WHERE MT.ID = @IdMovimientoTesoreria AND MTD.IdDebeHaber = 1)
DELETE FROM [ERP].[MovimientoTesoreriaDetalleCuentaCobrar]WHERE IdMovimientoTesoreriaDetalle IN (SELECT MTD.ID FROM ERP.MovimientoTesoreria MT INNER JOIN ERP.MovimientoTesoreriaDetalle MTD ON MTD.IdMovimientoTesoreria = MT.ID WHERE MT.ID = @IdMovimientoTesoreria AND MTD.IdDebeHaber = 2)
DELETE FROM [ERP].[MovimientoTesoreriaDetalle] WHERE IdMovimientoTesoreria = @IdMovimientoTesoreria
DELETE FROM [ERP].[MovimientoTesoreria] WHERE ID = @IdMovimientoTesoreria
END |
SELECT f.Id,
f.Name,
CONCAT(f.Size, 'KB') AS [Size]
FROM Files AS f
LEFT JOIN Files AS fi ON f.Id = fi.ParentId
WHERE fi.Id IS NULL
ORDER BY f.Id,
f.Name,
f.Size DESC |
select * from T_UnitInfo;
|
DROP DATABASE IF EXISTS `MyFinancePal`;
CREATE DATABASE IF NOT EXISTS `MyFinancePal`;
USE `MyFinancePal`;
CREATE TABLE Customer
(
`CustomerID` int(10) NOT NULL AUTO_INCREMENT,
`Name` varchar(50) NOT NULL,
`DOB` DATE NOT NULL,
`City` varchar(50) NOT NULL,
`Street` varchar(50) NOT NULL,
`County` varchar(50) NOT NULL,
`PostCode` varchar(50) NOT NULL,
`PhoneNumber` varchar(20) NOT NULL,
`Email` varchar(50) NOT NULL,
PRIMARY KEY (`CustomerID`)
);
CREATE TABLE Account
(
`AccountID` int(10) NOT NULL AUTO_INCREMENT,
`AccountType` varchar(20) NOT NULL,
`IBAN` varchar(50) NOT NULL,
`BIC` varchar(20) NOT NULL,
`CustomerID` int(20) NOT NULL,
`OpeningDate` DATE NOT NULL,
`CurrentBalance` decimal(20,2) NOT NULL,
`OpeningBalance` decimal(20,2) NOT NULL,
PRIMARY KEY(`AccountID`),
CONSTRAINT customer_id_constraint
FOREIGN KEY (CustomerID)
REFERENCES Customer(CustomerID)
ON DELETE CASCADE
ON UPDATE CASCADE
);
CREATE TABLE CustomerDetails
(
`CustomerID` int(20) NOT NULL,
`Password` VARCHAR(20) NOT NULL,
`LoginAttempts` int(1) NOT NULL,
`Locked` boolean NOT NULL,
PRIMARY KEY(`CustomerID`),
CONSTRAINT customer_Details_id_constraint
FOREIGN KEY (CustomerID)
REFERENCES Customer(CustomerID)
ON DELETE CASCADE
ON UPDATE CASCADE
);
CREATE TABLE AdminDetails
(
`AdminID` int(20) NOT NULL,
`Password` VARCHAR(20) NOT NULL,
PRIMARY KEY(`AdminID`)
);
CREATE TABLE Transaction
(
`TransactionID` int(10) NOT NULL AUTO_INCREMENT,
`TransDate` DATETIME NOT NULL,
`Type` varchar(50) NOT NULL,
`Description` varchar(100) NOT NULL,
`Amount` decimal(20,2) NOT NULL,
`Category` varchar(50) NOT NULL,
`AccountID` int(10) NOT NULL,
PRIMARY KEY (`TransactionID`),
CONSTRAINT trans_account_id_constraint
FOREIGN KEY (AccountID)
REFERENCES Account(AccountID)
ON DELETE CASCADE
ON UPDATE CASCADE
);
CREATE TABLE Payee
(
`PayeeID` int(10) NOT NULL AUTO_INCREMENT,
`IBAN` varchar(50) NOT NULL,
`BIC` varchar(20) NOT NULL,
`Name` varchar(25) NOT NULL,
`CustomerID` int(10) NOT NULL,
PRIMARY KEY (`PayeeID`),
CONSTRAINT payee_customer_id_constraint
FOREIGN KEY (CustomerID)
REFERENCES Customer(CustomerID)
ON DELETE CASCADE
ON UPDATE CASCADE
);
CREATE TABLE Loan
(
`LoanID` int(10) NOT NULL AUTO_INCREMENT,
`Amount` decimal(20,2) NOT NULL,
`AccountID` int(10) NOT NULL,
`Purpose` varchar(100) NOT NULL,
`RepaymentOption` varchar(100) NOT NULL,
PRIMARY KEY (`LoanID`),
CONSTRAINT loan_account_id_constraint
FOREIGN KEY (AccountID)
REFERENCES Account(AccountID)
ON DELETE CASCADE
ON UPDATE CASCADE
);
CREATE TABLE Request
(
`RequestID` int(10) NOT NULL AUTO_INCREMENT,
`AccountActive` boolean NOT NULL,
`CustomerID` int(10) NOT NULL,
PRIMARY KEY (`RequestID`),
CONSTRAINT request_customer_id_constraint
FOREIGN KEY (CustomerID)
REFERENCES Customer(CustomerID)
ON DELETE CASCADE
ON UPDATE CASCADE
);
ALTER TABLE Account AUTO_INCREMENT=100000;
-- db test lines - NOTE: Boolean values inserted as true or false appear as
-- either 1 or 0 in the database. They can be inserted as true or false or
-- as numbers, 0 is false, all other values are true
-- the following query formats can be used:
-- select * from Account where locked = true
-- select * from Account where locked IS TRUE/IS FALSE/IS NOT TRUE
-- select * from Account where locked = 0/1
INSERT INTO Customer (Name, DOB, City, Street, County, PostCode, PhoneNumber, Email)
VALUES ('TestCus1', '1993/10/10', 'Letterkenny', '123 Street', 'Donegal', '0000', '0861111111', '123@hotmail.com');
INSERT INTO Customer (Name, DOB, City, Street, County, PostCode, PhoneNumber, Email)
VALUES ('TestCus2', '1991/12/10', 'Dublin', '456 Street', 'Dublin', '1111', '0862222222', '456@hotmail.com');
INSERT INTO Customer (Name, DOB, City, Street, County, PostCode, PhoneNumber, Email)
VALUES ('TestCus3', '1994/10/05', 'Cork', '678 Street', 'Cork', '2222', '0863333333', '789@hotmail.com');
INSERT INTO Account (AccountType, IBAN, BIC, CustomerID, OpeningDate, CurrentBalance, OpeningBalance)
VALUES ('Student', 'IE12BOFI100000423554', 'BOFIIE234', '1', '2000-01-01', '1000.00', '100.00');
INSERT INTO Account (AccountType, IBAN, BIC, CustomerID, OpeningDate, CurrentBalance, OpeningBalance)
VALUES ('Current', 'IE12BOFI100001646355', 'BOFIIE333', '2', '2001-11-01', '2000.00', '500.00');
INSERT INTO Account (AccountType, IBAN, BIC, CustomerID, OpeningDate, CurrentBalance, OpeningBalance)
VALUES ('Student', 'IE12BOFI100002563463', 'BOFIIE122', '3', '2003-05-01', '8000.00', '400.00');
INSERT INTO Account (AccountType, IBAN, BIC, CustomerID, OpeningDate, CurrentBalance, OpeningBalance)
VALUES ('Current', 'IE12BOFI100003784459', 'BOFIIE333', '1', '2002-09-05', '1524.00', '226.00');
INSERT INTO CustomerDetails (CustomerID, Password, LoginAttempts, Locked)
VALUES ('1', '123456', 0, false);
INSERT INTO CustomerDetails (CustomerID, Password, LoginAttempts, Locked)
VALUES ('2', '123456', 0, false);
INSERT INTO CustomerDetails (CustomerID, Password, LoginAttempts, Locked)
VALUES ('3', '123456', 0, true);
INSERT INTO AdminDetails (AdminID, Password)
VALUES ('1234', 'admin');
-- Account 100000
INSERT INTO Transaction (TransDate, Type, Description, Amount, Category, AccountID)
VALUES ('2000-01-01 10:30:19', 'Credit', 'Lodgement', '50.00', 'Income', '100000');
INSERT INTO Transaction (TransDate, Type, Description, Amount, Category, AccountID)
VALUES ('2000-01-03 11:40:12', 'Credit', 'Lodgement', '200.00', 'Income', '100000');
INSERT INTO Transaction (TransDate, Type, Description, Amount, Category, AccountID)
VALUES ('2000-01-03 12:30:11', 'Debit', 'Subway', '25.00', 'Restaurants', '100000');
INSERT INTO Transaction (TransDate, Type, Description, Amount, Category, AccountID)
VALUES ('2000-01-03 16:30:20', 'Debit', 'Costa', '5.00', 'Restaurants', '100000');
INSERT INTO Transaction (TransDate, Type, Description, Amount, Category, AccountID)
VALUES ('2000-01-05 09:28:15', 'Credit', 'Wages', '1500.00', 'Income', '100000');
INSERT INTO Transaction (TransDate, Type, Description, Amount, Category, AccountID)
VALUES ('2000-01-07 17:30:00', 'Credit', 'Lodgement', '100.00', 'Income', '100000');
INSERT INTO Transaction (TransDate, Type, Description, Amount, Category, AccountID)
VALUES ('2000-01-08 15:20:01', 'Debit', 'Amazon', '12.00', 'Online Shopping', '100000');
INSERT INTO Transaction (TransDate, Type, Description, Amount, Category, AccountID)
VALUES ('2000-01-10 10:10:11', 'Debit', 'Ebay', '150.00', 'Online Shopping', '100000');
INSERT INTO Transaction (TransDate, Type, Description, Amount, Category, AccountID)
VALUES ('2000-01-15 10:05:13', 'Debit', 'Tesco', '61.23', 'Groceries', '100000');
INSERT INTO Transaction (TransDate, Type, Description, Amount, Category, AccountID)
VALUES ('2000-01-25 10:07:25', 'Debit', 'Apple - Apple Music', '5.00', 'Subscription', '100000');
INSERT INTO Transaction (TransDate, Type, Description, Amount, Category, AccountID)
VALUES ('2000-01-28 10:34:27', 'Credit', 'Lodgement', '20.00', 'Income', '100000');
INSERT INTO Transaction (TransDate, Type, Description, Amount, Category, AccountID)
VALUES ('2000-02-01 14:45:32', 'Debit', 'Office Supplies Inc', '40.00', 'Miscellaneous', '100000');
INSERT INTO Transaction (TransDate, Type, Description, Amount, Category, AccountID)
VALUES ('2000-02-01 15:28:11', 'Debit', 'New York Times', '4.99', 'Subscription', '100000');
INSERT INTO Transaction (TransDate, Type, Description, Amount, Category, AccountID)
VALUES ('2000-02-01 15:39:10', 'Debit', 'Netflix', '10.00', 'Subscription', '100000');
INSERT INTO Transaction (TransDate, Type, Description, Amount, Category, AccountID)
VALUES ('2000-02-05 17:33:19', 'Debit', 'Sky TV', '45.00', 'Subscription', '100000');
INSERT INTO Transaction (TransDate, Type, Description, Amount, Category, AccountID)
VALUES ('2000-02-08 18:30:12', 'Debit', 'Homestore & More', '7.99', 'Household', '100000');
INSERT INTO Transaction (TransDate, Type, Description, Amount, Category, AccountID)
VALUES ('2000-02-12 18:01:13', 'Debit', 'Amazon', '20.00', 'Subscription', '100000');
INSERT INTO Transaction (TransDate, Type, Description, Amount, Category, AccountID)
VALUES ('2000-02-14 19:38:11', 'Debit', 'Apple - ITUNES', '10.00', 'Subscription', '100000');
INSERT INTO Transaction (TransDate, Type, Description, Amount, Category, AccountID)
VALUES ('2000-02-20 16:01:14', 'Debit', 'So Lo', '30.10', 'Groceries', '100000');
INSERT INTO Transaction (TransDate, Type, Description, Amount, Category, AccountID)
VALUES ('2000-02-27 11:36:25', 'Debit', 'Lidl', '100.25', 'Groceries', '100000');
INSERT INTO Transaction (TransDate, Type, Description, Amount, Category, AccountID)
VALUES ('2000-03-01 13:11:12', 'Debit', 'Homestore & More', '150.00', 'Household', '100000');
INSERT INTO Transaction (TransDate, Type, Description, Amount, Category, AccountID)
VALUES ('2000-03-01 13:40:19', 'Debit', 'H&M', '70.00', 'Clothing', '100000');
INSERT INTO Transaction (TransDate, Type, Description, Amount, Category, AccountID)
VALUES ('2000-03-02 14:50:10', 'Debit', 'Penneys', '140.00', 'Clothing', '100000');
INSERT INTO Transaction (TransDate, Type, Description, Amount, Category, AccountID)
VALUES ('2000-03-04 15:03:16', 'Debit', 'KFC', '30.00', 'Restaurants', '100000');
INSERT INTO Transaction (TransDate, Type, Description, Amount, Category, AccountID)
VALUES ('2000-03-06 12:00:10', 'Debit', 'PC World', '53.44', 'Miscellaneous', '100000');
INSERT INTO Transaction (TransDate, Type, Description, Amount, Category, AccountID)
VALUES ('2003-03-06 12:00:10', 'Debit', 'PC World', '53.44', 'Miscellaneous', '100000');
INSERT INTO Transaction (TransDate, Type, Description, Amount, Category, AccountID)
VALUES ('2003-05-06 12:00:10', 'Debit', 'PC World', '53.44', 'Miscellaneous', '100000');
INSERT INTO Transaction (TransDate, Type, Description, Amount, Category, AccountID)
VALUES ('2003-05-06 12:00:10', 'Debit', 'PC World', '53.44', 'Miscellaneous', '100000');
INSERT INTO Transaction (TransDate, Type, Description, Amount, Category, AccountID)
VALUES ('2003-05-06 12:00:10', 'Debit', 'PC World', '53.44', 'Miscellaneous', '100000');
INSERT INTO Transaction (TransDate, Type, Description, Amount, Category, AccountID)
VALUES ('2003-08-06 12:00:10', 'Debit', 'PC World', '53.44', 'Miscellaneous', '100000');
INSERT INTO Transaction (TransDate, Type, Description, Amount, Category, AccountID)
VALUES ('2003-08-06 12:00:10', 'Debit', 'PC World', '53.44', 'Miscellaneous', '100000');
INSERT INTO Transaction (TransDate, Type, Description, Amount, Category, AccountID)
VALUES ('2003-08-06 12:00:10', 'Debit', 'PC World', '53.44', 'Miscellaneous', '100000');
INSERT INTO Transaction (TransDate, Type, Description, Amount, Category, AccountID)
VALUES ('2007-11-18 12:00:10', 'Debit', 'PC World', '53.44', 'Miscellaneous', '100000');
INSERT INTO Transaction (TransDate, Type, Description, Amount, Category, AccountID)
VALUES ('2007-04-06 12:00:10', 'Debit', 'PC World', '53.44', 'Miscellaneous', '100000');
-- Account 100001
INSERT INTO Transaction (TransDate, Type, Description, Amount, Category, AccountID)
VALUES ('2001-11-11 10:30:19', 'Credit', 'Wages', '1700.00', 'Income', '100001');
INSERT INTO Transaction (TransDate, Type, Description, Amount, Category, AccountID)
VALUES ('2001-11-15 11:40:12', 'Debit', 'Just Eat IE', '50.00', 'Restaurants', '100001');
INSERT INTO Transaction (TransDate, Type, Description, Amount, Category, AccountID)
VALUES ('2001-11-20 12:30:11', 'Debit', 'Gym', '25.00', 'Miscellaneous', '100001');
INSERT INTO Transaction (TransDate, Type, Description, Amount, Category, AccountID)
VALUES ('2001-11-21 16:30:20', 'Debit', 'Right Price Tiles', '200.00', 'Household', '100001');
INSERT INTO Transaction (TransDate, Type, Description, Amount, Category, AccountID)
VALUES ('2001-12-05 09:28:15', 'Debit', 'Smyths Toys', '55.00', 'Miscellaneous', '100001');
INSERT INTO Transaction (TransDate, Type, Description, Amount, Category, AccountID)
VALUES ('2001-12-07 17:30:00', 'Credit', 'Lodgement', '400.00', 'Income', '100001');
INSERT INTO Transaction (TransDate, Type, Description, Amount, Category, AccountID)
VALUES ('2001-12-08 15:20:01', 'Debit', 'Amazon', '18.00', 'Online Shopping', '100001');
INSERT INTO Transaction (TransDate, Type, Description, Amount, Category, AccountID)
VALUES ('2001-12-15 10:05:13', 'Debit', 'Tesco', '23.45', 'Groceries', '100001');
INSERT INTO Transaction (TransDate, Type, Description, Amount, Category, AccountID)
VALUES ('2002-01-10 10:10:11', 'Debit', 'Aldi', '100.00', 'Groceries', '100001');
INSERT INTO Transaction (TransDate, Type, Description, Amount, Category, AccountID)
VALUES ('2002-01-25 10:07:25', 'Debit', 'Apple - Apple Music', '5.00', 'Subscription', '100001');
INSERT INTO Transaction (TransDate, Type, Description, Amount, Category, AccountID)
VALUES ('2002-01-28 10:34:27', 'Debit', 'Apple - ICloud', '7.99', 'Subscription', '100001');
INSERT INTO Transaction (TransDate, Type, Description, Amount, Category, AccountID)
VALUES ('2002-02-01 14:45:32', 'Debit', 'New Look', '100.00', 'Clothing', '100001');
INSERT INTO Transaction (TransDate, Type, Description, Amount, Category, AccountID)
VALUES ('2002-02-01 15:28:11', 'Debit', 'Boohoo.com', '15.99', 'Clothing', '100001');
INSERT INTO Transaction (TransDate, Type, Description, Amount, Category, AccountID)
VALUES ('2002-02-01 15:39:10', 'Credit', 'Lodgement', '100.00', 'Income', '100001');
INSERT INTO Transaction (TransDate, Type, Description, Amount, Category, AccountID)
VALUES ('2002-03-05 17:33:19', 'Debit', '123Ink IE', '45.50', 'Miscellaneous', '100001');
INSERT INTO Transaction (TransDate, Type, Description, Amount, Category, AccountID)
VALUES ('2002-03-08 18:30:12', 'Debit', 'Tesco', '14.07', 'Groceries', '100001');
INSERT INTO Transaction (TransDate, Type, Description, Amount, Category, AccountID)
VALUES ('2002-03-12 18:01:13', 'Debit', 'Amazon', '40.00', 'Online Shopping', '100001');
-- Account 100002
INSERT INTO Transaction (TransDate, Type, Description, Amount, Category, AccountID)
VALUES ('2003-05-11 10:30:19', 'Credit', 'Wages', '10000.00', 'Income', '100002');
INSERT INTO Transaction (TransDate, Type, Description, Amount, Category, AccountID)
VALUES ('2003-05-15 11:40:12', 'Debit', 'CarpetRight', '1000.00', 'Household', '100002');
INSERT INTO Transaction (TransDate, Type, Description, Amount, Category, AccountID)
VALUES ('2003-05-20 12:30:11', 'Debit', 'Gym', '25.00', 'Miscellaneous', '100002');
INSERT INTO Transaction (TransDate, Type, Description, Amount, Category, AccountID)
VALUES ('2003-05-21 16:30:20', 'Debit', 'Amazon Prime', '12.00', 'Subscription', '100002');
INSERT INTO Transaction (TransDate, Type, Description, Amount, Category, AccountID)
VALUES ('2003-05-22 09:28:15', 'Debit', 'Letterkenny Cinema', '30.00', 'Miscellaneous', '100002');
INSERT INTO Transaction (TransDate, Type, Description, Amount, Category, AccountID)
VALUES ('2003-05-23 17:30:00', 'Debit', 'Withdrawal', '200.00', 'Miscellaneous', '100002');
INSERT INTO Transaction (TransDate, Type, Description, Amount, Category, AccountID)
VALUES ('2003-06-08 15:20:01', 'Debit', 'Amazon', '18.00', 'Online Shopping', '100002');
INSERT INTO Transaction (TransDate, Type, Description, Amount, Category, AccountID)
VALUES ('2003-06-15 10:05:13', 'Debit', 'Tesco', '51.30', 'Groceries', '100002');
INSERT INTO Transaction (TransDate, Type, Description, Amount, Category, AccountID)
VALUES ('2003-06-17 10:10:11', 'Debit', 'Aldi', '30.00', 'Groceries', '100002');
INSERT INTO Transaction (TransDate, Type, Description, Amount, Category, AccountID)
VALUES ('2003-07-05 10:07:25', 'Debit', 'Spotify', '10.00', 'Subscription', '100002');
INSERT INTO Transaction (TransDate, Type, Description, Amount, Category, AccountID)
VALUES ('2003-07-18 10:34:27', 'Debit', 'Just Eat IE', '41.70', 'Restaurants', '100002');
INSERT INTO Transaction (TransDate, Type, Description, Amount, Category, AccountID)
VALUES ('2003-07-18 14:45:32', 'Debit', 'New Look', '200.00', 'Clothing', '100002');
INSERT INTO Transaction (TransDate, Type, Description, Amount, Category, AccountID)
VALUES ('2003-07-18 15:28:11', 'Debit', 'M&S', '70.00', 'Clothing', '100002');
INSERT INTO Transaction (TransDate, Type, Description, Amount, Category, AccountID)
VALUES ('2003-07-19 15:39:10', 'Debit', 'Withdrawal', '300.00', 'Miscellaneous', '100002');
INSERT INTO Transaction (TransDate, Type, Description, Amount, Category, AccountID)
VALUES ('2003-07-22 17:33:19', 'Debit', 'Insomnia', '5.50', 'Restaurants', '100002');
INSERT INTO Transaction (TransDate, Type, Description, Amount, Category, AccountID)
VALUES ('2003-07-24 18:30:12', 'Debit', 'Oasis', '24.50', 'Groceries', '100002');
INSERT INTO Transaction (TransDate, Type, Description, Amount, Category, AccountID)
VALUES ('2003-07-24 18:01:13', 'Debit', 'Amazon', '250.00', 'Online Shopping', '100002');
INSERT INTO Transaction (TransDate, Type, Description, Amount, Category, AccountID)
VALUES ('2003-08-12 18:01:13', 'Debit', 'YESSTYLE', '132.00', 'Online Shopping', '100002');
-- Customer 1, 2nd Account Transactions
INSERT INTO Account (AccountType, IBAN, BIC, CustomerID, OpeningDate, CurrentBalance, OpeningBalance)
VALUES ('Current', 'IE12BOFI100004127459', 'BOFIIE333', '1', '2002-09-05', '1750.00', '226.00');
INSERT INTO Transaction (TransDate, Type, Description, Amount, Category, AccountID)
VALUES ('2003-07-11 10:30:19', 'Credit', 'Wages', '800', 'Income', '100003');
INSERT INTO Transaction (TransDate, Type, Description, Amount, Category, AccountID)
VALUES ('2003-07-15 11:40:12', 'Debit', 'CarpetRight', '98.00', 'Household', '100003');
INSERT INTO Transaction (TransDate, Type, Description, Amount, Category, AccountID)
VALUES ('2003-07-20 12:30:11', 'Credit', 'Wages', '822.00', 'Wages', '100003');
INSERT INTO Payee (IBAN, BIC, Name, CustomerID)
VALUES('IE12BOFI1245002423554','BOFIIE123', 'Jemma Simmons', 1);
INSERT INTO Payee (IBAN, BIC, Name, CustomerID)
VALUES('IE12BOFI1568336554334','BOFIIE767', 'Jeff Ward', 1);
INSERT INTO Payee (IBAN, BIC, Name, CustomerID)
VALUES('IE12BOFI1241102423554','BOFIIE443', 'Kristen Bell', 2);
INSERT INTO Payee (IBAN, BIC, Name, CustomerID)
VALUES('IE12BOFI1563336554334','BOFIIE117', 'Jodie Comer', 2);
INSERT INTO Payee (IBAN, BIC, Name, CustomerID)
VALUES('IE12BOFI1245442423554','BOFIIE333', 'Aaron Stanford', 1);
INSERT INTO Payee (IBAN, BIC, Name, CustomerID)
VALUES('IE12BOFI1568355554334','BOFIIE227', 'Maggie Quigley', 3);
INSERT INTO Payee (IBAN, BIC, Name, CustomerID)
VALUES('IE12BOFI1245002113554','BOFIIE883', 'Shane West', 3);
-- INSERT INTO Loan (Amount, AccountID)
-- VALUES('5000', 100000)
INSERT INTO Request (AccountActive, CustomerID)
VALUES(true, 3);
|
DROP TABLE IF EXISTS `XXX_plugin_osm_overlay`; ##b_dump##
DROP TABLE IF EXISTS `XXX_plugin_osm_overlay_fields`; ##b_dump##
DROP TABLE IF EXISTS `XXX_plugin_osm_overlay_loc_fields`; ##b_dump## |
@../sql/GRC_BD_MB_{ID_JIRA}.sql
exit |
alter table REPORT_REPORT add column DEFAULT_TEMPLATE_ID varchar2(32);
alter table REPORT_REPORT add constraint FK_REPORT_TO_DEF_TEMPLATE foreign key (DEFAULT_TEMPLATE_ID) references REPORT_TEMPLATE(ID)^
|
CREATE DATABASE FirstDb
USE FirstDb
CREATE TABLE City(
Id Int ,
Name nvarchar(50),
Population Int,
Area Int
)
INSERT INTO City
VALUES( 1, 'Tokio',14000000,2194 )
INSERT INTO City
VALUES( 2, 'ZURUH',403000,87.88)
INSERT INTO City
VALUES( 3, 'LOS ANGELES',3900000,1302 )
INSERT INTO City
VALUES(4,'NEW YORK ',8419000000,783.8)
INSERT INTO City
VALUES(5,'HON KONG',7507000000,1.106)
SELECT Area FROM City
WHERE Area>=2194 OR Area<=87 ORDER BY Area |
PARAMETERS [@FechaIniID] Text ( 255 ), [@FechaFinID] Text (255);
SELECT cdate(format(A.FechaID,"####-##-##")) AS Fecha,
B.RUC,
B.RazonSocial,
C.ComprobanteNombre,
A.Serie+"-"+A.Numero AS Numero,
A.Monto,
iif(isnull(D.Jabas),0,D.Jabas) AS JabasAsignadas,
A.Jabas,
iif(D.Jabas=A.Jabas,"ASIGNADO","PENDIENTE") as Situacion
FROM ((
(SELECT *
FROM TB_Flete
WHERE ((FechaID BETWEEN [@FechaIniID] AND [@FechaFinID]))) AS A
LEFT JOIN TB_FleteProveedor AS B ON A.ProveedorID=B.ProveedorID)
LEFT JOIN TB_ComprobanteCompra AS C ON A.ComprobanteID=C.ComprobanteID)
LEFT JOIN
(SELECT A.FleteID,
SUM(B.Jabas) AS Jabas
FROM
(SELECT FleteID
FROM TB_Flete
WHERE ((FechaID BETWEEN [@FechaIniID] AND [@FechaFinID]))) AS A
INNER JOIN TB_VentaProcesoDetalle B ON A.FleteID=B.FleteID
GROUP BY A.FleteID) AS D ON A.FleteID=D.FleteID |
-- Finding NULL Values
-- to find rows that are null for a particular column
select *
from emp
where "COMM" IS NULL
-- selects all rows where commision is null. All columns are returned by * statement. |
insert into contact
values(1,'John', 'Doe','john.doe@gmail.com','1234 Given Lane','Toronto','ON','CANADA'); |
-- Liste des articles (trier par date de parution DESC) => index.php
SELECT * FROM `articles` ORDER BY `published_date` DESC;
-- Count du nombre de commentaire par article (articleId)
SELECT `articles_id`, COUNT(*) FROM `comments` GROUP BY `articles_id`;
-- L'affichage d'un article (id) => article.php
SELECT * FROM `articles` WHERE `idarticle` = ?;
-- Recupère la catégorie de l'article (articleId)
$catID = "SELECT `categories_id` FROM `articles` WHERE `idarticles` = ?";
SELECT `label` FROM `categories` WHERE `idcategories` = ?;
-- Récupère les tags de l'article (articleId)
$tagsId[] = "SELECT `tags_id` FROM `articles_has_tags` WHERE `articles_id` = ?";
SELECT `label` FROM `tags` WHERE `idtags` = ?;
-- Récupère les infos auteur (userId)
SELECT `users_id` FROM `articles` WHERE `idarticles` = ?;
SELECT `firstname`, `lastname` FROM `users` WHERE `idusers` = ?;
-- Commentaire de l'article (articleId)
SELECT `content` FROM `comments` WHERE `articles_id` = ?;
-- L'affichage d'un auteur (id) => author.php
SELECT `users_id` FROM `articles` WHERE `idarticles` = ?;
SELECT * [except `password`] FROM `users` WHERE `idusers` = ?;
-- Une liste d'articles (userId) (trier par date de parution DESC)
SELECT * FROM `articles` WHERE `users_id` = ? ORDER BY `published_date` DESC;
-- Liste des articles par tags
SELECT `idtags` FROM `tags` WHERE `label` LIKE '';
SELECT `articles_id` FROM `articles_has_tags` WHERE `tags_id` = ?;
-- Liste des articles par catégories
SELECT `idcategories` FROM `categories` WHERE `label` LIKE '%Yellow%';
SELECT * FROM `articles` WHERE `categories_id` = ?;
-- SELECT COUNT(*) AS nbr_comments, `articles_id`, `title`, `articles`.`content`, CONCAT(`firstname`, ' ', `lastname`) AS fullname
-- FROM `comments`
-- INNER JOIN `articles` ON `articles`.`idarticles` = `comments`.`articles_id`
-- INNER JOIN `users` ON `articles`.`users_id` = `users`.`idusers`
-- GROUP BY `articles_id`
-- ORDER BY nbr_comments DESC;
|
SELECT * FROM Posts
JOIN HeloUsers
ON HeloUsers.id = $1 AND Posts.userid = $1; |
# Write your MySQL query statement below
SELECT DISTINCT(Num) AS ConsecutiveNums FROM Logs L1
WHERE EXISTS (
SELECT * FROM Logs L2 where L2.Id = L1.Id + 1 AND L2.Num = L1.Num
) AND EXISTS(
SELECT * FROM Logs L3 where L3.Id = L1.Id - 1 AND L3.Num = L1.Num
) |
SELECT values.name, cc.objectnumber AS obnum, vc.valuationcontrolrefnumber AS vcnum, vc.valuedate AS vcdate,
va.valueamount AS vcamt, co.computedcatalogingsummary AS catsum, co.computedcurrentlocationdisplay AS location, tg.title AS obtitle, gc.title AS grouptitle
FROM (SELECT h1.name,
(SELECT rc.subjectcsid
FROM relations_common rc
LEFT JOIN hierarchy h2 ON (h2.name = rc.subjectcsid)
JOIN valuationcontrols_common vc ON (h2.id = vc.id)
WHERE rc.objectcsid = h1.name AND rc.subjectdocumenttype = 'Valuationcontrol' AND vc.valuedate IS NOT NULL
ORDER BY vc.valuedate DESC
LIMIT 1
) AS valuationid
FROM hierarchy h1
LEFT OUTER JOIN collectionobjects_omca co ON (co.id = h1.id)
LEFT OUTER JOIN misc ON (h1.id = misc.id)
LEFT OUTER JOIN groups_common gc ON gc.id = h1.id
WHERE h1.name IN (SELECT rc.subjectcsid FROM relations_common rc
WHERE rc.objectcsid = :v)
AND misc.lifecyclestate <> 'deleted') AS values
INNER JOIN hierarchy h2 ON values.name = h2.name
JOIN collectionobjects_common cc ON cc.id = h2.id
LEFT JOIN hierarchy h3 ON h3.name = valuationid
LEFT JOIN hierarchy h4 ON h4.parentid = h3.id
LEFT JOIN valueamounts va ON h4.id = va.id
LEFT JOIN valuationcontrols_common vc ON h3.id = vc.id
LEFT JOIN collectionobjects_omca co ON co.id = h2.id
LEFT JOIN hierarchy h6 ON (cc.id = h6.parentid AND h6.name = 'collectionobjects_common:titleGroupList' AND h6.pos = 0)
LEFT OUTER JOIN titlegroup tg ON h6.id = tg.id
LEFT JOIN hierarchy h7 ON h7.name = :v
LEFT OUTER JOIN groups_common gc ON gc.id = h7.id
|
CLEAR SCREEN;
SET SERVEROUTPUT ON;
SET FEEDBACK ON;
DECLARE
rb RMAN_RULEBLOCKS%ROWTYPE;
BEGIN
-- BEGINNING OF RULEBLOCK --
rb.blockid:='cd_cardiac_cad';
DELETE FROM rman_ruleblocks WHERE blockid=rb.blockid;
rb.picoruleblock:='
/* Algorithm to assess cardiac disease */
#define_ruleblock([[rb_id]],
{
description: "Algorithm to assess cardiac disease",
is_active:2
}
);
#doc(,
{
section:"CAD"
}
);
#doc(,
{
txt:"first date of coronary insufficiency based on coding (ICD and ICPC)"
}
);
cabg => eadv.[icd_z95_1,icpc_k54007].dt.min();
/*cad_mi_icd => eadv.[icd_i21%,icd_i22%,icd_i23%].dt.min();*/
#doc(,
{
txt:"first date of type 2 AMI (not implemented as codes non-existent)"
}
);
/* mi_type2_icd => eadv.icd_i21_a1.dt.min(); */
#doc(,
{
txt:"first and last dates of AMI inclusive of NSTEMI and STEMI and subsequent"
}
);
nstemi_fd_icd => eadv.[icd_i21_4,icd_i22_2].dt.min();
nstemi_fd_icpc => eadv.icpc_k75016.dt.min();
nstemi_fd : {. => least_date(nstemi_fd_icd,nstemi_fd_icpc)};
stemi_fd_icd => eadv.[icd_i21_0,icd_i21_1,icd_i21_2,icd_i21_3,icd_i22_0,icd_i22_1,icd_i22_8,icd_i22_9].dt.min();
stemi_fd_icpc => eadv.icpc_k75015.dt.min();
stemi_fd : {. => least_date(stemi_fd_icd,stemi_fd_icpc)};
nstemi_ld => eadv.[icpc_k75016,icd_i21_4,icd_i22_2].dt.max().where(dt > nstemi_fd);
stemi_ld => eadv.[icpc_k75015,icd_i21_0,icd_i21_1,icd_i21_2,icd_i21_3,icd_i22_0,icd_i22_1,icd_i22_8,icd_i22_9].dt.max().where(dt > stemi_fd);
ami_icd_null : {coalesce(stemi_fd_icd,nstemi_fd_icd)? => 1};
#doc(,
{
txt:"STEMI vascular region"
}
);
stemi_anat_0 => eadv.[icd_i21_0,icd_i21_1,icd_i21_2,icd_i21_3].att.first();
stemi_anat : { stemi_anat_0!? => to_number(substr(stemi_anat_0,-1))+1};
#doc(,
{
txt:"AMI complication"
}
);
ami_i23 => eadv.[icd_i23].dt.max();
ami : { coalesce(stemi_fd,nstemi_fd,stemi_ld,nstemi_ld,ami_i23)!? => 1},{=>0};
#doc(,
{
txt:"Coronary ischaemia other than AMI"
}
);
cad_chronic_icd => eadv.[icd_i24%,icd_i25%].dt.min();
cad_ihd_icpc => eadv.[icpc_k74%,icpc_k76%].dt.min();
cad_ex_ami :{ coalesce(cad_chronic_icd,cad_ihd_icpc)!? =>1},{=>0};
cad : { greatest(ami,cad_ex_ami)>0 or cabg!? =>1 },{=>0};
#doc(,
{
section:"other CVD"
}
);
#doc(,
{
txt:"Other atherosclerotic disease"
}
);
cva_dt => eadv.[icd_g46%,icpc_k89%,icpc_k90%,icpc_k91%].dt.min();
pvd_dt => eadv.[icd_i70%,icd_i71%,icd_i72%,icd_i73%,icpc_k92%].dt.min();
cva : { cva_dt!? =>1},{=>0};
pvd : { pvd_dt!? =>1},{=>0};
#doc(,
{
txt:"Medication"
}
);
#doc(,
{
txt: "antiplatelet agents"
}
);
rxn_ap => eadv.[rxnc_b01ac].dt.min().where(val=1);
#doc(,
{
txt: "anti-coagulation including NOAC"
}
);
rxn_anticoag => eadv.[rxnc_b01aa,rxnc_b01af,rxnc_b01ae,rxnc_b01ab].dt.min().where(val=1);
#doc(,
{
txt: "beta blockers"
}
);
rxn_bb_ag => eadv.rxnc_c07ag.dt.min().where(val=1);
rxn_bb_aa => eadv.rxnc_c07aa.dt.min().where(val=1);
rxn_bb_ab => eadv.rxnc_c07ab.dt.min().where(val=1);
rxn_bb : {. => least_date(rxn_bb_ag,rxn_bb_aa,rxn_bb_ab)};
#doc(,
{
txt: "RAAS blockers"
}
);
rxn_ace_aa => eadv.rxnc_c09aa.dt.min().where(val=1);
rxn_arb_aa => eadv.rxnc_c09ca.dt.min().where(val=1);
rxn_raas : {. => least_date(rxn_ace_aa, rxn_arb_aa)};
#doc(,
{
txt: "lipid lowering"
}
);
rxn_statin => eadv.[rxnc_c10aa,rxnc_c10bx,rxnc_c10ba].dt.min().where(val=1);
rxn_c10_ax => eadv.rxnc_c10_ax.dt.min().where(val=1);
rxn : {coalesce(rxn_ap,rxn_anticoag,rxn_bb,rxn_raas,rxn_statin,rxn_c10_ax)!? =>1};
[[rb_id]] : {cad=1 =>1},{=>0};
#define_attribute(
[[rb_id]],
{
label:"Coronary artery disease",
desc:"Presence of Coronary artery disease",
is_reportable:1,
type:2
}
);
';
rb.picoruleblock := replace(rb.picoruleblock,'[[rb_id]]',rb.blockid);
rb.picoruleblock:=rman_pckg.sanitise_clob(rb.picoruleblock);
INSERT INTO rman_ruleblocks(blockid,picoruleblock) VALUES(rb.blockid,rb.picoruleblock);
COMMIT;
-- END OF RULEBLOCK --
-- BEGINNING OF RULEBLOCK --
rb.blockid:='cd_cardiac_vhd';
DELETE FROM rman_ruleblocks WHERE blockid=rb.blockid;
rb.picoruleblock:='
/* Algorithm to assess cardiac disease */
#define_ruleblock([[rb_id]],
{
description: "Algorithm to assess cardiac disease",
is_active:2
}
);
#doc(,
{
section:"VHD"
}
);
#doc(,
{
txt:"rheumatic heart disease based on coding"
}
);
rhd_dt => eadv.[icd_i05%,icd_i06%,icd_i07%,icd_i08%,icd_i09%,icpc_k71%].dt.min();
rhd_aet : {rhd_dt!? => 1},{=>0};
#doc(,
{
txt:"mitral including rheumatic and non-rheumatic"
}
);
mv_s_dt => eadv.[icd_i05_0,icd_i05_2,icd_34_2,icpc_k73006, icpc_k83007,icpc_k71005].dt.min();
mv_i_dt => eadv.[icd_i05_1,icd_i05_2,icd_34_0,icpc_k83004].dt.min();
mv_r_dt => eadv.[icpc_k54009].dt.min();
mv_s : {mv_s_dt!? => 1},{=>0};
mv_i : {mv_i_dt!? => 1},{=>0};
mv_r : {mv_r_dt!? => 1},{=>0};
mv : { greatest(mv_s,mv_i,mv_r)>0 => 1},{=>0};
#doc(,
{
txt:"Aortic including rheumatic and non-rheumatic"
}
);
av_s_dt => eadv.[icd_i06_0,icd_35_0, icpc_k83006,icpc_k71008].dt.min();
av_i_dt => eadv.[icd_i06_1,icd_35_1,icpc_k83004].dt.min();
av_r_dt => eadv.[icpc_k54005].dt.min();
av_s : { av_s_dt!? => 1},{=>0};
av_i : { av_i_dt!? => 1},{=>0};
av_r : { av_r_dt!? => 1},{=>0};
av : {greatest(av_s,av_i,av_r)>0 => 1},{=>0};
#doc(,
{
txt:"Tricuspid including rheumatic and non-rheumatic"
}
);
tv_s_dt => eadv.[icd_i07_0,icd_36_0].dt.min();
tv_i_dt => eadv.[icd_i07_1,icd_36_1,icpc_k83012].dt.min();
tv_r_dt => eadv.[icpc_k54019].dt.min();
tv_s : { tv_s_dt!? => 1},{=>0};
tv_i : { tv_i_dt!? => 1},{=>0};
tv_r : { tv_r_dt!? => 1},{=>0};
tv : { greatest(tv_s,tv_i,tv_r)>0 => 1},{=>0};
#doc(,
{
txt:" infective endocarditis"
}
);
vhd_ie_icd_dt => eadv.[icd_i33%,icd_i38%,icd_i39%].dt.min();
#doc(,
{
txt:" cardiac outpatient encounters"
}
);
car_enc_l_dt => eadv.enc_op_car.dt.last();
#doc(,
{
txt:" anticoagulation"
}
);
rxn_anticoag_dt => rout_cd_cardiac_rx.rxn_anticoag.val.bind();
rxn_anticoag : { rxn_anticoag_dt!? => 1},{=>0};
vhd : { greatest(mv,av,tv)>0 =>1},{=>0};
[[rb_id]] : {.=>vhd};
#define_attribute(
[[rb_id]],
{
label:"Valvular heart disease",
desc:"Presence of Valvular heart disease",
is_reportable:1,
type:2
}
);
#define_attribute(
mv_s,
{
label:"Mitral valve stenosis",
desc:"Presence of Mitral valve stenosis",
is_reportable:1,
type:2
}
);
#define_attribute(
mv_i,
{
label:"Mitral valve insufficiency",
desc:"Presence of Mitral valve insufficiency or regurgitation",
is_reportable:1,
type:2
}
);
#define_attribute(
mv_r,
{
label:"Mitral valve replacement",
desc:"Presence of Mitral valve replacement",
is_reportable:1,
type:2
}
);
#define_attribute(
av_s,
{
label:"Aortic valve stenosis",
desc:"Presence of Aortic valve stenosis",
is_reportable:1,
type:2
}
);
#define_attribute(
av_i,
{
label:"Aortic valve insufficiency",
desc:"Presence of Aortic valve insufficiency or regurgitation",
is_reportable:1,
type:2
}
);
#define_attribute(
av_r,
{
label:"Aortic valve replacement",
desc:"Presence of Aortic valve replacement",
is_reportable:1,
type:2
}
);
#define_attribute(
rhd_aet,
{
label:"Rheumatic heart disease",
desc:"Presence of Rheumatic heart disease",
is_reportable:1,
type:2
}
);
';
rb.picoruleblock := replace(rb.picoruleblock,'[[rb_id]]',rb.blockid);
rb.picoruleblock:=rman_pckg.sanitise_clob(rb.picoruleblock);
INSERT INTO rman_ruleblocks(blockid,picoruleblock) VALUES(rb.blockid,rb.picoruleblock);
COMMIT;
-- END OF RULEBLOCK --
-- BEGINNING OF RULEBLOCK --
rb.blockid:='cd_cardiac_af';
DELETE FROM rman_ruleblocks WHERE blockid=rb.blockid;
rb.picoruleblock:='
/* AF */
#define_ruleblock([[rb_id]],
{
description: "This is a assess chadvas score in AF",
is_active:2
}
);
dob => eadv.dmg_dob.dt.max();
gender => eadv.dmg_gender.val.last();
#doc(,
{
txt:"atrial fibrillation based on coding"
}
);
af_icd => eadv.[icd_i48_%].dt.min();
af_icpc => eadv.[icpc_k78%].dt.min();
af_dt : {.=>least_date(af_icd,af_icpc)};
af : {coalesce(af_icd,af_icpc)!? =>1},{=>0};
vhd => rout_cd_cardiac_vhd.cd_cardiac_vhd.val.bind();
cad =>rout_cd_cardiac_cad.cad.val.bind();
chf =>rout_cd_cardiac_chf.chf.val.bind();
pvd =>rout_cd_cardiac_cad.pvd.val.bind();
cva =>rout_cd_cardiac_cad.cva.val.bind();
htn =>rout_cd_htn.cd_htn.val.bind();
dm =>rout_cd_dm_dx.dm.val.bind();
age : {.=>round((sysdate-dob)/365.25,0)};
rxn_anticoag_dt => rout_cd_cardiac_rx.rxn_anticoag.val.bind();
rxn_anticoag : { rxn_anticoag_dt!? => 1},{=>0};
#doc(,
{
txt: "CHADVASC score"
}
);
age_score : {age <65 => 0},{age>75 > 2},{=>1};
gender_score : {.=>gender};
chf_hx_score :{ chf>0 => 1},{=>0};
htn_score : { htn>0 => 1},{=>0};
cva_score : {cva>0 =>2},{=>0};
cvd_score : {cad>0 or pvd>0 =>1},{=>0};
dm_score : { dm>0 => 1},{=>0};
cha2ds2vasc : { af=1 and vhd=0 => age_score + gender_score + chf_hx_score + cva_score +cvd_score + dm_score},{=>0};
[[rb_id]] : {af=1 =>1},{=>0};
#define_attribute([[rb_id]],
{
label: "Presence of AF",
desc:"Presence of AF",
is_reportable:1,
type:2
}
);
';
rb.picoruleblock := replace(rb.picoruleblock,'[[rb_id]]',rb.blockid);
rb.picoruleblock:=rman_pckg.sanitise_clob(rb.picoruleblock);
INSERT INTO rman_ruleblocks(blockid,picoruleblock) VALUES(rb.blockid,rb.picoruleblock);
COMMIT;
-- END OF RULEBLOCK --
-- BEGINNING OF RULEBLOCK --
rb.blockid:='cd_cardiac_chf';
DELETE FROM rman_ruleblocks WHERE blockid=rb.blockid;
rb.picoruleblock:='
/* CHF */
#define_ruleblock([[rb_id]],
{
description: "This is a assess CHF",
is_active:2
}
);
#doc(,
{
section:"CHF"
}
);
chf_code => eadv.[icd_i50_%],icpc_k77%].dt.min();
chf : {chf_code!? =>1},{=>0};
[[rb_id]] : {chf=1 =>1},{=>0};
#define_attribute([[rb_id]],
{
label: "presence of CHF",
type : 1001
}
);
';
rb.picoruleblock := replace(rb.picoruleblock,'[[rb_id]]',rb.blockid);
rb.picoruleblock:=rman_pckg.sanitise_clob(rb.picoruleblock);
INSERT INTO rman_ruleblocks(blockid,picoruleblock) VALUES(rb.blockid,rb.picoruleblock);
COMMIT;
-- END OF RULEBLOCK --
-- BEGINNING OF RULEBLOCK --
rb.blockid:='cd_cardiac_rx';
DELETE FROM rman_ruleblocks WHERE blockid=rb.blockid;
rb.picoruleblock:='
/* Algorithm to assess cardiac medication */
#define_ruleblock([[rb_id]],
{
description: "Algorithm to assess cardiac medication",
is_active:2
}
);
#doc(,
{
txt: "Medication",
cite: "cvd_tg_2019,cvd_heart_foundation_2012"
}
);
#doc(,
{
txt: "antiplatelet agents"
}
);
rxn_ap => eadv.[rxnc_b01ac].dt.min().where(val=1);
#doc(,
{
txt: "anti-coagulation including NOAC"
}
);
rxn_anticoag => eadv.[rxnc_b01aa,rxnc_b01af,rxnc_b01ae,rxnc_b01ab].dt.min().where(val=1);
#doc(,
{
txt: "anti-arrhythmic"
}
);
rxn_chrono => eadv.[rxnc_c01%].dt.min().where(val=1);
#doc(,
{
txt: "diuretics"
}
);
rxn_diu_loop => eadv.[rxnc_c03c%].dt.min().where(val=1);
rxn_diu_low_ceil => eadv.[rxnc_c03b%,rxnc_c03a%].dt.min().where(val=1);
rxn_diu_k_sp => eadv.[rxnc_c03d%].dt.min().where(val=1);
#doc(,
{
txt: "lipid lowering"
}
);
rxn_statin => eadv.[rxnc_c10aa,rxnc_c10bx,rxnc_c10ba].dt.min().where(val=1);
rxn : {coalesce(rxn_statin,rxn_diu_k_sp,rxn_diu_low_ceil,rxn_diu_loop,rxn_chrono,rxn_anticoag,rxn_ap)!? =>1},{=>0};
[[rb_id]] : {rxn=1 =>1},{=>0};
#define_attribute(
[[rb_id]],
{
label:"Rx cardiac meds",
desc:"Presence of cardiac",
is_reportable:1,
type:2
}
);
';
rb.picoruleblock := replace(rb.picoruleblock,'[[rb_id]]',rb.blockid);
rb.picoruleblock:=rman_pckg.sanitise_clob(rb.picoruleblock);
INSERT INTO rman_ruleblocks(blockid,picoruleblock) VALUES(rb.blockid,rb.picoruleblock);
COMMIT;
-- END OF RULEBLOCK --
-- BEGINNING OF RULEBLOCK --
rb.blockid:='cd_cardiac_enc';
DELETE FROM rman_ruleblocks WHERE blockid=rb.blockid;
rb.picoruleblock:='
/* Algorithm to assess cardiac encounters */
#define_ruleblock([[rb_id]],
{
description: "Algorithm to assess cardiac encounters",
is_active:2
}
);
car_enc_f_dt => eadv.enc_op_car.dt.first();
car_enc_l_dt => eadv.enc_op_car.dt.last();
[[rb_id]] : {car_enc_l_dt!? => 1},{=>0};
#define_attribute(
[[rb_id]],
{
label:"cardiac outpatient encounter",
desc:"Presence of cardiac outpatient encounter",
is_reportable:1,
type:2
}
);
';
rb.picoruleblock := replace(rb.picoruleblock,'[[rb_id]]',rb.blockid);
rb.picoruleblock:=rman_pckg.sanitise_clob(rb.picoruleblock);
INSERT INTO rman_ruleblocks(blockid,picoruleblock) VALUES(rb.blockid,rb.picoruleblock);
COMMIT;
-- END OF RULEBLOCK --
-- BEGINNING OF RULEBLOCK --
rb.blockid:='cd_cardiac_rhd';
DELETE FROM rman_ruleblocks WHERE blockid=rb.blockid;
rb.picoruleblock:='
/* Algorithm to assess rheumatic heart disease */
#define_ruleblock([[rb_id]],
{
description: "Algorithm to assess rheumatic heart disease",
is_active:2
}
);
#doc(,
{
txt:"rheumatic heart disease based on coding"
}
);
rhd_dt => eadv.[icd_i05%,icd_i06%,icd_i07%,icd_i08%,icd_i09%,icpc_k71%].dt.min();
rhd_aet : {rhd_dt!? => 1},{=>0};
[[rb_id]] : {. => rhd_aet};
#define_attribute(
[[rb_id]],
{
label:"rheumatic heart disease",
desc:"Presence of rheumatic heart disease",
is_reportable:1,
type:2
}
);
';
rb.picoruleblock := replace(rb.picoruleblock,'[[rb_id]]',rb.blockid);
rb.picoruleblock:=rman_pckg.sanitise_clob(rb.picoruleblock);
INSERT INTO rman_ruleblocks(blockid,picoruleblock) VALUES(rb.blockid,rb.picoruleblock);
COMMIT;
-- END OF RULEBLOCK --
END;
|
spool c:\temp\acrin_collection_name_change.log
update general_image gi set gi.project='CT Colonography' where gi.TRIAL_DP_PK_ID = 3;
update trial_data_provenance tdp set tdp.project='CT Colonography' where tdp.trial_dp_pk_id=3;
commit;
spool off; |
CREATE PROC [ERP].[Usp_Sel_DatoLaboralAdelanto_By_ID]
@IdAdelanto INT
AS
BEGIN
SELECT *
FROM ERP.DatoLaboralAdelanto
WHERE ID = @IdAdelanto
END
|
insert into t_clients (client_id, client_secret) values ('acme', 'acmesecret');
insert into t_client_entries (client_id, name, data) values ('acme', 'GRANT_TYPE', 'authorization_code');
insert into t_client_entries (client_id, name, data) values ('acme', 'GRANT_TYPE', 'refresh_token');
insert into t_client_entries (client_id, name, data) values ('acme', 'AUTHORITY', 'authority1');
insert into t_client_entries (client_id, name, data) values ('acme', 'AUTHORITY', 'authority2');
insert into t_client_entries (client_id, name, data) values ('acme', 'SCOPE', 'scope1');
insert into t_client_entries (client_id, name, data) values ('acme', 'SCOPE', 'scope2');
insert into t_client_entries (client_id, name, data) values ('acme', 'SCOPE', 'scope3');
|
create database QLBH
use QLBH
set dateformat DMY
create table KHACHHANG (
MAKH char(4) primary key,
HOTEN varchar(40),
DCHI varchar(50),
SODT varchar(20),
NGSINH datetime,
NGDK datetime,
DOANHSO money
)
create table NHANVIEN (
MANV char(4) primary key,
HOTEN varchar(40),
SODT varchar(20),
NGVL datetime
)
create table SANPHAM (
MASP char(4) primary key,
TENSP varchar(40),
DVT varchar(20),
NUOCSX varchar(40),
GIA money
)
create table HOADON (
SOHD int primary key,
NGHD datetime,
MAKH char(4) references KHACHHANG(MAKH),
MANV char(4) references NHANVIEN(MANV),
TRIGIA money
)
create table CTHD (
SOHD int references HOADON(SOHD),
MASP char(4) references SANPHAM(MASP),
SL int
)
insert into KHACHHANG values ('KH01','Nguyen Van A','731, Tran Hung Dao, Q 5, Tp HCM','08823451','22/10/1960','22/10/2006',13000000)
insert into KHACHHANG values ('KH02','Tran Ngoc Han','23/5, Nguyen Trai, Q 5, Tp HCM','0908256478','03/04/1974','30/07/2006',280000)
insert into KHACHHANG values ('KH03','Tran Ngoc Linh','45, Nguyen Canh Chan, Q 1, Tp HCM','0938776266','12/06/1980','05/08/2006',3860000)
insert into KHACHHANG values ('KH04','Tran Minh Long','50/34 Le Dai Hanh, Q 10, Tp HCM','0917325476','09/03/1965','02/10/2006',250000)
insert into KHACHHANG values ('KH05','Le Nhat Minh','34, Truong Dinh, Q 3, Tp HCM','08246108','10/03/1950','28/10/2006',21000)
insert into KHACHHANG values ('KH06','Le Hoai Thuong','227, Nguyen Van Cu, Q 5, Tp HCM','08631738','31/12/1981','24/11/2006',915000)
insert into KHACHHANG values ('KH07','Nguyen Van Tam','32/3, Tran Binh Trong, Q 5, Tp HCM','0916783565','06/04/1971','01/12/2006',12500)
insert into KHACHHANG values ('KH08','Phan Thi Thanh','45/2, An Duong Vuong, Q 5, Tp HCM','0938435756','10/01/1971','13/12/2006',365000)
insert into KHACHHANG values ('KH09','Le Ha Vinh','873, Le Hong Phong, Q 5, Tp HCM','08654763','03/09/1979','14/01/2007',70000)
insert into KHACHHANG values ('KH10','Ha Duy Lap','34/34B, Nguyen Trai, Q 1, Tp HCM','08768904','02/05/1983','16/01/2007',67500)
insert into NHANVIEN values ('NV01','Nguyen Nhu Nhut','0927345678','13/04/2006')
insert into NHANVIEN values ('NV02','Le Thi Phi Yen','0987567390','21/04/2006')
insert into NHANVIEN values ('NV03','Nguyen Van B','0997047382','27/04/2006')
insert into NHANVIEN values ('NV04','Ngo Thanh Tuan','0913758498','24/06/2006')
insert into NHANVIEN values ('NV05','Nguyen Thi Truc Thanh','0918590387','20/07/2006')
insert into SANPHAM values ('BC01','But chi','cay','Singapore',3000)
insert into SANPHAM values ('BC02','But chi','cay','Singapore',5000)
insert into SANPHAM values ('BC03','But chi','cay','Viet Nam',3500)
insert into SANPHAM values ('BC04','But chi','hop','Viet Nam',30000)
insert into SANPHAM values ('BB01','But bi','cay','Viet Nam',5000)
insert into SANPHAM values ('BB02','But bi','cay','Trung Quoc',7000)
insert into SANPHAM values ('BB03','But bi','hop','Thai Lan',100000)
insert into SANPHAM values ('TV01','Tap 100 giay mong','quyen','Trung Quoc',2500)
insert into SANPHAM values ('TV02','Tap 200 giay mong','quyen','Trung Quoc',4500)
insert into SANPHAM values ('TV03','Tap 100 giay tot','quyen','Viet Nam',3000)
insert into SANPHAM values ('TV04','Tap 200 giay tot','quyen','Viet Nam',5500)
insert into SANPHAM values ('TV05','Tap 100 trang','chuc','Viet Nam',23000)
insert into SANPHAM values ('TV06','Tap 200 trang','chuc','Viet Nam',53000)
insert into SANPHAM values ('TV07','Tap 100 trang','chuc','Trung Quoc',34000)
insert into SANPHAM values ('ST01','So tay 500 trang','quyen','Trung Quoc',40000)
insert into SANPHAM values ('ST02','So tay loai 1','quyen','Viet Nam',55000)
insert into SANPHAM values ('ST03','So tay loai 2','quyen','Viet Nam',51000)
insert into SANPHAM values ('ST04','So tay ','quyen','Thai Lan',55000)
insert into SANPHAM values ('ST05','So tay mong','quyen','Thai Lan',20000)
insert into SANPHAM values ('ST06','Phan viet bang','hop','Viet Nam',5000)
insert into SANPHAM values ('ST07','Phan khong bui','hop','Viet Nam',7000)
insert into SANPHAM values ('ST08','Bong bang','cai','Viet Nam',1000)
insert into SANPHAM values ('ST09','But long','cay','Viet Nam',5000)
insert into SANPHAM values ('ST10','But long','cay','Trung Quoc',7000)
insert into HOADON values (1001,'23/07/2006','KH01','NV01',320000)
insert into HOADON values (1002,'12/08/2006','KH01','NV02',840000)
insert into HOADON values (1003,'23/08/2006','KH02','NV01',100000)
insert into HOADON values (1004,'01/09/2006','KH02','NV01',180000)
insert into HOADON values (1005,'20/10/2006','KH01','NV02',3800000)
insert into HOADON values (1006,'16/10/2006','KH01','NV03',2430000)
insert into HOADON values (1007,'28/10/2006','KH03','NV03',510000)
insert into HOADON values (1008,'28/10/2006','KH01','NV03',440000)
insert into HOADON values (1009,'28/10/2006','KH03','NV04',200000)
insert into HOADON values (1010,'01/11/2006','KH01','NV01',5200000)
insert into HOADON values (1011,'04/11/2006','KH04','NV03',250000)
insert into HOADON values (1012,'30/11/2006','KH05','NV03',21000)
insert into HOADON values (1013,'12/12/2006','KH06','NV01',5000)
insert into HOADON values (1014,'31/12/2006','KH03','NV02',3150000)
insert into HOADON values (1015,'01/01/2007','KH06','NV01',910000)
insert into HOADON values (1016,'01/01/2007','KH07','NV02',12500)
insert into HOADON values (1017,'01/02/2007','KH08','NV03',35000)
insert into HOADON values (1018,'13/01/2007','KH08','NV03',330000)
insert into HOADON values (1019,'13/01/2007','KH01','NV03',30000)
insert into HOADON values (1020,'14/01/2007','KH09','NV04',70000)
insert into HOADON values (1021,'16/01/2007','KH10','NV03',67500)
insert into HOADON values (1022,'16/01/2007',null,'NV03',7000)
insert into HOADON values (1023,'17/01/2007',null,'NV01',330000)
insert into CTHD values (1001,'TV02',10)
insert into CTHD values (1001,'ST01',5)
insert into CTHD values (1001,'BC01',5)
insert into CTHD values (1001,'BC02',10)
insert into CTHD values (1001,'ST08',10)
insert into CTHD values (1002,'BC04',20)
insert into CTHD values (1002,'BB01',20)
insert into CTHD values (1002,'BB02',20)
insert into CTHD values (1003,'BB03',10)
insert into CTHD values (1004,'TV01',20)
insert into CTHD values (1004,'TV02',20)
insert into CTHD values (1004,'TV03',20)
insert into CTHD values (1004,'TV04',20)
insert into CTHD values (1005,'TV05',50)
insert into CTHD values (1005,'TV06',50)
insert into CTHD values (1006,'TV07',20)
insert into CTHD values (1006,'ST01',30)
insert into CTHD values (1006,'ST02',10)
insert into CTHD values (1007,'ST03',10)
insert into CTHD values (1008,'ST04',8)
insert into CTHD values (1009,'ST05',10)
insert into CTHD values (1010,'TV07',50)
insert into CTHD values (1010,'ST07',50)
insert into CTHD values (1010,'ST08',100)
insert into CTHD values (1010,'ST04',50)
insert into CTHD values (1010,'TV03',100)
insert into CTHD values (1011,'ST06',50)
insert into CTHD values (1012,'ST07',3)
insert into CTHD values (1013,'ST08',5)
insert into CTHD values (1014,'BC02',80)
insert into CTHD values (1014,'BB02',100)
insert into CTHD values (1014,'BC04',60)
insert into CTHD values (1014,'BB01',50)
insert into CTHD values (1015,'BB02',30)
insert into CTHD values (1015,'BB03',7)
insert into CTHD values (1016,'TV01',5)
insert into CTHD values (1017,'TV02',1)
insert into CTHD values (1017,'TV03',1)
insert into CTHD values (1017,'TV04',5)
insert into CTHD values (1018,'ST04',6)
insert into CTHD values (1019,'ST05',1)
insert into CTHD values (1019,'ST06',2)
insert into CTHD values (1020,'ST07',10)
insert into CTHD values (1021,'ST08',5)
insert into CTHD values (1021,'TV01',7)
insert into CTHD values (1021,'TV02',10)
insert into CTHD values (1022,'ST07',1)
insert into CTHD values (1023,'ST04',6)
|
alter table pessoas
drop COLUMN profissao;
desc pessoas;
select * from pessoas;
|
CREATE TABLE product_types (
id serial PRIMARY KEY,
description varchar(30) NOT NULL
);
CREATE TABLE products (
id serial PRIMARY KEY,
product_type_id int REFERENCES product_types(id) ON DELETE CASCADE,
name varchar(30) NOT NULL,
description varchar(255),
price real
);
CREATE TABLE role_types (
id serial PRIMARY KEY,
description varchar(30) NOT NULL
);
CREATE TABLE users (
id serial PRIMARY KEY,
role_type_id int REFERENCES role_types(id) ON DELETE CASCADE,
first varchar(30) NOT NULL,
second varchar(30) NOT NULL,
email varchar(255) NOT NULL,
phone varchar(255) NOT NULL,
pw_hash text,
pw_salt text
);
CREATE TABLE orders (
id serial PRIMARY KEY,
user_id int REFERENCES users(id) ON DELETE CASCADE,
address varchar(255) NOT NULL,
order_time timestamp NOT NULL,
deliver_time timestamp,
delivered boolean NOT NULL,
total_price real
);
CREATE TABLE materials (
id serial PRIMARY KEY,
product_type_id int REFERENCES product_types(id) ON DELETE CASCADE,
description varchar(30) NOT NULL,
price real
);
CREATE TABLE cart_map (
id serial PRIMARY KEY,
user_id int REFERENCES users(id) ON DELETE CASCADE,
product_id int REFERENCES products(id) ON DELETE CASCADE,
amount int NOT NULL,
ordered boolean NOT NULL,
added_mats varchar(255),
mats boolean NOT NULL,
price real
);
|
/* Will updte monthly breakdown based on Bills Paid table */
DROP TRIGGER IF EXISTS update_billbreakdown_tbl;
DELIMITER //
CREATE TRIGGER update_billbreakdown_tbl
AFTER INSERT ON bills_billpaid
FOR EACH ROW
BEGIN
INSERT INTO bills_monthlybreakdown
(myPaid, totalPaid)
-- VALUES -- (NEW.paidDate, NEW.totalPaid)
SELECT DATE_FORMAT(paidDate, '%m - %Y'), SUM(totalPaid)
FROM bills_billpaid
WHERE paidDate IS NOT NULL
GROUP BY DATE_FORMAT(paidDate, '%m - %Y')
ORDER BY paidDate;
END//
DELIMITER ; |
use SGRU;
insert into Pessoa values(1,'123','Cassiane','cassiane@email.com','5144444444','cassiane','123');
insert into Pessoa values(2,'456','Marcelo','marcelo@email.com','5133333333','marcelo','456');
insert into Pessoa values(3,'789','Vanderson','vanderson@email.com','5132222222','vanderson','789');
insert into Pessoa values(4,'987','Leonardo','leonardo@email.com','5131111111','leonardo','987');
insert into Pessoa values(5,'147','Calvin','calvin@email.com','5132165598','calvin','147');
insert into Pessoa values(6,'258','Gerente','gerente@email.com','5532114788','gerente','258');
insert into Pessoa values(7,'123456','Operador de Caixa','oper1@email.com','5155555555','oper1','oper');
insert into Pessoa values(8,'654','Operador de Sistema','oper2@email.com','5132569885','oper2','oper');
insert into TipoFuncionario values(1,'Gerente','001');
insert into TipoFuncionario values(2,'Operador de Caixa','002');
insert into TipoFuncionario values(3,'Operador de Sistema','003');
insert into Funcionario values(6,1);
insert into Funcionario values(7,2);
insert into Funcionario values(8,3);
insert into Cartao values(1,'2016-04-29',0,0);
insert into Cartao values(2,'2016-04-29',0,0);
insert into Cartao values(3,'2016-04-29',0,0);
insert into Cartao values(4,'2016-04-29',0,0);
insert into Cartao values(5,'2016-04-29',0,0);
insert into TipoCliente values(1,'Aluno','001');
insert into TipoCliente values(2,'Professor','002');
insert into Cliente values(1, 'C:\\imagens\\123.jpg',1,1);
insert into Cliente values(2, 'C:\\imagens\\456.jpg',2,1);
insert into Cliente values(3, 'C:\\imagens\\789.jpg',3,1);
insert into Cliente values(4, 'C:\\imagens\\987.jpg',4,2);
insert into Cliente values(5, 'C:\\imagens\\147.jpg',5,1);
insert into Recarga values(1,100,'2016-04-14',0,1);
insert into Recarga values(2,200,'2016-04-14',0,1);
insert into Recarga values(3,300,'2016-04-15',0,1);
insert into Recarga values(4,400,'2016-04-16',0,1);
insert into Recarga values(5,10,'2016-04-17',0,2);
-- insert into Recarga values(6,200,'2016-04-17',0,2);
-- 'insert into Recarga values(7,300,'2016-04-18',0,2);
-- 'insert into Recarga values(8,400,'2016-04-16',0,2);
-- insert into Recarga values(9,100,'2016-04-29',0,3);
-- insert into Recarga values(10,200,'2016-04-29',0,3);
-- insert into Recarga values(11,300,'2016-04-29',0,3);
-- insert into Recarga values(12,400,'2016-04-29',0,3);
-- insert into Recarga values(13,100,'2016-04-14',0,4);
-- insert into Recarga values(14,200,'2016-04-14',0,4);
-- insert into Recarga values(15,300,'2016-04-15',0,4);
-- insert into Recarga values(16,400,'2016-04-16',0,4);
-- insert into ValorAlmoco values(1,1,'2016-04-14');
-- insert into ValorAlmoco values(2,2,'2016-04-15');
-- insert into ValorAlmoco values(3,3,'2016-04-16');
insert into ValorAlmoco values(1,4,'2016-04-18');
insert into ValorAlmoco values(2,5,'2016-06-20'); |
DROP TABLE IF EXISTS PERSON;
CREATE TABLE PERSON
(
id INTEGER PRIMARY KEY AUTO_INCREMENT,
first_name VARCHAR(255) NOT NULL,
last_name VARCHAR(255) NOT NULL
); |
###################################################################
#
# @ 지정된 DB 안에 모든 테이블 삭제 처리
#
###################################################################
SET @tables = NULL;
SELECT GROUP_CONCAT(table_schema, '.', table_name) INTO @tables
FROM information_schema.tables
WHERE table_schema = '[TARGET DB NAME]'; -- specify DB name here.
SET @tables = CONCAT('DROP TABLE ', @tables);
PREPARE stmt FROM @tables;
EXECUTE stmt;
DEALLOCATE PREPARE stmt;
|
SET NAMES UTF8;
DROP database IF EXISTS fashionShop;
create database fanke CHARSET=UTF8;
USE fashionShop;
create table admin(
admin_id int primary key ,
admin_name varchar(5);
admin_pwd varchar(15);
role varchar(1)
)
create table Classfiy(
classfiy_id int primary key ,
classfiy_name varchar(20)
)
create table cfy_first(
cfy_fir_id int primary key ,
cfy_fir_name varchar(20);
classfiy_id int
)
create table cfy_second(
cfy_sec_id int primary key ,
cfy_sec_name varchar(20);
cfy_fir_id int
)
create table cfy_third(
cfy_thi_id int primary key ,
cfy_thi_name varchar(20);
cfy_sec_id int
)
create table cfy_fouth(
cfy_fou_id int primary key ,
cfy_fou_name varchar(20);
cfy_thi_id int
)
create table cloth_style(
clo_sty_id int primary key ,
clo_sty_name varchar(10);
cfy_thi_id int
)
create table cloth_fun(
clo_fn_id int primary key ,
clo_fn_name varchar(10);
cfy_thi_id int
)
create table cloth_color(
clo_co_id int primary key ,
clo_co_name varchar(10);
cfy_thi_id int
)
create table cloth_collar(
clo_collar_id int primary key ,
clo_collar_name varchar(10);
cfy_thi_id int
)
insert into cloth_style values(1,"百搭",11);
insert into cloth_style values(2,"休闲",11);
insert into cloth_style values(3,"简约",11);
insert into cloth_style values(4,"复古",11);
insert into cloth_style values(5,"小清新",11);
insert into cloth_fun values(1,"防滑",11);
insert into cloth_fun values(2,"轻便",11);
insert into cloth_fun values(3,"透气",11);
insert into cloth_color values(1,"素色",11);
insert into cloth_color values(2,"纯色",11);
insert into cloth_collar values(1,"圆领",11);
insert into cloth_collar values(2,"V领",11);
insert into classfiy_id values(1,"服装");
insert into classfiy_id values(2,"鞋包");
insert into classfiy_id values(3,"百货");
insert into cfy_first values(11,"男装",1);
insert into cfy_first values(12,"运动户外",1);
insert into cfy_first values(13,"袜品",1);
insert into cfy_first values(14,"女装",1);
insert into cfy_first values(15,"童装",1);
insert into cfy_first values(16,"内衣",1);
insert into cfy_first values(21,"箱包",2);
insert into cfy_first values(22,"鞋",2);
insert into cfy_first values(23,"服饰",2);
insert into cfy_first values(31,"家居生活",3);
insert into cfy_first values(32,"数码/办公",3);
insert into cfy_second values(111,"T恤",11);
insert into cfy_second values(112,"衬衫",11);
insert into cfy_second values(113,"POLO衫",11);
insert into cfy_second values(114,"夹克",11);
insert into cfy_second values(115,"卫衣",11);
insert into cfy_second values(116,"休闲裤",11);
insert into cfy_second values(117,"牛仔裤",11);
insert into cfy_second values(118,"针织衫",11);
insert into cfy_second values(119,"针织裤",11);
insert into cfy_second values(120,"棉服",11);
insert into cfy_second values(121,"羽绒服",11);
insert into cfy_second values(122,"沙滩裤",11);
insert into cfy_second values(123,"大衣",11);
insert into cfy_second values(124,"家居服",11);
insert into cfy_second values(125,"西服",11);
insert into cfy_second values(126,"男运动装",12);
insert into cfy_second values(127,"女运动装",12);
insert into cfy_second values(131,"棉袜",13);
insert into cfy_second values(132,"丝袜",13);
insert into cfy_second values(141,"针织衫",14);
insert into cfy_second values(142,"卫衣",14);
insert into cfy_second values(143,"牛仔裤",14);
insert into cfy_second values(144,"衬衫",14);
insert into cfy_second values(145,"T恤",14);
insert into cfy_second values(146,"半裙",14);
insert into cfy_second values(147,"家居服",14);
insert into cfy_second values(148,"休闲裤",14);
insert into cfy_second values(149,"针织裤",14);
insert into cfy_second values(150,"连衣裙",14);
insert into cfy_second values(160,"男士内衣",16);
insert into cfy_second values(161,"女士内衣",16);
insert into cfy_second values(211,"旅行箱包",21);
insert into cfy_second values(212,"男包",21);
insert into cfy_second values(213,"运动休闲包",21);
insert into cfy_second values(214,"钱包/卡套",21);
insert into cfy_second values(215,"女包",21);
insert into cfy_second values(221,"男鞋",22);
insert into cfy_second values(222,"女鞋",22);
insert into cfy_second values(223,"腰带",23);
insert into cfy_second values(224,"围巾",23);
insert into cfy_second values(311,"家纺",31);
insert into cfy_second values(312,"家居鞋",31);
insert into cfy_second values(313,"室内装饰",31);
insert into cfy_second values(321,"手机配件",32);
insert into cfy_third values(1110,"短袖T恤",111);
insert into cfy_third values(1111,"长袖T恤",111);
insert into cfy_third values(1112,"短袖T恤",112);
insert into cfy_third values(1113,"长袖T恤",112);
insert into cfy_third values(1114,"短袖POLO衫",113);
insert into cfy_third values(1115,"长袖POLO衫",113);
insert into cfy_third values(1116,"套头卫衣",115);
insert into cfy_third values(1117,"开衫卫衣",115);
insert into cfy_third values(1118,"休闲长裤",116);
insert into cfy_third values(1119,"休闲短裤",116);
insert into cfy_third values(1120,"休闲分裤",116);
insert into cfy_third values(1121,"牛仔长裤",117);
insert into cfy_third values(1122,"牛仔短裤",117);
insert into cfy_third values(1123,"牛仔分库",117);
insert into cfy_third values(1124,"套头针织衫",118);
insert into cfy_third values(1125,"针织背心",118);
insert into cfy_third values(1126,"针织开衫",118);
insert into cfy_third values(1127,"短款棉服",120);
insert into cfy_third values(1128,"中长款棉服",120);
insert into cfy_third values(1129,"短款羽绒服",121);
insert into cfy_third values(1130,"中长款大衣",123);
insert into cfy_third values(1131,"长款大衣",123);
insert into cfy_third values(1132,"套装",124);
insert into cfy_third values(1260,"T恤",126);
insert into cfy_third values(1261,"外套",126);
insert into cfy_third values(1262,"裤子",126);
insert into cfy_third values(1263,"外套",127);
insert into cfy_third values(1264,"T恤",127);
insert into cfy_third values(1310,"棉袜",131);
insert into cfy_third values(1311,"丝袜",131);
insert into cfy_third values(1410,"针织开衫",141);
insert into cfy_third values(1411,"套头针织衫",141);
insert into cfy_third values(1412,"套头卫衣",142);
insert into cfy_third values(1413,"开衫卫衣",142);
insert into cfy_third values(1414,"牛仔长裤",143);
insert into cfy_third values(1415,"长袖衬衫",144);
insert into cfy_third values(1416,"短袖衬衫",144);
insert into cfy_third values(1417,"短袖T恤",145);
insert into cfy_third values(1418,"长袖T恤",145);
insert into cfy_third values(1419,"套装",147);
insert into cfy_third values(1420,"休闲短裤",148);
insert into cfy_third values(1419,"针织长裤",149);
insert into cfy_third values(1420,"内裤",160);
insert into cfy_third values(1421,"内裤",161);
insert into cfy_third values(1422,"拉杆箱",211);
insert into cfy_third values(1423,"旅行包",211);
insert into cfy_third values(1424,"双肩背包",212);
insert into cfy_third values(1425,"手提包",212);
insert into cfy_third values(1426,"双肩背包",213);
insert into cfy_third values(1427,"多用包",213);
insert into cfy_third values(1428,"斜跨包",213);
insert into cfy_third values(1429,"腰包",213);
insert into cfy_third values(1430,"洗漱包",214);
insert into cfy_third values(1431,"钱包",214);
insert into cfy_third values(1432,"单肩包",215);
insert into cfy_third values(1433,"运动",221);
insert into cfy_third values(1434,"皮鞋",221);
insert into cfy_third values(1435,"帆布鞋",221);
insert into cfy_third values(1436,"凉鞋",221);
insert into cfy_third values(1437,"休闲鞋",221);
insert into cfy_third values(1438,"帆布鞋",222);
insert into cfy_third values(1439,"休闲鞋",222);
insert into cfy_third values(1440,"运动鞋",222);
insert into cfy_third values(1441,"男软腰带",223);
insert into cfy_third values(1442,"披肩",224);
insert into cfy_third values(1443,"床单/被罩",311);
insert into cfy_third values(1444,"被子",311);
insert into cfy_third values(1445,"床品套装",311);
insert into cfy_third values(1446,"枕套",311);
insert into cfy_third values(1447,"枕芯",311);
insert into cfy_third values(1448,"基本款",312);
insert into cfy_third values(1449,"装饰小件",313);
insert into cfy_third values(1450,"手机壳",321);
insert into cfy_fouth values(11111,"长袖套头衫",1124);
insert into cfy_fouth values(11112,"长袖针织开衫",1126);
insert into cfy_fouth values(11113,"睡衣套装",1132);
insert into cfy_fouth values(11114,"短袖T恤",1260);
insert into cfy_fouth values(11115,"运动外套",1261);
insert into cfy_fouth values(11116,"户外外套",1261);
insert into cfy_fouth values(11117,"短裤",1262);
insert into cfy_fouth values(11118,"长裤",1262);
insert into cfy_fouth values(11119,"运动外套",1263);
insert into cfy_fouth values(11120,"户外外套",1263);
insert into cfy_fouth values(11121,"男袜",1310);
insert into cfy_fouth values(11122,"女袜",1310);
insert into cfy_fouth values(11123,"童袜",1310);
insert into cfy_fouth values(11124,"连裤袜",1311);
insert into cfy_fouth values(11125,"长袖针织开衫",1410);
insert into cfy_fouth values(11126,"分袖针织开衫",1410);
insert into cfy_fouth values(11127,"分袖套头衫",1411);
insert into cfy_fouth values(11128,"长袖套头衫",1411);
insert into cfy_fouth values(11129,"睡衣套装",1419);
insert into cfy_fouth values(11130,"活力运动",1433);
insert into cfy_fouth values(11131,"复古运动",1433);
insert into cfy_fouth values(11132,"休闲皮鞋",1434);
insert into cfy_fouth values(11133,"正装皮鞋",1434);
insert into cfy_fouth values(11134,"休闲凉鞋",1436);
insert into cfy_fouth values(11135,"休闲板鞋",1437);
insert into cfy_fouth values(11136,"低帮",1438);
insert into cfy_fouth values(11137,"高帮",1438);
insert into cfy_fouth values(11138,"休闲板鞋",1439);
insert into cfy_fouth values(11139,"复古运动",1440);
insert into cfy_fouth values(11140,"双人",1443);
insert into cfy_fouth values(11141,"单人",1443);
insert into cfy_fouth values(11142,"空调被",1444);
insert into cfy_fouth values(11143,"冬被",1444);
create table fatherStyle(
fsy_id int primary key ,
fsy_name varchar(10),
fsy_hot varchar(1)
)
create table style(
sty_id int primary key ,
sty_name varchar(10);
fsy_id int
)
insert into fatherStyle values(1,"衬衫",1);
insert into fatherStyle values(2,"T恤",1);
insert into fatherStyle values(3,"卫衣",0);
insert into fatherStyle values(4,"外套",0);
insert into fatherStyle values(5,"针织衫",0);
insert into fatherStyle values(6,"裤装",0);
insert into fatherStyle values(7,"鞋",0);
insert into fatherStyle values(8,"家居配饰",0);
insert into fatherStyle values(9,"特惠",0);
insert into style values(101,"免烫",1);
insert into style values(102,"易打理",1);
insert into style values(103,"休闲",1);
insert into style values(104,"高支",1);
insert into style values(105,"法兰绒",1);
insert into style values(106,"牛津纺",1);
insert into style values(107,"牛仔",1);
insert into style values(108,"麻棉",1);
insert into style values(109,"水洗棉",1);
insert into style values(110,"泡泡衫",1);
insert into style values(111,"商务衬衫",1);
insert into style values(201,"本广",2);
insert into style values(202,"李翔伟",2);
insert into style values(203,"张广先",2);
insert into style values(204,"药",2);
insert into style values(205,"长场雄",2);
insert into style values(206,"创可贴",2);
insert into style values(207,"周南",2);
insert into style values(208,"山鸟叔",2);
insert into style values(209,"简鱼",2);
insert into style values(210,"欧飞鸿",2);
insert into style values(211,"好小猪",2);
insert into style values(212,"剪纸猪",2);
insert into style values(213,"赵老师的猪",2);
insert into style values(214,"熊本熊",2);
insert into style values(215,"水柔棉T",2);
insert into style values(216,"运动T恤",2);
insert into style values(217,"POLO",2);
insert into style values(301,"熊本熊",3);
insert into style values(302,"开衫",3);
insert into style values(303,"连帽",3);
insert into style values(304,"圆领",3);
insert into style values(305,"水柔棉",3);
insert into style values(401,"运动户外",4);
insert into style values(402,"皮肤衣",4);
insert into style values(403,"西服",4);
insert into style values(404,"C9设计款",4);
insert into style values(405,"夹克",4);
insert into style values(406,"nautilus",4);
insert into style values(407,"大衣",4);
insert into style values(408,"羽绒服",4);
insert into style values(501,"空调衫",5);
insert into style values(502,"棉线衫",5);
insert into style values(503,"羊毛衫",5);
insert into style values(601,"针织裤",6);
insert into style values(602,"休闲裤",6);
insert into style values(603,"牛仔裤",6);
insert into style values(604,"运动裤",6);
insert into style values(605,"沙滩裤",6);
insert into style values(701,"复古跑鞋",7);
insert into style values(702,"帆布鞋",7);
insert into style values(703,"休闲鞋",7);
insert into style values(704,"运动鞋",7);
insert into style values(705,"皮鞋",7);
insert into style values(706,"凉鞋",7);
insert into style values(801,"内衣袜品",8);
insert into style values(802,"床品套件",8);
insert into style values(803,"被子",8);
insert into style values(804,"枕",8);
insert into style values(805,"家居服",8);
insert into style values(806,"家居鞋",8);
insert into style values(807,"背提包",8);
insert into style values(808,"拉杆箱",8);
insert into style values(809,"皮带钱包",8);
insert into style values(810,"手机壳",8);
|
INVALID TEST
Mysql does not support computed columns as default values
https://stackoverflow.com/questions/270309/can-i-use-a-function-for-a-default-value-in-mysql/52769071
https://www.oreilly.com/library/view/mysql-cookbook/0596001452/ch08s05.html
|
DROP SCHEMA PUBLIC CASCADE;
CREATE SCHEMA PUBLIC;
-- customer table
CREATE TABLE customers (
cust_id SERIAL PRIMARY KEY,
name TEXT,
email TEXT UNIQUE NOT NULL,
phone TEXT,
passwd TEXT NOT NULL
);
CREATE TABLE restaurants (
rest_id SERIAL PRIMARY KEY,
name TEXT,
info TEXT,
email TEXT,
passwd TEXT,
phone TEXT
);
CREATE TABLE dishes (
dish_id SERIAL PRIMARY KEY,
availability TEXT,
name TEXT,
dish_type TEXT,
info TEXT,
price FLOAT,
image TEXT,
rest_id INT REFERENCES restaurants(rest_id) ON DELETE CASCADE
);
CREATE TABLE delivery_guys (
del_id SERIAL PRIMARY KEY,
name TEXT,
email TEXT,
passwd TEXT,
phone TEXT
);
CREATE TABLE orders (
order_id SERIAL PRIMARY KEY,
cust_id INT REFERENCES customers(cust_id) ON DELETE SET NULL,
rest_id INT REFERENCES restaurants(rest_id) ON DELETE SET NULL,
del_id INT REFERENCES delivery_guys(del_id) ON DELETE SET NULL,
ord_status TEXT,
ord_date DATE
);
CREATE TABLE order_dishes(
order_id INT REFERENCES customers(cust_id) ON DELETE SET NULL,
dish_id INT REFERENCES dishes(dish_id)
quantity INT
);
-- CREATE TABLE menu(
-- dish_id INT REFERENCES dishes(dish_id),
-- rest_id INT REFERENCES restaurants(rest_id)
-- );
CREATE TABLE order_ratings(
order_id INT REFERENCES orders(order_id),
rest_rating INT,
del_rating INT,
rest_review TEXT,
del_review TEXT
);
CREATE TABLE dish_ratings(
order_id INT REFERENCES orders(order_id),
dish_id INT REFERENCES dishes(dish_id),
dish_ratings INT
);
CREATE TABLE cart(
cust_id INT REFERENCES customers(cust_id),
dish_id INT REFERENCES dishes(dish_id),
quantity INT
);
-- Customers search frequently for restaurants
CREATE INDEX restaurants_name_idx ON restaurants ((lower(name)));
-- Customers search for a certain type of dishes like indian, chinese, spicy etc.,
CREATE INDEX dishes_type_idx ON dishes ((lower(dish_type)));
-- Customers also search frequently for dish names
CREATE INDEX dishes_name_idx ON dishes ((lower(name)));
|
create database dbautos;
use dbautos;
create table Titualres(
id int auto_increment,
nombre varchar(50),
apellido varchar(50),
primary key(id)
);
create table Autos(
id int auto_increment,
modelo int,
patente varchar(50),
idTitular int,
primary key (id),
foreign key (idTitular) references Titulares (id)
); |
SET SERVEROUTPUT ON;
--4. Definirea tabelelor impreuna cu constrangerile
create table CLIENTI(
client_id number PRIMARY KEY,
first_name VARCHAR2(20) not null,
last_name VARCHAR2(20) not null,
adresa VARCHAR2(30) not null,
phone VARCHAR2(10) not null
);
create table FABRICA(
fabrica_id number PRIMARY KEY,
nume VARCHAR(20) not null,
adresa VARCHAR(30) not null
);
create table SECTIE(
sectie_id number PRIMARY KEY,
nume_sectie VARCHAR(20) not null,
etaj number not null,
sala number(3) not null,
fabrica_id number not null
);
create table MOBILA(
mobila_id number PRIMARY KEY,
nume VARCHAR2(20) not null,
pret_fabrica number(20) not null,
data_fabricarii date not null,
garantie number(2) not null,
sectie_id number not null
);
create table MAGAZIN(
magazin_id number PRIMARY KEY,
nume NVARCHAR2(20) not null,
phone_number VARCHAR2(10),
pret_magazin NUMBER(20) not null,
mobila_id number not null,
client_id number not null
);
create table CONTRACT(
contract_id number PRIMARY KEY,
fabrica_id number not null,
magazin_id number not null,
mobila_id number not null,
data_contract date not null,
bucati_mobila number(10) not null,
constraint fk_fabrica
foreign key (fabrica_id)
references fabrica(fabrica_id),
constraint fk_magazin
foreign key (magazin_id)
references magazin(magazin_id),
constraint fk_mobila
foreign key (mobila_id)
references mobila(mobila_id)
);
-- 5. Adaugarea informatiilor
--Clienti:
INSERT INTO CLIENTI (client_id, first_name, last_name, adresa, phone)
VALUES (1, 'ISTRATE', 'ROBERT', 'MIRCEA', '0123456789');
INSERT INTO CLIENTI (client_id, first_name, last_name, adresa, phone)
VALUES (2, 'POPESCU', 'GEORGEL', 'VODA', '0123456798');
INSERT INTO CLIENTI (client_id, first_name, last_name, adresa, phone)
VALUES (3, 'POPESCU', 'FLORENTIN', 'STEFAN_CEL_MARE', '0123456978');
INSERT INTO CLIENTI (client_id, first_name, last_name, adresa, phone)
VALUES (4, 'GEORGESCU', 'MATEI', 'EMINESCU', '0123459678');
INSERT INTO CLIENTI (client_id, first_name, last_name, adresa, phone)
VALUES (5, 'ALBERT', 'FILIP', 'CARAGIALE', '9876543210');
select *
from clienti;
--Magazin:
INSERT INTO MAGAZIN(magazin_id, nume, phone_number, pret_magazin, client_id, mobila_id)
VALUES (1, 'PRIMA_MANA', '1230984378', 12345, 2, 1);
INSERT INTO MAGAZIN(magazin_id, nume, phone_number, pret_magazin, client_id, mobila_id)
VALUES (2, 'CALITATE', '9999999999', 65151, 1, 2);
INSERT INTO MAGAZIN(magazin_id, nume, phone_number, pret_magazin, client_id, mobila_id)
VALUES (3, 'JOHN', '8888888888', 4565, 3, 1);
INSERT INTO MAGAZIN(magazin_id, nume, phone_number, pret_magazin, client_id, mobila_id)
VALUES (4, 'PRIETENUL_TAU', '1111111111', 462, 5, 4);
INSERT INTO MAGAZIN(magazin_id, nume, phone_number, pret_magazin, client_id, mobila_id)
VALUES (5, 'LANGA_TINE', '2222222222', 564216, 4, 1);
select *
from magazin;
--Mobila:
INSERT INTO MOBILA(mobila_id, nume, pret_fabrica, data_fabricarii, garantie, sectie_id)
VALUES (1, 'DULAP', 1800, TO_DATE('20-MAR-2010', 'dd-MON-yyyy'), 2, 1);
INSERT INTO MOBILA(mobila_id, nume, pret_fabrica, data_fabricarii, garantie, sectie_id)
VALUES (2, 'NOPTIERA', 200, TO_DATE('20-MAR-2012', 'dd-MON-yyyy'), 2, 1);
INSERT INTO MOBILA(mobila_id, nume, pret_fabrica, data_fabricarii, garantie, sectie_id)
VALUES (3, 'COMODA', 1000, TO_DATE('10-MAR-2010', 'dd-MON-yyyy'), 2, 1);
INSERT INTO MOBILA(mobila_id, nume, pret_fabrica, data_fabricarii, garantie, sectie_id)
VALUES (4, 'SIFONIER', 2200, TO_DATE('15-MAY-2015', 'dd-MON-yyyy'), 2, 1);
INSERT INTO MOBILA(mobila_id, nume, pret_fabrica, data_fabricarii, garantie, sectie_id)
VALUES (5, 'DULAP', 222, TO_DATE('20-MAR-2010', 'dd-MON-yyyy'), 2, 1);
select *
from mobila;
--Sectie:
INSERT INTO SECTIE(sectie_id, nume_sectie, etaj, sala, fabrica_id)
VALUES (1, 'MOBILA', 2, 205, 1);
INSERT INTO SECTIE(sectie_id, nume_sectie, etaj, sala, fabrica_id)
VALUES (2, 'VASE', 1, 101, 1);
INSERT INTO SECTIE(sectie_id, nume_sectie, etaj, sala, fabrica_id)
VALUES (3, 'METALURGIE', 3, 306, 1);
INSERT INTO SECTIE(sectie_id, nume_sectie, etaj, sala, fabrica_id)
VALUES (4, 'LUSTRE', 4, 404, 1);
INSERT INTO SECTIE(sectie_id, nume_sectie, etaj, sala, fabrica_id)
VALUES (5, 'GRADINARIT', 5, 501, 1);
select *
from sectie;
--Fabrica:
INSERT INTO FABRICA(fabrica_id, nume, adresa)
VALUES (1, 'LEONI', 'CARPATI');
INSERT INTO FABRICA(fabrica_id, nume, adresa)
VALUES (2, 'SBP', 'BARBARII');
INSERT INTO FABRICA(fabrica_id, nume, adresa)
VALUES (3, 'MIX', 'NOBILII');
INSERT INTO FABRICA(fabrica_id, nume, adresa)
VALUES (4, 'S.U.P.E.R', 'EVOLUTIEI');
INSERT INTO FABRICA(fabrica_id, nume, adresa)
VALUES (5, 'CALITATE', 'REVOLUTIEI');
select *
from fabrica;
--Contract:
INSERT INTO CONTRACT(contract_id, fabrica_id, magazin_id, mobila_id, data_contract, bucati_mobila)
VALUES (1, 1, 1, 1, '23-SEP-2018', 200);
INSERT INTO CONTRACT(contract_id, fabrica_id, magazin_id, mobila_id, data_contract, bucati_mobila)
VALUES (2, 1, 1, 2, '24-SEP-2018', 500);
INSERT INTO CONTRACT(contract_id, fabrica_id, magazin_id, mobila_id, data_contract, bucati_mobila)
VALUES (3, 1, 1, 3, '25-SEP-2018', 1000);
INSERT INTO CONTRACT(contract_id, fabrica_id, magazin_id, mobila_id, data_contract, bucati_mobila)
VALUES (4, 1, 1, 4, '26-SEP-2018', 600);
INSERT INTO CONTRACT(contract_id, fabrica_id, magazin_id, mobila_id, data_contract, bucati_mobila)
VALUES (5, 1, 1, 5, '27-SEP-2018', 1200);
INSERT INTO CONTRACT(contract_id, fabrica_id, magazin_id, mobila_id, data_contract, bucati_mobila)
VALUES (6, 1, 1, 1, '28-SEP-2018', 400);
INSERT INTO CONTRACT(contract_id, fabrica_id, magazin_id, mobila_id, data_contract, bucati_mobila)
VALUES (7, 1, 1, 2, '29-SEP-2018', 700);
INSERT INTO CONTRACT(contract_id, fabrica_id, magazin_id, mobila_id, data_contract, bucati_mobila)
VALUES (8, 1, 1, 3, '30-SEP-2018', 1700);
INSERT INTO CONTRACT(contract_id, fabrica_id, magazin_id, mobila_id, data_contract, bucati_mobila)
VALUES (9, 1, 1, 4, '22-SEP-2018', 100);
INSERT INTO CONTRACT(contract_id, fabrica_id, magazin_id, mobila_id, data_contract, bucati_mobila)
VALUES (10, 1, 1, 5, '21-SEP-2018', 300);
select *
from contract;
-- 6.
CREATE OR REPLACE PROCEDURE ex6(adresa_in IN NVARCHAR2)
IS
TYPE tablou IS TABLE OF CLIENTI%ROWTYPE;
client_by_adresa tablou;
total integer;
BEGIN
DBMS_OUTPUT.enable;
select *
bulk collect into client_by_adresa
from clienti
where adresa = adresa_in;
total := client_by_adresa.COUNT;
FOR i in 1 .. total loop
dbms_output.put_line(client_by_adresa(i).first_name || ' ' || client_by_adresa(i).last_name);
end loop;
END;
/
EXECUTE ex6('MIRCEA');
--7.
CREATE OR REPLACE PROCEDURE ex7(pret_in in number)
IS
CURSOR mobila_cursor is
select *
from mobila
where pret_fabrica >= pret_in;
BEGIN
DBMS_OUTPUT.enable;
FOR i in mobila_cursor loop
dbms_output.put_line('Mobilierul: ' || i.nume || ' costa ' || i.pret_fabrica);
end loop;
END;
/
EXECUTE ex7(600);
--8
CREATE OR REPLACE FUNCTION ex8(mob_id mobila.mobila_id%TYPE)
return NUMBER
IS
pret mobila.pret_fabrica%TYPE;
BEGIN
select pret_fabrica
into pret
from mobila mo, magazin m, clienti c
where mo.mobila_id = mob_id and mo.mobila_id = m.mobila_id and c.client_id = m.client_id;
return pret;
EXCEPTION
WHEN no_data_found THEN
raise_application_error(-20000, 'Nu exista mobila!');
WHEN too_many_rows THEN
raise_application_error(-20001, 'Prea multe linii returnate!');
WHEN others THEN
raise_application_error(-20002, 'Error!');
END ex8;
/
--Apel fara exceptii
BEGIN
dbms_output.put_line('Clientul este: ' || ex8(4));
END;
/
--Apel no_data_found:
BEGIN
dbms_output.put_line('Clientul este: ' || ex8(3));
END;
/
--Apel too_many_rows:
BEGIN
dbms_output.put_line('Clientul este: ' || ex8(1));
END;
/
--9
CREATE OR REPLACE PROCEDURE ex_9(mob_id mobila.mobila_id%TYPE)
IS
pret magazin.pret_magazin%TYPE;
BEGIN
select pret_magazin
into pret
from mobila mo, magazin m, clienti c, contract co, (select * from sectie where sectie_id = 1)
where mo.mobila_id = mob_id and mo.mobila_id = m.mobila_id and c.client_id = m.client_id
and co.mobila_id = m.mobila_id;
DBMS_OUTPUT.PUT('Pretul este: ' || pret);
EXCEPTION
WHEN no_data_found THEN
raise_application_error(-20000, 'Nu exista mobila!');
WHEN too_many_rows THEN
raise_application_error(-20001, 'Prea multe linii returnate!');
WHEN others THEN
raise_application_error(-20002, 'Error!');
END;
/
--Apel too_many_rows:
EXECUTE ex_9(4);
--Apel no_data_found:
EXECUTE ex_9(3);
--10
CREATE OR REPLACE TRIGGER ex10
AFTER INSERT OR DELETE OR UPDATE ON MOBILA
DECLARE
username varchar2(10);
BEGIN
DBMS_OUTPUT.enable;
select user
into username
from dual;
if INSERTING then
DBMS_OUTPUT.PUT_LINE('User-ul ' || username || ' a facut insert in tabela MOBILA');
elsif DELETING then
DBMS_OUTPUT.PUT_LINE('User-ul ' || username || ' a sters in tabela MOBILA');
else
DBMS_OUTPUT.PUT_LINE('User-ul ' || username || ' a facut update in tabela MOBILA');
end if;
END;
/
--Declansarea la:
--insert
INSERT INTO MOBILA(mobila_id, nume, pret_fabrica, data_fabricarii, garantie, sectie_id)
VALUES (6, 'MASA', 2500, TO_DATE('20-MAR-2010', 'dd-MON-yyyy'), 2, 1);
--update
update MOBILA
set pret_fabrica = 1800
where mobila_id = 6;
--delete
delete from MOBILA where mobila_id = 6;
--11.
CREATE OR REPLACE TRIGGER ex11
before update of etaj on SECTIE
FOR EACH ROW
WHEN (NEW.etaj <> OLD.etaj)
BEGIN
raise_application_error(-20000, 'Nu se poate schimba etajul sectiei!');
END;
/
--Declansare:
update sectie
set etaj = 10
where sectie_id = 1;
--12.
create table audit_schema(
utilizator VARCHAR2(30),
nume_bd VARCHAR2(50),
eveniment VARCHAR2(20),
nume_obiect VARCHAR2(30),
data_audit DATE
);
CREATE OR REPLACE TRIGGER ex12
after create or drop or alter on SCHEMA
BEGIN
DBMS_OUTPUT.enable;
DBMS_OUTPUT.PUT_LINE('Trigger declansat');
INSERT INTO audit_schema
VALUES (SYS.LOGIN_USER, SYS.DATABASE_NAME, SYS.SYSEVENT, SYS.DICTIONARY_OBJ_NAME, SYSDATE);
END;
/
--Declansarea:
create table tabel(linii number);
alter table tabel add (linii2 number);
drop table tabel; |
-- staging 2 to consumption (Origin)
insert into consumption (client_id,day,prd,kwh)
select
{$v_client_id} as client_id,
((case when (length(dt)=7) then to_date('0'||dt,'DD/MM/YY') when (length(dt)=8) then to_date(dt,'DD/MM/YY') when (length(dt)=9) then to_date('0'||dt,'DD/MM/YYYY') when (length(dt)=10) then to_date(dt,'DD/MM/YYYY') else to_date(dt,'DD/Mon/YYYY') end)-date '01/01/2010')+1 as day,
p as prd,
k as kwh
from
(
select date as dt,p1 as k,1 as p from staging_origin2 union
select date,p2,2 from staging_origin2 union
select date,p3,3 from staging_origin2 union
select date,p4,4 from staging_origin2 union
select date,p5,5 from staging_origin2 union
select date,p6,6 from staging_origin2 union
select date,p7,7 from staging_origin2 union
select date,p8,8 from staging_origin2 union
select date,p9,9 from staging_origin2 union
select date,p10,10 from staging_origin2 union
select date,p11,11 from staging_origin2 union
select date,p12,12 from staging_origin2 union
select date,p13,13 from staging_origin2 union
select date,p14,14 from staging_origin2 union
select date,p15,15 from staging_origin2 union
select date,p16,16 from staging_origin2 union
select date,p17,17 from staging_origin2 union
select date,p18,18 from staging_origin2 union
select date,p19,19 from staging_origin2 union
select date,p20,20 from staging_origin2 union
select date,p21,21 from staging_origin2 union
select date,p22,22 from staging_origin2 union
select date,p23,23 from staging_origin2 union
select date,p24,24 from staging_origin2 union
select date,p25,25 from staging_origin2 union
select date,p26,26 from staging_origin2 union
select date,p27,27 from staging_origin2 union
select date,p28,28 from staging_origin2 union
select date,p29,29 from staging_origin2 union
select date,p30,30 from staging_origin2 union
select date,p31,31 from staging_origin2 union
select date,p32,32 from staging_origin2 union
select date,p33,33 from staging_origin2 union
select date,p34,34 from staging_origin2 union
select date,p35,35 from staging_origin2 union
select date,p36,36 from staging_origin2 union
select date,p37,37 from staging_origin2 union
select date,p38,38 from staging_origin2 union
select date,p39,39 from staging_origin2 union
select date,p40,40 from staging_origin2 union
select date,p41,41 from staging_origin2 union
select date,p42,42 from staging_origin2 union
select date,p43,43 from staging_origin2 union
select date,p44,44 from staging_origin2 union
select date,p45,45 from staging_origin2 union
select date,p46,46 from staging_origin2 union
select date,p47,47 from staging_origin2 union
select date,p48,48 from staging_origin2
) s order by day,prd
|
select * from users where emp_id in
(103419, 203013, 366338)
order by mgr desc;
|
ALTER TABLE `cs_cars` CHANGE `imgurl` `imgurl` VARCHAR(800) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '车辆图片';
ALTER TABLE `cs_coach_users_records` CHANGE `identity_img` `identity_img` VARCHAR(200) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '身份证图片';
|
DROP DATABASE IF EXISTS vk;
CREATE DATABASE vk;
USE vk;
DROP TABLE IF EXISTS users;
CREATE TABLE users (
id SERIAL PRIMARY KEY, -- SERIAL = BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE
firstname VARCHAR(50),
lastname VARCHAR(50) COMMENT 'Фамиль', -- COMMENT на случай, если имя неочевидное
email VARCHAR(120) UNIQUE,
phone BIGINT,
INDEX users_phone_idx(phone), -- как выбирать индексы?
INDEX users_firstname_lastname_idx(firstname, lastname)
);
DROP TABLE IF EXISTS cities;
CREATE TABLE cities(
id SERIAL PRIMARY KEY,
`name` VARCHAR (150),
INDEX cities_name (name)
);
DROP TABLE IF EXISTS `profiles`;
CREATE TABLE `profiles` (
user_id SERIAL PRIMARY KEY,
gender ENUM('male', 'female', 'undefined'), -- *** CHAR(1),
birthday DATE,
photo_id BIGINT UNSIGNED NULL,
created_at DATETIME DEFAULT NOW(),
hometown BIGINT UNSIGNED NULL, -- *** hometown VARCHAR(100), -- *** лучше сделать отдельной таблицей "Cities"
FOREIGN KEY (user_id) REFERENCES users(id) -- что за зверь в целом?
ON UPDATE CASCADE -- как это работает? Какие варианты? -***изменяет строки при изменении строк в "главной" таблице
ON DELETE restrict -- как это работает? Какие варианты? -***запрещает удаление строк в "главной" таблице при наличии ссылок в этой таблице
-- ***, FOREIGN KEY (photo_id) REFERENCES media(id)
, FOREIGN KEY (hometown) REFERENCES cities(id)
);
DROP TABLE IF EXISTS messages;
CREATE TABLE messages (
id SERIAL PRIMARY KEY,
from_user_id BIGINT UNSIGNED NOT NULL,
to_user_id BIGINT UNSIGNED NOT NULL,
-- reply_at BIGINT UNSIGNED NOT NULL, -- *** сообщение, на которое отвечаем
body TEXT,
created_at DATETIME DEFAULT NOW(), -- можно будет даже не упоминать это поле при вставке
`read_at` DATETIME, -- *** добавить поле (дата_прочитано)
INDEX messages_from_user_id (from_user_id),
INDEX messages_to_user_id (to_user_id),
-- INDEX messages_reply_at (reply_at),
FOREIGN KEY (from_user_id) REFERENCES users(id),
FOREIGN KEY (to_user_id) REFERENCES users(id)
-- , FOREIGN KEY (reply_at) REFERENCES messages(id)
);
DROP TABLE IF EXISTS friend_requests;
CREATE TABLE friend_requests (
-- id SERIAL PRIMARY KEY, -- изменили на композитный ключ (initiator_user_id, target_user_id)
initiator_user_id BIGINT UNSIGNED NOT NULL,
target_user_id BIGINT UNSIGNED NOT NULL,
-- `status` TINYINT UNSIGNED,
`status` ENUM('requested', 'approved', 'unfriended', 'declined'),
-- `status` TINYINT UNSIGNED, -- в этом случае в коде хранили бы цифирный enum (0, 1, 2, 3...)
requested_at DATETIME DEFAULT NOW(),
confirmed_at DATETIME,
PRIMARY KEY (initiator_user_id, target_user_id),
INDEX (initiator_user_id), -- потому что обычно будем искать друзей конкретного пользователя
INDEX (target_user_id),
FOREIGN KEY (initiator_user_id) REFERENCES users(id),
FOREIGN KEY (target_user_id) REFERENCES users(id)
);
DROP TABLE IF EXISTS communities;
CREATE TABLE communities(
id SERIAL PRIMARY KEY,
name VARCHAR(150),
INDEX communities_name_idx(name)
);
DROP TABLE IF EXISTS users_communities;
CREATE TABLE users_communities(
user_id BIGINT UNSIGNED NOT NULL,
community_id BIGINT UNSIGNED NOT NULL,
PRIMARY KEY (user_id, community_id), -- чтобы не было 2 записей о пользователе и сообществе
FOREIGN KEY (user_id) REFERENCES users(id),
FOREIGN KEY (community_id) REFERENCES communities(id)
);
DROP TABLE IF EXISTS media_types;
CREATE TABLE media_types(
id SERIAL PRIMARY KEY,
name VARCHAR(255),
created_at DATETIME DEFAULT NOW(),
updated_at DATETIME DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP -- *** нет необходимости в данном поле
-- записей мало, поэтому индекс будет лишним (замедлит работу)!
);
DROP TABLE IF EXISTS media;
CREATE TABLE media(
id SERIAL PRIMARY KEY,
media_type_id BIGINT UNSIGNED NOT NULL,
user_id BIGINT UNSIGNED NOT NULL,
body text,
filename VARCHAR(255),
size INT,
metadata JSON,
created_at DATETIME DEFAULT NOW(),
updated_at DATETIME DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
INDEX (user_id),
FOREIGN KEY (user_id) REFERENCES users(id),
FOREIGN KEY (media_type_id) REFERENCES media_types(id)
);
DROP TABLE IF EXISTS likes_media;
CREATE TABLE likes_media(
-- id SERIAL PRIMARY KEY,
user_id BIGINT UNSIGNED NOT NULL,
media_id BIGINT UNSIGNED NOT NULL,
created_at DATETIME DEFAULT NOW()
-- PRIMARY KEY (user_id, media_id) – можно было и так вместо id в качестве PK
-- слишком увлекаться индексами тоже опасно, рациональнее их добавлять по мере необходимости (напр., провисают по времени какие-то запросы)
-- намеренно забыли, чтобы увидеть нехватку в ER-диаграмме
, PRIMARY KEY (user_id, media_id) -- один юзер - один лайк на что-либо
, FOREIGN KEY (user_id) REFERENCES users(id)
, FOREIGN KEY (media_id) REFERENCES media(id)
);
DROP TABLE IF EXISTS likes_users;
CREATE TABLE likes_users(
-- id SERIAL PRIMARY KEY,
user_id BIGINT UNSIGNED NOT NULL, -- кто лайкнул
user_liked_id BIGINT UNSIGNED NOT NULL, -- кого лайкнули
created_at DATETIME DEFAULT NOW()
, PRIMARY KEY (user_id, user_liked_id) -- один юзер не может лайкнуть более одного раза другого
, FOREIGN KEY (user_id) REFERENCES users(id)
, FOREIGN KEY (user_liked_id) REFERENCES users(id)
);
DROP TABLE IF EXISTS likes_messages;
CREATE TABLE likes_messages(
-- id SERIAL PRIMARY KEY,
user_id BIGINT UNSIGNED NOT NULL,
message_id BIGINT UNSIGNED NOT NULL,
created_at DATETIME DEFAULT NOW()
, PRIMARY KEY (user_id, message_id) -- один юзер не может лайкнуть более одного раза одно сообщение
, FOREIGN KEY (user_id) REFERENCES users(id)
, FOREIGN KEY (message_id) REFERENCES messages(id)
);
DROP TABLE IF EXISTS `photo_albums`;
CREATE TABLE `photo_albums` (
`id` SERIAL,
`name` varchar(255) DEFAULT NULL,
`user_id` BIGINT UNSIGNED DEFAULT NULL,
FOREIGN KEY (user_id) REFERENCES users(id),
PRIMARY KEY (`id`)
);
DROP TABLE IF EXISTS `photos`;
CREATE TABLE `photos` (
id SERIAL PRIMARY KEY,
`album_id` BIGINT unsigned NOT NULL,
`media_id` BIGINT unsigned NOT NULL,
FOREIGN KEY (album_id) REFERENCES photo_albums(id),
FOREIGN KEY (media_id) REFERENCES media(id)
);
|
with
hist as (select * from {{ref('stg_transactions_history_snapshot_model')}}),
bf as (select * from {{ref('inter_budget_fixed_model')}}),
bd as (select * from {{ref('inter_budget_discretionary_model')}}),
i as (select * from {{ref('inter_income_model')}}),
fa as (select * from {{ref('inter_fa_model')}})
select
row_number() over (partition by hist.category order by hist.trans_date desc),
hist.*
from hist
left join bf
on hist.recid = bf.recid
left join bd
on hist.recid = bd.recid
left join i
on hist.recid = i.recid
left join fa
on hist.recid = fa.recid
where (bf.recid is null and bd.recid is null and i.recid is null and fa.recid is null)
and hist.category not in ('Credit Card Payment')
and hist.trans_date >='1/1/2019'
|
CREATE DATABASE IF NOT EXISTS Consultation_Opera;
USE Consultation_Opera;
CREATE TABLE IF NOT EXISTS user_types (
id INT AUTO_INCREMENT PRIMARY KEY,
title VARCHAR(255) NOT NULL
);
insert into `user_types`(`title`)
values
("Site Administrator"),
("Opera Management"),
("Customer"),
("Guest");
CREATE TABLE IF NOT EXISTS StatusOfUsers(
id int AUTO_INCREMENT primary key,
title VARCHAR(25)
);
insert into `StatusOfUsers`(`title`)
values
('Verified'),
('Not Verified'),
('Cancelled');
CREATE TABLE IF NOT EXISTS users (
id INT AUTO_INCREMENT PRIMARY KEY,
firstName VARCHAR(50) NOT NULL,
lastName VARCHAR(50) NOT NULL,
userName VARCHAR(50) NOT NULL UNIQUE,
userPassword VARCHAR(255) NOT NULL,
birthDate DATE,
gender VARCHAR(6),
city VARCHAR(50),
userAddress VARCHAR(255) DEFAULT 'None',
email VARCHAR(100) NOT NULL UNIQUE,
position INT,
userStatus INT DEFAULT 2, # 2 means not verified
FOREIGN KEY(position)
REFERENCES user_types(id)
);
insert into `users`(`firstName`,`lastName`,
`userName`,`userPassword`,
`gender`,`city`,`email`,`position`,`userStatus`)
values
('Amr','Khaled','amrkh97','test1234','Male','Cairo','amrkh97@gmail.com',1,1);
CREATE TABLE IF NOT EXISTS halls(
id INT AUTO_INCREMENT PRIMARY KEY,
hallName VARCHAR(50) DEFAULT 'Opera Hall',
numberRows INT NOT NULL,
numberColumns INT NOT NULL,
hallStatus VARCHAR(25) DEFAULT 'AVAILABLE'
);
insert into `halls`(`hallName`,`numberRows`,`numberColumns`)
values
('Omars Hall',10,10);
CREATE TABLE IF NOT EXISTS events(
id INT AUTO_INCREMENT PRIMARY KEY,
eventName VARCHAR(100) NOT NULL,
eventDescription text,
eventPoster VARCHAR(255) DEFAULT 'None', # FTP LINK
eventTiming DATETIME DEFAULT CURRENT_TIMESTAMP,
hallNumber int,
eventStatus VARCHAR(25) DEFAULT 'ACTIVE',
FOREIGN KEY(hallNumber)
REFERENCES halls(id)
);
insert into `events`(`eventName`,`eventDescription`,`hallNumber`)
values
('Laugh For A Cause','The wait is finally over!!
You guessed it,
It\'s STAND UP COMEDY
Laughing is the best medicine, come laugh your stress away all for a good cause. The cause being شجرها , which is replanting formerly green spots in Maadi which are now dead due to lack of care.
This event is dedicated to raise funds for program Revive Maadi which is a community service initiative containing multiple projects, one of which is شجرها.
Rotaract Sarayat El-Maadi presents:
*Drum Roll*
Laugh for a cause
A stand up comedy event featuring:
The Elite - النخبة
Los Bastardos
Ticket price: 100 L.E
Location: KMT House
Event time: Thursday 12 Dec 2019
come join us and laugh for a cause
and please feel free to invite and share with your friends',1);
UPDATE halls
SET halls.hallStatus = 'OCCUPIED'
WHERE halls.id = (SELECT hallNumber FROM events where events.eventStatus = 'ACTIVE');
CREATE TABLE IF NOT EXISTS statusOfEvents(
id int AUTO_INCREMENT PRIMARY KEY,
statusTitle VARCHAR(25)
);
insert into `statusOfEvents`(`statusTitle`)
values
('ACTIVE'),
('CANCELLED'),
('DONE');
CREATE TABLE IF NOT EXISTS reservations(
id int AUTO_INCREMENT PRIMARY KEY,
eventID int,
userID int,
reservedRow int,
reservedColumn int,
FOREIGN KEY(eventID)
REFERENCES events(id),
FOREIGN KEY(userID)
REFERENCES users(id)
); |
-- NO TOCAR
-- configurar
.headers on
.mode column
-- ejecutar script sql
.print "\nInicio de actividad 1"
.print "---------------------------------------------------\n"
.read actividad-1.sql
.print "\n-----------------------------------------------------\nFin de actividad 1\n\n"
|
-- Lure them back
-- You must not change the next 2 lines or the table definition.
SET SEARCH_PATH TO uber, public;
drop table if exists q2 cascade;
create table q2(
client_id INTEGER,
name VARCHAR(41),
email VARCHAR(30),
billed FLOAT,
decline INTEGER
);
-- Do this for each of the views that define your intermediate steps.
-- (But give them better names!) The IF EXISTS avoids generating an error
-- the first time this file is imported.
DROP VIEW IF EXISTS Rides CASCADE;
DROP VIEW IF EXISTS PreviousRider CASCADE;
DROP VIEW IF EXISTS FewIn2014 CASCADE;
DROP VIEW IF EXISTS FewerIn2015 CASCADE;
-- These are the rides that were completed. The datetimes used here are
-- those of the request, not the drop off
CREATE VIEW Rides AS
SELECT Dropoff.request_id request_id, Request.datetime datetime, client_id,
amount
FROM Dropoff JOIN Request on Dropoff.request_id=Request.request_id
JOIN Billed on Dropoff.request_id=Billed.request_id;
-- Riders who had rides before 2014 costing at least $500 in total
CREATE VIEW PreviousRider AS
SELECT client_id, sum(amount) billed
FROM Rides
WHERE datetime<'2014-01-01 00:00'
GROUP BY client_id
HAVING sum(amount)>=500;
-- Riders who had between 1 and 10 rides in 2014. NOTE: Ambiguity
-- in question, we assume 1 and 10 are included here.
CREATE VIEW FewIn2014 AS
SELECT client_id
FROM Rides
WHERE datetime>='2014-01-01 00:00' AND datetime<'2015-01-01 00:00'
GROUP BY client_id
HAVING count(request_id)>=1 and count(request_id)<=10;
-- Riders who had fewer rides in 2015 than in 2014
-- Here, we remove tuples where the number of rides
-- in 2015 was larger than in 2014.
CREATE VIEW FewerIn2015 AS
SELECT X1.client_id client_id,
-- Below, this coalesce finds the decline in
-- rides from 2014 to 2015. If there were no
-- rides in 2015 (NULL subquery), the deline
-- is just equal to the number of rides in 2014.
COALESCE((SELECT count(request_id)
FROM Rides AS X2
WHERE datetime>='2014-01-01 00:00' AND
datetime<'2015-01-01 00:00' AND X2.client_id=X1.client_id
GROUP BY client_id) - (SELECT count(request_id)
FROM Rides AS X2
WHERE datetime>='2015-01-01 00:00' AND
datetime<'2016-01-01 00:00' AND X2.client_id=X1.client_id
GROUP BY client_id), (SELECT count(request_id)
FROM Rides AS X2
WHERE datetime>='2014-01-01 00:00' AND
datetime<'2015-01-01 00:00' AND X2.client_id=X1.client_id
GROUP BY client_id)) as decline
FROM Rides AS X1
WHERE (SELECT count(request_id)
FROM Rides AS X2
WHERE datetime>='2014-01-01 00:00' AND datetime<'2015-01-01 00:00'
AND X2.client_id=X1.client_id
GROUP BY client_id)
>
(SELECT count(request_id)
FROM Rides AS X2
WHERE datetime>='2015-01-01 00:00' AND datetime<'2016-01-01 00:00'
AND X2.client_id=X1.client_id
GROUP BY client_id)
OR
(SELECT count(request_id)
FROM Rides AS X2
WHERE datetime>='2015-01-01 00:00' AND datetime<'2016-01-01 00:00'
AND X2.client_id=X1.client_id
GROUP BY client_id) IS NULL
GROUP BY client_id;
-- Your query that answers the question goes below the "insert into" line:
insert into q2
SELECT client_id, firstname || ' ' || surname as name,
COALESCE(email,'unknown') email, billed, decline
FROM FewerIn2015 NATURAL JOIN FewIn2014 NATURAL JOIN
PreviousRider NATURAL JOIN Client;
|
CREATE DATABASE IF NOT EXISTS `extended` /*!40100 DEFAULT CHARACTER SET latin1 */;
USE `extended`;
-- MySQL dump 10.13 Distrib 5.5.43, for debian-linux-gnu (x86_64)
--
-- Host: 127.0.0.1 Database: extended
-- ------------------------------------------------------
-- Server version 5.5.43-0ubuntu0.14.04.1
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES 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 `auth_group`
--
DROP TABLE IF EXISTS `auth_group`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `auth_group` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(80) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `name` (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `auth_group_permissions`
--
DROP TABLE IF EXISTS `auth_group_permissions`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `auth_group_permissions` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`group_id` int(11) NOT NULL,
`permission_id` int(11) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `group_id` (`group_id`,`permission_id`),
KEY `auth_group_permissions_5f412f9a` (`group_id`),
KEY `auth_group_permissions_83d7f98b` (`permission_id`),
CONSTRAINT `group_id_refs_id_f4b32aac` FOREIGN KEY (`group_id`) REFERENCES `auth_group` (`id`),
CONSTRAINT `permission_id_refs_id_6ba0f519` FOREIGN KEY (`permission_id`) REFERENCES `auth_permission` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `auth_permission`
--
DROP TABLE IF EXISTS `auth_permission`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `auth_permission` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(50) NOT NULL,
`content_type_id` int(11) NOT NULL,
`codename` varchar(100) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `content_type_id` (`content_type_id`,`codename`),
KEY `auth_permission_37ef4eb4` (`content_type_id`),
CONSTRAINT `content_type_id_refs_id_d043b34a` FOREIGN KEY (`content_type_id`) REFERENCES `django_content_type` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=19 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `auth_user`
--
DROP TABLE IF EXISTS `auth_user`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `auth_user` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`password` varchar(128) NOT NULL,
`last_login` datetime NOT NULL,
`is_superuser` tinyint(1) NOT NULL,
`username` varchar(30) NOT NULL,
`first_name` varchar(30) NOT NULL,
`last_name` varchar(30) NOT NULL,
`email` varchar(75) NOT NULL,
`is_staff` tinyint(1) NOT NULL,
`is_active` tinyint(1) NOT NULL,
`date_joined` datetime NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `username` (`username`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `auth_user_groups`
--
DROP TABLE IF EXISTS `auth_user_groups`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `auth_user_groups` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`user_id` int(11) NOT NULL,
`group_id` int(11) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `user_id` (`user_id`,`group_id`),
KEY `auth_user_groups_6340c63c` (`user_id`),
KEY `auth_user_groups_5f412f9a` (`group_id`),
CONSTRAINT `group_id_refs_id_274b862c` FOREIGN KEY (`group_id`) REFERENCES `auth_group` (`id`),
CONSTRAINT `user_id_refs_id_40c41112` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `auth_user_user_permissions`
--
DROP TABLE IF EXISTS `auth_user_user_permissions`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `auth_user_user_permissions` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`user_id` int(11) NOT NULL,
`permission_id` int(11) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `user_id` (`user_id`,`permission_id`),
KEY `auth_user_user_permissions_6340c63c` (`user_id`),
KEY `auth_user_user_permissions_83d7f98b` (`permission_id`),
CONSTRAINT `permission_id_refs_id_35d9ac25` FOREIGN KEY (`permission_id`) REFERENCES `auth_permission` (`id`),
CONSTRAINT `user_id_refs_id_4dc23c39` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `collectiongames`
--
DROP TABLE IF EXISTS `collectiongames`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `collectiongames` (
`groupindex` int(11) NOT NULL,
`bggid` int(11) NOT NULL,
`ckey` int(11) NOT NULL,
`orderindex` int(11) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `collectiongroups`
--
DROP TABLE IF EXISTS `collectiongroups`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `collectiongroups` (
`groupindex` int(11) NOT NULL,
`groupname` varchar(128) CHARACTER SET utf8 DEFAULT NULL,
`groupdesc` varchar(512) CHARACTER SET utf8 DEFAULT NULL,
`display` tinyint(4) NOT NULL,
`ckey` int(11) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `collections`
--
DROP TABLE IF EXISTS `collections`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `collections` (
`geek` varchar(128) NOT NULL,
`collectionname` varchar(256) DEFAULT NULL,
`description` varchar(512) DEFAULT NULL,
`collectionindex` int(11) NOT NULL,
`ckey` int(11) NOT NULL,
PRIMARY KEY (`ckey`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `designers`
--
DROP TABLE IF EXISTS `designers`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `designers` (
`name` varchar(254) NOT NULL DEFAULT '',
`bggid` int(11) NOT NULL,
`boring` tinyint(1) DEFAULT '0',
`url` varchar(254) DEFAULT NULL,
PRIMARY KEY (`bggid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `django_content_type`
--
DROP TABLE IF EXISTS `django_content_type`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `django_content_type` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(100) NOT NULL,
`app_label` varchar(100) NOT NULL,
`model` varchar(100) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `app_label` (`app_label`,`model`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `django_session`
--
DROP TABLE IF EXISTS `django_session`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `django_session` (
`session_key` varchar(40) NOT NULL,
`session_data` longtext NOT NULL,
`expire_date` datetime NOT NULL,
PRIMARY KEY (`session_key`),
KEY `django_session_b7b81f0c` (`expire_date`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `django_site`
--
DROP TABLE IF EXISTS `django_site`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `django_site` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`domain` varchar(100) NOT NULL,
`name` varchar(50) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `downloader`
--
DROP TABLE IF EXISTS `downloader`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `downloader` (
`starttime` datetime NOT NULL,
`endtime` datetime NOT NULL,
`filesprocessed` int(11) NOT NULL,
`waittime` float NOT NULL,
`pausetime` float NOT NULL,
`failures` int(11) NOT NULL,
`users` int(11) NOT NULL,
`games` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `expansions`
--
DROP TABLE IF EXISTS `expansions`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `expansions` (
`basegame` int(10) unsigned NOT NULL,
`expansion` int(10) unsigned NOT NULL,
KEY `expansions_basegame` (`basegame`),
KEY `expansions_expansion` (`expansion`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `files`
--
DROP TABLE IF EXISTS `files`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `files` (
`filename` varchar(128) NOT NULL,
`url` varchar(256) NOT NULL,
`lastUpdate` datetime DEFAULT NULL,
`processMethod` varchar(128) NOT NULL,
`nextUpdate` datetime DEFAULT NULL,
`geek` varchar(128) DEFAULT NULL,
`tillNextUpdate` varchar(128) DEFAULT NULL,
`description` varchar(256) DEFAULT NULL,
`lastattempt` datetime DEFAULT NULL,
UNIQUE KEY `files_url_unique` (`url`),
KEY `files_geek` (`geek`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `frontpagegeek`
--
DROP TABLE IF EXISTS `frontpagegeek`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `frontpagegeek` (
`geek` varchar(128) NOT NULL DEFAULT '',
`totalPlays` int(10) NOT NULL DEFAULT '0',
`distinctGames` int(10) NOT NULL DEFAULT '0',
`top50` int(10) NOT NULL DEFAULT '0',
`sdj` int(10) NOT NULL DEFAULT '0',
`the100` int(10) NOT NULL DEFAULT '0',
`owned` int(10) NOT NULL DEFAULT '0',
`want` int(10) NOT NULL DEFAULT '0',
`wish` int(10) NOT NULL DEFAULT '0',
`trade` int(10) NOT NULL DEFAULT '0',
`prevOwned` int(10) NOT NULL DEFAULT '0',
`friendless` int(10) NOT NULL DEFAULT '0',
`cfm` float DEFAULT '0',
`utilisation` float DEFAULT '0',
`tens` int(10) NOT NULL DEFAULT '0',
`zeros` int(10) NOT NULL DEFAULT '0',
`ext100` int(10) NOT NULL DEFAULT '0',
`mv` int(10) NOT NULL DEFAULT '0',
`hindex` int(10) NOT NULL DEFAULT '0'
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `gameCategories`
--
DROP TABLE IF EXISTS `gameCategories`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `gameCategories` (
`gameId` int(10) unsigned NOT NULL,
`category` varchar(256) NOT NULL,
KEY `category_game` (`gameId`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `gameDesigners`
--
DROP TABLE IF EXISTS `gameDesigners`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `gameDesigners` (
`gameId` int(10) unsigned NOT NULL,
`designerId` int(11) NOT NULL,
KEY `gameDesigners_game` (`gameId`),
KEY `gameDesigners_designer` (`designerId`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `gameMechanics`
--
DROP TABLE IF EXISTS `gameMechanics`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `gameMechanics` (
`gameId` int(10) unsigned NOT NULL,
`mechanic` varchar(256) NOT NULL,
KEY `mechanic_game` (`gameId`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `gamePublishers`
--
DROP TABLE IF EXISTS `gamePublishers`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `gamePublishers` (
`gameId` int(10) unsigned NOT NULL,
`publisherId` int(11) NOT NULL,
KEY `gamePublishers_game` (`gameId`),
KEY `gamePublishers_publisher` (`publisherId`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `games`
--
DROP TABLE IF EXISTS `games`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `games` (
`bggid` int(10) unsigned NOT NULL,
`name` varchar(256) NOT NULL DEFAULT '',
`average` float DEFAULT '0',
`rank` int(11) DEFAULT '-1',
`yearPublished` int(11) DEFAULT '0',
`minPlayers` int(10) unsigned DEFAULT '0',
`maxPlayers` int(10) unsigned DEFAULT '0',
`playTime` int(10) unsigned DEFAULT '0',
`usersRated` int(10) unsigned DEFAULT '0',
`usersTrading` int(10) unsigned DEFAULT '0',
`usersWanting` int(10) unsigned DEFAULT '0',
`usersWishing` int(10) unsigned DEFAULT '0',
`averageWeight` float DEFAULT '0',
`bayesAverage` float DEFAULT '0',
`stdDev` float DEFAULT '0',
`median` float DEFAULT '0',
`numComments` int(10) unsigned DEFAULT '0',
`expansion` int(10) unsigned NOT NULL DEFAULT '0',
`thumbnail` varchar(256) DEFAULT '',
`usersOwned` int(10) unsigned DEFAULT '0',
`subdomain` varchar(45) DEFAULT NULL,
PRIMARY KEY (`bggid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `geekgames`
--
DROP TABLE IF EXISTS `geekgames`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `geekgames` (
`geek` varchar(128) NOT NULL DEFAULT '',
`game` int(10) unsigned NOT NULL DEFAULT '0',
`rating` float NOT NULL DEFAULT '0',
`owned` tinyint(1) DEFAULT '0',
`want` tinyint(1) DEFAULT '0',
`wish` int(10) unsigned DEFAULT '0',
`trade` tinyint(1) DEFAULT '0',
`comment` varchar(1024) DEFAULT NULL,
`plays` int(10) unsigned DEFAULT NULL,
`prevowned` tinyint(1) DEFAULT '0',
`wanttobuy` tinyint(1) NOT NULL DEFAULT '0',
`wanttoplay` tinyint(1) NOT NULL DEFAULT '0',
`preordered` tinyint(1) NOT NULL DEFAULT '0',
KEY `geekgame_game` (`game`),
KEY `geekgame_geek` (`geek`),
KEY `geek` (`geek`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `geekgametags`
--
DROP TABLE IF EXISTS `geekgametags`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `geekgametags` (
`geek` varchar(128) NOT NULL,
`game` int(10) unsigned NOT NULL,
`tag` varchar(128) NOT NULL,
KEY `geekgametags_game` (`game`),
KEY `geekgametags_geek` (`geek`),
KEY `geek` (`geek`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `geeks`
--
DROP TABLE IF EXISTS `geeks`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `geeks` (
`username` varchar(128) NOT NULL DEFAULT '',
`shouldplay` int(10) unsigned NOT NULL DEFAULT '0',
`avatar` varchar(256) DEFAULT '',
PRIMARY KEY (`username`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `history`
--
DROP TABLE IF EXISTS `history`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `history` (
`geek` varchar(128) NOT NULL,
`ts` datetime NOT NULL,
`friendless` int(11) DEFAULT '-1000',
`wanted` int(10) unsigned DEFAULT '0',
`wished` int(10) unsigned DEFAULT '0',
`owned` int(10) unsigned DEFAULT '0',
`unplayed` int(10) unsigned DEFAULT '0',
`distinctPlayed` int(10) unsigned DEFAULT '0',
`traded` int(10) unsigned DEFAULT '0',
`nickelPercent` float NOT NULL DEFAULT '0',
`yourAverage` float NOT NULL DEFAULT '0',
`percentPlayedEver` float NOT NULL DEFAULT '0',
`percentPlayedThisYear` float NOT NULL DEFAULT '0',
`averagePogo` float NOT NULL DEFAULT '0',
`bggAverage` float NOT NULL DEFAULT '0',
`curmudgeon` float NOT NULL DEFAULT '0',
`meanYear` float NOT NULL DEFAULT '0',
`the100` int(10) unsigned DEFAULT '0',
`sdj` int(10) unsigned DEFAULT '0',
`top50` int(10) unsigned DEFAULT '0',
`totalPlays` int(10) unsigned DEFAULT '0',
`medYear` int(10) unsigned DEFAULT '0',
KEY `history_geek` (`geek`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `market`
--
DROP TABLE IF EXISTS `market`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `market` (
`geek` varchar(128) NOT NULL,
`gameid` int(10) unsigned NOT NULL,
`itemid` int(10) unsigned NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `metadata`
--
DROP TABLE IF EXISTS `metadata`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `metadata` (
`ruletype` int(11) DEFAULT NULL,
`bggid` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `monthsplayed`
--
DROP TABLE IF EXISTS `monthsplayed`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `monthsplayed` (
`geek` varchar(128) NOT NULL,
`month` int(10) unsigned NOT NULL,
`year` int(10) unsigned NOT NULL,
KEY `monthsplayed_geek` (`geek`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `numplayers`
--
DROP TABLE IF EXISTS `numplayers`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `numplayers` (
`game` int(10) unsigned NOT NULL DEFAULT '0',
`best1` int(10) unsigned NOT NULL DEFAULT '0',
`recommended1` int(10) unsigned NOT NULL DEFAULT '0',
`notrec1` int(10) unsigned NOT NULL DEFAULT '0',
`best2` int(10) unsigned NOT NULL DEFAULT '0',
`recommended2` int(10) unsigned NOT NULL DEFAULT '0',
`notrec2` int(10) unsigned NOT NULL DEFAULT '0',
`best3` int(10) unsigned NOT NULL DEFAULT '0',
`recommended3` int(10) unsigned NOT NULL DEFAULT '0',
`notrec3` int(10) unsigned NOT NULL DEFAULT '0',
`best4` int(10) unsigned NOT NULL DEFAULT '0',
`recommended4` int(10) unsigned NOT NULL DEFAULT '0',
`notrec4` int(10) unsigned NOT NULL DEFAULT '0',
`best5` int(10) unsigned NOT NULL DEFAULT '0',
`recommended5` int(10) unsigned NOT NULL DEFAULT '0',
`notrec5` int(10) unsigned NOT NULL DEFAULT '0',
`best6` int(10) unsigned NOT NULL DEFAULT '0',
`best7` int(10) unsigned NOT NULL DEFAULT '0',
`recommended6` int(10) unsigned NOT NULL DEFAULT '0',
`recommended7` int(10) unsigned NOT NULL DEFAULT '0',
`notrec6` int(10) unsigned NOT NULL DEFAULT '0',
`notrec7` int(10) unsigned NOT NULL DEFAULT '0',
KEY `numplayers_game` (`game`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `opponents`
--
DROP TABLE IF EXISTS `opponents`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `opponents` (
`name` varchar(45) DEFAULT NULL,
`username` varchar(128) DEFAULT NULL,
`colour` varchar(45) DEFAULT NULL,
`geek` varchar(128) NOT NULL,
`month` int(11) NOT NULL,
`year` int(11) NOT NULL,
`count` int(11) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `plays`
--
DROP TABLE IF EXISTS `plays`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `plays` (
`game` int(10) unsigned NOT NULL DEFAULT '0',
`geek` varchar(128) NOT NULL DEFAULT '',
`playDate` date NOT NULL,
`quantity` int(10) unsigned NOT NULL DEFAULT '1',
`basegame` int(10) DEFAULT '0',
`raters` int(11) DEFAULT '0',
`ratingsTotal` int(11) DEFAULT '0',
`location` varchar(256) DEFAULT NULL,
KEY `plays_index` (`geek`,`playDate`),
KEY `plays_games` (`geek`,`game`),
KEY `plays_game` (`game`),
KEY `plays_geek` (`geek`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `publishers`
--
DROP TABLE IF EXISTS `publishers`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `publishers` (
`name` varchar(254) NOT NULL DEFAULT '',
`bggid` int(11) NOT NULL,
`url` varchar(254) DEFAULT NULL,
PRIMARY KEY (`bggid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `series`
--
DROP TABLE IF EXISTS `series`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `series` (
`name` varchar(128) NOT NULL,
`game` int(10) unsigned NOT NULL,
KEY `series_game` (`game`),
KEY `series_name` (`name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `users`
--
DROP TABLE IF EXISTS `users`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `users` (
`geek` varchar(128) NOT NULL,
`lastProfileView` timestamp NULL DEFAULT NULL,
`profileViews` int(11) NOT NULL DEFAULT '0',
`bggid` int(11) DEFAULT '0',
`country` varchar(64) DEFAULT NULL,
PRIMARY KEY (`geek`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
/*!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 2015-06-13 18:37:33
|
set serveroutput on;
execute insertarplatos('P-06-02-037-C7TF','DEFECTUOSO','06/04/2010','Marca en num 36');
execute insertarplatos('P-06-02-029-C7TF','OPERATIVO','','');
execute insertarplatos('P-06-02-031-C7TF','DEFECTUOSO','19/11/2013','Marca en num 35');
execute insertarplatos('P-06-02-038-C7TF','DEFECTUOSO','21/06/2014','Marca en num 9');
execute insertarplatos('P-06-02-028-C7TF','OPERATIVO','','');
execute insertarplatos('P-06-02-036-C7TF','DEFECTUOSO','15/04/2012','Marca en num 31');
execute insertarplatos('P-06-02-035-C7TF','OPERATIVO','','');
execute insertarplatos('P-06-02-039-C7TF','OPERATIVO','','');
execute insertarplatos('P-06-02-034-C7TF','OPERATIVO','','');
execute insertarplatos('P-06-02-033-C7TF','OPERATIVO','','');
execute insertarplatos('P-06-02-030-C7TF','OPERATIVO','','');
execute insertarplatos('P-06-02-032-C7TF','OPERATIVO','','');
execute insertarcilindros('C-06-02-037-C7TF','OPERATIVO','','');
execute insertarcilindros('C-06-02-029-C7TF','OPERATIVO','','');
execute insertarcilindros('C-06-02-031-C7TF','DEFECTUOSO','23/06/2013','No trasmite datos');
execute insertarcilindros('C-06-02-038-C7TF','OPERATIVO','','');
execute insertarcilindros('C-06-02-028-C7TF','DEFECTUOSO','15/12/2014','No trasmite datos');
execute insertarcilindros('C-06-02-036-C7TF','OPERATIVO','','');
execute insertarcilindros('C-06-02-035-C7TF','OPERATIVO','','');
execute insertarcilindros('C-06-02-039-C7TF','OPERATIVO','','');
execute insertarcilindros('C-06-02-034-C7TF','OPERATIVO','','');
execute insertarcilindros('C-06-02-033-C7TF','OPERATIVO','','');
execute insertarcilindros('C-06-02-030-C7TF','DEFECTUOSO','02/03/2015','No trasmite datos');
execute insertarcilindros('C-06-02-032-C7TF','OPERATIVO','','');
execute insertarmesas('RA01');
execute insertarmesas('RA02');
execute insertarmesas('RA03');
execute insertarempleados('258','REY GARCIA, RAUL');
execute insertarempleados('150','SAAVEDRA REBOREDO, JORGE');
execute insertarempleados('432','LOBOS OLATE, XIMENA GIOVANNA');
execute insertarempleados('75','CASTAÑEDA BELLIDO, LIDIA');
execute insertarempleados('80','ACUÑA BECERRA, RICARDO');
execute insertarempleados('85','MARTINEZ DIEZ, JOSE LUIS');
execute insertarempleados('91','GARCIA SAENZ, ALEJANDRO');
execute insertarempleados('104','GARCIA SAENZ, NICOLAS');
execute insertarempleados('152','BLANCO ANTUNEZ, RAFAEL');
execute insertarempleados('246','FUENTES PERDIGUERO, CARLOS');
execute insertarempleados('288','MANOTAS PLAZA, SERGIO');
execute insertarempleados('73','SANCHEZ LOBATO, ALEJANDRA');
execute insertarempleados('83','MAESTRE VAZQUEZ, Mª JOSE');
execute insertarempleados('87','TRIGO GOMEZ, MIGUEL');
execute insertarempleados('95','NOVELLA REGAJO, JOSE MARIA');
execute insertarempleados('371','FERNANDEZ MARIN, MARIA JESUS');
execute insertarempleados('536','STEGENA, IVAN');
execute insertarempleados('543','ROMERO GAMERO, JESUS');
execute insertarempleados('552','FERNANDEZ LARA, LAURA');
execute insertarempleados('257','RECIO JIMENEZ, REBECA');
execute insertarempleados('74','SOTO BOTELLA, CARMEN MARIA');
execute insertarempleados('76','RUIZ POPOLIZIO, SHELAH');
execute insertarempleados('79','MORON DIAZ, ALFONSO MANUEL');
execute insertarempleados('92','GUERRERO PALMERO, JOSE MANUEL');
execute insertarempleados('692','GONZALEZ SUAREZ, ROCIO');
execute insertarempleados('159','BENITO SANCHEZ, ALFONSO JAVIER');
execute insertarempleados('51','ASPERA GOMEZ, JOSE MANUEL');
execute insertarempleados('127','MARTIN FERNANDEZ, JOSE ANTONIO');
execute insertarempleados('237','GIMENO MACHETTI, MARIA');
execute insertarempleados('133','ZAHN PALMA, CARLOS ALBERTO');
execute insertarempleados('134','RUBIO GUTIERREZ, SERGIO');
execute insertarempleados('137','CARRILLO ASENSIO, RAQUEL');
execute insertarempleados('139','ESPINOS DEL POZO, SERGIO');
execute insertarempleados('235','GALLEGO VARELA, VERONICA');
execute insertarempleados('236','GARCIA MARMOL, DAVID');
execute insertarempleados('240','RAMIREZ MONTES, NOELIA');
execute insertarempleados('292','GARCIA BRAÑA, MANUELA');
execute insertarempleados('141','WILSON FLORES, DAVID');
execute insertarempleados('142','ESPINOSA ZUMAQUERO, EVA');
execute insertarempleados('148','MOLINA RUIZ, FRANCISCO JAVIER');
execute insertarempleados('242','BLANCO FUERTES, HECTOR');
execute insertarempleados('255','PARIS FERNANDEZ, ALEJANDRO');
execute insertarempleados('0','JEFE MESA NO ASIGNADO');
execute insertarempleados('1','CRUPIER NO ASIGNADO');
execute insertarjugadores('4','CARBALLO RIVERO, JUAN LUIS');
execute insertarjugadores('38','DE LA INFIESTA DE ASPE, FILOMENO');
execute insertarjugadores('146','DIAZ BRAVO, ANTONIO');
execute insertarjugadores('165','GRACIA DIAZ, MILAGROS');
execute insertarjugadores('167','IZQUIERDO NUÑEZ, CARLOS');
execute insertarjugadores('174','GARCIA JAPON, MANUEL');
execute insertarjugadores('183','RODRIGUEZ DORADO, FEDERICO DAVID');
execute insertarjugadores('207','DOMINGUEZ FOMBELLA, CELEDONIO');
execute insertarjugadores('353','ESQUINAS BARBARA, MIGUEL');
execute insertarjugadores('357','GAONA MOLINA, BALDOMERO');
execute insertarjugadores('425','CORDERO MORENO, JOSE LUIS');
execute insertarjugadores('429','LUQUIÑO SILVA, JOSE ANTONIO');
execute insertarjugadores('447','HERNANDEZ PINZON GARCIA GERALDO, JOSE ALFONSO');
execute insertarjugadores('462','ARTEAGA CALERO, MARIA CONCEPCION');
execute insertarjugadores('572','ARENAS AGUILERA, RAFAEL');
execute insertarjugadores('599','MARTIN MUÑIZ, OBDULIA');
execute insertarjugadores('684','PORCUNA CHAVARRIA, EDUARDO');
execute insertarjugadores('694','MALDONADO CATALAN, CARLOS LUIS');
execute insertarjugadores('704','BONILLA SALVAT, DAVID');
execute insertarjugadores('705','PALMA TOCINO, SEBASTIAN');
execute insertarjugadores('760','CASTAÑO MORERA, FRANCISCO');
execute insertarjugadores('768','TRIGO ROMAN, JOSE FRANCISCO');
execute insertarjugadores('846','DONG, LIFANG');
execute insertarjugadores('867','HU, HAIBIN');
execute insertarjugadores('868','ZHU, CHAO YONG');
execute insertarjugadores('882','ZHU, QUNLIANG');
execute insertarjugadores('911','ESCOBAR ORTIZ, JORGE');
execute insertarjugadores('918','LOPEZ GALAN, EMILIO');
execute insertarjugadores('925','VAZQUEZ MORENO, FRANCISCO JAVIER');
execute insertarjugadores('938','ESPINAR CABAS, MIGUEL ANGEL');
execute insertarjugadores('939','MAYA MAYA, GONZALO');
execute insertarjugadores('953','HEREDIA HEREDIA, PEDRO');
execute insertarjugadores('963','ROMERO GIL, PEDRO');
execute insertarjugadores('968','MARTIN AGUILAR, ANTONIO');
execute insertarjugadores('970','RODRIGUEZ MOHAMED, DAVID');
execute insertarjugadores('1027','VEIGA, MONICA CRISTINA ANTUNES');
execute insertarjugadores('1130','CUEVAS DELGADO, JOSE');
execute insertarjugadores('1163','GONZALEZ MUÑOZ, FRANCISCO');
execute insertarjugadores('1181','GARCIA PEREZ, JOSE MANUEL');
execute insertarjugadores('1182','FERNANDEZ DOMINGUEZ, MANUEL');
execute insertarjugadores('1183','GUTIERREZ NAVARRO, MANUEL JESUS DE LA PASION');
execute insertarjugadores('1213','SOSPEDRA BORREDA, CARLOS');
execute insertarjugadores('1216','JIMENEZ BORJA, MANUEL');
execute insertarjugadores('1287','WANG, YUE');
execute insertarjugadores('1319','IBRAHIM MOUSSA, KHALIL');
execute insertarjugadores('1579','PEREZ LORENZO, JOSE LUIS');
execute insertarjugadores('1674','TORRES FOQRI, JOSE CARLOS');
execute insertarjugadores('1722','VASSIA, FABIAN');
execute insertarjugadores('1792','GARRIDO REPETO, LEONARDO');
execute insertarjugadores('2048','GONZALEZ VEGA, ANTONIO');
execute insertarjugadores('2364','JIMENEZ BEJINES, SANDRO MANUEL');
execute insertarjugadores('2406','PABON BELLVER, MARIA DOLORES');
execute insertarjugadores('2445','LISARDO JIMENEZ, GONZALO ANTONIO');
execute insertarjugadores('2589','CARRETON SERRANO, ROBERTO');
execute insertarjugadores('2701','VILLAFUERTE DE ANCA, MANUEL');
execute insertarjugadores('2734','GALINDO MARTINEZ, CARMELO');
execute insertarjugadores('2906','RUBIO GONZALEZ, ISRAEL');
execute insertarjugadores('2967','VIZARRAGA LOZANO, DAVID');
execute insertarjugadores('3036','CRESPO CAMPON, ANTONIO');
execute insertarjugadores('3093','RAMOS SOLIS, JOSE LUIS');
execute insertarjugadores('3142','CHEN, LINMIN');
execute insertarjugadores('3292','PALMERO BECERRA, JOSE MIGUEL');
execute insertarjugadores('3372','PELIZZA, LEANDRO OSVALDO');
execute insertarjugadores('4542','MARTINEZ BARRAGAN, JUAN MIGUEL');
execute insertarjugadores('4709','FERRERA LOZANO, FRANCISCO JAVIER');
execute insertarjugadores('4743','PEREZ ALFARO, EMILIO');
execute insertarjugadores('4875','VILLAGRAN NUÑEZ, JUAN BOSCO');
execute insertarjugadores('4965','CHEN, LI GUANG');
execute insertarjugadores('5329','ROJAS LOPEZ, ANTONIO');
execute insertarjugadores('5351','CASTAÑO ROMANO, JOSE MANUEL');
execute insertarjugadores('5355','MONTES MORAL, ANTONIO');
execute insertarjugadores('5461','MESEGUER DIAZ, JERONIMO');
execute insertarjugadores('5678','FERNANDEZ CUELLO, JOSE LUIS');
execute insertarjugadores('5943','ENTRENA GARCIA, ANTONIO');
execute insertarjugadores('6343','RUBIO MARTINEZ, IGNACIO');
execute insertarjugadores('6459','HAYLER LOPEZ, JOSE ULF');
execute insertarjugadores('6499','ESCUDERO DELGADO, MARCIAL');
execute insertarjugadores('6595','RODRIGUEZ FERNANDEZ BERMEJO, PAULO CESAR');
execute insertarjugadores('6649','JIN, GUANCHENG');
execute insertarjugadores('6706','PELAEZ NOGUEROL, EDUARDO');
execute insertarjugadores('6741','SORIA PALACIOS, FRANCISCO');
execute insertarjugadores('6794','SANCHEZ RAMOS, ANTONIO VICTOR');
execute insertarjugadores('6920','QUESADA DE LA FLOR, FERNANDO');
execute insertarjugadores('6981','HERNANDEZ MENDEZ, ANTONIO');
execute insertarjugadores('7270','CONTRERAS RODRIGUEZ, JOSE');
execute insertarjugadores('7609','CARRANZA VILALLONGA, MERCEDES');
execute insertarjugadores('7626','ROMERO GALINDO, FRANCISCO JOSE');
execute insertarjugadores('8018','TEJERA AYALA, JOSE JOAQUIN');
execute insertarjugadores('8139','YE, TINGJIAN');
execute insertarjugadores('8286','CADORIO FERREIRA LINO, JOSE FRANCISCO');
execute insertarjugadores('8327','REYES RIVARES, ALBERTO');
execute insertarjugadores('9997','RODRIGUEZ PASTOR, FRANCISCO JAVIER');
execute insertarjugadores('10191','RIVAS MARTINEZ, MANUEL');
execute insertarjugadores('10261','ASIAN LAMA, JOSE ANTONIO');
execute insertarjugadores('10976','SALAS SANCHEZ, JOSE ANTONIO');
execute insertarjugadores('11136','ARANGUEZ CORTES, TOMAS');
execute insertarjugadores('11976','HAYA ZURITA, ALVARO');
execute insertarjugadores('12056','ORTIZ JIMENEZ, FRANCISCO');
execute insertarjugadores('12091','PORTILLO VILCHES, JORGE');
execute insertarjugadores('12180','SANCHEZ MARTIN, MIGUEL ANGEL');
execute insertarjugadores('12252','GONZALEZ DE LA FUENTE, FRANCISCO JAVIER');
execute insertarjugadores('13104','GARCIA ZAPATA, FRANCISCO');
execute insertarjugadores('13348','OJEDA SANTOS, ANTONIO');
execute insertarjugadores('13766','DURAN PARIAS, JOSE MANUEL');
execute insertarjugadores('14162','YAO, LONGZHEN');
execute insertarjugadores('14163','LI, YONGCHUAN');
execute insertarjugadores('14172','CALERO CORREA, JUAN LUIS');
execute insertarjugadores('15085','DIAZ REYES, MANUEL');
execute insertarjugadores('15192','CANTALAPIEDRA PEREYRA, JOSE MANUEL');
execute insertarjugadores('15469','MENDOZA BARROSO, RAFAEL');
execute insertarjugadores('15584','ANDREU COVARRUBIAS, FRANCISCO JAVIER');
execute insertarjugadores('16504','ESTEVEZ VEGA, ROBERTO');
execute insertarjugadores('16795','LLACER SANTOS, AGUSTIN');
execute insertarjugadores('17271','MONTES ESPINOSA, FERNANDO FRANCISCO');
execute insertarjugadores('17748','MIRANDA MOYANO, ANTONIO');
execute insertarjugadores('17882','GARCIA MARTINEZ, ANGEL');
execute insertarjugadores('17969','GOMEZ COSTAS, ISABELO');
execute insertarjugadores('19112','MORALES PEREZ, CARLOS');
execute insertarjugadores('19242','GARCIA FERNANDEZ, JOSE');
execute insertarjugadores('19423','MIAO, ZEEN');
execute insertarjugadores('19499','MARCA JULIA, MARIA ANTONIA');
execute insertarjugadores('19843','BONILLA PRADAS, ABEL');
execute insertarjugadores('20006','BRAVO TARDAGUILA, RAMON');
execute insertarjugadores('20064','CORTES VARGAS, VICENTE');
execute insertarjugadores('20066','SANCHEZ MARZO, MIGUEL');
execute insertarjugadores('21411','ALES NUÑEZ, LEOPOLDO');
execute insertarjugadores('21468','DIEGO GARCIA, ALVARO');
execute insertarjugadores('21469','GARCIA CASTILLO, FRANCISCO JAVIER');
execute insertarjugadores('21506','BELMONTE CORRAL, CRISTOBAL');
execute insertarjugadores('21552','GARRIDO GARCIA, JUAN ANTONIO');
execute insertarjugadores('21553','MERCHANTE GONZALEZ, FRANCISCO MANUEL');
execute insertarjugadores('21766','MORALES CAPITA, CRISTOBAL ANDRES');
execute insertarjugadores('21774','JIMENEZ VERGARA, DANIEL ANGEL');
execute insertarjugadores('21843','JIN, BIAO');
execute insertarjugadores('21967','PEREZ CACHO, LUIS ALBERTO');
execute insertarjugadores('22578','NIETO MARTIN, JOSE MARIA');
execute insertarjugadores('22622','ENRI GARCIA, BLANCA');
execute insertarjugadores('22684','GARCIA, JUAN MANUEL');
execute insertarjugadores('23124','HERRERA LOPEZ, MANUEL');
execute insertarjugadores('23633','RANEDO ADAME, MANUEL JESUS');
execute insertarjugadores('23995','MARTIN SANCHEZ, OSCAR');
execute insertarjugadores('24139','RUIZ RUIZ, JOSE ANGEL');
execute insertarjugadores('24649','YANG, ZIJUN');
execute insertarjugadores('24859','LI, XIGUAN');
execute insertarjugadores('24876','CHACON MARIN, DIEGO JOSE');
execute insertarjugadores('25475','SERRANO CHICA, FRANCISCO DAVID');
execute insertarjugadores('25493','ALONSO BERNAL, PEDRO JOSE');
execute insertarjugadores('25997','GARCIA PEREZ, MANUEL');
execute insertarjugadores('26058','MUÑOZ GALLARDO, JOSE ANTONIO');
execute insertarjugadores('26228','GONZALEZ VAZ, MANUEL');
execute insertarjugadores('26700','ESLAVA LOPEZ, MARION KARINA');
execute insertarjugadores('27695','LI, HANG');
execute insertarjugadores('27939','TIRADO MARIN, FRANCISCO MANUEL');
execute insertarjugadores('28170','PEREZ SAENZ, JOSE LUIS');
execute insertarjugadores('28908','LIN, GUOZENG');
execute insertarjugadores('31169','SALAMANCA MACIAS, MANUEL');
execute insertarjugadores('31194','SANCHEZ ARJONA VALLS, LUIS');
execute insertarjugadores('32676','BLANCO LOBATON, ALFONSO');
execute insertarjugadores('33015','MORA DURAN, FERNANDO');
execute insertarjugadores('33494','RUBIO VALGAÑON, FELIX');
execute insertarjugadores('35295','MATEOS DE PORRAS LARA, CARLOS JAVIER');
execute insertarjugadores('36516','LEBRON GUTIERREZ, DAVID');
execute insertarjugadores('36981','ROYO GUITARD, DAVID ANGEL');
execute insertarjugadores('40975','BORREGO GONZALEZ, MARIA JOSE');
execute insertarjugadores('40995','CEJUDO RODRIGUEZ, FRANCISCO JOSE');
execute insertarjugadores('41931','GARCIA SANCHEZ, JOSE ANGEL');
execute insertarjugadores('42348','PLATERO DIEZ, ANTONIO');
execute insertarjugadores('43024','MUÑOZ MEDINA, RAFAEL');
execute insertarjugadores('43554','PIGOZZO, LUIGI CESARE');
execute insertarjugadores('43848','PINEDA SANCHEZ, FRANCISCO ASIS');
execute insertarjugadores('44425','HE, AIE');
execute insertarjugadores('45855','ESCANDELL BELLVER, BERNARDO');
execute insertarjugadores('45859','LI, GUANGMI');
execute insertarjugadores('47518','CORSI, MARCO EGIDIO');
execute insertarjugadores('48473','VILLEGAS GIRALDEZ, EDUARDO');
execute insertarjugadores('49054','BALLESTEROS RAMIREZ, JUAN CARLOS');
execute insertarjugadores('49669','CARRION JIMENEZ, JUAN LUIS');
execute insertarjugadores('50825','BORREGO GONZALEZ, JOSE DAVID');
execute insertarjugadores('52367','SANCHEZ PEÑALVER, GONZALO');
execute insertarjugadores('53711','CUENCA COT, EDUARDO');
execute insertarjugadores('53724','GUAN, WENHUI');
execute insertarjugadores('53828','REYES CALDERON, JOSE ANTONIO');
execute insertarjugadores('54498','FUENTES LOPEZ, FRANCISCO');
execute insertarjugadores('55901','NARROS LLUCH, MIGUEL OCTAVIO');
execute insertarjugadores('55914','ALVAREZ DE SOTOMAYOR REINA, AGUSTIN');
execute insertarjugadores('56558','RUIZ CARO, JOSE MANUEL');
execute insertarjugadores('56787','PAN, JUN');
execute insertarjugadores('57155','LOPEZ RUIZ, JOSE ANTONIO');
execute insertarjugadores('57332','GARCIA LORENTE, ISIDRO');
execute insertarjugadores('57971','RANGEL VELEZ, ESTEBAN');
execute insertarjugadores('59406','GARCIA BABON, FERNANDO');
execute insertarjugadores('59528','ROMERO MORENO, IGNACIO MANUEL');
execute insertarjugadores('59936','CERPA DOMINGUEZ, MANUEL');
execute insertarjugadores('60337','ACEVEDO MORENO, JOSE');
execute insertarjugadores('61282','CARMONA MARQUEZ, MANUEL JESUS');
execute insertarjugadores('62331','WANG, HONG');
execute insertarjugadores('62393','FERNANDEZ, ANTONIO ALFREDO');
execute insertarjugadores('63940','ESTEVE MURT, ANTONIO');
execute insertarjugadores('63968','FENG, JIAN');
execute insertarjugadores('64666','MARTINEZ LUCAS, JOAQUIN');
execute insertarjugadores('64850','WU, CHUNLAI');
execute insertarjugadores('65789','CASAL PEREZ, BORJA');
execute insertarjugadores('66032','POLO GUERRERO, ANTONIO');
execute insertarjugadores('66054','NUÑEZ ORFILA, FRANCISCO JAVIER');
execute insertarjugadores('67251','STEFAN, ION');
execute insertarjugadores('67545','REYES CALDERON, MANUEL');
execute insertarjugadores('67944','ALONSO ESPINAR, ISIDRO JESUS');
execute insertarjugadores('68435','LOPEZ DOVAO, MANUEL');
execute insertarjugadores('69101','HONG, XIAOJUN');
execute insertarjugadores('69103','AHMAD GONZALEZ, JAVIER NEDAL');
execute insertarjugadores('70376','WU, HAI');
execute insertarjugadores('70533','PAN, YONGZHONG');
execute insertarjugadores('71263','PARRADO GARCIA, JORGE');
execute insertarjugadores('71304','XIN, HUIYUN');
execute insertarjugadores('72273','PALOMEQUE OTERO, JUAN MANUEL');
execute insertarjugadores('72594','MEI, SHAOFANG');
execute insertarjugadores('73107','WEI, LIBIN');
execute insertarjugadores('73143','JIN, CHENG');
execute insertarjugadores('74665','ESPINAR AGUILAR, PABLO');
execute insertarjugadores('74704','MOYA FAGUNDO, RAUL');
execute insertarjugadores('75024','ZHAN, WANGSHENG');
execute insertarjugadores('75326','ESCAÑO VAZQUEZ, JORGE');
execute insertarjugadores('76081','BLANCO GONZALEZ, JOSE MANUEL');
execute insertarjugadores('76237','LLAMBIAS LLORENS, FRANCISCO');
execute insertarjugadores('76865','ROMERO DIAZ, RAMON');
execute insertarjugadores('77220','PAREJO CIDONCHA, AGUSTIN');
execute insertarjugadores('78176','RETAMAR MARTIN, FELIX');
execute insertarjugadores('78899','GARCIA TRIGO, JONATAN');
execute insertarjugadores('78977','MAKHLOUFI, ABDELAZIZ');
execute insertarjugadores('79502','GARCIA PEREZ, DAVID');
execute insertarjugadores('79572','BRAVO FRANCO, MARIA ANGELES');
execute insertarjugadores('81124','ZHU, BOLING');
execute insertarjugadores('81129','HU, YUNHENG');
execute insertarjugadores('81178','WU, ZONGGUANG');
execute insertarjugadores('81387','ANDRADE SANCHEZ, MANUEL CARLOS');
execute insertarjugadores('81491','DELGADO NAVARRO, JOAQUIN');
execute insertarjugadores('81712','LIN, HUARONG');
execute insertarjugadores('81838','EXPOSITO GOMEZ, MANUEL');
execute insertarjugadores('83453','SUN, HEPING');
execute insertarjugadores('84402','CLEMENTE GOMEZ, JESUS');
execute insertarjugadores('84405','WANG, WANSHENG');
execute insertarjugadores('84691','CHABAN NAVARRO, NASER');
execute insertarjugadores('86172','LOPEZ VAZQUEZ, JOSE LUIS');
execute insertarjugadores('86205','SANZ CORDOVILLA, JORGE');
execute insertarjugadores('88209','GIRALDEZ MARQUEZ, JOSE ANTONIO');
execute insertarjugadores('90207','RODRIGUEZ CARRETERO SANCHEZ, GUILLERMO');
execute insertarjugadores('91211','LI, XIGUAN');
execute insertarjugadores('91919','LEYVA MARTINEZ, JOSE');
execute insertarjugadores('92194','NOGALES HERNANDEZ, MIGUEL ANGEL');
execute insertarjugadores('92735','REYES DOMINGUEZ, VALERIANO');
execute insertarjugadores('93172','GARCIA MENDEZ, CARLOS DAVID');
execute insertarjugadores('94544','CHEN, XUECHAI');
execute insertarjugadores('95457','LLAMAS VELADO, LUIS ANGEL');
execute insertarjugadores('95482','MOYA XIMENEZ, JUAN LUIS');
execute insertarjugadores('97334','YANG, LIFEN');
execute insertarjugadores('97357','MORALES MARIN, JUAN FRANCISCO');
execute insertarjugadores('97692','YANG, RONG');
execute insertarjugadores('99216','CEBOLLADA SEBASTIAN, JOSE MANUEL');
execute insertarjugadores('99221','AGUILAR REY, SANTIAGO');
execute insertarjugadores('100260','PEDROTE MORALES, JAVIER');
execute insertarjugadores('101580','ORTIZ MORENO, JOSE MANUEL');
execute insertarjugadores('102606','LESPIAUC SAYA, JUAN PABLO');
execute insertarjugadores('102985','GARAY SANCHEZ, MARIA TERESA');
execute insertarjugadores('103112','VON AUGUST RUDICH, ISDELL PRIMROSE');
execute insertarjugadores('103116','DAZA GARCIA, CESAR');
execute insertarjugadores('103328','RETAMAR SANCHEZ, FRANCISCO');
execute insertarjugadores('103394','CASTRO SAINERO, JOSE ENRIQUE');
execute insertarjugadores('105113','FU, ZHENJUN');
execute insertarjugadores('105416','CINTAS VILLEGAS, ALEJANDRO');
execute insertarjugadores('105821','RINCON LEON, JOSE');
execute insertarjugadores('106398','CASTRO MARTIN, RUBEN');
execute insertarjugadores('106633','GONZALEZ MENA, ALVARO');
execute insertarjugadores('106719','CHEN, XIAOJUAN');
execute insertarjugadores('107123','CORDOBA GUTIERREZ, MIGUEL');
execute insertarjugadores('107463','CABALLERO BARRERA, LUIS MANUEL');
execute insertarjugadores('107633','XU, WENYI');
execute insertarjugadores('107634','ZHANG, QIUHUA');
execute insertarjugadores('107981','ROMERO ALCONCHEL, LUIS ALBERTO');
execute insertarjugadores('108504','GOMEZ GAVILAN, ROSA MARIA');
execute insertarjugadores('108552','MARTINEZ RAMOS, JOSE JUAN');
execute insertarjugadores('108677','SHA BAN AL DAJANI, ABDUL KAREEM MAHMOUD');
execute insertarjugadores('108678','ALEGRIA HERRERA, JACKELINE ZULEYCA');
execute insertarjugadores('109612','CHEN, KANGPING');
execute insertarjugadores('110598','WU, YIXIAO');
execute insertarjugadores('111604','ZHOU, ZUKANG');
execute insertarjugadores('112399','STEFAN, FLORIN');
execute insertarjugadores('112577','RUEDA CHECA, LUIS');
execute insertarjugadores('112730','GARCIA RUIZ, RICARDO');
execute insertarjugadores('113751','ZHAO, ZIJUN');
execute insertarjugadores('113870','SARABIA HAYA, CARLOS');
execute insertarjugadores('114108','ALDABA MUTILVA, JOSE LUIS');
execute insertarjugadores('114780','DEL AGUILA PEREZ, FRANCISCO');
execute insertarjugadores('116226','MOLINERO CARRASCO, ISMAEL');
execute insertarjugadores('116870','INFANTE MENDOZA, JUAN DIEGO');
execute insertarjugadores('118354','ZHAN, XIAOPING');
execute insertarjugadores('118367','CABRERA PALACIOS, DANIEL');
execute insertarjugadores('118634','ZHENG, YI');
execute insertarjugadores('119645','GUTIERREZ MORENO, JAVIER');
execute insertarjugadores('120209','ANERA RUIZ, RAFAEL');
execute insertarjugadores('120264','GARCIA RODRIGUEZ, MANUEL');
execute insertarjugadores('120364','SANCHEZ ROMERO, JOSE LUIS');
execute insertarjugadores('120371','PEREZ RUEDA, MANUEL');
execute insertarjugadores('120929','SOSA CABELLO, ALBERTO');
execute insertarjugadores('121576','KIZILCELIK, YUSUF');
execute insertarjugadores('122299','LIU, XIANG');
execute insertarjugadores('122372','GARCIA JURADO, ALEJANDRO');
execute insertarjugadores('122429','CARNERERO DE PABLO BLANCO, JESUS');
execute insertarjugadores('122685','SANCHEZ LOPEZ, FRANCISCO');
execute insertarjugadores('122689','CLAVIJO SALVATIERRA, FRANCISCO JOSE');
execute insertarjugadores('123252','GARCIA CEBRERO, JOSE MARIA');
execute insertarjugadores('123330','WU, JUN YONG');
execute insertarjugadores('123556','ALEKSANYAN, EDVARD');
execute insertarjugadores('124011','LIN, LIYONG');
execute insertarjugadores('124509','ABAD ANSELMO, RAFAEL');
execute insertarjugadores('124606','LOMBARDI, LUCIANO');
execute insertarjugadores('124652','DIAZ CHACON, MARIA CARMEN');
execute insertarjugadores('124653','CHACON ALVAREZ DE SOTOMAYOR, MARIA DE LA VICTORIA');
execute insertarjugadores('124732','NUCCI, CLAUDIO');
execute insertarjugadores('125597','MARTINEZ BELTRAN, SANTIAGO');
execute insertarjugadores('126335','PARRADO MARTINEZ, MANUELA');
execute insertarjugadores('126928','CHEN, LIN');
execute insertarjugadores('126930','YUAN, YONG');
execute insertarjugadores('126938','CARO BONILLA, TOMAS DOMINGO');
execute insertarjugadores('126950','VAZQUEZ ORIA, RAFAEL');
execute insertarjugadores('128148','GUARDEÑO TORRALBO, JUAN ANTONIO');
execute insertarjugadores('128195','BARONA ALVAREZ, JOSE MARIA');
execute insertarjugadores('128697','CONTRERAS RIOS, MARIA DEL ROCIO');
execute insertarjugadores('128977','ARAUJO LATORRE, ALVARO');
execute insertarjugadores('128978','GARCIA GIL, DAVID');
execute insertarjugadores('129380','ORTIZ ALBARRAN, JUAN ANTONIO');
execute insertarjugadores('129382','LINERO MARIN, JERONIMO');
execute insertarjugadores('129793','GOMEZ CIPRIAN, LUIS');
execute insertarjugadores('129895','TRISTAN HERRERA, DIEGO');
execute insertarjugadores('130058','PINEDA VILLA, FELIPE');
execute insertarjugadores('130061','MATUS GONZALEZ, ATENEO');
execute insertarjugadores('130195','CASTRO VAL, ISRAEL');
execute insertarjugadores('130214','WANG, ZENGLI');
execute insertarjugadores('130327','CAMPOS TORRES, JUAN ANTONIO');
execute insertarjugadores('131398','WU, SUZHEN');
execute insertarjugadores('131401','FRANCO DIEGUEZ, JOSE CARLOS');
execute insertarjugadores('132055','TROYA RODRIGUEZ, ANTONIO');
execute insertarjugadores('132609','URBANO SIERRA, FELIPE');
execute insertarjugadores('133330','BENITEZ COLON, SERGIO');
execute insertarjugadores('134152','DE LAS CUEVAS SANCHEZ DE IBARGÜEN, ALEJANDRO BARTOLOME');
execute insertarjugadores('135214','RIVERA PANTOJA, FRANCISCO JOSE');
execute insertarjugadores('135369','BARQUERO MARTIN, ALEJANDRO');
execute insertarjugadores('135581','GRANADOS LUQUE, ANTONIO');
execute insertarjugadores('135644','DORADO GONZALEZ, EDUARDO');
execute insertarjugadores('135702','CONSTANTIN, DAVID');
execute insertarjugadores('136258','CHACON JIMENEZ, ISMAEL');
execute insertarjugadores('136337','GOMEZ BARCELO, JOAQUIN');
execute insertarjugadores('136590','MORENO CAMPOS, GUMERSINDO MANUEL');
execute insertarjugadores('136951','AZCON NAVARRO, JOAQUIN ALEJANDRO');
execute insertarjugadores('136976','CALANCHE HERRERA, JARVIC VICENTE');
execute insertarjugadores('136983','RIVAS TORRES, JOAQUIN');
execute insertarjugadores('137192','DOMINGUEZ GODINO, EUGENIO');
execute insertarjugadores('137244','HERNANDEZ SOCORRO, JULIO');
execute insertarjugadores('137314','SALAMA, M ABDELKADER');
execute insertarjugadores('137888','DIEGUEZ RECACHA, ROGELIO');
execute insertarjugadores('137899','MARTINEZ NUÑEZ, VICENTE');
execute insertarjugadores('138209','RUIZ ALVAREZ, ALFONSO MARCELO');
execute insertarjugadores('138371','CHEN, HAO');
execute insertarjugadores('138849','GAONACH, PATRICK JEAN');
execute insertarjugadores('139557','MARIN ROS, CARLOS MANUEL');
execute insertarjugadores('140491','MAGRO MATILLA, JAVIER');
execute insertarjugadores('140822','RUIZ PEREZ, MOISES');
execute insertarjugadores('141286','HINCHADO MELENDEZ, FRANCISCO');
execute insertarjugadores('141342','LIAO, SUNZHONG');
execute insertarjugadores('141607','MESEGUER GONZALEZ, JOSE ANTONIO');
execute insertarjugadores('141785','BAFFEREAU, SEBASTIEN HENRI');
execute insertarjugadores('142027','GUO, MEIZHEN');
execute insertarjugadores('142064','ROMAN ALCAIDE, INOCENCIO ANTONIO');
execute insertarjugadores('142168','TORRES BUIGUES, XAVIER');
execute insertarjugadores('143515','ALGABA AVILA, RAFAEL');
execute insertarjugadores('143708','BALIÑAS DE LA CONCHA, MANUEL');
execute insertarjugadores('144139','LAHOZ RUANO, JUAN LEON');
execute insertarjugadores('144793','FIGUERAS MONTEL, JORDI');
execute insertarjugadores('144795','JAEN MORON, JULIO');
execute insertarjugadores('145259','PEÑUELA PABLOS, RAFAEL');
execute insertarjugadores('145703','FONTEYN, ROBERT AUGUST E');
execute insertarjugadores('145997','ESCODA TURBANY, JORGE');
execute insertarjugadores('146024','ORTEGA GUILLEN, CRISTOBAL');
execute insertarjugadores('146154','LEE, SEONG YONG');
execute insertarjugadores('146184','DEULOFEU LAZARO, GERARD');
execute insertarjugadores('146434','FERNANDEZ CABELLO, JUAN JESUS');
execute insertarjugadores('146438','CABALLERO LORA, JUAN');
execute insertarjugadores('147146','PACHECO LOBATO, DANIEL');
execute insertarjugadores('147546','ARGUEZ RUIZ, JUAN JESUS');
execute insertarjugadores('147549','ACOSTA DE LA ROSA, MODESTO');
execute insertarjugadores('147815','CALDERON VERA, ANTONIO MANUEL');
execute insertarjugadores('148101','LOPEZ PEREZ, CIPRIANO MANUEL');
execute insertarjugadores('148178','KERCUKU, EMILIO');
execute insertarjugadores('148346','ACQUISTAPACE, PASQUALE');
execute insertarjugadores('148387','ZAMFIR, ELVIS');
execute insertarjugadores('148409','LOBATO ALVAREZ, BERNAROO');
execute insertarjugadores('149014','PARDO GARCIA, JUAN MANUEL');
execute insertarjugadores('149024','ROMERO CABEZA, VICTOR MANUEL');
execute insertarjugadores('149175','FERNANDEZ CABANILLAS, ABRAHAM');
execute insertarjugadores('149671','GALISTEO MUÑOZ, NANUEL');
execute insertarjugadores('149790','MEJIAS ALVAREZ, SANDRA');
execute insertarjugadores('149823','XIE, ZHONGYAO');
execute insertarjugadores('149824','XIE, ZHONGGUAN');
execute insertarjugadores('150222','PAN, QIANG');
execute insertarjugadores('150292','LOZANO DIEGUEZ, MANUEL JESUS');
execute insertarjugadores('150363','CINTRA VIEGAS, JASON');
execute insertarjugadores('150425','FAN, CHUNHUA');
execute insertarjugadores('150447','MAINI, ALFREDO');
execute insertarjugadores('150469','CAMPILLO CRESPO, ALEJANDRO JOSE');
execute insertarjugadores('150603','RODRIGUEZ CARRERA, MANUEL');
execute insertarjugadores('150638','BARBERA GALLARDO, MANUEL');
execute insertarjugadores('150666','HUA, KUIZHANG');
execute insertarjugadores('150719','WANG, CHIYAO');
execute insertarjugadores('150826','DAI, JIANKE');
execute insertarjugadores('150969','DUCAY DE LA RIVA, JOAQUIN');
execute insertarjugadores('151085','LIU, CHANGHAI');
execute insertarjugadores('151183','GARRIDO RODRIGUEZ, ANDRES MANUEL');
execute insertarjugadores('151210','VIDAL MENGUAL, JAVIER');
execute insertarjugadores('151264','VENEZIANO BROCCIA, MASSIMO');
execute insertarjugadores('151284','GABALDON BOTELLA, ROGELIO');
execute insertarjugadores('151289','CHEN, WEIXING');
execute insertarjugadores('151290','YI, ZHENG');
execute insertarjugadores('151387','PAN, JINLONG');
execute insertarjugadores('151564','DA CRUZ NETO MESTRE, FERNANDO MANUEL');
execute insertarjugadores('151567','MARTIN JAEN, EMILIO');
execute insertarjugadores('151568','GALVAN CACELA, JUAN CARLOS');
execute insertarjugadores('151574','DOMINGOS TOMAS LOPES, ANTONI M');
execute insertarjugadores('151582','HUELVA GARCIA, MARCELO');
execute insertarjugadores('151601','POGGI, GAETAN EMILE');
execute insertarjugadores('151636','PARK, JUNGMAN');
execute insertarjugadores('151685','SIERCO JARQUE, ALBERTO');
execute insertarjugadores('151812','KHAZARDJIAN, YERVANT');
execute insertarjugadores('151821','YE, YINHU');
execute insertarjugadores('151856','ZHOU, HUIYI');
execute insertarjugadores('152050','CERDESCHI, MASSIMILIANO');
execute insertarjugadores('152058','MARTINY, ROBERT FRANCOIS');
execute insertarjugadores('152165','YANG, HANG');
execute insertarjugadores('152174','ZHANG, XIANKUN');
execute insertarjugadores('152206','CHEN, JIANJUN');
execute insertarjugadores('152208','ADAN GARRIDO, ANTONIO');
execute insertarjugadores('152377','RAVE, ROY');
execute insertarjugadores('152378','GERNEIL O, LORNE');
execute insertarjugadores('152464','RAVE, LEIAT');
execute insertarjugadores('152489','KRASOVSCHI-MUREA, STEFAN');
execute insertarjugadores('152524','FORTAS, KHEMISSI');
execute insertarjugadores('152639','LI, WEIDONG');
execute insertarjugadores('152660','RONG, XIN');
execute insertarjugadores('152662','ZHANG, LI');
execute insertarjugadores('152740','ZAFRA CRESPIN, ANTONIO JESUS');
execute insertarjugadores('152781','LI, FANG');
execute insertarjugadores('152856','PEREZ MUIÑO, JOSE ANTONIO');
execute insertarjugadores('152871','LIN, CHI HUNG');
execute insertarjugadores('153036','VILLALONGA PONS, PEDRO');
execute insertarjugadores('153043','BLEWIS, RICHARD MICHAEL');
execute insertarjugadores('153046','ANTHONY, SCOTT MICHAEL');
execute insertarjugadores('153064','GARCIA SANCHEZ, SAMUEL');
execute insertarjugadores('153083','TUDOR, FLORENTIN-OCTAVIAN');
execute insertarjugadores('153091','SALVATORE, MARIO');
execute insertarjugadores('153211','IBRAHIM, FARUK');
execute insertarjugadores('153215','VINALS FARRES, SANTIAGO');
execute insertarjugadores('153222','BAKHASHAB, KHALID');
execute insertarjugadores('153227','XIAO, JUN');
execute insertarjugadores('153309','OZEL, SAMET KURSAD');
execute insertarjugadores('153366','LIU, DONGDONG');
execute insertarjugadores('153380','HU, CHUNHUA');
execute insertarjugadores('153381','TANG, WEIDONG');
execute insertarjugadores('153383','YANG, WEIDONG');
execute insertarjugadores('153384','GAO, YUEQIN');
execute insertarjugadores('153394','MANSOURI, YASSINE');
execute insertarjugadores('153434','DUMITRU, DANIEL');
execute insertarjugadores('153440','VAHID, MOHADJERI');
execute insertarjugadores('153570','PEREZ MARTINEZ, ALVARO');
execute insertarjugadores('153624','MANCINELLI, MASSIMO');
execute insertarjugadores('153639','MARASCIO, FRANCESCO');
execute insertarjugadores('153641','CUTULI, DANIELE');
execute insertarjugadores('153681','CAMPOBASSO, LUCIANO');
execute insertarjugadores('153744','CHAMMAK, ABDERRAHIM');
execute insertarjugadores('153797','PALENZUELA TEJERO, JAIME');
execute insertarjugadores('153943','NEBBIA, CLAUDIO LUIS');
execute insertarjugadores('153945','CIARDI, NICOLA');
execute insertarjugadores('153948','GHIRELLI, PIERPAOLO');
execute insertarjugadores('153949','VINCI, NICOLA');
execute insertarjugadores('153951','DEPERU, GIOVANNI MARIA');
execute insertarjugadores('153952','GONZALEZ MAYA, DANIEL');
execute insertarjugadores('153958','DI GREGORIO, MAURICIO');
execute insertarjugadores('153967','PASHKEVICH, ANDREY');
execute insertarjugadores('153969','BOVER GAGO, JOSE MANUEL');
execute insertarjugadores('153970','CABANILLAS GOMEZ, ALEJANDRO');
execute insertarjugadores('153972','TANVALD, ROLF HARRY');
execute insertarjugadores('154019','ZHOU, JIANHUA');
execute insertarjugadores('154085','RICO CASTRO, FRANCISCO MANUEL');
execute insertarjugadores('154102','RITCHER, ALAIN');
execute insertarjugadores('154103','KUO, PO KUAN');
execute insertarjugadores('154104','PALOMARES MORRON, DAVID');
execute insertarjugadores('154106','ZHOW YE, RICARDO FILIPE');
execute insertarjugadores('154115','LOZANO, KATY');
execute insertarjugadores('154116','LOZANO GRAVINA, JUAN CLAUDIO');
execute insertarjugadores('154131','AHMED AHMED, MUSTAFA');
execute insertarjugadores('154132','SAADEH, SHERIF NABIL IBRAHIM');
execute insertarjugadores('154133','SARMIENTO FEIJOO, CARLOS JOSE');
execute insertarjugadores('154221','ALVAREZ RANERO, JAVIER');
execute insertarjugadores('154232','ALMUTAIRI, MESHARI F M D J');
execute insertarjugadores('154247','MAKHOUL, ROBERT MICHAEL');
execute insertarjugadores('154310','VAN ENGELEN, SERVAAS PAULUS HENDERIKUS');
execute insertarjugadores('154311','GUSSENHOVEN, KAREL PIETER');
execute insertarjugadores('154374','ABBASI, DARIUSH');
execute insertarjugadores('154399','TSANG, TSZ SHUN');
execute insertarjugadores('154402','MESSOUS, RACHID');
execute insertarjugadores('154429','VARAKANTHAM, AKILESH REDDY');
execute insertarjugadores('154435','RUIZ PAZ, FERNANDO');
execute insertarjugadores('154443','COLI, MARCO');
execute insertarjugadores('154461','PEI, DONGNA');
execute insertarjugadores('154500','DENIZKUSU, AHMET OGUZ');
execute insertarjugadores('154582','SELIGNAN, JEAN-LUC, MAURICE');
execute insertarjugadores('154595','AKKINENI, AKHIL');
execute insertarjugadores('154597','RAGHU CHOWDARAPU, RATUL');
execute insertarjugadores('154606','CHUVAS, PEDRO, HORACIO');
execute insertarjugadores('154617','MAURIZIO, DANESI');
execute insertarpayments('151264', '01/01/2015 18:08:42','1000');
execute insertarpayments('151264', '01/01/2015 21:51:59','-6300');
execute insertarpayments('151264', '01/01/2015 21:52:05','2000');
execute insertarpayments('81712', '01/01/2015 22:30:01','-1200');
execute insertarpayments('53724', '01/01/2015 23:03:38','-3000');
execute insertarpayments('151284', '02/01/2015 00:28:26','-2000');
execute insertarpayments('151264', '02/01/2015 00:36:24','2000');
execute insertarpayments('150719', '02/01/2015 01:01:11','500');
execute insertarpayments('150363', '02/01/2015 02:32:43','400');
execute insertarpayments('122685', '02/01/2015 03:10:14','-1800');
execute insertarpayments('925', '02/01/2015 20:04:04','-500');
execute insertarpayments('151210', '02/01/2015 20:04:12','-1000');
execute insertarpayments('147146', '02/01/2015 20:28:30','3500');
execute insertarpayments('28908', '02/01/2015 20:43:32','-1000');
execute insertarpayments('53724', '02/01/2015 23:56:55','2000');
execute insertarpayments('53724', '03/01/2015 00:18:28','-3900');
execute insertarpayments('53724', '03/01/2015 00:18:37','600');
execute insertarpayments('53724', '03/01/2015 00:18:41','-600');
execute insertarpayments('53724', '03/01/2015 01:27:16','-2800');
execute insertarpayments('53724', '03/01/2015 01:51:49','-600');
execute insertarpayments('53724', '03/01/2015 01:51:53','-500');
execute insertarpayments('27695', '03/01/2015 02:06:43','-500');
execute insertarpayments('15584', '03/01/2015 19:27:22','-2000');
execute insertarpayments('143708', '03/01/2015 21:21:51','-5000');
execute insertarpayments('86172', '03/01/2015 21:22:00','-1000');
execute insertarpayments('86172', '03/01/2015 21:39:40','-700');
execute insertarpayments('36981', '03/01/2015 22:11:14','1000');
execute insertarpayments('143708', '03/01/2015 22:23:58','-4500');
execute insertarpayments('1183', '03/01/2015 23:11:01','1000');
execute insertarpayments('7270', '03/01/2015 23:11:28','-1000');
execute insertarpayments('53724', '03/01/2015 23:12:28','880');
execute insertarpayments('6343', '03/01/2015 23:25:15','-1750');
execute insertarpayments('143708', '03/01/2015 23:48:17','-7000');
execute insertarpayments('143708', '04/01/2015 00:05:27','-500');
execute insertarpayments('86172', '04/01/2015 00:05:35','-500');
execute insertarpayments('119645', '04/01/2015 01:32:54','-2150');
execute insertarpayments('963', '04/01/2015 20:16:44','1000');
execute insertarpayments('447', '04/01/2015 21:20:33','1000');
execute insertarpayments('19112', '04/01/2015 21:29:17','800');
execute insertarpayments('8018', '04/01/2015 21:35:34','650');
execute insertarpayments('8018', '04/01/2015 22:07:32','600');
execute insertarpayments('963', '04/01/2015 22:12:34','1000');
execute insertarpayments('19112', '04/01/2015 22:15:38','800');
execute insertarpayments('55914', '04/01/2015 22:21:57','1000');
execute insertarpayments('963', '04/01/2015 22:22:15','-2000');
execute insertarpayments('963', '04/01/2015 22:22:20','-650');
execute insertarpayments('8018', '04/01/2015 23:06:44','600');
execute insertarpayments('112577', '04/01/2015 23:18:48','1000');
execute insertarpayments('8018', '04/01/2015 23:19:04','700');
execute insertarpayments('151387', '04/01/2015 23:23:58','3000');
execute insertarpayments('112577', '04/01/2015 23:41:52','-1000');
execute insertarpayments('112577', '04/01/2015 23:41:58','-1630');
execute insertarpayments('55914', '04/01/2015 23:55:13','-3050');
execute insertarpayments('447', '04/01/2015 23:50:28','-1000');
execute insertarpayments('53724', '05/01/2015 00:07:29','1000');
execute insertarpayments('19112', '05/01/2015 00:23:55','800');
execute insertarpayments('19112', '05/01/2015 00:29:34','800');
execute insertarpayments('151387', '05/01/2015 00:46:28','-4200');
execute insertarpayments('55914', '05/01/2015 01:16:06','-7550');
execute insertarpayments('447', '05/01/2015 01:55:50','-1000');
execute insertarpayments('121576', '05/01/2015 02:09:10','-2050');
execute insertarpayments('14172', '05/01/2015 19:01:54','1000');
execute insertarpayments('14172', '05/01/2015 19:01:58','1500');
execute insertarpayments('14172', '05/01/2015 19:56:43','2000');
execute insertarpayments('112577', '05/01/2015 20:23:42','600');
execute insertarpayments('112577', '05/01/2015 20:23:53','1200');
execute insertarpayments('112577', '05/01/2015 20:23:59','1200');
execute insertarpayments('14172', '05/01/2015 20:25:01','-1000');
execute insertarpayments('14172', '05/01/2015 20:25:05','-1500');
execute insertarpayments('14172', '05/01/2015 20:25:11','-2000');
execute insertarpayments('14172', '05/01/2015 20:25:22','-5500');
execute insertarpayments('14172', '05/01/2015 20:34:40','-1500');
execute insertarpayments('53724', '06/01/2015 00:09:54','2000');
execute insertarpayments('10191', '06/01/2015 00:55:04','-850');
execute insertarpayments('108677', '06/01/2015 01:17:46','-2000');
execute insertarpayments('447', '06/01/2015 01:43:29','1000');
execute insertarpayments('150222', '06/01/2015 18:57:07','500');
execute insertarpayments('150222', '06/01/2015 19:01:32','500');
execute insertarpayments('38', '06/01/2015 19:11:17','500');
execute insertarpayments('150222', '06/01/2015 19:22:36','500');
execute insertarpayments('150222', '06/01/2015 19:27:50','500');
execute insertarpayments('38', '06/01/2015 20:08:37','-700');
execute insertarpayments('12091', '06/01/2015 21:01:48','700');
execute insertarpayments('8018', '06/01/2015 21:06:09','1200');
execute insertarpayments('15584', '06/01/2015 21:45:01','-2000');
execute insertarpayments('149014', '06/01/2015 22:08:38','-1100');
execute insertarpayments('150826', '06/01/2015 22:36:51','785');
execute insertarpayments('143708', '06/01/2015 22:52:59','600');
execute insertarpayments('1319', '06/01/2015 22:57:02','500');
execute insertarpayments('53724', '07/01/2015 01:20:06','5000');
execute insertarpayments('107633', '07/01/2015 01:40:20','500');
execute insertarpayments('107633', '07/01/2015 01:40:26','300');
execute insertarpayments('107633', '07/01/2015 02:08:28','300');
execute insertarpayments('121576', '07/01/2015 02:20:47','-1000');
execute insertarpayments('1319', '07/01/2015 02:23:52','-500');
execute insertarpayments('1319', '07/01/2015 02:23:58','-1000');
execute insertarpayments('88209', '07/01/2015 20:13:49','1000');
execute insertarpayments('88209', '07/01/2015 20:13:56','-1300');
execute insertarpayments('6794', '07/01/2015 20:24:49','800');
execute insertarpayments('88209', '07/01/2015 20:31:17','-1000');
execute insertarpayments('6794', '07/01/2015 20:39:47','1000');
execute insertarpayments('143708', '07/01/2015 21:22:36','-2300');
execute insertarpayments('143708', '07/01/2015 22:47:47','-2500');
execute insertarpayments('925', '07/01/2015 23:24:41','750');
execute insertarpayments('925', '07/01/2015 23:28:34','150');
execute insertarpayments('8018', '07/01/2015 23:29:25','1000');
execute insertarpayments('143708', '07/01/2015 23:46:49','-6500');
execute insertarpayments('122372', '08/01/2015 02:15:25','-2450');
execute insertarpayments('122372', '08/01/2015 04:00:11','-1000');
execute insertarpayments('122689', '08/01/2015 20:22:31','-1900');
execute insertarpayments('122689', '08/01/2015 21:03:03','-400');
execute insertarpayments('99221', '08/01/2015 21:23:24','1300');
execute insertarpayments('425', '08/01/2015 22:23:09','-2900');
execute insertarpayments('5355', '08/01/2015 22:53:44','-850');
execute insertarpayments('23124', '08/01/2015 23:50:20','500');
execute insertarpayments('143708', '09/01/2015 00:41:35','-5500');
execute insertarpayments('99221', '09/01/2015 00:37:00','-2200');
execute insertarpayments('882', '09/01/2015 03:40:06','-2450');
execute insertarpayments('123330', '09/01/2015 03:45:09','-1250');
execute insertarpayments('120264', '09/01/2015 18:58:35','1000');
execute insertarpayments('120264', '09/01/2015 19:40:10','400');
execute insertarpayments('120264', '09/01/2015 19:40:16','600');
execute insertarpayments('143708', '09/01/2015 21:21:39','-7800');
execute insertarpayments('108677', '09/01/2015 22:10:44','2000');
execute insertarpayments('963', '10/01/2015 21:10:36','1000');
execute insertarpayments('357', '10/01/2015 21:12:31','2500');
execute insertarpayments('357', '10/01/2015 21:12:37','500');
execute insertarpayments('146434', '10/01/2015 21:29:14','1000');
execute insertarpayments('963', '10/01/2015 21:36:07','-1000');
execute insertarpayments('146434', '10/01/2015 21:53:15','-1000');
execute insertarpayments('963', '10/01/2015 22:00:27','1000');
execute insertarpayments('146434', '10/01/2015 22:16:11','-1000');
execute insertarpayments('76865', '10/01/2015 22:33:25','1000');
execute insertarpayments('146434', '10/01/2015 22:33:54','-1500');
execute insertarpayments('963', '10/01/2015 22:34:30','1000');
execute insertarpayments('15584', '10/01/2015 22:30:50','-4000');
execute insertarpayments('76237', '10/01/2015 23:03:25','1500');
execute insertarpayments('24649', '10/01/2015 23:07:58','-1500');
execute insertarpayments('7270', '10/01/2015 23:09:19','1000');
execute insertarpayments('7270', '10/01/2015 23:09:23','-600');
execute insertarpayments('76865', '10/01/2015 23:19:54','-2800');
execute insertarpayments('7270', '10/01/2015 23:39:09','400');
execute insertarpayments('3036', '11/01/2015 00:07:19','-600');
execute insertarpayments('3036', '11/01/2015 00:07:25','-1000');
execute insertarpayments('15469', '11/01/2015 00:21:34','-1700');
execute insertarpayments('357', '11/01/2015 01:33:04','2000');
execute insertarpayments('138371', '11/01/2015 01:47:17','500');
execute insertarpayments('76237', '11/01/2015 02:17:54','1500');
execute insertarpayments('112577', '11/01/2015 03:03:35','2000');
execute insertarpayments('143708', '11/01/2015 03:10:50','600');
execute insertarpayments('143708', '11/01/2015 03:11:07','-12500');
execute insertarpayments('143708', '11/01/2015 04:10:16','-1800');
execute insertarpayments('53724', '11/01/2015 18:40:24','1450');
execute insertarpayments('148346', '11/01/2015 19:31:36','1000');
execute insertarpayments('55914', '11/01/2015 19:43:15','1200');
execute insertarpayments('81129', '11/01/2015 20:09:17','-2550');
execute insertarpayments('118634', '11/01/2015 20:26:15','-1500');
execute insertarpayments('55914', '11/01/2015 20:38:16','2000');
execute insertarpayments('55914', '11/01/2015 22:04:07','2500');
execute insertarpayments('143708', '12/01/2015 00:46:31','-4300');
execute insertarpayments('55914', '12/01/2015 02:32:00','-2500');
execute insertarpayments('55914', '12/01/2015 02:32:08','-7700');
execute insertarpayments('24649', '12/01/2015 02:41:00','-2000');
execute insertarpayments('112577', '12/01/2015 03:24:12','1000');
execute insertarpayments('112577', '12/01/2015 03:24:17','1000');
execute insertarpayments('112577', '12/01/2015 03:37:53','700');
execute insertarpayments('112577', '12/01/2015 04:01:40','-2700');
execute insertarpayments('112577', '12/01/2015 04:01:55','-900');
execute insertarpayments('147146', '12/01/2015 18:56:25','2000');
execute insertarpayments('147146', '12/01/2015 18:58:45','500');
execute insertarpayments('120264', '12/01/2015 18:58:53','600');
execute insertarpayments('120264', '12/01/2015 20:21:12','-600');
execute insertarpayments('120264', '12/01/2015 20:21:22','-2000');
execute insertarpayments('112577', '12/01/2015 20:21:40','-500');
execute insertarpayments('144795', '12/01/2015 20:25:01','-1000');
execute insertarpayments('143708', '12/01/2015 20:53:45','-2300');
execute insertarpayments('112577', '12/01/2015 21:01:58','-950');
execute insertarpayments('112577', '12/01/2015 21:02:05','-962');
execute insertarpayments('144795', '12/01/2015 21:06:37','-2000');
execute insertarpayments('144795', '12/01/2015 21:14:39','-500');
execute insertarpayments('146434', '12/01/2015 22:00:02','-1000');
execute insertarpayments('146434', '12/01/2015 21:58:56','1000');
execute insertarpayments('146434', '12/01/2015 22:07:27','1000');
execute insertarpayments('146434', '12/01/2015 22:07:36','-1000');
execute insertarpayments('144795', '12/01/2015 22:16:04','-1500');
execute insertarpayments('146434', '12/01/2015 22:27:33','-1000');
execute insertarpayments('144795', '12/01/2015 22:28:54','-600');
execute insertarpayments('112577', '12/01/2015 22:37:16','-800');
execute insertarpayments('146434', '12/01/2015 22:35:26','500');
execute insertarpayments('144795', '12/01/2015 22:53:09','-600');
execute insertarpayments('144795', '12/01/2015 22:55:43','-400');
execute insertarpayments('144795', '12/01/2015 22:57:37','-200');
execute insertarpayments('144795', '12/01/2015 22:59:26','-150');
execute insertarpayments('144795', '12/01/2015 23:01:57','-200');
execute insertarpayments('146434', '12/01/2015 23:02:36','1000');
execute insertarpayments('144795', '12/01/2015 23:06:03','-150');
execute insertarpayments('144795', '12/01/2015 23:08:11','-200');
execute insertarpayments('144795', '12/01/2015 23:12:47','-500');
execute insertarpayments('144795', '12/01/2015 23:20:26','-400');
execute insertarpayments('146434', '12/01/2015 23:20:34','-1500');
execute insertarpayments('144795', '12/01/2015 23:26:00','-900');
execute insertarpayments('146434', '12/01/2015 23:34:08','-1000');
execute insertarpayments('144795', '12/01/2015 23:58:38','-1000');
execute insertarpayments('144795', '13/01/2015 00:06:32','-800');
execute insertarpayments('144795', '13/01/2015 00:21:02','-1000');
execute insertarpayments('146434', '13/01/2015 00:34:17','-1800');
execute insertarpayments('144795', '13/01/2015 01:06:26','-600');
execute insertarpayments('143708', '13/01/2015 01:22:01','1000');
execute insertarpayments('151567', '13/01/2015 01:25:01','1500');
execute insertarpayments('144795', '13/01/2015 01:32:18','-2000');
execute insertarpayments('151567', '13/01/2015 01:37:26','400');
execute insertarpayments('144795', '13/01/2015 01:38:02','-1500');
execute insertarpayments('24649', '13/01/2015 01:40:52','-1550');
execute insertarpayments('144795', '13/01/2015 01:41:18','-500');
execute insertarpayments('144795', '13/01/2015 01:48:50','-500');
execute insertarpayments('21411', '13/01/2015 19:56:42','500');
execute insertarpayments('59528', '13/01/2015 20:39:37','-1400');
execute insertarpayments('2906', '13/01/2015 20:39:44','-500');
execute insertarpayments('3036', '13/01/2015 20:39:54','-750');
execute insertarpayments('146184', '13/01/2015 20:40:07','500');
execute insertarpayments('146184', '13/01/2015 20:40:16','-800');
execute insertarpayments('3036', '13/01/2015 20:54:25','-1050');
execute insertarpayments('118634', '13/01/2015 22:25:51','-2200');
execute insertarpayments('143708', '13/01/2015 22:28:33','-1200');
execute insertarpayments('53724', '13/01/2015 22:55:46','230');
execute insertarpayments('572', '13/01/2015 23:06:43','600');
execute insertarpayments('28908', '13/01/2015 23:31:24','1000');
execute insertarpayments('53724', '13/01/2015 23:31:34','-2000');
execute insertarpayments('28908', '13/01/2015 23:46:12','1100');
execute insertarpayments('112577', '14/01/2015 00:31:12','500');
execute insertarpayments('28908', '14/01/2015 00:42:37','1000');
execute insertarpayments('91211', '14/01/2015 00:46:12','1000');
execute insertarpayments('28908', '14/01/2015 01:15:30','560');
execute insertarpayments('91211', '14/01/2015 01:45:17','1000');
execute insertarpayments('91211', '14/01/2015 02:35:28','500');
execute insertarpayments('91211', '14/01/2015 02:47:22','1000');
execute insertarpayments('123330', '14/01/2015 03:30:22','-3650');
execute insertarpayments('120264', '14/01/2015 19:55:40','1400');
execute insertarpayments('120264', '14/01/2015 20:08:55','200');
execute insertarpayments('143708', '14/01/2015 20:39:46','-1850');
execute insertarpayments('53724', '14/01/2015 22:23:10','585');
execute insertarpayments('112577', '14/01/2015 22:30:45','-1260');
execute insertarpayments('53724', '14/01/2015 22:42:48','-1500');
execute insertarpayments('69103', '15/01/2015 00:57:35','-1500');
execute insertarpayments('69103', '15/01/2015 01:36:56','-1350');
execute insertarpayments('24859', '15/01/2015 20:14:58','1000');
execute insertarpayments('8018', '15/01/2015 20:15:34','600');
execute insertarpayments('8018', '15/01/2015 20:23:57','600');
execute insertarpayments('8018', '15/01/2015 20:41:20','600');
execute insertarpayments('151574', '15/01/2015 20:55:32','-1000');
execute insertarpayments('24859', '15/01/2015 21:09:30','1000');
execute insertarpayments('572', '15/01/2015 22:00:21','800');
execute insertarpayments('135581', '15/01/2015 22:03:15','-1000');
execute insertarpayments('64666', '15/01/2015 22:31:12','1000');
execute insertarpayments('151574', '15/01/2015 22:31:23','-1000');
execute insertarpayments('572', '15/01/2015 23:04:15','-1100');
execute insertarpayments('149671', '15/01/2015 23:08:23','500');
execute insertarpayments('149671', '15/01/2015 23:08:28','500');
execute insertarpayments('151582', '15/01/2015 23:09:21','-500');
execute insertarpayments('149671', '16/01/2015 00:59:08','500');
execute insertarpayments('13348', '16/01/2015 00:56:15','-1900');
execute insertarpayments('13348', '16/01/2015 00:56:21','800');
execute insertarpayments('13348', '16/01/2015 00:56:25','-800');
execute insertarpayments('357', '16/01/2015 01:08:50','1450');
execute insertarpayments('882', '16/01/2015 01:11:49','-1150');
execute insertarpayments('143708', '16/01/2015 01:15:03','-2000');
execute insertarpayments('141607', '16/01/2015 01:15:50','-500');
execute insertarpayments('141607', '16/01/2015 01:15:55','-650');
execute insertarpayments('143708', '16/01/2015 02:08:50','-1000');
execute insertarpayments('143708', '16/01/2015 02:08:56','1000');
execute insertarpayments('130058', '16/01/2015 03:16:27','-1150');
execute insertarpayments('151085', '16/01/2015 03:28:33','-1000');
execute insertarpayments('846', '16/01/2015 03:56:48','-4400');
execute insertarpayments('21843', '16/01/2015 18:45:34','-1100');
execute insertarpayments('17882', '16/01/2015 20:38:30','1000');
execute insertarpayments('17882', '16/01/2015 20:49:53','600');
execute insertarpayments('138371', '16/01/2015 21:01:57','600');
execute insertarpayments('17882', '16/01/2015 21:41:54','600');
execute insertarpayments('81387', '16/01/2015 23:08:45','500');
execute insertarpayments('150447', '16/01/2015 23:30:29','500');
execute insertarpayments('150447', '16/01/2015 23:30:39','500');
execute insertarpayments('143708', '17/01/2015 00:17:13','-3000');
execute insertarpayments('150447', '17/01/2015 01:04:52','-1250');
execute insertarpayments('101580', '17/01/2015 02:08:25','400');
execute insertarpayments('101580', '17/01/2015 02:08:31','500');
execute insertarpayments('14162', '17/01/2015 03:12:52','-1000');
execute insertarpayments('86172', '17/01/2015 19:13:59','500');
execute insertarpayments('136258', '17/01/2015 19:14:10','1000');
execute insertarpayments('15584', '17/01/2015 20:37:41','-4311,8');
execute insertarpayments('108677', '17/01/2015 20:52:12','2000');
execute insertarpayments('150826', '17/01/2015 21:42:26','600');
execute insertarpayments('76865', '17/01/2015 23:06:08','800');
execute insertarpayments('151636', '17/01/2015 23:06:39','-700');
execute insertarpayments('572', '17/01/2015 23:07:20','-900');
execute insertarpayments('151601', '17/01/2015 23:52:01','-900');
execute insertarpayments('76865', '17/01/2015 23:55:47','2000');
execute insertarpayments('150447', '18/01/2015 00:04:22','500');
execute insertarpayments('357', '18/01/2015 00:27:18','800');
execute insertarpayments('101580', '18/01/2015 01:30:47','900');
execute insertarpayments('101580', '18/01/2015 01:30:52','-900');
execute insertarpayments('101580', '18/01/2015 01:30:57','-500');
execute insertarpayments('5461', '18/01/2015 01:39:07','500');
execute insertarpayments('882', '18/01/2015 01:50:20','-2800');
execute insertarpayments('109612', '18/01/2015 02:00:07','-1000');
execute insertarpayments('108677', '18/01/2015 02:07:28','-2600');
execute insertarpayments('62331', '18/01/2015 03:00:58','-2500');
execute insertarpayments('143708', '18/01/2015 20:39:47','600');
execute insertarpayments('150826', '18/01/2015 20:40:33','1030');
execute insertarpayments('76865', '18/01/2015 20:57:28','1000');
execute insertarpayments('143708', '18/01/2015 21:15:29','-5200');
execute insertarpayments('8018', '18/01/2015 21:15:44','-7000');
execute insertarpayments('8018', '18/01/2015 21:19:53','-5000');
execute insertarpayments('8018', '18/01/2015 21:17:56','-5000');
execute insertarpayments('1182', '18/01/2015 21:22:33','-1000');
execute insertarpayments('1182', '18/01/2015 21:22:38','-800');
execute insertarpayments('8018', '18/01/2015 22:05:25','1000');
execute insertarpayments('572', '18/01/2015 22:33:41','-1900');
execute insertarpayments('76865', '18/01/2015 22:43:03','-5000');
execute insertarpayments('1027', '18/01/2015 23:09:10','13800');
execute insertarpayments('76865', '18/01/2015 23:15:30','-2600');
execute insertarpayments('143708', '18/01/2015 23:39:37','-4000');
execute insertarpayments('151685', '18/01/2015 23:41:00','-7500');
execute insertarpayments('150826', '19/01/2015 03:42:14','-2000');
execute insertarpayments('38', '19/01/2015 18:53:40','1000');
execute insertarpayments('3036', '19/01/2015 19:25:28','-900');
execute insertarpayments('8018', '19/01/2015 20:27:24','-2660');
execute insertarpayments('69103', '19/01/2015 20:27:44','500');
execute insertarpayments('2906', '19/01/2015 20:30:48','-950');
execute insertarpayments('69103', '19/01/2015 20:36:14','500');
execute insertarpayments('357', '19/01/2015 20:43:28','3000');
execute insertarpayments('38', '19/01/2015 21:03:49','-1000');
execute insertarpayments('38', '19/01/2015 21:03:54','-2000');
execute insertarpayments('69103', '19/01/2015 21:22:08','-1000');
execute insertarpayments('69103', '19/01/2015 21:22:12','500');
execute insertarpayments('3036', '19/01/2015 21:28:35','-700');
execute insertarpayments('69103', '19/01/2015 22:01:20','-500');
execute insertarpayments('69103', '19/01/2015 22:01:28','500');
execute insertarpayments('69103', '19/01/2015 22:01:34','-1000');
execute insertarpayments('3036', '19/01/2015 22:06:57','-700');
execute insertarpayments('3036', '19/01/2015 22:33:01','-550');
execute insertarpayments('704', '19/01/2015 22:34:34','800');
execute insertarpayments('53724', '19/01/2015 22:44:49','1000');
execute insertarpayments('53724', '19/01/2015 23:09:25','-3000');
execute insertarpayments('21843', '19/01/2015 23:13:28','420');
execute insertarpayments('69103', '19/01/2015 23:52:34','-1500');
execute insertarpayments('109612', '19/01/2015 23:54:29','500');
execute insertarpayments('183', '20/01/2015 02:11:47','-3000');
execute insertarpayments('108677', '20/01/2015 02:53:35','1000');
execute insertarpayments('108677', '20/01/2015 02:53:40','-1000');
execute insertarpayments('108677', '20/01/2015 02:53:44','-500');
execute insertarpayments('48473', '20/01/2015 21:23:24','-750');
execute insertarpayments('28908', '20/01/2015 21:34:02','-1844');
execute insertarpayments('151685', '20/01/2015 22:02:56','-2900');
execute insertarpayments('53724', '20/01/2015 22:35:51','1000');
execute insertarpayments('53724', '20/01/2015 22:43:11','2100');
execute insertarpayments('40995', '21/01/2015 01:07:17','-700');
execute insertarpayments('768', '21/01/2015 18:51:07','5000');
execute insertarpayments('71263', '21/01/2015 19:42:48','-1960');
execute insertarpayments('69103', '21/01/2015 20:07:53','500');
execute insertarpayments('8018', '21/01/2015 20:24:12','600');
execute insertarpayments('8018', '21/01/2015 20:29:20','600');
execute insertarpayments('357', '21/01/2015 20:58:23','12000');
execute insertarpayments('59528', '21/01/2015 21:33:03','-1200');
execute insertarpayments('59528', '21/01/2015 21:42:22','-600');
execute insertarpayments('63968', '22/01/2015 02:18:41','-1500');
execute insertarpayments('17969', '22/01/2015 02:40:47','-3000');
execute insertarpayments('24876', '22/01/2015 02:48:37','-2550');
execute insertarpayments('102606', '22/01/2015 21:38:08','500');
execute insertarpayments('963', '22/01/2015 21:38:47','-500');
execute insertarpayments('132609', '22/01/2015 22:29:51','850');
execute insertarpayments('102606', '22/01/2015 23:38:58','500');
execute insertarpayments('76865', '23/01/2015 00:07:36','1000');
execute insertarpayments('101580', '23/01/2015 00:32:23','500');
execute insertarpayments('101580', '23/01/2015 01:05:58','500');
execute insertarpayments('144795', '23/01/2015 01:13:21','500');
execute insertarpayments('84691', '23/01/2015 01:20:05','1500');
execute insertarpayments('357', '23/01/2015 01:46:48','6000');
execute insertarpayments('76865', '23/01/2015 01:47:12','1700');
execute insertarpayments('882', '23/01/2015 02:23:26','-2150');
execute insertarpayments('23995', '23/01/2015 03:38:28','-3000');
execute insertarpayments('123330', '23/01/2015 03:56:45','-1000');
execute insertarpayments('144795', '23/01/2015 18:44:48','-1000');
execute insertarpayments('144795', '23/01/2015 19:01:30','-1500');
execute insertarpayments('108677', '23/01/2015 19:38:20','1000');
execute insertarpayments('112730', '23/01/2015 19:38:41','1000');
execute insertarpayments('112730', '23/01/2015 19:49:49','1000');
execute insertarpayments('15584', '23/01/2015 20:38:45','-3500');
execute insertarpayments('357', '23/01/2015 20:38:58','3000');
execute insertarpayments('357', '23/01/2015 22:03:49','5000');
execute insertarpayments('75024', '23/01/2015 23:26:24','2000');
execute insertarpayments('146434', '23/01/2015 23:49:26','2000');
execute insertarpayments('6343', '24/01/2015 00:01:37','-1700');
execute insertarpayments('1792', '24/01/2015 00:02:26','300');
execute insertarpayments('146434', '24/01/2015 01:35:02','-1000');
execute insertarpayments('357', '24/01/2015 02:17:00','2000');
execute insertarpayments('144795', '24/01/2015 02:50:10','-5000');
execute insertarpayments('144795', '24/01/2015 03:22:29','-2000');
execute insertarpayments('144795', '24/01/2015 03:54:24','-2000');
execute insertarpayments('144795', '24/01/2015 04:09:45','-4500');
execute insertarpayments('26058', '24/01/2015 19:27:11','3000');
execute insertarpayments('15584', '24/01/2015 20:22:47','-2044,6');
execute insertarpayments('76865', '24/01/2015 21:49:35','1000');
execute insertarpayments('26058', '24/01/2015 22:13:44','-1000');
execute insertarpayments('3036', '24/01/2015 23:44:28','-1500');
execute insertarpayments('3036', '24/01/2015 23:44:32','-1000');
execute insertarpayments('3036', '24/01/2015 23:44:36','-1000');
execute insertarpayments('76865', '24/01/2015 23:49:14','-6000');
execute insertarpayments('64666', '24/01/2015 23:57:14','1000');
execute insertarpayments('73143', '25/01/2015 01:13:02','-4000');
execute insertarpayments('53724', '25/01/2015 01:35:48','-3000');
execute insertarpayments('73143', '25/01/2015 01:54:28','-1500');
execute insertarpayments('16795', '25/01/2015 04:05:09','-3000');
execute insertarpayments('67944', '25/01/2015 19:28:19','500');
execute insertarpayments('150222', '25/01/2015 22:14:41','1000');
execute insertarpayments('150222', '25/01/2015 22:14:49','1000');
execute insertarpayments('150222', '25/01/2015 22:38:13','-1000');
execute insertarpayments('150222', '25/01/2015 22:38:19','-4300');
execute insertarpayments('148178', '26/01/2015 02:35:49','-1900');
execute insertarpayments('38', '26/01/2015 19:14:26','1000');
execute insertarpayments('357', '26/01/2015 20:53:02','2500');
execute insertarpayments('38', '26/01/2015 21:15:22','-1000');
execute insertarpayments('38', '26/01/2015 21:15:36','-1300');
execute insertarpayments('357', '26/01/2015 21:37:40','4300');
execute insertarpayments('59528', '26/01/2015 21:54:24','-1900');
execute insertarpayments('8018', '26/01/2015 22:01:35','-3800');
execute insertarpayments('8327', '26/01/2015 22:15:05','-500');
execute insertarpayments('8327', '26/01/2015 22:15:15','-700');
execute insertarpayments('17271', '26/01/2015 22:16:39','-800');
execute insertarpayments('132609', '26/01/2015 22:16:50','500');
execute insertarpayments('142168', '27/01/2015 00:19:04','-2200');
execute insertarpayments('108677', '27/01/2015 01:15:21','500');
execute insertarpayments('108677', '27/01/2015 01:15:29','1500');
execute insertarpayments('108677', '27/01/2015 01:15:42','2000');
execute insertarpayments('108677', '27/01/2015 01:40:55','1000');
execute insertarpayments('108677', '27/01/2015 01:50:43','500');
execute insertarpayments('146434', '27/01/2015 03:15:24','1000');
execute insertarpayments('146434', '27/01/2015 03:15:29','-3000');
execute insertarpayments('38', '27/01/2015 19:48:11','500');
execute insertarpayments('8018', '27/01/2015 19:58:35','-1600');
execute insertarpayments('8018', '27/01/2015 20:41:50','300');
execute insertarpayments('38', '27/01/2015 20:42:00','-2500');
execute insertarpayments('38', '27/01/2015 20:42:05','-500');
execute insertarpayments('3036', '27/01/2015 21:45:32','-1650');
execute insertarpayments('81124', '27/01/2015 22:06:29','-2000');
execute insertarpayments('35295', '27/01/2015 23:09:38','-1400');
execute insertarpayments('76865', '27/01/2015 23:31:16','1000');
execute insertarpayments('357', '27/01/2015 23:31:32','-6660');
execute insertarpayments('357', '27/01/2015 23:55:05','2800');
execute insertarpayments('357', '27/01/2015 23:55:18','2360');
execute insertarpayments('1287', '28/01/2015 00:25:31','-1238');
execute insertarpayments('76865', '28/01/2015 00:49:06','-5700');
execute insertarpayments('70533', '28/01/2015 01:18:38','-2000');
execute insertarpayments('47518', '28/01/2015 03:01:17','400');
execute insertarpayments('47518', '28/01/2015 03:01:21','400');
execute insertarpayments('47518', '28/01/2015 03:01:27','400');
execute insertarpayments('47518', '28/01/2015 03:01:30','400');
execute insertarpayments('47518', '28/01/2015 03:01:34','400');
execute insertarpayments('106398', '28/01/2015 19:05:44','700');
execute insertarpayments('106398', '28/01/2015 19:50:09','500');
execute insertarpayments('357', '28/01/2015 20:15:28','4000');
execute insertarpayments('53724', '28/01/2015 20:36:03','-630');
execute insertarpayments('53724', '28/01/2015 20:36:11','-2840');
execute insertarpayments('357', '28/01/2015 21:06:39','2000');
execute insertarpayments('67944', '28/01/2015 22:11:09','-800');
execute insertarpayments('101580', '28/01/2015 23:46:41','-1000');
execute insertarpayments('150469', '28/01/2015 23:52:06','-350');
execute insertarpayments('150469', '28/01/2015 23:52:18','2700');
execute insertarpayments('151812', '29/01/2015 02:31:03','-1370');
execute insertarpayments('150469', '29/01/2015 03:24:27','-450');
execute insertarpayments('150469', '29/01/2015 03:24:38','-900');
execute insertarpayments('150469', '29/01/2015 03:25:34','-900');
execute insertarpayments('1287', '29/01/2015 04:06:00','-1900');
execute insertarpayments('132609', '29/01/2015 18:51:45','750');
execute insertarpayments('108678', '29/01/2015 19:07:26','4000');
execute insertarpayments('64666', '29/01/2015 22:11:01','1000');
execute insertarpayments('151812', '29/01/2015 22:25:04','-1500');
execute insertarpayments('53724', '29/01/2015 23:23:10','2000');
execute insertarpayments('151812', '29/01/2015 23:31:55','-910');
execute insertarpayments('108677', '29/01/2015 23:32:40','-4000');
execute insertarpayments('53724', '30/01/2015 00:09:29','2000');
execute insertarpayments('70533', '30/01/2015 00:10:42','-1000');
execute insertarpayments('64666', '30/01/2015 00:45:42','-1000');
execute insertarpayments('151812', '30/01/2015 01:05:08','-1000');
execute insertarpayments('151812', '30/01/2015 01:29:47','-800');
execute insertarpayments('151812', '30/01/2015 02:07:37','-350');
execute insertarpayments('136976', '30/01/2015 02:13:21','-2100');
execute insertarpayments('151812', '30/01/2015 02:09:38','-500');
execute insertarpayments('108677', '30/01/2015 02:26:31','-400');
execute insertarpayments('36516', '30/01/2015 02:23:46','-1395');
execute insertarpayments('136976', '30/01/2015 02:28:45','-800');
execute insertarpayments('108677', '30/01/2015 02:33:18','-1100');
execute insertarpayments('148178', '30/01/2015 02:47:33','500');
execute insertarpayments('17969', '30/01/2015 02:51:17','-7100');
execute insertarpayments('148178', '30/01/2015 02:52:13','-3500');
execute insertarpayments('24876', '30/01/2015 03:15:35','-2820');
execute insertarpayments('151812', '30/01/2015 03:20:18','-1500');
execute insertarpayments('882', '30/01/2015 03:21:22','-2300');
execute insertarpayments('151812', '30/01/2015 03:33:59','-780');
execute insertarpayments('75024', '30/01/2015 03:51:54','-4270');
execute insertarpayments('151812', '30/01/2015 04:02:00','-2210');
execute insertarpayments('148178', '30/01/2015 04:02:20','-2000');
execute insertarpayments('120264', '30/01/2015 19:08:07','1000');
execute insertarpayments('26058', '30/01/2015 19:25:38','3000');
execute insertarpayments('102606', '30/01/2015 19:29:44','500');
execute insertarpayments('143708', '30/01/2015 20:25:34','600');
execute insertarpayments('81124', '30/01/2015 20:23:32','-1700');
execute insertarpayments('8018', '30/01/2015 20:53:51','600');
execute insertarpayments('8018', '30/01/2015 20:58:25','600');
execute insertarpayments('8018', '30/01/2015 21:24:13','-1200');
execute insertarpayments('8018', '30/01/2015 21:24:30','-600');
execute insertarpayments('151812', '30/01/2015 23:03:43','-1000');
execute insertarpayments('151812', '30/01/2015 23:05:26','-500');
execute insertarpayments('151812', '30/01/2015 23:07:52','-500');
execute insertarpayments('151812', '31/01/2015 00:07:57','-2450');
execute insertarpayments('151812', '31/01/2015 00:19:17','-1000');
execute insertarpayments('151812', '31/01/2015 00:21:05','-700');
execute insertarpayments('151812', '31/01/2015 00:21:33','-7001');
execute insertarpayments('70533', '31/01/2015 00:28:15','-1600');
execute insertarpayments('882', '31/01/2015 01:02:06','-2300');
execute insertarpayments('70533', '31/01/2015 01:25:28','-1100');
execute insertarpayments('146434', '31/01/2015 02:03:44','-1100');
execute insertarpayments('26058', '31/01/2015 02:05:19','-3150');
execute insertarpayments('66032', '31/01/2015 02:53:13','-22000');
execute insertarpayments('151812', '31/01/2015 03:53:22','-3000');
execute insertarpayments('16504', '31/01/2015 18:45:28','500');
execute insertarpayments('147815', '31/01/2015 18:53:05','-1500');
execute insertarpayments('102606', '31/01/2015 19:12:46','500');
execute insertarpayments('21553', '31/01/2015 19:34:32','-700');
execute insertarpayments('69103', '31/01/2015 19:57:31','-500');
execute insertarpayments('69103', '31/01/2015 20:53:48','-450');
execute insertarpayments('108677', '31/01/2015 21:29:00','1000');
execute insertarpayments('108677', '31/01/2015 21:38:48','2000');
execute insertarpayments('1027', '31/01/2015 21:56:37','6000');
execute insertarpayments('120264', '31/01/2015 22:14:57','500');
execute insertarpayments('120264', '31/01/2015 22:15:40','500');
execute insertarpayments('120264', '31/01/2015 22:19:41','300');
execute insertarpayments('108677', '31/01/2015 22:20:58','-2000');
execute insertarpayments('105821', '31/01/2015 22:39:44','-1100');
execute insertarpayments('76237', '31/01/2015 23:00:56','1500');
execute insertarpayments('76865', '31/01/2015 23:54:51','1000');
execute insertarpayments('151812', '31/01/2015 23:58:29','-1500');
execute insertarpayments('1579', '01/02/2015 00:13:57','500');
execute insertarpayments('76237', '01/02/2015 00:58:53','1500');
execute insertarpayments('108677', '01/02/2015 00:59:14','-1000');
execute insertarpayments('108677', '01/02/2015 00:59:18','-550');
execute insertarpayments('357', '01/02/2015 01:31:33','4000');
execute insertarpayments('357', '01/02/2015 01:31:38','-4000');
execute insertarpayments('357', '01/02/2015 01:31:48','-3650');
execute insertarpayments('963', '01/02/2015 01:52:37','-1700');
execute insertarpayments('76237', '01/02/2015 02:51:33','1500');
execute insertarpayments('76865', '01/02/2015 04:04:05','-6500');
execute insertarpayments('53724', '01/02/2015 19:54:57','2000');
execute insertarpayments('91919', '01/02/2015 20:20:32','1000');
execute insertarpayments('8018', '01/02/2015 20:37:26','700');
execute insertarpayments('8018', '01/02/2015 20:48:27','400');
execute insertarpayments('8018', '01/02/2015 20:54:54','650');
execute insertarpayments('91919', '01/02/2015 20:58:36','500');
execute insertarpayments('8018', '01/02/2015 21:05:36','1000');
execute insertarpayments('694', '01/02/2015 21:13:16','-1450');
execute insertarpayments('8018', '01/02/2015 21:11:11','500');
execute insertarpayments('8018', '01/02/2015 21:27:40','800');
execute insertarpayments('53724', '01/02/2015 21:36:28','4500');
execute insertarpayments('136976', '01/02/2015 22:17:38','-500');
execute insertarpayments('136976', '01/02/2015 22:46:05','-800');
execute insertarpayments('136976', '01/02/2015 22:46:10','-200');
execute insertarpayments('81124', '02/02/2015 01:19:57','-3750');
execute insertarpayments('148178', '02/02/2015 03:06:19','-2750');
execute insertarpayments('75024', '02/02/2015 03:11:53','-1500');
execute insertarpayments('73143', '02/02/2015 03:12:01','-1500');
execute insertarpayments('12180', '02/02/2015 19:02:08','-3300');
execute insertarpayments('108677', '02/02/2015 20:17:43','3000');
execute insertarpayments('108677', '02/02/2015 20:17:49','-3000');
execute insertarpayments('694', '02/02/2015 21:02:51','-3150');
execute insertarpayments('17969', '03/02/2015 00:04:35','-3100');
execute insertarpayments('148409', '03/02/2015 03:48:02','-1000');
execute insertarpayments('148409', '03/02/2015 03:57:29','-620');
execute insertarpayments('694', '03/02/2015 19:56:44','-1350');
execute insertarpayments('3036', '03/02/2015 20:08:18','-1500');
execute insertarpayments('1674', '03/02/2015 20:20:33','-550');
execute insertarpayments('1674', '03/02/2015 20:20:39','-350');
execute insertarpayments('81124', '03/02/2015 20:24:19','-550');
execute insertarpayments('3036', '03/02/2015 20:37:28','-500');
execute insertarpayments('3036', '03/02/2015 20:54:40','-500');
execute insertarpayments('81124', '03/02/2015 21:03:35','3420');
execute insertarpayments('3036', '03/02/2015 21:09:08','-1500');
execute insertarpayments('3036', '03/02/2015 21:15:30','-1000');
execute insertarpayments('81124', '03/02/2015 22:08:35','-1000');
execute insertarpayments('148178', '03/02/2015 23:33:34','1000');
execute insertarpayments('357', '03/02/2015 23:46:22','2000');
execute insertarpayments('357', '03/02/2015 23:46:28','-2000');
execute insertarpayments('357', '03/02/2015 23:46:54','-174');
execute insertarpayments('148178', '03/02/2015 23:55:33','500');
execute insertarpayments('148178', '04/02/2015 00:47:43','500');
execute insertarpayments('15192', '04/02/2015 03:43:03','150');
execute insertarpayments('15192', '04/02/2015 03:43:08','-150');
execute insertarpayments('15192', '04/02/2015 03:43:14','-1000');
execute insertarpayments('38', '04/02/2015 18:17:56','1000');
execute insertarpayments('38', '04/02/2015 18:56:40','-1460');
execute insertarpayments('38', '04/02/2015 18:56:47','-1000');
execute insertarpayments('14172', '04/02/2015 19:52:50','1000');
execute insertarpayments('694', '04/02/2015 20:02:47','-1350');
execute insertarpayments('14172', '04/02/2015 20:23:29','500');
execute insertarpayments('28908', '04/02/2015 20:29:21','500');
execute insertarpayments('2906', '04/02/2015 20:41:25','-700');
execute insertarpayments('14172', '04/02/2015 21:13:29','1500');
execute insertarpayments('14172', '04/02/2015 21:27:17','1000');
execute insertarpayments('14172', '04/02/2015 21:38:53','500');
execute insertarpayments('8018', '04/02/2015 22:33:38','-1500');
execute insertarpayments('120364', '04/02/2015 22:38:44','2000');
execute insertarpayments('150826', '04/02/2015 23:12:17','830');
execute insertarpayments('15192', '04/02/2015 23:09:54','400');
execute insertarpayments('120364', '04/02/2015 23:14:41','1000');
execute insertarpayments('101580', '05/02/2015 00:06:54','500');
execute insertarpayments('101580', '05/02/2015 00:07:26','500');
execute insertarpayments('101580', '05/02/2015 00:20:37','500');
execute insertarpayments('101580', '05/02/2015 00:30:34','500');
execute insertarpayments('15192', '05/02/2015 00:33:14','500');
execute insertarpayments('15192', '05/02/2015 00:33:22','120');
execute insertarpayments('101580', '05/02/2015 00:43:39','500');
execute insertarpayments('120364', '05/02/2015 01:05:43','2000');
execute insertarpayments('84405', '05/02/2015 01:20:21','-1500');
execute insertarpayments('120364', '05/02/2015 02:26:16','-4000');
execute insertarpayments('24876', '05/02/2015 02:30:54','-2980');
execute insertarpayments('120364', '05/02/2015 02:39:58','-200');
execute insertarpayments('150826', '05/02/2015 02:51:44','-2000');
execute insertarpayments('8018', '05/02/2015 20:41:45','-3000');
execute insertarpayments('357', '05/02/2015 22:58:33','-314');
execute insertarpayments('101580', '05/02/2015 23:04:42','500');
execute insertarpayments('174', '05/02/2015 23:36:18','-1124');
execute insertarpayments('23995', '05/02/2015 23:43:45','-4350');
execute insertarpayments('8286', '06/02/2015 00:44:07','17000');
execute insertarpayments('152058', '06/02/2015 01:06:49','1000');
execute insertarpayments('15584', '06/02/2015 01:19:01','-2000');
execute insertarpayments('101580', '06/02/2015 01:29:12','-500');
execute insertarpayments('101580', '06/02/2015 01:29:17','300');
execute insertarpayments('101580', '06/02/2015 01:29:25','300');
execute insertarpayments('101580', '06/02/2015 01:29:30','200');
execute insertarpayments('8286', '06/02/2015 02:29:25','-7000');
execute insertarpayments('101580', '06/02/2015 02:49:40','-800');
execute insertarpayments('101580', '06/02/2015 02:49:47','-2500');
execute insertarpayments('8286', '06/02/2015 02:55:22','7000');
execute insertarpayments('8286', '06/02/2015 03:05:58','20000');
execute insertarpayments('17969', '06/02/2015 03:33:06','-4900');
execute insertarpayments('152058', '06/02/2015 03:34:43','-1165');
execute insertarpayments('8286', '06/02/2015 04:00:03','-13000');
execute insertarpayments('3036', '06/02/2015 18:33:48','-1000');
execute insertarpayments('24876', '06/02/2015 19:28:16','2500');
execute insertarpayments('143708', '06/02/2015 21:20:55','-1700');
execute insertarpayments('103116', '06/02/2015 21:36:43','-500');
execute insertarpayments('108677', '06/02/2015 22:06:03','3000');
execute insertarpayments('357', '06/02/2015 22:32:20','5000');
execute insertarpayments('357', '06/02/2015 23:17:24','7000');
execute insertarpayments('357', '06/02/2015 23:17:31','-350');
execute insertarpayments('11976', '06/02/2015 23:37:22','1000');
execute insertarpayments('108677', '06/02/2015 23:55:51','5000');
execute insertarpayments('76865', '07/02/2015 00:33:20','1000');
execute insertarpayments('3036', '07/02/2015 00:36:12','-4500');
execute insertarpayments('11976', '07/02/2015 00:40:33','-1500');
execute insertarpayments('108677', '07/02/2015 00:47:18','-5000');
execute insertarpayments('3036', '07/02/2015 01:09:30','-3000');
execute insertarpayments('146434', '07/02/2015 01:16:45','1000');
execute insertarpayments('113870', '07/02/2015 01:29:23','-2000');
execute insertarpayments('76865', '07/02/2015 01:30:48','-2200');
execute insertarpayments('108677', '07/02/2015 01:36:39','1000');
execute insertarpayments('76865', '07/02/2015 02:18:25','-2000');
execute insertarpayments('101580', '07/02/2015 03:05:28','-3000');
execute insertarpayments('3036', '07/02/2015 03:06:26','-4500');
execute insertarpayments('694', '07/02/2015 03:58:01','-1000');
execute insertarpayments('2048', '07/02/2015 21:45:22','-850');
execute insertarpayments('109612', '07/02/2015 23:43:27','-1300');
execute insertarpayments('8018', '07/02/2015 23:56:01','-1250');
execute insertarpayments('109612', '08/02/2015 00:15:49','-500');
execute insertarpayments('125597', '08/02/2015 00:16:39','-3000');
execute insertarpayments('81129', '08/02/2015 00:17:42','-1900');
execute insertarpayments('152058', '08/02/2015 00:24:30','-2700');
execute insertarpayments('76237', '08/02/2015 00:34:21','1500');
execute insertarpayments('101580', '08/02/2015 00:42:44','-1500');
execute insertarpayments('146438', '08/02/2015 00:43:48','1000');
execute insertarpayments('120264', '08/02/2015 18:57:20','1000');
execute insertarpayments('357', '08/02/2015 22:04:21','6000');
execute insertarpayments('150826', '08/02/2015 22:43:40','630');
execute insertarpayments('152174', '08/02/2015 23:13:01','2000');
execute insertarpayments('143708', '09/02/2015 02:01:57','-5100');
execute insertarpayments('140822', '09/02/2015 02:57:00','-800');
execute insertarpayments('140822', '09/02/2015 02:57:09','-800');
execute insertarpayments('684', '09/02/2015 19:10:26','1000');
execute insertarpayments('38', '09/02/2015 19:10:41','500');
execute insertarpayments('38', '09/02/2015 19:10:48','500');
execute insertarpayments('108677', '09/02/2015 19:14:30','20000');
execute insertarpayments('108677', '09/02/2015 19:14:47','-20000');
execute insertarpayments('143708', '09/02/2015 20:45:20','-1900');
execute insertarpayments('38', '09/02/2015 20:45:45','-1000');
execute insertarpayments('38', '09/02/2015 20:45:51','-400');
execute insertarpayments('8018', '09/02/2015 20:46:41','1000');
execute insertarpayments('22622', '09/02/2015 21:46:48','-1450');
execute insertarpayments('22622', '09/02/2015 21:46:53','1000');
execute insertarpayments('5943', '09/02/2015 22:09:58','-6000');
execute insertarpayments('357', '09/02/2015 22:16:26','-12000');
execute insertarpayments('20006', '09/02/2015 23:33:06','1000');
execute insertarpayments('20006', '09/02/2015 23:33:53','1000');
execute insertarpayments('17969', '09/02/2015 23:39:07','-2350');
execute insertarpayments('53724', '10/02/2015 00:01:06','-1400');
execute insertarpayments('1319', '10/02/2015 01:08:54','-1200');
execute insertarpayments('1319', '10/02/2015 01:08:58','500');
execute insertarpayments('1319', '10/02/2015 01:09:02','-500');
execute insertarpayments('353', '10/02/2015 02:25:13','-1200');
execute insertarpayments('20006', '10/02/2015 03:28:35','500');
execute insertarpayments('15192', '10/02/2015 19:12:52','600');
execute insertarpayments('3036', '10/02/2015 20:36:55','-800');
execute insertarpayments('2906', '10/02/2015 20:44:57','-850');
execute insertarpayments('3372', '10/02/2015 20:56:02','1000');
execute insertarpayments('3292', '10/02/2015 21:15:56','-1800');
execute insertarpayments('143708', '10/02/2015 21:26:02','-3350');
execute insertarpayments('59528', '10/02/2015 21:48:02','-500');
execute insertarpayments('59528', '10/02/2015 21:48:08','-1500');
execute insertarpayments('3036', '10/02/2015 23:02:22','-850');
execute insertarpayments('357', '10/02/2015 23:09:44','-299');
execute insertarpayments('3036', '11/02/2015 00:35:05','-1050');
execute insertarpayments('3036', '11/02/2015 00:35:10','-800');
execute insertarpayments('143708', '11/02/2015 00:41:41','-3500');
execute insertarpayments('143708', '11/02/2015 01:33:56','-4000');
execute insertarpayments('10261', '11/02/2015 02:55:39','-1050');
execute insertarpayments('15192', '11/02/2015 19:13:01','450');
execute insertarpayments('8018', '11/02/2015 19:23:38','-700');
execute insertarpayments('8018', '11/02/2015 19:33:40','-2000');
execute insertarpayments('15192', '11/02/2015 19:47:12','500');
execute insertarpayments('152206', '11/02/2015 19:47:54','1000');
execute insertarpayments('3292', '11/02/2015 19:52:17','-1800');
execute insertarpayments('8018', '11/02/2015 20:07:15','-1800');
execute insertarpayments('8018', '11/02/2015 20:30:54','-1565');
execute insertarpayments('152206', '11/02/2015 20:31:07','-1400');
execute insertarpayments('9997', '11/02/2015 20:41:20','500');
execute insertarpayments('9997', '11/02/2015 20:56:16','500');
execute insertarpayments('9997', '11/02/2015 21:01:45','500');
execute insertarpayments('8018', '11/02/2015 21:02:05','-4000');
execute insertarpayments('9997', '11/02/2015 21:05:30','500');
execute insertarpayments('9997', '11/02/2015 21:09:52','500');
execute insertarpayments('9997', '11/02/2015 21:16:06','500');
execute insertarpayments('73107', '11/02/2015 21:35:56','-1000');
execute insertarpayments('174', '11/02/2015 22:03:38','-905');
execute insertarpayments('174', '11/02/2015 22:03:46','-233');
execute insertarpayments('143708', '11/02/2015 22:12:39','-5500');
execute insertarpayments('149024', '12/02/2015 00:37:45','-800');
execute insertarpayments('136590', '12/02/2015 00:38:02','-1300');
execute insertarpayments('101580', '12/02/2015 01:01:10','-1000');
execute insertarpayments('64666', '12/02/2015 18:42:52','1000');
execute insertarpayments('55914', '12/02/2015 18:54:06','2000');
execute insertarpayments('8018', '12/02/2015 19:18:57','600');
execute insertarpayments('38', '12/02/2015 19:36:58','1000');
execute insertarpayments('76865', '12/02/2015 20:14:00','1000');
execute insertarpayments('55914', '12/02/2015 20:15:08','-4500');
execute insertarpayments('3292', '12/02/2015 21:14:45','-3700');
execute insertarpayments('76865', '12/02/2015 21:11:20','-3300');
execute insertarpayments('2906', '12/02/2015 21:33:34','-750');
execute insertarpayments('97357', '12/02/2015 21:42:26','700');
execute insertarpayments('146184', '12/02/2015 23:33:06','-1000');
execute insertarpayments('1579', '12/02/2015 23:37:45','500');
execute insertarpayments('101580', '12/02/2015 23:52:49','650');
execute insertarpayments('101580', '12/02/2015 23:52:59','600');
execute insertarpayments('101580', '13/02/2015 00:15:46','350');
execute insertarpayments('101580', '13/02/2015 00:23:30','300');
execute insertarpayments('357', '13/02/2015 00:23:52','1000');
execute insertarpayments('101580', '13/02/2015 01:10:33','-1600');
execute insertarpayments('101580', '13/02/2015 01:10:50','350');
execute insertarpayments('40995', '13/02/2015 01:23:13','-3600');
execute insertarpayments('101580', '13/02/2015 01:32:52','600');
execute insertarpayments('17969', '13/02/2015 01:46:18','-2000');
execute insertarpayments('64666', '13/02/2015 02:00:25','-1000');
execute insertarpayments('111604', '13/02/2015 02:46:54','-1900');
execute insertarpayments('111604', '13/02/2015 02:47:00','-1000');
execute insertarpayments('23995', '13/02/2015 03:12:29','600');
execute insertarpayments('79502', '13/02/2015 03:25:17','-880');
execute insertarpayments('15192', '13/02/2015 18:42:56','500');
execute insertarpayments('137888', '13/02/2015 21:39:50','-1000');
execute insertarpayments('3036', '13/02/2015 21:40:10','-1000');
execute insertarpayments('146438', '13/02/2015 21:50:40','1000');
execute insertarpayments('146434', '13/02/2015 21:50:53','1000');
execute insertarpayments('49054', '13/02/2015 22:05:49','1000');
execute insertarpayments('108552', '13/02/2015 22:11:57','-2100');
execute insertarpayments('174', '13/02/2015 22:12:19','-1500');
execute insertarpayments('108677', '13/02/2015 22:15:08','4000');
execute insertarpayments('116226', '13/02/2015 22:18:42','100');
execute insertarpayments('116226', '13/02/2015 22:18:55','-3500');
execute insertarpayments('2906', '13/02/2015 22:19:31','-1700');
execute insertarpayments('108677', '13/02/2015 23:25:31','-4000');
execute insertarpayments('125597', '13/02/2015 23:48:35','500');
execute insertarpayments('125597', '13/02/2015 23:48:41','-500');
execute insertarpayments('125597', '13/02/2015 23:48:47','-900');
execute insertarpayments('101580', '14/02/2015 00:04:52','1000');
execute insertarpayments('3036', '14/02/2015 00:05:35','-350');
execute insertarpayments('6343', '14/02/2015 00:30:03','-4800');
execute insertarpayments('101580', '14/02/2015 01:00:27','500');
execute insertarpayments('101580', '14/02/2015 01:05:07','500');
execute insertarpayments('101580', '14/02/2015 01:15:04','500');
execute insertarpayments('3036', '14/02/2015 01:26:46','-1400');
execute insertarpayments('101580', '14/02/2015 01:24:45','500');
execute insertarpayments('125597', '14/02/2015 01:31:30','-2450');
execute insertarpayments('101580', '14/02/2015 01:48:11','500');
execute insertarpayments('75326', '14/02/2015 01:59:10','500');
execute insertarpayments('75326', '14/02/2015 02:15:14','600');
execute insertarpayments('101580', '14/02/2015 02:15:41','500');
execute insertarpayments('3036', '14/02/2015 03:07:06','-3500');
execute insertarpayments('3036', '14/02/2015 03:07:13','-850');
execute insertarpayments('84405', '14/02/2015 03:07:43','-1550');
execute insertarpayments('125597', '14/02/2015 03:11:58','-1550');
execute insertarpayments('26058', '14/02/2015 19:39:31','3000');
execute insertarpayments('1183', '14/02/2015 21:26:16','1000');
execute insertarpayments('150826', '14/02/2015 21:29:50','500');
execute insertarpayments('69103', '14/02/2015 21:38:56','-3550');
execute insertarpayments('26058', '15/02/2015 01:10:17','-2000');
execute insertarpayments('8018', '15/02/2015 22:41:11','600');
execute insertarpayments('8018', '15/02/2015 22:41:18','-600');
execute insertarpayments('8018', '15/02/2015 22:41:33','-1400');
execute insertarpayments('53724', '15/02/2015 22:50:25','-1300');
execute insertarpayments('8018', '15/02/2015 22:57:09','-1000');
execute insertarpayments('107634', '16/02/2015 01:27:24','1800');
execute insertarpayments('8018', '16/02/2015 19:28:35','1200');
execute insertarpayments('136590', '16/02/2015 20:38:19','500');
execute insertarpayments('59406', '16/02/2015 20:39:29','500');
execute insertarpayments('49054', '16/02/2015 20:42:23','1000');
execute insertarpayments('136590', '16/02/2015 20:45:36','950');
execute insertarpayments('59406', '16/02/2015 21:08:06','-6000');
execute insertarpayments('59406', '16/02/2015 21:41:01','3000');
execute insertarpayments('1163', '16/02/2015 23:19:40','-2200');
execute insertarpayments('59406', '16/02/2015 23:20:10','-11800');
execute insertarpayments('357', '17/02/2015 00:18:05','3000');
execute insertarpayments('136590', '17/02/2015 00:19:11','-1000');
execute insertarpayments('357', '17/02/2015 00:28:52','-3750');
execute insertarpayments('49054', '17/02/2015 00:38:53','1000');
execute insertarpayments('59406', '17/02/2015 00:39:16','-1300');
execute insertarpayments('49054', '17/02/2015 00:53:19','1000');
execute insertarpayments('59406', '17/02/2015 01:12:31','-4000');
execute insertarpayments('59406', '17/02/2015 01:58:48','-7000');
execute insertarpayments('136590', '17/02/2015 02:10:53','450');
execute insertarpayments('136590', '17/02/2015 02:16:45','400');
execute insertarpayments('136590', '17/02/2015 02:21:58','400');
execute insertarpayments('136590', '17/02/2015 03:13:26','-850');
execute insertarpayments('425', '17/02/2015 03:58:23','-1135');
execute insertarpayments('60337', '17/02/2015 19:32:42','-1250');
execute insertarpayments('60337', '17/02/2015 20:16:53','-2000');
execute insertarpayments('116226', '17/02/2015 21:38:41','-3500');
execute insertarpayments('7609', '17/02/2015 23:01:50','1000');
execute insertarpayments('59406', '17/02/2015 23:42:05','1000');
execute insertarpayments('59406', '18/02/2015 00:43:30','2000');
execute insertarpayments('59406', '18/02/2015 00:58:47','2000');
execute insertarpayments('152377', '18/02/2015 01:25:38','-2000');
execute insertarpayments('152464', '18/02/2015 01:50:19','-1658,5');
execute insertarpayments('7609', '18/02/2015 03:03:09','-2200');
execute insertarpayments('447', '18/02/2015 03:22:36','-2350');
execute insertarpayments('55914', '18/02/2015 18:30:13','2000');
execute insertarpayments('120264', '18/02/2015 19:25:18','600');
execute insertarpayments('55914', '18/02/2015 19:51:31','2500');
execute insertarpayments('59406', '18/02/2015 20:26:43','1000');
execute insertarpayments('59406', '18/02/2015 21:28:00','1500');
execute insertarpayments('55914', '18/02/2015 21:35:15','2800');
execute insertarpayments('15192', '18/02/2015 22:21:57','500');
execute insertarpayments('15192', '18/02/2015 22:22:04','500');
execute insertarpayments('116226', '18/02/2015 22:44:11','-1500');
execute insertarpayments('116226', '18/02/2015 23:09:35','-3000');
execute insertarpayments('55914', '18/02/2015 23:19:19','3000');
execute insertarpayments('55914', '19/02/2015 01:22:29','-8300');
execute insertarpayments('55914', '19/02/2015 01:22:38','-10000');
execute insertarpayments('70533', '19/02/2015 01:24:14','-1350');
execute insertarpayments('52367', '19/02/2015 01:24:34','950');
execute insertarpayments('152489', '19/02/2015 01:57:41','-1500');
execute insertarpayments('52367', '19/02/2015 02:01:55','850');
execute insertarpayments('152489', '19/02/2015 02:47:00','-1700');
execute insertarpayments('152489', '19/02/2015 03:05:31','-1300');
execute insertarpayments('120264', '19/02/2015 18:49:15','1000');
execute insertarpayments('120264', '19/02/2015 19:01:04','600');
execute insertarpayments('76865', '19/02/2015 20:03:51','1000');
execute insertarpayments('22578', '19/02/2015 20:09:57','2350');
execute insertarpayments('8018', '19/02/2015 20:42:01','1000');
execute insertarpayments('76865', '19/02/2015 20:44:12','-3150');
execute insertarpayments('59528', '19/02/2015 20:49:17','-1000');
execute insertarpayments('120264', '19/02/2015 21:17:08','-1600');
execute insertarpayments('357', '19/02/2015 21:18:39','6000');
execute insertarpayments('120264', '19/02/2015 21:24:37','-1400');
execute insertarpayments('143708', '19/02/2015 21:38:42','600');
execute insertarpayments('67251', '19/02/2015 21:58:42','-1050');
execute insertarpayments('1579', '19/02/2015 22:11:54','1000');
execute insertarpayments('20066', '19/02/2015 22:43:30','-1200');
execute insertarpayments('31169', '20/02/2015 01:05:31','-1080');
execute insertarpayments('101580', '20/02/2015 01:46:30','-3700');
execute insertarpayments('110598', '20/02/2015 02:01:16','500');
execute insertarpayments('135644', '20/02/2015 03:02:18','-2000');
execute insertarpayments('123330', '20/02/2015 03:19:22','-1100');
execute insertarpayments('2364', '20/02/2015 03:23:07','-1000');
execute insertarpayments('108677', '20/02/2015 03:57:19','-1000');
execute insertarpayments('64666', '20/02/2015 18:31:12','1000');
execute insertarpayments('120264', '20/02/2015 18:31:24','1000');
execute insertarpayments('152378', '20/02/2015 18:46:00','-1000');
execute insertarpayments('152378', '20/02/2015 18:47:17','-500');
execute insertarpayments('120264', '20/02/2015 20:46:20','-1000');
execute insertarpayments('120264', '20/02/2015 20:46:27','-3000');
execute insertarpayments('357', '20/02/2015 21:40:11','-3150');
execute insertarpayments('28908', '20/02/2015 21:59:17','-1500');
execute insertarpayments('132609', '20/02/2015 22:20:26','1600');
execute insertarpayments('462', '20/02/2015 22:31:24','-1300');
execute insertarpayments('357', '20/02/2015 23:23:44','-500');
execute insertarpayments('129380', '20/02/2015 23:38:43','-1000');
execute insertarpayments('152378', '21/02/2015 00:06:42','-2300');
execute insertarpayments('152377', '21/02/2015 00:06:50','-1100');
execute insertarpayments('132609', '21/02/2015 00:11:35','-610');
execute insertarpayments('152378', '21/02/2015 00:53:05','-1000');
execute insertarpayments('101580', '21/02/2015 01:25:05','1000');
execute insertarpayments('101580', '21/02/2015 01:25:14','600');
execute insertarpayments('129380', '21/02/2015 02:55:10','-900');
execute insertarpayments('129380', '21/02/2015 03:00:04','-100');
execute insertarpayments('148101', '21/02/2015 03:00:13','-1050');
execute insertarpayments('918', '21/02/2015 21:28:37','-1500');
execute insertarpayments('152524', '21/02/2015 22:10:10','400');
execute insertarpayments('49054', '21/02/2015 22:15:49','-1132,5');
execute insertarpayments('425', '21/02/2015 22:21:41','-2100');
execute insertarpayments('76865', '21/02/2015 23:10:28','1000');
execute insertarpayments('28908', '21/02/2015 23:26:04','-1900');
execute insertarpayments('76865', '21/02/2015 23:57:51','-3120');
execute insertarpayments('21766', '22/02/2015 00:14:33','-2000');
execute insertarpayments('109612', '22/02/2015 00:35:23','-2000');
execute insertarpayments('152377', '22/02/2015 01:25:59','-1850');
execute insertarpayments('99221', '22/02/2015 01:45:36','-2500');
execute insertarpayments('13348', '22/02/2015 01:54:28','800');
execute insertarpayments('152378', '22/02/2015 01:55:48','-800');
execute insertarpayments('123330', '22/02/2015 02:15:24','-700');
execute insertarpayments('120264', '22/02/2015 18:23:05','1600');
execute insertarpayments('120264', '22/02/2015 18:38:58','1600');
execute insertarpayments('918', '22/02/2015 21:33:42','-2280');
execute insertarpayments('6499', '22/02/2015 21:55:00','100');
execute insertarpayments('101580', '22/02/2015 22:34:36','700');
execute insertarpayments('357', '22/02/2015 23:30:02','2650');
execute insertarpayments('357', '22/02/2015 23:43:30','-2944');
execute insertarpayments('120264', '23/02/2015 18:54:23','1000');
execute insertarpayments('120264', '23/02/2015 19:16:44','-1000');
execute insertarpayments('120264', '23/02/2015 19:17:24','-7000');
execute insertarpayments('8018', '23/02/2015 20:44:56','-432');
execute insertarpayments('8018', '23/02/2015 20:45:02','-424');
execute insertarpayments('8018', '23/02/2015 20:45:08','300');
execute insertarpayments('8018', '23/02/2015 20:45:14','300');
execute insertarpayments('357', '23/02/2015 21:08:26','12500');
execute insertarpayments('8018', '23/02/2015 21:37:34','500');
execute insertarpayments('146434', '23/02/2015 21:42:33','1000');
execute insertarpayments('152639', '23/02/2015 22:22:26','-1600');
execute insertarpayments('357', '23/02/2015 22:56:20','2000');
execute insertarpayments('108677', '23/02/2015 23:05:01','2000');
execute insertarpayments('357', '23/02/2015 23:05:26','-2000');
execute insertarpayments('357', '23/02/2015 23:05:33','-830');
execute insertarpayments('108677', '23/02/2015 23:18:37','-2000');
execute insertarpayments('108677', '23/02/2015 23:18:43','-1800');
execute insertarpayments('150425', '24/02/2015 00:49:23','-700');
execute insertarpayments('108677', '24/02/2015 02:32:05','-1300');
execute insertarpayments('1674', '24/02/2015 19:17:36','-800');
execute insertarpayments('120929', '24/02/2015 19:17:48','-600');
execute insertarpayments('120264', '24/02/2015 20:20:33','1000');
execute insertarpayments('3292', '24/02/2015 20:27:21','1000');
execute insertarpayments('120264', '24/02/2015 20:36:17','600');
execute insertarpayments('120264', '24/02/2015 20:44:46','1000');
execute insertarpayments('6794', '24/02/2015 20:58:01','1000');
execute insertarpayments('120264', '25/02/2015 18:59:25','1000');
execute insertarpayments('120929', '25/02/2015 19:30:08','800');
execute insertarpayments('2589', '25/02/2015 19:47:13','1000');
execute insertarpayments('120929', '25/02/2015 20:04:25','180');
execute insertarpayments('3292', '25/02/2015 20:22:38','-3300');
execute insertarpayments('3292', '25/02/2015 20:28:36','-300');
execute insertarpayments('143708', '25/02/2015 20:49:34','-2300');
execute insertarpayments('149014', '25/02/2015 21:02:24','-1500');
execute insertarpayments('2589', '25/02/2015 21:56:08','1500');
execute insertarpayments('116226', '25/02/2015 22:07:39','-1500');
execute insertarpayments('126930', '25/02/2015 22:24:37','1600');
execute insertarpayments('447', '25/02/2015 23:06:23','1000');
execute insertarpayments('2589', '25/02/2015 23:07:55','-1500');
execute insertarpayments('116226', '25/02/2015 23:12:21','-2300');
execute insertarpayments('447', '25/02/2015 23:24:54','-1000');
execute insertarpayments('124652', '25/02/2015 23:29:35','-920');
execute insertarpayments('124653', '25/02/2015 23:29:44','-900');
execute insertarpayments('126930', '26/02/2015 00:08:28','800');
execute insertarpayments('116226', '26/02/2015 00:11:31','-2150');
execute insertarpayments('357', '26/02/2015 00:40:26','-700');
execute insertarpayments('116226', '26/02/2015 01:04:48','-3000');
execute insertarpayments('357', '26/02/2015 01:20:49','4000');
execute insertarpayments('357', '26/02/2015 01:20:56','-4000');
execute insertarpayments('56558', '26/02/2015 01:20:07','450');
execute insertarpayments('56558', '26/02/2015 01:20:42','380');
execute insertarpayments('56558', '26/02/2015 01:21:12','160');
execute insertarpayments('152662', '26/02/2015 01:52:17','-1000');
execute insertarpayments('152660', '26/02/2015 02:27:32','-2380');
execute insertarpayments('152660', '26/02/2015 02:27:42','1600');
execute insertarpayments('66032', '26/02/2015 18:09:07','1000');
execute insertarpayments('64666', '26/02/2015 19:15:28','1000');
execute insertarpayments('76865', '26/02/2015 19:15:51','1000');
execute insertarpayments('66032', '26/02/2015 19:25:18','2000');
execute insertarpayments('8018', '26/02/2015 19:53:51','600');
execute insertarpayments('8018', '26/02/2015 19:53:56','600');
execute insertarpayments('120264', '26/02/2015 20:12:52','600');
execute insertarpayments('120264', '26/02/2015 20:12:58','-600');
execute insertarpayments('120264', '26/02/2015 20:13:05','-1400');
execute insertarpayments('8018', '26/02/2015 20:19:41','600');
execute insertarpayments('143708', '26/02/2015 20:30:36','-3100');
execute insertarpayments('8018', '26/02/2015 20:47:00','600');
execute insertarpayments('76865', '26/02/2015 21:05:40','-6000');
execute insertarpayments('425', '26/02/2015 22:23:34','-1300');
execute insertarpayments('69103', '26/02/2015 22:29:18','500');
execute insertarpayments('24876', '26/02/2015 22:45:54','2100');
execute insertarpayments('10976', '26/02/2015 23:20:38','-1400');
execute insertarpayments('447', '27/02/2015 00:07:24','1000');
execute insertarpayments('109612', '27/02/2015 00:58:31','-2200');
execute insertarpayments('143708', '27/02/2015 01:02:33','-2000');
execute insertarpayments('143708', '27/02/2015 01:02:39','-3800');
execute insertarpayments('31169', '27/02/2015 01:17:46','1000');
execute insertarpayments('882', '27/02/2015 02:02:18','-2800');
execute insertarpayments('447', '27/02/2015 02:03:10','1000');
execute insertarpayments('19242', '27/02/2015 02:12:02','1000');
execute insertarpayments('19242', '27/02/2015 02:19:04','1000');
execute insertarpayments('19242', '27/02/2015 02:21:49','700');
execute insertarpayments('447', '27/02/2015 02:27:18','-1000');
execute insertarpayments('76865', '27/02/2015 02:36:16','-15500');
execute insertarpayments('447', '27/02/2015 02:44:02','1000');
execute insertarpayments('447', '27/02/2015 03:07:13','1000');
execute insertarpayments('447', '27/02/2015 03:28:09','1000');
execute insertarpayments('425', '27/02/2015 20:42:09','5000');
execute insertarpayments('107123', '27/02/2015 21:15:54','-1000');
execute insertarpayments('120264', '27/02/2015 21:21:40','-1000');
execute insertarpayments('143708', '27/02/2015 21:48:01','-2500');
execute insertarpayments('7270', '27/02/2015 22:51:11','-1650');
execute insertarpayments('67944', '27/02/2015 22:52:10','500');
execute insertarpayments('101580', '27/02/2015 22:55:38','950');
execute insertarpayments('21967', '27/02/2015 23:16:49','500');
execute insertarpayments('143708', '27/02/2015 23:28:46','-4000');
execute insertarpayments('704', '28/02/2015 00:03:00','-2100');
execute insertarpayments('143708', '28/02/2015 01:51:26','-2500');
execute insertarpayments('425', '28/02/2015 02:42:13','-5000');
execute insertarpayments('143708', '28/02/2015 03:00:50','-2000');
execute insertarpayments('143708', '28/02/2015 04:02:34','-1000');
execute insertarpayments('116226', '28/02/2015 19:16:19','-3000');
execute insertarpayments('963', '28/02/2015 19:20:19','1000');
execute insertarpayments('963', '28/02/2015 20:04:33','1000');
execute insertarpayments('207', '28/02/2015 20:18:41','-1000');
execute insertarpayments('143708', '28/02/2015 20:24:46','-3500');
execute insertarpayments('207', '28/02/2015 20:26:48','-150');
execute insertarpayments('1213', '28/02/2015 20:45:00','1000');
execute insertarpayments('963', '28/02/2015 20:55:31','1000');
execute insertarpayments('8018', '28/02/2015 21:09:19','600');
execute insertarpayments('8018', '28/02/2015 21:14:29','600');
execute insertarpayments('963', '28/02/2015 21:44:44','-3000');
execute insertarpayments('76865', '28/02/2015 21:51:54','1000');
execute insertarpayments('963', '28/02/2015 22:05:12','-410');
execute insertarpayments('143708', '28/02/2015 22:01:01','500');
execute insertarpayments('1213', '28/02/2015 22:10:39','-1050');
execute insertarpayments('1213', '28/02/2015 22:10:45','-1000');
execute insertarpayments('124011', '28/02/2015 22:15:44','-1500');
execute insertarpayments('101580', '28/02/2015 22:50:06','500');
execute insertarpayments('76865', '28/02/2015 23:20:37','-4760');
execute insertarpayments('28908', '01/03/2015 00:38:15','-1570');
execute insertarpayments('56558', '01/03/2015 00:41:42','-4600');
execute insertarpayments('207', '01/03/2015 00:47:17','-400');
execute insertarpayments('152165', '01/03/2015 02:12:00','-2000');
execute insertarpayments('28908', '01/03/2015 02:28:16','600');
execute insertarpayments('28908', '01/03/2015 02:28:29','970');
execute insertarpayments('108677', '01/03/2015 02:45:08','-1550');
execute insertarpayments('120264', '01/03/2015 20:27:09','800');
execute insertarpayments('143708', '01/03/2015 21:23:53','-3500');
execute insertarpayments('138371', '01/03/2015 21:44:08','-1300');
execute insertarpayments('143708', '01/03/2015 22:15:23','-2000');
execute insertarpayments('143708', '01/03/2015 23:06:55','-1500');
execute insertarpayments('143708', '01/03/2015 23:31:17','-1000');
execute insertarpayments('107123', '02/03/2015 00:08:20','-2500');
execute insertarpayments('75024', '02/03/2015 00:21:21','-700');
execute insertarpayments('143708', '02/03/2015 00:41:11','-2000');
execute insertarpayments('28908', '02/03/2015 00:56:04','-1520');
execute insertarpayments('143708', '02/03/2015 01:28:20','-2000');
execute insertarpayments('28908', '02/03/2015 01:40:06','-1105');
execute insertarpayments('90207', '02/03/2015 02:54:56','300');
execute insertarpayments('90207', '02/03/2015 02:55:03','-300');
execute insertarpayments('90207', '02/03/2015 02:55:08','300');
execute insertarpayments('90207', '02/03/2015 02:55:13','200');
execute insertarpayments('90207', '02/03/2015 03:09:41','200');
execute insertarpayments('90207', '02/03/2015 03:13:45','-300');
execute insertarpayments('90207', '02/03/2015 03:13:51','-200');
execute insertarpayments('90207', '02/03/2015 03:30:03','200');
execute insertarpayments('90207', '02/03/2015 03:51:44','-200');
execute insertarpayments('846', '02/03/2015 03:55:37','-1300');
execute insertarpayments('846', '02/03/2015 03:55:48','-500');
execute insertarpayments('90207', '02/03/2015 03:57:01','-200');
execute insertarpayments('90207', '02/03/2015 03:58:45','-150');
execute insertarpayments('143708', '02/03/2015 20:04:18','-1200');
execute insertarpayments('143708', '02/03/2015 20:18:28','-800');
execute insertarpayments('3292', '02/03/2015 20:45:08','-1200');
execute insertarpayments('21967', '02/03/2015 20:51:03','400');
execute insertarpayments('136983', '02/03/2015 20:59:16','-590');
execute insertarpayments('143708', '02/03/2015 21:02:43','-1000');
execute insertarpayments('357', '02/03/2015 21:03:00','1000');
execute insertarpayments('357', '02/03/2015 22:19:02','4000');
execute insertarpayments('174', '02/03/2015 22:49:28','-1796');
execute insertarpayments('101580', '02/03/2015 23:03:58','800');
execute insertarpayments('101580', '03/03/2015 00:29:23','-1000');
execute insertarpayments('116226', '03/03/2015 00:49:52','-8500');
execute insertarpayments('108677', '03/03/2015 02:51:09','-4000');
execute insertarpayments('69103', '03/03/2015 18:37:31','1000');
execute insertarpayments('120264', '03/03/2015 18:37:43','1000');
execute insertarpayments('120264', '03/03/2015 19:01:12','600');
execute insertarpayments('8018', '03/03/2015 20:49:29','-1590');
execute insertarpayments('8018', '03/03/2015 20:49:36','-855');
execute insertarpayments('53711', '03/03/2015 21:00:54','1000');
execute insertarpayments('53711', '03/03/2015 21:35:42','1000');
execute insertarpayments('8018', '03/03/2015 21:50:39','-3500');
execute insertarpayments('53711', '03/03/2015 21:57:31','1000');
execute insertarpayments('141607', '03/03/2015 22:15:47','-800');
execute insertarpayments('357', '03/03/2015 22:21:26','-5000');
execute insertarpayments('357', '03/03/2015 23:03:17','-3000');
execute insertarpayments('53711', '03/03/2015 23:31:37','1000');
execute insertarpayments('152871', '04/03/2015 00:14:35','1000');
execute insertarpayments('53711', '04/03/2015 00:54:59','-4050');
execute insertarpayments('53711', '04/03/2015 01:37:38','-2000');
execute insertarpayments('53711', '04/03/2015 01:38:26','1000');
execute insertarpayments('6595', '04/03/2015 19:09:11','-1050');
execute insertarpayments('5329', '04/03/2015 19:40:54','-1000');
execute insertarpayments('5329', '04/03/2015 19:55:54','-1000');
execute insertarpayments('8018', '04/03/2015 20:54:09','-5740');
execute insertarpayments('150826', '04/03/2015 22:38:30','1200');
execute insertarpayments('132609', '04/03/2015 23:20:41','700');
execute insertarpayments('150826', '04/03/2015 23:25:34','-1500');
execute insertarpayments('53724', '05/03/2015 00:08:45','900');
execute insertarpayments('53724', '05/03/2015 00:31:06','-900');
execute insertarpayments('53724', '05/03/2015 00:31:12','-4450');
execute insertarpayments('42348', '05/03/2015 00:38:37','870');
execute insertarpayments('150826', '05/03/2015 02:00:05','-600');
execute insertarpayments('150826', '05/03/2015 02:00:10','-700');
execute insertarpayments('116226', '05/03/2015 04:02:29','-3000');
execute insertarpayments('38', '05/03/2015 18:16:10','600');
execute insertarpayments('120264', '05/03/2015 18:45:56','1000');
execute insertarpayments('705', '05/03/2015 18:56:21','1000');
execute insertarpayments('142064', '05/03/2015 18:56:32','600');
execute insertarpayments('963', '05/03/2015 19:18:45','3300');
execute insertarpayments('120264', '05/03/2015 19:19:14','600');
execute insertarpayments('38', '05/03/2015 20:07:08','-600');
execute insertarpayments('38', '05/03/2015 20:07:21','-1450');
execute insertarpayments('143708', '05/03/2015 20:36:14','1000');
execute insertarpayments('8018', '05/03/2015 20:44:56','-12000');
execute insertarpayments('963', '05/03/2015 20:45:13','-850');
execute insertarpayments('108677', '05/03/2015 21:19:10','-4000');
execute insertarpayments('108677', '05/03/2015 21:20:54','4000');
execute insertarpayments('26058', '05/03/2015 21:29:21','500');
execute insertarpayments('357', '05/03/2015 21:40:25','700');
execute insertarpayments('357', '05/03/2015 21:40:30','2000');
execute insertarpayments('357', '05/03/2015 23:10:41','2000');
execute insertarpayments('101580', '05/03/2015 23:22:51','750');
execute insertarpayments('101580', '05/03/2015 23:32:51','500');
execute insertarpayments('26058', '05/03/2015 23:46:20','-500');
execute insertarpayments('26058', '05/03/2015 23:47:32','-1080');
execute insertarpayments('101580', '06/03/2015 00:19:51','200');
execute insertarpayments('101580', '06/03/2015 00:19:59','-1450');
execute insertarpayments('101580', '06/03/2015 00:20:19','-50');
execute insertarpayments('101580', '06/03/2015 01:05:04','400');
execute insertarpayments('101580', '06/03/2015 01:10:00','400');
execute insertarpayments('101580', '06/03/2015 01:20:14','400');
execute insertarpayments('1183', '06/03/2015 01:50:20','600');
execute insertarpayments('1183', '06/03/2015 01:50:29','-600');
execute insertarpayments('1183', '06/03/2015 01:50:36','-1405');
execute insertarpayments('143708', '06/03/2015 02:12:51','-1000');
execute insertarpayments('143708', '06/03/2015 02:12:58','-19500');
execute insertarpayments('425', '06/03/2015 02:08:55','-3860');
execute insertarpayments('17969', '06/03/2015 02:09:18','-4900');
execute insertarpayments('112399', '06/03/2015 02:09:46','-2500');
execute insertarpayments('101580', '06/03/2015 02:11:04','300');
execute insertarpayments('143708', '06/03/2015 18:51:17','-2000');
execute insertarpayments('64666', '06/03/2015 18:58:39','1000');
execute insertarpayments('143708', '06/03/2015 18:58:59','500');
execute insertarpayments('8018', '06/03/2015 18:59:11','-1000');
execute insertarpayments('8018', '06/03/2015 19:13:08','600');
execute insertarpayments('8018', '06/03/2015 19:13:17','300');
execute insertarpayments('76865', '06/03/2015 19:46:08','1200');
execute insertarpayments('8018', '06/03/2015 19:46:17','600');
execute insertarpayments('76865', '06/03/2015 20:45:03','-1200');
execute insertarpayments('2906', '06/03/2015 20:47:50','-1200');
execute insertarpayments('1027', '06/03/2015 21:03:38','-4000');
execute insertarpayments('425', '06/03/2015 21:35:08','-3300');
execute insertarpayments('108677', '06/03/2015 21:50:01','4000');
execute insertarpayments('108677', '06/03/2015 22:21:07','4000');
execute insertarpayments('1183', '06/03/2015 22:35:42','1000');
execute insertarpayments('68435', '06/03/2015 22:59:28','-1100');
execute insertarpayments('102606', '07/03/2015 00:36:14','500');
execute insertarpayments('102606', '07/03/2015 00:36:19','-500');
execute insertarpayments('102606', '07/03/2015 00:36:25','-860');
execute insertarpayments('5943', '07/03/2015 01:14:05','-1750');
execute insertarpayments('108677', '07/03/2015 01:43:02','-1200');
execute insertarpayments('694', '07/03/2015 01:45:38','-2800');
execute insertarpayments('81491', '07/03/2015 03:12:48','-1800');
execute insertarpayments('143708', '07/03/2015 19:13:51','500');
execute insertarpayments('968', '07/03/2015 21:54:50','-3950');
execute insertarpayments('8018', '07/03/2015 21:53:00','-1000');
execute insertarpayments('143708', '07/03/2015 22:02:07','-500');
execute insertarpayments('143708', '07/03/2015 22:02:31','500');
execute insertarpayments('8018', '07/03/2015 23:20:20','-2000');
execute insertarpayments('136337', '08/03/2015 00:11:29','2000');
execute insertarpayments('357', '08/03/2015 00:25:47','3000');
execute insertarpayments('53724', '08/03/2015 01:05:31','-3250');
execute insertarpayments('101580', '08/03/2015 01:55:04','-2000');
execute insertarpayments('101580', '08/03/2015 02:02:12','-2000');
execute insertarpayments('81491', '08/03/2015 02:10:12','-1050');
execute insertarpayments('101580', '08/03/2015 03:23:35','-3000');
execute insertarpayments('150222', '08/03/2015 20:26:30','500');
execute insertarpayments('150222', '08/03/2015 20:26:40','-2450');
execute insertarpayments('150826', '08/03/2015 23:02:17','700');
execute insertarpayments('32676', '08/03/2015 23:31:31','-1590');
execute insertarpayments('53724', '08/03/2015 23:50:54','-4000');
execute insertarpayments('153036', '08/03/2015 23:51:13','500');
execute insertarpayments('138371', '09/03/2015 00:30:26','-1700');
execute insertarpayments('28908', '09/03/2015 03:53:15','-1400');
execute insertarpayments('150969', '09/03/2015 18:58:11','2600');
execute insertarpayments('150969', '09/03/2015 19:42:04','-2600');
execute insertarpayments('150969', '09/03/2015 19:42:18','-225');
execute insertarpayments('8018', '09/03/2015 21:40:45','-4000');
execute insertarpayments('8018', '09/03/2015 21:49:27','1700');
execute insertarpayments('100260', '09/03/2015 22:27:16','-1550');
execute insertarpayments('425', '09/03/2015 22:27:24','-2100');
execute insertarpayments('53724', '09/03/2015 22:44:32','2045');
execute insertarpayments('183', '09/03/2015 22:53:20','700');
execute insertarpayments('138371', '09/03/2015 22:59:18','-2500');
execute insertarpayments('53724', '09/03/2015 23:39:25','-3400');
execute insertarpayments('108677', '10/03/2015 02:08:39','-1000');
execute insertarpayments('3292', '10/03/2015 02:21:49','-1630');
execute insertarpayments('102606', '10/03/2015 03:16:36','500');
execute insertarpayments('102606', '10/03/2015 03:16:41','-500');
execute insertarpayments('102606', '10/03/2015 03:16:47','-300');
execute insertarpayments('8018', '10/03/2015 19:19:12','-700');
execute insertarpayments('8018', '10/03/2015 19:31:40','600');
execute insertarpayments('17748', '10/03/2015 20:53:09','-4150');
execute insertarpayments('20064', '10/03/2015 20:53:22','-2500');
execute insertarpayments('357', '10/03/2015 20:54:26','5900');
execute insertarpayments('963', '10/03/2015 21:08:34','-1700');
execute insertarpayments('7270', '10/03/2015 21:09:04','-850');
execute insertarpayments('59528', '10/03/2015 21:46:44','-1500');
execute insertarpayments('94544', '10/03/2015 22:21:30','-1000');
execute insertarpayments('53724', '10/03/2015 22:31:18','1000');
execute insertarpayments('53724', '10/03/2015 23:26:19','800');
execute insertarpayments('5678', '11/03/2015 01:32:45','400');
execute insertarpayments('5678', '11/03/2015 02:09:55','-2500');
execute insertarpayments('5678', '11/03/2015 02:10:02','-400');
execute insertarpayments('141342', '11/03/2015 02:10:33','-1250');
execute insertarpayments('17748', '11/03/2015 19:25:42','-3200');
execute insertarpayments('53724', '11/03/2015 23:42:32','1000');
execute insertarpayments('53724', '11/03/2015 23:53:06','900');
execute insertarpayments('153083', '12/03/2015 00:15:42','-800');
execute insertarpayments('357', '12/03/2015 00:30:56','-12000');
execute insertarpayments('357', '12/03/2015 00:31:08','-3000');
execute insertarpayments('66054', '12/03/2015 01:06:27','300');
execute insertarpayments('66054', '12/03/2015 01:06:33','-300');
execute insertarpayments('66054', '12/03/2015 01:06:37','-500');
execute insertarpayments('120264', '12/03/2015 20:36:02','-4500');
execute insertarpayments('963', '12/03/2015 20:36:32','1000');
execute insertarpayments('55914', '12/03/2015 21:25:59','2000');
execute insertarpayments('963', '12/03/2015 21:33:33','-1000');
execute insertarpayments('963', '12/03/2015 21:33:39','-100');
execute insertarpayments('55914', '12/03/2015 21:49:11','-6050');
execute insertarpayments('102606', '12/03/2015 23:02:17','500');
execute insertarpayments('102606', '12/03/2015 23:02:24','-500');
execute insertarpayments('102606', '12/03/2015 23:02:33','-950');
execute insertarpayments('49054', '12/03/2015 23:28:18','1000');
execute insertarpayments('148178', '13/03/2015 00:07:07','1000');
execute insertarpayments('148178', '13/03/2015 00:07:43','-3650');
execute insertarpayments('694', '13/03/2015 00:40:38','-7150');
execute insertarpayments('53724', '13/03/2015 00:52:46','-7000');
execute insertarpayments('101580', '13/03/2015 00:53:34','800');
execute insertarpayments('106719', '13/03/2015 01:05:03','-2950');
execute insertarpayments('3292', '13/03/2015 01:21:36','-1700');
execute insertarpayments('101580', '13/03/2015 01:28:55','-1000');
execute insertarpayments('106719', '13/03/2015 01:40:34','-600');
execute insertarpayments('45859', '13/03/2015 02:19:11','-1500');
execute insertarpayments('17969', '13/03/2015 03:09:09','-7400');
execute insertarpayments('31169', '13/03/2015 03:09:54','-1100');
execute insertarpayments('49054', '13/03/2015 03:52:04','-250');
execute insertarpayments('49054', '13/03/2015 03:52:12','-1000');
execute insertarpayments('357', '13/03/2015 18:46:04','4500');
execute insertarpayments('2906', '13/03/2015 19:22:41','-1400');
execute insertarpayments('108677', '13/03/2015 19:30:17','2000');
execute insertarpayments('133330', '13/03/2015 19:58:22','-560');
execute insertarpayments('17748', '13/03/2015 20:12:02','-5600');
execute insertarpayments('1674', '13/03/2015 20:41:25','-1200');
execute insertarpayments('152740', '13/03/2015 21:55:41','-750');
execute insertarpayments('152740', '13/03/2015 21:55:44','-150');
execute insertarpayments('7270', '13/03/2015 21:58:39','300');
execute insertarpayments('7270', '13/03/2015 22:15:58','-300');
execute insertarpayments('7270', '13/03/2015 22:16:02','-550');
execute insertarpayments('7270', '13/03/2015 22:20:54','-400');
execute insertarpayments('6595', '13/03/2015 22:40:20','-650');
execute insertarpayments('6595', '13/03/2015 22:46:17','-200');
execute insertarpayments('357', '13/03/2015 23:05:37','-1100');
execute insertarpayments('6981', '13/03/2015 23:48:24','-650');
execute insertarpayments('101580', '13/03/2015 23:56:59','1000');
execute insertarpayments('76865', '14/03/2015 00:00:25','500');
execute insertarpayments('153091', '14/03/2015 00:08:45','-2730');
execute insertarpayments('101580', '14/03/2015 00:34:05','600');
execute insertarpayments('153091', '14/03/2015 00:51:51','-2150');
execute insertarpayments('101580', '14/03/2015 01:04:23','1000');
execute insertarpayments('76865', '14/03/2015 01:13:30','900');
execute insertarpayments('76865', '14/03/2015 01:47:43','2000');
execute insertarpayments('101580', '14/03/2015 01:48:23','1000');
execute insertarpayments('101580', '14/03/2015 01:59:38','600');
execute insertarpayments('76865', '14/03/2015 02:32:04','1800');
execute insertarpayments('84405', '14/03/2015 02:40:45','-4450');
execute insertarpayments('84405', '14/03/2015 02:40:56','-2200');
execute insertarpayments('108677', '14/03/2015 02:46:55','-3500');
execute insertarpayments('101580', '14/03/2015 03:06:37','-3200');
execute insertarpayments('1183', '14/03/2015 03:45:26','-2250');
execute insertarpayments('105416', '14/03/2015 19:37:30','-800');
execute insertarpayments('64666', '14/03/2015 19:53:02','1000');
execute insertarpayments('64666', '14/03/2015 19:53:07','-1000');
execute insertarpayments('55914', '14/03/2015 20:44:37','2000');
execute insertarpayments('1579', '14/03/2015 20:51:08','1000');
execute insertarpayments('963', '14/03/2015 20:56:24','1000');
execute insertarpayments('8018', '14/03/2015 21:24:58','1000');
execute insertarpayments('8018', '14/03/2015 21:35:22','600');
execute insertarpayments('8018', '14/03/2015 21:51:24','1000');
execute insertarpayments('963', '14/03/2015 21:51:53','-1000');
execute insertarpayments('963', '14/03/2015 21:52:02','-1000');
execute insertarpayments('55914', '14/03/2015 22:21:37','2000');
execute insertarpayments('462', '14/03/2015 22:28:57','-890');
execute insertarpayments('102606', '14/03/2015 22:31:31','500');
execute insertarpayments('108677', '14/03/2015 22:58:51','2000');
execute insertarpayments('32676', '14/03/2015 23:05:36','1000');
execute insertarpayments('357', '14/03/2015 23:44:46','-1000');
execute insertarpayments('2445', '14/03/2015 23:47:34','500');
execute insertarpayments('32676', '14/03/2015 23:59:26','-1000');
execute insertarpayments('32676', '14/03/2015 23:59:32','-1250');
execute insertarpayments('963', '14/03/2015 23:59:57','-600');
execute insertarpayments('62331', '15/03/2015 00:14:17','-1000');
execute insertarpayments('970', '15/03/2015 00:49:02','1000');
execute insertarpayments('102606', '15/03/2015 01:22:48','500');
execute insertarpayments('970', '15/03/2015 01:23:32','-1000');
execute insertarpayments('970', '15/03/2015 01:23:38','-1200');
execute insertarpayments('55914', '15/03/2015 02:21:31','-11550');
execute insertarpayments('71304', '15/03/2015 03:27:41','-1500');
execute insertarpayments('138371', '15/03/2015 03:28:39','-1000');
execute insertarpayments('110598', '15/03/2015 03:45:06','-1650');
execute insertarpayments('120264', '15/03/2015 18:58:12','1150');
execute insertarpayments('120264', '15/03/2015 19:05:43','600');
execute insertarpayments('120264', '15/03/2015 19:48:36','550');
execute insertarpayments('150826', '15/03/2015 19:50:17','1080');
execute insertarpayments('38', '15/03/2015 20:04:08','1000');
execute insertarpayments('7270', '15/03/2015 20:04:19','-1000');
execute insertarpayments('120264', '15/03/2015 20:19:59','800');
execute insertarpayments('140491', '15/03/2015 20:58:40','1500');
execute insertarpayments('38', '15/03/2015 21:06:52','600');
execute insertarpayments('140491', '15/03/2015 22:22:22','-1500');
execute insertarpayments('140491', '15/03/2015 22:22:33','-400');
execute insertarpayments('33015', '15/03/2015 23:11:33','1000');
execute insertarpayments('33015', '15/03/2015 23:19:07','-1000');
execute insertarpayments('33015', '15/03/2015 23:19:16','-900');
execute insertarpayments('101580', '15/03/2015 23:47:21','1000');
execute insertarpayments('101580', '16/03/2015 00:10:00','1000');
execute insertarpayments('101580', '16/03/2015 00:32:05','1000');
execute insertarpayments('101580', '16/03/2015 00:42:05','700');
execute insertarpayments('101580', '16/03/2015 00:43:04','900');
execute insertarpayments('1183', '16/03/2015 00:54:34','-1300');
execute insertarpayments('101580', '16/03/2015 00:52:02','900');
execute insertarpayments('25493', '16/03/2015 01:16:36','-1000');
execute insertarpayments('53724', '16/03/2015 01:28:54','800');
execute insertarpayments('53724', '16/03/2015 01:43:17','800');
execute insertarpayments('3292', '16/03/2015 18:54:58','-1800');
execute insertarpayments('76865', '16/03/2015 19:13:06','2000');
execute insertarpayments('6794', '16/03/2015 20:13:16','1000');
execute insertarpayments('135581', '16/03/2015 20:36:54','-1200');
execute insertarpayments('59528', '16/03/2015 21:10:23','-3000');
execute insertarpayments('8018', '16/03/2015 21:11:28','300');
execute insertarpayments('8018', '16/03/2015 21:11:33','-300');
execute insertarpayments('6794', '16/03/2015 21:39:29','-1000');
execute insertarpayments('6794', '16/03/2015 21:39:37','-3500');
execute insertarpayments('76865', '16/03/2015 22:13:27','-14250');
execute insertarpayments('8018', '16/03/2015 22:09:49','600');
execute insertarpayments('8018', '16/03/2015 22:10:03','-600');
execute insertarpayments('8018', '16/03/2015 22:10:09','-1900');
execute insertarpayments('135581', '16/03/2015 22:16:08','-1000');
execute insertarpayments('2701', '16/03/2015 22:41:16','300');
execute insertarpayments('2701', '16/03/2015 22:56:06','2000');
execute insertarpayments('2701', '16/03/2015 23:44:53','2500');
execute insertarpayments('357', '16/03/2015 23:46:36','-1600');
execute insertarpayments('2701', '16/03/2015 23:52:57','1000');
execute insertarpayments('53724', '17/03/2015 00:14:46','-3000');
execute insertarpayments('153211', '17/03/2015 00:36:50','880');
execute insertarpayments('2701', '17/03/2015 00:50:20','-50');
execute insertarpayments('10191', '17/03/2015 00:56:17','-900');
execute insertarpayments('183', '17/03/2015 01:28:11','-3000');
execute insertarpayments('357', '17/03/2015 01:32:37','-700');
execute insertarpayments('357', '17/03/2015 01:36:19','-2000');
execute insertarpayments('938', '17/03/2015 01:46:18','-2300');
execute insertarpayments('4709', '17/03/2015 02:08:30','-2200');
execute insertarpayments('357', '17/03/2015 02:11:41','-1000');
execute insertarpayments('150969', '17/03/2015 18:10:03','2600');
execute insertarpayments('120264', '17/03/2015 18:57:58','250');
execute insertarpayments('120371', '17/03/2015 19:07:31','600');
execute insertarpayments('84405', '17/03/2015 19:11:53','-650');
execute insertarpayments('69103', '17/03/2015 19:29:57','500');
execute insertarpayments('60337', '17/03/2015 19:37:06','-900');
execute insertarpayments('7270', '17/03/2015 19:54:23','300');
execute insertarpayments('8018', '17/03/2015 20:19:33','-300');
execute insertarpayments('8018', '17/03/2015 20:36:24','300');
execute insertarpayments('8018', '17/03/2015 20:37:31','300');
execute insertarpayments('8018', '17/03/2015 20:45:42','600');
execute insertarpayments('120371', '17/03/2015 20:54:38','600');
execute insertarpayments('357', '17/03/2015 20:59:32','-200');
execute insertarpayments('150969', '17/03/2015 21:10:44','-2600');
execute insertarpayments('150969', '17/03/2015 21:10:50','-1185');
execute insertarpayments('153215', '17/03/2015 21:11:13','-650');
execute insertarpayments('357', '17/03/2015 21:32:01','6000');
execute insertarpayments('153215', '17/03/2015 21:39:38','500');
execute insertarpayments('963', '17/03/2015 22:00:53','-3100');
execute insertarpayments('120371', '17/03/2015 22:03:35','600');
execute insertarpayments('153215', '17/03/2015 22:10:56','-1500');
execute insertarpayments('357', '17/03/2015 22:18:39','-1900');
execute insertarpayments('357', '17/03/2015 23:01:38','-430');
execute insertarpayments('153215', '17/03/2015 23:00:40','-400');
execute insertarpayments('149824', '17/03/2015 23:20:52','900');
execute insertarpayments('149823', '17/03/2015 23:21:03','400');
execute insertarpayments('153215', '17/03/2015 23:46:59','-500');
execute insertarpayments('49669', '17/03/2015 23:54:25','-400');
execute insertarpayments('53724', '17/03/2015 23:56:55','-1500');
execute insertarpayments('357', '18/03/2015 00:19:22','-300');
execute insertarpayments('53724', '18/03/2015 00:43:11','500');
execute insertarpayments('53724', '18/03/2015 00:43:49','-550');
execute insertarpayments('153227', '18/03/2015 00:49:53','2000');
execute insertarpayments('54498', '18/03/2015 01:22:12','-1500');
execute insertarpayments('149824', '18/03/2015 02:18:32','-1000');
execute insertarpayments('148178', '18/03/2015 02:58:40','300');
execute insertarpayments('148178', '18/03/2015 02:58:46','-1800');
execute insertarpayments('148178', '18/03/2015 04:00:09','-2550');
execute insertarpayments('3292', '18/03/2015 18:58:30','-2400');
execute insertarpayments('69103', '18/03/2015 19:02:45','600');
execute insertarpayments('143708', '18/03/2015 20:15:41','1000');
execute insertarpayments('6794', '18/03/2015 20:44:48','1100');
execute insertarpayments('143708', '18/03/2015 20:47:52','1000');
execute insertarpayments('143708', '18/03/2015 21:14:36','-2000');
execute insertarpayments('143708', '18/03/2015 21:14:43','-490');
execute insertarpayments('6794', '18/03/2015 21:41:52','800');
execute insertarpayments('53724', '18/03/2015 22:45:16','2000');
execute insertarpayments('6706', '18/03/2015 23:38:49','-1000');
execute insertarpayments('109612', '19/03/2015 00:20:35','-1000');
execute insertarpayments('106719', '19/03/2015 00:32:25','-1000');
execute insertarpayments('130061', '19/03/2015 18:28:07','4450');
execute insertarpayments('130061', '19/03/2015 18:55:56','4960');
execute insertarpayments('108677', '19/03/2015 19:54:18','400');
execute insertarpayments('26058', '19/03/2015 20:49:04','-950');
execute insertarpayments('81491', '19/03/2015 20:50:37','1000');
execute insertarpayments('23995', '19/03/2015 21:00:18','-4350');
execute insertarpayments('132609', '19/03/2015 22:18:12','1500');
execute insertarpayments('53724', '19/03/2015 23:35:58','2400');
execute insertarpayments('101580', '20/03/2015 00:37:44','600');
execute insertarpayments('53724', '20/03/2015 00:38:07','-5500');
execute insertarpayments('121576', '20/03/2015 01:49:38','-1500');
execute insertarpayments('148178', '20/03/2015 02:09:20','1000');
execute insertarpayments('79502', '20/03/2015 02:09:56','-2500');
execute insertarpayments('882', '20/03/2015 02:17:34','-2450');
execute insertarpayments('101580', '20/03/2015 02:19:35','-600');
execute insertarpayments('101580', '20/03/2015 02:19:40','600');
execute insertarpayments('101580', '20/03/2015 02:19:44','400');
execute insertarpayments('705', '20/03/2015 02:35:22','-3019,5');
execute insertarpayments('108677', '20/03/2015 03:11:27','-4200');
execute insertarpayments('17969', '20/03/2015 03:28:41','-9500');
execute insertarpayments('425', '20/03/2015 04:04:41','-10000');
execute insertarpayments('130061', '20/03/2015 04:05:00','-12800');
execute insertarpayments('143708', '20/03/2015 20:48:59','1000');
execute insertarpayments('143708', '20/03/2015 20:49:06','-1000');
execute insertarpayments('143708', '20/03/2015 20:49:33','-560');
execute insertarpayments('69101', '20/03/2015 22:37:20','-1190');
execute insertarpayments('694', '20/03/2015 22:42:32','-3900');
execute insertarpayments('28170', '20/03/2015 23:47:37','1000');
execute insertarpayments('447', '21/03/2015 01:14:36','1000');
execute insertarpayments('4', '21/03/2015 01:15:06','1000');
execute insertarpayments('101580', '21/03/2015 01:55:26','400');
execute insertarpayments('4', '21/03/2015 01:55:39','-500');
execute insertarpayments('3292', '21/03/2015 01:58:24','1000');
execute insertarpayments('3292', '21/03/2015 02:12:12','-5250');
execute insertarpayments('108677', '21/03/2015 02:53:39','-3260');
execute insertarpayments('25493', '21/03/2015 03:04:53','-1200');
execute insertarpayments('1183', '21/03/2015 03:08:20','600');
execute insertarpayments('101580', '21/03/2015 03:16:21','-400');
execute insertarpayments('101580', '21/03/2015 03:16:27','-100');
execute insertarpayments('846', '21/03/2015 04:02:10','-1950');
execute insertarpayments('143708', '21/03/2015 20:25:10','600');
execute insertarpayments('357', '21/03/2015 21:02:30','2000');
execute insertarpayments('14172', '21/03/2015 22:16:04','1000');
execute insertarpayments('14172', '21/03/2015 22:16:09','-1000');
execute insertarpayments('14172', '21/03/2015 22:16:14','-2100');
execute insertarpayments('102606', '21/03/2015 22:19:41','1000');
execute insertarpayments('102606', '21/03/2015 22:37:03','500');
execute insertarpayments('116226', '21/03/2015 23:36:06','500');
execute insertarpayments('953', '22/03/2015 01:44:49','-565');
execute insertarpayments('3093', '22/03/2015 01:52:44','-900');
execute insertarpayments('963', '22/03/2015 02:18:46','-1900');
execute insertarpayments('3093', '22/03/2015 02:34:14','-400');
execute insertarpayments('102606', '22/03/2015 03:46:52','-1000');
execute insertarpayments('14172', '22/03/2015 19:31:20','1000');
execute insertarpayments('14172', '22/03/2015 19:45:42','1000');
execute insertarpayments('6595', '22/03/2015 20:27:10','-2200');
execute insertarpayments('150222', '22/03/2015 20:33:59','800');
execute insertarpayments('6595', '22/03/2015 21:41:40','-2500');
execute insertarpayments('150222', '22/03/2015 22:52:14','-9000');
execute insertarpayments('109612', '23/03/2015 01:39:34','-2000');
execute insertarpayments('938', '23/03/2015 02:42:08','-2500');
execute insertarpayments('148178', '23/03/2015 02:49:53','500');
execute insertarpayments('109612', '23/03/2015 02:55:12','-1700');
execute insertarpayments('1287', '23/03/2015 03:21:16','-2450');
execute insertarpayments('846', '23/03/2015 03:54:56','-1600');
execute insertarpayments('84402', '23/03/2015 19:17:48','1500');
execute insertarpayments('108677', '23/03/2015 20:29:46','3000');
execute insertarpayments('108677', '23/03/2015 20:29:56','-3000');
execute insertarpayments('1027', '23/03/2015 20:30:24','5000');
execute insertarpayments('84402', '23/03/2015 22:11:24','2000');
execute insertarpayments('84402', '23/03/2015 22:15:42','2000');
execute insertarpayments('183', '23/03/2015 22:24:40','2000');
execute insertarpayments('84402', '23/03/2015 22:32:26','1500');
execute insertarpayments('153366', '23/03/2015 22:45:14','2000');
execute insertarpayments('108677', '23/03/2015 22:48:25','-1350');
execute insertarpayments('17969', '23/03/2015 23:15:46','-7000');
execute insertarpayments('53724', '23/03/2015 23:24:02','1400');
execute insertarpayments('84402', '23/03/2015 23:25:45','-150');
execute insertarpayments('84402', '23/03/2015 23:41:42','300');
execute insertarpayments('53724', '24/03/2015 00:36:00','-5000');
execute insertarpayments('84402', '24/03/2015 00:51:51','-1000');
execute insertarpayments('84402', '24/03/2015 01:19:09','-1000');
execute insertarpayments('19423', '24/03/2015 03:29:49','-2000');
execute insertarpayments('1579', '24/03/2015 03:50:21','-1200');
execute insertarpayments('19423', '24/03/2015 03:50:46','-3000');
execute insertarpayments('153366', '24/03/2015 03:58:16','-8460');
execute insertarpayments('84402', '24/03/2015 18:27:51','600');
execute insertarpayments('108677', '24/03/2015 18:31:22','4000');
execute insertarpayments('146', '24/03/2015 19:54:00','500');
execute insertarpayments('84402', '24/03/2015 20:07:47','-3000');
execute insertarpayments('147146', '24/03/2015 20:28:43','2000');
execute insertarpayments('146', '24/03/2015 20:33:42','500');
execute insertarpayments('1182', '24/03/2015 20:34:03','-2200');
execute insertarpayments('120264', '24/03/2015 20:42:32','600');
execute insertarpayments('120264', '24/03/2015 20:42:37','-600');
execute insertarpayments('120264', '24/03/2015 20:42:44','-3400');
execute insertarpayments('147146', '24/03/2015 21:00:17','-2000');
execute insertarpayments('147146', '24/03/2015 21:00:25','-1000');
execute insertarpayments('153383', '24/03/2015 21:31:39','-1550');
execute insertarpayments('153384', '24/03/2015 21:32:11','-610');
execute insertarpayments('153380', '24/03/2015 21:32:24','-1000');
execute insertarpayments('108677', '24/03/2015 21:32:45','-4000');
execute insertarpayments('108677', '24/03/2015 21:32:52','-500');
execute insertarpayments('768', '24/03/2015 22:13:40','5000');
execute insertarpayments('141286', '24/03/2015 22:37:41','550');
execute insertarpayments('768', '24/03/2015 23:20:20','3000');
execute insertarpayments('357', '24/03/2015 23:32:59','6000');
execute insertarpayments('357', '24/03/2015 23:33:05','2000');
execute insertarpayments('357', '24/03/2015 23:44:14','950');
execute insertarpayments('357', '24/03/2015 23:45:17','50');
execute insertarpayments('143708', '25/03/2015 00:18:27','-2000');
execute insertarpayments('63968', '25/03/2015 00:38:15','-1000');
execute insertarpayments('143708', '25/03/2015 01:33:21','-1000');
execute insertarpayments('8018', '25/03/2015 20:07:36','-1440');
execute insertarpayments('128977', '25/03/2015 21:40:10','-1500');
execute insertarpayments('8018', '25/03/2015 21:40:18','-4000');
execute insertarpayments('138371', '25/03/2015 22:46:09','-2500');
execute insertarpayments('6794', '25/03/2015 23:01:55','-6000');
execute insertarpayments('53724', '25/03/2015 23:46:38','5000');
execute insertarpayments('53724', '25/03/2015 23:46:43','2000');
execute insertarpayments('138371', '26/03/2015 00:12:33','-2100');
execute insertarpayments('107633', '26/03/2015 01:47:08','500');
execute insertarpayments('107633', '26/03/2015 02:37:01','-500');
execute insertarpayments('107633', '26/03/2015 02:37:06','-1000');
execute insertarpayments('53724', '26/03/2015 02:37:24','-17000');
execute insertarpayments('109612', '26/03/2015 02:40:41','-1500');
execute insertarpayments('109612', '26/03/2015 02:40:46','-1950');
execute insertarpayments('108677', '26/03/2015 20:17:25','-1145');
execute insertarpayments('8018', '26/03/2015 20:27:34','-1000');
execute insertarpayments('8018', '26/03/2015 20:28:47','-699');
execute insertarpayments('8018', '26/03/2015 20:53:04','-4290');
execute insertarpayments('17969', '26/03/2015 22:34:37','-8000');
execute insertarpayments('102606', '26/03/2015 23:56:07','1000');
execute insertarpayments('149671', '27/03/2015 00:00:31','1000');
execute insertarpayments('357', '27/03/2015 00:00:49','-3500');
execute insertarpayments('357', '27/03/2015 00:01:01','-860');
execute insertarpayments('149671', '27/03/2015 00:11:25','500');
execute insertarpayments('109612', '27/03/2015 00:13:36','-2000');
execute insertarpayments('149671', '27/03/2015 00:18:34','500');
execute insertarpayments('19423', '27/03/2015 00:39:52','-4000');
execute insertarpayments('149671', '27/03/2015 00:53:30','500');
execute insertarpayments('149671', '27/03/2015 00:53:41','500');
execute insertarpayments('19423', '27/03/2015 01:05:25','-3500');
execute insertarpayments('107633', '27/03/2015 01:32:47','500');
execute insertarpayments('1579', '27/03/2015 01:33:15','1000');
execute insertarpayments('64666', '27/03/2015 01:34:13','1000');
execute insertarpayments('64666', '27/03/2015 01:34:18','-1000');
execute insertarpayments('19423', '27/03/2015 01:41:54','-3500');
execute insertarpayments('149671', '27/03/2015 02:04:06','500');
execute insertarpayments('19423', '27/03/2015 02:07:48','-5000');
execute insertarpayments('882', '27/03/2015 02:26:08','-2050');
execute insertarpayments('19423', '27/03/2015 03:16:12','-15500');
execute insertarpayments('19423', '27/03/2015 03:27:03','-1200');
execute insertarpayments('19423', '27/03/2015 03:50:07','-7050');
execute insertarpayments('17748', '27/03/2015 18:29:59','-2400');
execute insertarpayments('84402', '27/03/2015 19:01:44','1200');
execute insertarpayments('26700', '27/03/2015 19:43:21','700');
execute insertarpayments('6794', '27/03/2015 19:44:15','1200');
execute insertarpayments('64666', '27/03/2015 20:12:09','1000');
execute insertarpayments('17882', '27/03/2015 20:26:21','1000');
execute insertarpayments('938', '27/03/2015 20:39:38','-2800');
execute insertarpayments('26700', '27/03/2015 21:02:24','350');
execute insertarpayments('143708', '27/03/2015 21:21:29','1000');
execute insertarpayments('153440', '27/03/2015 21:27:41','1000');
execute insertarpayments('6794', '27/03/2015 22:19:54','-2300');
execute insertarpayments('6794', '27/03/2015 22:20:00','-1200');
execute insertarpayments('17882', '27/03/2015 22:21:11','1000');
execute insertarpayments('938', '27/03/2015 22:29:57','-1000');
execute insertarpayments('116226', '27/03/2015 22:49:14','1000');
execute insertarpayments('17882', '27/03/2015 23:19:23','-1000');
execute insertarpayments('17882', '27/03/2015 23:19:27','1000');
execute insertarpayments('17882', '27/03/2015 23:39:02','-500');
execute insertarpayments('17882', '27/03/2015 23:47:10','500');
execute insertarpayments('3292', '28/03/2015 00:04:32','-2650');
execute insertarpayments('938', '28/03/2015 00:05:43','-500');
execute insertarpayments('150222', '28/03/2015 00:09:21','2000');
execute insertarpayments('150222', '28/03/2015 01:33:17','-10450');
execute insertarpayments('19423', '28/03/2015 02:04:21','800');
execute insertarpayments('963', '28/03/2015 02:38:17','1000');
execute insertarpayments('963', '28/03/2015 03:06:34','2000');
execute insertarpayments('963', '28/03/2015 03:07:47','1000');
execute insertarpayments('17882', '28/03/2015 03:20:08','200');
execute insertarpayments('963', '28/03/2015 03:36:17','600');
execute insertarpayments('116226', '28/03/2015 21:29:35','1000');
execute insertarpayments('40975', '28/03/2015 22:00:14','-900');
execute insertarpayments('101580', '28/03/2015 22:19:41','450');
execute insertarpayments('128195', '28/03/2015 22:21:52','1000');
execute insertarpayments('149175', '28/03/2015 22:31:16','-5505');
execute insertarpayments('101580', '28/03/2015 23:18:00','300');
execute insertarpayments('101580', '28/03/2015 23:22:19','300');
execute insertarpayments('6343', '28/03/2015 23:36:51','-1500');
execute insertarpayments('69101', '28/03/2015 23:56:57','-500');
execute insertarpayments('109612', '29/03/2015 00:45:27','-1200');
execute insertarpayments('57332', '29/03/2015 01:14:30','-900');
execute insertarpayments('4875', '29/03/2015 01:27:18','400');
execute insertarpayments('4965', '29/03/2015 03:03:21','-1400');
execute insertarpayments('4965', '29/03/2015 03:16:10','-750');
execute insertarpayments('882', '29/03/2015 03:26:10','-2050');
execute insertarpayments('116226', '29/03/2015 03:32:42','-6500');
execute insertarpayments('108677', '29/03/2015 04:09:16','-3550');
execute insertarpayments('17748', '29/03/2015 18:58:32','-2500');
execute insertarpayments('60337', '29/03/2015 19:36:14','-2000');
execute insertarpayments('150222', '29/03/2015 20:16:30','2000');
execute insertarpayments('150222', '29/03/2015 20:19:47','1000');
execute insertarpayments('17748', '29/03/2015 21:34:24','-5350');
execute insertarpayments('8018', '29/03/2015 22:03:00','600');
execute insertarpayments('69103', '29/03/2015 23:27:09','500');
execute insertarpayments('69103', '29/03/2015 23:27:18','500');
execute insertarpayments('69103', '29/03/2015 23:43:29','500');
execute insertarpayments('73107', '29/03/2015 23:51:27','-1000');
execute insertarpayments('69103', '29/03/2015 23:55:17','500');
execute insertarpayments('69103', '30/03/2015 00:10:21','500');
execute insertarpayments('108677', '30/03/2015 00:43:57','-1600');
execute insertarpayments('149175', '30/03/2015 01:03:24','1000');
execute insertarpayments('149175', '30/03/2015 01:19:09','1000');
execute insertarpayments('149175', '30/03/2015 01:47:10','-6400');
execute insertarpayments('149175', '30/03/2015 03:56:32','-1000');
execute insertarpayments('17748', '30/03/2015 19:15:59','-2550');
execute insertarpayments('6794', '30/03/2015 19:57:48','-8250');
execute insertarpayments('102606', '30/03/2015 21:55:49','500');
execute insertarpayments('357', '30/03/2015 23:29:37','-615');
execute insertarpayments('19423', '30/03/2015 23:55:41','-2500');
execute insertarpayments('24859', '31/03/2015 00:49:45','-1600');
execute insertarpayments('53724', '31/03/2015 00:52:48','-2600');
execute insertarpayments('19423', '31/03/2015 00:58:45','-3500');
execute insertarpayments('19423', '31/03/2015 01:32:20','-3500');
execute insertarpayments('102606', '31/03/2015 03:43:42','-500');
execute insertarpayments('102606', '31/03/2015 03:43:47','-910');
execute insertarpayments('8018', '31/03/2015 18:36:05','600');
execute insertarpayments('86172', '31/03/2015 20:33:30','500');
execute insertarpayments('2406', '31/03/2015 20:44:42','-700');
execute insertarpayments('143708', '31/03/2015 21:10:13','-1000');
execute insertarpayments('86172', '31/03/2015 21:24:21','-500');
execute insertarpayments('86172', '31/03/2015 21:24:25','-500');
execute insertarpayments('599', '31/03/2015 23:19:45','-600');
execute insertarpayments('76865', '01/04/2015 00:11:48','400');
execute insertarpayments('76865', '01/04/2015 00:25:20','-900');
execute insertarpayments('53724', '01/04/2015 00:37:05','-3000');
execute insertarpayments('153570', '01/04/2015 01:13:25','2000');
execute insertarpayments('70533', '01/04/2015 01:19:49','-1350');
execute insertarpayments('599', '01/04/2015 03:08:36','-700');
execute insertarpayments('8018', '01/04/2015 18:50:24','-2900');
execute insertarpayments('8018', '01/04/2015 18:59:55','100');
execute insertarpayments('14172', '01/04/2015 21:28:04','1500');
execute insertarpayments('93172', '01/04/2015 21:28:28','-1100');
execute insertarpayments('939', '01/04/2015 21:23:37','-1400');
execute insertarpayments('14172', '01/04/2015 23:02:20','1000');
execute insertarpayments('14172', '01/04/2015 23:12:16','-1810');
execute insertarpayments('53724', '01/04/2015 23:51:58','1000');
execute insertarpayments('6459', '02/04/2015 00:32:32','-1550');
execute insertarpayments('6459', '02/04/2015 02:28:55','-1000');
execute insertarpayments('6459', '02/04/2015 02:33:37','-550');
execute insertarpayments('137888', '02/04/2015 18:51:09','-900');
execute insertarpayments('108677', '02/04/2015 19:58:56','-2500');
execute insertarpayments('57971', '02/04/2015 23:12:37','-500');
execute insertarpayments('108677', '03/04/2015 00:01:46','-2500');
execute insertarpayments('963', '03/04/2015 01:51:21','1000');
execute insertarpayments('963', '03/04/2015 01:51:26','1000');
execute insertarpayments('6459', '03/04/2015 02:03:41','-3700');
execute insertarpayments('108677', '03/04/2015 03:53:37','-5000');
execute insertarpayments('109612', '03/04/2015 04:01:24','-1950');
execute insertarpayments('152165', '03/04/2015 04:01:49','-1850');
execute insertarpayments('108677', '03/04/2015 19:34:13','-5500');
execute insertarpayments('76865', '03/04/2015 20:38:14','1000');
execute insertarpayments('76865', '03/04/2015 20:38:22','-1220');
execute insertarpayments('130327', '03/04/2015 20:38:37','-500');
execute insertarpayments('147146', '03/04/2015 21:58:36','2500');
execute insertarpayments('147146', '03/04/2015 21:58:43','2500');
execute insertarpayments('143708', '03/04/2015 21:58:55','1000');
execute insertarpayments('143708', '03/04/2015 22:49:57','-1000');
execute insertarpayments('143708', '03/04/2015 22:52:56','-2500');
execute insertarpayments('145703', '03/04/2015 23:15:08','-1970');
execute insertarpayments('1183', '04/04/2015 01:02:17','1000');
execute insertarpayments('101580', '04/04/2015 02:27:04','800');
execute insertarpayments('101580', '04/04/2015 02:33:45','300');
execute insertarpayments('6706', '04/04/2015 03:35:51','-3950');
execute insertarpayments('120264', '04/04/2015 19:09:56','500');
execute insertarpayments('143708', '04/04/2015 19:24:37','-3500');
execute insertarpayments('86172', '04/04/2015 19:25:38','500');
execute insertarpayments('86172', '04/04/2015 19:39:20','-500');
execute insertarpayments('86172', '04/04/2015 19:39:27','-500');
execute insertarpayments('120264', '04/04/2015 20:00:53','-500');
execute insertarpayments('120264', '04/04/2015 20:01:02','-4500');
execute insertarpayments('143708', '04/04/2015 20:53:01','-4000');
execute insertarpayments('970', '04/04/2015 20:55:53','1000');
execute insertarpayments('143708', '04/04/2015 21:03:05','-1000');
execute insertarpayments('76865', '04/04/2015 21:32:27','-2050');
execute insertarpayments('76865', '04/04/2015 21:32:35','-250');
execute insertarpayments('76865', '04/04/2015 22:07:45','-870');
execute insertarpayments('149175', '04/04/2015 22:14:21','1000');
execute insertarpayments('152165', '05/04/2015 01:53:59','-2500');
execute insertarpayments('970', '05/04/2015 02:35:14','-1000');
execute insertarpayments('970', '05/04/2015 02:35:19','-1400');
execute insertarpayments('704', '05/04/2015 02:35:36','200');
execute insertarpayments('704', '05/04/2015 02:35:40','-200');
execute insertarpayments('704', '05/04/2015 02:35:50','-600');
execute insertarpayments('108677', '05/04/2015 02:42:28','-1500');
execute insertarpayments('153639', '05/04/2015 02:45:39','-4000');
execute insertarpayments('38', '05/04/2015 18:25:45','600');
execute insertarpayments('150222', '05/04/2015 20:17:58','1000');
execute insertarpayments('150222', '05/04/2015 21:01:04','2000');
execute insertarpayments('149790', '05/04/2015 22:51:40','-1700');
execute insertarpayments('153681', '05/04/2015 23:36:01','-3000');
execute insertarpayments('148387', '06/04/2015 00:58:37','-1500');
execute insertarpayments('153639', '06/04/2015 02:24:37','3000');
execute insertarpayments('140822', '06/04/2015 02:45:12','-1000');
execute insertarpayments('153639', '06/04/2015 03:08:49','5000');
execute insertarpayments('153641', '06/04/2015 03:10:08','-1000');
execute insertarpayments('153639', '06/04/2015 03:17:59','5000');
execute insertarpayments('93172', '06/04/2015 03:20:34','-2300');
execute insertarpayments('108677', '06/04/2015 18:53:43','5500');
execute insertarpayments('108677', '06/04/2015 19:33:07','-6300');
execute insertarpayments('6794', '06/04/2015 20:09:27','1500');
execute insertarpayments('86172', '06/04/2015 20:14:32','-4500');
execute insertarpayments('143708', '06/04/2015 20:55:04','-7000');
execute insertarpayments('6794', '06/04/2015 20:55:22','1000');
execute insertarpayments('130195', '06/04/2015 20:56:45','-1500');
execute insertarpayments('6794', '06/04/2015 21:03:43','1000');
execute insertarpayments('8018', '06/04/2015 21:06:02','-1500');
execute insertarpayments('8018', '06/04/2015 21:59:25','-10000');
execute insertarpayments('12056', '06/04/2015 22:33:59','800');
execute insertarpayments('143708', '06/04/2015 23:27:26','-2300');
execute insertarpayments('102606', '07/04/2015 00:10:17','500');
execute insertarpayments('357', '07/04/2015 01:15:06','-675');
execute insertarpayments('95482', '07/04/2015 02:10:45','-1750');
execute insertarpayments('108677', '07/04/2015 02:16:00','-2650');
execute insertarpayments('8018', '07/04/2015 20:46:33','600');
execute insertarpayments('8018', '07/04/2015 21:01:35','600');
execute insertarpayments('143515', '07/04/2015 21:22:33','-1000');
execute insertarpayments('143708', '07/04/2015 21:34:13','-2300');
execute insertarpayments('150826', '07/04/2015 21:47:05','630');
execute insertarpayments('8018', '07/04/2015 21:57:50','-2100');
execute insertarpayments('1027', '07/04/2015 21:58:08','12000');
execute insertarpayments('8018', '07/04/2015 22:03:42','-1200');
execute insertarpayments('8018', '07/04/2015 21:58:29','300');
execute insertarpayments('8018', '07/04/2015 22:04:54','-1800');
execute insertarpayments('3292', '07/04/2015 22:02:04','900');
execute insertarpayments('149671', '07/04/2015 22:17:30','-1000');
execute insertarpayments('149671', '07/04/2015 22:17:37','500');
execute insertarpayments('69101', '07/04/2015 22:37:14','-1100');
execute insertarpayments('53724', '07/04/2015 23:47:48','-1000');
execute insertarpayments('53724', '08/04/2015 00:22:45','-1000');
execute insertarpayments('6706', '08/04/2015 00:38:30','-1800');
execute insertarpayments('149671', '08/04/2015 00:45:23','500');
execute insertarpayments('149671', '08/04/2015 01:18:15','500');
execute insertarpayments('149671', '08/04/2015 01:27:44','500');
execute insertarpayments('149671', '08/04/2015 01:41:27','500');
execute insertarpayments('149671', '08/04/2015 01:53:37','500');
execute insertarpayments('149671', '08/04/2015 03:59:38','-6750');
execute insertarpayments('138371', '08/04/2015 18:36:12','1000');
execute insertarpayments('138371', '08/04/2015 18:53:02','350');
execute insertarpayments('120264', '08/04/2015 19:01:30','600');
execute insertarpayments('120264', '08/04/2015 19:27:41','250');
execute insertarpayments('86172', '08/04/2015 19:30:57','500');
execute insertarpayments('120264', '08/04/2015 19:35:26','600');
execute insertarpayments('81838', '08/04/2015 20:17:20','-1500');
execute insertarpayments('108677', '08/04/2015 20:52:36','4095');
execute insertarpayments('150826', '08/04/2015 21:53:15','1350');
execute insertarpayments('6706', '08/04/2015 22:05:21','-1500');
execute insertarpayments('357', '08/04/2015 22:32:17','8000');
execute insertarpayments('357', '08/04/2015 22:32:26','-2000');
execute insertarpayments('357', '08/04/2015 22:32:34','10000');
execute insertarpayments('768', '08/04/2015 22:38:12','3000');
execute insertarpayments('768', '08/04/2015 22:53:53','5000');
execute insertarpayments('768', '08/04/2015 23:25:28','3500');
execute insertarpayments('768', '08/04/2015 23:25:34','500');
execute insertarpayments('143708', '09/04/2015 02:30:03','-2000');
execute insertarpayments('129895', '09/04/2015 02:53:59','3000');
execute insertarpayments('129895', '09/04/2015 03:02:46','4000');
execute insertarpayments('143708', '09/04/2015 03:37:44','-2500');
execute insertarpayments('150826', '09/04/2015 03:57:32','-2000');
execute insertarpayments('24876', '09/04/2015 19:37:43','1250');
execute insertarpayments('143708', '09/04/2015 19:50:02','-2000');
execute insertarpayments('120264', '09/04/2015 20:00:26','600');
execute insertarpayments('59528', '09/04/2015 20:45:41','-1200');
execute insertarpayments('53724', '09/04/2015 20:59:40','-4500');
execute insertarpayments('118367', '09/04/2015 22:22:07','-1000');
execute insertarpayments('10191', '09/04/2015 23:02:01','-2500');
execute insertarpayments('6459', '09/04/2015 23:06:33','-2200');
execute insertarpayments('963', '09/04/2015 23:18:20','-1350');
execute insertarpayments('183', '09/04/2015 23:32:37','-2000');
execute insertarpayments('425', '10/04/2015 03:55:49','-10315');
execute insertarpayments('108677', '10/04/2015 04:06:06','500');
execute insertarpayments('108677', '10/04/2015 04:06:11','-1500');
execute insertarpayments('108677', '10/04/2015 04:06:15','2000');
execute insertarpayments('108677', '10/04/2015 19:29:30','3400');
execute insertarpayments('108677', '10/04/2015 19:29:42','3000');
execute insertarpayments('8018', '10/04/2015 19:33:58','-5700');
execute insertarpayments('123252', '10/04/2015 20:01:46','-1300');
execute insertarpayments('86172', '10/04/2015 19:59:23','-1000');
execute insertarpayments('143708', '10/04/2015 19:59:43','-3000');
execute insertarpayments('76865', '10/04/2015 20:20:36','1000');
execute insertarpayments('143708', '10/04/2015 20:29:33','-1000');
execute insertarpayments('76865', '10/04/2015 21:10:35','-2550');
execute insertarpayments('151085', '10/04/2015 21:11:19','-1518');
execute insertarpayments('143708', '10/04/2015 21:25:33','-7000');
execute insertarpayments('86172', '10/04/2015 21:25:43','-2150');
execute insertarpayments('5329', '10/04/2015 21:28:13','-1400');
execute insertarpayments('6459', '10/04/2015 22:46:48','-2000');
execute insertarpayments('32676', '10/04/2015 23:26:56','1500');
execute insertarpayments('970', '10/04/2015 23:32:14','2000');
execute insertarpayments('970', '10/04/2015 23:32:36','1000');
execute insertarpayments('32676', '10/04/2015 23:40:10','500');
execute insertarpayments('13766', '10/04/2015 23:40:29','900');
execute insertarpayments('143708', '10/04/2015 23:58:07','-1500');
execute insertarpayments('970', '11/04/2015 00:24:33','-3000');
execute insertarpayments('970', '11/04/2015 00:24:40','-1000');
execute insertarpayments('108677', '11/04/2015 00:26:32','-5320');
execute insertarpayments('357', '11/04/2015 01:07:25','2000');
execute insertarpayments('143708', '11/04/2015 03:45:41','-2500');
execute insertarpayments('143708', '11/04/2015 19:40:15','2000');
execute insertarpayments('143708', '11/04/2015 19:57:13','1000');
execute insertarpayments('143708', '11/04/2015 20:31:29','-3000');
execute insertarpayments('6459', '11/04/2015 23:31:48','-1875');
execute insertarpayments('108677', '11/04/2015 23:33:25','950');
execute insertarpayments('102985', '12/04/2015 01:02:29','-1100');
execute insertarpayments('1579', '12/04/2015 01:03:51','1000');
execute insertarpayments('149790', '12/04/2015 01:22:54','-1250');
execute insertarpayments('134152', '12/04/2015 01:28:57','-400');
execute insertarpayments('23995', '12/04/2015 01:50:27','-7560');
execute insertarpayments('143708', '12/04/2015 02:04:21','-3500');
execute insertarpayments('59936', '12/04/2015 02:04:52','-1000');
execute insertarpayments('149790', '12/04/2015 02:05:37','-1000');
execute insertarpayments('134152', '12/04/2015 02:10:23','-490');
execute insertarpayments('10191', '12/04/2015 02:32:35','-1500');
execute insertarpayments('963', '12/04/2015 02:47:58','1000');
execute insertarpayments('6459', '12/04/2015 02:56:00','-2250');
execute insertarpayments('23124', '12/04/2015 03:15:37','-1000');
execute insertarpayments('963', '12/04/2015 03:17:02','-1000');
execute insertarpayments('963', '12/04/2015 03:36:16','-1000');
execute insertarpayments('8018', '12/04/2015 19:18:15','600');
execute insertarpayments('8018', '12/04/2015 19:29:02','600');
execute insertarpayments('27939', '12/04/2015 19:38:33','2000');
execute insertarpayments('8018', '12/04/2015 19:47:27','600');
execute insertarpayments('153797', '12/04/2015 20:02:01','-450');
execute insertarpayments('8018', '12/04/2015 20:20:13','600');
execute insertarpayments('126938', '12/04/2015 20:47:07','-2250');
execute insertarpayments('153797', '12/04/2015 20:55:18','-500');
execute insertarpayments('153797', '12/04/2015 20:55:25','-220');
execute insertarpayments('153797', '12/04/2015 20:55:37','-300');
execute insertarpayments('143708', '12/04/2015 21:00:44','-2050');
execute insertarpayments('108677', '12/04/2015 21:32:15','875');
execute insertarpayments('153797', '12/04/2015 21:38:16','-750');
execute insertarpayments('69103', '12/04/2015 21:43:26','-3500');
execute insertarpayments('150826', '12/04/2015 22:11:05','1610');
execute insertarpayments('3142', '12/04/2015 22:48:57','1000');
execute insertarpayments('357', '12/04/2015 22:49:32','-500');
execute insertarpayments('357', '12/04/2015 22:49:37','-105');
execute insertarpayments('143708', '12/04/2015 23:22:38','-5500');
execute insertarpayments('28908', '12/04/2015 23:24:53','880');
execute insertarpayments('108677', '12/04/2015 23:47:36','-4390');
execute insertarpayments('143708', '12/04/2015 23:55:55','-1500');
execute insertarpayments('143708', '13/04/2015 01:05:39','-2300');
execute insertarpayments('143708', '13/04/2015 01:20:03','-1500');
execute insertarpayments('3142', '13/04/2015 01:34:02','-1550');
execute insertarpayments('3142', '13/04/2015 01:34:11','-1150');
execute insertarpayments('8018', '13/04/2015 20:24:32','-9000');
execute insertarpayments('8018', '13/04/2015 20:24:46','-500');
execute insertarpayments('143708', '13/04/2015 20:26:34','1000');
execute insertarpayments('137244', '13/04/2015 20:27:14','-1300');
execute insertarpayments('8018', '13/04/2015 20:31:00','-500');
execute insertarpayments('768', '13/04/2015 22:40:39','2500');
execute insertarpayments('143708', '13/04/2015 23:09:36','-4000');
execute insertarpayments('150826', '13/04/2015 23:15:32','1200');
execute insertarpayments('143708', '13/04/2015 23:10:48','-1000');
execute insertarpayments('143708', '14/04/2015 00:16:42','-3500');
execute insertarpayments('91211', '14/04/2015 00:40:44','1000');
execute insertarpayments('91211', '14/04/2015 01:23:10','1000');
execute insertarpayments('91211', '14/04/2015 01:41:51','500');
execute insertarpayments('86172', '14/04/2015 19:02:42','1000');
execute insertarpayments('3292', '14/04/2015 19:51:44','1000');
execute insertarpayments('122429', '14/04/2015 19:54:37','-1500');
execute insertarpayments('108677', '14/04/2015 19:59:15','2000');
execute insertarpayments('3292', '14/04/2015 20:13:45','100');
execute insertarpayments('143708', '14/04/2015 20:14:21','1000');
execute insertarpayments('143708', '14/04/2015 20:24:37','-6000');
execute insertarpayments('143708', '14/04/2015 20:24:52','-1000');
execute insertarpayments('6794', '14/04/2015 20:52:24','1500');
execute insertarpayments('143708', '14/04/2015 20:57:31','1000');
execute insertarpayments('6794', '14/04/2015 21:44:03','700');
execute insertarpayments('143708', '14/04/2015 21:57:56','-1000');
execute insertarpayments('153952', '15/04/2015 00:00:45','1000');
execute insertarpayments('108677', '15/04/2015 00:01:55','-3600');
execute insertarpayments('183', '15/04/2015 00:03:12','-2500');
execute insertarpayments('153951', '15/04/2015 00:08:15','500');
execute insertarpayments('153951', '15/04/2015 00:08:24','500');
execute insertarpayments('153951', '15/04/2015 00:48:36','-1350');
execute insertarpayments('183', '15/04/2015 00:55:51','-400');
execute insertarpayments('43554', '15/04/2015 01:00:28','-700');
execute insertarpayments('153948', '15/04/2015 01:07:51','-700');
execute insertarpayments('153949', '15/04/2015 01:07:59','-400');
execute insertarpayments('43554', '15/04/2015 01:21:40','-1000');
execute insertarpayments('153951', '15/04/2015 01:35:02','-1100');
execute insertarpayments('153952', '15/04/2015 01:43:28','-1000');
execute insertarpayments('153952', '15/04/2015 01:43:34','-500');
execute insertarpayments('938', '15/04/2015 01:46:35','-1000');
execute insertarpayments('1287', '15/04/2015 02:23:53','-3200');
execute insertarpayments('1287', '15/04/2015 03:55:42','-500');
execute insertarpayments('38', '15/04/2015 18:30:04','700');
execute insertarpayments('38', '15/04/2015 18:56:02','700');
execute insertarpayments('8018', '15/04/2015 20:07:24','600');
execute insertarpayments('8018', '15/04/2015 20:07:45','100');
execute insertarpayments('8018', '15/04/2015 20:19:31','600');
execute insertarpayments('8018', '15/04/2015 20:20:57','100');
execute insertarpayments('8018', '15/04/2015 20:36:27','600');
execute insertarpayments('21843', '15/04/2015 21:01:08','-1200');
execute insertarpayments('38', '15/04/2015 22:10:13','-1400');
execute insertarpayments('38', '15/04/2015 22:10:22','-2100');
execute insertarpayments('21468', '15/04/2015 22:30:04','-2000');
execute insertarpayments('2734', '15/04/2015 22:44:20','-2300');
execute insertarpayments('143708', '15/04/2015 23:02:48','-6000');
execute insertarpayments('97692', '15/04/2015 23:15:28','-1400');
execute insertarpayments('97692', '15/04/2015 23:15:35','-600');
execute insertarpayments('97692', '15/04/2015 23:15:43','-500');
execute insertarpayments('6459', '15/04/2015 23:34:22','-1000');
execute insertarpayments('153967', '16/04/2015 00:50:10','1100');
execute insertarpayments('153967', '16/04/2015 00:50:21','400');
execute insertarpayments('153967', '16/04/2015 00:50:29','300');
execute insertarpayments('153969', '16/04/2015 01:05:37','-3750');
execute insertarpayments('153967', '16/04/2015 01:17:05','1100');
execute insertarpayments('153970', '16/04/2015 01:23:03','-3500');
execute insertarpayments('126950', '16/04/2015 02:38:17','-1000');
execute insertarpayments('73107', '16/04/2015 03:02:52','-1100');
execute insertarpayments('153972', '16/04/2015 03:02:02','1000');
execute insertarpayments('153972', '16/04/2015 03:02:28','980');
execute insertarpayments('153972', '16/04/2015 03:02:34','800');
execute insertarpayments('938', '16/04/2015 03:36:54','-815');
execute insertarpayments('142064', '16/04/2015 18:45:12','1000');
execute insertarpayments('108677', '16/04/2015 19:27:01','5000');
execute insertarpayments('108677', '16/04/2015 19:57:32','-5000');
execute insertarpayments('108677', '16/04/2015 19:57:37','-4000');
execute insertarpayments('143708', '16/04/2015 20:33:28','-3000');
execute insertarpayments('95457', '16/04/2015 20:35:26','2000');
execute insertarpayments('76865', '16/04/2015 20:54:48','1000');
execute insertarpayments('135702', '16/04/2015 21:51:29','1000');
execute insertarpayments('868', '16/04/2015 22:14:22','1900');
execute insertarpayments('867', '16/04/2015 22:14:32','2000');
execute insertarpayments('76865', '16/04/2015 22:24:08','1000');
execute insertarpayments('76865', '16/04/2015 22:50:38','600');
execute insertarpayments('124606', '16/04/2015 22:59:10','4000');
execute insertarpayments('867', '16/04/2015 23:04:22','-8000');
execute insertarpayments('963', '16/04/2015 23:05:05','-2300');
execute insertarpayments('76865', '16/04/2015 23:09:30','1200');
execute insertarpayments('70376', '16/04/2015 23:28:19','-4000');
execute insertarpayments('109612', '17/04/2015 01:01:46','-1450');
execute insertarpayments('425', '17/04/2015 01:22:52','-2000');
execute insertarpayments('149671', '17/04/2015 03:56:22','-2650');
execute insertarpayments('143708', '17/04/2015 18:45:29','2000');
execute insertarpayments('86172', '17/04/2015 18:45:40','450');
execute insertarpayments('705', '17/04/2015 19:08:26','500');
execute insertarpayments('108677', '17/04/2015 19:44:39','5000');
execute insertarpayments('108677', '17/04/2015 19:44:59','1500');
execute insertarpayments('143708', '17/04/2015 19:45:20','-2000');
execute insertarpayments('11136', '17/04/2015 20:04:07','1400');
execute insertarpayments('143708', '17/04/2015 20:11:11','-1500');
execute insertarpayments('8018', '17/04/2015 20:11:38','-4200');
execute insertarpayments('11136', '17/04/2015 20:16:36','-1400');
execute insertarpayments('108677', '17/04/2015 20:16:57','-5000');
execute insertarpayments('108677', '17/04/2015 20:17:04','-4000');
execute insertarpayments('143708', '17/04/2015 20:26:35','-4500');
execute insertarpayments('6794', '17/04/2015 22:31:42','-4500');
execute insertarpayments('6794', '17/04/2015 22:31:48','600');
execute insertarpayments('6794', '17/04/2015 22:31:54','-600');
execute insertarpayments('6794', '17/04/2015 22:32:00','-400');
execute insertarpayments('970', '17/04/2015 22:52:52','1000');
execute insertarpayments('970', '17/04/2015 22:52:56','-100');
execute insertarpayments('105821', '17/04/2015 23:34:59','1000');
execute insertarpayments('868', '18/04/2015 00:09:59','1350');
execute insertarpayments('128697', '18/04/2015 00:42:18','-1000');
execute insertarpayments('118354', '18/04/2015 01:29:38','2000');
execute insertarpayments('136951', '18/04/2015 02:11:14','2000');
execute insertarpayments('118354', '18/04/2015 02:11:33','-2000');
execute insertarpayments('118354', '18/04/2015 02:11:53','-4500');
execute insertarpayments('694', '18/04/2015 02:54:27','-2950');
execute insertarpayments('153970', '18/04/2015 03:00:18','-2000');
execute insertarpayments('153970', '18/04/2015 03:05:29','-500');
execute insertarpayments('8327', '18/04/2015 03:10:05','-1500');
execute insertarpayments('136951', '18/04/2015 03:15:42','-2000');
execute insertarpayments('136951', '18/04/2015 03:15:49','-3250');
execute insertarpayments('868', '18/04/2015 03:21:34','-1560');
execute insertarpayments('108677', '18/04/2015 19:25:31','4100');
execute insertarpayments('21468', '18/04/2015 20:49:44','-3150');
execute insertarpayments('21468', '18/04/2015 23:27:20','-3790');
execute insertarpayments('140491', '19/04/2015 00:41:35','1500');
execute insertarpayments('108677', '19/04/2015 01:13:16','-4650');
execute insertarpayments('45859', '19/04/2015 01:54:34','200');
execute insertarpayments('45859', '19/04/2015 01:54:38','200');
execute insertarpayments('45859', '19/04/2015 01:54:43','350');
execute insertarpayments('140491', '19/04/2015 02:43:15','-1500');
execute insertarpayments('140491', '19/04/2015 02:43:20','-1000');
execute insertarpayments('45859', '19/04/2015 02:49:54','400');
execute insertarpayments('108677', '19/04/2015 03:57:17','-1800');
execute insertarpayments('56787', '19/04/2015 18:57:48','-1000');
execute insertarpayments('6459', '19/04/2015 20:12:57','-3000');
execute insertarpayments('3093', '19/04/2015 20:32:09','-100');
execute insertarpayments('3093', '19/04/2015 20:37:24','-300');
execute insertarpayments('6459', '19/04/2015 21:21:31','-2300');
execute insertarpayments('3093', '19/04/2015 21:45:12','600');
execute insertarpayments('6459', '19/04/2015 21:51:24','-1250');
execute insertarpayments('3093', '19/04/2015 22:07:23','-400');
execute insertarpayments('3093', '19/04/2015 22:08:56','600');
execute insertarpayments('3093', '19/04/2015 22:13:08','150');
execute insertarpayments('3093', '19/04/2015 22:13:42','-150');
execute insertarpayments('3093', '19/04/2015 22:14:53','-150');
execute insertarpayments('3093', '19/04/2015 22:16:15','950');
execute insertarpayments('143708', '19/04/2015 22:20:19','-2000');
execute insertarpayments('143708', '19/04/2015 22:55:51','-800');
execute insertarpayments('128978', '19/04/2015 23:04:48','-1200');
execute insertarpayments('963', '19/04/2015 23:14:34','-600');
execute insertarpayments('6459', '20/04/2015 00:01:19','-1500');
execute insertarpayments('124652', '20/04/2015 00:52:43','-500');
execute insertarpayments('15469', '20/04/2015 01:04:05','-900');
execute insertarpayments('124653', '20/04/2015 01:05:57','-500');
execute insertarpayments('109612', '20/04/2015 01:16:07','-3450');
execute insertarpayments('108677', '20/04/2015 18:45:32','5000');
execute insertarpayments('108677', '20/04/2015 18:45:39','5000');
execute insertarpayments('107981', '20/04/2015 19:07:45','2000');
execute insertarpayments('108677', '20/04/2015 19:50:56','-5000');
execute insertarpayments('108677', '20/04/2015 19:51:04','-5000');
execute insertarpayments('107981', '20/04/2015 20:04:03','2500');
execute insertarpayments('8018', '20/04/2015 20:04:39','900');
execute insertarpayments('108504', '20/04/2015 20:06:37','10000');
execute insertarpayments('107981', '20/04/2015 20:43:14','-4500');
execute insertarpayments('107981', '20/04/2015 20:43:23','-8300');
execute insertarpayments('107981', '20/04/2015 20:44:11','-2650');
execute insertarpayments('8018', '20/04/2015 20:44:45','-900');
execute insertarpayments('8018', '20/04/2015 20:44:51','-100');
execute insertarpayments('8018', '20/04/2015 21:06:08','-500');
execute insertarpayments('694', '20/04/2015 21:48:33','-2800');
execute insertarpayments('768', '20/04/2015 21:49:16','-26000');
execute insertarpayments('768', '20/04/2015 21:49:26','5000');
execute insertarpayments('86172', '20/04/2015 22:05:27','350');
execute insertarpayments('86172', '20/04/2015 22:05:32','-350');
execute insertarpayments('86172', '20/04/2015 22:05:38','-650');
execute insertarpayments('86172', '20/04/2015 22:09:16','-450');
execute insertarpayments('154085', '20/04/2015 22:33:30','1000');
execute insertarpayments('1579', '20/04/2015 23:36:33','1000');
execute insertarpayments('149014', '20/04/2015 23:58:38','-1800');
execute insertarpayments('149014', '20/04/2015 23:59:05','-250');
execute insertarpayments('1216', '21/04/2015 00:36:27','600');
execute insertarpayments('154085', '21/04/2015 00:36:39','-1000');
execute insertarpayments('154085', '21/04/2015 00:36:45','-500');
execute insertarpayments('154085', '21/04/2015 01:08:59','-400');
execute insertarpayments('1216', '21/04/2015 01:23:04','100');
execute insertarpayments('1216', '21/04/2015 01:35:02','200');
execute insertarpayments('138209', '21/04/2015 01:52:47','550');
execute insertarpayments('138209', '21/04/2015 01:52:52','500');
execute insertarpayments('1287', '21/04/2015 02:04:25','-1569');
execute insertarpayments('108677', '21/04/2015 03:55:55','-1750');
execute insertarpayments('5943', '21/04/2015 03:56:13','-1800');
execute insertarpayments('1579', '21/04/2015 03:58:35','-800');
execute insertarpayments('1287', '21/04/2015 04:01:57','-1085');
execute insertarpayments('8018', '21/04/2015 19:47:19','900');
execute insertarpayments('6794', '21/04/2015 20:24:51','-4500');
execute insertarpayments('23995', '21/04/2015 21:06:27','-2450');
execute insertarpayments('154102', '21/04/2015 21:38:56','2000');
execute insertarpayments('56558', '22/04/2015 00:08:59','-1500');
execute insertarpayments('19423', '22/04/2015 00:21:22','-2000');
execute insertarpayments('19423', '22/04/2015 00:32:50','-780');
execute insertarpayments('146', '22/04/2015 00:34:45','-1190');
execute insertarpayments('19423', '22/04/2015 01:01:26','-3200');
execute insertarpayments('154106', '22/04/2015 01:18:13','-1300');
execute insertarpayments('109612', '22/04/2015 02:58:40','200');
execute insertarpayments('109612', '22/04/2015 02:58:46','-200');
execute insertarpayments('109612', '22/04/2015 02:58:55','-2100');
execute insertarpayments('108677', '22/04/2015 19:24:11','4500');
execute insertarpayments('357', '22/04/2015 20:07:05','3300');
execute insertarpayments('154102', '22/04/2015 20:41:53','2000');
execute insertarpayments('154116', '22/04/2015 20:46:09','-550');
execute insertarpayments('154115', '22/04/2015 20:46:34','-650');
execute insertarpayments('357', '22/04/2015 21:02:15','-2033');
execute insertarpayments('22622', '22/04/2015 21:06:46','-2000');
execute insertarpayments('108677', '22/04/2015 21:07:06','-4500');
execute insertarpayments('108677', '22/04/2015 21:07:12','-5000');
execute insertarpayments('154102', '22/04/2015 22:15:11','-2950');
execute insertarpayments('76865', '22/04/2015 23:00:07','1000');
execute insertarpayments('17969', '22/04/2015 23:04:55','3000');
execute insertarpayments('17969', '22/04/2015 23:14:23','2900');
execute insertarpayments('17969', '22/04/2015 23:17:34','2000');
execute insertarpayments('109612', '22/04/2015 23:27:06','-1150');
execute insertarpayments('76865', '23/04/2015 01:09:59','-5500');
execute insertarpayments('108677', '23/04/2015 01:24:37','2000');
execute insertarpayments('108677', '23/04/2015 01:24:57','-600');
execute insertarpayments('76865', '23/04/2015 02:29:56','-7200');
execute insertarpayments('108677', '23/04/2015 03:24:19','-2000');
execute insertarpayments('45855', '23/04/2015 03:39:57','500');
execute insertarpayments('45855', '23/04/2015 03:41:39','1500');
execute insertarpayments('45855', '23/04/2015 03:48:17','500');
execute insertarpayments('143708', '23/04/2015 19:32:51','2000');
execute insertarpayments('6794', '23/04/2015 19:36:21','800');
execute insertarpayments('143708', '23/04/2015 19:55:29','-2000');
execute insertarpayments('120264', '23/04/2015 20:30:50','600');
execute insertarpayments('6459', '23/04/2015 20:53:35','-2400');
execute insertarpayments('149671', '23/04/2015 22:57:27','-1500');
execute insertarpayments('694', '23/04/2015 23:24:00','-2660');
execute insertarpayments('143708', '23/04/2015 23:23:55','1000');
execute insertarpayments('207', '23/04/2015 23:28:16','-1100');
execute insertarpayments('109612', '24/04/2015 00:15:52','300');
execute insertarpayments('154133', '24/04/2015 00:25:09','4000');
execute insertarpayments('114780', '24/04/2015 00:27:35','-1800');
execute insertarpayments('149671', '24/04/2015 00:35:29','500');
execute insertarpayments('122685', '24/04/2015 00:30:39','620');
execute insertarpayments('5351', '24/04/2015 00:32:27','680');
execute insertarpayments('109612', '24/04/2015 01:08:17','300');
execute insertarpayments('154133', '24/04/2015 01:07:26','5000');
execute insertarpayments('154131', '24/04/2015 01:36:39','-800');
execute insertarpayments('154131', '24/04/2015 01:44:01','-200');
execute insertarpayments('447', '24/04/2015 02:03:01','1000');
execute insertarpayments('152489', '24/04/2015 02:04:41','-3155');
execute insertarpayments('152489', '24/04/2015 02:17:59','-3100');
execute insertarpayments('154133', '24/04/2015 02:20:37','5000');
execute insertarpayments('447', '24/04/2015 02:21:38','-1000');
execute insertarpayments('447', '24/04/2015 02:21:42','-1000');
execute insertarpayments('154133', '24/04/2015 02:47:41','3500');
execute insertarpayments('21506', '24/04/2015 02:56:32','-3000');
execute insertarpayments('154133', '24/04/2015 02:57:24','6000');
execute insertarpayments('447', '24/04/2015 03:11:50','-700');
execute insertarpayments('5943', '24/04/2015 03:32:50','-800');
execute insertarpayments('26058', '24/04/2015 03:34:28','-1650');
execute insertarpayments('57155', '24/04/2015 03:34:41','-1200');
execute insertarpayments('81491', '24/04/2015 03:35:55','-1050');
execute insertarpayments('447', '24/04/2015 03:45:35','-600');
execute insertarpayments('357', '24/04/2015 19:37:46','9500');
execute insertarpayments('21843', '24/04/2015 20:30:43','-2887,9');
execute insertarpayments('357', '24/04/2015 22:38:01','2000');
execute insertarpayments('357', '24/04/2015 22:38:10','-5000');
execute insertarpayments('357', '24/04/2015 22:38:48','-9500');
execute insertarpayments('2734', '24/04/2015 22:42:47','-950');
execute insertarpayments('76081', '25/04/2015 00:13:32','-1260');
execute insertarpayments('151856', '25/04/2015 00:20:02','-1000');
execute insertarpayments('64666', '25/04/2015 00:20:14','1000');
execute insertarpayments('868', '25/04/2015 00:59:49','2000');
execute insertarpayments('868', '25/04/2015 01:52:55','-4000');
execute insertarpayments('868', '25/04/2015 02:22:33','-900');
execute insertarpayments('694', '25/04/2015 03:14:22','-3300');
execute insertarpayments('43848', '25/04/2015 03:57:38','-1175');
execute insertarpayments('154102', '25/04/2015 03:56:36','2000');
execute insertarpayments('154102', '25/04/2015 03:56:42','-2800');
execute insertarpayments('38', '25/04/2015 18:42:17','1200');
execute insertarpayments('154102', '25/04/2015 19:06:08','2000');
execute insertarpayments('86172', '25/04/2015 19:32:30','-700');
execute insertarpayments('38', '25/04/2015 20:03:09','-1200');
execute insertarpayments('38', '25/04/2015 20:03:16','-1980');
execute insertarpayments('357', '25/04/2015 21:08:30','5000');
execute insertarpayments('154102', '25/04/2015 22:31:12','6000');
execute insertarpayments('72273', '25/04/2015 23:26:01','1000');
execute insertarpayments('970', '26/04/2015 01:22:51','2000');
execute insertarpayments('5943', '26/04/2015 03:20:09','-1000');
execute insertarpayments('154221', '26/04/2015 03:57:46','1000');
execute insertarpayments('154221', '26/04/2015 03:57:50','-1000');
execute insertarpayments('154221', '26/04/2015 03:57:54','-700');
execute insertarpayments('154102', '26/04/2015 03:58:23','-4050');
execute insertarpayments('963', '26/04/2015 03:59:14','1000');
execute insertarpayments('963', '26/04/2015 03:59:19','-1000');
execute insertarpayments('963', '26/04/2015 03:59:27','-750');
execute insertarpayments('153043', '26/04/2015 22:32:33','300');
execute insertarpayments('153043', '26/04/2015 22:32:39','-1050');
execute insertarpayments('153043', '26/04/2015 22:40:04','-200');
execute insertarpayments('154232', '26/04/2015 22:44:53','500');
execute insertarpayments('153043', '26/04/2015 22:47:33','-600');
execute insertarpayments('153043', '26/04/2015 23:10:41','-520');
execute insertarpayments('153043', '26/04/2015 23:19:09','-750');
execute insertarpayments('116870', '26/04/2015 23:20:47','-1100');
execute insertarpayments('116870', '26/04/2015 23:20:54','-1250');
execute insertarpayments('153043', '26/04/2015 23:41:22','-300');
execute insertarpayments('153043', '26/04/2015 23:43:08','-780');
execute insertarpayments('150666', '26/04/2015 23:53:05','-1400');
execute insertarpayments('138371', '27/04/2015 00:01:53','-500');
execute insertarpayments('138371', '27/04/2015 00:01:59','-600');
execute insertarpayments('868', '27/04/2015 00:12:24','-1300');
execute insertarpayments('153043', '27/04/2015 00:21:09','350');
execute insertarpayments('868', '27/04/2015 00:25:37','-800');
execute insertarpayments('150666', '27/04/2015 00:33:42','-1500');
execute insertarpayments('150666', '27/04/2015 00:33:46','-1000');
execute insertarpayments('153043', '27/04/2015 01:03:48','-2150');
execute insertarpayments('153043', '27/04/2015 01:15:50','-600');
execute insertarpayments('141785', '27/04/2015 01:16:54','-1700');
execute insertarpayments('131398', '27/04/2015 01:23:37','-2000');
execute insertarpayments('153043', '27/04/2015 01:26:11','-700');
execute insertarpayments('153043', '27/04/2015 01:49:10','-950');
execute insertarpayments('153043', '27/04/2015 01:54:11','-300');
execute insertarpayments('153043', '27/04/2015 02:21:52','-500');
execute insertarpayments('153043', '27/04/2015 02:25:41','-570');
execute insertarpayments('153043', '27/04/2015 02:39:00','-560');
execute insertarpayments('154102', '27/04/2015 19:35:58','4000');
execute insertarpayments('143708', '27/04/2015 19:36:10','2000');
execute insertarpayments('684', '27/04/2015 20:31:49','800');
execute insertarpayments('8018', '27/04/2015 20:33:19','700');
execute insertarpayments('8018', '27/04/2015 20:35:38','600');
execute insertarpayments('8018', '27/04/2015 20:35:44','600');
execute insertarpayments('143708', '27/04/2015 20:39:00','-2000');
execute insertarpayments('143708', '27/04/2015 20:42:28','-6000');
execute insertarpayments('154102', '27/04/2015 20:42:41','8000');
execute insertarpayments('64666', '27/04/2015 20:49:21','1000');
execute insertarpayments('153043', '27/04/2015 20:49:43','-1000');
execute insertarpayments('684', '27/04/2015 20:58:35','-1650');
execute insertarpayments('108677', '27/04/2015 22:31:19','5985');
execute insertarpayments('103112', '27/04/2015 22:38:44','-3000');
execute insertarpayments('154102', '28/04/2015 00:40:13','10000');
execute insertarpayments('108677', '28/04/2015 02:03:08','-6450');
execute insertarpayments('49054', '28/04/2015 03:33:53','-1112,5');
execute insertarpayments('938', '28/04/2015 03:36:39','-2427');
execute insertarpayments('25997', '28/04/2015 19:05:16','600');
execute insertarpayments('25997', '28/04/2015 19:05:24','600');
execute insertarpayments('25997', '28/04/2015 19:15:52','400');
execute insertarpayments('357', '28/04/2015 19:16:06','16000');
execute insertarpayments('357', '28/04/2015 19:16:12','11500');
execute insertarpayments('25997', '28/04/2015 19:36:16','400');
execute insertarpayments('25997', '28/04/2015 19:43:59','600');
execute insertarpayments('143708', '28/04/2015 20:46:45','-4500');
execute insertarpayments('6794', '28/04/2015 21:23:55','-3550');
execute insertarpayments('357', '28/04/2015 22:11:40','-6000');
execute insertarpayments('357', '28/04/2015 22:11:49','-16000');
execute insertarpayments('23995', '28/04/2015 22:36:31','-2050');
execute insertarpayments('25475', '29/04/2015 00:49:55','-500');
execute insertarpayments('15469', '29/04/2015 02:08:03','-1700');
execute insertarpayments('131401', '29/04/2015 02:11:41','-400');
execute insertarpayments('38', '29/04/2015 18:17:05','600');
execute insertarpayments('38', '29/04/2015 18:17:10','600');
execute insertarpayments('38', '29/04/2015 19:22:43','-970');
execute insertarpayments('38', '29/04/2015 19:22:48','-1200');
execute insertarpayments('143708', '29/04/2015 19:33:39','-3000');
execute insertarpayments('143708', '29/04/2015 20:10:31','-10000');
execute insertarpayments('56787', '29/04/2015 23:07:53','-870');
execute insertarpayments('108677', '29/04/2015 23:29:52','-2000');
execute insertarpayments('938', '30/04/2015 02:13:08','-1300');
execute insertarpayments('142064', '30/04/2015 19:22:49','1000');
execute insertarpayments('84405', '30/04/2015 19:26:54','-905');
execute insertarpayments('84405', '30/04/2015 19:27:00','-400');
execute insertarpayments('108677', '30/04/2015 20:38:42','-8500');
execute insertarpayments('425', '30/04/2015 20:38:51','5000');
execute insertarpayments('64666', '30/04/2015 20:39:41','1000');
execute insertarpayments('963', '30/04/2015 20:44:05','600');
execute insertarpayments('143708', '30/04/2015 23:39:56','-5000');
execute insertarpayments('153043', '01/05/2015 00:05:20','-750');
execute insertarpayments('153043', '01/05/2015 00:05:31','-730');
execute insertarpayments('142064', '01/05/2015 00:26:26','-700');
execute insertarpayments('122685', '01/05/2015 00:45:57','800');
execute insertarpayments('5351', '01/05/2015 00:47:50','780');
execute insertarpayments('153043', '01/05/2015 00:48:36','1000');
execute insertarpayments('150447', '01/05/2015 01:37:13','900');
execute insertarpayments('41931', '01/05/2015 01:46:44','-1050');
execute insertarpayments('76865', '01/05/2015 02:22:16','500');
execute insertarpayments('10191', '01/05/2015 02:22:40','-450');
execute insertarpayments('10191', '01/05/2015 02:22:44','500');
execute insertarpayments('153043', '01/05/2015 02:30:39','400');
execute insertarpayments('15469', '01/05/2015 02:37:33','-1400');
execute insertarpayments('108678', '01/05/2015 02:58:58','5000');
execute insertarpayments('143708', '01/05/2015 03:34:02','2000');
execute insertarpayments('5943', '01/05/2015 04:14:49','-2860');
execute insertarpayments('108677', '01/05/2015 04:15:16','-3850');
execute insertarpayments('108677', '01/05/2015 04:15:21','5000');
execute insertarpayments('105821', '01/05/2015 19:05:44','400');
execute insertarpayments('24139', '01/05/2015 19:06:08','700');
execute insertarpayments('24139', '01/05/2015 19:21:48','-700');
execute insertarpayments('24139', '01/05/2015 19:21:55','-1500');
execute insertarpayments('108677', '01/05/2015 19:23:11','3500');
execute insertarpayments('154311', '01/05/2015 21:38:17','1000');
execute insertarpayments('154311', '01/05/2015 21:38:22','3000');
execute insertarpayments('154311', '01/05/2015 21:53:22','2500');
execute insertarpayments('10191', '01/05/2015 22:50:50','500');
execute insertarpayments('4743', '01/05/2015 23:09:26','1200');
execute insertarpayments('938', '01/05/2015 23:16:04','-1300');
execute insertarpayments('4743', '02/05/2015 00:47:35','-800');
execute insertarpayments('19112', '02/05/2015 02:06:47','300');
execute insertarpayments('19112', '02/05/2015 02:06:52','300');
execute insertarpayments('19112', '02/05/2015 02:06:56','600');
execute insertarpayments('19112', '02/05/2015 02:07:02','350');
execute insertarpayments('19112', '02/05/2015 02:07:07','800');
execute insertarpayments('19112', '02/05/2015 02:07:12','500');
execute insertarpayments('92194', '02/05/2015 20:08:27','1500');
execute insertarpayments('143708', '02/05/2015 21:43:44','1500');
execute insertarpayments('43848', '02/05/2015 22:26:49','-1750');
execute insertarpayments('10191', '02/05/2015 22:43:53','-1500');
execute insertarpayments('963', '02/05/2015 23:03:24','-1200');
execute insertarpayments('143708', '02/05/2015 23:17:44','1500');
execute insertarpayments('92194', '03/05/2015 00:46:54','-3400');
execute insertarpayments('140491', '03/05/2015 01:26:48','1500');
execute insertarpayments('140491', '03/05/2015 02:58:42','-1600');
execute insertarpayments('140491', '03/05/2015 02:58:48','-1500');
execute insertarpayments('31169', '03/05/2015 03:49:53','-1190');
execute insertarpayments('84405', '03/05/2015 20:02:07','-1200');
execute insertarpayments('938', '03/05/2015 20:24:31','-6000');
execute insertarpayments('3142', '03/05/2015 22:33:55','-900');
execute insertarpayments('92194', '03/05/2015 22:36:09','-500');
execute insertarpayments('92194', '03/05/2015 22:48:08','1000');
execute insertarpayments('53724', '04/05/2015 00:18:06','-6500');
execute insertarpayments('94544', '04/05/2015 00:19:03','-1000');
execute insertarpayments('154374', '04/05/2015 00:47:30','-2000');
execute insertarpayments('123556', '04/05/2015 00:49:25','-1500');
execute insertarpayments('123556', '04/05/2015 00:49:35','1000');
execute insertarpayments('123556', '04/05/2015 01:12:50','-1000');
execute insertarpayments('123556', '04/05/2015 01:12:55','-1450');
execute insertarpayments('938', '04/05/2015 02:26:29','-1750');
execute insertarpayments('108677', '04/05/2015 20:06:13','8250');
execute insertarpayments('149014', '04/05/2015 21:25:24','-600');
execute insertarpayments('8018', '04/05/2015 21:56:43','-10000');
execute insertarpayments('8018', '04/05/2015 22:41:01','-5000');
execute insertarpayments('357', '04/05/2015 22:50:25','4050');
execute insertarpayments('357', '04/05/2015 23:02:03','-5370');
execute insertarpayments('154374', '04/05/2015 23:09:45','-3000');
execute insertarpayments('108677', '04/05/2015 23:42:04','-565');
execute insertarpayments('357', '05/05/2015 00:19:25','2000');
execute insertarpayments('70533', '05/05/2015 00:41:19','-1800');
execute insertarpayments('108677', '05/05/2015 01:22:38','-7700');
execute insertarpayments('154399', '05/05/2015 02:22:32','-4555');
execute insertarpayments('17748', '05/05/2015 18:14:01','-2150');
execute insertarpayments('8018', '05/05/2015 20:07:32','750');
execute insertarpayments('135369', '05/05/2015 20:33:33','-3500');
execute insertarpayments('6794', '05/05/2015 20:39:16','-3700');
execute insertarpayments('8018', '05/05/2015 20:57:59','600');
execute insertarpayments('8018', '05/05/2015 20:59:11','500');
execute insertarpayments('135369', '05/05/2015 21:01:09','-500');
execute insertarpayments('8018', '05/05/2015 22:26:08','-600');
execute insertarpayments('8018', '05/05/2015 22:26:14','-5900');
execute insertarpayments('135369', '05/05/2015 22:57:07','-700');
execute insertarpayments('53724', '05/05/2015 23:15:16','2000');
execute insertarpayments('53724', '05/05/2015 23:44:01','-200');
execute insertarpayments('78977', '06/05/2015 00:02:49','-1100');
execute insertarpayments('138371', '06/05/2015 00:03:08','400');
execute insertarpayments('138371', '06/05/2015 00:11:09','400');
execute insertarpayments('138371', '06/05/2015 00:34:07','200');
execute insertarpayments('150447', '06/05/2015 01:51:20','-2000');
execute insertarpayments('70533', '06/05/2015 02:34:50','-2000');
execute insertarpayments('38', '06/05/2015 19:46:11','600');
execute insertarpayments('38', '06/05/2015 19:46:17','-600');
execute insertarpayments('38', '06/05/2015 19:46:26','-600');
execute insertarpayments('6794', '06/05/2015 20:08:06','1500');
execute insertarpayments('6794', '06/05/2015 20:38:38','800');
execute insertarpayments('357', '06/05/2015 21:24:51','5000');
execute insertarpayments('357', '06/05/2015 21:27:57','15000');
execute insertarpayments('357', '06/05/2015 21:28:07','-12000');
execute insertarpayments('28908', '06/05/2015 22:12:15','-1900');
execute insertarpayments('6794', '06/05/2015 22:21:22','-800');
execute insertarpayments('6794', '06/05/2015 22:21:32','-1500');
execute insertarpayments('6794', '06/05/2015 22:21:35','-1000');
execute insertarpayments('69103', '06/05/2015 23:38:22','-1000');
execute insertarpayments('69103', '07/05/2015 00:09:22','-1000');
execute insertarpayments('69103', '07/05/2015 00:58:13','-1000');
execute insertarpayments('143708', '07/05/2015 01:29:17','-8000');
execute insertarpayments('357', '07/05/2015 01:36:44','-8800');
execute insertarpayments('147146', '07/05/2015 01:47:06','2000');
execute insertarpayments('154435', '07/05/2015 01:52:16','-1500');
execute insertarpayments('154435', '07/05/2015 01:52:26','-700');
execute insertarpayments('109612', '07/05/2015 01:54:11','-2000');
execute insertarpayments('154435', '07/05/2015 02:31:15','-5000');
execute insertarpayments('154443', '07/05/2015 02:31:26','-1100');
execute insertarpayments('147146', '07/05/2015 02:39:58','-6000');
execute insertarpayments('147146', '07/05/2015 02:40:06','-2000');
execute insertarpayments('109612', '07/05/2015 02:57:24','-1500');
execute insertarpayments('129895', '07/05/2015 02:54:28','4000');
execute insertarpayments('129895', '07/05/2015 02:55:35','4000');
execute insertarpayments('109612', '07/05/2015 03:15:18','-1000');
execute insertarpayments('129895', '07/05/2015 03:12:26','1000');
execute insertarpayments('147146', '07/05/2015 03:25:04','1000');
execute insertarpayments('129895', '07/05/2015 03:25:46','900');
execute insertarpayments('147146', '07/05/2015 03:34:17','1000');
execute insertarpayments('129895', '07/05/2015 03:40:16','800');
execute insertarpayments('129895', '07/05/2015 03:44:00','250');
execute insertarpayments('425', '07/05/2015 19:32:51','5000');
execute insertarpayments('429', '07/05/2015 20:18:49','-5000');
execute insertarpayments('357', '07/05/2015 20:21:28','6000');
execute insertarpayments('963', '07/05/2015 20:22:17','-1200');
execute insertarpayments('425', '07/05/2015 20:23:03','-5300');
execute insertarpayments('154429', '07/05/2015 20:23:20','-1000');
execute insertarpayments('6794', '07/05/2015 21:58:48','1000');
execute insertarpayments('6794', '07/05/2015 22:32:58','1200');
execute insertarpayments('57971', '07/05/2015 22:38:53','1000');
execute insertarpayments('143708', '07/05/2015 23:02:13','2000');
execute insertarpayments('6794', '07/05/2015 23:19:31','-2200');
execute insertarpayments('6794', '07/05/2015 23:19:35','-3000');
execute insertarpayments('6794', '07/05/2015 23:20:03','-300');
execute insertarpayments('154429', '07/05/2015 23:27:46','-1585');
execute insertarpayments('108677', '07/05/2015 23:36:11','5000');
execute insertarpayments('79502', '07/05/2015 23:40:56','-1808');
execute insertarpayments('108677', '07/05/2015 23:40:42','-5000');
execute insertarpayments('137192', '08/05/2015 01:40:25','-1250');
execute insertarpayments('148178', '08/05/2015 02:11:27','1000');
execute insertarpayments('154443', '08/05/2015 02:35:19','-1950');
execute insertarpayments('6741', '08/05/2015 02:53:58','-1085');
execute insertarpayments('23995', '08/05/2015 04:03:42','-3000');
execute insertarpayments('108677', '08/05/2015 18:38:59','11750');
execute insertarpayments('108677', '08/05/2015 18:39:05','5000');
execute insertarpayments('74704', '08/05/2015 18:40:40','700');
execute insertarpayments('17748', '08/05/2015 18:40:58','-1900');
execute insertarpayments('74704', '08/05/2015 18:57:42','450');
execute insertarpayments('138371', '08/05/2015 19:09:03','1000');
execute insertarpayments('8018', '08/05/2015 19:11:52','1000');
execute insertarpayments('8018', '08/05/2015 19:26:54','1000');
execute insertarpayments('1674', '08/05/2015 19:56:25','-1000');
execute insertarpayments('74704', '08/05/2015 19:56:51','-1150');
execute insertarpayments('74704', '08/05/2015 19:56:56','-400');
execute insertarpayments('8018', '08/05/2015 20:21:58','600');
execute insertarpayments('8018', '08/05/2015 20:22:07','600');
execute insertarpayments('154429', '08/05/2015 21:03:52','-500');
execute insertarpayments('69103', '08/05/2015 22:36:25','1000');
execute insertarpayments('154500', '08/05/2015 22:38:11','1078');
execute insertarpayments('154500', '08/05/2015 22:38:34','1000');
execute insertarpayments('69103', '08/05/2015 22:43:06','1000');
execute insertarpayments('103394', '08/05/2015 22:44:27','500');
execute insertarpayments('5355', '08/05/2015 22:59:44','-600');
execute insertarpayments('69103', '08/05/2015 23:56:00','-2000');
execute insertarpayments('69103', '08/05/2015 23:56:07','-3000');
execute insertarpayments('103394', '09/05/2015 00:32:11','-2500');
execute insertarpayments('103394', '09/05/2015 00:35:34','-500');
execute insertarpayments('103394', '09/05/2015 00:44:08','-200');
execute insertarpayments('103394', '09/05/2015 00:47:00','-600');
execute insertarpayments('103394', '09/05/2015 01:02:31','-500');
execute insertarpayments('103394', '09/05/2015 01:13:45','-550');
execute insertarpayments('69103', '09/05/2015 02:54:15','-5000');
execute insertarpayments('23124', '09/05/2015 19:44:08','600');
execute insertarpayments('1183', '09/05/2015 22:56:28','1000');
execute insertarpayments('6459', '10/05/2015 00:20:33','-350');
execute insertarpayments('6459', '10/05/2015 00:20:39','-350');
execute insertarpayments('6459', '10/05/2015 00:20:50','-800');
execute insertarpayments('6459', '10/05/2015 00:20:55','-500');
execute insertarpayments('6459', '10/05/2015 00:40:27','-600');
execute insertarpayments('53724', '10/05/2015 02:26:33','-1700');
execute insertarpayments('145997', '10/05/2015 03:43:46','2000');
execute insertarpayments('23995', '10/05/2015 03:58:26','-5600');
execute insertarpayments('145997', '10/05/2015 03:54:28','-2000');
execute insertarpayments('3142', '10/05/2015 23:28:40','1000');
execute insertarpayments('3142', '10/05/2015 23:28:47','150');
execute insertarpayments('3142', '10/05/2015 23:28:59','-1150');
execute insertarpayments('3142', '10/05/2015 23:29:08','-2100');
execute insertarpayments('38', '11/05/2015 19:05:12','600');
execute insertarpayments('38', '11/05/2015 19:05:17','600');
execute insertarpayments('128148', '11/05/2015 19:39:57','-600');
execute insertarpayments('128148', '11/05/2015 19:40:03','-850');
execute insertarpayments('108677', '11/05/2015 19:55:10','-5000');
execute insertarpayments('684', '11/05/2015 20:08:47','400');
execute insertarpayments('684', '11/05/2015 20:08:52','400');
execute insertarpayments('684', '11/05/2015 20:08:57','300');
execute insertarpayments('8018', '11/05/2015 20:32:55','-4000');
execute insertarpayments('128148', '11/05/2015 20:51:35','-600');
execute insertarpayments('108677', '11/05/2015 21:44:40','3500');
execute insertarpayments('6794', '11/05/2015 21:50:23','1200');
execute insertarpayments('6794', '11/05/2015 21:50:28','1000');
execute insertarpayments('357', '11/05/2015 23:54:35','1000');
execute insertarpayments('138849', '12/05/2015 00:07:16','-2500');
execute insertarpayments('14163', '12/05/2015 01:41:10','-1500');
execute insertarpayments('14163', '12/05/2015 01:45:51','-1000');
execute insertarpayments('108677', '12/05/2015 03:38:02','-5000');
execute insertarpayments('108677', '12/05/2015 03:41:14','5000');
execute insertarpayments('154597', '12/05/2015 04:05:50','-6000');
execute insertarpayments('8018', '12/05/2015 20:57:41','600');
execute insertarpayments('8018', '12/05/2015 20:57:48','600');
execute insertarpayments('8018', '12/05/2015 22:13:15','600');
execute insertarpayments('183', '12/05/2015 22:17:43','-1000');
execute insertarpayments('150447', '12/05/2015 23:21:40','350');
execute insertarpayments('150447', '12/05/2015 23:21:49','600');
execute insertarpayments('6459', '12/05/2015 23:35:41','-1250');
execute insertarpayments('183', '12/05/2015 23:40:39','-1500');
execute insertarpayments('150447', '13/05/2015 00:12:57','-1550');
execute insertarpayments('138849', '13/05/2015 00:13:07','-3005');
execute insertarpayments('6459', '13/05/2015 00:19:28','-500');
execute insertarpayments('6459', '13/05/2015 00:35:54','-3000');
execute insertarpayments('6459', '13/05/2015 00:49:34','-800');
execute insertarpayments('6459', '13/05/2015 00:49:38','-355');
execute insertarpayments('154606', '13/05/2015 02:18:36','400');
execute insertarpayments('154606', '13/05/2015 02:18:40','500');
execute insertarpayments('154606', '13/05/2015 02:18:45','400');
execute insertarpayments('6794', '13/05/2015 19:55:54','800');
execute insertarpayments('6794', '13/05/2015 20:24:56','500');
execute insertarpayments('5351', '14/05/2015 00:48:58','900');
execute insertarpayments('43024', '14/05/2015 01:07:39','-2050');
execute insertarpayments('5351', '14/05/2015 01:58:13','-750');
execute insertarpayments('154597', '14/05/2015 03:32:05','-2300');
execute insertarpayments('57971', '14/05/2015 19:53:52','1700');
execute insertarpayments('57971', '14/05/2015 20:23:35','-1735');
execute insertarpayments('57971', '14/05/2015 20:49:14','-3490');
execute insertarpayments('57971', '14/05/2015 20:49:25','1700');
execute insertarpayments('154617', '14/05/2015 21:43:26','900');
execute insertarpayments('154617', '14/05/2015 21:43:32','1000');
execute insertarpayments('1579', '14/05/2015 21:45:48','1000');
execute insertarpayments('108677', '14/05/2015 22:17:47','5000');
execute insertarpayments('6459', '15/05/2015 00:27:06','-3500');
execute insertarpayments('129382', '15/05/2015 02:12:41','-2100');
execute insertarpayments('130061', '15/05/2015 02:39:29','-2455');
execute insertarruletas('C-06-02-037-C7TF','P-06-02-029-C7TF');
execute insertarruletas('C-06-02-037-C7TF','P-06-02-028-C7TF');
execute insertarruletas('C-06-02-037-C7TF','P-06-02-035-C7TF');
execute insertarruletas('C-06-02-037-C7TF','P-06-02-032-C7TF');
execute insertarruletas('C-06-02-029-C7TF','P-06-02-028-C7TF');
execute insertarruletas('C-06-02-029-C7TF','P-06-02-039-C7TF');
execute insertarruletas('C-06-02-029-C7TF','P-06-02-034-C7TF');
execute insertarruletas('C-06-02-029-C7TF','P-06-02-030-C7TF');
execute insertarruletas('C-06-02-029-C7TF','P-06-02-032-C7TF');
execute insertarruletas('C-06-02-038-C7TF','P-06-02-028-C7TF');
execute insertarruletas('C-06-02-038-C7TF','P-06-02-039-C7TF');
execute insertarruletas('C-06-02-038-C7TF','P-06-02-034-C7TF');
execute insertarruletas('C-06-02-038-C7TF','P-06-02-032-C7TF');
execute insertarruletas('C-06-02-036-C7TF','P-06-02-029-C7TF');
execute insertarruletas('C-06-02-036-C7TF','P-06-02-035-C7TF');
execute insertarruletas('C-06-02-036-C7TF','P-06-02-033-C7TF');
execute insertarruletas('C-06-02-035-C7TF','P-06-02-028-C7TF');
execute insertarruletas('C-06-02-035-C7TF','P-06-02-035-C7TF');
execute insertarruletas('C-06-02-035-C7TF','P-06-02-039-C7TF');
execute insertarruletas('C-06-02-035-C7TF','P-06-02-030-C7TF');
execute insertarruletas('C-06-02-035-C7TF','P-06-02-032-C7TF');
execute insertarruletas('C-06-02-039-C7TF','P-06-02-029-C7TF');
execute insertarruletas('C-06-02-039-C7TF','P-06-02-028-C7TF');
execute insertarruletas('C-06-02-039-C7TF','P-06-02-034-C7TF');
execute insertarruletas('C-06-02-034-C7TF','P-06-02-028-C7TF');
execute insertarruletas('C-06-02-034-C7TF','P-06-02-035-C7TF');
execute insertarruletas('C-06-02-034-C7TF','P-06-02-039-C7TF');
execute insertarruletas('C-06-02-034-C7TF','P-06-02-032-C7TF');
execute insertarruletas('C-06-02-033-C7TF','P-06-02-029-C7TF');
execute insertarruletas('C-06-02-033-C7TF','P-06-02-028-C7TF');
execute insertarruletas('C-06-02-033-C7TF','P-06-02-033-C7TF');
execute insertarruletas('C-06-02-033-C7TF','P-06-02-030-C7TF');
execute insertarruletas('C-06-02-032-C7TF','P-06-02-034-C7TF');
execute insertarruletas('C-06-02-032-C7TF','P-06-02-033-C7TF');
execute insertarruletas('C-06-02-032-C7TF','P-06-02-030-C7TF');
execute insertarconfiguraciones('29/12/2014 07:00:00','09/01/2015 06:59:59','RA01', '1', '0', 'C-06-02-034-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('09/01/2015 07:00:00','20/01/2015 06:59:59','RA01', '1', '0', 'C-06-02-034-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('20/01/2015 07:00:00','31/01/2015 06:59:59','RA01', '1', '0', 'C-06-02-032-C7TF', 'P-06-02-034-C7TF');
execute insertarconfiguraciones('31/01/2015 07:00:00','11/02/2015 06:59:59','RA01', '1', '0', 'C-06-02-032-C7TF', 'P-06-02-033-C7TF');
execute insertarconfiguraciones('11/02/2015 07:00:00','22/02/2015 06:59:59','RA01', '1', '0', 'C-06-02-036-C7TF', 'P-06-02-029-C7TF');
execute insertarconfiguraciones('22/02/2015 07:00:00','05/03/2015 06:59:59','RA01', '1', '0', 'C-06-02-036-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('05/03/2015 07:00:00','16/03/2015 06:59:59','RA01', '1', '0', 'C-06-02-029-C7TF', 'P-06-02-039-C7TF');
execute insertarconfiguraciones('16/03/2015 07:00:00','27/03/2015 06:59:59','RA01', '1', '0', 'C-06-02-029-C7TF', 'P-06-02-030-C7TF');
execute insertarconfiguraciones('27/03/2015 07:00:00','07/04/2015 06:59:59','RA01', '1', '0', 'C-06-02-039-C7TF', 'P-06-02-034-C7TF');
execute insertarconfiguraciones('07/04/2015 07:00:00','18/04/2015 06:59:59','RA01', '1', '0', 'C-06-02-039-C7TF', 'P-06-02-029-C7TF');
execute insertarconfiguraciones('18/04/2015 07:00:00','29/04/2015 06:59:59','RA01', '1', '0', 'C-06-02-037-C7TF', 'P-06-02-029-C7TF');
execute insertarconfiguraciones('29/04/2015 07:00:00','10/05/2015 06:59:59','RA01', '1', '0', 'C-06-02-037-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('10/05/2015 07:00:00','31/12/2099 23:59:59','RA01', '1', '0', 'C-06-02-035-C7TF', 'P-06-02-039-C7TF');
execute insertarconfiguraciones('29/12/2014 07:00:00','01/01/2015 19:50:05','RA02', '1', '0', 'C-06-02-037-C7TF', 'P-06-02-029-C7TF');
execute insertarconfiguraciones('01/01/2015 19:50:06','01/01/2015 22:05:36','RA02', '552', '159', 'C-06-02-037-C7TF', 'P-06-02-029-C7TF');
execute insertarconfiguraciones('01/01/2015 22:05:37','01/01/2015 22:44:29','RA02', '75', '51', 'C-06-02-037-C7TF', 'P-06-02-029-C7TF');
execute insertarconfiguraciones('01/01/2015 22:44:30','02/01/2015 00:00:45','RA02', '258', '237', 'C-06-02-037-C7TF', 'P-06-02-029-C7TF');
execute insertarconfiguraciones('02/01/2015 00:00:46','02/01/2015 19:16:34','RA02', '79', '127', 'C-06-02-037-C7TF', 'P-06-02-029-C7TF');
execute insertarconfiguraciones('02/01/2015 19:16:35','02/01/2015 20:21:43','RA02', '152', '139', 'C-06-02-037-C7TF', 'P-06-02-029-C7TF');
execute insertarconfiguraciones('02/01/2015 20:21:44','03/01/2015 02:29:38','RA02', '536', '236', 'C-06-02-037-C7TF', 'P-06-02-029-C7TF');
execute insertarconfiguraciones('03/01/2015 02:29:39','03/01/2015 23:03:36','RA02', '257', '240', 'C-06-02-037-C7TF', 'P-06-02-029-C7TF');
execute insertarconfiguraciones('03/01/2015 23:03:37','04/01/2015 02:20:36','RA02', '92', '242', 'C-06-02-037-C7TF', 'P-06-02-029-C7TF');
execute insertarconfiguraciones('04/01/2015 02:20:37','04/01/2015 20:08:33','RA02', '536', '142', 'C-06-02-037-C7TF', 'P-06-02-029-C7TF');
execute insertarconfiguraciones('04/01/2015 20:08:34','04/01/2015 20:27:18','RA02', '152', '148', 'C-06-02-037-C7TF', 'P-06-02-029-C7TF');
execute insertarconfiguraciones('04/01/2015 20:27:19','04/01/2015 22:19:19','RA02', '73', '159', 'C-06-02-037-C7TF', 'P-06-02-029-C7TF');
execute insertarconfiguraciones('04/01/2015 22:19:20','04/01/2015 23:10:31','RA02', '552', '127', 'C-06-02-037-C7TF', 'P-06-02-029-C7TF');
execute insertarconfiguraciones('04/01/2015 23:10:32','04/01/2015 23:54:46','RA02', '152', '137', 'C-06-02-037-C7TF', 'P-06-02-029-C7TF');
execute insertarconfiguraciones('04/01/2015 23:54:47','05/01/2015 01:48:41','RA02', '536', '139', 'C-06-02-037-C7TF', 'P-06-02-029-C7TF');
execute insertarconfiguraciones('05/01/2015 01:48:42','05/01/2015 19:33:43','RA02', '258', '235', 'C-06-02-037-C7TF', 'P-06-02-029-C7TF');
execute insertarconfiguraciones('05/01/2015 19:33:44','05/01/2015 20:37:28','RA02', '371', '292', 'C-06-02-037-C7TF', 'P-06-02-029-C7TF');
execute insertarconfiguraciones('05/01/2015 20:37:29','07/01/2015 20:29:45','RA02', '104', '236', 'C-06-02-037-C7TF', 'P-06-02-029-C7TF');
execute insertarconfiguraciones('07/01/2015 20:29:46','07/01/2015 22:25:13','RA02', '552', '240', 'C-06-02-037-C7TF', 'P-06-02-029-C7TF');
execute insertarconfiguraciones('07/01/2015 22:25:14','08/01/2015 20:15:36','RA02', '75', '134', 'C-06-02-037-C7TF', 'P-06-02-029-C7TF');
execute insertarconfiguraciones('08/01/2015 20:15:37','08/01/2015 23:28:10','RA02', '80', '242', 'C-06-02-037-C7TF', 'P-06-02-029-C7TF');
execute insertarconfiguraciones('08/01/2015 23:28:11','09/01/2015 00:31:01','RA02', '152', '142', 'C-06-02-037-C7TF', 'P-06-02-029-C7TF');
execute insertarconfiguraciones('09/01/2015 00:31:02','09/01/2015 06:59:59','RA02', '76', '148', 'C-06-02-037-C7TF', 'P-06-02-029-C7TF');
execute insertarconfiguraciones('09/01/2015 07:00:00','09/01/2015 20:08:06','RA02', '1', '0', 'C-06-02-037-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('09/01/2015 20:08:07','09/01/2015 20:34:03','RA02', '432', '255', 'C-06-02-037-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('09/01/2015 20:34:04','10/01/2015 01:03:29','RA02', '258', '141', 'C-06-02-037-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('10/01/2015 01:03:30','10/01/2015 01:24:36','RA02', '288', '159', 'C-06-02-037-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('10/01/2015 01:24:37','10/01/2015 20:56:48','RA02', '543', '51', 'C-06-02-037-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('10/01/2015 20:56:49','10/01/2015 22:11:56','RA02', '288', '237', 'C-06-02-037-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('10/01/2015 22:11:57','10/01/2015 22:25:43','RA02', '543', '127', 'C-06-02-037-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('10/01/2015 22:25:44','11/01/2015 19:57:20','RA02', '432', '137', 'C-06-02-037-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('11/01/2015 19:57:21','11/01/2015 22:19:33','RA02', '73', '292', 'C-06-02-037-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('11/01/2015 22:19:34','12/01/2015 19:43:42','RA02', '95', '236', 'C-06-02-037-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('12/01/2015 19:43:43','12/01/2015 20:38:08','RA02', '371', '134', 'C-06-02-037-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('12/01/2015 20:38:09','12/01/2015 21:07:12','RA02', '87', '242', 'C-06-02-037-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('12/01/2015 21:07:13','13/01/2015 02:31:07','RA02', '80', '142', 'C-06-02-037-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('13/01/2015 02:31:08','13/01/2015 22:08:19','RA02', '288', '148', 'C-06-02-037-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('13/01/2015 22:08:20','13/01/2015 22:26:10','RA02', '152', '255', 'C-06-02-037-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('13/01/2015 22:26:11','14/01/2015 01:14:49','RA02', '95', '141', 'C-06-02-037-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('14/01/2015 01:14:50','14/01/2015 19:46:04','RA02', '104', '51', 'C-06-02-037-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('14/01/2015 19:46:05','15/01/2015 00:19:52','RA02', '73', '237', 'C-06-02-037-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('15/01/2015 00:19:53','15/01/2015 23:00:29','RA02', '552', '139', 'C-06-02-037-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('15/01/2015 23:00:30','16/01/2015 00:49:01','RA02', '76', '235', 'C-06-02-037-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('16/01/2015 00:49:02','16/01/2015 23:45:36','RA02', '152', '292', 'C-06-02-037-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('16/01/2015 23:45:37','17/01/2015 00:42:09','RA02', '76', '236', 'C-06-02-037-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('17/01/2015 00:42:10','17/01/2015 01:54:45','RA02', '85', '240', 'C-06-02-037-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('17/01/2015 01:54:46','17/01/2015 02:54:15','RA02', '83', '134', 'C-06-02-037-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('17/01/2015 02:54:16','17/01/2015 21:49:44','RA02', '150', '133', 'C-06-02-037-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('17/01/2015 21:49:45','17/01/2015 22:51:26','RA02', '83', '242', 'C-06-02-037-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('17/01/2015 22:51:27','17/01/2015 23:53:46','RA02', '79', '142', 'C-06-02-037-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('17/01/2015 23:53:47','18/01/2015 20:21:00','RA02', '92', '255', 'C-06-02-037-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('18/01/2015 20:21:01','18/01/2015 22:20:16','RA02', '150', '141', 'C-06-02-037-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('18/01/2015 22:20:17','19/01/2015 19:33:29','RA02', '432', '159', 'C-06-02-037-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('19/01/2015 19:33:30','19/01/2015 21:22:13','RA02', '87', '51', 'C-06-02-037-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('19/01/2015 21:22:14','19/01/2015 21:58:06','RA02', '258', '127', 'C-06-02-037-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('19/01/2015 21:58:07','19/01/2015 22:51:34','RA02', '87', '137', 'C-06-02-037-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('19/01/2015 22:51:35','20/01/2015 06:59:59','RA02', '432', '139', 'C-06-02-037-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('20/01/2015 07:00:00','20/01/2015 20:03:44','RA02', '1', '0', 'C-06-02-034-C7TF', 'P-06-02-039-C7TF');
execute insertarconfiguraciones('20/01/2015 20:03:45','20/01/2015 20:39:43','RA02', '73', '235', 'C-06-02-034-C7TF', 'P-06-02-039-C7TF');
execute insertarconfiguraciones('20/01/2015 20:39:44','20/01/2015 22:34:59','RA02', '552', '236', 'C-06-02-034-C7TF', 'P-06-02-039-C7TF');
execute insertarconfiguraciones('20/01/2015 22:35:00','20/01/2015 23:51:10','RA02', '371', '240', 'C-06-02-034-C7TF', 'P-06-02-039-C7TF');
execute insertarconfiguraciones('20/01/2015 23:51:11','21/01/2015 23:52:06','RA02', '91', '133', 'C-06-02-034-C7TF', 'P-06-02-039-C7TF');
execute insertarconfiguraciones('21/01/2015 23:52:07','22/01/2015 20:06:06','RA02', '371', '142', 'C-06-02-034-C7TF', 'P-06-02-039-C7TF');
execute insertarconfiguraciones('22/01/2015 20:06:07','22/01/2015 20:44:12','RA02', '257', '148', 'C-06-02-034-C7TF', 'P-06-02-039-C7TF');
execute insertarconfiguraciones('22/01/2015 20:44:13','22/01/2015 21:57:14','RA02', '552', '255', 'C-06-02-034-C7TF', 'P-06-02-039-C7TF');
execute insertarconfiguraciones('22/01/2015 21:57:15','22/01/2015 22:28:07','RA02', '91', '141', 'C-06-02-034-C7TF', 'P-06-02-039-C7TF');
execute insertarconfiguraciones('22/01/2015 22:28:08','22/01/2015 23:13:33','RA02', '258', '159', 'C-06-02-034-C7TF', 'P-06-02-039-C7TF');
execute insertarconfiguraciones('22/01/2015 23:13:34','23/01/2015 02:15:14','RA02', '75', '237', 'C-06-02-034-C7TF', 'P-06-02-039-C7TF');
execute insertarconfiguraciones('23/01/2015 02:15:15','23/01/2015 19:15:08','RA02', '91', '127', 'C-06-02-034-C7TF', 'P-06-02-039-C7TF');
execute insertarconfiguraciones('23/01/2015 19:15:09','23/01/2015 20:04:36','RA02', '543', '137', 'C-06-02-034-C7TF', 'P-06-02-039-C7TF');
execute insertarconfiguraciones('23/01/2015 20:04:37','23/01/2015 22:12:42','RA02', '288', '139', 'C-06-02-034-C7TF', 'P-06-02-039-C7TF');
execute insertarconfiguraciones('23/01/2015 22:12:43','23/01/2015 22:50:30','RA02', '432', '292', 'C-06-02-034-C7TF', 'P-06-02-039-C7TF');
execute insertarconfiguraciones('23/01/2015 22:50:31','24/01/2015 01:45:14','RA02', '80', '236', 'C-06-02-034-C7TF', 'P-06-02-039-C7TF');
execute insertarconfiguraciones('24/01/2015 01:45:15','25/01/2015 21:50:50','RA02', '150', '242', 'C-06-02-034-C7TF', 'P-06-02-039-C7TF');
execute insertarconfiguraciones('25/01/2015 21:50:51','26/01/2015 00:28:01','RA02', '80', '148', 'C-06-02-034-C7TF', 'P-06-02-039-C7TF');
execute insertarconfiguraciones('26/01/2015 00:28:02','26/01/2015 19:38:03','RA02', '79', '255', 'C-06-02-034-C7TF', 'P-06-02-039-C7TF');
execute insertarconfiguraciones('26/01/2015 19:38:04','26/01/2015 19:56:35','RA02', '371', '141', 'C-06-02-034-C7TF', 'P-06-02-039-C7TF');
execute insertarconfiguraciones('26/01/2015 19:56:36','26/01/2015 21:29:44','RA02', '258', '51', 'C-06-02-034-C7TF', 'P-06-02-039-C7TF');
execute insertarconfiguraciones('26/01/2015 21:29:45','27/01/2015 20:41:37','RA02', '80', '127', 'C-06-02-034-C7TF', 'P-06-02-039-C7TF');
execute insertarconfiguraciones('27/01/2015 20:41:38','27/01/2015 23:12:59','RA02', '536', '235', 'C-06-02-034-C7TF', 'P-06-02-039-C7TF');
execute insertarconfiguraciones('27/01/2015 23:13:00','27/01/2015 23:51:19','RA02', '91', '292', 'C-06-02-034-C7TF', 'P-06-02-039-C7TF');
execute insertarconfiguraciones('27/01/2015 23:51:20','28/01/2015 21:08:15','RA02', '150', '240', 'C-06-02-034-C7TF', 'P-06-02-039-C7TF');
execute insertarconfiguraciones('28/01/2015 21:08:16','28/01/2015 22:04:03','RA02', '552', '134', 'C-06-02-034-C7TF', 'P-06-02-039-C7TF');
execute insertarconfiguraciones('28/01/2015 22:04:04','29/01/2015 01:15:14','RA02', '87', '133', 'C-06-02-034-C7TF', 'P-06-02-039-C7TF');
execute insertarconfiguraciones('29/01/2015 01:15:15','29/01/2015 21:37:55','RA02', '552', '142', 'C-06-02-034-C7TF', 'P-06-02-039-C7TF');
execute insertarconfiguraciones('29/01/2015 21:37:56','29/01/2015 22:43:56','RA02', '288', '148', 'C-06-02-034-C7TF', 'P-06-02-039-C7TF');
execute insertarconfiguraciones('29/01/2015 22:43:57','29/01/2015 23:22:15','RA02', '258', '159', 'C-06-02-034-C7TF', 'P-06-02-039-C7TF');
execute insertarconfiguraciones('29/01/2015 23:22:16','30/01/2015 02:01:25','RA02', '91', '51', 'C-06-02-034-C7TF', 'P-06-02-039-C7TF');
execute insertarconfiguraciones('30/01/2015 02:01:26','30/01/2015 20:13:32','RA02', '80', '127', 'C-06-02-034-C7TF', 'P-06-02-039-C7TF');
execute insertarconfiguraciones('30/01/2015 20:13:33','30/01/2015 21:59:34','RA02', '73', '139', 'C-06-02-034-C7TF', 'P-06-02-039-C7TF');
execute insertarconfiguraciones('30/01/2015 21:59:35','31/01/2015 00:37:10','RA02', '80', '235', 'C-06-02-034-C7TF', 'P-06-02-039-C7TF');
execute insertarconfiguraciones('31/01/2015 00:37:11','31/01/2015 06:59:59','RA02', '91', '292', 'C-06-02-034-C7TF', 'P-06-02-039-C7TF');
execute insertarconfiguraciones('31/01/2015 07:00:00','31/01/2015 19:20:46','RA02', '1', '0', 'C-06-02-034-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('31/01/2015 19:20:47','31/01/2015 21:51:56','RA02', '79', '236', 'C-06-02-034-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('31/01/2015 21:51:57','31/01/2015 22:53:36','RA02', '75', '134', 'C-06-02-034-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('31/01/2015 22:53:37','31/01/2015 23:29:13','RA02', '152', '242', 'C-06-02-034-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('31/01/2015 23:29:14','01/02/2015 21:33:05','RA02', '79', '142', 'C-06-02-034-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('01/02/2015 21:33:06','01/02/2015 23:34:14','RA02', '80', '148', 'C-06-02-034-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('01/02/2015 23:34:15','02/02/2015 19:58:07','RA02', '258', '255', 'C-06-02-034-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('02/02/2015 19:58:08','04/02/2015 01:20:47','RA02', '432', '141', 'C-06-02-034-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('04/02/2015 01:20:48','04/02/2015 21:30:54','RA02', '258', '51', 'C-06-02-034-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('04/02/2015 21:30:55','04/02/2015 22:53:51','RA02', '536', '237', 'C-06-02-034-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('04/02/2015 22:53:52','05/02/2015 20:38:12','RA02', '85', '137', 'C-06-02-034-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('05/02/2015 20:38:13','05/02/2015 22:09:10','RA02', '95', '236', 'C-06-02-034-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('05/02/2015 22:09:11','05/02/2015 23:07:04','RA02', '288', '240', 'C-06-02-034-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('05/02/2015 23:07:05','06/02/2015 00:56:53','RA02', '95', '134', 'C-06-02-034-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('06/02/2015 00:56:54','06/02/2015 19:51:19','RA02', '258', '133', 'C-06-02-034-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('06/02/2015 19:51:20','06/02/2015 20:25:21','RA02', '288', '242', 'C-06-02-034-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('06/02/2015 20:25:22','06/02/2015 21:28:08','RA02', '95', '142', 'C-06-02-034-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('06/02/2015 21:28:09','07/02/2015 00:42:48','RA02', '91', '255', 'C-06-02-034-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('07/02/2015 00:42:49','07/02/2015 01:53:57','RA02', '80', '159', 'C-06-02-034-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('07/02/2015 01:53:58','07/02/2015 22:01:24','RA02', '83', '51', 'C-06-02-034-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('07/02/2015 22:01:25','07/02/2015 22:30:02','RA02', '91', '127', 'C-06-02-034-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('07/02/2015 22:30:03','08/02/2015 01:22:38','RA02', '85', '139', 'C-06-02-034-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('08/02/2015 01:22:39','08/02/2015 20:54:01','RA02', '76', '235', 'C-06-02-034-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('08/02/2015 20:54:02','09/02/2015 02:45:11','RA02', '543', '292', 'C-06-02-034-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('09/02/2015 02:45:12','09/02/2015 20:03:28','RA02', '80', '134', 'C-06-02-034-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('09/02/2015 20:03:29','09/02/2015 21:13:44','RA02', '536', '133', 'C-06-02-034-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('09/02/2015 21:13:45','09/02/2015 22:32:42','RA02', '150', '142', 'C-06-02-034-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('09/02/2015 22:32:43','09/02/2015 22:49:39','RA02', '371', '255', 'C-06-02-034-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('09/02/2015 22:49:40','10/02/2015 20:16:27','RA02', '432', '141', 'C-06-02-034-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('10/02/2015 20:16:28','10/02/2015 21:04:16','RA02', '371', '159', 'C-06-02-034-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('10/02/2015 21:04:17','10/02/2015 22:51:46','RA02', '258', '51', 'C-06-02-034-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('10/02/2015 22:51:47','11/02/2015 02:13:24','RA02', '536', '237', 'C-06-02-034-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('11/02/2015 02:13:25','11/02/2015 06:59:59','RA02', '288', '127', 'C-06-02-034-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('11/02/2015 07:00:00','11/02/2015 20:16:01','RA02', '1', '0', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('11/02/2015 20:16:02','11/02/2015 20:58:18','RA02', '536', '137', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('11/02/2015 20:58:19','11/02/2015 22:22:56','RA02', '73', '139', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('11/02/2015 22:22:57','12/02/2015 01:16:02','RA02', '432', '235', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('12/02/2015 01:16:03','12/02/2015 22:28:34','RA02', '543', '292', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('12/02/2015 22:28:35','13/02/2015 00:59:35','RA02', '371', '240', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('13/02/2015 00:59:36','13/02/2015 20:36:13','RA02', '76', '142', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('13/02/2015 20:36:14','14/02/2015 01:59:15','RA02', '104', '148', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('14/02/2015 01:59:16','14/02/2015 21:30:14','RA02', '91', '51', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('14/02/2015 21:30:15','15/02/2015 21:20:04','RA02', '104', '237', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('15/02/2015 21:20:05','15/02/2015 23:42:30','RA02', '75', '127', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('15/02/2015 23:42:31','16/02/2015 19:32:13','RA02', '91', '137', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('16/02/2015 19:32:14','16/02/2015 20:29:00','RA02', '80', '139', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('16/02/2015 20:29:01','16/02/2015 21:37:44','RA02', '258', '292', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('16/02/2015 21:37:45','16/02/2015 22:46:36','RA02', '543', '236', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('16/02/2015 22:46:37','18/02/2015 00:20:35','RA02', '80', '240', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('18/02/2015 00:20:36','18/02/2015 00:36:51','RA02', '258', '134', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('18/02/2015 00:36:52','18/02/2015 21:40:37','RA02', '80', '133', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('18/02/2015 21:40:38','18/02/2015 21:45:20','RA02', '85', '242', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('18/02/2015 21:45:21','19/02/2015 00:34:19','RA02', '73', '142', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('19/02/2015 00:34:20','19/02/2015 20:41:04','RA02', '371', '148', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('19/02/2015 20:41:05','20/02/2015 20:12:16','RA02', '85', '255', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('20/02/2015 20:12:17','21/02/2015 21:04:41','RA02', '80', '141', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('21/02/2015 21:04:42','21/02/2015 22:53:39','RA02', '552', '51', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('21/02/2015 22:53:40','22/02/2015 01:21:22','RA02', '371', '237', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('22/02/2015 01:21:23','22/02/2015 03:13:29','RA02', '80', '127', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('22/02/2015 03:13:30','22/02/2015 06:59:59','RA02', '85', '137', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('22/02/2015 07:00:00','23/02/2015 00:57:47','RA02', '1', '0', 'C-06-02-029-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('23/02/2015 00:57:48','23/02/2015 19:40:28','RA02', '536', '139', 'C-06-02-029-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('23/02/2015 19:40:29','23/02/2015 20:13:02','RA02', '80', '292', 'C-06-02-029-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('23/02/2015 20:13:03','23/02/2015 21:19:05','RA02', '536', '240', 'C-06-02-029-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('23/02/2015 21:19:06','25/02/2015 20:50:07','RA02', '371', '133', 'C-06-02-029-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('25/02/2015 20:50:08','26/02/2015 20:49:50','RA02', '75', '242', 'C-06-02-029-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('26/02/2015 20:49:51','27/02/2015 00:12:27','RA02', '371', '142', 'C-06-02-029-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('27/02/2015 00:12:28','27/02/2015 01:08:07','RA02', '92', '255', 'C-06-02-029-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('27/02/2015 01:08:08','27/02/2015 19:34:57','RA02', '83', '159', 'C-06-02-029-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('27/02/2015 19:34:58','27/02/2015 20:05:23','RA02', '80', '51', 'C-06-02-029-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('27/02/2015 20:05:24','27/02/2015 22:06:10','RA02', '76', '237', 'C-06-02-029-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('27/02/2015 22:06:11','27/02/2015 22:47:22','RA02', '543', '137', 'C-06-02-029-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('27/02/2015 22:47:23','28/02/2015 19:40:27','RA02', '80', '235', 'C-06-02-029-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('28/02/2015 19:40:28','28/02/2015 20:36:52','RA02', '371', '236', 'C-06-02-029-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('28/02/2015 20:36:53','28/02/2015 21:38:27','RA02', '246', '240', 'C-06-02-029-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('28/02/2015 21:38:28','28/02/2015 23:22:06','RA02', '552', '134', 'C-06-02-029-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('28/02/2015 23:22:07','01/03/2015 01:53:56','RA02', '288', '133', 'C-06-02-029-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('01/03/2015 01:53:57','02/03/2015 19:40:17','RA02', '80', '242', 'C-06-02-029-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('02/03/2015 19:40:18','02/03/2015 23:32:37','RA02', '152', '142', 'C-06-02-029-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('02/03/2015 23:32:38','03/03/2015 02:19:29','RA02', '80', '255', 'C-06-02-029-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('03/03/2015 02:19:30','03/03/2015 20:33:35','RA02', '91', '141', 'C-06-02-029-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('03/03/2015 20:33:36','04/03/2015 02:20:29','RA02', '80', '159', 'C-06-02-029-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('04/03/2015 02:20:30','04/03/2015 19:28:06','RA02', '79', '237', 'C-06-02-029-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('04/03/2015 19:28:07','04/03/2015 20:32:56','RA02', '73', '127', 'C-06-02-029-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('04/03/2015 20:32:57','04/03/2015 21:13:31','RA02', '75', '292', 'C-06-02-029-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('04/03/2015 21:13:32','05/03/2015 06:59:59','RA02', '79', '236', 'C-06-02-029-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('05/03/2015 07:00:00','05/03/2015 21:01:08','RA02', '1', '0', 'C-06-02-033-C7TF', 'P-06-02-030-C7TF');
execute insertarconfiguraciones('05/03/2015 21:01:09','07/03/2015 02:22:48','RA02', '543', '240', 'C-06-02-033-C7TF', 'P-06-02-030-C7TF');
execute insertarconfiguraciones('07/03/2015 02:22:49','07/03/2015 22:25:00','RA02', '80', '134', 'C-06-02-033-C7TF', 'P-06-02-030-C7TF');
execute insertarconfiguraciones('07/03/2015 22:25:01','07/03/2015 22:26:45','RA02', '543', '133', 'C-06-02-033-C7TF', 'P-06-02-030-C7TF');
execute insertarconfiguraciones('07/03/2015 22:26:46','08/03/2015 01:02:51','RA02', '80', '242', 'C-06-02-033-C7TF', 'P-06-02-030-C7TF');
execute insertarconfiguraciones('08/03/2015 01:02:52','08/03/2015 01:54:54','RA02', '95', '142', 'C-06-02-033-C7TF', 'P-06-02-030-C7TF');
execute insertarconfiguraciones('08/03/2015 01:54:55','08/03/2015 21:37:23','RA02', '104', '148', 'C-06-02-033-C7TF', 'P-06-02-030-C7TF');
execute insertarconfiguraciones('08/03/2015 21:37:24','08/03/2015 22:35:54','RA02', '150', '255', 'C-06-02-033-C7TF', 'P-06-02-030-C7TF');
execute insertarconfiguraciones('08/03/2015 22:35:55','09/03/2015 19:27:55','RA02', '104', '159', 'C-06-02-033-C7TF', 'P-06-02-030-C7TF');
execute insertarconfiguraciones('09/03/2015 19:27:56','09/03/2015 20:12:48','RA02', '371', '51', 'C-06-02-033-C7TF', 'P-06-02-030-C7TF');
execute insertarconfiguraciones('09/03/2015 20:12:49','10/03/2015 22:21:18','RA02', '80', '237', 'C-06-02-033-C7TF', 'P-06-02-030-C7TF');
execute insertarconfiguraciones('10/03/2015 22:21:19','10/03/2015 22:30:13','RA02', '104', '137', 'C-06-02-033-C7TF', 'P-06-02-030-C7TF');
execute insertarconfiguraciones('10/03/2015 22:30:14','11/03/2015 20:21:30','RA02', '432', '139', 'C-06-02-033-C7TF', 'P-06-02-030-C7TF');
execute insertarconfiguraciones('11/03/2015 20:21:31','11/03/2015 20:29:14','RA02', '80', '235', 'C-06-02-033-C7TF', 'P-06-02-030-C7TF');
execute insertarconfiguraciones('11/03/2015 20:29:15','11/03/2015 23:15:36','RA02', '104', '292', 'C-06-02-033-C7TF', 'P-06-02-030-C7TF');
execute insertarconfiguraciones('11/03/2015 23:15:37','12/03/2015 20:16:10','RA02', '543', '240', 'C-06-02-033-C7TF', 'P-06-02-030-C7TF');
execute insertarconfiguraciones('12/03/2015 20:16:11','12/03/2015 22:44:35','RA02', '258', '133', 'C-06-02-033-C7TF', 'P-06-02-030-C7TF');
execute insertarconfiguraciones('12/03/2015 22:44:36','12/03/2015 23:49:33','RA02', '80', '142', 'C-06-02-033-C7TF', 'P-06-02-030-C7TF');
execute insertarconfiguraciones('12/03/2015 23:49:34','13/03/2015 00:55:43','RA02', '432', '148', 'C-06-02-033-C7TF', 'P-06-02-030-C7TF');
execute insertarconfiguraciones('13/03/2015 00:55:44','13/03/2015 20:00:16','RA02', '76', '141', 'C-06-02-033-C7TF', 'P-06-02-030-C7TF');
execute insertarconfiguraciones('13/03/2015 20:00:17','13/03/2015 20:05:42','RA02', '258', '159', 'C-06-02-033-C7TF', 'P-06-02-030-C7TF');
execute insertarconfiguraciones('13/03/2015 20:05:43','13/03/2015 21:22:03','RA02', '80', '51', 'C-06-02-033-C7TF', 'P-06-02-030-C7TF');
execute insertarconfiguraciones('13/03/2015 21:22:04','13/03/2015 23:17:55','RA02', '79', '137', 'C-06-02-033-C7TF', 'P-06-02-030-C7TF');
execute insertarconfiguraciones('13/03/2015 23:17:56','13/03/2015 23:59:00','RA02', '80', '139', 'C-06-02-033-C7TF', 'P-06-02-030-C7TF');
execute insertarconfiguraciones('13/03/2015 23:59:01','14/03/2015 01:53:52','RA02', '79', '235', 'C-06-02-033-C7TF', 'P-06-02-030-C7TF');
execute insertarconfiguraciones('14/03/2015 01:53:53','14/03/2015 23:32:24','RA02', '543', '236', 'C-06-02-033-C7TF', 'P-06-02-030-C7TF');
execute insertarconfiguraciones('14/03/2015 23:32:25','15/03/2015 19:46:07','RA02', '552', '133', 'C-06-02-033-C7TF', 'P-06-02-030-C7TF');
execute insertarconfiguraciones('15/03/2015 19:46:08','15/03/2015 20:43:36','RA02', '152', '148', 'C-06-02-033-C7TF', 'P-06-02-030-C7TF');
execute insertarconfiguraciones('15/03/2015 20:43:37','15/03/2015 23:40:55','RA02', '85', '255', 'C-06-02-033-C7TF', 'P-06-02-030-C7TF');
execute insertarconfiguraciones('15/03/2015 23:40:56','16/03/2015 01:24:19','RA02', '246', '51', 'C-06-02-033-C7TF', 'P-06-02-030-C7TF');
execute insertarconfiguraciones('16/03/2015 01:24:20','16/03/2015 06:59:59','RA02', '80', '127', 'C-06-02-033-C7TF', 'P-06-02-030-C7TF');
execute insertarconfiguraciones('16/03/2015 07:00:00','16/03/2015 19:22:51','RA02', '1', '0', 'C-06-02-033-C7TF', 'P-06-02-033-C7TF');
execute insertarconfiguraciones('16/03/2015 19:22:52','16/03/2015 20:17:56','RA02', '150', '137', 'C-06-02-033-C7TF', 'P-06-02-033-C7TF');
execute insertarconfiguraciones('16/03/2015 20:17:57','16/03/2015 22:30:54','RA02', '80', '139', 'C-06-02-033-C7TF', 'P-06-02-033-C7TF');
execute insertarconfiguraciones('16/03/2015 22:30:55','16/03/2015 23:02:39','RA02', '536', '292', 'C-06-02-033-C7TF', 'P-06-02-033-C7TF');
execute insertarconfiguraciones('16/03/2015 23:02:40','17/03/2015 20:00:41','RA02', '246', '236', 'C-06-02-033-C7TF', 'P-06-02-033-C7TF');
execute insertarconfiguraciones('17/03/2015 20:00:42','17/03/2015 20:23:25','RA02', '85', '240', 'C-06-02-033-C7TF', 'P-06-02-033-C7TF');
execute insertarconfiguraciones('17/03/2015 20:23:26','17/03/2015 22:57:01','RA02', '246', '134', 'C-06-02-033-C7TF', 'P-06-02-033-C7TF');
execute insertarconfiguraciones('17/03/2015 22:57:02','18/03/2015 23:15:49','RA02', '371', '133', 'C-06-02-033-C7TF', 'P-06-02-033-C7TF');
execute insertarconfiguraciones('18/03/2015 23:15:50','19/03/2015 19:53:38','RA02', '80', '141', 'C-06-02-033-C7TF', 'P-06-02-033-C7TF');
execute insertarconfiguraciones('19/03/2015 19:53:39','19/03/2015 20:25:57','RA02', '91', '159', 'C-06-02-033-C7TF', 'P-06-02-033-C7TF');
execute insertarconfiguraciones('19/03/2015 20:25:58','19/03/2015 22:25:36','RA02', '83', '51', 'C-06-02-033-C7TF', 'P-06-02-033-C7TF');
execute insertarconfiguraciones('19/03/2015 22:25:37','19/03/2015 23:21:46','RA02', '104', '237', 'C-06-02-033-C7TF', 'P-06-02-033-C7TF');
execute insertarconfiguraciones('19/03/2015 23:21:47','19/03/2015 23:38:34','RA02', '75', '127', 'C-06-02-033-C7TF', 'P-06-02-033-C7TF');
execute insertarconfiguraciones('19/03/2015 23:38:35','20/03/2015 00:35:06','RA02', '258', '137', 'C-06-02-033-C7TF', 'P-06-02-033-C7TF');
execute insertarconfiguraciones('20/03/2015 00:35:07','20/03/2015 20:22:46','RA02', '83', '139', 'C-06-02-033-C7TF', 'P-06-02-033-C7TF');
execute insertarconfiguraciones('20/03/2015 20:22:47','20/03/2015 23:41:10','RA02', '152', '235', 'C-06-02-033-C7TF', 'P-06-02-033-C7TF');
execute insertarconfiguraciones('20/03/2015 23:41:11','21/03/2015 00:22:02','RA02', '246', '236', 'C-06-02-033-C7TF', 'P-06-02-033-C7TF');
execute insertarconfiguraciones('21/03/2015 00:22:03','21/03/2015 20:25:25','RA02', '76', '240', 'C-06-02-033-C7TF', 'P-06-02-033-C7TF');
execute insertarconfiguraciones('21/03/2015 20:25:26','22/03/2015 00:42:04','RA02', '258', '134', 'C-06-02-033-C7TF', 'P-06-02-033-C7TF');
execute insertarconfiguraciones('22/03/2015 00:42:05','22/03/2015 02:28:30','RA02', '536', '242', 'C-06-02-033-C7TF', 'P-06-02-033-C7TF');
execute insertarconfiguraciones('22/03/2015 02:28:31','22/03/2015 19:45:03','RA02', '246', '142', 'C-06-02-033-C7TF', 'P-06-02-033-C7TF');
execute insertarconfiguraciones('22/03/2015 19:45:04','22/03/2015 20:35:51','RA02', '80', '148', 'C-06-02-033-C7TF', 'P-06-02-033-C7TF');
execute insertarconfiguraciones('22/03/2015 20:35:52','22/03/2015 22:05:54','RA02', '543', '255', 'C-06-02-033-C7TF', 'P-06-02-033-C7TF');
execute insertarconfiguraciones('22/03/2015 22:05:55','22/03/2015 23:11:26','RA02', '85', '141', 'C-06-02-033-C7TF', 'P-06-02-033-C7TF');
execute insertarconfiguraciones('22/03/2015 23:11:27','24/03/2015 00:17:08','RA02', '543', '159', 'C-06-02-033-C7TF', 'P-06-02-033-C7TF');
execute insertarconfiguraciones('24/03/2015 00:17:09','24/03/2015 02:26:10','RA02', '85', '127', 'C-06-02-033-C7TF', 'P-06-02-033-C7TF');
execute insertarconfiguraciones('24/03/2015 02:26:11','24/03/2015 22:13:11','RA02', '150', '137', 'C-06-02-033-C7TF', 'P-06-02-033-C7TF');
execute insertarconfiguraciones('24/03/2015 22:13:12','24/03/2015 22:26:14','RA02', '91', '139', 'C-06-02-033-C7TF', 'P-06-02-033-C7TF');
execute insertarconfiguraciones('24/03/2015 22:26:15','25/03/2015 00:19:55','RA02', '95', '292', 'C-06-02-033-C7TF', 'P-06-02-033-C7TF');
execute insertarconfiguraciones('25/03/2015 00:19:56','25/03/2015 21:05:33','RA02', '91', '240', 'C-06-02-033-C7TF', 'P-06-02-033-C7TF');
execute insertarconfiguraciones('25/03/2015 21:05:34','25/03/2015 21:23:42','RA02', '150', '134', 'C-06-02-033-C7TF', 'P-06-02-033-C7TF');
execute insertarconfiguraciones('25/03/2015 21:23:43','25/03/2015 22:37:46','RA02', '104', '133', 'C-06-02-033-C7TF', 'P-06-02-033-C7TF');
execute insertarconfiguraciones('25/03/2015 22:37:47','26/03/2015 01:24:18','RA02', '75', '242', 'C-06-02-033-C7TF', 'P-06-02-033-C7TF');
execute insertarconfiguraciones('26/03/2015 01:24:19','26/03/2015 21:55:35','RA02', '246', '142', 'C-06-02-033-C7TF', 'P-06-02-033-C7TF');
execute insertarconfiguraciones('26/03/2015 21:55:36','26/03/2015 23:53:59','RA02', '152', '148', 'C-06-02-033-C7TF', 'P-06-02-033-C7TF');
execute insertarconfiguraciones('26/03/2015 23:54:00','27/03/2015 00:57:41','RA02', '92', '255', 'C-06-02-033-C7TF', 'P-06-02-033-C7TF');
execute insertarconfiguraciones('27/03/2015 00:57:42','27/03/2015 01:19:48','RA02', '76', '141', 'C-06-02-033-C7TF', 'P-06-02-033-C7TF');
execute insertarconfiguraciones('27/03/2015 01:19:49','27/03/2015 06:59:59','RA02', '83', '159', 'C-06-02-033-C7TF', 'P-06-02-033-C7TF');
execute insertarconfiguraciones('27/03/2015 07:00:00','27/03/2015 20:33:17','RA02', '1', '0', 'C-06-02-038-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('27/03/2015 20:33:18','28/03/2015 22:16:06','RA02', '432', '51', 'C-06-02-038-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('28/03/2015 22:16:07','29/03/2015 00:18:11','RA02', '73', '127', 'C-06-02-038-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('29/03/2015 00:18:12','29/03/2015 00:58:52','RA02', '152', '235', 'C-06-02-038-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('29/03/2015 00:58:53','29/03/2015 20:12:54','RA02', '536', '292', 'C-06-02-038-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('29/03/2015 20:12:55','29/03/2015 20:48:33','RA02', '85', '236', 'C-06-02-038-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('29/03/2015 20:48:34','30/03/2015 18:57:58','RA02', '543', '134', 'C-06-02-038-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('30/03/2015 18:57:59','31/03/2015 02:14:34','RA02', '75', '133', 'C-06-02-038-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('31/03/2015 02:14:35','31/03/2015 20:30:36','RA02', '246', '242', 'C-06-02-038-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('31/03/2015 20:30:37','01/04/2015 01:16:11','RA02', '150', '148', 'C-06-02-038-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('01/04/2015 01:16:12','01/04/2015 20:56:32','RA02', '85', '255', 'C-06-02-038-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('01/04/2015 20:56:33','01/04/2015 23:41:24','RA02', '104', '141', 'C-06-02-038-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('01/04/2015 23:41:25','02/04/2015 00:41:55','RA02', '150', '159', 'C-06-02-038-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('02/04/2015 00:41:56','02/04/2015 23:50:15','RA02', '95', '51', 'C-06-02-038-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('02/04/2015 23:50:16','03/04/2015 01:17:59','RA02', '288', '237', 'C-06-02-038-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('03/04/2015 01:18:00','03/04/2015 20:09:45','RA02', '95', '127', 'C-06-02-038-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('03/04/2015 20:09:46','03/04/2015 21:29:13','RA02', '536', '137', 'C-06-02-038-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('03/04/2015 21:29:14','04/04/2015 00:58:15','RA02', '371', '139', 'C-06-02-038-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('04/04/2015 00:58:16','04/04/2015 18:39:20','RA02', '80', '235', 'C-06-02-038-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('04/04/2015 18:39:21','04/04/2015 20:23:39','RA02', '152', '292', 'C-06-02-038-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('04/04/2015 20:23:40','04/04/2015 23:05:12','RA02', '76', '134', 'C-06-02-038-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('04/04/2015 23:05:13','05/04/2015 21:09:58','RA02', '85', '242', 'C-06-02-038-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('05/04/2015 21:09:59','06/04/2015 01:20:54','RA02', '552', '142', 'C-06-02-038-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('06/04/2015 01:20:55','06/04/2015 20:31:33','RA02', '79', '148', 'C-06-02-038-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('06/04/2015 20:31:34','07/04/2015 06:59:59','RA02', '87', '141', 'C-06-02-038-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('07/04/2015 07:00:00','07/04/2015 18:56:25','RA02', '1', '0', 'C-06-02-038-C7TF', 'P-06-02-039-C7TF');
execute insertarconfiguraciones('07/04/2015 18:56:26','07/04/2015 20:06:04','RA02', '152', '159', 'C-06-02-038-C7TF', 'P-06-02-039-C7TF');
execute insertarconfiguraciones('07/04/2015 20:06:05','07/04/2015 23:34:37','RA02', '288', '127', 'C-06-02-038-C7TF', 'P-06-02-039-C7TF');
execute insertarconfiguraciones('07/04/2015 23:34:38','08/04/2015 19:22:45','RA02', '87', '139', 'C-06-02-038-C7TF', 'P-06-02-039-C7TF');
execute insertarconfiguraciones('08/04/2015 19:22:46','08/04/2015 20:00:57','RA02', '371', '235', 'C-06-02-038-C7TF', 'P-06-02-039-C7TF');
execute insertarconfiguraciones('08/04/2015 20:00:58','08/04/2015 20:47:47','RA02', '104', '292', 'C-06-02-038-C7TF', 'P-06-02-039-C7TF');
execute insertarconfiguraciones('08/04/2015 20:47:48','09/04/2015 02:50:55','RA02', '543', '236', 'C-06-02-038-C7TF', 'P-06-02-039-C7TF');
execute insertarconfiguraciones('09/04/2015 02:50:56','09/04/2015 19:00:47','RA02', '288', '134', 'C-06-02-038-C7TF', 'P-06-02-039-C7TF');
execute insertarconfiguraciones('09/04/2015 19:00:48','09/04/2015 23:20:17','RA02', '536', '133', 'C-06-02-038-C7TF', 'P-06-02-039-C7TF');
execute insertarconfiguraciones('09/04/2015 23:20:18','10/04/2015 01:41:53','RA02', '258', '159', 'C-06-02-038-C7TF', 'P-06-02-039-C7TF');
execute insertarconfiguraciones('10/04/2015 01:41:54','10/04/2015 19:10:28','RA02', '76', '237', 'C-06-02-038-C7TF', 'P-06-02-039-C7TF');
execute insertarconfiguraciones('10/04/2015 19:10:29','10/04/2015 20:11:21','RA02', '104', '127', 'C-06-02-038-C7TF', 'P-06-02-039-C7TF');
execute insertarconfiguraciones('10/04/2015 20:11:22','10/04/2015 21:45:28','RA02', '80', '139', 'C-06-02-038-C7TF', 'P-06-02-039-C7TF');
execute insertarconfiguraciones('10/04/2015 21:45:29','11/04/2015 19:48:31','RA02', '432', '235', 'C-06-02-038-C7TF', 'P-06-02-039-C7TF');
execute insertarconfiguraciones('11/04/2015 19:48:32','11/04/2015 21:22:37','RA02', '76', '240', 'C-06-02-038-C7TF', 'P-06-02-039-C7TF');
execute insertarconfiguraciones('11/04/2015 21:22:38','11/04/2015 21:44:13','RA02', '152', '134', 'C-06-02-038-C7TF', 'P-06-02-039-C7TF');
execute insertarconfiguraciones('11/04/2015 21:44:14','11/04/2015 22:52:29','RA02', '104', '133', 'C-06-02-038-C7TF', 'P-06-02-039-C7TF');
execute insertarconfiguraciones('11/04/2015 22:52:30','12/04/2015 02:05:21','RA02', '91', '242', 'C-06-02-038-C7TF', 'P-06-02-039-C7TF');
execute insertarconfiguraciones('12/04/2015 02:05:22','12/04/2015 19:33:38','RA02', '536', '142', 'C-06-02-038-C7TF', 'P-06-02-039-C7TF');
execute insertarconfiguraciones('12/04/2015 19:33:39','12/04/2015 20:22:56','RA02', '104', '148', 'C-06-02-038-C7TF', 'P-06-02-039-C7TF');
execute insertarconfiguraciones('12/04/2015 20:22:57','12/04/2015 21:00:43','RA02', '536', '255', 'C-06-02-038-C7TF', 'P-06-02-039-C7TF');
execute insertarconfiguraciones('12/04/2015 21:00:44','13/04/2015 01:13:28','RA02', '73', '159', 'C-06-02-038-C7TF', 'P-06-02-039-C7TF');
execute insertarconfiguraciones('13/04/2015 01:13:29','13/04/2015 18:24:52','RA02', '79', '127', 'C-06-02-038-C7TF', 'P-06-02-039-C7TF');
execute insertarconfiguraciones('13/04/2015 18:24:53','13/04/2015 19:08:01','RA02', '80', '137', 'C-06-02-038-C7TF', 'P-06-02-039-C7TF');
execute insertarconfiguraciones('13/04/2015 19:08:02','13/04/2015 19:56:03','RA02', '104', '139', 'C-06-02-038-C7TF', 'P-06-02-039-C7TF');
execute insertarconfiguraciones('13/04/2015 19:56:04','13/04/2015 22:25:15','RA02', '85', '236', 'C-06-02-038-C7TF', 'P-06-02-039-C7TF');
execute insertarconfiguraciones('13/04/2015 22:25:16','14/04/2015 19:02:02','RA02', '80', '134', 'C-06-02-038-C7TF', 'P-06-02-039-C7TF');
execute insertarconfiguraciones('14/04/2015 19:02:03','14/04/2015 21:01:26','RA02', '258', '133', 'C-06-02-038-C7TF', 'P-06-02-039-C7TF');
execute insertarconfiguraciones('14/04/2015 21:01:27','15/04/2015 01:17:25','RA02', '85', '242', 'C-06-02-038-C7TF', 'P-06-02-039-C7TF');
execute insertarconfiguraciones('15/04/2015 01:17:26','15/04/2015 19:49:35','RA02', '79', '148', 'C-06-02-038-C7TF', 'P-06-02-039-C7TF');
execute insertarconfiguraciones('15/04/2015 19:49:36','15/04/2015 21:08:23','RA02', '246', '255', 'C-06-02-038-C7TF', 'P-06-02-039-C7TF');
execute insertarconfiguraciones('15/04/2015 21:08:24','15/04/2015 23:03:28','RA02', '288', '141', 'C-06-02-038-C7TF', 'P-06-02-039-C7TF');
execute insertarconfiguraciones('15/04/2015 23:03:29','15/04/2015 23:35:15','RA02', '371', '159', 'C-06-02-038-C7TF', 'P-06-02-039-C7TF');
execute insertarconfiguraciones('15/04/2015 23:35:16','16/04/2015 01:19:37','RA02', '152', '51', 'C-06-02-038-C7TF', 'P-06-02-039-C7TF');
execute insertarconfiguraciones('16/04/2015 01:19:38','16/04/2015 19:23:32','RA02', '288', '237', 'C-06-02-038-C7TF', 'P-06-02-039-C7TF');
execute insertarconfiguraciones('16/04/2015 19:23:33','16/04/2015 20:04:49','RA02', '536', '139', 'C-06-02-038-C7TF', 'P-06-02-039-C7TF');
execute insertarconfiguraciones('16/04/2015 20:04:50','16/04/2015 22:27:34','RA02', '92', '292', 'C-06-02-038-C7TF', 'P-06-02-039-C7TF');
execute insertarconfiguraciones('16/04/2015 22:27:35','17/04/2015 01:02:26','RA02', '95', '242', 'C-06-02-038-C7TF', 'P-06-02-039-C7TF');
execute insertarconfiguraciones('17/04/2015 01:02:27','17/04/2015 18:41:49','RA02', '92', '255', 'C-06-02-038-C7TF', 'P-06-02-039-C7TF');
execute insertarconfiguraciones('17/04/2015 18:41:50','17/04/2015 19:27:31','RA02', '432', '141', 'C-06-02-038-C7TF', 'P-06-02-039-C7TF');
execute insertarconfiguraciones('17/04/2015 19:27:32','17/04/2015 23:39:15','RA02', '150', '237', 'C-06-02-038-C7TF', 'P-06-02-039-C7TF');
execute insertarconfiguraciones('17/04/2015 23:39:16','18/04/2015 00:54:10','RA02', '432', '139', 'C-06-02-038-C7TF', 'P-06-02-039-C7TF');
execute insertarconfiguraciones('18/04/2015 00:54:11','18/04/2015 06:59:59','RA02', '288', '235', 'C-06-02-038-C7TF', 'P-06-02-039-C7TF');
execute insertarconfiguraciones('18/04/2015 07:00:00','18/04/2015 19:20:50','RA02', '1', '0', 'C-06-02-035-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('18/04/2015 19:20:51','18/04/2015 22:49:29','RA02', '80', '292', 'C-06-02-035-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('18/04/2015 22:49:30','19/04/2015 00:35:00','RA02', '85', '240', 'C-06-02-035-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('19/04/2015 00:35:01','19/04/2015 22:01:10','RA02', '288', '242', 'C-06-02-035-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('19/04/2015 22:01:11','19/04/2015 22:35:41','RA02', '152', '142', 'C-06-02-035-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('19/04/2015 22:35:42','20/04/2015 00:10:12','RA02', '95', '148', 'C-06-02-035-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('20/04/2015 00:10:13','20/04/2015 18:23:13','RA02', '104', '255', 'C-06-02-035-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('20/04/2015 18:23:14','20/04/2015 18:56:30','RA02', '75', '159', 'C-06-02-035-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('20/04/2015 18:56:31','20/04/2015 22:06:42','RA02', '104', '237', 'C-06-02-035-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('20/04/2015 22:06:43','21/04/2015 19:14:40','RA02', '432', '236', 'C-06-02-035-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('21/04/2015 19:14:41','21/04/2015 19:48:57','RA02', '543', '240', 'C-06-02-035-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('21/04/2015 19:48:58','21/04/2015 21:35:49','RA02', '85', '134', 'C-06-02-035-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('21/04/2015 21:35:50','21/04/2015 22:47:56','RA02', '536', '242', 'C-06-02-035-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('21/04/2015 22:47:57','21/04/2015 23:41:58','RA02', '152', '142', 'C-06-02-035-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('21/04/2015 23:41:59','22/04/2015 02:12:55','RA02', '85', '148', 'C-06-02-035-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('22/04/2015 02:12:56','22/04/2015 19:16:22','RA02', '79', '141', 'C-06-02-035-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('22/04/2015 19:16:23','22/04/2015 22:56:16','RA02', '258', '159', 'C-06-02-035-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('22/04/2015 22:56:17','22/04/2015 23:06:24','RA02', '79', '51', 'C-06-02-035-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('22/04/2015 23:06:25','23/04/2015 19:58:47','RA02', '150', '237', 'C-06-02-035-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('23/04/2015 19:58:48','24/04/2015 01:34:39','RA02', '246', '139', 'C-06-02-035-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('24/04/2015 01:34:40','24/04/2015 20:54:51','RA02', '288', '133', 'C-06-02-035-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('24/04/2015 20:54:52','25/04/2015 01:02:01','RA02', '92', '242', 'C-06-02-035-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('25/04/2015 01:02:02','25/04/2015 19:32:37','RA02', '104', '142', 'C-06-02-035-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('25/04/2015 19:32:38','25/04/2015 20:27:45','RA02', '288', '148', 'C-06-02-035-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('25/04/2015 20:27:46','26/04/2015 01:30:23','RA02', '87', '255', 'C-06-02-035-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('26/04/2015 01:30:24','26/04/2015 18:41:54','RA02', '76', '141', 'C-06-02-035-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('26/04/2015 18:41:55','26/04/2015 19:47:41','RA02', '371', '51', 'C-06-02-035-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('26/04/2015 19:47:42','26/04/2015 21:13:50','RA02', '432', '237', 'C-06-02-035-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('26/04/2015 21:13:51','26/04/2015 21:50:18','RA02', '75', '127', 'C-06-02-035-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('26/04/2015 21:50:19','26/04/2015 22:21:39','RA02', '371', '139', 'C-06-02-035-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('26/04/2015 22:21:40','26/04/2015 23:41:29','RA02', '246', '235', 'C-06-02-035-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('26/04/2015 23:41:30','27/04/2015 19:36:43','RA02', '87', '292', 'C-06-02-035-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('27/04/2015 19:36:44','27/04/2015 22:23:12','RA02', '75', '236', 'C-06-02-035-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('27/04/2015 22:23:13','28/04/2015 19:50:10','RA02', '95', '240', 'C-06-02-035-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('28/04/2015 19:50:11','28/04/2015 20:45:21','RA02', '75', '134', 'C-06-02-035-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('28/04/2015 20:45:22','29/04/2015 06:59:59','RA02', '552', '133', 'C-06-02-035-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('29/04/2015 07:00:00','29/04/2015 18:54:52','RA02', '1', '0', 'C-06-02-035-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('29/04/2015 18:54:53','29/04/2015 20:19:00','RA02', '73', '242', 'C-06-02-035-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('29/04/2015 20:19:01','29/04/2015 21:17:23','RA02', '85', '255', 'C-06-02-035-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('29/04/2015 21:17:24','29/04/2015 23:11:54','RA02', '75', '141', 'C-06-02-035-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('29/04/2015 23:11:55','30/04/2015 19:31:05','RA02', '152', '159', 'C-06-02-035-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('30/04/2015 19:31:06','30/04/2015 22:13:12','RA02', '85', '51', 'C-06-02-035-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('30/04/2015 22:13:13','30/04/2015 22:31:41','RA02', '150', '237', 'C-06-02-035-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('30/04/2015 22:31:42','01/05/2015 01:51:45','RA02', '80', '127', 'C-06-02-035-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('01/05/2015 01:51:46','01/05/2015 19:16:27','RA02', '85', '292', 'C-06-02-035-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('01/05/2015 19:16:28','01/05/2015 20:12:02','RA02', '246', '159', 'C-06-02-035-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('01/05/2015 20:12:03','01/05/2015 20:42:03','RA02', '83', '159', 'C-06-02-035-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('01/05/2015 20:42:04','01/05/2015 23:01:05','RA02', '536', '51', 'C-06-02-035-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('01/05/2015 23:01:06','01/05/2015 23:42:59','RA02', '258', '127', 'C-06-02-035-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('01/05/2015 23:43:00','02/05/2015 00:22:55','RA02', '87', '127', 'C-06-02-035-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('02/05/2015 00:22:56','02/05/2015 01:02:22','RA02', '76', '237', 'C-06-02-035-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('02/05/2015 01:02:23','02/05/2015 02:23:19','RA02', '543', '237', 'C-06-02-035-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('02/05/2015 02:23:20','02/05/2015 02:43:13','RA02', '87', '133', 'C-06-02-035-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('02/05/2015 02:43:14','02/05/2015 20:07:00','RA02', '371', '133', 'C-06-02-035-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('02/05/2015 20:07:01','02/05/2015 21:29:17','RA02', '536', '134', 'C-06-02-035-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('02/05/2015 21:29:18','02/05/2015 22:01:31','RA02', '85', '134', 'C-06-02-035-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('02/05/2015 22:01:32','02/05/2015 23:06:57','RA02', '80', '240', 'C-06-02-035-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('02/05/2015 23:06:58','03/05/2015 00:01:25','RA02', '85', '240', 'C-06-02-035-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('03/05/2015 00:01:26','03/05/2015 00:21:32','RA02', '87', '235', 'C-06-02-035-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('03/05/2015 00:21:33','03/05/2015 00:44:20','RA02', '288', '235', 'C-06-02-035-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('03/05/2015 00:44:21','03/05/2015 01:01:23','RA02', '95', '148', 'C-06-02-035-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('03/05/2015 01:01:24','03/05/2015 18:41:32','RA02', '246', '148', 'C-06-02-035-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('03/05/2015 18:41:33','03/05/2015 19:41:31','RA02', '536', '159', 'C-06-02-035-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('03/05/2015 19:41:32','03/05/2015 19:56:35','RA02', '91', '159', 'C-06-02-035-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('03/05/2015 19:56:36','03/05/2015 21:18:29','RA02', '91', '51', 'C-06-02-035-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('03/05/2015 21:18:30','03/05/2015 22:41:10','RA02', '91', '127', 'C-06-02-035-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('03/05/2015 22:41:11','04/05/2015 00:21:21','RA02', '288', '237', 'C-06-02-035-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('04/05/2015 00:21:22','04/05/2015 01:01:54','RA02', '91', '237', 'C-06-02-035-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('04/05/2015 01:01:55','04/05/2015 18:46:19','RA02', '246', '133', 'C-06-02-035-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('04/05/2015 18:46:20','04/05/2015 20:00:30','RA02', '371', '134', 'C-06-02-035-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('04/05/2015 20:00:31','04/05/2015 20:43:27','RA02', '95', '240', 'C-06-02-035-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('04/05/2015 20:43:28','04/05/2015 21:21:49','RA02', '288', '235', 'C-06-02-035-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('04/05/2015 21:21:50','04/05/2015 22:21:37','RA02', '104', '148', 'C-06-02-035-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('04/05/2015 22:21:38','04/05/2015 23:06:59','RA02', '80', '148', 'C-06-02-035-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('04/05/2015 23:07:00','05/05/2015 00:50:31','RA02', '85', '159', 'C-06-02-035-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('05/05/2015 00:50:32','05/05/2015 19:12:04','RA02', '91', '127', 'C-06-02-035-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('05/05/2015 19:12:05','05/05/2015 19:42:41','RA02', '95', '127', 'C-06-02-035-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('05/05/2015 19:42:42','05/05/2015 20:45:22','RA02', '80', '237', 'C-06-02-035-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('05/05/2015 20:45:23','05/05/2015 22:19:06','RA02', '152', '237', 'C-06-02-035-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('05/05/2015 22:19:07','05/05/2015 22:41:48','RA02', '104', '237', 'C-06-02-035-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('05/05/2015 22:41:49','05/05/2015 23:01:15','RA02', '80', '133', 'C-06-02-035-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('05/05/2015 23:01:16','05/05/2015 23:42:25','RA02', '371', '133', 'C-06-02-035-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('05/05/2015 23:42:26','06/05/2015 00:32:52','RA02', '104', '134', 'C-06-02-035-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('06/05/2015 00:32:53','06/05/2015 00:41:26','RA02', '258', '240', 'C-06-02-035-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('06/05/2015 00:41:27','06/05/2015 01:42:41','RA02', '91', '240', 'C-06-02-035-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('06/05/2015 01:42:42','06/05/2015 02:01:27','RA02', '80', '235', 'C-06-02-035-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('06/05/2015 02:01:28','06/05/2015 19:28:31','RA02', '104', '235', 'C-06-02-035-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('06/05/2015 19:28:32','06/05/2015 22:07:48','RA02', '73', '148', 'C-06-02-035-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('06/05/2015 22:07:49','06/05/2015 22:23:58','RA02', '91', '51', 'C-06-02-035-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('06/05/2015 22:23:59','06/05/2015 22:55:42','RA02', '80', '127', 'C-06-02-035-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('06/05/2015 22:55:43','06/05/2015 23:52:55','RA02', '152', '127', 'C-06-02-035-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('06/05/2015 23:52:56','07/05/2015 01:41:10','RA02', '258', '237', 'C-06-02-035-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('07/05/2015 01:41:11','07/05/2015 19:12:52','RA02', '543', '237', 'C-06-02-035-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('07/05/2015 19:12:53','07/05/2015 19:42:48','RA02', '80', '133', 'C-06-02-035-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('07/05/2015 19:42:49','07/05/2015 20:43:13','RA02', '150', '134', 'C-06-02-035-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('07/05/2015 20:43:14','07/05/2015 21:03:29','RA02', '543', '134', 'C-06-02-035-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('07/05/2015 21:03:30','07/05/2015 21:42:23','RA02', '91', '240', 'C-06-02-035-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('07/05/2015 21:42:24','07/05/2015 23:03:07','RA02', '87', '240', 'C-06-02-035-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('07/05/2015 23:03:08','07/05/2015 23:24:13','RA02', '80', '148', 'C-06-02-035-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('07/05/2015 23:24:14','08/05/2015 00:02:49','RA02', '543', '148', 'C-06-02-035-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('08/05/2015 00:02:50','08/05/2015 18:11:06','RA02', '258', '148', 'C-06-02-035-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('08/05/2015 18:11:07','08/05/2015 18:45:55','RA02', '80', '127', 'C-06-02-035-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('08/05/2015 18:45:56','08/05/2015 20:56:12','RA02', '152', '127', 'C-06-02-035-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('08/05/2015 20:56:13','08/05/2015 22:42:31','RA02', '80', '127', 'C-06-02-035-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('08/05/2015 22:42:32','08/05/2015 23:22:51','RA02', '246', '237', 'C-06-02-035-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('08/05/2015 23:22:52','09/05/2015 00:22:11','RA02', '288', '237', 'C-06-02-035-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('09/05/2015 00:22:12','09/05/2015 01:01:48','RA02', '543', '133', 'C-06-02-035-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('09/05/2015 01:01:49','09/05/2015 01:22:29','RA02', '258', '133', 'C-06-02-035-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('09/05/2015 01:22:30','09/05/2015 01:43:10','RA02', '150', '134', 'C-06-02-035-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('09/05/2015 01:43:11','09/05/2015 02:23:03','RA02', '371', '134', 'C-06-02-035-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('09/05/2015 02:23:04','09/05/2015 18:42:14','RA02', '85', '134', 'C-06-02-035-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('09/05/2015 18:42:15','09/05/2015 19:03:26','RA02', '543', '240', 'C-06-02-035-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('09/05/2015 19:03:27','09/05/2015 20:00:16','RA02', '87', '240', 'C-06-02-035-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('09/05/2015 20:00:17','09/05/2015 21:02:45','RA02', '95', '235', 'C-06-02-035-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('09/05/2015 21:02:46','09/05/2015 21:43:23','RA02', '80', '148', 'C-06-02-035-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('09/05/2015 21:43:24','09/05/2015 22:06:31','RA02', '152', '159', 'C-06-02-035-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('09/05/2015 22:06:32','09/05/2015 22:42:27','RA02', '432', '159', 'C-06-02-035-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('09/05/2015 22:42:28','09/05/2015 23:21:54','RA02', '76', '51', 'C-06-02-035-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('09/05/2015 23:21:55','10/05/2015 00:03:00','RA02', '85', '127', 'C-06-02-035-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('10/05/2015 00:03:01','10/05/2015 01:22:23','RA02', '95', '127', 'C-06-02-035-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('10/05/2015 01:22:24','10/05/2015 02:20:29','RA02', '246', '237', 'C-06-02-035-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('10/05/2015 02:20:30','10/05/2015 06:59:59','RA02', '288', '237', 'C-06-02-035-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('10/05/2015 07:00:00','10/05/2015 19:42:08','RA02', '1', '0', 'C-06-02-032-C7TF', 'P-06-02-030-C7TF');
execute insertarconfiguraciones('10/05/2015 19:42:09','10/05/2015 21:37:03','RA02', '371', '237', 'C-06-02-032-C7TF', 'P-06-02-030-C7TF');
execute insertarconfiguraciones('10/05/2015 21:37:04','11/05/2015 00:53:57','RA02', '371', '133', 'C-06-02-032-C7TF', 'P-06-02-030-C7TF');
execute insertarconfiguraciones('11/05/2015 00:53:58','11/05/2015 01:42:25','RA02', '87', '133', 'C-06-02-032-C7TF', 'P-06-02-030-C7TF');
execute insertarconfiguraciones('11/05/2015 01:42:26','11/05/2015 19:22:16','RA02', '371', '134', 'C-06-02-032-C7TF', 'P-06-02-030-C7TF');
execute insertarconfiguraciones('11/05/2015 19:22:17','11/05/2015 22:47:00','RA02', '150', '134', 'C-06-02-032-C7TF', 'P-06-02-030-C7TF');
execute insertarconfiguraciones('11/05/2015 22:47:01','11/05/2015 23:03:13','RA02', '80', '240', 'C-06-02-032-C7TF', 'P-06-02-030-C7TF');
execute insertarconfiguraciones('11/05/2015 23:03:14','12/05/2015 00:02:47','RA02', '432', '240', 'C-06-02-032-C7TF', 'P-06-02-030-C7TF');
execute insertarconfiguraciones('12/05/2015 00:02:48','12/05/2015 01:20:09','RA02', '288', '240', 'C-06-02-032-C7TF', 'P-06-02-030-C7TF');
execute insertarconfiguraciones('12/05/2015 01:20:10','12/05/2015 20:03:32','RA02', '91', '235', 'C-06-02-032-C7TF', 'P-06-02-030-C7TF');
execute insertarconfiguraciones('12/05/2015 20:03:33','12/05/2015 21:03:46','RA02', '552', '148', 'C-06-02-032-C7TF', 'P-06-02-030-C7TF');
execute insertarconfiguraciones('12/05/2015 21:03:47','12/05/2015 21:24:55','RA02', '150', '148', 'C-06-02-032-C7TF', 'P-06-02-030-C7TF');
execute insertarconfiguraciones('12/05/2015 21:24:56','12/05/2015 21:43:14','RA02', '246', '148', 'C-06-02-032-C7TF', 'P-06-02-030-C7TF');
execute insertarconfiguraciones('12/05/2015 21:43:15','12/05/2015 22:21:18','RA02', '432', '159', 'C-06-02-032-C7TF', 'P-06-02-030-C7TF');
execute insertarconfiguraciones('12/05/2015 22:21:19','12/05/2015 23:22:00','RA02', '150', '159', 'C-06-02-032-C7TF', 'P-06-02-030-C7TF');
execute insertarconfiguraciones('12/05/2015 23:22:01','13/05/2015 00:11:49','RA02', '288', '127', 'C-06-02-032-C7TF', 'P-06-02-030-C7TF');
execute insertarconfiguraciones('13/05/2015 00:11:50','13/05/2015 00:43:11','RA02', '246', '127', 'C-06-02-032-C7TF', 'P-06-02-030-C7TF');
execute insertarconfiguraciones('13/05/2015 00:43:12','13/05/2015 01:21:59','RA02', '95', '237', 'C-06-02-032-C7TF', 'P-06-02-030-C7TF');
execute insertarconfiguraciones('13/05/2015 01:22:00','13/05/2015 02:07:58','RA02', '288', '237', 'C-06-02-032-C7TF', 'P-06-02-030-C7TF');
execute insertarconfiguraciones('13/05/2015 02:07:59','13/05/2015 20:09:15','RA02', '95', '237', 'C-06-02-032-C7TF', 'P-06-02-030-C7TF');
execute insertarconfiguraciones('13/05/2015 20:09:16','13/05/2015 20:44:20','RA02', '258', '133', 'C-06-02-032-C7TF', 'P-06-02-030-C7TF');
execute insertarconfiguraciones('13/05/2015 20:44:21','13/05/2015 21:54:56','RA02', '371', '133', 'C-06-02-032-C7TF', 'P-06-02-030-C7TF');
execute insertarconfiguraciones('13/05/2015 21:54:57','13/05/2015 22:30:21','RA02', '80', '134', 'C-06-02-032-C7TF', 'P-06-02-030-C7TF');
execute insertarconfiguraciones('13/05/2015 22:30:22','13/05/2015 23:01:45','RA02', '246', '134', 'C-06-02-032-C7TF', 'P-06-02-030-C7TF');
execute insertarconfiguraciones('13/05/2015 23:01:46','13/05/2015 23:33:10','RA02', '258', '240', 'C-06-02-032-C7TF', 'P-06-02-030-C7TF');
execute insertarconfiguraciones('13/05/2015 23:33:11','14/05/2015 00:02:19','RA02', '246', '240', 'C-06-02-032-C7TF', 'P-06-02-030-C7TF');
execute insertarconfiguraciones('14/05/2015 00:02:20','14/05/2015 20:01:29','RA02', '552', '240', 'C-06-02-032-C7TF', 'P-06-02-030-C7TF');
execute insertarconfiguraciones('14/05/2015 20:01:30','14/05/2015 21:03:39','RA02', '258', '148', 'C-06-02-032-C7TF', 'P-06-02-030-C7TF');
execute insertarconfiguraciones('14/05/2015 21:03:40','14/05/2015 21:36:27','RA02', '152', '148', 'C-06-02-032-C7TF', 'P-06-02-030-C7TF');
execute insertarconfiguraciones('14/05/2015 21:36:28','14/05/2015 22:02:41','RA02', '80', '148', 'C-06-02-032-C7TF', 'P-06-02-030-C7TF');
execute insertarconfiguraciones('14/05/2015 22:02:42','14/05/2015 22:43:18','RA02', '76', '159', 'C-06-02-032-C7TF', 'P-06-02-030-C7TF');
execute insertarconfiguraciones('14/05/2015 22:43:19','14/05/2015 23:22:36','RA02', '83', '159', 'C-06-02-032-C7TF', 'P-06-02-030-C7TF');
execute insertarconfiguraciones('14/05/2015 23:22:37','31/12/2099 23:59:59','RA02', '80', '127', 'C-06-02-032-C7TF', 'P-06-02-030-C7TF');
execute insertarconfiguraciones('29/12/2014 07:00:00','01/01/2015 18:10:50','RA03', '1', '0', 'C-06-02-035-C7TF', 'P-06-02-030-C7TF');
execute insertarconfiguraciones('01/01/2015 18:10:51','01/01/2015 21:40:29','RA03', '152', '236', 'C-06-02-035-C7TF', 'P-06-02-030-C7TF');
execute insertarconfiguraciones('01/01/2015 21:40:30','02/01/2015 01:51:49','RA03', '80', '142', 'C-06-02-035-C7TF', 'P-06-02-030-C7TF');
execute insertarconfiguraciones('02/01/2015 01:51:50','02/01/2015 18:16:49','RA03', '536', '148', 'C-06-02-035-C7TF', 'P-06-02-030-C7TF');
execute insertarconfiguraciones('02/01/2015 18:16:50','02/01/2015 20:24:34','RA03', '543', '255', 'C-06-02-035-C7TF', 'P-06-02-030-C7TF');
execute insertarconfiguraciones('02/01/2015 20:24:35','02/01/2015 22:28:15','RA03', '258', '159', 'C-06-02-035-C7TF', 'P-06-02-030-C7TF');
execute insertarconfiguraciones('02/01/2015 22:28:16','03/01/2015 19:32:29','RA03', '543', '51', 'C-06-02-035-C7TF', 'P-06-02-030-C7TF');
execute insertarconfiguraciones('03/01/2015 19:32:30','03/01/2015 20:38:35','RA03', '73', '127', 'C-06-02-035-C7TF', 'P-06-02-030-C7TF');
execute insertarconfiguraciones('03/01/2015 20:38:36','03/01/2015 21:55:12','RA03', '536', '137', 'C-06-02-035-C7TF', 'P-06-02-030-C7TF');
execute insertarconfiguraciones('03/01/2015 21:55:13','04/01/2015 20:43:17','RA03', '73', '139', 'C-06-02-035-C7TF', 'P-06-02-030-C7TF');
execute insertarconfiguraciones('04/01/2015 20:43:18','04/01/2015 21:23:48','RA03', '371', '235', 'C-06-02-035-C7TF', 'P-06-02-030-C7TF');
execute insertarconfiguraciones('04/01/2015 21:23:49','04/01/2015 22:43:39','RA03', '258', '240', 'C-06-02-035-C7TF', 'P-06-02-030-C7TF');
execute insertarconfiguraciones('04/01/2015 22:43:40','04/01/2015 23:46:21','RA03', '536', '134', 'C-06-02-035-C7TF', 'P-06-02-030-C7TF');
execute insertarconfiguraciones('04/01/2015 23:46:22','05/01/2015 02:18:42','RA03', '258', '242', 'C-06-02-035-C7TF', 'P-06-02-030-C7TF');
execute insertarconfiguraciones('05/01/2015 02:18:43','05/01/2015 18:06:34','RA03', '371', '148', 'C-06-02-035-C7TF', 'P-06-02-030-C7TF');
execute insertarconfiguraciones('05/01/2015 18:06:35','05/01/2015 22:12:05','RA03', '80', '255', 'C-06-02-035-C7TF', 'P-06-02-030-C7TF');
execute insertarconfiguraciones('05/01/2015 22:12:06','06/01/2015 19:51:09','RA03', '543', '137', 'C-06-02-035-C7TF', 'P-06-02-030-C7TF');
execute insertarconfiguraciones('06/01/2015 19:51:10','06/01/2015 21:10:11','RA03', '371', '235', 'C-06-02-035-C7TF', 'P-06-02-030-C7TF');
execute insertarconfiguraciones('06/01/2015 21:10:12','06/01/2015 21:52:34','RA03', '536', '236', 'C-06-02-035-C7TF', 'P-06-02-030-C7TF');
execute insertarconfiguraciones('06/01/2015 21:52:35','06/01/2015 23:41:53','RA03', '543', '240', 'C-06-02-035-C7TF', 'P-06-02-030-C7TF');
execute insertarconfiguraciones('06/01/2015 23:41:54','07/01/2015 00:51:23','RA03', '85', '242', 'C-06-02-035-C7TF', 'P-06-02-030-C7TF');
execute insertarconfiguraciones('07/01/2015 00:51:24','07/01/2015 18:09:40','RA03', '104', '142', 'C-06-02-035-C7TF', 'P-06-02-030-C7TF');
execute insertarconfiguraciones('07/01/2015 18:09:41','07/01/2015 19:19:35','RA03', '95', '148', 'C-06-02-035-C7TF', 'P-06-02-030-C7TF');
execute insertarconfiguraciones('07/01/2015 19:19:36','07/01/2015 20:40:17','RA03', '552', '141', 'C-06-02-035-C7TF', 'P-06-02-030-C7TF');
execute insertarconfiguraciones('07/01/2015 20:40:18','07/01/2015 20:47:16','RA03', '258', '51', 'C-06-02-035-C7TF', 'P-06-02-030-C7TF');
execute insertarconfiguraciones('07/01/2015 20:47:17','08/01/2015 19:00:02','RA03', '95', '237', 'C-06-02-035-C7TF', 'P-06-02-030-C7TF');
execute insertarconfiguraciones('08/01/2015 19:00:03','09/01/2015 00:00:47','RA03', '152', '137', 'C-06-02-035-C7TF', 'P-06-02-030-C7TF');
execute insertarconfiguraciones('09/01/2015 00:00:48','09/01/2015 06:59:59','RA03', '432', '235', 'C-06-02-035-C7TF', 'P-06-02-030-C7TF');
execute insertarconfiguraciones('09/01/2015 07:00:00','09/01/2015 18:53:53','RA03', '1', '0', 'C-06-02-035-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('09/01/2015 18:53:54','09/01/2015 19:15:56','RA03', '257', '292', 'C-06-02-035-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('09/01/2015 19:15:57','09/01/2015 22:04:56','RA03', '543', '236', 'C-06-02-035-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('09/01/2015 22:04:57','09/01/2015 22:46:17','RA03', '80', '134', 'C-06-02-035-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('09/01/2015 22:46:18','10/01/2015 18:27:29','RA03', '92', '133', 'C-06-02-035-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('10/01/2015 18:27:30','10/01/2015 19:54:15','RA03', '432', '142', 'C-06-02-035-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('10/01/2015 19:54:16','10/01/2015 20:38:17','RA03', '80', '255', 'C-06-02-035-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('10/01/2015 20:38:18','10/01/2015 21:09:04','RA03', '432', '141', 'C-06-02-035-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('10/01/2015 21:09:05','11/01/2015 00:23:12','RA03', '87', '159', 'C-06-02-035-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('11/01/2015 00:23:13','11/01/2015 01:48:27','RA03', '85', '237', 'C-06-02-035-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('11/01/2015 01:48:28','11/01/2015 18:41:16','RA03', '83', '137', 'C-06-02-035-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('11/01/2015 18:41:17','11/01/2015 19:08:58','RA03', '432', '139', 'C-06-02-035-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('11/01/2015 19:08:59','11/01/2015 20:50:42','RA03', '152', '292', 'C-06-02-035-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('11/01/2015 20:50:43','12/01/2015 01:04:22','RA03', '95', '134', 'C-06-02-035-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('12/01/2015 01:04:23','12/01/2015 18:17:28','RA03', '536', '142', 'C-06-02-035-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('12/01/2015 18:17:29','12/01/2015 18:31:37','RA03', '150', '255', 'C-06-02-035-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('12/01/2015 18:31:38','12/01/2015 20:16:11','RA03', '432', '141', 'C-06-02-035-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('12/01/2015 20:16:12','13/01/2015 00:14:25','RA03', '258', '237', 'C-06-02-035-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('13/01/2015 00:14:26','13/01/2015 18:32:33','RA03', '91', '139', 'C-06-02-035-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('13/01/2015 18:32:34','13/01/2015 19:02:27','RA03', '152', '235', 'C-06-02-035-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('13/01/2015 19:02:28','13/01/2015 19:37:01','RA03', '288', '292', 'C-06-02-035-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('13/01/2015 19:37:02','14/01/2015 18:23:44','RA03', '371', '236', 'C-06-02-035-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('14/01/2015 18:23:45','14/01/2015 19:36:40','RA03', '152', '134', 'C-06-02-035-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('14/01/2015 19:36:41','14/01/2015 21:20:39','RA03', '91', '133', 'C-06-02-035-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('14/01/2015 21:20:40','14/01/2015 22:06:43','RA03', '258', '242', 'C-06-02-035-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('14/01/2015 22:06:44','15/01/2015 18:11:18','RA03', '104', '142', 'C-06-02-035-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('15/01/2015 18:11:19','15/01/2015 19:05:00','RA03', '152', '255', 'C-06-02-035-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('15/01/2015 19:05:01','15/01/2015 19:54:12','RA03', '552', '141', 'C-06-02-035-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('15/01/2015 19:54:13','16/01/2015 01:41:04','RA03', '73', '159', 'C-06-02-035-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('16/01/2015 01:41:05','16/01/2015 18:30:49','RA03', '80', '51', 'C-06-02-035-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('16/01/2015 18:30:50','16/01/2015 20:50:25','RA03', '75', '127', 'C-06-02-035-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('16/01/2015 20:50:26','16/01/2015 22:06:37','RA03', '152', '235', 'C-06-02-035-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('16/01/2015 22:06:38','17/01/2015 19:07:11','RA03', '75', '292', 'C-06-02-035-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('17/01/2015 19:07:12','17/01/2015 20:05:56','RA03', '80', '240', 'C-06-02-035-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('17/01/2015 20:05:57','18/01/2015 00:51:02','RA03', '432', '134', 'C-06-02-035-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('18/01/2015 00:51:03','18/01/2015 02:05:40','RA03', '543', '242', 'C-06-02-035-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('18/01/2015 02:05:41','18/01/2015 19:04:55','RA03', '536', '148', 'C-06-02-035-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('18/01/2015 19:04:56','18/01/2015 20:47:52','RA03', '432', '255', 'C-06-02-035-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('18/01/2015 20:47:53','18/01/2015 23:15:42','RA03', '288', '51', 'C-06-02-035-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('18/01/2015 23:15:43','19/01/2015 19:00:22','RA03', '432', '127', 'C-06-02-035-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('19/01/2015 19:00:23','19/01/2015 19:06:27','RA03', '85', '137', 'C-06-02-035-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('19/01/2015 19:06:28','19/01/2015 20:36:52','RA03', '536', '139', 'C-06-02-035-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('19/01/2015 20:36:53','19/01/2015 21:46:13','RA03', '73', '235', 'C-06-02-035-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('19/01/2015 21:46:14','19/01/2015 22:44:01','RA03', '432', '292', 'C-06-02-035-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('19/01/2015 22:44:02','19/01/2015 23:45:25','RA03', '258', '236', 'C-06-02-035-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('19/01/2015 23:45:26','20/01/2015 00:04:25','RA03', '80', '240', 'C-06-02-035-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('20/01/2015 00:04:26','20/01/2015 06:59:59','RA03', '95', '133', 'C-06-02-035-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('20/01/2015 07:00:00','20/01/2015 19:13:20','RA03', '1', '0', 'C-06-02-033-C7TF', 'P-06-02-029-C7TF');
execute insertarconfiguraciones('20/01/2015 19:13:21','20/01/2015 19:28:52','RA03', '150', '242', 'C-06-02-033-C7TF', 'P-06-02-029-C7TF');
execute insertarconfiguraciones('20/01/2015 19:28:53','20/01/2015 21:00:19','RA03', '80', '142', 'C-06-02-033-C7TF', 'P-06-02-029-C7TF');
execute insertarconfiguraciones('20/01/2015 21:00:20','21/01/2015 02:36:00','RA03', '536', '148', 'C-06-02-033-C7TF', 'P-06-02-029-C7TF');
execute insertarconfiguraciones('21/01/2015 02:36:01','21/01/2015 18:51:26','RA03', '552', '255', 'C-06-02-033-C7TF', 'P-06-02-029-C7TF');
execute insertarconfiguraciones('21/01/2015 18:51:27','22/01/2015 01:14:50','RA03', '95', '141', 'C-06-02-033-C7TF', 'P-06-02-029-C7TF');
execute insertarconfiguraciones('22/01/2015 01:14:51','22/01/2015 18:40:34','RA03', '91', '127', 'C-06-02-033-C7TF', 'P-06-02-029-C7TF');
execute insertarconfiguraciones('22/01/2015 18:40:35','22/01/2015 20:10:19','RA03', '95', '137', 'C-06-02-033-C7TF', 'P-06-02-029-C7TF');
execute insertarconfiguraciones('22/01/2015 20:10:20','22/01/2015 20:54:04','RA03', '85', '235', 'C-06-02-033-C7TF', 'P-06-02-029-C7TF');
execute insertarconfiguraciones('22/01/2015 20:54:05','23/01/2015 00:00:32','RA03', '95', '236', 'C-06-02-033-C7TF', 'P-06-02-029-C7TF');
execute insertarconfiguraciones('23/01/2015 00:00:33','23/01/2015 00:34:52','RA03', '152', '240', 'C-06-02-033-C7TF', 'P-06-02-029-C7TF');
execute insertarconfiguraciones('23/01/2015 00:34:53','23/01/2015 18:22:06','RA03', '76', '133', 'C-06-02-033-C7TF', 'P-06-02-029-C7TF');
execute insertarconfiguraciones('23/01/2015 18:22:07','23/01/2015 19:04:37','RA03', '257', '142', 'C-06-02-033-C7TF', 'P-06-02-029-C7TF');
execute insertarconfiguraciones('23/01/2015 19:04:38','23/01/2015 20:13:23','RA03', '152', '141', 'C-06-02-033-C7TF', 'P-06-02-029-C7TF');
execute insertarconfiguraciones('23/01/2015 20:13:24','24/01/2015 18:50:11','RA03', '371', '51', 'C-06-02-033-C7TF', 'P-06-02-029-C7TF');
execute insertarconfiguraciones('24/01/2015 18:50:12','24/01/2015 20:22:53','RA03', '80', '235', 'C-06-02-033-C7TF', 'P-06-02-029-C7TF');
execute insertarconfiguraciones('24/01/2015 20:22:54','24/01/2015 20:37:59','RA03', '76', '292', 'C-06-02-033-C7TF', 'P-06-02-029-C7TF');
execute insertarconfiguraciones('24/01/2015 20:38:00','24/01/2015 21:25:00','RA03', '258', '236', 'C-06-02-033-C7TF', 'P-06-02-029-C7TF');
execute insertarconfiguraciones('24/01/2015 21:25:01','25/01/2015 01:26:05','RA03', '85', '134', 'C-06-02-033-C7TF', 'P-06-02-029-C7TF');
execute insertarconfiguraciones('25/01/2015 01:26:06','25/01/2015 02:38:38','RA03', '75', '242', 'C-06-02-033-C7TF', 'P-06-02-029-C7TF');
execute insertarconfiguraciones('25/01/2015 02:38:39','25/01/2015 19:04:52','RA03', '258', '142', 'C-06-02-033-C7TF', 'P-06-02-029-C7TF');
execute insertarconfiguraciones('25/01/2015 19:04:53','25/01/2015 20:47:50','RA03', '80', '148', 'C-06-02-033-C7TF', 'P-06-02-029-C7TF');
execute insertarconfiguraciones('25/01/2015 20:47:51','25/01/2015 23:36:17','RA03', '432', '255', 'C-06-02-033-C7TF', 'P-06-02-029-C7TF');
execute insertarconfiguraciones('25/01/2015 23:36:18','26/01/2015 18:58:56','RA03', '543', '159', 'C-06-02-033-C7TF', 'P-06-02-029-C7TF');
execute insertarconfiguraciones('26/01/2015 18:58:57','26/01/2015 19:28:50','RA03', '73', '51', 'C-06-02-033-C7TF', 'P-06-02-029-C7TF');
execute insertarconfiguraciones('26/01/2015 19:28:51','26/01/2015 20:37:07','RA03', '543', '137', 'C-06-02-033-C7TF', 'P-06-02-029-C7TF');
execute insertarconfiguraciones('26/01/2015 20:37:08','26/01/2015 22:50:58','RA03', '150', '235', 'C-06-02-033-C7TF', 'P-06-02-029-C7TF');
execute insertarconfiguraciones('26/01/2015 22:50:59','27/01/2015 01:00:03','RA03', '288', '292', 'C-06-02-033-C7TF', 'P-06-02-029-C7TF');
execute insertarconfiguraciones('27/01/2015 01:00:04','27/01/2015 19:49:26','RA03', '150', '240', 'C-06-02-033-C7TF', 'P-06-02-029-C7TF');
execute insertarconfiguraciones('27/01/2015 19:49:27','28/01/2015 01:43:50','RA03', '73', '134', 'C-06-02-033-C7TF', 'P-06-02-029-C7TF');
execute insertarconfiguraciones('28/01/2015 01:43:51','28/01/2015 02:08:26','RA03', '288', '242', 'C-06-02-033-C7TF', 'P-06-02-029-C7TF');
execute insertarconfiguraciones('28/01/2015 02:08:27','28/01/2015 18:39:42','RA03', '371', '142', 'C-06-02-033-C7TF', 'P-06-02-029-C7TF');
execute insertarconfiguraciones('28/01/2015 18:39:43','28/01/2015 19:17:16','RA03', '150', '148', 'C-06-02-033-C7TF', 'P-06-02-029-C7TF');
execute insertarconfiguraciones('28/01/2015 19:17:17','28/01/2015 22:49:11','RA03', '76', '255', 'C-06-02-033-C7TF', 'P-06-02-029-C7TF');
execute insertarconfiguraciones('28/01/2015 22:49:12','29/01/2015 18:09:31','RA03', '150', '159', 'C-06-02-033-C7TF', 'P-06-02-029-C7TF');
execute insertarconfiguraciones('29/01/2015 18:09:32','29/01/2015 19:01:36','RA03', '95', '237', 'C-06-02-033-C7TF', 'P-06-02-029-C7TF');
execute insertarconfiguraciones('29/01/2015 19:01:37','30/01/2015 18:27:49','RA03', '288', '137', 'C-06-02-033-C7TF', 'P-06-02-029-C7TF');
execute insertarconfiguraciones('30/01/2015 18:27:50','30/01/2015 19:30:24','RA03', '80', '139', 'C-06-02-033-C7TF', 'P-06-02-029-C7TF');
execute insertarconfiguraciones('30/01/2015 19:30:25','30/01/2015 20:41:29','RA03', '552', '292', 'C-06-02-033-C7TF', 'P-06-02-029-C7TF');
execute insertarconfiguraciones('30/01/2015 20:41:30','30/01/2015 22:37:43','RA03', '80', '236', 'C-06-02-033-C7TF', 'P-06-02-029-C7TF');
execute insertarconfiguraciones('30/01/2015 22:37:44','30/01/2015 23:48:56','RA03', '258', '240', 'C-06-02-033-C7TF', 'P-06-02-029-C7TF');
execute insertarconfiguraciones('30/01/2015 23:48:57','31/01/2015 06:59:59','RA03', '75', '133', 'C-06-02-033-C7TF', 'P-06-02-029-C7TF');
execute insertarconfiguraciones('31/01/2015 07:00:00','31/01/2015 18:35:45','RA03', '1', '0', 'C-06-02-033-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('31/01/2015 18:35:46','31/01/2015 22:06:31','RA03', '91', '242', 'C-06-02-033-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('31/01/2015 22:06:32','31/01/2015 23:52:25','RA03', '75', '255', 'C-06-02-033-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('31/01/2015 23:52:26','01/02/2015 00:42:45','RA03', '536', '159', 'C-06-02-033-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('01/02/2015 00:42:46','01/02/2015 19:17:32','RA03', '83', '51', 'C-06-02-033-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('01/02/2015 19:17:33','01/02/2015 19:59:33','RA03', '152', '237', 'C-06-02-033-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('01/02/2015 19:59:34','01/02/2015 21:47:23','RA03', '432', '127', 'C-06-02-033-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('01/02/2015 21:47:24','01/02/2015 22:47:23','RA03', '152', '235', 'C-06-02-033-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('01/02/2015 22:47:24','02/02/2015 00:21:25','RA03', '80', '292', 'C-06-02-033-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('02/02/2015 00:21:26','02/02/2015 18:44:54','RA03', '152', '236', 'C-06-02-033-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('02/02/2015 18:44:55','02/02/2015 19:28:32','RA03', '258', '134', 'C-06-02-033-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('02/02/2015 19:28:33','02/02/2015 21:20:40','RA03', '75', '133', 'C-06-02-033-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('02/02/2015 21:20:41','03/02/2015 19:01:51','RA03', '87', '255', 'C-06-02-033-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('03/02/2015 19:01:52','03/02/2015 20:49:12','RA03', '258', '159', 'C-06-02-033-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('03/02/2015 20:49:13','04/02/2015 18:15:03','RA03', '104', '137', 'C-06-02-033-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('04/02/2015 18:15:04','04/02/2015 20:39:21','RA03', '85', '139', 'C-06-02-033-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('04/02/2015 20:39:22','04/02/2015 20:56:40','RA03', '104', '240', 'C-06-02-033-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('04/02/2015 20:56:41','04/02/2015 23:15:34','RA03', '288', '134', 'C-06-02-033-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('04/02/2015 23:15:35','05/02/2015 01:12:12','RA03', '104', '133', 'C-06-02-033-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('05/02/2015 01:12:13','05/02/2015 18:24:47','RA03', '536', '242', 'C-06-02-033-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('05/02/2015 18:24:48','05/02/2015 19:09:05','RA03', '371', '142', 'C-06-02-033-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('05/02/2015 19:09:06','05/02/2015 21:34:40','RA03', '288', '255', 'C-06-02-033-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('05/02/2015 21:34:41','05/02/2015 23:00:12','RA03', '258', '141', 'C-06-02-033-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('05/02/2015 23:00:13','06/02/2015 00:36:57','RA03', '91', '51', 'C-06-02-033-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('06/02/2015 00:36:58','06/02/2015 02:46:07','RA03', '288', '237', 'C-06-02-033-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('06/02/2015 02:46:08','06/02/2015 18:45:49','RA03', '104', '127', 'C-06-02-033-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('06/02/2015 18:45:50','06/02/2015 19:15:20','RA03', '288', '137', 'C-06-02-033-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('06/02/2015 19:15:21','06/02/2015 21:05:22','RA03', '371', '292', 'C-06-02-033-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('06/02/2015 21:05:23','06/02/2015 22:55:38','RA03', '258', '240', 'C-06-02-033-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('06/02/2015 22:55:39','07/02/2015 00:25:02','RA03', '92', '134', 'C-06-02-033-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('07/02/2015 00:25:03','07/02/2015 18:34:43','RA03', '95', '133', 'C-06-02-033-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('07/02/2015 18:34:44','07/02/2015 20:14:50','RA03', '74', '242', 'C-06-02-033-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('07/02/2015 20:14:51','07/02/2015 20:53:07','RA03', '95', '142', 'C-06-02-033-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('07/02/2015 20:53:08','07/02/2015 21:29:54','RA03', '152', '148', 'C-06-02-033-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('07/02/2015 21:29:55','08/02/2015 01:44:37','RA03', '552', '255', 'C-06-02-033-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('08/02/2015 01:44:38','08/02/2015 03:22:31','RA03', '536', '141', 'C-06-02-033-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('08/02/2015 03:22:32','08/02/2015 18:36:49','RA03', '75', '159', 'C-06-02-033-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('08/02/2015 18:36:50','08/02/2015 20:50:42','RA03', '91', '51', 'C-06-02-033-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('08/02/2015 20:50:43','08/02/2015 23:08:30','RA03', '257', '237', 'C-06-02-033-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('08/02/2015 23:08:31','09/02/2015 19:16:20','RA03', '152', '127', 'C-06-02-033-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('09/02/2015 19:16:21','09/02/2015 21:06:44','RA03', '80', '292', 'C-06-02-033-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('09/02/2015 21:06:45','09/02/2015 23:17:42','RA03', '288', '236', 'C-06-02-033-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('09/02/2015 23:17:43','10/02/2015 19:04:57','RA03', '79', '240', 'C-06-02-033-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('10/02/2015 19:04:58','10/02/2015 19:27:48','RA03', '258', '134', 'C-06-02-033-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('10/02/2015 19:27:49','10/02/2015 20:08:51','RA03', '80', '242', 'C-06-02-033-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('10/02/2015 20:08:52','10/02/2015 21:42:40','RA03', '536', '255', 'C-06-02-033-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('10/02/2015 21:42:41','11/02/2015 06:59:59','RA03', '543', '141', 'C-06-02-033-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('11/02/2015 07:00:00','11/02/2015 18:32:29','RA03', '1', '0', 'C-06-02-038-C7TF', 'P-06-02-034-C7TF');
execute insertarconfiguraciones('11/02/2015 18:32:30','11/02/2015 19:22:42','RA03', '543', '141', 'C-06-02-038-C7TF', 'P-06-02-034-C7TF');
execute insertarconfiguraciones('11/02/2015 19:22:43','11/02/2015 19:31:42','RA03', '79', '51', 'C-06-02-038-C7TF', 'P-06-02-034-C7TF');
execute insertarconfiguraciones('11/02/2015 19:31:43','11/02/2015 21:25:49','RA03', '150', '237', 'C-06-02-038-C7TF', 'P-06-02-034-C7TF');
execute insertarconfiguraciones('11/02/2015 21:25:50','11/02/2015 22:09:46','RA03', '371', '292', 'C-06-02-038-C7TF', 'P-06-02-034-C7TF');
execute insertarconfiguraciones('11/02/2015 22:09:47','11/02/2015 23:28:40','RA03', '536', '236', 'C-06-02-038-C7TF', 'P-06-02-034-C7TF');
execute insertarconfiguraciones('11/02/2015 23:28:41','12/02/2015 00:20:10','RA03', '104', '134', 'C-06-02-038-C7TF', 'P-06-02-034-C7TF');
execute insertarconfiguraciones('12/02/2015 00:20:11','12/02/2015 00:34:45','RA03', '536', '242', 'C-06-02-038-C7TF', 'P-06-02-034-C7TF');
execute insertarconfiguraciones('12/02/2015 00:34:46','12/02/2015 18:13:27','RA03', '104', '142', 'C-06-02-038-C7TF', 'P-06-02-034-C7TF');
execute insertarconfiguraciones('12/02/2015 18:13:28','12/02/2015 18:35:14','RA03', '76', '255', 'C-06-02-038-C7TF', 'P-06-02-034-C7TF');
execute insertarconfiguraciones('12/02/2015 18:35:15','12/02/2015 19:33:07','RA03', '543', '141', 'C-06-02-038-C7TF', 'P-06-02-034-C7TF');
execute insertarconfiguraciones('12/02/2015 19:33:08','12/02/2015 19:54:19','RA03', '371', '237', 'C-06-02-038-C7TF', 'P-06-02-034-C7TF');
execute insertarconfiguraciones('12/02/2015 19:54:20','13/02/2015 00:32:32','RA03', '76', '127', 'C-06-02-038-C7TF', 'P-06-02-034-C7TF');
execute insertarconfiguraciones('13/02/2015 00:32:33','13/02/2015 19:00:13','RA03', '371', '235', 'C-06-02-038-C7TF', 'P-06-02-034-C7TF');
execute insertarconfiguraciones('13/02/2015 19:00:14','13/02/2015 19:11:42','RA03', '87', '292', 'C-06-02-038-C7TF', 'P-06-02-034-C7TF');
execute insertarconfiguraciones('13/02/2015 19:11:43','13/02/2015 20:53:58','RA03', '76', '236', 'C-06-02-038-C7TF', 'P-06-02-034-C7TF');
execute insertarconfiguraciones('13/02/2015 20:53:59','13/02/2015 23:38:12','RA03', '150', '242', 'C-06-02-038-C7TF', 'P-06-02-034-C7TF');
execute insertarconfiguraciones('13/02/2015 23:38:13','14/02/2015 20:29:53','RA03', '92', '142', 'C-06-02-038-C7TF', 'P-06-02-034-C7TF');
execute insertarconfiguraciones('14/02/2015 20:29:54','14/02/2015 22:35:46','RA03', '76', '255', 'C-06-02-038-C7TF', 'P-06-02-034-C7TF');
execute insertarconfiguraciones('14/02/2015 22:35:47','14/02/2015 23:40:50','RA03', '150', '51', 'C-06-02-038-C7TF', 'P-06-02-034-C7TF');
execute insertarconfiguraciones('14/02/2015 23:40:51','15/02/2015 00:38:11','RA03', '536', '237', 'C-06-02-038-C7TF', 'P-06-02-034-C7TF');
execute insertarconfiguraciones('15/02/2015 00:38:12','15/02/2015 18:29:35','RA03', '150', '139', 'C-06-02-038-C7TF', 'P-06-02-034-C7TF');
execute insertarconfiguraciones('15/02/2015 18:29:36','15/02/2015 19:29:04','RA03', '152', '235', 'C-06-02-038-C7TF', 'P-06-02-034-C7TF');
execute insertarconfiguraciones('15/02/2015 19:29:05','15/02/2015 23:48:53','RA03', '104', '236', 'C-06-02-038-C7TF', 'P-06-02-034-C7TF');
execute insertarconfiguraciones('15/02/2015 23:48:54','16/02/2015 18:48:26','RA03', '552', '240', 'C-06-02-038-C7TF', 'P-06-02-034-C7TF');
execute insertarconfiguraciones('16/02/2015 18:48:27','17/02/2015 18:33:54','RA03', '75', '134', 'C-06-02-038-C7TF', 'P-06-02-034-C7TF');
execute insertarconfiguraciones('17/02/2015 18:33:55','17/02/2015 20:30:26','RA03', '432', '255', 'C-06-02-038-C7TF', 'P-06-02-034-C7TF');
execute insertarconfiguraciones('17/02/2015 20:30:27','17/02/2015 22:08:23','RA03', '258', '159', 'C-06-02-038-C7TF', 'P-06-02-034-C7TF');
execute insertarconfiguraciones('17/02/2015 22:08:24','18/02/2015 18:25:14','RA03', '75', '51', 'C-06-02-038-C7TF', 'P-06-02-034-C7TF');
execute insertarconfiguraciones('18/02/2015 18:25:15','18/02/2015 19:04:50','RA03', '432', '237', 'C-06-02-038-C7TF', 'P-06-02-034-C7TF');
execute insertarconfiguraciones('18/02/2015 19:04:51','18/02/2015 20:25:43','RA03', '543', '137', 'C-06-02-038-C7TF', 'P-06-02-034-C7TF');
execute insertarconfiguraciones('18/02/2015 20:25:44','19/02/2015 18:48:35','RA03', '150', '235', 'C-06-02-038-C7TF', 'P-06-02-034-C7TF');
execute insertarconfiguraciones('19/02/2015 18:48:36','19/02/2015 22:32:25','RA03', '543', '292', 'C-06-02-038-C7TF', 'P-06-02-034-C7TF');
execute insertarconfiguraciones('19/02/2015 22:32:26','19/02/2015 23:24:09','RA03', '246', '242', 'C-06-02-038-C7TF', 'P-06-02-034-C7TF');
execute insertarconfiguraciones('19/02/2015 23:24:10','20/02/2015 18:22:38','RA03', '288', '142', 'C-06-02-038-C7TF', 'P-06-02-034-C7TF');
execute insertarconfiguraciones('20/02/2015 18:22:39','20/02/2015 20:34:54','RA03', '85', '148', 'C-06-02-038-C7TF', 'P-06-02-034-C7TF');
execute insertarconfiguraciones('20/02/2015 20:34:55','20/02/2015 22:18:07','RA03', '87', '159', 'C-06-02-038-C7TF', 'P-06-02-034-C7TF');
execute insertarconfiguraciones('20/02/2015 22:18:08','21/02/2015 18:21:17','RA03', '104', '51', 'C-06-02-038-C7TF', 'P-06-02-034-C7TF');
execute insertarconfiguraciones('21/02/2015 18:21:18','21/02/2015 18:35:08','RA03', '246', '127', 'C-06-02-038-C7TF', 'P-06-02-034-C7TF');
execute insertarconfiguraciones('21/02/2015 18:35:09','21/02/2015 20:34:33','RA03', '150', '137', 'C-06-02-038-C7TF', 'P-06-02-034-C7TF');
execute insertarconfiguraciones('21/02/2015 20:34:34','21/02/2015 23:48:32','RA03', '432', '292', 'C-06-02-038-C7TF', 'P-06-02-034-C7TF');
execute insertarconfiguraciones('21/02/2015 23:48:33','22/02/2015 00:57:09','RA03', '91', '240', 'C-06-02-038-C7TF', 'P-06-02-034-C7TF');
execute insertarconfiguraciones('22/02/2015 00:57:10','22/02/2015 06:59:59','RA03', '85', '133', 'C-06-02-038-C7TF', 'P-06-02-034-C7TF');
execute insertarconfiguraciones('22/02/2015 07:00:00','22/02/2015 18:15:43','RA03', '1', '0', 'C-06-02-038-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('22/02/2015 18:15:44','22/02/2015 19:13:27','RA03', '371', '242', 'C-06-02-038-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('22/02/2015 19:13:28','22/02/2015 22:33:16','RA03', '432', '142', 'C-06-02-038-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('22/02/2015 22:33:17','23/02/2015 01:28:44','RA03', '257', '148', 'C-06-02-038-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('23/02/2015 01:28:45','23/02/2015 18:42:04','RA03', '552', '255', 'C-06-02-038-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('23/02/2015 18:42:05','23/02/2015 20:02:02','RA03', '104', '141', 'C-06-02-038-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('23/02/2015 20:02:03','23/02/2015 22:35:33','RA03', '246', '51', 'C-06-02-038-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('23/02/2015 22:35:34','24/02/2015 18:50:07','RA03', '87', '237', 'C-06-02-038-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('24/02/2015 18:50:08','24/02/2015 19:22:47','RA03', '432', '127', 'C-06-02-038-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('24/02/2015 19:22:48','24/02/2015 19:57:51','RA03', '91', '137', 'C-06-02-038-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('24/02/2015 19:57:52','24/02/2015 20:09:25','RA03', '104', '139', 'C-06-02-038-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('24/02/2015 20:09:26','24/02/2015 20:47:01','RA03', '543', '235', 'C-06-02-038-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('24/02/2015 20:47:02','24/02/2015 22:17:37','RA03', '75', '292', 'C-06-02-038-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('24/02/2015 22:17:38','25/02/2015 00:27:28','RA03', '432', '236', 'C-06-02-038-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('25/02/2015 00:27:29','25/02/2015 18:47:14','RA03', '536', '240', 'C-06-02-038-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('25/02/2015 18:47:15','25/02/2015 20:47:47','RA03', '552', '134', 'C-06-02-038-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('25/02/2015 20:47:48','25/02/2015 22:24:46','RA03', '85', '141', 'C-06-02-038-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('25/02/2015 22:24:47','25/02/2015 22:48:49','RA03', '150', '159', 'C-06-02-038-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('25/02/2015 22:48:50','26/02/2015 00:37:52','RA03', '432', '51', 'C-06-02-038-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('26/02/2015 00:37:53','26/02/2015 18:08:47','RA03', '75', '237', 'C-06-02-038-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('26/02/2015 18:08:48','26/02/2015 18:54:08','RA03', '85', '127', 'C-06-02-038-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('26/02/2015 18:54:09','26/02/2015 19:06:56','RA03', '80', '139', 'C-06-02-038-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('26/02/2015 19:06:57','26/02/2015 19:50:23','RA03', '85', '292', 'C-06-02-038-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('26/02/2015 19:50:24','26/02/2015 21:43:22','RA03', '104', '134', 'C-06-02-038-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('26/02/2015 21:43:23','26/02/2015 22:33:45','RA03', '92', '133', 'C-06-02-038-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('26/02/2015 22:33:46','26/02/2015 23:04:27','RA03', '80', '242', 'C-06-02-038-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('26/02/2015 23:04:28','26/02/2015 23:57:20','RA03', '150', '148', 'C-06-02-038-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('26/02/2015 23:57:21','27/02/2015 18:09:06','RA03', '288', '141', 'C-06-02-038-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('27/02/2015 18:09:07','27/02/2015 20:14:43','RA03', '371', '159', 'C-06-02-038-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('27/02/2015 20:14:44','27/02/2015 23:23:21','RA03', '246', '127', 'C-06-02-038-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('27/02/2015 23:23:22','28/02/2015 02:06:40','RA03', '76', '139', 'C-06-02-038-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('28/02/2015 02:06:41','28/02/2015 18:08:48','RA03', '150', '235', 'C-06-02-038-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('28/02/2015 18:08:49','28/02/2015 18:36:43','RA03', '76', '292', 'C-06-02-038-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('28/02/2015 18:36:44','28/02/2015 19:28:10','RA03', '85', '236', 'C-06-02-038-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('28/02/2015 19:28:11','28/02/2015 20:33:02','RA03', '92', '133', 'C-06-02-038-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('28/02/2015 20:33:03','28/02/2015 20:46:51','RA03', '104', '142', 'C-06-02-038-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('28/02/2015 20:46:52','28/02/2015 23:07:50','RA03', '150', '148', 'C-06-02-038-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('28/02/2015 23:07:51','01/03/2015 02:06:25','RA03', '552', '255', 'C-06-02-038-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('01/03/2015 02:06:26','01/03/2015 18:29:39','RA03', '91', '141', 'C-06-02-038-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('01/03/2015 18:29:40','01/03/2015 19:35:04','RA03', '552', '51', 'C-06-02-038-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('01/03/2015 19:35:05','01/03/2015 20:37:55','RA03', '246', '237', 'C-06-02-038-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('01/03/2015 20:37:56','02/03/2015 19:05:51','RA03', '104', '139', 'C-06-02-038-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('02/03/2015 19:05:52','02/03/2015 19:13:10','RA03', '75', '240', 'C-06-02-038-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('02/03/2015 19:13:11','02/03/2015 20:47:39','RA03', '288', '134', 'C-06-02-038-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('02/03/2015 20:47:40','02/03/2015 22:49:53','RA03', '258', '142', 'C-06-02-038-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('02/03/2015 22:49:54','03/03/2015 18:15:09','RA03', '288', '255', 'C-06-02-038-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('03/03/2015 18:15:10','03/03/2015 20:38:29','RA03', '80', '159', 'C-06-02-038-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('03/03/2015 20:38:30','03/03/2015 21:01:11','RA03', '432', '127', 'C-06-02-038-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('03/03/2015 21:01:12','03/03/2015 23:07:45','RA03', '104', '137', 'C-06-02-038-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('03/03/2015 23:07:46','04/03/2015 01:39:50','RA03', '79', '139', 'C-06-02-038-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('04/03/2015 01:39:51','04/03/2015 18:28:58','RA03', '552', '292', 'C-06-02-038-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('04/03/2015 18:28:59','04/03/2015 19:03:13','RA03', '152', '236', 'C-06-02-038-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('04/03/2015 19:03:14','04/03/2015 20:37:19','RA03', '552', '240', 'C-06-02-038-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('04/03/2015 20:37:20','04/03/2015 23:14:34','RA03', '79', '133', 'C-06-02-038-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('04/03/2015 23:14:35','05/03/2015 06:59:59','RA03', '543', '242', 'C-06-02-038-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('05/03/2015 07:00:00','05/03/2015 18:04:40','RA03', '1', '0', 'C-06-02-037-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('05/03/2015 18:04:41','05/03/2015 18:48:00','RA03', '85', '142', 'C-06-02-037-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('05/03/2015 18:48:01','05/03/2015 20:59:27','RA03', '152', '255', 'C-06-02-037-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('05/03/2015 20:59:28','05/03/2015 22:50:49','RA03', '79', '137', 'C-06-02-037-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('05/03/2015 22:50:50','06/03/2015 00:44:11','RA03', '85', '235', 'C-06-02-037-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('06/03/2015 00:44:12','06/03/2015 18:13:30','RA03', '75', '292', 'C-06-02-037-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('06/03/2015 18:13:31','06/03/2015 18:46:32','RA03', '87', '236', 'C-06-02-037-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('06/03/2015 18:46:33','06/03/2015 19:38:46','RA03', '258', '134', 'C-06-02-037-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('06/03/2015 19:38:47','06/03/2015 21:30:45','RA03', '152', '142', 'C-06-02-037-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('06/03/2015 21:30:46','06/03/2015 23:17:52','RA03', '104', '255', 'C-06-02-037-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('06/03/2015 23:17:53','07/03/2015 18:43:26','RA03', '87', '141', 'C-06-02-037-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('07/03/2015 18:43:27','07/03/2015 19:36:43','RA03', '85', '159', 'C-06-02-037-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('07/03/2015 19:36:44','07/03/2015 20:47:38','RA03', '79', '51', 'C-06-02-037-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('07/03/2015 20:47:39','07/03/2015 21:41:42','RA03', '83', '127', 'C-06-02-037-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('07/03/2015 21:41:43','07/03/2015 22:55:34','RA03', '150', '137', 'C-06-02-037-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('07/03/2015 22:55:35','08/03/2015 00:32:31','RA03', '543', '235', 'C-06-02-037-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('08/03/2015 00:32:32','08/03/2015 19:56:22','RA03', '258', '292', 'C-06-02-037-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('08/03/2015 19:56:23','08/03/2015 23:56:10','RA03', '85', '236', 'C-06-02-037-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('08/03/2015 23:56:11','09/03/2015 18:24:46','RA03', '104', '240', 'C-06-02-037-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('09/03/2015 18:24:47','09/03/2015 19:47:27','RA03', '95', '134', 'C-06-02-037-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('09/03/2015 19:47:28','09/03/2015 21:59:02','RA03', '73', '148', 'C-06-02-037-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('09/03/2015 21:59:03','10/03/2015 19:07:19','RA03', '432', '141', 'C-06-02-037-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('10/03/2015 19:07:20','10/03/2015 20:27:13','RA03', '104', '237', 'C-06-02-037-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('10/03/2015 20:27:14','11/03/2015 01:15:26','RA03', '371', '235', 'C-06-02-037-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('11/03/2015 01:15:27','11/03/2015 18:46:58','RA03', '258', '236', 'C-06-02-037-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('11/03/2015 18:46:59','11/03/2015 19:05:43','RA03', '95', '240', 'C-06-02-037-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('11/03/2015 19:05:44','12/03/2015 02:27:51','RA03', '152', '134', 'C-06-02-037-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('12/03/2015 02:27:52','12/03/2015 18:15:21','RA03', '257', '133', 'C-06-02-037-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('12/03/2015 18:15:22','12/03/2015 18:46:31','RA03', '75', '242', 'C-06-02-037-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('12/03/2015 18:46:32','12/03/2015 19:30:25','RA03', '152', '148', 'C-06-02-037-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('12/03/2015 19:30:26','13/03/2015 00:51:45','RA03', '432', '159', 'C-06-02-037-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('13/03/2015 00:51:46','13/03/2015 01:06:00','RA03', '75', '127', 'C-06-02-037-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('13/03/2015 01:06:01','13/03/2015 18:36:15','RA03', '80', '137', 'C-06-02-037-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('13/03/2015 18:36:16','13/03/2015 18:53:13','RA03', '152', '139', 'C-06-02-037-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('13/03/2015 18:53:14','13/03/2015 19:25:24','RA03', '432', '235', 'C-06-02-037-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('13/03/2015 19:25:25','13/03/2015 22:33:57','RA03', '543', '292', 'C-06-02-037-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('13/03/2015 22:33:58','14/03/2015 01:12:09','RA03', '246', '236', 'C-06-02-037-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('14/03/2015 01:12:10','14/03/2015 20:44:47','RA03', '80', '240', 'C-06-02-037-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('14/03/2015 20:44:48','14/03/2015 22:29:41','RA03', '288', '242', 'C-06-02-037-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('14/03/2015 22:29:42','15/03/2015 18:11:38','RA03', '543', '255', 'C-06-02-037-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('15/03/2015 18:11:39','15/03/2015 19:07:57','RA03', '246', '141', 'C-06-02-037-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('15/03/2015 19:07:58','15/03/2015 23:49:44','RA03', '85', '159', 'C-06-02-037-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('15/03/2015 23:49:45','16/03/2015 06:59:59','RA03', '536', '237', 'C-06-02-037-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('16/03/2015 07:00:00','16/03/2015 18:11:44','RA03', '1', '0', 'C-06-02-037-C7TF', 'P-06-02-029-C7TF');
execute insertarconfiguraciones('16/03/2015 18:11:45','16/03/2015 19:07:47','RA03', '288', '137', 'C-06-02-037-C7TF', 'P-06-02-029-C7TF');
execute insertarconfiguraciones('16/03/2015 19:07:48','16/03/2015 19:30:37','RA03', '85', '236', 'C-06-02-037-C7TF', 'P-06-02-029-C7TF');
execute insertarconfiguraciones('16/03/2015 19:30:38','16/03/2015 21:57:15','RA03', '536', '134', 'C-06-02-037-C7TF', 'P-06-02-029-C7TF');
execute insertarconfiguraciones('16/03/2015 21:57:16','17/03/2015 00:15:41','RA03', '288', '142', 'C-06-02-037-C7TF', 'P-06-02-029-C7TF');
execute insertarconfiguraciones('17/03/2015 00:15:42','17/03/2015 01:03:47','RA03', '104', '148', 'C-06-02-037-C7TF', 'P-06-02-029-C7TF');
execute insertarconfiguraciones('17/03/2015 01:03:48','17/03/2015 01:58:43','RA03', '91', '255', 'C-06-02-037-C7TF', 'P-06-02-029-C7TF');
execute insertarconfiguraciones('17/03/2015 01:58:44','17/03/2015 18:08:09','RA03', '80', '141', 'C-06-02-037-C7TF', 'P-06-02-029-C7TF');
execute insertarconfiguraciones('17/03/2015 18:08:10','17/03/2015 20:09:06','RA03', '85', '159', 'C-06-02-037-C7TF', 'P-06-02-029-C7TF');
execute insertarconfiguraciones('17/03/2015 20:09:07','17/03/2015 23:18:03','RA03', '104', '139', 'C-06-02-037-C7TF', 'P-06-02-029-C7TF');
execute insertarconfiguraciones('17/03/2015 23:18:04','18/03/2015 00:30:54','RA03', '288', '292', 'C-06-02-037-C7TF', 'P-06-02-029-C7TF');
execute insertarconfiguraciones('18/03/2015 00:30:55','18/03/2015 18:20:48','RA03', '85', '236', 'C-06-02-037-C7TF', 'P-06-02-029-C7TF');
execute insertarconfiguraciones('18/03/2015 18:20:49','18/03/2015 19:16:09','RA03', '288', '240', 'C-06-02-037-C7TF', 'P-06-02-029-C7TF');
execute insertarconfiguraciones('18/03/2015 19:16:10','18/03/2015 19:55:43','RA03', '104', '133', 'C-06-02-037-C7TF', 'P-06-02-029-C7TF');
execute insertarconfiguraciones('18/03/2015 19:55:44','18/03/2015 22:53:04','RA03', '246', '242', 'C-06-02-037-C7TF', 'P-06-02-029-C7TF');
execute insertarconfiguraciones('18/03/2015 22:53:05','18/03/2015 23:23:08','RA03', '91', '141', 'C-06-02-037-C7TF', 'P-06-02-029-C7TF');
execute insertarconfiguraciones('18/03/2015 23:23:09','19/03/2015 18:09:04','RA03', '246', '159', 'C-06-02-037-C7TF', 'P-06-02-029-C7TF');
execute insertarconfiguraciones('19/03/2015 18:09:05','19/03/2015 18:12:27','RA03', '80', '51', 'C-06-02-037-C7TF', 'P-06-02-029-C7TF');
execute insertarconfiguraciones('19/03/2015 18:12:28','19/03/2015 19:26:42','RA03', '152', '237', 'C-06-02-037-C7TF', 'P-06-02-029-C7TF');
execute insertarconfiguraciones('19/03/2015 19:26:43','19/03/2015 20:58:01','RA03', '75', '127', 'C-06-02-037-C7TF', 'P-06-02-029-C7TF');
execute insertarconfiguraciones('19/03/2015 20:58:02','19/03/2015 21:54:35','RA03', '152', '139', 'C-06-02-037-C7TF', 'P-06-02-029-C7TF');
execute insertarconfiguraciones('19/03/2015 21:54:36','20/03/2015 00:38:19','RA03', '87', '235', 'C-06-02-037-C7TF', 'P-06-02-029-C7TF');
execute insertarconfiguraciones('20/03/2015 00:38:20','20/03/2015 18:49:52','RA03', '79', '292', 'C-06-02-037-C7TF', 'P-06-02-029-C7TF');
execute insertarconfiguraciones('20/03/2015 18:49:53','20/03/2015 20:08:28','RA03', '76', '240', 'C-06-02-037-C7TF', 'P-06-02-029-C7TF');
execute insertarconfiguraciones('20/03/2015 20:08:29','20/03/2015 22:47:30','RA03', '80', '133', 'C-06-02-037-C7TF', 'P-06-02-029-C7TF');
execute insertarconfiguraciones('20/03/2015 22:47:31','21/03/2015 00:00:24','RA03', '246', '242', 'C-06-02-037-C7TF', 'P-06-02-029-C7TF');
execute insertarconfiguraciones('21/03/2015 00:00:25','21/03/2015 18:26:24','RA03', '536', '142', 'C-06-02-037-C7TF', 'P-06-02-029-C7TF');
execute insertarconfiguraciones('21/03/2015 18:26:25','21/03/2015 19:43:23','RA03', '75', '148', 'C-06-02-037-C7TF', 'P-06-02-029-C7TF');
execute insertarconfiguraciones('21/03/2015 19:43:24','21/03/2015 23:02:22','RA03', '152', '141', 'C-06-02-037-C7TF', 'P-06-02-029-C7TF');
execute insertarconfiguraciones('21/03/2015 23:02:23','22/03/2015 18:30:34','RA03', '83', '159', 'C-06-02-037-C7TF', 'P-06-02-029-C7TF');
execute insertarconfiguraciones('22/03/2015 18:30:35','22/03/2015 20:45:47','RA03', '258', '51', 'C-06-02-037-C7TF', 'P-06-02-029-C7TF');
execute insertarconfiguraciones('22/03/2015 20:45:48','23/03/2015 00:19:45','RA03', '246', '127', 'C-06-02-037-C7TF', 'P-06-02-029-C7TF');
execute insertarconfiguraciones('23/03/2015 00:19:46','23/03/2015 01:33:22','RA03', '150', '137', 'C-06-02-037-C7TF', 'P-06-02-029-C7TF');
execute insertarconfiguraciones('23/03/2015 01:33:23','23/03/2015 18:48:02','RA03', '79', '235', 'C-06-02-037-C7TF', 'P-06-02-029-C7TF');
execute insertarconfiguraciones('23/03/2015 18:48:03','23/03/2015 19:17:57','RA03', '246', '292', 'C-06-02-037-C7TF', 'P-06-02-029-C7TF');
execute insertarconfiguraciones('23/03/2015 19:17:58','23/03/2015 19:45:11','RA03', '543', '236', 'C-06-02-037-C7TF', 'P-06-02-029-C7TF');
execute insertarconfiguraciones('23/03/2015 19:45:12','23/03/2015 21:46:08','RA03', '80', '134', 'C-06-02-037-C7TF', 'P-06-02-029-C7TF');
execute insertarconfiguraciones('23/03/2015 21:46:09','23/03/2015 22:20:24','RA03', '104', '242', 'C-06-02-037-C7TF', 'P-06-02-029-C7TF');
execute insertarconfiguraciones('23/03/2015 22:20:25','23/03/2015 22:43:55','RA03', '150', '142', 'C-06-02-037-C7TF', 'P-06-02-029-C7TF');
execute insertarconfiguraciones('23/03/2015 22:43:56','24/03/2015 18:19:36','RA03', '95', '148', 'C-06-02-037-C7TF', 'P-06-02-029-C7TF');
execute insertarconfiguraciones('24/03/2015 18:19:37','24/03/2015 19:04:54','RA03', '85', '141', 'C-06-02-037-C7TF', 'P-06-02-029-C7TF');
execute insertarconfiguraciones('24/03/2015 19:04:55','24/03/2015 20:24:24','RA03', '150', '139', 'C-06-02-037-C7TF', 'P-06-02-029-C7TF');
execute insertarconfiguraciones('24/03/2015 20:24:25','24/03/2015 20:59:40','RA03', '246', '236', 'C-06-02-037-C7TF', 'P-06-02-029-C7TF');
execute insertarconfiguraciones('24/03/2015 20:59:41','24/03/2015 23:01:10','RA03', '432', '240', 'C-06-02-037-C7TF', 'P-06-02-029-C7TF');
execute insertarconfiguraciones('24/03/2015 23:01:11','25/03/2015 02:12:13','RA03', '85', '134', 'C-06-02-037-C7TF', 'P-06-02-029-C7TF');
execute insertarconfiguraciones('25/03/2015 02:12:14','25/03/2015 18:16:49','RA03', '150', '242', 'C-06-02-037-C7TF', 'P-06-02-029-C7TF');
execute insertarconfiguraciones('25/03/2015 18:16:50','25/03/2015 19:39:55','RA03', '432', '142', 'C-06-02-037-C7TF', 'P-06-02-029-C7TF');
execute insertarconfiguraciones('25/03/2015 19:39:56','25/03/2015 20:25:50','RA03', '87', '148', 'C-06-02-037-C7TF', 'P-06-02-029-C7TF');
execute insertarconfiguraciones('25/03/2015 20:25:51','25/03/2015 21:57:00','RA03', '246', '141', 'C-06-02-037-C7TF', 'P-06-02-029-C7TF');
execute insertarconfiguraciones('25/03/2015 21:57:01','26/03/2015 18:02:17','RA03', '150', '237', 'C-06-02-037-C7TF', 'P-06-02-029-C7TF');
execute insertarconfiguraciones('26/03/2015 18:02:18','26/03/2015 18:32:53','RA03', '552', '127', 'C-06-02-037-C7TF', 'P-06-02-029-C7TF');
execute insertarconfiguraciones('26/03/2015 18:32:54','26/03/2015 19:04:14','RA03', '152', '137', 'C-06-02-037-C7TF', 'P-06-02-029-C7TF');
execute insertarconfiguraciones('26/03/2015 19:04:15','26/03/2015 20:00:00','RA03', '91', '139', 'C-06-02-037-C7TF', 'P-06-02-029-C7TF');
execute insertarconfiguraciones('26/03/2015 20:00:01','26/03/2015 20:41:04','RA03', '104', '240', 'C-06-02-037-C7TF', 'P-06-02-029-C7TF');
execute insertarconfiguraciones('26/03/2015 20:41:05','26/03/2015 23:21:39','RA03', '91', '134', 'C-06-02-037-C7TF', 'P-06-02-029-C7TF');
execute insertarconfiguraciones('26/03/2015 23:21:40','27/03/2015 00:31:20','RA03', '152', '242', 'C-06-02-037-C7TF', 'P-06-02-029-C7TF');
execute insertarconfiguraciones('27/03/2015 00:31:21','27/03/2015 06:59:59','RA03', '91', '148', 'C-06-02-037-C7TF', 'P-06-02-029-C7TF');
execute insertarconfiguraciones('27/03/2015 07:00:00','27/03/2015 18:16:04','RA03', '1', '0', 'C-06-02-036-C7TF', 'P-06-02-033-C7TF');
execute insertarconfiguraciones('27/03/2015 18:16:05','27/03/2015 18:25:41','RA03', '152', '255', 'C-06-02-036-C7TF', 'P-06-02-033-C7TF');
execute insertarconfiguraciones('27/03/2015 18:25:42','27/03/2015 19:39:02','RA03', '95', '141', 'C-06-02-036-C7TF', 'P-06-02-033-C7TF');
execute insertarconfiguraciones('27/03/2015 19:39:03','27/03/2015 20:39:58','RA03', '91', '137', 'C-06-02-036-C7TF', 'P-06-02-033-C7TF');
execute insertarconfiguraciones('27/03/2015 20:39:59','27/03/2015 20:58:25','RA03', '76', '235', 'C-06-02-036-C7TF', 'P-06-02-033-C7TF');
execute insertarconfiguraciones('27/03/2015 20:58:26','27/03/2015 22:31:53','RA03', '85', '292', 'C-06-02-036-C7TF', 'P-06-02-033-C7TF');
execute insertarconfiguraciones('27/03/2015 22:31:54','27/03/2015 23:30:41','RA03', '75', '240', 'C-06-02-036-C7TF', 'P-06-02-033-C7TF');
execute insertarconfiguraciones('27/03/2015 23:30:42','28/03/2015 00:35:43','RA03', '536', '133', 'C-06-02-036-C7TF', 'P-06-02-033-C7TF');
execute insertarconfiguraciones('28/03/2015 00:35:44','28/03/2015 18:14:19','RA03', '104', '142', 'C-06-02-036-C7TF', 'P-06-02-033-C7TF');
execute insertarconfiguraciones('28/03/2015 18:14:20','28/03/2015 20:10:10','RA03', '152', '148', 'C-06-02-036-C7TF', 'P-06-02-033-C7TF');
execute insertarconfiguraciones('28/03/2015 20:10:11','28/03/2015 22:06:03','RA03', '432', '255', 'C-06-02-036-C7TF', 'P-06-02-033-C7TF');
execute insertarconfiguraciones('28/03/2015 22:06:04','29/03/2015 00:10:00','RA03', '76', '141', 'C-06-02-036-C7TF', 'P-06-02-033-C7TF');
execute insertarconfiguraciones('29/03/2015 00:10:01','29/03/2015 21:10:30','RA03', '152', '237', 'C-06-02-036-C7TF', 'P-06-02-033-C7TF');
execute insertarconfiguraciones('29/03/2015 21:10:31','30/03/2015 18:16:57','RA03', '85', '292', 'C-06-02-036-C7TF', 'P-06-02-033-C7TF');
execute insertarconfiguraciones('30/03/2015 18:16:58','30/03/2015 20:02:33','RA03', '152', '240', 'C-06-02-036-C7TF', 'P-06-02-033-C7TF');
execute insertarconfiguraciones('30/03/2015 20:02:34','30/03/2015 23:19:17','RA03', '79', '134', 'C-06-02-036-C7TF', 'P-06-02-033-C7TF');
execute insertarconfiguraciones('30/03/2015 23:19:18','31/03/2015 18:11:53','RA03', '258', '133', 'C-06-02-036-C7TF', 'P-06-02-033-C7TF');
execute insertarconfiguraciones('31/03/2015 18:11:54','31/03/2015 19:20:53','RA03', '246', '142', 'C-06-02-036-C7TF', 'P-06-02-033-C7TF');
execute insertarconfiguraciones('31/03/2015 19:20:54','31/03/2015 19:46:07','RA03', '79', '148', 'C-06-02-036-C7TF', 'P-06-02-033-C7TF');
execute insertarconfiguraciones('31/03/2015 19:46:08','31/03/2015 21:11:23','RA03', '95', '255', 'C-06-02-036-C7TF', 'P-06-02-033-C7TF');
execute insertarconfiguraciones('31/03/2015 21:11:24','31/03/2015 21:53:25','RA03', '536', '159', 'C-06-02-036-C7TF', 'P-06-02-033-C7TF');
execute insertarconfiguraciones('31/03/2015 21:53:26','31/03/2015 23:37:14','RA03', '371', '51', 'C-06-02-036-C7TF', 'P-06-02-033-C7TF');
execute insertarconfiguraciones('31/03/2015 23:37:15','01/04/2015 00:10:03','RA03', '246', '127', 'C-06-02-036-C7TF', 'P-06-02-033-C7TF');
execute insertarconfiguraciones('01/04/2015 00:10:04','01/04/2015 01:53:52','RA03', '536', '137', 'C-06-02-036-C7TF', 'P-06-02-033-C7TF');
execute insertarconfiguraciones('01/04/2015 01:53:53','01/04/2015 18:22:06','RA03', '104', '235', 'C-06-02-036-C7TF', 'P-06-02-033-C7TF');
execute insertarconfiguraciones('01/04/2015 18:22:07','01/04/2015 19:13:46','RA03', '246', '292', 'C-06-02-036-C7TF', 'P-06-02-033-C7TF');
execute insertarconfiguraciones('01/04/2015 19:13:47','01/04/2015 19:58:16','RA03', '288', '240', 'C-06-02-036-C7TF', 'P-06-02-033-C7TF');
execute insertarconfiguraciones('01/04/2015 19:58:17','01/04/2015 22:30:02','RA03', '91', '134', 'C-06-02-036-C7TF', 'P-06-02-033-C7TF');
execute insertarconfiguraciones('01/04/2015 22:30:03','01/04/2015 23:23:21','RA03', '95', '142', 'C-06-02-036-C7TF', 'P-06-02-033-C7TF');
execute insertarconfiguraciones('01/04/2015 23:23:22','02/04/2015 18:18:29','RA03', '85', '148', 'C-06-02-036-C7TF', 'P-06-02-033-C7TF');
execute insertarconfiguraciones('02/04/2015 18:18:30','02/04/2015 18:50:50','RA03', '432', '255', 'C-06-02-036-C7TF', 'P-06-02-033-C7TF');
execute insertarconfiguraciones('02/04/2015 18:50:51','02/04/2015 20:56:02','RA03', '246', '141', 'C-06-02-036-C7TF', 'P-06-02-033-C7TF');
execute insertarconfiguraciones('02/04/2015 20:56:03','03/04/2015 00:00:56','RA03', '371', '159', 'C-06-02-036-C7TF', 'P-06-02-033-C7TF');
execute insertarconfiguraciones('03/04/2015 00:00:57','03/04/2015 18:26:10','RA03', '92', '237', 'C-06-02-036-C7TF', 'P-06-02-033-C7TF');
execute insertarconfiguraciones('03/04/2015 18:26:11','03/04/2015 20:17:36','RA03', '104', '137', 'C-06-02-036-C7TF', 'P-06-02-033-C7TF');
execute insertarconfiguraciones('03/04/2015 20:17:37','03/04/2015 21:10:05','RA03', '258', '235', 'C-06-02-036-C7TF', 'P-06-02-033-C7TF');
execute insertarconfiguraciones('03/04/2015 21:10:06','03/04/2015 21:44:07','RA03', '152', '292', 'C-06-02-036-C7TF', 'P-06-02-033-C7TF');
execute insertarconfiguraciones('03/04/2015 21:44:08','03/04/2015 23:50:31','RA03', '92', '236', 'C-06-02-036-C7TF', 'P-06-02-033-C7TF');
execute insertarconfiguraciones('03/04/2015 23:50:32','04/04/2015 01:28:19','RA03', '152', '134', 'C-06-02-036-C7TF', 'P-06-02-033-C7TF');
execute insertarconfiguraciones('04/04/2015 01:28:20','04/04/2015 18:03:21','RA03', '83', '142', 'C-06-02-036-C7TF', 'P-06-02-033-C7TF');
execute insertarconfiguraciones('04/04/2015 18:03:22','04/04/2015 18:39:26','RA03', '104', '141', 'C-06-02-036-C7TF', 'P-06-02-033-C7TF');
execute insertarconfiguraciones('04/04/2015 18:39:27','04/04/2015 19:59:09','RA03', '85', '159', 'C-06-02-036-C7TF', 'P-06-02-033-C7TF');
execute insertarconfiguraciones('04/04/2015 19:59:10','04/04/2015 21:57:25','RA03', '152', '51', 'C-06-02-036-C7TF', 'P-06-02-033-C7TF');
execute insertarconfiguraciones('04/04/2015 21:57:26','05/04/2015 00:54:51','RA03', '92', '237', 'C-06-02-036-C7TF', 'P-06-02-033-C7TF');
execute insertarconfiguraciones('05/04/2015 00:54:52','05/04/2015 18:15:39','RA03', '552', '127', 'C-06-02-036-C7TF', 'P-06-02-033-C7TF');
execute insertarconfiguraciones('05/04/2015 18:15:40','05/04/2015 19:54:48','RA03', '80', '137', 'C-06-02-036-C7TF', 'P-06-02-033-C7TF');
execute insertarconfiguraciones('05/04/2015 19:54:49','05/04/2015 20:16:22','RA03', '91', '235', 'C-06-02-036-C7TF', 'P-06-02-033-C7TF');
execute insertarconfiguraciones('05/04/2015 20:16:23','05/04/2015 23:14:28','RA03', '79', '292', 'C-06-02-036-C7TF', 'P-06-02-033-C7TF');
execute insertarconfiguraciones('05/04/2015 23:14:29','06/04/2015 18:49:09','RA03', '152', '134', 'C-06-02-036-C7TF', 'P-06-02-033-C7TF');
execute insertarconfiguraciones('06/04/2015 18:49:10','06/04/2015 21:22:38','RA03', '80', '133', 'C-06-02-036-C7TF', 'P-06-02-033-C7TF');
execute insertarconfiguraciones('06/04/2015 21:22:39','07/04/2015 01:01:04','RA03', '73', '255', 'C-06-02-036-C7TF', 'P-06-02-033-C7TF');
execute insertarconfiguraciones('07/04/2015 01:01:05','07/04/2015 06:59:59','RA03', '87', '141', 'C-06-02-036-C7TF', 'P-06-02-033-C7TF');
execute insertarconfiguraciones('07/04/2015 07:00:00','07/04/2015 18:07:45','RA03', '1', '0', 'C-06-02-036-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('07/04/2015 18:07:46','07/04/2015 19:26:19','RA03', '152', '159', 'C-06-02-036-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('07/04/2015 19:26:20','07/04/2015 21:55:23','RA03', '258', '127', 'C-06-02-036-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('07/04/2015 21:55:24','08/04/2015 21:47:59','RA03', '150', '137', 'C-06-02-036-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('08/04/2015 21:48:00','08/04/2015 22:35:35','RA03', '95', '134', 'C-06-02-036-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('08/04/2015 22:35:36','08/04/2015 22:56:30','RA03', '432', '242', 'C-06-02-036-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('08/04/2015 22:56:31','09/04/2015 00:00:43','RA03', '150', '142', 'C-06-02-036-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('09/04/2015 00:00:44','09/04/2015 18:05:57','RA03', '104', '255', 'C-06-02-036-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('09/04/2015 18:05:58','09/04/2015 18:41:40','RA03', '246', '141', 'C-06-02-036-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('09/04/2015 18:41:41','09/04/2015 19:24:48','RA03', '87', '237', 'C-06-02-036-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('09/04/2015 19:24:49','09/04/2015 22:22:57','RA03', '246', '127', 'C-06-02-036-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('09/04/2015 22:22:58','10/04/2015 00:08:20','RA03', '288', '240', 'C-06-02-036-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('10/04/2015 00:08:21','10/04/2015 01:06:58','RA03', '258', '133', 'C-06-02-036-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('10/04/2015 01:06:59','10/04/2015 02:43:52','RA03', '80', '242', 'C-06-02-036-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('10/04/2015 02:43:53','10/04/2015 20:15:06','RA03', '92', '148', 'C-06-02-036-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('10/04/2015 20:15:07','10/04/2015 20:29:48','RA03', '258', '51', 'C-06-02-036-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('10/04/2015 20:29:49','10/04/2015 22:22:43','RA03', '543', '127', 'C-06-02-036-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('10/04/2015 22:22:44','10/04/2015 23:04:04','RA03', '80', '139', 'C-06-02-036-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('10/04/2015 23:04:05','11/04/2015 19:56:56','RA03', '371', '235', 'C-06-02-036-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('11/04/2015 19:56:57','11/04/2015 23:00:37','RA03', '80', '134', 'C-06-02-036-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('11/04/2015 23:00:38','12/04/2015 00:17:32','RA03', '258', '133', 'C-06-02-036-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('12/04/2015 00:17:33','12/04/2015 18:11:33','RA03', '92', '242', 'C-06-02-036-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('12/04/2015 18:11:34','12/04/2015 18:26:47','RA03', '95', '142', 'C-06-02-036-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('12/04/2015 18:26:48','12/04/2015 19:40:48','RA03', '104', '148', 'C-06-02-036-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('12/04/2015 19:40:49','12/04/2015 19:42:50','RA03', '80', '141', 'C-06-02-036-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('12/04/2015 19:42:51','12/04/2015 22:14:31','RA03', '73', '159', 'C-06-02-036-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('12/04/2015 22:14:32','12/04/2015 22:22:23','RA03', '552', '237', 'C-06-02-036-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('12/04/2015 22:22:24','13/04/2015 18:42:57','RA03', '536', '127', 'C-06-02-036-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('13/04/2015 18:42:58','13/04/2015 22:43:35','RA03', '73', '137', 'C-06-02-036-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('13/04/2015 22:43:36','14/04/2015 02:07:20','RA03', '152', '235', 'C-06-02-036-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('14/04/2015 02:07:21','14/04/2015 19:00:28','RA03', '536', '292', 'C-06-02-036-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('14/04/2015 19:00:29','14/04/2015 19:28:18','RA03', '85', '236', 'C-06-02-036-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('14/04/2015 19:28:19','14/04/2015 21:57:05','RA03', '80', '134', 'C-06-02-036-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('14/04/2015 21:57:06','14/04/2015 23:53:59','RA03', '150', '142', 'C-06-02-036-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('14/04/2015 23:54:00','15/04/2015 18:17:41','RA03', '79', '255', 'C-06-02-036-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('15/04/2015 18:17:42','15/04/2015 19:04:30','RA03', '152', '159', 'C-06-02-036-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('15/04/2015 19:04:31','15/04/2015 20:18:11','RA03', '258', '51', 'C-06-02-036-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('15/04/2015 20:18:12','15/04/2015 21:15:57','RA03', '288', '127', 'C-06-02-036-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('15/04/2015 21:15:58','15/04/2015 21:35:34','RA03', '371', '137', 'C-06-02-036-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('15/04/2015 21:35:35','16/04/2015 00:28:34','RA03', '152', '139', 'C-06-02-036-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('16/04/2015 00:28:35','16/04/2015 18:19:34','RA03', '85', '235', 'C-06-02-036-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('16/04/2015 18:19:35','16/04/2015 19:10:00','RA03', '432', '292', 'C-06-02-036-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('16/04/2015 19:10:01','16/04/2015 21:46:38','RA03', '288', '134', 'C-06-02-036-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('16/04/2015 21:46:39','16/04/2015 23:13:03','RA03', '104', '133', 'C-06-02-036-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('16/04/2015 23:13:04','17/04/2015 20:43:02','RA03', '150', '148', 'C-06-02-036-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('17/04/2015 20:43:03','17/04/2015 22:45:28','RA03', '73', '51', 'C-06-02-036-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('17/04/2015 22:45:29','18/04/2015 00:07:26','RA03', '246', '237', 'C-06-02-036-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('18/04/2015 00:07:27','18/04/2015 01:27:09','RA03', '150', '137', 'C-06-02-036-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('18/04/2015 01:27:10','18/04/2015 06:59:59','RA03', '104', '292', 'C-06-02-036-C7TF', 'P-06-02-035-C7TF');
execute insertarconfiguraciones('18/04/2015 07:00:00','18/04/2015 18:36:17','RA03', '1', '0', 'C-06-02-029-C7TF', 'P-06-02-034-C7TF');
execute insertarconfiguraciones('18/04/2015 18:36:18','18/04/2015 20:17:27','RA03', '288', '134', 'C-06-02-029-C7TF', 'P-06-02-034-C7TF');
execute insertarconfiguraciones('18/04/2015 20:17:28','18/04/2015 22:46:41','RA03', '91', '242', 'C-06-02-029-C7TF', 'P-06-02-034-C7TF');
execute insertarconfiguraciones('18/04/2015 22:46:42','19/04/2015 01:53:51','RA03', '87', '148', 'C-06-02-029-C7TF', 'P-06-02-034-C7TF');
execute insertarconfiguraciones('19/04/2015 01:53:52','19/04/2015 18:44:31','RA03', '75', '159', 'C-06-02-029-C7TF', 'P-06-02-034-C7TF');
execute insertarconfiguraciones('19/04/2015 18:44:32','19/04/2015 22:09:47','RA03', '104', '51', 'C-06-02-029-C7TF', 'P-06-02-034-C7TF');
execute insertarconfiguraciones('19/04/2015 22:09:48','19/04/2015 23:55:08','RA03', '432', '137', 'C-06-02-029-C7TF', 'P-06-02-034-C7TF');
execute insertarconfiguraciones('19/04/2015 23:55:09','20/04/2015 00:35:51','RA03', '75', '292', 'C-06-02-029-C7TF', 'P-06-02-034-C7TF');
execute insertarconfiguraciones('20/04/2015 00:35:52','20/04/2015 18:55:38','RA03', '258', '236', 'C-06-02-029-C7TF', 'P-06-02-034-C7TF');
execute insertarconfiguraciones('20/04/2015 18:55:39','20/04/2015 19:59:23','RA03', '95', '240', 'C-06-02-029-C7TF', 'P-06-02-034-C7TF');
execute insertarconfiguraciones('20/04/2015 19:59:24','20/04/2015 21:51:30','RA03', '543', '134', 'C-06-02-029-C7TF', 'P-06-02-034-C7TF');
execute insertarconfiguraciones('20/04/2015 21:51:31','21/04/2015 18:32:02','RA03', '536', '133', 'C-06-02-029-C7TF', 'P-06-02-034-C7TF');
execute insertarconfiguraciones('21/04/2015 18:32:03','21/04/2015 20:08:25','RA03', '258', '142', 'C-06-02-029-C7TF', 'P-06-02-034-C7TF');
execute insertarconfiguraciones('21/04/2015 20:08:26','21/04/2015 22:02:43','RA03', '104', '255', 'C-06-02-029-C7TF', 'P-06-02-034-C7TF');
execute insertarconfiguraciones('21/04/2015 22:02:44','21/04/2015 23:05:27','RA03', '536', '159', 'C-06-02-029-C7TF', 'P-06-02-034-C7TF');
execute insertarconfiguraciones('21/04/2015 23:05:28','22/04/2015 20:08:31','RA03', '152', '127', 'C-06-02-029-C7TF', 'P-06-02-034-C7TF');
execute insertarconfiguraciones('22/04/2015 20:08:32','22/04/2015 22:41:19','RA03', '536', '137', 'C-06-02-029-C7TF', 'P-06-02-034-C7TF');
execute insertarconfiguraciones('22/04/2015 22:41:20','23/04/2015 18:10:52','RA03', '150', '235', 'C-06-02-029-C7TF', 'P-06-02-034-C7TF');
execute insertarconfiguraciones('23/04/2015 18:10:53','23/04/2015 19:13:20','RA03', '543', '292', 'C-06-02-029-C7TF', 'P-06-02-034-C7TF');
execute insertarconfiguraciones('23/04/2015 19:13:21','23/04/2015 21:07:16','RA03', '85', '236', 'C-06-02-029-C7TF', 'P-06-02-034-C7TF');
execute insertarconfiguraciones('23/04/2015 21:07:17','23/04/2015 23:20:30','RA03', '152', '240', 'C-06-02-029-C7TF', 'P-06-02-034-C7TF');
execute insertarconfiguraciones('23/04/2015 23:20:31','24/04/2015 00:54:49','RA03', '79', '134', 'C-06-02-029-C7TF', 'P-06-02-034-C7TF');
execute insertarconfiguraciones('24/04/2015 00:54:50','24/04/2015 18:05:56','RA03', '371', '142', 'C-06-02-029-C7TF', 'P-06-02-034-C7TF');
execute insertarconfiguraciones('24/04/2015 18:05:57','24/04/2015 19:27:29','RA03', '150', '148', 'C-06-02-029-C7TF', 'P-06-02-034-C7TF');
execute insertarconfiguraciones('24/04/2015 19:27:30','24/04/2015 21:03:51','RA03', '79', '141', 'C-06-02-029-C7TF', 'P-06-02-034-C7TF');
execute insertarconfiguraciones('24/04/2015 21:03:52','24/04/2015 23:46:33','RA03', '432', '137', 'C-06-02-029-C7TF', 'P-06-02-034-C7TF');
execute insertarconfiguraciones('24/04/2015 23:46:34','25/04/2015 01:43:20','RA03', '104', '139', 'C-06-02-029-C7TF', 'P-06-02-034-C7TF');
execute insertarconfiguraciones('25/04/2015 01:43:21','25/04/2015 18:34:00','RA03', '92', '235', 'C-06-02-029-C7TF', 'P-06-02-034-C7TF');
execute insertarconfiguraciones('25/04/2015 18:34:01','25/04/2015 19:42:45','RA03', '85', '292', 'C-06-02-029-C7TF', 'P-06-02-034-C7TF');
execute insertarconfiguraciones('25/04/2015 19:42:46','25/04/2015 22:58:25','RA03', '536', '134', 'C-06-02-029-C7TF', 'P-06-02-034-C7TF');
execute insertarconfiguraciones('25/04/2015 22:58:26','26/04/2015 17:29:01','RA03', '80', '142', 'C-06-02-029-C7TF', 'P-06-02-034-C7TF');
execute insertarconfiguraciones('26/04/2015 17:29:02','26/04/2015 19:24:54','RA03', '150', '148', 'C-06-02-029-C7TF', 'P-06-02-034-C7TF');
execute insertarconfiguraciones('26/04/2015 19:24:55','26/04/2015 21:21:30','RA03', '104', '255', 'C-06-02-029-C7TF', 'P-06-02-034-C7TF');
execute insertarconfiguraciones('26/04/2015 21:21:31','26/04/2015 22:44:48','RA03', '87', '141', 'C-06-02-029-C7TF', 'P-06-02-034-C7TF');
execute insertarconfiguraciones('26/04/2015 22:44:49','27/04/2015 18:09:03','RA03', '75', '159', 'C-06-02-029-C7TF', 'P-06-02-034-C7TF');
execute insertarconfiguraciones('27/04/2015 18:09:04','27/04/2015 19:23:41','RA03', '288', '51', 'C-06-02-029-C7TF', 'P-06-02-034-C7TF');
execute insertarconfiguraciones('27/04/2015 19:23:42','27/04/2015 20:06:44','RA03', '104', '237', 'C-06-02-029-C7TF', 'P-06-02-034-C7TF');
execute insertarconfiguraciones('27/04/2015 20:06:45','27/04/2015 22:36:09','RA03', '552', '139', 'C-06-02-029-C7TF', 'P-06-02-034-C7TF');
execute insertarconfiguraciones('27/04/2015 22:36:10','27/04/2015 23:14:15','RA03', '152', '235', 'C-06-02-029-C7TF', 'P-06-02-034-C7TF');
execute insertarconfiguraciones('27/04/2015 23:14:16','28/04/2015 18:53:46','RA03', '75', '292', 'C-06-02-029-C7TF', 'P-06-02-034-C7TF');
execute insertarconfiguraciones('28/04/2015 18:53:47','28/04/2015 19:08:52','RA03', '152', '236', 'C-06-02-029-C7TF', 'P-06-02-034-C7TF');
execute insertarconfiguraciones('28/04/2015 19:08:53','29/04/2015 01:01:34','RA03', '80', '240', 'C-06-02-029-C7TF', 'P-06-02-034-C7TF');
execute insertarconfiguraciones('29/04/2015 01:01:35','29/04/2015 06:59:59','RA03', '75', '134', 'C-06-02-029-C7TF', 'P-06-02-034-C7TF');
execute insertarconfiguraciones('29/04/2015 07:00:00','29/04/2015 18:09:28','RA03', '1', '0', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('29/04/2015 18:09:29','29/04/2015 19:43:40','RA03', '91', '133', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('29/04/2015 19:43:41','30/04/2015 18:47:37','RA03', '543', '242', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('30/04/2015 18:47:38','30/04/2015 21:02:07','RA03', '80', '142', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('30/04/2015 21:02:08','01/05/2015 00:01:17','RA03', '152', '148', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('01/05/2015 00:01:18','01/05/2015 17:11:03','RA03', '543', '255', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('01/05/2015 17:11:04','01/05/2015 18:01:30','RA03', '258', '137', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('01/05/2015 18:01:31','01/05/2015 18:21:42','RA03', '80', '137', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('01/05/2015 18:21:43','01/05/2015 20:01:50','RA03', '73', '142', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('01/05/2015 20:01:51','01/05/2015 20:43:12','RA03', '76', '142', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('01/05/2015 20:43:13','01/05/2015 21:41:38','RA03', '73', '236', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('01/05/2015 21:41:39','01/05/2015 22:43:49','RA03', '536', '236', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('01/05/2015 22:43:50','01/05/2015 23:21:42','RA03', '85', '139', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('01/05/2015 23:21:43','02/05/2015 00:23:23','RA03', '371', '139', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('02/05/2015 00:23:24','02/05/2015 00:42:40','RA03', '85', '292', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('02/05/2015 00:42:41','02/05/2015 17:22:10','RA03', '246', '292', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('02/05/2015 17:22:11','02/05/2015 18:44:25','RA03', '543', '242', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('02/05/2015 18:44:26','02/05/2015 20:01:49','RA03', '536', '242', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('02/05/2015 20:01:50','02/05/2015 20:53:50','RA03', '85', '141', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('02/05/2015 20:53:51','02/05/2015 21:41:56','RA03', '543', '141', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('02/05/2015 21:41:57','02/05/2015 22:42:27','RA03', '288', '255', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('02/05/2015 22:42:28','02/05/2015 23:21:58','RA03', '150', '255', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('02/05/2015 23:21:59','02/05/2015 23:44:19','RA03', '104', '137', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('02/05/2015 23:44:20','03/05/2015 00:01:22','RA03', '83', '137', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('03/05/2015 00:01:23','03/05/2015 02:04:25','RA03', '536', '137', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('03/05/2015 02:04:26','03/05/2015 02:21:17','RA03', '288', '236', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('03/05/2015 02:21:18','03/05/2015 16:56:24','RA03', '104', '236', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('03/05/2015 16:56:25','03/05/2015 18:15:22','RA03', '150', '139', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('03/05/2015 18:15:23','03/05/2015 19:50:18','RA03', '288', '139', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('03/05/2015 19:50:19','03/05/2015 20:00:55','RA03', '536', '292', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('03/05/2015 20:00:56','03/05/2015 20:41:17','RA03', '246', '242', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('03/05/2015 20:41:18','03/05/2015 22:02:07','RA03', '150', '242', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('03/05/2015 22:02:08','03/05/2015 23:22:45','RA03', '246', '255', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('03/05/2015 23:22:46','04/05/2015 00:11:01','RA03', '95', '255', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('04/05/2015 00:11:02','04/05/2015 02:01:02','RA03', '288', '137', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('04/05/2015 02:01:03','04/05/2015 16:57:25','RA03', '104', '142', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('04/05/2015 16:57:26','04/05/2015 17:42:24','RA03', '87', '142', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('04/05/2015 17:42:25','04/05/2015 19:22:29','RA03', '432', '236', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('04/05/2015 19:22:30','04/05/2015 19:42:33','RA03', '104', '139', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('04/05/2015 19:42:34','04/05/2015 20:42:58','RA03', '80', '139', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('04/05/2015 20:42:59','04/05/2015 21:42:14','RA03', '246', '139', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('04/05/2015 21:42:15','04/05/2015 22:43:22','RA03', '85', '292', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('04/05/2015 22:43:23','04/05/2015 23:02:29','RA03', '75', '242', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('04/05/2015 23:02:30','04/05/2015 23:42:14','RA03', '543', '242', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('04/05/2015 23:42:15','05/05/2015 00:04:01','RA03', '536', '141', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('05/05/2015 00:04:02','05/05/2015 17:13:14','RA03', '543', '141', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('05/05/2015 17:13:15','05/05/2015 17:42:30','RA03', '371', '255', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('05/05/2015 17:42:31','05/05/2015 18:22:37','RA03', '152', '255', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('05/05/2015 18:22:38','05/05/2015 19:01:16','RA03', '432', '255', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('05/05/2015 19:01:17','05/05/2015 19:43:00','RA03', '104', '137', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('05/05/2015 19:43:01','05/05/2015 20:20:35','RA03', '258', '137', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('05/05/2015 20:20:36','05/05/2015 20:42:32','RA03', '75', '142', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('05/05/2015 20:42:33','05/05/2015 21:22:18','RA03', '432', '142', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('05/05/2015 21:22:19','05/05/2015 21:42:13','RA03', '91', '142', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('05/05/2015 21:42:14','05/05/2015 22:02:18','RA03', '152', '142', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('05/05/2015 22:02:19','05/05/2015 22:43:16','RA03', '95', '236', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('05/05/2015 22:43:17','06/05/2015 17:20:59','RA03', '75', '236', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('06/05/2015 17:21:00','06/05/2015 18:21:05','RA03', '104', '139', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('06/05/2015 18:21:06','06/05/2015 19:28:28','RA03', '73', '292', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('06/05/2015 19:28:29','06/05/2015 19:42:24','RA03', '75', '242', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('06/05/2015 19:42:25','06/05/2015 20:00:56','RA03', '104', '242', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('06/05/2015 20:00:57','06/05/2015 20:41:01','RA03', '258', '242', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('06/05/2015 20:41:02','06/05/2015 21:02:26','RA03', '73', '242', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('06/05/2015 21:02:27','06/05/2015 21:21:40','RA03', '536', '141', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('06/05/2015 21:21:41','06/05/2015 21:41:36','RA03', '80', '141', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('06/05/2015 21:41:37','06/05/2015 22:21:25','RA03', '76', '141', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('06/05/2015 22:21:26','06/05/2015 23:42:22','RA03', '75', '141', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('06/05/2015 23:42:23','07/05/2015 00:01:07','RA03', '543', '255', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('07/05/2015 00:01:08','07/05/2015 00:42:51','RA03', '91', '255', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('07/05/2015 00:42:52','07/05/2015 01:22:52','RA03', '75', '137', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('07/05/2015 01:22:53','07/05/2015 17:22:16','RA03', '258', '137', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('07/05/2015 17:22:17','07/05/2015 18:03:46','RA03', '91', '142', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('07/05/2015 18:03:47','07/05/2015 19:04:05','RA03', '76', '236', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('07/05/2015 19:04:06','07/05/2015 20:03:44','RA03', '543', '236', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('07/05/2015 20:03:45','07/05/2015 21:04:13','RA03', '246', '236', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('07/05/2015 21:04:14','07/05/2015 21:23:33','RA03', '73', '139', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('07/05/2015 21:23:34','07/05/2015 21:40:58','RA03', '152', '139', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('07/05/2015 21:40:59','07/05/2015 22:02:51','RA03', '85', '139', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('07/05/2015 22:02:52','07/05/2015 23:03:27','RA03', '258', '292', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('07/05/2015 23:03:28','07/05/2015 23:41:43','RA03', '152', '292', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('07/05/2015 23:41:44','08/05/2015 00:45:48','RA03', '75', '242', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('08/05/2015 00:45:49','08/05/2015 01:22:32','RA03', '536', '242', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('08/05/2015 01:22:33','08/05/2015 02:02:20','RA03', '85', '141', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('08/05/2015 02:02:21','08/05/2015 17:04:26','RA03', '150', '141', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('08/05/2015 17:04:27','08/05/2015 18:06:06','RA03', '152', '255', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('08/05/2015 18:06:07','08/05/2015 18:24:16','RA03', '73', '255', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('08/05/2015 18:24:17','08/05/2015 18:47:39','RA03', '432', '255', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('08/05/2015 18:47:40','08/05/2015 19:42:53','RA03', '246', '255', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('08/05/2015 19:42:54','08/05/2015 20:43:16','RA03', '288', '137', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('08/05/2015 20:43:17','08/05/2015 21:42:14','RA03', '75', '137', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('08/05/2015 21:42:15','08/05/2015 22:23:44','RA03', '76', '142', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('08/05/2015 22:23:45','08/05/2015 23:03:17','RA03', '87', '142', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('08/05/2015 23:03:18','08/05/2015 23:25:05','RA03', '258', '236', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('08/05/2015 23:25:06','08/05/2015 23:43:22','RA03', '80', '236', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('08/05/2015 23:43:23','09/05/2015 00:46:21','RA03', '95', '236', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('09/05/2015 00:46:22','09/05/2015 01:21:57','RA03', '371', '236', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('09/05/2015 01:21:58','09/05/2015 18:16:03','RA03', '87', '139', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('09/05/2015 18:16:04','09/05/2015 18:43:25','RA03', '83', '292', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('09/05/2015 18:43:26','09/05/2015 20:22:04','RA03', '95', '292', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('09/05/2015 20:22:05','09/05/2015 21:02:04','RA03', '85', '141', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('09/05/2015 21:02:05','09/05/2015 21:42:41','RA03', '371', '255', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('09/05/2015 21:42:42','09/05/2015 22:23:01','RA03', '76', '255', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('09/05/2015 22:23:02','09/05/2015 22:42:30','RA03', '371', '255', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('09/05/2015 22:42:31','09/05/2015 23:21:30','RA03', '80', '137', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('09/05/2015 23:21:31','10/05/2015 00:02:09','RA03', '75', '137', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('10/05/2015 00:02:10','10/05/2015 01:20:13','RA03', '288', '137', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('10/05/2015 01:20:14','10/05/2015 06:59:59','RA03', '76', '142', 'C-06-02-029-C7TF', 'P-06-02-032-C7TF');
execute insertarconfiguraciones('10/05/2015 07:00:00','10/05/2015 16:55:11','RA03', '1', '0', 'C-06-02-039-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('10/05/2015 16:55:12','10/05/2015 17:27:16','RA03', '76', '142', 'C-06-02-039-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('10/05/2015 17:27:17','10/05/2015 18:02:58','RA03', '543', '142', 'C-06-02-039-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('10/05/2015 18:02:59','10/05/2015 19:02:35','RA03', '150', '236', 'C-06-02-039-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('10/05/2015 19:02:36','10/05/2015 20:43:07','RA03', '87', '236', 'C-06-02-039-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('10/05/2015 20:43:08','10/05/2015 21:29:35','RA03', '246', '236', 'C-06-02-039-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('10/05/2015 21:29:36','10/05/2015 21:42:59','RA03', '85', '139', 'C-06-02-039-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('10/05/2015 21:43:00','10/05/2015 22:03:06','RA03', '87', '139', 'C-06-02-039-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('10/05/2015 22:03:07','10/05/2015 22:22:14','RA03', '85', '139', 'C-06-02-039-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('10/05/2015 22:22:15','10/05/2015 23:02:56','RA03', '371', '292', 'C-06-02-039-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('10/05/2015 23:02:57','11/05/2015 00:01:59','RA03', '95', '292', 'C-06-02-039-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('11/05/2015 00:02:00','11/05/2015 01:41:49','RA03', '288', '242', 'C-06-02-039-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('11/05/2015 01:41:50','11/05/2015 02:02:53','RA03', '150', '255', 'C-06-02-039-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('11/05/2015 02:02:54','11/05/2015 17:16:06','RA03', '246', '255', 'C-06-02-039-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('11/05/2015 17:16:07','11/05/2015 19:04:20','RA03', '150', '255', 'C-06-02-039-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('11/05/2015 19:04:21','11/05/2015 19:42:58','RA03', '85', '137', 'C-06-02-039-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('11/05/2015 19:42:59','11/05/2015 20:43:13','RA03', '552', '137', 'C-06-02-039-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('11/05/2015 20:43:14','11/05/2015 21:42:35','RA03', '150', '142', 'C-06-02-039-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('11/05/2015 21:42:36','11/05/2015 22:43:24','RA03', '371', '142', 'C-06-02-039-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('11/05/2015 22:43:25','11/05/2015 23:22:54','RA03', '246', '236', 'C-06-02-039-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('11/05/2015 23:22:55','12/05/2015 00:02:13','RA03', '552', '236', 'C-06-02-039-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('12/05/2015 00:02:14','12/05/2015 00:43:52','RA03', '371', '236', 'C-06-02-039-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('12/05/2015 00:43:53','12/05/2015 01:22:49','RA03', '80', '139', 'C-06-02-039-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('12/05/2015 01:22:50','12/05/2015 02:03:33','RA03', '91', '139', 'C-06-02-039-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('12/05/2015 02:03:34','12/05/2015 02:44:48','RA03', '543', '292', 'C-06-02-039-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('12/05/2015 02:44:49','12/05/2015 17:09:28','RA03', '95', '292', 'C-06-02-039-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('12/05/2015 17:09:29','12/05/2015 18:22:04','RA03', '432', '292', 'C-06-02-039-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('12/05/2015 18:22:05','12/05/2015 19:01:52','RA03', '73', '242', 'C-06-02-039-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('12/05/2015 19:01:53','12/05/2015 20:21:42','RA03', '246', '141', 'C-06-02-039-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('12/05/2015 20:21:43','12/05/2015 22:30:03','RA03', '371', '255', 'C-06-02-039-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('12/05/2015 22:30:04','12/05/2015 23:43:06','RA03', '288', '255', 'C-06-02-039-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('12/05/2015 23:43:07','13/05/2015 20:09:52','RA03', '91', '255', 'C-06-02-039-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('13/05/2015 20:09:53','13/05/2015 22:23:16','RA03', '73', '255', 'C-06-02-039-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('13/05/2015 22:23:17','13/05/2015 22:41:45','RA03', '75', '137', 'C-06-02-039-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('13/05/2015 22:41:46','14/05/2015 00:23:24','RA03', '152', '137', 'C-06-02-039-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('14/05/2015 00:23:25','14/05/2015 00:42:58','RA03', '288', '142', 'C-06-02-039-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('14/05/2015 00:42:59','14/05/2015 01:42:07','RA03', '91', '142', 'C-06-02-039-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('14/05/2015 01:42:08','14/05/2015 18:12:25','RA03', '258', '236', 'C-06-02-039-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('14/05/2015 18:12:26','14/05/2015 19:03:24','RA03', '76', '236', 'C-06-02-039-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('14/05/2015 19:03:25','14/05/2015 19:43:00','RA03', '75', '139', 'C-06-02-039-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('14/05/2015 19:43:01','14/05/2015 20:51:40','RA03', '85', '139', 'C-06-02-039-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('14/05/2015 20:51:41','14/05/2015 21:42:44','RA03', '552', '292', 'C-06-02-039-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('14/05/2015 21:42:45','14/05/2015 22:22:39','RA03', '75', '292', 'C-06-02-039-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('14/05/2015 22:22:40','14/05/2015 23:02:00','RA03', '85', '242', 'C-06-02-039-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('14/05/2015 23:02:01','15/05/2015 00:14:41','RA03', '91', '242', 'C-06-02-039-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('15/05/2015 00:14:42','15/05/2015 00:43:21','RA03', '552', '141', 'C-06-02-039-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('15/05/2015 00:43:22','15/05/2015 01:41:54','RA03', '75', '141', 'C-06-02-039-C7TF', 'P-06-02-028-C7TF');
execute insertarconfiguraciones('15/05/2015 01:41:55','31/12/2099 23:59:59','RA03', '85', '255', 'C-06-02-039-C7TF', 'P-06-02-028-C7TF');
execute insertartiradas('RA0242005,8264583333', '6', '01/01/2015 19:50:06','23,7', 'RA02');
execute insertartiradas('RA0242005,9205671296', '10', '01/01/2015 22:05:37','24,2', 'RA02');
execute insertartiradas('RA0242005,9475694444', '14', '01/01/2015 22:44:30','-15,5', 'RA02');
execute insertartiradas('RA0242006,0005324074', '1', '02/01/2015 00:00:46','-20,9', 'RA02');
execute insertartiradas('RA0242006,0017013889', '20', '02/01/2015 00:02:27','17,5', 'RA02');
execute insertartiradas('RA0242006,8031828704', '24', '02/01/2015 19:16:35','20,9', 'RA02');
execute insertartiradas('RA0242006,8052199074', '7', '02/01/2015 19:19:31','13,6', 'RA02');
execute insertartiradas('RA0242006,8158796296', '34', '02/01/2015 19:34:52','-19,6', 'RA02');
execute insertartiradas('RA0242006,8484259259', '31', '02/01/2015 20:21:44','-17,2', 'RA02');
execute insertartiradas('RA0242007,1039236111', '14', '03/01/2015 02:29:39','-11,3', 'RA02');
execute insertartiradas('RA0242007,9371643519', '33', '03/01/2015 22:29:31','15,3', 'RA02');
execute insertartiradas('RA0242007,9553935185', '25', '03/01/2015 22:55:46','15,7', 'RA02');
execute insertartiradas('RA0242007,9608449074', '14', '03/01/2015 23:03:37','17,1', 'RA02');
execute insertartiradas('RA0242008,097650463', '3', '04/01/2015 02:20:37','20,7', 'RA02');
execute insertartiradas('RA0242008,8392824074', '13', '04/01/2015 20:08:34','-14,4', 'RA02');
execute insertartiradas('RA0242008,8413657407', '16', '04/01/2015 20:11:34','-17,5', 'RA02');
execute insertartiradas('RA0242008,8454050926', '18', '04/01/2015 20:17:23','19,6', 'RA02');
execute insertartiradas('RA0242008,8523032407', '4', '04/01/2015 20:27:19','-19,6', 'RA02');
execute insertartiradas('RA0242008,8527777778', '3', '04/01/2015 20:28:00','18,5', 'RA02');
execute insertartiradas('RA0242008,8722453704', '13', '04/01/2015 20:56:02','19,7', 'RA02');
execute insertartiradas('RA0242008,9300925926', '0', '04/01/2015 22:19:20','-13,1', 'RA02');
execute insertartiradas('RA0242008,9656481482', '0', '04/01/2015 23:10:32','-23', 'RA02');
execute insertartiradas('RA0242008,9963773148', '31', '04/01/2015 23:54:47','19', 'RA02');
execute insertartiradas('RA0242009,0754861111', '10', '05/01/2015 01:48:42','-17,6', 'RA02');
execute insertartiradas('RA0242009,8150925926', '28', '05/01/2015 19:33:44','21,3', 'RA02');
execute insertartiradas('RA0242009,8593634259', '3', '05/01/2015 20:37:29','-14,7', 'RA02');
execute insertartiradas('RA0242011,8540046296', '28', '07/01/2015 20:29:46','-17,1', 'RA02');
execute insertartiradas('RA0242011,9341898148', '29', '07/01/2015 22:25:14','11,8', 'RA02');
execute insertartiradas('RA0242012,810150463', '20', '08/01/2015 19:26:37','-20,6', 'RA02');
execute insertartiradas('RA0242012,8441782407', '8', '08/01/2015 20:15:37','-22', 'RA02');
execute insertartiradas('RA0242012,9779050926', '35', '08/01/2015 23:28:11','-15,1', 'RA02');
execute insertartiradas('RA0242013,0215509259', '24', '09/01/2015 00:31:02','19,3', 'RA02');
execute insertartiradas('RA0242013,8389699074', '6', '09/01/2015 20:08:07','-16,8', 'RA02');
execute insertartiradas('RA0242013,8569907407', '30', '09/01/2015 20:34:04','-12,5', 'RA02');
execute insertartiradas('RA0242014,0440972222', '33', '10/01/2015 01:03:30','18,1', 'RA02');
execute insertartiradas('RA0242014,0587615741', '2', '10/01/2015 01:24:37','12,9', 'RA02');
execute insertartiradas('RA0242014,8727893519', '20', '10/01/2015 20:56:49','16,3', 'RA02');
execute insertartiradas('RA0242014,9249652777', '13', '10/01/2015 22:11:57','17,8', 'RA02');
execute insertartiradas('RA0242014,934537037', '22', '10/01/2015 22:25:44','-19,1', 'RA02');
execute insertartiradas('RA0242014,9370717593', '17', '10/01/2015 22:29:23','21,1', 'RA02');
execute insertartiradas('RA0242014,9450925926', '19', '10/01/2015 22:40:56','-15,5', 'RA02');
execute insertartiradas('RA0242015,8314930556', '23', '11/01/2015 19:57:21','20,2', 'RA02');
execute insertartiradas('RA0242015,9302546296', '29', '11/01/2015 22:19:34','-15,8', 'RA02');
execute insertartiradas('RA0242015,9439699074', '11', '11/01/2015 22:39:19','22,2', 'RA02');
execute insertartiradas('RA0242016,822025463', '5', '12/01/2015 19:43:43','-18,8', 'RA02');
execute insertartiradas('RA0242016,8394097222', '9', '12/01/2015 20:08:45','16,4', 'RA02');
execute insertartiradas('RA0242016,8598263889', '35', '12/01/2015 20:38:09','-17,2', 'RA02');
execute insertartiradas('RA0242016,8800115741', '7', '12/01/2015 21:07:13','18,7', 'RA02');
execute insertartiradas('RA0242017,1049537037', '5', '13/01/2015 02:31:08','16,3', 'RA02');
execute insertartiradas('RA0242017,9224537037', '9', '13/01/2015 22:08:20','-21,8', 'RA02');
execute insertartiradas('RA0242017,934849537', '30', '13/01/2015 22:26:11','-13,3', 'RA02');
execute insertartiradas('RA0242017,9387847222', '0', '13/01/2015 22:31:51','-15', 'RA02');
execute insertartiradas('RA0242018,0519675926', '14', '14/01/2015 01:14:50','-11,8', 'RA02');
execute insertartiradas('RA0242018,8236689815', '8', '14/01/2015 19:46:05','-18,7', 'RA02');
execute insertartiradas('RA0242018,8454861111', '0', '14/01/2015 20:17:30','18,2', 'RA02');
execute insertartiradas('RA0242018,8461111111', '34', '14/01/2015 20:18:24','-19', 'RA02');
execute insertartiradas('RA0242019,0138078704', '34', '15/01/2015 00:19:53','19,9', 'RA02');
execute insertartiradas('RA0242019,9586805556', '18', '15/01/2015 23:00:30','20,3', 'RA02');
execute insertartiradas('RA0242020,0340509259', '36', '16/01/2015 00:49:02','25', 'RA02');
execute insertartiradas('RA0242020,9900115741', '27', '16/01/2015 23:45:37','-22,1', 'RA02');
execute insertartiradas('RA0242021,0292824074', '16', '17/01/2015 00:42:10','-24,4', 'RA02');
execute insertartiradas('RA0242021,0796990741', '30', '17/01/2015 01:54:46','-22,3', 'RA02');
execute insertartiradas('RA0242021,1210185185', '32', '17/01/2015 02:54:16','-20,1', 'RA02');
execute insertartiradas('RA0242021,9095486111', '10', '17/01/2015 21:49:45','-19,5', 'RA02');
execute insertartiradas('RA0242021,9523958333', '22', '17/01/2015 22:51:27','19,3', 'RA02');
execute insertartiradas('RA0242021,9580439815', '34', '17/01/2015 22:59:35','17,7', 'RA02');
execute insertartiradas('RA0242021,9956828704', '21', '17/01/2015 23:53:47','17,1', 'RA02');
execute insertartiradas('RA0242022,8479282407', '12', '18/01/2015 20:21:01','20,8', 'RA02');
execute insertartiradas('RA0242022,9307523148', '27', '18/01/2015 22:20:17','20,5', 'RA02');
execute insertartiradas('RA0242023,8149305556', '2', '19/01/2015 19:33:30','-18,1', 'RA02');
execute insertartiradas('RA0242023,8347337963', '5', '19/01/2015 20:02:01','-19,3', 'RA02');
execute insertartiradas('RA0242023,8904398148', '25', '19/01/2015 21:22:14','17,8', 'RA02');
execute insertartiradas('RA0242023,9153587963', '36', '19/01/2015 21:58:07','-22,9', 'RA02');
execute insertartiradas('RA0242023,9524884259', '20', '19/01/2015 22:51:35','20,5', 'RA02');
execute insertartiradas('RA0242024,8359375', '11', '20/01/2015 20:03:45','16,6', 'RA02');
execute insertartiradas('RA0242024,8430902778', '19', '20/01/2015 20:14:03','14,2', 'RA02');
execute insertartiradas('RA0242024,8609259259', '33', '20/01/2015 20:39:44','-10,5', 'RA02');
execute insertartiradas('RA0242024,9409722222', '18', '20/01/2015 22:35:00','-15,3', 'RA02');
execute insertartiradas('RA0242024,9428009259', '0', '20/01/2015 22:37:38','17', 'RA02');
execute insertartiradas('RA0242024,9938773148', '1', '20/01/2015 23:51:11','16,7', 'RA02');
execute insertartiradas('RA0242024,9954398148', '14', '20/01/2015 23:53:26','-15,9', 'RA02');
execute insertartiradas('RA0242025,994525463', '33', '21/01/2015 23:52:07','20,6', 'RA02');
execute insertartiradas('RA0242026,8375810185', '4', '22/01/2015 20:06:07','19,6', 'RA02');
execute insertartiradas('RA0242026,8640393519', '3', '22/01/2015 20:44:13','-11', 'RA02');
execute insertartiradas('RA0242026,9147569444', '12', '22/01/2015 21:57:15','-19,8', 'RA02');
execute insertartiradas('RA0242026,9362037037', '31', '22/01/2015 22:28:08','14,7', 'RA02');
execute insertartiradas('RA0242026,9469212963', '9', '22/01/2015 22:43:34','16,4', 'RA02');
execute insertartiradas('RA0242026,9677546296', '6', '22/01/2015 23:13:34','26', 'RA02');
execute insertartiradas('RA0242027,0939236111', '5', '23/01/2015 02:15:15','19,3', 'RA02');
execute insertartiradas('RA0242027,8021875', '2', '23/01/2015 19:15:09','-13,6', 'RA02');
execute insertartiradas('RA0242027,8365393519', '9', '23/01/2015 20:04:37','-17,4', 'RA02');
execute insertartiradas('RA0242027,8406134259', '11', '23/01/2015 20:10:29','-19', 'RA02');
execute insertartiradas('RA0242027,9254976852', '7', '23/01/2015 22:12:43','20,7', 'RA02');
execute insertartiradas('RA0242027,9517476852', '25', '23/01/2015 22:50:31','13', 'RA02');
execute insertartiradas('RA0242027,9751273148', '13', '23/01/2015 23:24:11','19', 'RA02');
execute insertartiradas('RA0242028,0100578704', '18', '24/01/2015 00:14:29','-22,1', 'RA02');
execute insertartiradas('RA0242028,040775463', '34', '24/01/2015 00:58:43','-16,5', 'RA02');
execute insertartiradas('RA0242028,0730902778', '28', '24/01/2015 01:45:15','25', 'RA02');
execute insertartiradas('RA0242029,0543634259', '27', '25/01/2015 01:18:17','-15,2', 'RA02');
execute insertartiradas('RA0242029,9103125', '24', '25/01/2015 21:50:51','13,1', 'RA02');
execute insertartiradas('RA0242030,0194675926', '18', '26/01/2015 00:28:02','18,9', 'RA02');
execute insertartiradas('RA0242030,8181018519', '24', '26/01/2015 19:38:04','22,1', 'RA02');
execute insertartiradas('RA0242030,8184837963', '31', '26/01/2015 19:38:37','-18,7', 'RA02');
execute insertartiradas('RA0242030,8309722222', '31', '26/01/2015 19:56:36','-22,5', 'RA02');
execute insertartiradas('RA0242030,8420833333', '2', '26/01/2015 20:12:36','13,5', 'RA02');
execute insertartiradas('RA0242030,8956597222', '33', '26/01/2015 21:29:45','17,3', 'RA02');
execute insertartiradas('RA0242030,8980439815', '18', '26/01/2015 21:33:11','-17', 'RA02');
execute insertartiradas('RA0242030,9013541667', '11', '26/01/2015 21:37:57','14,7', 'RA02');
execute insertartiradas('RA0242031,8622453704', '32', '27/01/2015 20:41:38','-15,7', 'RA02');
execute insertartiradas('RA0242031,9673611111', '23', '27/01/2015 23:13:00','19,8', 'RA02');
execute insertartiradas('RA0242031,983900463', '4', '27/01/2015 23:36:49','16,3', 'RA02');
execute insertartiradas('RA0242031,9939814815', '27', '27/01/2015 23:51:20','-15,8', 'RA02');
execute insertartiradas('RA0242032,8807407407', '17', '28/01/2015 21:08:16','15,1', 'RA02');
execute insertartiradas('RA0242032,9194907407', '29', '28/01/2015 22:04:04','22,9', 'RA02');
execute insertartiradas('RA0242032,9227314815', '8', '28/01/2015 22:08:44','24', 'RA02');
execute insertartiradas('RA0242033,0522569444', '26', '29/01/2015 01:15:15','-18,4', 'RA02');
execute insertartiradas('RA0242033,9013425926', '12', '29/01/2015 21:37:56','-18,5', 'RA02');
execute insertartiradas('RA0242033,9077430556', '34', '29/01/2015 21:47:09','-18,7', 'RA02');
execute insertartiradas('RA0242033,9086111111', '15', '29/01/2015 21:48:24','20,2', 'RA02');
execute insertartiradas('RA0242033,9471875', '10', '29/01/2015 22:43:57','14,4', 'RA02');
execute insertartiradas('RA0242033,9737962963', '19', '29/01/2015 23:22:16','-18,5', 'RA02');
execute insertartiradas('RA0242033,9757175926', '23', '29/01/2015 23:25:02','21', 'RA02');
execute insertartiradas('RA0242034,0843287037', '19', '30/01/2015 02:01:26','-18,3', 'RA02');
execute insertartiradas('RA0242034,8073726852', '4', '30/01/2015 19:22:37','-18,5', 'RA02');
execute insertartiradas('RA0242034,8427430556', '7', '30/01/2015 20:13:33','-19,9', 'RA02');
execute insertartiradas('RA0242034,9163773148', '21', '30/01/2015 21:59:35','-13,8', 'RA02');
execute insertartiradas('RA0242035,0258217593', '23', '31/01/2015 00:37:11','18,1', 'RA02');
execute insertartiradas('RA0242035,806099537', '3', '31/01/2015 19:20:47','-11,4', 'RA02');
execute insertartiradas('RA0242035,8478819444', '25', '31/01/2015 20:20:57','14,8', 'RA02');
execute insertartiradas('RA0242035,9110763889', '25', '31/01/2015 21:51:57','17,9', 'RA02');
execute insertartiradas('RA0242035,9143634259', '21', '31/01/2015 21:56:41','-16,5', 'RA02');
execute insertartiradas('RA0242035,953900463', '13', '31/01/2015 22:53:37','11', 'RA02');
execute insertartiradas('RA0242035,9786342593', '11', '31/01/2015 23:29:14','21,1', 'RA02');
execute insertartiradas('RA0242036,8979861111', '21', '01/02/2015 21:33:06','-12,5', 'RA02');
execute insertartiradas('RA0242036,9821180556', '11', '01/02/2015 23:34:15','12,6', 'RA02');
execute insertartiradas('RA0242037,832037037', '15', '02/02/2015 19:58:08','16,9', 'RA02');
execute insertartiradas('RA0242038,9542824074', '31', '03/02/2015 22:54:10','15,3', 'RA02');
execute insertartiradas('RA0242039,0561111111', '5', '04/02/2015 01:20:48','-11,9', 'RA02');
execute insertartiradas('RA0242039,8964699074', '25', '04/02/2015 21:30:55','-15,6', 'RA02');
execute insertartiradas('RA0242039,9213657407', '16', '04/02/2015 22:06:46','17,7', 'RA02');
execute insertartiradas('RA0242039,9540740741', '11', '04/02/2015 22:53:52','-26,8', 'RA02');
execute insertartiradas('RA0242039,9556712963', '27', '04/02/2015 22:56:10','24,7', 'RA02');
execute insertartiradas('RA0242039,9623842593', '28', '04/02/2015 23:05:50','-23,2', 'RA02');
execute insertartiradas('RA0242039,9646990741', '27', '04/02/2015 23:09:10','-19,1', 'RA02');
execute insertartiradas('RA0242040,8598726852', '16', '05/02/2015 20:38:13','-11,4', 'RA02');
execute insertartiradas('RA0242040,9230439815', '7', '05/02/2015 22:09:11','-15,2', 'RA02');
execute insertartiradas('RA0242040,9632523148', '26', '05/02/2015 23:07:05','14,2', 'RA02');
execute insertartiradas('RA0242041,0395138889', '4', '06/02/2015 00:56:54','-15,5', 'RA02');
execute insertartiradas('RA0242041,8273148148', '10', '06/02/2015 19:51:20','-19,4', 'RA02');
execute insertartiradas('RA0242041,8509490741', '18', '06/02/2015 20:25:22','-12', 'RA02');
execute insertartiradas('RA0242041,8528819444', '29', '06/02/2015 20:28:09','-13,2', 'RA02');
execute insertartiradas('RA0242041,8945486111', '35', '06/02/2015 21:28:09','-18,2', 'RA02');
execute insertartiradas('RA0242042,017662037', '15', '07/02/2015 00:25:26','12,6', 'RA02');
execute insertartiradas('RA0242042,0297337963', '15', '07/02/2015 00:42:49','-15,5', 'RA02');
execute insertartiradas('RA0242042,0791435185', '3', '07/02/2015 01:53:58','17,9', 'RA02');
execute insertartiradas('RA0242042,8912037037', '31', '07/02/2015 21:23:20','-18,1', 'RA02');
execute insertartiradas('RA0242042,917650463', '14', '07/02/2015 22:01:25','-18', 'RA02');
execute insertartiradas('RA0242042,9304050926', '4', '07/02/2015 22:19:47','18,3', 'RA02');
execute insertartiradas('RA0242042,9375347222', '10', '07/02/2015 22:30:03','24,6', 'RA02');
execute insertartiradas('RA0242043,0573958333', '17', '08/02/2015 01:22:39','-17,4', 'RA02');
execute insertartiradas('RA0242043,8708564815', '8', '08/02/2015 20:54:02','-12,9', 'RA02');
execute insertartiradas('RA0242043,871724537', '35', '08/02/2015 20:55:17','16,7', 'RA02');
execute insertartiradas('RA0242043,8734143519', '15', '08/02/2015 20:57:43','13,9', 'RA02');
execute insertartiradas('RA0242044,1147222222', '9', '09/02/2015 02:45:12','13,2', 'RA02');
execute insertartiradas('RA0242044,8357523148', '31', '09/02/2015 20:03:29','-17,4', 'RA02');
execute insertartiradas('RA0242044,8509837963', '7', '09/02/2015 20:25:25','-14,9', 'RA02');
execute insertartiradas('RA0242044,8845486111', '14', '09/02/2015 21:13:45','22,2', 'RA02');
execute insertartiradas('RA0242044,8957986111', '9', '09/02/2015 21:29:57','-15,8', 'RA02');
execute insertartiradas('RA0242044,9393865741', '31', '09/02/2015 22:32:43','18,7', 'RA02');
execute insertartiradas('RA0242044,9511574074', '12', '09/02/2015 22:49:40','15,7', 'RA02');
execute insertartiradas('RA0242045,8447685185', '25', '10/02/2015 20:16:28','-11', 'RA02');
execute insertartiradas('RA0242045,877974537', '17', '10/02/2015 21:04:17','20,6', 'RA02');
execute insertartiradas('RA0242045,9526273148', '1', '10/02/2015 22:51:47','-14', 'RA02');
execute insertartiradas('RA0242046,092650463', '23', '11/02/2015 02:13:25','10,9', 'RA02');
execute insertartiradas('RA0242046,8444675926', '15', '11/02/2015 20:16:02','14,2', 'RA02');
execute insertartiradas('RA0242046,8738310185', '18', '11/02/2015 20:58:19','14,5', 'RA02');
execute insertartiradas('RA0242046,9326041667', '36', '11/02/2015 22:22:57','19,3', 'RA02');
execute insertartiradas('RA0242047,0528125', '19', '12/02/2015 01:16:03','-11', 'RA02');
execute insertartiradas('RA0242047,8204976852', '33', '12/02/2015 19:41:31','15,5', 'RA02');
execute insertartiradas('RA0242047,9365162037', '36', '12/02/2015 22:28:35','-19,4', 'RA02');
execute insertartiradas('RA0242047,9586921296', '35', '12/02/2015 23:00:31','19,3', 'RA02');
execute insertartiradas('RA0242047,9750462963', '33', '12/02/2015 23:24:04','20,9', 'RA02');
execute insertartiradas('RA0242048,0247800926', '1', '13/02/2015 00:35:41','22,2', 'RA02');
execute insertartiradas('RA0242048,0413888889', '30', '13/02/2015 00:59:36','-21,1', 'RA02');
execute insertartiradas('RA0242048,8584953704', '21', '13/02/2015 20:36:14','17,6', 'RA02');
execute insertartiradas('RA0242048,9083912037', '4', '13/02/2015 21:48:05','16', 'RA02');
execute insertartiradas('RA0242048,9407638889', '19', '13/02/2015 22:34:42','-15,1', 'RA02');
execute insertartiradas('RA0242048,9455555556', '28', '13/02/2015 22:41:36','-12,7', 'RA02');
execute insertartiradas('RA0242049,0828240741', '30', '14/02/2015 01:59:16','-19,1', 'RA02');
execute insertartiradas('RA0242049,8960069444', '31', '14/02/2015 21:30:15','-17,6', 'RA02');
execute insertartiradas('RA0242050,8889467593', '7', '15/02/2015 21:20:05','18,7', 'RA02');
execute insertartiradas('RA0242050,9878587963', '29', '15/02/2015 23:42:31','-17,3', 'RA02');
execute insertartiradas('RA0242051,8140509259', '10', '16/02/2015 19:32:14','-13,8', 'RA02');
execute insertartiradas('RA0242051,819375', '20', '16/02/2015 19:39:54','-16,1', 'RA02');
execute insertartiradas('RA0242051,8534837963', '35', '16/02/2015 20:29:01','-18,3', 'RA02');
execute insertartiradas('RA0242051,9012152778', '12', '16/02/2015 21:37:45','-17,5', 'RA02');
execute insertartiradas('RA0242051,9490393518', '25', '16/02/2015 22:46:37','17,8', 'RA02');
execute insertartiradas('RA0242053,0143055556', '21', '18/02/2015 00:20:36','17,7', 'RA02');
execute insertartiradas('RA0242053,0256018518', '4', '18/02/2015 00:36:52','12,3', 'RA02');
execute insertartiradas('RA0242053,9032175926', '12', '18/02/2015 21:40:38','14,6', 'RA02');
execute insertartiradas('RA0242053,9064930556', '4', '18/02/2015 21:45:21','-16,9', 'RA02');
execute insertartiradas('RA0242054,0238425926', '6', '19/02/2015 00:34:20','-14,8', 'RA02');
execute insertartiradas('RA0242054,8618634259', '2', '19/02/2015 20:41:05','-23,4', 'RA02');
execute insertartiradas('RA0242055,8418634259', '21', '20/02/2015 20:12:17','-14,3', 'RA02');
execute insertartiradas('RA0242056,8556944444', '29', '21/02/2015 20:32:12','20,7', 'RA02');
execute insertartiradas('RA0242056,8782638889', '36', '21/02/2015 21:04:42','17,9', 'RA02');
execute insertartiradas('RA0242056,9539351852', '17', '21/02/2015 22:53:40','17,7', 'RA02');
execute insertartiradas('RA0242057,0565162037', '22', '22/02/2015 01:21:23','14,3', 'RA02');
execute insertartiradas('RA0242057,134375', '23', '22/02/2015 03:13:30','18,5', 'RA02');
execute insertartiradas('RA0242058,0401388889', '26', '23/02/2015 00:57:48','14,2', 'RA02');
execute insertartiradas('RA0242058,1310763889', '10', '23/02/2015 03:08:45','-12,6', 'RA02');
execute insertartiradas('RA0242058,8197800926', '6', '23/02/2015 19:40:29','19', 'RA02');
execute insertartiradas('RA0242058,8280092593', '21', '23/02/2015 19:52:20','-17,5', 'RA02');
execute insertartiradas('RA0242058,8423958333', '34', '23/02/2015 20:13:03','17', 'RA02');
execute insertartiradas('RA0242058,8527546296', '28', '23/02/2015 20:27:58','-15', 'RA02');
execute insertartiradas('RA0242058,8882638888', '35', '23/02/2015 21:19:06','15,3', 'RA02');
execute insertartiradas('RA0242060,8681481481', '0', '25/02/2015 20:50:08','-18,2', 'RA02');
execute insertartiradas('RA0242061,8679513889', '30', '26/02/2015 20:49:51','-17', 'RA02');
execute insertartiradas('RA0242061,8783333333', '9', '26/02/2015 21:04:48','19,3', 'RA02');
execute insertartiradas('RA0242062,0086574074', '13', '27/02/2015 00:12:28','17', 'RA02');
execute insertartiradas('RA0242062,0194212963', '3', '27/02/2015 00:27:58','19,1', 'RA02');
execute insertartiradas('RA0242062,0473148148', '13', '27/02/2015 01:08:08','-20,1', 'RA02');
execute insertartiradas('RA0242062,8159490741', '16', '27/02/2015 19:34:58','-14,7', 'RA02');
execute insertartiradas('RA0242062,8370833333', '4', '27/02/2015 20:05:24','17,2', 'RA02');
execute insertartiradas('RA0242062,8413194444', '9', '27/02/2015 20:11:30','17,9', 'RA02');
execute insertartiradas('RA0242062,9209606481', '29', '27/02/2015 22:06:11','-13,5', 'RA02');
execute insertartiradas('RA0242062,9446875', '19', '27/02/2015 22:40:21','-11,2', 'RA02');
execute insertartiradas('RA0242062,9495717593', '4', '27/02/2015 22:47:23','15', 'RA02');
execute insertartiradas('RA0242062,9578125', '0', '27/02/2015 22:59:15','-16,6', 'RA02');
execute insertartiradas('RA0242063,8197685185', '33', '28/02/2015 19:40:28','17,1', 'RA02');
execute insertartiradas('RA0242063,8589467593', '2', '28/02/2015 20:36:53','14,7', 'RA02');
execute insertartiradas('RA0242063,901712963', '8', '28/02/2015 21:38:28','-14,9', 'RA02');
execute insertartiradas('RA0242063,9736921296', '23', '28/02/2015 23:22:07','15,8', 'RA02');
execute insertartiradas('RA0242064,0791319444', '10', '01/03/2015 01:53:57','18,9', 'RA02');
execute insertartiradas('RA0242065,8196527778', '29', '02/03/2015 19:40:18','-19,1', 'RA02');
execute insertartiradas('RA0242065,8535416667', '31', '02/03/2015 20:29:06','16,8', 'RA02');
execute insertartiradas('RA0242065,9809953704', '10', '02/03/2015 23:32:38','-15,7', 'RA02');
execute insertartiradas('RA0242066,096875', '34', '03/03/2015 02:19:30','18,7', 'RA02');
execute insertartiradas('RA0242066,8566666667', '2', '03/03/2015 20:33:36','-17,8', 'RA02');
execute insertartiradas('RA0242066,8660648148', '29', '03/03/2015 20:47:08','17,6', 'RA02');
execute insertartiradas('RA0242067,0975694444', '13', '04/03/2015 02:20:30','16,9', 'RA02');
execute insertartiradas('RA0242067,8111921296', '1', '04/03/2015 19:28:07','-13,6', 'RA02');
execute insertartiradas('RA0242067,8310300926', '27', '04/03/2015 19:56:41','-13,4', 'RA02');
execute insertartiradas('RA0242067,8320486111', '7', '04/03/2015 19:58:09','12,6', 'RA02');
execute insertartiradas('RA0242067,8350925926', '8', '04/03/2015 20:02:32','-16', 'RA02');
execute insertartiradas('RA0242067,8562152778', '31', '04/03/2015 20:32:57','-12,2', 'RA02');
execute insertartiradas('RA0242067,8843981481', '30', '04/03/2015 21:13:32','23', 'RA02');
execute insertartiradas('RA0242068,8757986111', '6', '05/03/2015 21:01:09','23,2', 'RA02');
execute insertartiradas('RA0242070,0991782407', '17', '07/03/2015 02:22:49','-14,6', 'RA02');
execute insertartiradas('RA0242070,9340393519', '19', '07/03/2015 22:25:01','-14,6', 'RA02');
execute insertartiradas('RA0242070,9352546296', '27', '07/03/2015 22:26:46','21', 'RA02');
execute insertartiradas('RA0242071,0436574074', '6', '08/03/2015 01:02:52','-15,3', 'RA02');
execute insertartiradas('RA0242071,0798032407', '16', '08/03/2015 01:54:55','-16,7', 'RA02');
execute insertartiradas('RA0242071,9009722222', '22', '08/03/2015 21:37:24','-16,9', 'RA02');
execute insertartiradas('RA0242071,9136226852', '27', '08/03/2015 21:55:37','-16,9', 'RA02');
execute insertartiradas('RA0242071,9416087963', '0', '08/03/2015 22:35:55','-16,8', 'RA02');
execute insertartiradas('RA0242072,8110648148', '2', '09/03/2015 19:27:56','11,3', 'RA02');
execute insertartiradas('RA0242072,8422337963', '18', '09/03/2015 20:12:49','-17,3', 'RA02');
execute insertartiradas('RA0242072,8731018519', '23', '09/03/2015 20:57:16','14', 'RA02');
execute insertartiradas('RA0242073,9314699074', '4', '10/03/2015 22:21:19','18,8', 'RA02');
execute insertartiradas('RA0242073,937662037', '18', '10/03/2015 22:30:14','18,5', 'RA02');
execute insertartiradas('RA0242074,848275463', '10', '11/03/2015 20:21:31','19,2', 'RA02');
execute insertartiradas('RA0242074,8536458333', '18', '11/03/2015 20:29:15','-15,2', 'RA02');
execute insertartiradas('RA0242074,8564814815', '10', '11/03/2015 20:33:20','-12,7', 'RA02');
execute insertartiradas('RA0242074,9691782407', '10', '11/03/2015 23:15:37','16,1', 'RA02');
execute insertartiradas('RA0242075,0313425926', '11', '12/03/2015 00:45:08','-12,2', 'RA02');
execute insertartiradas('RA0242075,8445717593', '36', '12/03/2015 20:16:11','-15,6', 'RA02');
execute insertartiradas('RA0242075,8833912037', '12', '12/03/2015 21:12:05','-19,6', 'RA02');
execute insertartiradas('RA0242075,9476388889', '12', '12/03/2015 22:44:36','17,7', 'RA02');
execute insertartiradas('RA0242075,9927546296', '26', '12/03/2015 23:49:34','-20,3', 'RA02');
execute insertartiradas('RA0242075,9945601852', '6', '12/03/2015 23:52:10','-18,8', 'RA02');
execute insertartiradas('RA0242076,0387037037', '33', '13/03/2015 00:55:44','18', 'RA02');
execute insertartiradas('RA0242076,8335300926', '29', '13/03/2015 20:00:17','-15,4', 'RA02');
execute insertartiradas('RA0242076,8373032407', '2', '13/03/2015 20:05:43','-16,2', 'RA02');
execute insertartiradas('RA0242076,8739583333', '22', '13/03/2015 20:58:30','-18,3', 'RA02');
execute insertartiradas('RA0242076,8787615741', '17', '13/03/2015 21:05:25','-19,1', 'RA02');
execute insertartiradas('RA0242076,890324074', '17', '13/03/2015 21:22:04','-18,2', 'RA02');
execute insertartiradas('RA0242076,970787037', '17', '13/03/2015 23:17:56','-15,4', 'RA02');
execute insertartiradas('RA0242076,9993171296', '36', '13/03/2015 23:59:01','18,4', 'RA02');
execute insertartiradas('RA0242077,0003819444', '17', '14/03/2015 00:00:33','-16,4', 'RA02');
execute insertartiradas('RA0242077,0790856481', '0', '14/03/2015 01:53:53','-21,5', 'RA02');
execute insertartiradas('RA0242077,8524189815', '35', '14/03/2015 20:27:29','16,5', 'RA02');
execute insertartiradas('RA0242077,8698726852', '2', '14/03/2015 20:52:37','18,8', 'RA02');
execute insertartiradas('RA0242077,9808449074', '17', '14/03/2015 23:32:25','16,1', 'RA02');
execute insertartiradas('RA0242077,9877083333', '33', '14/03/2015 23:42:18','15,7', 'RA02');
execute insertartiradas('RA0242077,9902199074', '36', '14/03/2015 23:45:55','-21,7', 'RA02');
execute insertartiradas('RA0242078,8237037037', '24', '15/03/2015 19:46:08','9,7', 'RA02');
execute insertartiradas('RA0242078,8636226852', '35', '15/03/2015 20:43:37','-15,3', 'RA02');
execute insertartiradas('RA0242078,8705555556', '36', '15/03/2015 20:53:36','-25,5', 'RA02');
execute insertartiradas('RA0242078,8884837963', '23', '15/03/2015 21:19:25','20,1', 'RA02');
execute insertartiradas('RA0242078,9867592593', '0', '15/03/2015 23:40:56','-25,9', 'RA02');
execute insertartiradas('RA0242078,9909259259', '17', '15/03/2015 23:46:56','-20,9', 'RA02');
execute insertartiradas('RA0242079,0585648148', '26', '16/03/2015 01:24:20','-17,1', 'RA02');
execute insertartiradas('RA0242079,8075462963', '20', '16/03/2015 19:22:52','17,5', 'RA02');
execute insertartiradas('RA0242079,8457986111', '31', '16/03/2015 20:17:57','-13,6', 'RA02');
execute insertartiradas('RA0242079,8482986111', '36', '16/03/2015 20:21:33','-14,8', 'RA02');
execute insertartiradas('RA0242079,9381365741', '20', '16/03/2015 22:30:55','18,3', 'RA02');
execute insertartiradas('RA0242079,9601851852', '0', '16/03/2015 23:02:40','25,7', 'RA02');
execute insertartiradas('RA0242080,8338194444', '30', '17/03/2015 20:00:42','21,7', 'RA02');
execute insertartiradas('RA0242080,8496064815', '27', '17/03/2015 20:23:26','21,7', 'RA02');
execute insertartiradas('RA0242080,9562731481', '17', '17/03/2015 22:57:02','16,5', 'RA02');
execute insertartiradas('RA0242080,9635185185', '1', '17/03/2015 23:07:28','18,2', 'RA02');
execute insertartiradas('RA0242080,9707291667', '5', '17/03/2015 23:17:51','-15,1', 'RA02');
execute insertartiradas('RA0242081,0366550926', '13', '18/03/2015 00:52:47','-19,8', 'RA02');
execute insertartiradas('RA0242081,0396412037', '32', '18/03/2015 00:57:05','17,3', 'RA02');
execute insertartiradas('RA0242081,9693287037', '3', '18/03/2015 23:15:50','-18,4', 'RA02');
execute insertartiradas('RA0242082,8289236111', '19', '19/03/2015 19:53:39','17', 'RA02');
execute insertartiradas('RA0242082,8513657407', '36', '19/03/2015 20:25:58','-23,3', 'RA02');
execute insertartiradas('RA0242082,9344560185', '6', '19/03/2015 22:25:37','16,5', 'RA02');
execute insertartiradas('RA0242082,9734606482', '8', '19/03/2015 23:21:47','-18', 'RA02');
execute insertartiradas('RA0242082,9851273148', '14', '19/03/2015 23:38:35','12', 'RA02');
execute insertartiradas('RA0242083,0243865741', '34', '20/03/2015 00:35:07','22,7', 'RA02');
execute insertartiradas('RA0242083,8491550926', '18', '20/03/2015 20:22:47','-16,1', 'RA02');
execute insertartiradas('RA0242083,9098842593', '28', '20/03/2015 21:50:14','-20,5', 'RA02');
execute insertartiradas('RA0242083,9869328704', '31', '20/03/2015 23:41:11','15,7', 'RA02');
execute insertartiradas('RA0242084,0153125', '24', '21/03/2015 00:22:03','20,6', 'RA02');
execute insertartiradas('RA0242084,8509953704', '24', '21/03/2015 20:25:26','12,6', 'RA02');
execute insertartiradas('RA0242084,8523032407', '31', '21/03/2015 20:27:19','14,2', 'RA02');
execute insertartiradas('RA0242085,029224537', '17', '22/03/2015 00:42:05','-12,2', 'RA02');
execute insertartiradas('RA0242085,1031365741', '17', '22/03/2015 02:28:31','-20,3', 'RA02');
execute insertartiradas('RA0242085,822962963', '0', '22/03/2015 19:45:04','16,3', 'RA02');
execute insertartiradas('RA0242085,8582407407', '3', '22/03/2015 20:35:52','13,7', 'RA02');
execute insertartiradas('RA0242085,920775463', '21', '22/03/2015 22:05:55','-16', 'RA02');
execute insertartiradas('RA0242085,9662847222', '21', '22/03/2015 23:11:27','-17,1', 'RA02');
execute insertartiradas('RA0242085,9675347222', '32', '22/03/2015 23:13:15','-15,1', 'RA02');
execute insertartiradas('RA0242086,8414467593', '28', '23/03/2015 20:11:41','-13,6', 'RA02');
execute insertartiradas('RA0242087,0119097222', '28', '24/03/2015 00:17:09','15,8', 'RA02');
execute insertartiradas('RA0242087,1015162037', '28', '24/03/2015 02:26:11','-13,1', 'RA02');
execute insertartiradas('RA0242087,9258333333', '12', '24/03/2015 22:13:12','16,3', 'RA02');
execute insertartiradas('RA0242087,9307060185', '0', '24/03/2015 22:20:13','15,6', 'RA02');
execute insertartiradas('RA0242087,9348958333', '19', '24/03/2015 22:26:15','-11,8', 'RA02');
execute insertartiradas('RA0242087,948912037', '15', '24/03/2015 22:46:26','20,3', 'RA02');
execute insertartiradas('RA0242088,0138425926', '22', '25/03/2015 00:19:56','18,8', 'RA02');
execute insertartiradas('RA0242088,8788657407', '22', '25/03/2015 21:05:34','-14,7', 'RA02');
execute insertartiradas('RA0242088,8914699074', '35', '25/03/2015 21:23:43','19,7', 'RA02');
execute insertartiradas('RA0242088,9429050926', '29', '25/03/2015 22:37:47','19,9', 'RA02');
execute insertartiradas('RA0242089,0585532407', '29', '26/03/2015 01:24:19','-16', 'RA02');
execute insertartiradas('RA0242089,9136111111', '16', '26/03/2015 21:55:36','19,2', 'RA02');
execute insertartiradas('RA0242089,9958333333', '1', '26/03/2015 23:54:00','-17,7', 'RA02');
execute insertartiradas('RA0242090,0400694444', '10', '27/03/2015 00:57:42','16,4', 'RA02');
execute insertartiradas('RA0242090,0554282407', '5', '27/03/2015 01:19:49','-16,9', 'RA02');
execute insertartiradas('RA0242090,8564583333', '12', '27/03/2015 20:33:18','-16,3', 'RA02');
execute insertartiradas('RA0242090,8681134259', '19', '27/03/2015 20:50:05','-19,6', 'RA02');
execute insertartiradas('RA0242091,9278587963', '11', '28/03/2015 22:16:07','-18,6', 'RA02');
execute insertartiradas('RA0242091,9297453704', '9', '28/03/2015 22:18:50','-21,5', 'RA02');
execute insertartiradas('RA0242091,9425578704', '29', '28/03/2015 22:37:17','18,9', 'RA02');
execute insertartiradas('RA0242092,0126388889', '3', '29/03/2015 00:18:12','-13,2', 'RA02');
execute insertartiradas('RA0242092,0408912037', '10', '29/03/2015 00:58:53','-13,7', 'RA02');
execute insertartiradas('RA0242092,8423032407', '17', '29/03/2015 20:12:55','-25,4', 'RA02');
execute insertartiradas('RA0242092,8476157407', '27', '29/03/2015 20:20:34','20,7', 'RA02');
execute insertartiradas('RA0242092,8670601852', '2', '29/03/2015 20:48:34','16,7', 'RA02');
execute insertartiradas('RA0242093,7902662037', '26', '30/03/2015 18:57:59','15,3', 'RA02');
execute insertartiradas('RA0242094,0934606481', '1', '31/03/2015 02:14:35','20,3', 'RA02');
execute insertartiradas('RA0242094,0981597222', '4', '31/03/2015 02:21:21','19,5', 'RA02');
execute insertartiradas('RA0242094,8545949074', '4', '31/03/2015 20:30:37','19,9', 'RA02');
execute insertartiradas('RA0242095,0529166667', '1', '01/04/2015 01:16:12','-20,9', 'RA02');
execute insertartiradas('RA0242095,8726041667', '6', '01/04/2015 20:56:33','-14,8', 'RA02');
execute insertartiradas('RA0242095,9870949074', '27', '01/04/2015 23:41:25','-16', 'RA02');
execute insertartiradas('RA0242096,0291203704', '8', '02/04/2015 00:41:56','17,5', 'RA02');
execute insertartiradas('RA0242096,9932407407', '8', '02/04/2015 23:50:16','18,9', 'RA02');
execute insertartiradas('RA0242097,0541666667', '20', '03/04/2015 01:18:00','17,2', 'RA02');
execute insertartiradas('RA0242097,8401157407', '12', '03/04/2015 20:09:46','-11,9', 'RA02');
execute insertartiradas('RA0242097,8953009259', '27', '03/04/2015 21:29:14','15,5', 'RA02');
execute insertartiradas('RA0242098,040462963', '12', '04/04/2015 00:58:16','15,7', 'RA02');
execute insertartiradas('RA0242098,7773263889', '14', '04/04/2015 18:39:21','19,3', 'RA02');
execute insertartiradas('RA0242098,794537037', '30', '04/04/2015 19:04:08','19,6', 'RA02');
execute insertartiradas('RA0242098,8338425926', '12', '04/04/2015 20:00:44','-13,6', 'RA02');
execute insertartiradas('RA0242098,8497685185', '36', '04/04/2015 20:23:40','-17', 'RA02');
execute insertartiradas('RA0242098,8554861111', '23', '04/04/2015 20:31:54','-22,8', 'RA02');
execute insertartiradas('RA0242098,9619560185', '10', '04/04/2015 23:05:13','22,8', 'RA02');
execute insertartiradas('RA0242099,8819328704', '0', '05/04/2015 21:09:59','-16,2', 'RA02');
execute insertartiradas('RA0242100,0561921296', '29', '06/04/2015 01:20:55','16,1', 'RA02');
execute insertartiradas('RA0242100,0572685185', '16', '06/04/2015 01:22:28','-15,6', 'RA02');
execute insertartiradas('RA0242100,8552546296', '29', '06/04/2015 20:31:34','20', 'RA02');
execute insertartiradas('RA0242101,7891898148', '33', '07/04/2015 18:56:26','-16,7', 'RA02');
execute insertartiradas('RA0242101,8050231481', '12', '07/04/2015 19:19:14','22,5', 'RA02');
execute insertartiradas('RA0242101,808900463', '13', '07/04/2015 19:24:49','-21,1', 'RA02');
execute insertartiradas('RA0242101,8375578704', '17', '07/04/2015 20:06:05','18,1', 'RA02');
execute insertartiradas('RA0242101,8750347222', '34', '07/04/2015 21:00:03','13,9', 'RA02');
execute insertartiradas('RA0242101,9823842593', '12', '07/04/2015 23:34:38','-20,3', 'RA02');
execute insertartiradas('RA0242102,8074768518', '36', '08/04/2015 19:22:46','-12,7', 'RA02');
execute insertartiradas('RA0242102,8340046296', '1', '08/04/2015 20:00:58','18', 'RA02');
execute insertartiradas('RA0242102,8665277778', '10', '08/04/2015 20:47:48','12,2', 'RA02');
execute insertartiradas('RA0242102,8910648148', '33', '08/04/2015 21:23:08','-13', 'RA02');
execute insertartiradas('RA0242103,1187037037', '26', '09/04/2015 02:50:56','20,6', 'RA02');
execute insertartiradas('RA0242103,7922222222', '10', '09/04/2015 19:00:48','16,4', 'RA02');
execute insertartiradas('RA0242103,8119097222', '29', '09/04/2015 19:29:09','-14,2', 'RA02');
execute insertartiradas('RA0242103,8196412037', '24', '09/04/2015 19:40:17','16,3', 'RA02');
execute insertartiradas('RA0242103,8242013889', '36', '09/04/2015 19:46:51','17,4', 'RA02');
execute insertartiradas('RA0242103,8404976852', '9', '09/04/2015 20:10:19','-17,8', 'RA02');
execute insertartiradas('RA0242103,8876967593', '25', '09/04/2015 21:18:17','-18,9', 'RA02');
execute insertartiradas('RA0242103,9724305556', '35', '09/04/2015 23:20:18','17,3', 'RA02');
execute insertartiradas('RA0242103,9732060185', '35', '09/04/2015 23:21:25','-15,3', 'RA02');
execute insertartiradas('RA0242104,0707638889', '33', '10/04/2015 01:41:54','19,3', 'RA02');
execute insertartiradas('RA0242104,7989467593', '33', '10/04/2015 19:10:29','16,2', 'RA02');
execute insertartiradas('RA0242104,8148032407', '26', '10/04/2015 19:33:19','17', 'RA02');
execute insertartiradas('RA0242104,8412268519', '6', '10/04/2015 20:11:22','12,8', 'RA02');
execute insertartiradas('RA0242104,9065856481', '21', '10/04/2015 21:45:29','-18,2', 'RA02');
execute insertartiradas('RA0242104,9332986111', '26', '10/04/2015 22:23:57','-16,9', 'RA02');
execute insertartiradas('RA0242104,9405787037', '24', '10/04/2015 22:34:26','-17,3', 'RA02');
execute insertartiradas('RA0242105,8253703704', '17', '11/04/2015 19:48:32','-17,2', 'RA02');
execute insertartiradas('RA0242105,8907175926', '9', '11/04/2015 21:22:38','-19,3', 'RA02');
execute insertartiradas('RA0242105,9057175926', '1', '11/04/2015 21:44:14','15,6', 'RA02');
execute insertartiradas('RA0242105,953125', '22', '11/04/2015 22:52:30','-17,7', 'RA02');
execute insertartiradas('RA0242106,0870601852', '6', '12/04/2015 02:05:22','16,1', 'RA02');
execute insertartiradas('RA0242106,8150347222', '33', '12/04/2015 19:33:39','17,1', 'RA02');
execute insertartiradas('RA0242106,8492708333', '36', '12/04/2015 20:22:57','-14,4', 'RA02');
execute insertartiradas('RA0242106,8531365741', '24', '12/04/2015 20:28:31','17,9', 'RA02');
execute insertartiradas('RA0242106,8755092593', '6', '12/04/2015 21:00:44','17,4', 'RA02');
execute insertartiradas('RA0242106,8788888889', '29', '12/04/2015 21:05:36','18,6', 'RA02');
execute insertartiradas('RA0242106,8973032407', '9', '12/04/2015 21:32:07','16,9', 'RA02');
execute insertartiradas('RA0242107,0510300926', '21', '13/04/2015 01:13:29','-16,6', 'RA02');
execute insertartiradas('RA0242107,7672800926', '21', '13/04/2015 18:24:53','16,5', 'RA02');
execute insertartiradas('RA0242107,7972453704', '33', '13/04/2015 19:08:02','-18,5', 'RA02');
execute insertartiradas('RA0242107,8131134259', '6', '13/04/2015 19:30:53','17,3', 'RA02');
execute insertartiradas('RA0242107,8200462963', '15', '13/04/2015 19:40:52','-13,1', 'RA02');
execute insertartiradas('RA0242107,8306018518', '34', '13/04/2015 19:56:04','-22,8', 'RA02');
execute insertartiradas('RA0242107,8412731482', '13', '13/04/2015 20:11:26','-17,8', 'RA02');
execute insertartiradas('RA0242107,934212963', '27', '13/04/2015 22:25:16','-19,1', 'RA02');
execute insertartiradas('RA0242108,7930902778', '13', '14/04/2015 19:02:03','19,2', 'RA02');
execute insertartiradas('RA0242108,8760069444', '31', '14/04/2015 21:01:27','21,2', 'RA02');
execute insertartiradas('RA0242108,9699652778', '35', '14/04/2015 23:16:45','18,6', 'RA02');
execute insertartiradas('RA0242109,0537731481', '34', '15/04/2015 01:17:26','20,7', 'RA02');
execute insertartiradas('RA0242109,8261111111', '2', '15/04/2015 19:49:36','-15,7', 'RA02');
execute insertartiradas('RA0242109,8808333333', '15', '15/04/2015 21:08:24','-18', 'RA02');
execute insertartiradas('RA0242109,9607523148', '15', '15/04/2015 23:03:29','13,1', 'RA02');
execute insertartiradas('RA0242109,9828240741', '29', '15/04/2015 23:35:16','-17,9', 'RA02');
execute insertartiradas('RA0242110,0553009259', '23', '16/04/2015 01:19:38','-19,9', 'RA02');
execute insertartiradas('RA0242110,7828935185', '27', '16/04/2015 18:47:22','20,9', 'RA02');
execute insertartiradas('RA0242110,7883912037', '21', '16/04/2015 18:55:17','-20,3', 'RA02');
execute insertartiradas('RA0242110,8080208333', '16', '16/04/2015 19:23:33','-13,9', 'RA02');
execute insertartiradas('RA0242110,816087963', '21', '16/04/2015 19:35:10','-14,6', 'RA02');
execute insertartiradas('RA0242110,8366898148', '11', '16/04/2015 20:04:50','18', 'RA02');
execute insertartiradas('RA0242110,8485185185', '24', '16/04/2015 20:21:52','15,6', 'RA02');
execute insertartiradas('RA0242110,8680671296', '31', '16/04/2015 20:50:01','-16,2', 'RA02');
execute insertartiradas('RA0242110,9276388889', '2', '16/04/2015 22:15:48','-18,3', 'RA02');
execute insertartiradas('RA0242110,9285185185', '2', '16/04/2015 22:17:04','17,4', 'RA02');
execute insertartiradas('RA0242110,9358217593', '17', '16/04/2015 22:27:35','17,2', 'RA02');
execute insertartiradas('RA0242110,9619328704', '10', '16/04/2015 23:05:11','16,6', 'RA02');
execute insertartiradas('RA0242111,0255439815', '4', '17/04/2015 00:36:47','15,8', 'RA02');
execute insertartiradas('RA0242111,0433680556', '18', '17/04/2015 01:02:27','-18', 'RA02');
execute insertartiradas('RA0242111,7790509259', '36', '17/04/2015 18:41:50','17,9', 'RA02');
execute insertartiradas('RA0242111,7890856481', '16', '17/04/2015 18:56:17','-16,5', 'RA02');
execute insertartiradas('RA0242111,7901388889', '13', '17/04/2015 18:57:48','18,1', 'RA02');
execute insertartiradas('RA0242111,810787037', '29', '17/04/2015 19:27:32','19,9', 'RA02');
execute insertartiradas('RA0242111,8154050926', '5', '17/04/2015 19:34:11','-17,5', 'RA02');
execute insertartiradas('RA0242111,8663194444', '20', '17/04/2015 20:47:30','21,4', 'RA02');
execute insertartiradas('RA0242111,9856018519', '18', '17/04/2015 23:39:16','-18,4', 'RA02');
execute insertartiradas('RA0242112,0376273148', '10', '18/04/2015 00:54:11','-17,4', 'RA02');
execute insertartiradas('RA0242112,8061458333', '10', '18/04/2015 19:20:51','-20,2', 'RA02');
execute insertartiradas('RA0242112,9174652778', '26', '18/04/2015 22:01:09','12,8', 'RA02');
execute insertartiradas('RA0242112,9510416667', '15', '18/04/2015 22:49:30','19,6', 'RA02');
execute insertartiradas('RA0242112,9685648148', '19', '18/04/2015 23:14:44','22,3', 'RA02');
execute insertartiradas('RA0242112,9796296296', '16', '18/04/2015 23:30:40','-8,2', 'RA02');
execute insertartiradas('RA0242113,0243171296', '4', '19/04/2015 00:35:01','19', 'RA02');
execute insertartiradas('RA0242113,9174884259', '21', '19/04/2015 22:01:11','-20', 'RA02');
execute insertartiradas('RA0242113,9414583333', '20', '19/04/2015 22:35:42','-11,9', 'RA02');
execute insertartiradas('RA0242114,0070949074', '11', '20/04/2015 00:10:13','-14,9', 'RA02');
execute insertartiradas('RA0242114,0155324074', '3', '20/04/2015 00:22:22','13,9', 'RA02');
execute insertartiradas('RA0242114,7661342593', '22', '20/04/2015 18:23:14','14,4', 'RA02');
execute insertartiradas('RA0242114,7782291667', '9', '20/04/2015 18:40:39','14,4', 'RA02');
execute insertartiradas('RA0242114,7892476852', '18', '20/04/2015 18:56:31','-12,4', 'RA02');
execute insertartiradas('RA0242114,7899537037', '9', '20/04/2015 18:57:32','16,5', 'RA02');
execute insertartiradas('RA0242114,8138425926', '12', '20/04/2015 19:31:56','-15,6', 'RA02');
execute insertartiradas('RA0242114,8195717593', '35', '20/04/2015 19:40:11','22,4', 'RA02');
execute insertartiradas('RA0242114,8220717593', '10', '20/04/2015 19:43:47','-16,1', 'RA02');
execute insertartiradas('RA0242114,8449305556', '16', '20/04/2015 20:16:42','-14,2', 'RA02');
execute insertartiradas('RA0242114,9213310185', '27', '20/04/2015 22:06:43','13,2', 'RA02');
execute insertartiradas('RA0242115,8018634259', '15', '21/04/2015 19:14:41','14,2', 'RA02');
execute insertartiradas('RA0242115,8256712963', '9', '21/04/2015 19:48:58','23', 'RA02');
execute insertartiradas('RA0242115,832650463', '0', '21/04/2015 19:59:01','-24,2', 'RA02');
execute insertartiradas('RA0242115,8998842593', '9', '21/04/2015 21:35:50','17,2', 'RA02');
execute insertartiradas('RA0242115,9499652778', '2', '21/04/2015 22:47:57','-16,5', 'RA02');
execute insertartiradas('RA0242115,9874884259', '19', '21/04/2015 23:41:59','22,6', 'RA02');
execute insertartiradas('RA0242115,996412037', '32', '21/04/2015 23:54:50','23,1', 'RA02');
execute insertartiradas('RA0242116,0923148148', '24', '22/04/2015 02:12:56','16,3', 'RA02');
execute insertartiradas('RA0242116,8030439815', '0', '22/04/2015 19:16:23','-14,6', 'RA02');
execute insertartiradas('RA0242116,9557523148', '36', '22/04/2015 22:56:17','16,2', 'RA02');
execute insertartiradas('RA0242116,9627893519', '14', '22/04/2015 23:06:25','-22,2', 'RA02');
execute insertartiradas('RA0242116,9851157407', '27', '22/04/2015 23:38:34','17,7', 'RA02');
execute insertartiradas('RA0242117,1201388889', '36', '23/04/2015 02:53:00','17,5', 'RA02');
execute insertartiradas('RA0242117,8325', '4', '23/04/2015 19:58:48','14,2', 'RA02');
execute insertartiradas('RA0242117,8431018519', '34', '23/04/2015 20:14:04','14,7', 'RA02');
execute insertartiradas('RA0242117,8481712962', '32', '23/04/2015 20:21:22','19,2', 'RA02');
execute insertartiradas('RA0242117,8506481481', '15', '23/04/2015 20:24:56','-14', 'RA02');
execute insertartiradas('RA0242117,9296412037', '17', '23/04/2015 22:18:41','16,6', 'RA02');
execute insertartiradas('RA0242117,9881944444', '7', '23/04/2015 23:43:00','19,9', 'RA02');
execute insertartiradas('RA0242118,0657407407', '6', '24/04/2015 01:34:40','18,3', 'RA02');
execute insertartiradas('RA0242118,8714351852', '29', '24/04/2015 20:54:52','-17,3', 'RA02');
execute insertartiradas('RA0242119,0430787037', '3', '25/04/2015 01:02:02','18,2', 'RA02');
execute insertartiradas('RA0242119,8143287037', '13', '25/04/2015 19:32:38','20,5', 'RA02');
execute insertartiradas('RA0242119,8526157407', '17', '25/04/2015 20:27:46','20,2', 'RA02');
execute insertartiradas('RA0242120,0627777778', '14', '26/04/2015 01:30:24','17,7', 'RA02');
execute insertartiradas('RA0242120,0803356481', '7', '26/04/2015 01:55:41','-22,4', 'RA02');
execute insertartiradas('RA0242120,7791087963', '32', '26/04/2015 18:41:55','-13,3', 'RA02');
execute insertartiradas('RA0242120,8247916667', '10', '26/04/2015 19:47:42','-15,6', 'RA02');
execute insertartiradas('RA0242120,8846180556', '33', '26/04/2015 21:13:51','-20,5', 'RA02');
execute insertartiradas('RA0242120,8865972222', '22', '26/04/2015 21:16:42','-15,7', 'RA02');
execute insertartiradas('RA0242120,9099421296', '26', '26/04/2015 21:50:19','19,8', 'RA02');
execute insertartiradas('RA0242120,931712963', '31', '26/04/2015 22:21:40','-13,1', 'RA02');
execute insertartiradas('RA0242120,9871527778', '1', '26/04/2015 23:41:30','-16,3', 'RA02');
execute insertartiradas('RA0242121,8171759259', '26', '27/04/2015 19:36:44','12,9', 'RA02');
execute insertartiradas('RA0242121,9327893518', '2', '27/04/2015 22:23:13','19,5', 'RA02');
execute insertartiradas('RA0242122,8265162037', '8', '28/04/2015 19:50:11','-15', 'RA02');
execute insertartiradas('RA0242122,864837963', '4', '28/04/2015 20:45:22','-13,3', 'RA02');
execute insertartiradas('RA0242123,7881134259', '4', '29/04/2015 18:54:53','19,7', 'RA02');
execute insertartiradas('RA0242123,7986921296', '5', '29/04/2015 19:10:07','19', 'RA02');
execute insertartiradas('RA0242123,8055902778', '7', '29/04/2015 19:20:03','18,8', 'RA02');
execute insertartiradas('RA0242123,8465393518', '16', '29/04/2015 20:19:01','-23,3', 'RA02');
execute insertartiradas('RA0242123,8870833333', '27', '29/04/2015 21:17:24','18,7', 'RA02');
execute insertartiradas('RA0242123,9666087963', '16', '29/04/2015 23:11:55','-18,8', 'RA02');
execute insertartiradas('RA0242124,8132638889', '12', '30/04/2015 19:31:06','-18,2', 'RA02');
execute insertartiradas('RA0242124,9258449074', '6', '30/04/2015 22:13:13','16,6', 'RA02');
execute insertartiradas('RA0242124,9386805556', '23', '30/04/2015 22:31:42','17,5', 'RA02');
execute insertartiradas('RA0242124,9425231482', '8', '30/04/2015 22:37:14','13,5', 'RA02');
execute insertartiradas('RA0242124,9569560185', '6', '30/04/2015 22:58:01','16,8', 'RA02');
execute insertartiradas('RA0242124,9776041667', '34', '30/04/2015 23:27:45','18,6', 'RA02');
execute insertartiradas('RA0242125,0776157407', '1', '01/05/2015 01:51:46','23', 'RA02');
execute insertartiradas('RA0242125,8031018519', '23', '01/05/2015 19:16:28','-13', 'RA02');
execute insertartiradas('RA0242125,8038194444', '2', '01/05/2015 19:17:30','16,6', 'RA02');
execute insertartiradas('RA0242125,8043634259', '25', '01/05/2015 19:18:17','-15,1', 'RA02');
execute insertartiradas('RA0242125,8050810185', '10', '01/05/2015 19:19:19','15,5', 'RA02');
execute insertartiradas('RA0242125,8057060185', '29', '01/05/2015 19:20:13','-15', 'RA02');
execute insertartiradas('RA0242125,8063310185', '10', '01/05/2015 19:21:07','15,4', 'RA02');
execute insertartiradas('RA0242125,8069328704', '11', '01/05/2015 19:21:59','-14,2', 'RA02');
execute insertartiradas('RA0242125,8075578704', '19', '01/05/2015 19:22:53','15,2', 'RA02');
execute insertartiradas('RA0242125,8084027778', '22', '01/05/2015 19:24:06','-12,4', 'RA02');
execute insertartiradas('RA0242125,809212963', '20', '01/05/2015 19:25:16','17,2', 'RA02');
execute insertartiradas('RA0242125,81', '5', '01/05/2015 19:26:24','-14', 'RA02');
execute insertartiradas('RA0242125,8108217593', '2', '01/05/2015 19:27:35','18,9', 'RA02');
execute insertartiradas('RA0242125,8114583333', '26', '01/05/2015 19:28:30','-14,2', 'RA02');
execute insertartiradas('RA0242125,8120949074', '20', '01/05/2015 19:29:25','15,1', 'RA02');
execute insertartiradas('RA0242125,8127777778', '9', '01/05/2015 19:30:24','-13,9', 'RA02');
execute insertartiradas('RA0242125,813587963', '12', '01/05/2015 19:31:34','14,6', 'RA02');
execute insertartiradas('RA0242125,8141319444', '5', '01/05/2015 19:32:21','-14', 'RA02');
execute insertartiradas('RA0242125,8151041667', '19', '01/05/2015 19:33:45','14,5', 'RA02');
execute insertartiradas('RA0242125,8159953704', '12', '01/05/2015 19:35:02','-13,9', 'RA02');
execute insertartiradas('RA0242125,8165625', '3', '01/05/2015 19:35:51','14,4', 'RA02');
execute insertartiradas('RA0242125,8176736111', '36', '01/05/2015 19:37:27','-14,1', 'RA02');
execute insertartiradas('RA0242125,8193634259', '13', '01/05/2015 19:39:53','13,8', 'RA02');
execute insertartiradas('RA0242125,8247453704', '27', '01/05/2015 19:47:38','-16,8', 'RA02');
execute insertartiradas('RA0242125,825162037', '23', '01/05/2015 19:48:14','12,6', 'RA02');
execute insertartiradas('RA0242125,8255092593', '1', '01/05/2015 19:48:44','-14', 'RA02');
execute insertartiradas('RA0242125,8417013889', '23', '01/05/2015 20:12:03','18,9', 'RA02');
execute insertartiradas('RA0242125,8421180556', '2', '01/05/2015 20:12:39','-19', 'RA02');
execute insertartiradas('RA0242125,8429861111', '31', '01/05/2015 20:13:54','19,5', 'RA02');
execute insertartiradas('RA0242125,843449074', '13', '01/05/2015 20:14:34','-20,7', 'RA02');
execute insertartiradas('RA0242125,8440162037', '1', '01/05/2015 20:15:23','21,3', 'RA02');
execute insertartiradas('RA0242125,8444328704', '25', '01/05/2015 20:15:59','-19,4', 'RA02');
execute insertartiradas('RA0242125,8449305556', '24', '01/05/2015 20:16:42','19,1', 'RA02');
execute insertartiradas('RA0242125,8454398148', '7', '01/05/2015 20:17:26','-17,7', 'RA02');
execute insertartiradas('RA0242125,8460532407', '4', '01/05/2015 20:18:19','17,9', 'RA02');
execute insertartiradas('RA0242125,8465277778', '10', '01/05/2015 20:19:00','-22,3', 'RA02');
execute insertartiradas('RA0242125,8469675926', '3', '01/05/2015 20:19:38','19,2', 'RA02');
execute insertartiradas('RA0242125,8473842593', '31', '01/05/2015 20:20:14','-18,9', 'RA02');
execute insertartiradas('RA0242125,8479513889', '7', '01/05/2015 20:21:03','21', 'RA02');
execute insertartiradas('RA0242125,8483449074', '21', '01/05/2015 20:21:37','-19,8', 'RA02');
execute insertartiradas('RA0242125,8488078704', '28', '01/05/2015 20:22:17','18,7', 'RA02');
execute insertartiradas('RA0242125,8492013888', '20', '01/05/2015 20:22:51','-18,2', 'RA02');
execute insertartiradas('RA0242125,849837963', '32', '01/05/2015 20:23:46','17,7', 'RA02');
execute insertartiradas('RA0242125,8505092593', '3', '01/05/2015 20:24:44','-17,3', 'RA02');
execute insertartiradas('RA0242125,8510069444', '13', '01/05/2015 20:25:27','18,6', 'RA02');
execute insertartiradas('RA0242125,8515162037', '28', '01/05/2015 20:26:11','-16', 'RA02');
execute insertartiradas('RA0242125,8520833333', '5', '01/05/2015 20:27:00','18,8', 'RA02');
execute insertartiradas('RA0242125,8525810185', '13', '01/05/2015 20:27:43','-19,1', 'RA02');
execute insertartiradas('RA0242125,852974537', '27', '01/05/2015 20:28:17','22,1', 'RA02');
execute insertartiradas('RA0242125,8533796296', '18', '01/05/2015 20:28:52','-18,5', 'RA02');
execute insertartiradas('RA0242125,8538541667', '29', '01/05/2015 20:29:33','18,6', 'RA02');
execute insertartiradas('RA0242125,8543981481', '32', '01/05/2015 20:30:20','-19,3', 'RA02');
execute insertartiradas('RA0242125,8548958333', '33', '01/05/2015 20:31:03','19,4', 'RA02');
execute insertartiradas('RA0242125,8553472222', '15', '01/05/2015 20:31:42','-19,2', 'RA02');
execute insertartiradas('RA0242125,8558333333', '11', '01/05/2015 20:32:24','19,3', 'RA02');
execute insertartiradas('RA0242125,85625', '9', '01/05/2015 20:33:00','-19,4', 'RA02');
execute insertartiradas('RA0242125,8567476852', '32', '01/05/2015 20:33:43','18,1', 'RA02');
execute insertartiradas('RA0242125,8572685185', '35', '01/05/2015 20:34:28','-17,7', 'RA02');
execute insertartiradas('RA0242125,8578125', '35', '01/05/2015 20:35:15','18', 'RA02');
execute insertartiradas('RA0242125,8583680556', '34', '01/05/2015 20:36:03','-22,4', 'RA02');
execute insertartiradas('RA0242125,8588310185', '29', '01/05/2015 20:36:43','20,6', 'RA02');
execute insertartiradas('RA0242125,8592939815', '16', '01/05/2015 20:37:23','-18,2', 'RA02');
execute insertartiradas('RA0242125,859837963', '17', '01/05/2015 20:38:10','17,7', 'RA02');
execute insertartiradas('RA0242125,8605555556', '5', '01/05/2015 20:39:12','-18,8', 'RA02');
execute insertartiradas('RA0242125,8616435185', '28', '01/05/2015 20:40:46','18,9', 'RA02');
execute insertartiradas('RA0242125,8625462963', '0', '01/05/2015 20:42:04','-15,4', 'RA02');
execute insertartiradas('RA0242125,8632523148', '32', '01/05/2015 20:43:05','16,1', 'RA02');
execute insertartiradas('RA0242125,8643981482', '23', '01/05/2015 20:44:44','-13,2', 'RA02');
execute insertartiradas('RA0242125,8655787037', '29', '01/05/2015 20:46:26','17,9', 'RA02');
execute insertartiradas('RA0242125,8666319444', '10', '01/05/2015 20:47:57','-13,7', 'RA02');
execute insertartiradas('RA0242125,8673032407', '25', '01/05/2015 20:48:55','15,8', 'RA02');
execute insertartiradas('RA0242125,8680324074', '15', '01/05/2015 20:49:58','-13,2', 'RA02');
execute insertartiradas('RA0242125,8684722222', '30', '01/05/2015 20:50:36','17,7', 'RA02');
execute insertartiradas('RA0242125,8688773148', '20', '01/05/2015 20:51:11','-14', 'RA02');
execute insertartiradas('RA0242125,8692476851', '19', '01/05/2015 20:51:43','15,9', 'RA02');
execute insertartiradas('RA0242125,8696412037', '0', '01/05/2015 20:52:17','-15,5', 'RA02');
execute insertartiradas('RA0242125,8700115741', '9', '01/05/2015 20:52:49','16,2', 'RA02');
execute insertartiradas('RA0242125,8703935185', '35', '01/05/2015 20:53:22','-14,6', 'RA02');
execute insertartiradas('RA0242125,8707523148', '4', '01/05/2015 20:53:53','15,8', 'RA02');
execute insertartiradas('RA0242125,8733217593', '25', '01/05/2015 20:57:35','-15', 'RA02');
execute insertartiradas('RA0242125,873912037', '0', '01/05/2015 20:58:26','17,5', 'RA02');
execute insertartiradas('RA0242125,874537037', '6', '01/05/2015 20:59:20','-13,4', 'RA02');
execute insertartiradas('RA0242125,8751967593', '12', '01/05/2015 21:00:17','16,5', 'RA02');
execute insertartiradas('RA0242125,8758101852', '10', '01/05/2015 21:01:10','-14,9', 'RA02');
execute insertartiradas('RA0242125,8765046296', '28', '01/05/2015 21:02:10','16,2', 'RA02');
execute insertartiradas('RA0242125,8813078704', '1', '01/05/2015 21:09:05','-13,7', 'RA02');
execute insertartiradas('RA0242125,8817708333', '20', '01/05/2015 21:09:45','15,1', 'RA02');
execute insertartiradas('RA0242125,8821875', '19', '01/05/2015 21:10:21','-13,9', 'RA02');
execute insertartiradas('RA0242125,9590972222', '8', '01/05/2015 23:01:06','-13,5', 'RA02');
execute insertartiradas('RA0242125,9596527778', '33', '01/05/2015 23:01:54','14,9', 'RA02');
execute insertartiradas('RA0242125,960150463', '12', '01/05/2015 23:02:37','-14,2', 'RA02');
execute insertartiradas('RA0242125,9608333333', '19', '01/05/2015 23:03:36','14,8', 'RA02');
execute insertartiradas('RA0242125,9615740741', '8', '01/05/2015 23:04:40','-12,9', 'RA02');
execute insertartiradas('RA0242125,9625462963', '31', '01/05/2015 23:06:04','17,7', 'RA02');
execute insertartiradas('RA0242125,9635763889', '0', '01/05/2015 23:07:33','-14,1', 'RA02');
execute insertartiradas('RA0242125,9643055556', '34', '01/05/2015 23:08:36','14,5', 'RA02');
execute insertartiradas('RA0242125,9656828704', '25', '01/05/2015 23:10:35','-14,6', 'RA02');
execute insertartiradas('RA0242125,9664814815', '21', '01/05/2015 23:11:44','17,7', 'RA02');
execute insertartiradas('RA0242125,967337963', '12', '01/05/2015 23:12:58','-14,9', 'RA02');
execute insertartiradas('RA0242125,9681018519', '36', '01/05/2015 23:14:04','16,5', 'RA02');
execute insertartiradas('RA0242125,9713078704', '26', '01/05/2015 23:18:41','-15,1', 'RA02');
execute insertartiradas('RA0242125,972025463', '4', '01/05/2015 23:19:43','14,6', 'RA02');
execute insertartiradas('RA0242125,9727777778', '19', '01/05/2015 23:20:48','-14,1', 'RA02');
execute insertartiradas('RA0242125,9736111111', '28', '01/05/2015 23:22:00','16,5', 'RA02');
execute insertartiradas('RA0242125,9746527778', '15', '01/05/2015 23:23:30','-14,4', 'RA02');
execute insertartiradas('RA0242125,9759027778', '36', '01/05/2015 23:25:18','19', 'RA02');
execute insertartiradas('RA0242125,9768171296', '23', '01/05/2015 23:26:37','-15,4', 'RA02');
execute insertartiradas('RA0242125,9781712963', '17', '01/05/2015 23:28:34','16,8', 'RA02');
execute insertartiradas('RA0242125,979224537', '26', '01/05/2015 23:30:05','-15,1', 'RA02');
execute insertartiradas('RA0242125,9801851852', '21', '01/05/2015 23:31:28','16,5', 'RA02');
execute insertartiradas('RA0242125,981099537', '13', '01/05/2015 23:32:47','-16,1', 'RA02');
execute insertartiradas('RA0242125,9817592593', '13', '01/05/2015 23:33:44','16,6', 'RA02');
execute insertartiradas('RA0242125,9825462963', '20', '01/05/2015 23:34:52','-15,9', 'RA02');
execute insertartiradas('RA0242125,9834953704', '25', '01/05/2015 23:36:14','17,5', 'RA02');
execute insertartiradas('RA0242125,9848263889', '6', '01/05/2015 23:38:09','-16,4', 'RA02');
execute insertartiradas('RA0242125,9857175926', '12', '01/05/2015 23:39:26','17,5', 'RA02');
execute insertartiradas('RA0242125,9869328704', '32', '01/05/2015 23:41:11','-16,2', 'RA02');
execute insertartiradas('RA0242125,9881944444', '36', '01/05/2015 23:43:00','20,5', 'RA02');
execute insertartiradas('RA0242125,9889467593', '17', '01/05/2015 23:44:05','-17,2', 'RA02');
execute insertartiradas('RA0242125,9895717593', '3', '01/05/2015 23:44:59','26,1', 'RA02');
execute insertartiradas('RA0242125,9902199074', '27', '01/05/2015 23:45:55','-14,5', 'RA02');
execute insertartiradas('RA0242125,9906712963', '23', '01/05/2015 23:46:34','17,5', 'RA02');
execute insertartiradas('RA0242125,9913310185', '16', '01/05/2015 23:47:31','-17,3', 'RA02');
execute insertartiradas('RA0242125,9924768519', '24', '01/05/2015 23:49:10','19,8', 'RA02');
execute insertartiradas('RA0242125,9936689815', '21', '01/05/2015 23:50:53','-18,2', 'RA02');
execute insertartiradas('RA0242125,9943287037', '28', '01/05/2015 23:51:50','21,1', 'RA02');
execute insertartiradas('RA0242125,9957291667', '7', '01/05/2015 23:53:51','-20,5', 'RA02');
execute insertartiradas('RA0242125,9974537037', '19', '01/05/2015 23:56:20','24,6', 'RA02');
execute insertartiradas('RA0242125,9982986111', '1', '01/05/2015 23:57:33','-21,9', 'RA02');
execute insertartiradas('RA0242125,9990393519', '2', '01/05/2015 23:58:37','22,9', 'RA02');
execute insertartiradas('RA0242125,9996643519', '10', '01/05/2015 23:59:31','-20', 'RA02');
execute insertartiradas('RA0242126,0005208333', '33', '02/05/2015 00:00:45','24,3', 'RA02');
execute insertartiradas('RA0242126,0013888889', '8', '02/05/2015 00:02:00','-17', 'RA02');
execute insertartiradas('RA0242126,0024074074', '11', '02/05/2015 00:03:28','20,6', 'RA02');
execute insertartiradas('RA0242126,0033101852', '4', '02/05/2015 00:04:46','-16,3', 'RA02');
execute insertartiradas('RA0242126,0041087963', '27', '02/05/2015 00:05:55','20,7', 'RA02');
execute insertartiradas('RA0242126,0049421296', '0', '02/05/2015 00:07:07','-20', 'RA02');
execute insertartiradas('RA0242126,0058217593', '29', '02/05/2015 00:08:23','19,5', 'RA02');
execute insertartiradas('RA0242126,0072453704', '8', '02/05/2015 00:10:26','-15,5', 'RA02');
execute insertartiradas('RA0242126,0083449074', '34', '02/05/2015 00:12:01','23,9', 'RA02');
execute insertartiradas('RA0242126,0092476852', '29', '02/05/2015 00:13:19','-17,3', 'RA02');
execute insertartiradas('RA0242126,0105439815', '10', '02/05/2015 00:15:11','17,7', 'RA02');
execute insertartiradas('RA0242126,0118634259', '2', '02/05/2015 00:17:05','-22,1', 'RA02');
execute insertartiradas('RA0242126,0126967593', '27', '02/05/2015 00:18:17','23,5', 'RA02');
execute insertartiradas('RA0242126,0133680556', '4', '02/05/2015 00:19:15','-21,4', 'RA02');
execute insertartiradas('RA0242126,0140972222', '9', '02/05/2015 00:20:18','23,6', 'RA02');
execute insertartiradas('RA0242126,0150347222', '14', '02/05/2015 00:21:39','-20,3', 'RA02');
execute insertartiradas('RA0242126,0159259259', '34', '02/05/2015 00:22:56','20,3', 'RA02');
execute insertartiradas('RA0242126,0168055556', '1', '02/05/2015 00:24:12','-19,2', 'RA02');
execute insertartiradas('RA0242126,0171990741', '13', '02/05/2015 00:24:46','21,6', 'RA02');
execute insertartiradas('RA0242126,0183333333', '12', '02/05/2015 00:26:24','-22,7', 'RA02');
execute insertartiradas('RA0242126,0192013889', '21', '02/05/2015 00:27:39','17,4', 'RA02');
execute insertartiradas('RA0242126,0201157407', '4', '02/05/2015 00:28:58','-22,7', 'RA02');
execute insertartiradas('RA0242126,0212962963', '35', '02/05/2015 00:30:40','23,3', 'RA02');
execute insertartiradas('RA0242126,0224652778', '4', '02/05/2015 00:32:21','-24,7', 'RA02');
execute insertartiradas('RA0242126,0236921296', '32', '02/05/2015 00:34:07','21', 'RA02');
execute insertartiradas('RA0242126,0250578704', '9', '02/05/2015 00:36:05','-25,1', 'RA02');
execute insertartiradas('RA0242126,0263310185', '20', '02/05/2015 00:37:55','21,9', 'RA02');
execute insertartiradas('RA0242126,0273958333', '20', '02/05/2015 00:39:27','-20,6', 'RA02');
execute insertartiradas('RA0242126,0284837963', '13', '02/05/2015 00:41:01','22,6', 'RA02');
execute insertartiradas('RA0242126,0291435185', '8', '02/05/2015 00:41:58','-20', 'RA02');
execute insertartiradas('RA0242126,0301736111', '14', '02/05/2015 00:43:27','19,5', 'RA02');
execute insertartiradas('RA0242126,0310648148', '21', '02/05/2015 00:44:44','-23,5', 'RA02');
execute insertartiradas('RA0242126,0318055556', '27', '02/05/2015 00:45:48','19,7', 'RA02');
execute insertartiradas('RA0242126,0323842593', '13', '02/05/2015 00:46:38','-24,9', 'RA02');
execute insertartiradas('RA0242126,0361805556', '30', '02/05/2015 00:52:06','21,4', 'RA02');
execute insertartiradas('RA0242126,0369791667', '10', '02/05/2015 00:53:15','-19,9', 'RA02');
execute insertartiradas('RA0242126,0377662037', '30', '02/05/2015 00:54:23','19,8', 'RA02');
execute insertartiradas('RA0242126,0385069444', '3', '02/05/2015 00:55:27','-19,7', 'RA02');
execute insertartiradas('RA0242126,0394212963', '19', '02/05/2015 00:56:46','19,7', 'RA02');
execute insertartiradas('RA0242126,0403472222', '34', '02/05/2015 00:58:06','-22,3', 'RA02');
execute insertartiradas('RA0242126,0412384259', '34', '02/05/2015 00:59:23','19,8', 'RA02');
execute insertartiradas('RA0242126,0421064815', '23', '02/05/2015 01:00:38','-21,9', 'RA02');
execute insertartiradas('RA0242126,0433217593', '9', '02/05/2015 01:02:23','14,7', 'RA02');
execute insertartiradas('RA0242126,0446296296', '4', '02/05/2015 01:04:16','-11,8', 'RA02');
execute insertartiradas('RA0242126,0455208333', '15', '02/05/2015 01:05:33','11,7', 'RA02');
execute insertartiradas('RA0242126,0470138889', '9', '02/05/2015 01:07:42','-14,6', 'RA02');
execute insertartiradas('RA0242126,0477662037', '26', '02/05/2015 01:08:47','14,8', 'RA02');
execute insertartiradas('RA0242126,0484490741', '28', '02/05/2015 01:09:46','-13,9', 'RA02');
execute insertartiradas('RA0242126,0495833333', '12', '02/05/2015 01:11:24','9,3', 'RA02');
execute insertartiradas('RA0242126,0505439815', '24', '02/05/2015 01:12:47','-16,6', 'RA02');
execute insertartiradas('RA0242126,0515277778', '31', '02/05/2015 01:14:12','14,6', 'RA02');
execute insertartiradas('RA0242126,0529282407', '32', '02/05/2015 01:16:13','-13,6', 'RA02');
execute insertartiradas('RA0242126,0537152778', '31', '02/05/2015 01:17:21','15', 'RA02');
execute insertartiradas('RA0242126,0545717593', '30', '02/05/2015 01:18:35','-16,6', 'RA02');
execute insertartiradas('RA0242126,0552546296', '35', '02/05/2015 01:19:34','14,9', 'RA02');
execute insertartiradas('RA0242126,0557060185', '25', '02/05/2015 01:20:13','-16,5', 'RA02');
execute insertartiradas('RA0242126,0561921296', '3', '02/05/2015 01:20:55','12,2', 'RA02');
execute insertartiradas('RA0242126,0567824074', '28', '02/05/2015 01:21:46','-11,3', 'RA02');
execute insertartiradas('RA0242126,0572569444', '35', '02/05/2015 01:22:27','13,6', 'RA02');
execute insertartiradas('RA0242126,0576851852', '8', '02/05/2015 01:23:04','-11', 'RA02');
execute insertartiradas('RA0242126,0580787037', '5', '02/05/2015 01:23:38','15,2', 'RA02');
execute insertartiradas('RA0242126,0584606481', '5', '02/05/2015 01:24:11','-15', 'RA02');
execute insertartiradas('RA0242126,0587847222', '17', '02/05/2015 01:24:39','13,8', 'RA02');
execute insertartiradas('RA0242126,059212963', '19', '02/05/2015 01:25:16','-11,7', 'RA02');
execute insertartiradas('RA0242126,0596875', '3', '02/05/2015 01:25:57','18,5', 'RA02');
execute insertartiradas('RA0242126,0603587963', '0', '02/05/2015 01:26:55','-13,4', 'RA02');
execute insertartiradas('RA0242126,0610763889', '30', '02/05/2015 01:27:57','17,7', 'RA02');
execute insertartiradas('RA0242126,0615393519', '32', '02/05/2015 01:28:37','-10,8', 'RA02');
execute insertartiradas('RA0242126,0622800926', '29', '02/05/2015 01:29:41','19,4', 'RA02');
execute insertartiradas('RA0242126,0632407407', '8', '02/05/2015 01:31:04','-12,1', 'RA02');
execute insertartiradas('RA0242126,0638425926', '9', '02/05/2015 01:31:56','15,4', 'RA02');
execute insertartiradas('RA0242126,0642361111', '28', '02/05/2015 01:32:30','-15,9', 'RA02');
execute insertartiradas('RA0242126,0647453704', '13', '02/05/2015 01:33:14','16,3', 'RA02');
execute insertartiradas('RA0242126,0651967593', '17', '02/05/2015 01:33:53','-10,8', 'RA02');
execute insertartiradas('RA0242126,0667592593', '16', '02/05/2015 01:36:08','15,2', 'RA02');
execute insertartiradas('RA0242126,0673611111', '34', '02/05/2015 01:37:00','-10,9', 'RA02');
execute insertartiradas('RA0242126,0677430556', '36', '02/05/2015 01:37:33','16,6', 'RA02');
execute insertartiradas('RA0242126,0682060185', '9', '02/05/2015 01:38:13','-13,1', 'RA02');
execute insertartiradas('RA0242126,0686226852', '24', '02/05/2015 01:38:49','12,9', 'RA02');
execute insertartiradas('RA0242126,0690509259', '16', '02/05/2015 01:39:26','-12,2', 'RA02');
execute insertartiradas('RA0242126,0694444444', '0', '02/05/2015 01:40:00','14,4', 'RA02');
execute insertartiradas('RA0242126,069837963', '23', '02/05/2015 01:40:34','-12,8', 'RA02');
execute insertartiradas('RA0242126,0702546296', '12', '02/05/2015 01:41:10','13,8', 'RA02');
execute insertartiradas('RA0242126,0708333333', '30', '02/05/2015 01:42:00','-12,5', 'RA02');
execute insertartiradas('RA0242126,0712384259', '7', '02/05/2015 01:42:35','12,2', 'RA02');
execute insertartiradas('RA0242126,0716550926', '13', '02/05/2015 01:43:11','-12,2', 'RA02');
execute insertartiradas('RA0242126,0719907407', '5', '02/05/2015 01:43:40','14,8', 'RA02');
execute insertartiradas('RA0242126,0723032407', '36', '02/05/2015 01:44:07','-13,9', 'RA02');
execute insertartiradas('RA0242126,0731828704', '3', '02/05/2015 01:45:23','13,2', 'RA02');
execute insertartiradas('RA0242126,0739467593', '4', '02/05/2015 01:46:29','-15,2', 'RA02');
execute insertartiradas('RA0242126,0746875', '23', '02/05/2015 01:47:33','17,5', 'RA02');
execute insertartiradas('RA0242126,0753587963', '11', '02/05/2015 01:48:31','-12,8', 'RA02');
execute insertartiradas('RA0242126,0759837963', '21', '02/05/2015 01:49:25','16,8', 'RA02');
execute insertartiradas('RA0242126,0765740741', '16', '02/05/2015 01:50:16','-12', 'RA02');
execute insertartiradas('RA0242126,0770601852', '36', '02/05/2015 01:50:58','11,2', 'RA02');
execute insertartiradas('RA0242126,0775462963', '36', '02/05/2015 01:51:40','-11,2', 'RA02');
execute insertartiradas('RA0242126,0782638889', '1', '02/05/2015 01:52:42','13,1', 'RA02');
execute insertartiradas('RA0242126,0787615741', '32', '02/05/2015 01:53:25','-11,7', 'RA02');
execute insertartiradas('RA0242126,0792592593', '1', '02/05/2015 01:54:08','19,4', 'RA02');
execute insertartiradas('RA0242126,0798263889', '13', '02/05/2015 01:54:57','-12,8', 'RA02');
execute insertartiradas('RA0242126,0803819444', '31', '02/05/2015 01:55:45','19,6', 'RA02');
execute insertartiradas('RA0242126,0808217593', '17', '02/05/2015 01:56:23','-17,1', 'RA02');
execute insertartiradas('RA0242126,0815856481', '21', '02/05/2015 01:57:29','19,8', 'RA02');
execute insertartiradas('RA0242126,0820138889', '1', '02/05/2015 01:58:06','-16,9', 'RA02');
execute insertartiradas('RA0242126,0828819444', '23', '02/05/2015 01:59:21','22,4', 'RA02');
execute insertartiradas('RA0242126,0836574074', '27', '02/05/2015 02:00:28','-19,9', 'RA02');
execute insertartiradas('RA0242126,0845138889', '5', '02/05/2015 02:01:42','20,7', 'RA02');
execute insertartiradas('RA0242126,0850462963', '28', '02/05/2015 02:02:28','-20', 'RA02');
execute insertartiradas('RA0242126,0861458333', '16', '02/05/2015 02:04:03','20,6', 'RA02');
execute insertartiradas('RA0242126,0866203704', '19', '02/05/2015 02:04:44','-15,6', 'RA02');
execute insertartiradas('RA0242126,0876041667', '30', '02/05/2015 02:06:09','19,9', 'RA02');
execute insertartiradas('RA0242126,0883449074', '25', '02/05/2015 02:07:13','-19,6', 'RA02');
execute insertartiradas('RA0242126,0895486111', '18', '02/05/2015 02:08:57','18,7', 'RA02');
execute insertartiradas('RA0242126,0907638889', '2', '02/05/2015 02:10:42','-20,3', 'RA02');
execute insertartiradas('RA0242126,0914351852', '35', '02/05/2015 02:11:40','20,5', 'RA02');
execute insertartiradas('RA0242126,0929282407', '20', '02/05/2015 02:13:49','-21,4', 'RA02');
execute insertartiradas('RA0242126,0940393519', '24', '02/05/2015 02:15:25','22,5', 'RA02');
execute insertartiradas('RA0242126,0947569444', '3', '02/05/2015 02:16:27','-21,9', 'RA02');
execute insertartiradas('RA0242126,0954976852', '25', '02/05/2015 02:17:31','20,9', 'RA02');
execute insertartiradas('RA0242126,0967708333', '13', '02/05/2015 02:19:21','-18,3', 'RA02');
execute insertartiradas('RA0242126,0977662037', '27', '02/05/2015 02:20:47','21', 'RA02');
execute insertartiradas('RA0242126,09875', '0', '02/05/2015 02:22:12','-16,3', 'RA02');
execute insertartiradas('RA0242126,099537037', '4', '02/05/2015 02:23:20','21,1', 'RA02');
execute insertartiradas('RA0242126,1001967593', '13', '02/05/2015 02:24:17','-16,6', 'RA02');
execute insertartiradas('RA0242126,1014236111', '1', '02/05/2015 02:26:03','18,4', 'RA02');
execute insertartiradas('RA0242126,1021296296', '9', '02/05/2015 02:27:04','-14,4', 'RA02');
execute insertartiradas('RA0242126,1032060185', '12', '02/05/2015 02:28:37','20,5', 'RA02');
execute insertartiradas('RA0242126,1043287037', '26', '02/05/2015 02:30:14','-18,4', 'RA02');
execute insertartiradas('RA0242126,1051851852', '5', '02/05/2015 02:31:28','20,7', 'RA02');
execute insertartiradas('RA0242126,1060069444', '7', '02/05/2015 02:32:39','-14,9', 'RA02');
execute insertartiradas('RA0242126,106724537', '15', '02/05/2015 02:33:41','20', 'RA02');
execute insertartiradas('RA0242126,1076273148', '13', '02/05/2015 02:34:59','-15,2', 'RA02');
execute insertartiradas('RA0242126,1085300926', '28', '02/05/2015 02:36:17','19,4', 'RA02');
execute insertartiradas('RA0242126,109537037', '25', '02/05/2015 02:37:44','-17,1', 'RA02');
execute insertartiradas('RA0242126,1106597222', '19', '02/05/2015 02:39:21','23,2', 'RA02');
execute insertartiradas('RA0242126,111712963', '34', '02/05/2015 02:40:52','-19,4', 'RA02');
execute insertartiradas('RA0242126,1126967593', '36', '02/05/2015 02:42:17','13', 'RA02');
execute insertartiradas('RA0242126,1133564815', '1', '02/05/2015 02:43:14','-13,7', 'RA02');
execute insertartiradas('RA0242126,1143287037', '18', '02/05/2015 02:44:38','19,7', 'RA02');
execute insertartiradas('RA0242126,1153125', '23', '02/05/2015 02:46:03','-15,8', 'RA02');
execute insertartiradas('RA0242126,1162962963', '3', '02/05/2015 02:47:28','15,5', 'RA02');
execute insertartiradas('RA0242126,1170138889', '20', '02/05/2015 02:48:30','-15,2', 'RA02');
execute insertartiradas('RA0242126,1178356481', '16', '02/05/2015 02:49:41','15,4', 'RA02');
execute insertartiradas('RA0242126,1184490741', '17', '02/05/2015 02:50:34','-16', 'RA02');
execute insertartiradas('RA0242126,1190509259', '23', '02/05/2015 02:51:26','20', 'RA02');
execute insertartiradas('RA0242126,1201157407', '0', '02/05/2015 02:52:58','-15,9', 'RA02');
execute insertartiradas('RA0242126,1207060185', '27', '02/05/2015 02:53:49','17,5', 'RA02');
execute insertartiradas('RA0242126,1216319444', '35', '02/05/2015 02:55:09','-21,3', 'RA02');
execute insertartiradas('RA0242126,1223379629', '33', '02/05/2015 02:56:10','19,5', 'RA02');
execute insertartiradas('RA0242126,1232060185', '31', '02/05/2015 02:57:25','-15,2', 'RA02');
execute insertartiradas('RA0242126,1237615741', '4', '02/05/2015 02:58:13','22,2', 'RA02');
execute insertartiradas('RA0242126,7595138889', '12', '02/05/2015 18:13:42','15,2', 'RA02');
execute insertartiradas('RA0242126,7960069444', '33', '02/05/2015 19:06:15','-16,2', 'RA02');
execute insertartiradas('RA0242126,7964351852', '35', '02/05/2015 19:06:52','17,5', 'RA02');
execute insertartiradas('RA0242126,8045023148', '13', '02/05/2015 19:18:29','-20,8', 'RA02');
execute insertartiradas('RA0242126,8049537037', '6', '02/05/2015 19:19:08','20,4', 'RA02');
execute insertartiradas('RA0242126,8056481481', '7', '02/05/2015 19:20:08','-16,1', 'RA02');
execute insertartiradas('RA0242126,8060300926', '1', '02/05/2015 19:20:41','20,6', 'RA02');
execute insertartiradas('RA0242126,8064930556', '28', '02/05/2015 19:21:21','-16,7', 'RA02');
execute insertartiradas('RA0242126,8069444444', '28', '02/05/2015 19:22:00','21,5', 'RA02');
execute insertartiradas('RA0242126,8075', '33', '02/05/2015 19:22:48','-14', 'RA02');
execute insertartiradas('RA0242126,807962963', '12', '02/05/2015 19:23:28','18,9', 'RA02');
execute insertartiradas('RA0242126,8084027778', '5', '02/05/2015 19:24:06','-14,9', 'RA02');
execute insertartiradas('RA0242126,8088888889', '27', '02/05/2015 19:24:48','19,3', 'RA02');
execute insertartiradas('RA0242126,8092476852', '33', '02/05/2015 19:25:19','-14,7', 'RA02');
execute insertartiradas('RA0242126,8097685185', '34', '02/05/2015 19:26:04','19,1', 'RA02');
execute insertartiradas('RA0242126,8104398148', '0', '02/05/2015 19:27:02','-15,3', 'RA02');
execute insertartiradas('RA0242126,8110185185', '25', '02/05/2015 19:27:52','13,4', 'RA02');
execute insertartiradas('RA0242126,8115509259', '19', '02/05/2015 19:28:38','-16,2', 'RA02');
execute insertartiradas('RA0242126,8122685185', '28', '02/05/2015 19:29:40','18,5', 'RA02');
execute insertartiradas('RA0242126,8130092593', '6', '02/05/2015 19:30:44','-14,9', 'RA02');
execute insertartiradas('RA0242126,813599537', '15', '02/05/2015 19:31:35','21,8', 'RA02');
execute insertartiradas('RA0242126,8141550926', '26', '02/05/2015 19:32:23','-14,1', 'RA02');
execute insertartiradas('RA0242126,8146990741', '8', '02/05/2015 19:33:10','19,2', 'RA02');
execute insertartiradas('RA0242126,8151967593', '15', '02/05/2015 19:33:53','-17,6', 'RA02');
execute insertartiradas('RA0242126,8156597222', '11', '02/05/2015 19:34:33','19,9', 'RA02');
execute insertartiradas('RA0242126,8160763889', '0', '02/05/2015 19:35:09','-15,6', 'RA02');
execute insertartiradas('RA0242126,8165856482', '29', '02/05/2015 19:35:53','19,9', 'RA02');
execute insertartiradas('RA0242126,8171064815', '35', '02/05/2015 19:36:38','-14,4', 'RA02');
execute insertartiradas('RA0242126,8176388889', '21', '02/05/2015 19:37:24','17,9', 'RA02');
execute insertartiradas('RA0242126,8182291667', '31', '02/05/2015 19:38:15','-16,1', 'RA02');
execute insertartiradas('RA0242126,8187152778', '24', '02/05/2015 19:38:57','19,2', 'RA02');
execute insertartiradas('RA0242126,8382060185', '29', '02/05/2015 20:07:01','-15,1', 'RA02');
execute insertartiradas('RA0242126,838599537', '11', '02/05/2015 20:07:35','16,3', 'RA02');
execute insertartiradas('RA0242126,8430092593', '24', '02/05/2015 20:13:56','-14,4', 'RA02');
execute insertartiradas('RA0242126,8440393519', '0', '02/05/2015 20:15:25','16,8', 'RA02');
execute insertartiradas('RA0242126,845150463', '12', '02/05/2015 20:17:01','-14,3', 'RA02');
execute insertartiradas('RA0242126,8462037037', '18', '02/05/2015 20:18:32','17,7', 'RA02');
execute insertartiradas('RA0242126,8471527778', '13', '02/05/2015 20:19:54','-14,2', 'RA02');
execute insertartiradas('RA0242126,8483449074', '18', '02/05/2015 20:21:37','17', 'RA02');
execute insertartiradas('RA0242126,8492939815', '2', '02/05/2015 20:22:59','-13,9', 'RA02');
execute insertartiradas('RA0242126,8505324074', '24', '02/05/2015 20:24:46','17,3', 'RA02');
execute insertartiradas('RA0242126,8518287037', '30', '02/05/2015 20:26:38','-13,4', 'RA02');
execute insertartiradas('RA0242126,8526041667', '36', '02/05/2015 20:27:45','16,5', 'RA02');
execute insertartiradas('RA0242126,8537268518', '27', '02/05/2015 20:29:22','-13,9', 'RA02');
execute insertartiradas('RA0242126,8547337963', '28', '02/05/2015 20:30:49','17,4', 'RA02');
execute insertartiradas('RA0242126,8557175926', '18', '02/05/2015 20:32:14','-15,1', 'RA02');
execute insertartiradas('RA0242126,8566203704', '5', '02/05/2015 20:33:32','15,9', 'RA02');
execute insertartiradas('RA0242126,8575925926', '23', '02/05/2015 20:34:56','-14,3', 'RA02');
execute insertartiradas('RA0242126,8584606481', '15', '02/05/2015 20:36:11','16,5', 'RA02');
execute insertartiradas('RA0242126,8595717593', '16', '02/05/2015 20:37:47','-13,7', 'RA02');
execute insertartiradas('RA0242126,860787037', '23', '02/05/2015 20:39:32','17,3', 'RA02');
execute insertartiradas('RA0242126,8616898148', '29', '02/05/2015 20:40:50','-13,6', 'RA02');
execute insertartiradas('RA0242126,8628935185', '19', '02/05/2015 20:42:34','15,3', 'RA02');
execute insertartiradas('RA0242126,8643981482', '33', '02/05/2015 20:44:44','-13,9', 'RA02');
execute insertartiradas('RA0242126,8655555556', '22', '02/05/2015 20:46:24','17,6', 'RA02');
execute insertartiradas('RA0242126,8688888889', '14', '02/05/2015 20:51:12','-13,1', 'RA02');
execute insertartiradas('RA0242126,870150463', '15', '02/05/2015 20:53:01','18,2', 'RA02');
execute insertartiradas('RA0242126,8714351852', '36', '02/05/2015 20:54:52','-15,9', 'RA02');
execute insertartiradas('RA0242126,8723611111', '2', '02/05/2015 20:56:12','18,1', 'RA02');
execute insertartiradas('RA0242126,8732986111', '1', '02/05/2015 20:57:33','-14,7', 'RA02');
execute insertartiradas('RA0242126,8740162037', '26', '02/05/2015 20:58:35','12,5', 'RA02');
execute insertartiradas('RA0242126,8746527778', '36', '02/05/2015 20:59:30','-13,3', 'RA02');
execute insertartiradas('RA0242126,8750231481', '4', '02/05/2015 21:00:02','14', 'RA02');
execute insertartiradas('RA0242126,8753935185', '34', '02/05/2015 21:00:34','-13,9', 'RA02');
execute insertartiradas('RA0242126,8953472222', '13', '02/05/2015 21:29:18','20,4', 'RA02');
execute insertartiradas('RA0242126,8993865741', '26', '02/05/2015 21:35:07','-22,9', 'RA02');
execute insertartiradas('RA0242126,9002199074', '8', '02/05/2015 21:36:19','21,2', 'RA02');
execute insertartiradas('RA0242126,900787037', '27', '02/05/2015 21:37:08','-18,7', 'RA02');
execute insertartiradas('RA0242126,9014699074', '28', '02/05/2015 21:38:07','22', 'RA02');
execute insertartiradas('RA0242126,9026273148', '16', '02/05/2015 21:39:47','-21,2', 'RA02');
execute insertartiradas('RA0242126,9031944444', '18', '02/05/2015 21:40:36','12,8', 'RA02');
execute insertartiradas('RA0242126,9036342593', '12', '02/05/2015 21:41:14','-26,3', 'RA02');
execute insertartiradas('RA0242126,9041435185', '9', '02/05/2015 21:41:58','15', 'RA02');
execute insertartiradas('RA0242126,9046064815', '26', '02/05/2015 21:42:38','-20,3', 'RA02');
execute insertartiradas('RA0242126,9069560185', '18', '02/05/2015 21:46:01','20,6', 'RA02');
execute insertartiradas('RA0242126,9078009259', '24', '02/05/2015 21:47:14','-23,6', 'RA02');
execute insertartiradas('RA0242126,9083912037', '2', '02/05/2015 21:48:05','23,3', 'RA02');
execute insertartiradas('RA0242126,908912037', '28', '02/05/2015 21:48:50','-18,3', 'RA02');
execute insertartiradas('RA0242126,9096296296', '0', '02/05/2015 21:49:52','22,6', 'RA02');
execute insertartiradas('RA0242126,9104976852', '26', '02/05/2015 21:51:07','-12,8', 'RA02');
execute insertartiradas('RA0242126,9114004629', '13', '02/05/2015 21:52:25','23,3', 'RA02');
execute insertartiradas('RA0242126,9118518519', '11', '02/05/2015 21:53:04','-21,6', 'RA02');
execute insertartiradas('RA0242126,9126851852', '7', '02/05/2015 21:54:16','23,1', 'RA02');
execute insertartiradas('RA0242126,9132060185', '8', '02/05/2015 21:55:01','-21,1', 'RA02');
execute insertartiradas('RA0242126,913912037', '23', '02/05/2015 21:56:02','21', 'RA02');
execute insertartiradas('RA0242126,9148842593', '5', '02/05/2015 21:57:26','-18,6', 'RA02');
execute insertartiradas('RA0242126,9158333333', '28', '02/05/2015 21:58:48','22,4', 'RA02');
execute insertartiradas('RA0242126,9168402778', '20', '02/05/2015 22:00:15','-23,2', 'RA02');
execute insertartiradas('RA0242126,9177314815', '15', '02/05/2015 22:01:32','20,3', 'RA02');
execute insertartiradas('RA0242126,9189236111', '34', '02/05/2015 22:03:15','-17,8', 'RA02');
execute insertartiradas('RA0242126,919849537', '14', '02/05/2015 22:04:35','17,7', 'RA02');
execute insertartiradas('RA0242126,9207407407', '25', '02/05/2015 22:05:52','-14,5', 'RA02');
execute insertartiradas('RA0242126,9215277778', '32', '02/05/2015 22:07:00','23,6', 'RA02');
execute insertartiradas('RA0242126,9223148148', '24', '02/05/2015 22:08:08','-16,5', 'RA02');
execute insertartiradas('RA0242126,9232175926', '15', '02/05/2015 22:09:26','19', 'RA02');
execute insertartiradas('RA0242126,9243287037', '31', '02/05/2015 22:11:02','-17,9', 'RA02');
execute insertartiradas('RA0242126,9250231481', '15', '02/05/2015 22:12:02','20,7', 'RA02');
execute insertartiradas('RA0242126,9262384259', '28', '02/05/2015 22:13:47','-16,6', 'RA02');
execute insertartiradas('RA0242126,9290740741', '14', '02/05/2015 22:17:52','16,9', 'RA02');
execute insertartiradas('RA0242126,929837963', '36', '02/05/2015 22:18:58','-18,2', 'RA02');
execute insertartiradas('RA0242126,9305324074', '31', '02/05/2015 22:19:58','17', 'RA02');
execute insertartiradas('RA0242126,9631712963', '30', '02/05/2015 23:06:58','-17,6', 'RA02');
execute insertartiradas('RA0242126,9686921296', '34', '02/05/2015 23:14:55','16,7', 'RA02');
execute insertartiradas('RA0242126,9690625', '7', '02/05/2015 23:15:27','-16,3', 'RA02');
execute insertartiradas('RA0242126,9695833333', '17', '02/05/2015 23:16:12','14', 'RA02');
execute insertartiradas('RA0242126,970462963', '23', '02/05/2015 23:17:28','-18', 'RA02');
execute insertartiradas('RA0242126,9708680556', '8', '02/05/2015 23:18:03','14,7', 'RA02');
execute insertartiradas('RA0242126,9713888889', '35', '02/05/2015 23:18:48','-15,6', 'RA02');
execute insertartiradas('RA0242126,9719097222', '6', '02/05/2015 23:19:33','14,9', 'RA02');
execute insertartiradas('RA0242126,9723263889', '32', '02/05/2015 23:20:09','-18,4', 'RA02');
execute insertartiradas('RA0242126,9728472222', '20', '02/05/2015 23:20:54','14', 'RA02');
execute insertartiradas('RA0242126,9734837963', '17', '02/05/2015 23:21:49','-15', 'RA02');
execute insertartiradas('RA0242126,9740856482', '9', '02/05/2015 23:22:41','21,4', 'RA02');
execute insertartiradas('RA0242126,9745138889', '19', '02/05/2015 23:23:18','-17,6', 'RA02');
execute insertartiradas('RA0242126,9749884259', '34', '02/05/2015 23:23:59','22,5', 'RA02');
execute insertartiradas('RA0242126,9755324074', '24', '02/05/2015 23:24:46','-16,6', 'RA02');
execute insertartiradas('RA0242126,9760648148', '36', '02/05/2015 23:25:32','20', 'RA02');
execute insertartiradas('RA0242126,9764236111', '16', '02/05/2015 23:26:03','-19,7', 'RA02');
execute insertartiradas('RA0242126,9769328704', '28', '02/05/2015 23:26:47','20,7', 'RA02');
execute insertartiradas('RA0242126,9773611111', '24', '02/05/2015 23:27:24','-18,6', 'RA02');
execute insertartiradas('RA0242126,9778125', '30', '02/05/2015 23:28:03','18,4', 'RA02');
execute insertartiradas('RA0242126,9786921296', '10', '02/05/2015 23:29:19','-20,8', 'RA02');
execute insertartiradas('RA0242126,98', '5', '02/05/2015 23:31:12','19,2', 'RA02');
execute insertartiradas('RA0242126,980775463', '24', '02/05/2015 23:32:19','-21,1', 'RA02');
execute insertartiradas('RA0242126,9818981482', '35', '02/05/2015 23:33:56','16,3', 'RA02');
execute insertartiradas('RA0242126,9828125', '15', '02/05/2015 23:35:15','-10,2', 'RA02');
execute insertartiradas('RA0242126,9836458333', '27', '02/05/2015 23:36:27','20,1', 'RA02');
execute insertartiradas('RA0242126,9844328704', '27', '02/05/2015 23:37:35','-20,8', 'RA02');
execute insertartiradas('RA0242126,9849421296', '2', '02/05/2015 23:38:19','20,4', 'RA02');
execute insertartiradas('RA0242126,9854166667', '6', '02/05/2015 23:39:00','-17,9', 'RA02');
execute insertartiradas('RA0242126,9859606481', '19', '02/05/2015 23:39:47','17,8', 'RA02');
execute insertartiradas('RA0242126,9864814815', '19', '02/05/2015 23:40:32','-20,3', 'RA02');
execute insertartiradas('RA0242126,9872337963', '12', '02/05/2015 23:41:37','18,6', 'RA02');
execute insertartiradas('RA0242126,9878009259', '13', '02/05/2015 23:42:26','-17,8', 'RA02');
execute insertartiradas('RA0242126,9884027778', '1', '02/05/2015 23:43:18','21,6', 'RA02');
execute insertartiradas('RA0242126,9889699074', '27', '02/05/2015 23:44:07','-18,8', 'RA02');
execute insertartiradas('RA0242126,9896643519', '13', '02/05/2015 23:45:07','17,9', 'RA02');
execute insertartiradas('RA0242126,9903356481', '29', '02/05/2015 23:46:05','-16,7', 'RA02');
execute insertartiradas('RA0242126,9909722222', '2', '02/05/2015 23:47:00','19,5', 'RA02');
execute insertartiradas('RA0242126,9915972222', '33', '02/05/2015 23:47:54','-20,2', 'RA02');
execute insertartiradas('RA0242126,9922106481', '27', '02/05/2015 23:48:47','20,7', 'RA02');
execute insertartiradas('RA0242126,9930902778', '9', '02/05/2015 23:50:03','-18,6', 'RA02');
execute insertartiradas('RA0242126,99375', '4', '02/05/2015 23:51:00','18,7', 'RA02');
execute insertartiradas('RA0242126,9945023148', '26', '02/05/2015 23:52:05','-23,5', 'RA02');
execute insertartiradas('RA0242126,9954282407', '35', '02/05/2015 23:53:25','21,7', 'RA02');
execute insertartiradas('RA0242126,9962268519', '5', '02/05/2015 23:54:34','-16', 'RA02');
execute insertartiradas('RA0242126,9968634259', '35', '02/05/2015 23:55:29','18,9', 'RA02');
execute insertartiradas('RA0242126,9975462963', '4', '02/05/2015 23:56:28','-20,9', 'RA02');
execute insertartiradas('RA0242126,9981944444', '1', '02/05/2015 23:57:24','18,2', 'RA02');
execute insertartiradas('RA0242126,9988773148', '10', '02/05/2015 23:58:23','-17,9', 'RA02');
execute insertartiradas('RA0242126,9996527778', '11', '02/05/2015 23:59:30','20,6', 'RA02');
execute insertartiradas('RA0242127,0003240741', '26', '03/05/2015 00:00:28','-18', 'RA02');
execute insertartiradas('RA0242127,0009953704', '34', '03/05/2015 00:01:26','18', 'RA02');
execute insertartiradas('RA0242127,0017824074', '22', '03/05/2015 00:02:34','-16,8', 'RA02');
execute insertartiradas('RA0242127,0025115741', '32', '03/05/2015 00:03:37','19,9', 'RA02');
execute insertartiradas('RA0242127,0031481481', '22', '03/05/2015 00:04:32','-18,4', 'RA02');
execute insertartiradas('RA0242127,0042476852', '26', '03/05/2015 00:06:07','20,2', 'RA02');
execute insertartiradas('RA0242127,0056944444', '32', '03/05/2015 00:08:12','-23,6', 'RA02');
execute insertartiradas('RA0242127,0071064815', '27', '03/05/2015 00:10:14','13,6', 'RA02');
execute insertartiradas('RA0242127,0079166667', '15', '03/05/2015 00:11:24','-13,9', 'RA02');
execute insertartiradas('RA0242127,0089236111', '35', '03/05/2015 00:12:51','16,4', 'RA02');
execute insertartiradas('RA0242127,0103009259', '2', '03/05/2015 00:14:50','-15,5', 'RA02');
execute insertartiradas('RA0242127,0113078704', '6', '03/05/2015 00:16:17','18,5', 'RA02');
execute insertartiradas('RA0242127,0126851852', '10', '03/05/2015 00:18:16','-22,3', 'RA02');
execute insertartiradas('RA0242127,0138078704', '29', '03/05/2015 00:19:53','22,6', 'RA02');
execute insertartiradas('RA0242127,0149652778', '10', '03/05/2015 00:21:33','-17,9', 'RA02');
execute insertartiradas('RA0242127,0159143519', '34', '03/05/2015 00:22:55','18,9', 'RA02');
execute insertartiradas('RA0242127,0168402778', '19', '03/05/2015 00:24:15','-15,7', 'RA02');
execute insertartiradas('RA0242127,0174305556', '29', '03/05/2015 00:25:06','17,6', 'RA02');
execute insertartiradas('RA0242127,0180324074', '1', '03/05/2015 00:25:58','-13,4', 'RA02');
execute insertartiradas('RA0242127,0188425926', '19', '03/05/2015 00:27:08','16,6', 'RA02');
execute insertartiradas('RA0242127,0193981481', '26', '03/05/2015 00:27:56','-13,6', 'RA02');
execute insertartiradas('RA0242127,0203009259', '35', '03/05/2015 00:29:14','18,2', 'RA02');
execute insertartiradas('RA0242127,0211342593', '18', '03/05/2015 00:30:26','-17,3', 'RA02');
execute insertartiradas('RA0242127,021875', '10', '03/05/2015 00:31:30','22,1', 'RA02');
execute insertartiradas('RA0242127,0227199074', '14', '03/05/2015 00:32:43','-14,5', 'RA02');
execute insertartiradas('RA0242127,0233449074', '2', '03/05/2015 00:33:37','16', 'RA02');
execute insertartiradas('RA0242127,024224537', '24', '03/05/2015 00:34:53','-13', 'RA02');
execute insertartiradas('RA0242127,0249074074', '3', '03/05/2015 00:35:52','16', 'RA02');
execute insertartiradas('RA0242127,0255324074', '2', '03/05/2015 00:36:46','-15,1', 'RA02');
execute insertartiradas('RA0242127,02625', '14', '03/05/2015 00:37:48','16,6', 'RA02');
execute insertartiradas('RA0242127,026875', '3', '03/05/2015 00:38:42','-13,9', 'RA02');
execute insertartiradas('RA0242127,0275347222', '17', '03/05/2015 00:39:39','19,1', 'RA02');
execute insertartiradas('RA0242127,0283101852', '26', '03/05/2015 00:40:46','-14,9', 'RA02');
execute insertartiradas('RA0242127,0290856482', '29', '03/05/2015 00:41:53','20,3', 'RA02');
execute insertartiradas('RA0242127,0301851852', '18', '03/05/2015 00:43:28','-16,1', 'RA02');
execute insertartiradas('RA0242127,0307986111', '18', '03/05/2015 00:44:21','20,8', 'RA02');
execute insertartiradas('RA0242127,0313657407', '24', '03/05/2015 00:45:10','-17,1', 'RA02');
execute insertartiradas('RA0242127,0320486111', '22', '03/05/2015 00:46:09','20,9', 'RA02');
execute insertartiradas('RA0242127,0328703704', '5', '03/05/2015 00:47:20','-15,8', 'RA02');
execute insertartiradas('RA0242127,0335185185', '31', '03/05/2015 00:48:16','19', 'RA02');
execute insertartiradas('RA0242127,0344907407', '28', '03/05/2015 00:49:40','-15,6', 'RA02');
execute insertartiradas('RA0242127,0351851852', '23', '03/05/2015 00:50:40','18,4', 'RA02');
execute insertartiradas('RA0242127,0357986111', '12', '03/05/2015 00:51:33','-13,5', 'RA02');
execute insertartiradas('RA0242127,0365277778', '10', '03/05/2015 00:52:36','20,8', 'RA02');
execute insertartiradas('RA0242127,0372453704', '14', '03/05/2015 00:53:38','-14,5', 'RA02');
execute insertartiradas('RA0242127,0379166667', '8', '03/05/2015 00:54:36','18', 'RA02');
execute insertartiradas('RA0242127,0385069444', '6', '03/05/2015 00:55:27','-14,9', 'RA02');
execute insertartiradas('RA0242127,0390393519', '4', '03/05/2015 00:56:13','16,2', 'RA02');
execute insertartiradas('RA0242127,0397106481', '8', '03/05/2015 00:57:11','-14,1', 'RA02');
execute insertartiradas('RA0242127,0403240741', '22', '03/05/2015 00:58:04','18', 'RA02');
execute insertartiradas('RA0242127,0409722222', '21', '03/05/2015 00:59:00','-16,5', 'RA02');
execute insertartiradas('RA0242127,0414699074', '4', '03/05/2015 00:59:43','21,4', 'RA02');
execute insertartiradas('RA0242127,0420138889', '33', '03/05/2015 01:00:30','-13,7', 'RA02');
execute insertartiradas('RA0242127,0426388889', '10', '03/05/2015 01:01:24','14', 'RA02');
execute insertartiradas('RA0242127,0432175926', '27', '03/05/2015 01:02:14','-13,2', 'RA02');
execute insertartiradas('RA0242127,0437152778', '3', '03/05/2015 01:02:57','14,9', 'RA02');
execute insertartiradas('RA0242127,0444675926', '25', '03/05/2015 01:04:02','-12,2', 'RA02');
execute insertartiradas('RA0242127,0450578704', '18', '03/05/2015 01:04:53','16,4', 'RA02');
execute insertartiradas('RA0242127,0458564815', '20', '03/05/2015 01:06:02','-14,8', 'RA02');
execute insertartiradas('RA0242127,0464930556', '6', '03/05/2015 01:06:57','14,5', 'RA02');
execute insertartiradas('RA0242127,0470486111', '1', '03/05/2015 01:07:45','-13,2', 'RA02');
execute insertartiradas('RA0242127,0474768519', '13', '03/05/2015 01:08:22','14,2', 'RA02');
execute insertartiradas('RA0242127,047962963', '21', '03/05/2015 01:09:04','-15,1', 'RA02');
execute insertartiradas('RA0242127,0485532407', '6', '03/05/2015 01:09:55','15', 'RA02');
execute insertartiradas('RA0242127,0489583333', '18', '03/05/2015 01:10:30','-13,4', 'RA02');
execute insertartiradas('RA0242127,0494328704', '26', '03/05/2015 01:11:11','16,3', 'RA02');
execute insertartiradas('RA0242127,0500115741', '34', '03/05/2015 01:12:01','-11,6', 'RA02');
execute insertartiradas('RA0242127,0506134259', '23', '03/05/2015 01:12:53','14,3', 'RA02');
execute insertartiradas('RA0242127,051400463', '24', '03/05/2015 01:14:01','-12,4', 'RA02');
execute insertartiradas('RA0242127,0519560185', '5', '03/05/2015 01:14:49','13,8', 'RA02');
execute insertartiradas('RA0242127,0535185185', '3', '03/05/2015 01:17:04','-11,5', 'RA02');
execute insertartiradas('RA0242127,0538888889', '30', '03/05/2015 01:17:36','13,8', 'RA02');
execute insertartiradas('RA0242127,0542708333', '25', '03/05/2015 01:18:09','-14,6', 'RA02');
execute insertartiradas('RA0242127,0559027778', '22', '03/05/2015 01:20:30','14,4', 'RA02');
execute insertartiradas('RA0242127,0564467593', '24', '03/05/2015 01:21:17','-14', 'RA02');
execute insertartiradas('RA0242127,0570833333', '6', '03/05/2015 01:22:12','14,9', 'RA02');
execute insertartiradas('RA0242127,0577199074', '26', '03/05/2015 01:23:07','-13,6', 'RA02');
execute insertartiradas('RA0242127,0582291667', '27', '03/05/2015 01:23:51','16,5', 'RA02');
execute insertartiradas('RA0242127,0589236111', '9', '03/05/2015 01:24:51','-15,3', 'RA02');
execute insertartiradas('RA0242127,0594560185', '27', '03/05/2015 01:25:37','15,5', 'RA02');
execute insertartiradas('RA0242127,0607291667', '0', '03/05/2015 01:27:27','-14,3', 'RA02');
execute insertartiradas('RA0242127,0611921296', '12', '03/05/2015 01:28:07','15,8', 'RA02');
execute insertartiradas('RA0242127,0619675926', '6', '03/05/2015 01:29:14','-14,6', 'RA02');
execute insertartiradas('RA0242127,0625', '11', '03/05/2015 01:30:00','15,4', 'RA02');
execute insertartiradas('RA0242127,0633333333', '9', '03/05/2015 01:31:12','-15,7', 'RA02');
execute insertartiradas('RA0242127,0639930556', '1', '03/05/2015 01:32:09','17,4', 'RA02');
execute insertartiradas('RA0242127,0646990741', '8', '03/05/2015 01:33:10','-13,9', 'RA02');
execute insertartiradas('RA0242127,0652083333', '5', '03/05/2015 01:33:54','16,1', 'RA02');
execute insertartiradas('RA0242127,0658796296', '17', '03/05/2015 01:34:52','-15,6', 'RA02');
execute insertartiradas('RA0242127,0663541667', '29', '03/05/2015 01:35:33','15,7', 'RA02');
execute insertartiradas('RA0242127,0670138889', '10', '03/05/2015 01:36:30','-14,7', 'RA02');
execute insertartiradas('RA0242127,067662037', '26', '03/05/2015 01:37:26','15,6', 'RA02');
execute insertartiradas('RA0242127,068287037', '26', '03/05/2015 01:38:20','-14,4', 'RA02');
execute insertartiradas('RA0242127,0691087963', '26', '03/05/2015 01:39:31','15', 'RA02');
execute insertartiradas('RA0242127,0702199074', '3', '03/05/2015 01:41:07','-13,9', 'RA02');
execute insertartiradas('RA0242127,0711226852', '36', '03/05/2015 01:42:25','15,7', 'RA02');
execute insertartiradas('RA0242127,0717476852', '14', '03/05/2015 01:43:19','-13,3', 'RA02');
execute insertartiradas('RA0242127,0724421296', '22', '03/05/2015 01:44:19','14,3', 'RA02');
execute insertartiradas('RA0242127,0729050926', '21', '03/05/2015 01:44:59','-12,7', 'RA02');
execute insertartiradas('RA0242127,0736111111', '20', '03/05/2015 01:46:00','17', 'RA02');
execute insertartiradas('RA0242127,0742476852', '36', '03/05/2015 01:46:55','-14,4', 'RA02');
execute insertartiradas('RA0242127,7788541667', '29', '03/05/2015 18:41:33','-13,8', 'RA02');
execute insertartiradas('RA0242127,779375', '3', '03/05/2015 18:42:18','15,8', 'RA02');
execute insertartiradas('RA0242127,7798032407', '30', '03/05/2015 18:42:55','-14,5', 'RA02');
execute insertartiradas('RA0242127,7803935185', '21', '03/05/2015 18:43:46','16', 'RA02');
execute insertartiradas('RA0242127,7809953704', '6', '03/05/2015 18:44:38','-13,6', 'RA02');
execute insertartiradas('RA0242127,7815162037', '28', '03/05/2015 18:45:23','15,9', 'RA02');
execute insertartiradas('RA0242127,7821180556', '27', '03/05/2015 18:46:15','-13,8', 'RA02');
execute insertartiradas('RA0242127,7826851852', '11', '03/05/2015 18:47:04','14,5', 'RA02');
execute insertartiradas('RA0242127,7832175926', '22', '03/05/2015 18:47:50','-14', 'RA02');
execute insertartiradas('RA0242127,7922222222', '18', '03/05/2015 19:00:48','18,2', 'RA02');
execute insertartiradas('RA0242127,7991898148', '9', '03/05/2015 19:10:50','-15,8', 'RA02');
execute insertartiradas('RA0242127,8058449074', '7', '03/05/2015 19:20:25','18,3', 'RA02');
execute insertartiradas('RA0242127,8063425926', '20', '03/05/2015 19:21:08','-18,5', 'RA02');
execute insertartiradas('RA0242127,8067592593', '14', '03/05/2015 19:21:44','19,5', 'RA02');
execute insertartiradas('RA0242127,8071759259', '20', '03/05/2015 19:22:20','-17,9', 'RA02');
execute insertartiradas('RA0242127,8078472222', '17', '03/05/2015 19:23:18','18,4', 'RA02');
execute insertartiradas('RA0242127,8082986111', '13', '03/05/2015 19:23:57','-15,7', 'RA02');
execute insertartiradas('RA0242127,8087152778', '28', '03/05/2015 19:24:33','17,6', 'RA02');
execute insertartiradas('RA0242127,8092824074', '12', '03/05/2015 19:25:22','-19,6', 'RA02');
execute insertartiradas('RA0242127,8098263889', '27', '03/05/2015 19:26:09','18,1', 'RA02');
execute insertartiradas('RA0242127,8104976852', '29', '03/05/2015 19:27:07','-16,6', 'RA02');
execute insertartiradas('RA0242127,8108564815', '30', '03/05/2015 19:27:38','18,8', 'RA02');
execute insertartiradas('RA0242127,8112615741', '20', '03/05/2015 19:28:13','-17,5', 'RA02');
execute insertartiradas('RA0242127,8116087963', '16', '03/05/2015 19:28:43','17,7', 'RA02');
execute insertartiradas('RA0242127,8119907407', '22', '03/05/2015 19:29:16','-16', 'RA02');
execute insertartiradas('RA0242127,8124652778', '13', '03/05/2015 19:29:57','17,1', 'RA02');
execute insertartiradas('RA0242127,8128819444', '22', '03/05/2015 19:30:33','-16,6', 'RA02');
execute insertartiradas('RA0242127,8133680556', '4', '03/05/2015 19:31:15','17,3', 'RA02');
execute insertartiradas('RA0242127,8138425926', '18', '03/05/2015 19:31:56','-17,5', 'RA02');
execute insertartiradas('RA0242127,8141782407', '7', '03/05/2015 19:32:25','19,1', 'RA02');
execute insertartiradas('RA0242127,814537037', '24', '03/05/2015 19:32:56','-14,9', 'RA02');
execute insertartiradas('RA0242127,8151851852', '8', '03/05/2015 19:33:52','16,1', 'RA02');
execute insertartiradas('RA0242127,8157407407', '36', '03/05/2015 19:34:40','-17,4', 'RA02');
execute insertartiradas('RA0242127,8161689815', '8', '03/05/2015 19:35:17','17', 'RA02');
execute insertartiradas('RA0242127,8165162037', '29', '03/05/2015 19:35:47','-15,6', 'RA02');
execute insertartiradas('RA0242127,8176273148', '10', '03/05/2015 19:37:23','18,6', 'RA02');
execute insertartiradas('RA0242127,8180555556', '4', '03/05/2015 19:38:00','-13,5', 'RA02');
execute insertartiradas('RA0242127,8183680556', '36', '03/05/2015 19:38:27','17,6', 'RA02');
execute insertartiradas('RA0242127,8187731481', '12', '03/05/2015 19:39:02','-15,9', 'RA02');
execute insertartiradas('RA0242127,8191666667', '7', '03/05/2015 19:39:36','16,5', 'RA02');
execute insertartiradas('RA0242127,8196296296', '36', '03/05/2015 19:40:16','-17,9', 'RA02');
execute insertartiradas('RA0242127,8200810185', '36', '03/05/2015 19:40:55','17,4', 'RA02');
execute insertartiradas('RA0242127,8205092593', '17', '03/05/2015 19:41:32','-16,9', 'RA02');
execute insertartiradas('RA0242127,8209375', '36', '03/05/2015 19:42:09','18,9', 'RA02');
execute insertartiradas('RA0242127,8213425925', '24', '03/05/2015 19:42:44','-19', 'RA02');
execute insertartiradas('RA0242127,821724537', '35', '03/05/2015 19:43:17','17,4', 'RA02');
execute insertartiradas('RA0242127,8221296296', '17', '03/05/2015 19:43:52','-18,7', 'RA02');
execute insertartiradas('RA0242127,8231944444', '13', '03/05/2015 19:45:24','17,6', 'RA02');
execute insertartiradas('RA0242127,8236111111', '34', '03/05/2015 19:46:00','-17,2', 'RA02');
execute insertartiradas('RA0242127,8240046296', '29', '03/05/2015 19:46:34','18', 'RA02');
execute insertartiradas('RA0242127,8244212963', '9', '03/05/2015 19:47:10','-16,8', 'RA02');
execute insertartiradas('RA0242127,8247337962', '4', '03/05/2015 19:47:37','16,4', 'RA02');
execute insertartiradas('RA0242127,8250925926', '31', '03/05/2015 19:48:08','-18,1', 'RA02');
execute insertartiradas('RA0242127,8256481482', '32', '03/05/2015 19:48:56','19,7', 'RA02');
execute insertartiradas('RA0242127,8260416667', '6', '03/05/2015 19:49:30','-16,2', 'RA02');
execute insertartiradas('RA0242127,826412037', '24', '03/05/2015 19:50:02','15,8', 'RA02');
execute insertartiradas('RA0242127,8267824074', '18', '03/05/2015 19:50:34','-15,8', 'RA02');
execute insertartiradas('RA0242127,8270949074', '32', '03/05/2015 19:51:01','17,7', 'RA02');
execute insertartiradas('RA0242127,8274189815', '28', '03/05/2015 19:51:29','-17,5', 'RA02');
execute insertartiradas('RA0242127,8277662037', '2', '03/05/2015 19:51:59','17,9', 'RA02');
execute insertartiradas('RA0242127,828275463', '25', '03/05/2015 19:52:43','-18,7', 'RA02');
execute insertartiradas('RA0242127,8287037037', '22', '03/05/2015 19:53:20','17,9', 'RA02');
execute insertartiradas('RA0242127,8294328704', '2', '03/05/2015 19:54:23','-16,8', 'RA02');
execute insertartiradas('RA0242127,8298726852', '16', '03/05/2015 19:55:01','15', 'RA02');
execute insertartiradas('RA0242127,8304166667', '10', '03/05/2015 19:55:48','-20,2', 'RA02');
execute insertartiradas('RA0242127,8309722222', '23', '03/05/2015 19:56:36','17,2', 'RA02');
execute insertartiradas('RA0242127,8319907407', '2', '03/05/2015 19:58:04','-19,3', 'RA02');
execute insertartiradas('RA0242127,8325', '9', '03/05/2015 19:58:48','16,2', 'RA02');
execute insertartiradas('RA0242127,833125', '18', '03/05/2015 19:59:42','-17,1', 'RA02');
execute insertartiradas('RA0242127,8335069444', '25', '03/05/2015 20:00:15','15,4', 'RA02');
execute insertartiradas('RA0242127,8340856481', '16', '03/05/2015 20:01:05','-18,5', 'RA02');
execute insertartiradas('RA0242127,8347800926', '17', '03/05/2015 20:02:05','14,5', 'RA02');
execute insertartiradas('RA0242127,8351967593', '34', '03/05/2015 20:02:41','-16,6', 'RA02');
execute insertartiradas('RA0242127,835775463', '20', '03/05/2015 20:03:31','16,4', 'RA02');
execute insertartiradas('RA0242127,8364699074', '29', '03/05/2015 20:04:31','-16,2', 'RA02');
execute insertartiradas('RA0242127,8369444444', '21', '03/05/2015 20:05:12','17,1', 'RA02');
execute insertartiradas('RA0242127,8373726852', '23', '03/05/2015 20:05:49','-16,7', 'RA02');
execute insertartiradas('RA0242127,837962963', '15', '03/05/2015 20:06:40','14,7', 'RA02');
execute insertartiradas('RA0242127,8384606481', '1', '03/05/2015 20:07:23','-16,1', 'RA02');
execute insertartiradas('RA0242127,8390856481', '36', '03/05/2015 20:08:17','15,2', 'RA02');
execute insertartiradas('RA0242127,8395486111', '22', '03/05/2015 20:08:57','-18,3', 'RA02');
execute insertartiradas('RA0242127,8400231482', '25', '03/05/2015 20:09:38','16,9', 'RA02');
execute insertartiradas('RA0242127,8424421296', '31', '03/05/2015 20:13:07','-16,8', 'RA02');
execute insertartiradas('RA0242127,8428703704', '29', '03/05/2015 20:13:44','16,6', 'RA02');
execute insertartiradas('RA0242127,8433333333', '14', '03/05/2015 20:14:24','-16,9', 'RA02');
execute insertartiradas('RA0242127,8437731481', '4', '03/05/2015 20:15:02','15,7', 'RA02');
execute insertartiradas('RA0242127,8441666667', '33', '03/05/2015 20:15:36','-15,7', 'RA02');
execute insertartiradas('RA0242127,8445949074', '14', '03/05/2015 20:16:13','15,9', 'RA02');
execute insertartiradas('RA0242127,8449074074', '20', '03/05/2015 20:16:40','-17,6', 'RA02');
execute insertartiradas('RA0242127,8453125', '32', '03/05/2015 20:17:15','16,9', 'RA02');
execute insertartiradas('RA0242127,8482523148', '11', '03/05/2015 20:21:29','-17,9', 'RA02');
execute insertartiradas('RA0242127,8878472222', '11', '03/05/2015 21:18:30','17,4', 'RA02');
execute insertartiradas('RA0242127,8890972222', '6', '03/05/2015 21:20:18','-19,5', 'RA02');
execute insertartiradas('RA0242127,8900462963', '30', '03/05/2015 21:21:40','19,8', 'RA02');
execute insertartiradas('RA0242127,891087963', '22', '03/05/2015 21:23:10','-15,5', 'RA02');
execute insertartiradas('RA0242127,8931134259', '27', '03/05/2015 21:26:05','18', 'RA02');
execute insertartiradas('RA0242127,8939583333', '30', '03/05/2015 21:27:18','-15,5', 'RA02');
execute insertartiradas('RA0242127,8946759259', '36', '03/05/2015 21:28:20','15,7', 'RA02');
execute insertartiradas('RA0242127,8956712963', '2', '03/05/2015 21:29:46','-14,4', 'RA02');
execute insertartiradas('RA0242127,8963541667', '3', '03/05/2015 21:30:45','18,1', 'RA02');
execute insertartiradas('RA0242127,8969675926', '8', '03/05/2015 21:31:38','-15,2', 'RA02');
execute insertartiradas('RA0242127,8976967593', '28', '03/05/2015 21:32:41','15,7', 'RA02');
execute insertartiradas('RA0242127,8983101852', '10', '03/05/2015 21:33:34','-12', 'RA02');
execute insertartiradas('RA0242127,8992824074', '19', '03/05/2015 21:34:58','15', 'RA02');
execute insertartiradas('RA0242127,900150463', '19', '03/05/2015 21:36:13','-13,7', 'RA02');
execute insertartiradas('RA0242127,9009953704', '7', '03/05/2015 21:37:26','15,9', 'RA02');
execute insertartiradas('RA0242127,9018865741', '26', '03/05/2015 21:38:43','-13,9', 'RA02');
execute insertartiradas('RA0242127,9027662037', '33', '03/05/2015 21:39:59','16,4', 'RA02');
execute insertartiradas('RA0242127,9036805556', '35', '03/05/2015 21:41:18','-17,3', 'RA02');
execute insertartiradas('RA0242127,9043287037', '12', '03/05/2015 21:42:14','17,9', 'RA02');
execute insertartiradas('RA0242127,9048726852', '26', '03/05/2015 21:43:01','-17,2', 'RA02');
execute insertartiradas('RA0242127,9053587963', '32', '03/05/2015 21:43:43','19,4', 'RA02');
execute insertartiradas('RA0242127,9059143519', '27', '03/05/2015 21:44:31','-16,2', 'RA02');
execute insertartiradas('RA0242127,9069791666', '5', '03/05/2015 21:46:03','16,8', 'RA02');
execute insertartiradas('RA0242127,9099421296', '33', '03/05/2015 21:50:19','-17,8', 'RA02');
execute insertartiradas('RA0242127,9106018519', '23', '03/05/2015 21:51:16','23,3', 'RA02');
execute insertartiradas('RA0242127,911712963', '0', '03/05/2015 21:52:52','-16,8', 'RA02');
execute insertartiradas('RA0242127,9125694444', '35', '03/05/2015 21:54:06','18,6', 'RA02');
execute insertartiradas('RA0242127,9134027778', '10', '03/05/2015 21:55:18','-15,7', 'RA02');
execute insertartiradas('RA0242127,9140162037', '6', '03/05/2015 21:56:11','18,2', 'RA02');
execute insertartiradas('RA0242127,9145717593', '6', '03/05/2015 21:56:59','-20,1', 'RA02');
execute insertartiradas('RA0242127,915474537', '14', '03/05/2015 21:58:17','16,8', 'RA02');
execute insertartiradas('RA0242127,9162615741', '7', '03/05/2015 21:59:25','-17,1', 'RA02');
execute insertartiradas('RA0242127,9168981481', '8', '03/05/2015 22:00:20','18', 'RA02');
execute insertartiradas('RA0242127,9182291667', '10', '03/05/2015 22:02:15','-16,2', 'RA02');
execute insertartiradas('RA0242127,9191898148', '20', '03/05/2015 22:03:38','22,1', 'RA02');
execute insertartiradas('RA0242127,9203240741', '0', '03/05/2015 22:05:16','-20', 'RA02');
execute insertartiradas('RA0242127,9210300926', '20', '03/05/2015 22:06:17','16,6', 'RA02');
execute insertartiradas('RA0242127,9221064815', '5', '03/05/2015 22:07:50','-17,6', 'RA02');
execute insertartiradas('RA0242127,9231134259', '9', '03/05/2015 22:09:17','16,6', 'RA02');
execute insertartiradas('RA0242127,9252662037', '22', '03/05/2015 22:12:23','-13,1', 'RA02');
execute insertartiradas('RA0242127,9263425926', '23', '03/05/2015 22:13:56','13,6', 'RA02');
execute insertartiradas('RA0242127,927349537', '16', '03/05/2015 22:15:23','-15,4', 'RA02');
execute insertartiradas('RA0242127,928125', '16', '03/05/2015 22:16:30','17,8', 'RA02');
execute insertartiradas('RA0242127,9288310185', '19', '03/05/2015 22:17:31','-20,5', 'RA02');
execute insertartiradas('RA0242127,9296412037', '8', '03/05/2015 22:18:41','19,8', 'RA02');
execute insertartiradas('RA0242127,9302430556', '25', '03/05/2015 22:19:33','-17,2', 'RA02');
execute insertartiradas('RA0242127,9313541667', '7', '03/05/2015 22:21:09','21,5', 'RA02');
execute insertartiradas('RA0242127,9327893518', '30', '03/05/2015 22:23:13','-16,9', 'RA02');
execute insertartiradas('RA0242127,933900463', '30', '03/05/2015 22:24:49','21,2', 'RA02');
execute insertartiradas('RA0242127,9358333333', '16', '03/05/2015 22:27:36','-18,7', 'RA02');
execute insertartiradas('RA0242127,9372222222', '17', '03/05/2015 22:29:36','21,9', 'RA02');
execute insertartiradas('RA0242127,9385069444', '24', '03/05/2015 22:31:27','-16,4', 'RA02');
execute insertartiradas('RA0242127,9398842593', '36', '03/05/2015 22:33:26','18,6', 'RA02');
execute insertartiradas('RA0242127,9409490741', '22', '03/05/2015 22:34:58','-18,6', 'RA02');
execute insertartiradas('RA0242127,9419328704', '25', '03/05/2015 22:36:23','18,2', 'RA02');
execute insertartiradas('RA0242127,9431597222', '15', '03/05/2015 22:38:09','-17,2', 'RA02');
execute insertartiradas('RA0242127,944224537', '13', '03/05/2015 22:39:41','17', 'RA02');
execute insertartiradas('RA0242127,9452662037', '9', '03/05/2015 22:41:11','-18,6', 'RA02');
execute insertartiradas('RA0242127,9461689815', '8', '03/05/2015 22:42:29','20', 'RA02');
execute insertartiradas('RA0242127,9472453704', '25', '03/05/2015 22:44:02','-20,2', 'RA02');
execute insertartiradas('RA0242127,9482986111', '28', '03/05/2015 22:45:33','18,8', 'RA02');
execute insertartiradas('RA0242127,9494560185', '16', '03/05/2015 22:47:13','-18,8', 'RA02');
execute insertartiradas('RA0242127,9501851852', '14', '03/05/2015 22:48:16','19,3', 'RA02');
execute insertartiradas('RA0242127,950787037', '0', '03/05/2015 22:49:08','-17,7', 'RA02');
execute insertartiradas('RA0242127,9512962963', '33', '03/05/2015 22:49:52','21,8', 'RA02');
execute insertartiradas('RA0242127,9518518519', '20', '03/05/2015 22:50:40','-18,6', 'RA02');
execute insertartiradas('RA0242127,9529166667', '9', '03/05/2015 22:52:12','22,2', 'RA02');
execute insertartiradas('RA0242127,9540972222', '14', '03/05/2015 22:53:54','-19,3', 'RA02');
execute insertartiradas('RA0242127,9550462963', '0', '03/05/2015 22:55:16','16,7', 'RA02');
execute insertartiradas('RA0242127,9561689815', '6', '03/05/2015 22:56:53','-18', 'RA02');
execute insertartiradas('RA0242127,9572569444', '34', '03/05/2015 22:58:27','20,4', 'RA02');
execute insertartiradas('RA0242127,9587037037', '24', '03/05/2015 23:00:32','-19,7', 'RA02');
execute insertartiradas('RA0242127,96', '17', '03/05/2015 23:02:24','14,7', 'RA02');
execute insertartiradas('RA0242127,9609375', '30', '03/05/2015 23:03:45','-18,9', 'RA02');
execute insertartiradas('RA0242127,9621412037', '11', '03/05/2015 23:05:29','19,6', 'RA02');
execute insertartiradas('RA0242127,9634027778', '8', '03/05/2015 23:07:18','-19', 'RA02');
execute insertartiradas('RA0242127,9648032407', '20', '03/05/2015 23:09:19','22,4', 'RA02');
execute insertartiradas('RA0242127,9656365741', '2', '03/05/2015 23:10:31','-23,6', 'RA02');
execute insertartiradas('RA0242127,9666782407', '22', '03/05/2015 23:12:01','19,4', 'RA02');
execute insertartiradas('RA0242127,9680092593', '3', '03/05/2015 23:13:56','-19,4', 'RA02');
execute insertartiradas('RA0242127,968912037', '27', '03/05/2015 23:15:14','18,6', 'RA02');
execute insertartiradas('RA0242127,969837963', '9', '03/05/2015 23:16:34','-19,9', 'RA02');
execute insertartiradas('RA0242127,9706597222', '8', '03/05/2015 23:17:45','17,3', 'RA02');
execute insertartiradas('RA0242127,9714236111', '24', '03/05/2015 23:18:51','-18,9', 'RA02');
execute insertartiradas('RA0242127,9725', '36', '03/05/2015 23:20:24','16,3', 'RA02');
execute insertartiradas('RA0242127,9732407407', '2', '03/05/2015 23:21:28','-18,6', 'RA02');
execute insertartiradas('RA0242127,9738310185', '6', '03/05/2015 23:22:19','15,6', 'RA02');
execute insertartiradas('RA0242127,9747453704', '28', '03/05/2015 23:23:38','-14,9', 'RA02');
execute insertartiradas('RA0242127,9753472222', '5', '03/05/2015 23:24:30','16,9', 'RA02');
execute insertartiradas('RA0242127,975787037', '7', '03/05/2015 23:25:08','-12,9', 'RA02');
execute insertartiradas('RA0242127,9762962963', '27', '03/05/2015 23:25:52','14,7', 'RA02');
execute insertartiradas('RA0242127,9768865741', '34', '03/05/2015 23:26:43','-13,6', 'RA02');
execute insertartiradas('RA0242127,9773842593', '24', '03/05/2015 23:27:26','17', 'RA02');
execute insertartiradas('RA0242127,9785532407', '28', '03/05/2015 23:29:07','-12,8', 'RA02');
execute insertartiradas('RA0242127,9791550926', '20', '03/05/2015 23:29:59','16,1', 'RA02');
execute insertartiradas('RA0242127,9796296296', '11', '03/05/2015 23:30:40','-14,4', 'RA02');
execute insertartiradas('RA0242127,9800462963', '14', '03/05/2015 23:31:16','16,5', 'RA02');
execute insertartiradas('RA0242127,9810069444', '19', '03/05/2015 23:32:39','-17,7', 'RA02');
execute insertartiradas('RA0242127,9815393519', '24', '03/05/2015 23:33:25','16,1', 'RA02');
execute insertartiradas('RA0242127,9819444444', '14', '03/05/2015 23:34:00','-14,5', 'RA02');
execute insertartiradas('RA0242127,9824074074', '18', '03/05/2015 23:34:40','13,4', 'RA02');
execute insertartiradas('RA0242127,9828819444', '27', '03/05/2015 23:35:21','-12,9', 'RA02');
execute insertartiradas('RA0242127,9834143519', '36', '03/05/2015 23:36:07','13,5', 'RA02');
execute insertartiradas('RA0242127,9838541667', '33', '03/05/2015 23:36:45','-14,5', 'RA02');
execute insertartiradas('RA0242127,9845601852', '30', '03/05/2015 23:37:46','16,5', 'RA02');
execute insertartiradas('RA0242127,9853009259', '13', '03/05/2015 23:38:50','-13,2', 'RA02');
execute insertartiradas('RA0242127,985787037', '29', '03/05/2015 23:39:32','14,6', 'RA02');
execute insertartiradas('RA0242127,9863310185', '19', '03/05/2015 23:40:19','-14,6', 'RA02');
execute insertartiradas('RA0242127,9868865741', '32', '03/05/2015 23:41:07','15,5', 'RA02');
execute insertartiradas('RA0242127,9876851852', '35', '03/05/2015 23:42:16','-11,8', 'RA02');
execute insertartiradas('RA0242127,9882060185', '19', '03/05/2015 23:43:01','13,1', 'RA02');
execute insertartiradas('RA0242127,9886921296', '36', '03/05/2015 23:43:43','-12,3', 'RA02');
execute insertartiradas('RA0242127,9891898148', '32', '03/05/2015 23:44:26','14,8', 'RA02');
execute insertartiradas('RA0242127,9899305556', '19', '03/05/2015 23:45:30','-12', 'RA02');
execute insertartiradas('RA0242127,9903703704', '28', '03/05/2015 23:46:08','16,4', 'RA02');
execute insertartiradas('RA0242127,9911458333', '36', '03/05/2015 23:47:15','-11,6', 'RA02');
execute insertartiradas('RA0242127,991875', '3', '03/05/2015 23:48:18','17,3', 'RA02');
execute insertartiradas('RA0242127,9925115741', '33', '03/05/2015 23:49:13','-12,4', 'RA02');
execute insertartiradas('RA0242127,9930787037', '4', '03/05/2015 23:50:02','16', 'RA02');
execute insertartiradas('RA0242127,9937152778', '4', '03/05/2015 23:50:57','-14,9', 'RA02');
execute insertartiradas('RA0242127,9944444444', '6', '03/05/2015 23:52:00','15,6', 'RA02');
execute insertartiradas('RA0242127,9956597222', '4', '03/05/2015 23:53:45','-15', 'RA02');
execute insertartiradas('RA0242127,9963541667', '22', '03/05/2015 23:54:45','20,7', 'RA02');
execute insertartiradas('RA0242127,9970601852', '27', '03/05/2015 23:55:46','-15,2', 'RA02');
execute insertartiradas('RA0242127,9976736111', '30', '03/05/2015 23:56:39','15,5', 'RA02');
execute insertartiradas('RA0242127,9981828704', '2', '03/05/2015 23:57:23','-11,3', 'RA02');
execute insertartiradas('RA0242127,9990393519', '1', '03/05/2015 23:58:37','18,1', 'RA02');
execute insertartiradas('RA0242127,9999884259', '30', '03/05/2015 23:59:59','-11,6', 'RA02');
execute insertartiradas('RA0242128,0006018519', '27', '04/05/2015 00:00:52','12,2', 'RA02');
execute insertartiradas('RA0242128,0013657407', '34', '04/05/2015 00:01:58','-14,2', 'RA02');
execute insertartiradas('RA0242128,0018402778', '17', '04/05/2015 00:02:39','16,1', 'RA02');
execute insertartiradas('RA0242128,0024421296', '8', '04/05/2015 00:03:31','-13,3', 'RA02');
execute insertartiradas('RA0242128,003125', '8', '04/05/2015 00:04:30','16,4', 'RA02');
execute insertartiradas('RA0242128,003900463', '4', '04/05/2015 00:05:37','-12,6', 'RA02');
execute insertartiradas('RA0242128,0044791667', '21', '04/05/2015 00:06:27','15,3', 'RA02');
execute insertartiradas('RA0242128,0050694444', '0', '04/05/2015 00:07:18','-14', 'RA02');
execute insertartiradas('RA0242128,0055902778', '0', '04/05/2015 00:08:03','20,1', 'RA02');
execute insertartiradas('RA0242128,0062152778', '30', '04/05/2015 00:08:57','-14,2', 'RA02');
execute insertartiradas('RA0242128,0068981481', '15', '04/05/2015 00:09:56','16,5', 'RA02');
execute insertartiradas('RA0242128,0075347222', '1', '04/05/2015 00:10:51','-12,5', 'RA02');
execute insertartiradas('RA0242128,0079861111', '6', '04/05/2015 00:11:30','15,3', 'RA02');
execute insertartiradas('RA0242128,00875', '16', '04/05/2015 00:12:36','-14,2', 'RA02');
execute insertartiradas('RA0242128,0093402778', '29', '04/05/2015 00:13:27','14', 'RA02');
execute insertartiradas('RA0242128,0100347222', '25', '04/05/2015 00:14:27','-11,3', 'RA02');
execute insertartiradas('RA0242128,0105787037', '9', '04/05/2015 00:15:14','14,3', 'RA02');
execute insertartiradas('RA0242128,0111689815', '36', '04/05/2015 00:16:05','-13,1', 'RA02');
execute insertartiradas('RA0242128,0116782407', '24', '04/05/2015 00:16:49','13,6', 'RA02');
execute insertartiradas('RA0242128,0121064815', '29', '04/05/2015 00:17:26','-12,5', 'RA02');
execute insertartiradas('RA0242128,0126273148', '2', '04/05/2015 00:18:11','13,9', 'RA02');
execute insertartiradas('RA0242128,0132060185', '3', '04/05/2015 00:19:01','-15,7', 'RA02');
execute insertartiradas('RA0242128,0143981481', '19', '04/05/2015 00:20:44','15,2', 'RA02');
execute insertartiradas('RA0242128,014837963', '23', '04/05/2015 00:21:22','-17,6', 'RA02');
execute insertartiradas('RA0242128,0152083333', '25', '04/05/2015 00:21:54','18,3', 'RA02');
execute insertartiradas('RA0242128,0155902778', '21', '04/05/2015 00:22:27','-15,9', 'RA02');
execute insertartiradas('RA0242128,0163541666', '21', '04/05/2015 00:23:33','18', 'RA02');
execute insertartiradas('RA0242128,0168981481', '3', '04/05/2015 00:24:20','-18,7', 'RA02');
execute insertartiradas('RA0242128,0174074074', '27', '04/05/2015 00:25:04','17,6', 'RA02');
execute insertartiradas('RA0242128,017974537', '25', '04/05/2015 00:25:53','-18,6', 'RA02');
execute insertartiradas('RA0242128,0188310185', '1', '04/05/2015 00:27:07','18', 'RA02');
execute insertartiradas('RA0242128,0193171296', '6', '04/05/2015 00:27:49','-16,7', 'RA02');
execute insertartiradas('RA0242128,0199884259', '24', '04/05/2015 00:28:47','14,5', 'RA02');
execute insertartiradas('RA0242128,0206018519', '36', '04/05/2015 00:29:40','-17,7', 'RA02');
execute insertartiradas('RA0242128,0211921296', '15', '04/05/2015 00:30:31','16,9', 'RA02');
execute insertartiradas('RA0242128,0217939815', '25', '04/05/2015 00:31:23','-19,1', 'RA02');
execute insertartiradas('RA0242128,0221875', '36', '04/05/2015 00:31:57','16,8', 'RA02');
execute insertartiradas('RA0242128,0227546296', '13', '04/05/2015 00:32:46','-17,7', 'RA02');
execute insertartiradas('RA0242128,0237615741', '13', '04/05/2015 00:34:13','14,7', 'RA02');
execute insertartiradas('RA0242128,0243402778', '16', '04/05/2015 00:35:03','-17,2', 'RA02');
execute insertartiradas('RA0242128,025', '31', '04/05/2015 00:36:00','19', 'RA02');
execute insertartiradas('RA0242128,0258101852', '21', '04/05/2015 00:37:10','-18,5', 'RA02');
execute insertartiradas('RA0242128,026400463', '24', '04/05/2015 00:38:01','18', 'RA02');
execute insertartiradas('RA0242128,0270486111', '33', '04/05/2015 00:38:57','-18,9', 'RA02');
execute insertartiradas('RA0242128,0277893519', '6', '04/05/2015 00:40:01','17,7', 'RA02');
execute insertartiradas('RA0242128,0285185185', '7', '04/05/2015 00:41:04','-17,3', 'RA02');
execute insertartiradas('RA0242128,0290856482', '4', '04/05/2015 00:41:53','17', 'RA02');
execute insertartiradas('RA0242128,0295486111', '30', '04/05/2015 00:42:33','-20', 'RA02');
execute insertartiradas('RA0242128,0301041667', '4', '04/05/2015 00:43:21','18,2', 'RA02');
execute insertartiradas('RA0242128,0308333333', '30', '04/05/2015 00:44:24','-17,5', 'RA02');
execute insertartiradas('RA0242128,0313078704', '35', '04/05/2015 00:45:05','16,5', 'RA02');
execute insertartiradas('RA0242128,032025463', '12', '04/05/2015 00:46:07','-18,7', 'RA02');
execute insertartiradas('RA0242128,0325694444', '36', '04/05/2015 00:46:54','18,6', 'RA02');
execute insertartiradas('RA0242128,033125', '4', '04/05/2015 00:47:42','-19,5', 'RA02');
execute insertartiradas('RA0242128,0335069444', '20', '04/05/2015 00:48:15','16,6', 'RA02');
execute insertartiradas('RA0242128,0339583333', '15', '04/05/2015 00:48:54','-16,5', 'RA02');
execute insertartiradas('RA0242128,0343518518', '12', '04/05/2015 00:49:28','17,9', 'RA02');
execute insertartiradas('RA0242128,0347800926', '24', '04/05/2015 00:50:05','-17,9', 'RA02');
execute insertartiradas('RA0242128,0352430556', '9', '04/05/2015 00:50:45','16,6', 'RA02');
execute insertartiradas('RA0242128,0357060185', '4', '04/05/2015 00:51:25','-17,9', 'RA02');
execute insertartiradas('RA0242128,0360763889', '1', '04/05/2015 00:51:57','17,1', 'RA02');
execute insertartiradas('RA0242128,0365625', '29', '04/05/2015 00:52:39','-18', 'RA02');
execute insertartiradas('RA0242128,0369328704', '15', '04/05/2015 00:53:11','17,5', 'RA02');
execute insertartiradas('RA0242128,0372916667', '27', '04/05/2015 00:53:42','-18,3', 'RA02');
execute insertartiradas('RA0242128,0376388889', '24', '04/05/2015 00:54:12','16,3', 'RA02');
execute insertartiradas('RA0242128,0412384259', '22', '04/05/2015 00:59:23','-18,2', 'RA02');
execute insertartiradas('RA0242128,0429976852', '28', '04/05/2015 01:01:55','16,5', 'RA02');
execute insertartiradas('RA0242128,0436689815', '33', '04/05/2015 01:02:53','-14,4', 'RA02');
execute insertartiradas('RA0242128,0442361111', '36', '04/05/2015 01:03:42','17,3', 'RA02');
execute insertartiradas('RA0242128,0448611111', '19', '04/05/2015 01:04:36','-14,8', 'RA02');
execute insertartiradas('RA0242128,0458449074', '35', '04/05/2015 01:06:01','17,1', 'RA02');
execute insertartiradas('RA0242128,0463194444', '19', '04/05/2015 01:06:42','-10', 'RA02');
execute insertartiradas('RA0242128,0468981481', '27', '04/05/2015 01:07:32','14,6', 'RA02');
execute insertartiradas('RA0242128,0475925926', '15', '04/05/2015 01:08:32','-13,1', 'RA02');
execute insertartiradas('RA0242128,0489351851', '34', '04/05/2015 01:10:28','16,1', 'RA02');
execute insertartiradas('RA0242128,0495833333', '12', '04/05/2015 01:11:24','-15,5', 'RA02');
execute insertartiradas('RA0242128,050150463', '8', '04/05/2015 01:12:13','18,2', 'RA02');
execute insertartiradas('RA0242128,0508101852', '12', '04/05/2015 01:13:10','-16,4', 'RA02');
execute insertartiradas('RA0242128,0513888889', '10', '04/05/2015 01:14:00','18,6', 'RA02');
execute insertartiradas('RA0242128,0521527778', '17', '04/05/2015 01:15:06','-14,7', 'RA02');
execute insertartiradas('RA0242128,0527430556', '26', '04/05/2015 01:15:57','17,2', 'RA02');
execute insertartiradas('RA0242128,0533796296', '31', '04/05/2015 01:16:52','-14,2', 'RA02');
execute insertartiradas('RA0242128,0539699074', '21', '04/05/2015 01:17:43','15,1', 'RA02');
execute insertartiradas('RA0242128,054537037', '9', '04/05/2015 01:18:32','-15,3', 'RA02');
execute insertartiradas('RA0242128,0549768519', '22', '04/05/2015 01:19:10','17,7', 'RA02');
execute insertartiradas('RA0242128,0554513889', '17', '04/05/2015 01:19:51','-13,9', 'RA02');
execute insertartiradas('RA0242128,0560416667', '8', '04/05/2015 01:20:42','14,8', 'RA02');
execute insertartiradas('RA0242128,0565625', '0', '04/05/2015 01:21:27','-14,8', 'RA02');
execute insertartiradas('RA0242128,0570833333', '4', '04/05/2015 01:22:12','15,2', 'RA02');
execute insertartiradas('RA0242128,0575', '21', '04/05/2015 01:22:48','-15,2', 'RA02');
execute insertartiradas('RA0242128,0579513889', '33', '04/05/2015 01:23:27','15,6', 'RA02');
execute insertartiradas('RA0242128,0584606481', '30', '04/05/2015 01:24:11','-14,1', 'RA02');
execute insertartiradas('RA0242128,0588773148', '24', '04/05/2015 01:24:47','16,4', 'RA02');
execute insertartiradas('RA0242128,0592592593', '34', '04/05/2015 01:25:20','-12,5', 'RA02');
execute insertartiradas('RA0242128,0596180556', '35', '04/05/2015 01:25:51','18', 'RA02');
execute insertartiradas('RA0242128,0599884259', '9', '04/05/2015 01:26:23','-16', 'RA02');
execute insertartiradas('RA0242128,0604050926', '13', '04/05/2015 01:26:59','15,2', 'RA02');
execute insertartiradas('RA0242128,060787037', '35', '04/05/2015 01:27:32','-15,2', 'RA02');
execute insertartiradas('RA0242128,0612384259', '15', '04/05/2015 01:28:11','17,2', 'RA02');
execute insertartiradas('RA0242128,0616087963', '20', '04/05/2015 01:28:43','-13,4', 'RA02');
execute insertartiradas('RA0242128,7567476852', '10', '04/05/2015 18:09:43','19,6', 'RA02');
execute insertartiradas('RA0242128,7571875', '16', '04/05/2015 18:10:21','-17,1', 'RA02');
execute insertartiradas('RA0242128,7577430556', '36', '04/05/2015 18:11:09','21,8', 'RA02');
execute insertartiradas('RA0242128,7582291667', '15', '04/05/2015 18:11:51','-16,9', 'RA02');
execute insertartiradas('RA0242128,758900463', '5', '04/05/2015 18:12:49','19', 'RA02');
execute insertartiradas('RA0242128,7594212963', '6', '04/05/2015 18:13:34','-17,1', 'RA02');
execute insertartiradas('RA0242128,7603356481', '19', '04/05/2015 18:14:53','16,7', 'RA02');
execute insertartiradas('RA0242128,7615625', '33', '04/05/2015 18:16:39','-17,6', 'RA02');
execute insertartiradas('RA0242128,7620486111', '25', '04/05/2015 18:17:21','20,8', 'RA02');
execute insertartiradas('RA0242128,7627314815', '19', '04/05/2015 18:18:20','-16,2', 'RA02');
execute insertartiradas('RA0242128,7634143519', '8', '04/05/2015 18:19:19','13,6', 'RA02');
execute insertartiradas('RA0242128,7638194444', '14', '04/05/2015 18:19:54','-16', 'RA02');
execute insertartiradas('RA0242128,7656597222', '23', '04/05/2015 18:22:33','21,9', 'RA02');
execute insertartiradas('RA0242128,7665740741', '11', '04/05/2015 18:23:52','-17,4', 'RA02');
execute insertartiradas('RA0242128,7671527778', '34', '04/05/2015 18:24:42','22,9', 'RA02');
execute insertartiradas('RA0242128,7683680556', '19', '04/05/2015 18:26:27','-17,3', 'RA02');
execute insertartiradas('RA0242128,7693518518', '15', '04/05/2015 18:27:52','17,6', 'RA02');
execute insertartiradas('RA0242128,7702777778', '16', '04/05/2015 18:29:12','-14,3', 'RA02');
execute insertartiradas('RA0242128,7708217593', '25', '04/05/2015 18:29:59','16,8', 'RA02');
execute insertartiradas('RA0242128,7712962963', '25', '04/05/2015 18:30:40','-15,8', 'RA02');
execute insertartiradas('RA0242128,7722106481', '2', '04/05/2015 18:31:59','18,2', 'RA02');
execute insertartiradas('RA0242128,7731134259', '12', '04/05/2015 18:33:17','-14,1', 'RA02');
execute insertartiradas('RA0242128,7740625', '11', '04/05/2015 18:34:39','15,8', 'RA02');
execute insertartiradas('RA0242128,7750925926', '5', '04/05/2015 18:36:08','-17,1', 'RA02');
execute insertartiradas('RA0242128,7755439815', '9', '04/05/2015 18:36:47','19,1', 'RA02');
execute insertartiradas('RA0242128,7763425926', '15', '04/05/2015 18:37:56','-16,5', 'RA02');
execute insertartiradas('RA0242128,7771180556', '2', '04/05/2015 18:39:03','20,3', 'RA02');
execute insertartiradas('RA0242128,7781828704', '30', '04/05/2015 18:40:35','-17,7', 'RA02');
execute insertartiradas('RA0242128,779525463', '30', '04/05/2015 18:42:31','20', 'RA02');
execute insertartiradas('RA0242128,7810416667', '9', '04/05/2015 18:44:42','-16,1', 'RA02');
execute insertartiradas('RA0242128,7821759259', '10', '04/05/2015 18:46:20','21,3', 'RA02');
execute insertartiradas('RA0242128,7833217593', '31', '04/05/2015 18:47:59','-16,8', 'RA02');
execute insertartiradas('RA0242128,7844097222', '3', '04/05/2015 18:49:33','17,9', 'RA02');
execute insertartiradas('RA0242128,7851967593', '33', '04/05/2015 18:50:41','-18,3', 'RA02');
execute insertartiradas('RA0242128,7857986111', '22', '04/05/2015 18:51:33','19,8', 'RA02');
execute insertartiradas('RA0242128,7865393519', '22', '04/05/2015 18:52:37','-16', 'RA02');
execute insertartiradas('RA0242128,7877314814', '16', '04/05/2015 18:54:20','18,9', 'RA02');
execute insertartiradas('RA0242128,7884027778', '12', '04/05/2015 18:55:18','-15,6', 'RA02');
execute insertartiradas('RA0242128,7889699074', '0', '04/05/2015 18:56:07','19,6', 'RA02');
execute insertartiradas('RA0242128,789375', '8', '04/05/2015 18:56:42','-20,8', 'RA02');
execute insertartiradas('RA0242128,789837963', '32', '04/05/2015 18:57:22','19,2', 'RA02');
execute insertartiradas('RA0242128,7906712963', '24', '04/05/2015 18:58:34','-16', 'RA02');
execute insertartiradas('RA0242128,7913425926', '6', '04/05/2015 18:59:32','21,7', 'RA02');
execute insertartiradas('RA0242128,7920949074', '28', '04/05/2015 19:00:37','-15', 'RA02');
execute insertartiradas('RA0242128,7929976852', '16', '04/05/2015 19:01:55','20,4', 'RA02');
execute insertartiradas('RA0242128,7936805556', '29', '04/05/2015 19:02:54','-21,1', 'RA02');
execute insertartiradas('RA0242128,7942129629', '24', '04/05/2015 19:03:40','25,1', 'RA02');
execute insertartiradas('RA0242128,7950115741', '8', '04/05/2015 19:04:49','-20,5', 'RA02');
execute insertartiradas('RA0242128,7955555556', '21', '04/05/2015 19:05:36','24', 'RA02');
execute insertartiradas('RA0242128,7960185185', '29', '04/05/2015 19:06:16','-19,9', 'RA02');
execute insertartiradas('RA0242128,7966782407', '23', '04/05/2015 19:07:13','19,7', 'RA02');
execute insertartiradas('RA0242128,7975115741', '0', '04/05/2015 19:08:25','-19,6', 'RA02');
execute insertartiradas('RA0242128,7986342593', '17', '04/05/2015 19:10:02','23', 'RA02');
execute insertartiradas('RA0242128,7994444444', '27', '04/05/2015 19:11:12','-24,9', 'RA02');
execute insertartiradas('RA0242128,8000925926', '24', '04/05/2015 19:12:08','22,1', 'RA02');
execute insertartiradas('RA0242128,8006597222', '31', '04/05/2015 19:12:57','-23,7', 'RA02');
execute insertartiradas('RA0242128,8012037037', '20', '04/05/2015 19:13:44','23,1', 'RA02');
execute insertartiradas('RA0242128,8021527778', '36', '04/05/2015 19:15:06','-17,6', 'RA02');
execute insertartiradas('RA0242128,8031481481', '6', '04/05/2015 19:16:32','22,1', 'RA02');
execute insertartiradas('RA0242128,8038425926', '20', '04/05/2015 19:17:32','-24,1', 'RA02');
execute insertartiradas('RA0242128,8048611111', '17', '04/05/2015 19:19:00','21,4', 'RA02');
execute insertartiradas('RA0242128,8058333333', '11', '04/05/2015 19:20:24','-21,8', 'RA02');
execute insertartiradas('RA0242128,8062847222', '22', '04/05/2015 19:21:03','21,8', 'RA02');
execute insertartiradas('RA0242128,8072685185', '10', '04/05/2015 19:22:28','-18,9', 'RA02');
execute insertartiradas('RA0242128,8081944444', '5', '04/05/2015 19:23:48','17,3', 'RA02');
execute insertartiradas('RA0242128,8091550926', '22', '04/05/2015 19:25:11','-22,4', 'RA02');
execute insertartiradas('RA0242128,8097222222', '1', '04/05/2015 19:26:00','17,9', 'RA02');
execute insertartiradas('RA0242128,8105555556', '27', '04/05/2015 19:27:12','-21,6', 'RA02');
execute insertartiradas('RA0242128,8111574074', '33', '04/05/2015 19:28:04','23,6', 'RA02');
execute insertartiradas('RA0242128,8116550926', '33', '04/05/2015 19:28:47','-19,7', 'RA02');
execute insertartiradas('RA0242128,8121759259', '23', '04/05/2015 19:29:32','17,9', 'RA02');
execute insertartiradas('RA0242128,8126851852', '13', '04/05/2015 19:30:16','-18,3', 'RA02');
execute insertartiradas('RA0242128,8131828704', '20', '04/05/2015 19:30:59','15,7', 'RA02');
execute insertartiradas('RA0242128,8139351852', '36', '04/05/2015 19:32:04','-19', 'RA02');
execute insertartiradas('RA0242128,8152662037', '33', '04/05/2015 19:33:59','23,1', 'RA02');
execute insertartiradas('RA0242128,8168634259', '2', '04/05/2015 19:36:17','-11,6', 'RA02');
execute insertartiradas('RA0242128,8179282407', '36', '04/05/2015 19:37:49','15,5', 'RA02');
execute insertartiradas('RA0242128,8189699074', '16', '04/05/2015 19:39:19','-18,2', 'RA02');
execute insertartiradas('RA0242128,8198726852', '2', '04/05/2015 19:40:37','17,7', 'RA02');
execute insertartiradas('RA0242128,8209837963', '33', '04/05/2015 19:42:13','-20', 'RA02');
execute insertartiradas('RA0242128,8226041667', '14', '04/05/2015 19:44:33','18,7', 'RA02');
execute insertartiradas('RA0242128,823587963', '4', '04/05/2015 19:45:58','-19', 'RA02');
execute insertartiradas('RA0242128,8244791667', '26', '04/05/2015 19:47:15','19,7', 'RA02');
execute insertartiradas('RA0242128,8256018519', '7', '04/05/2015 19:48:52','-19,5', 'RA02');
execute insertartiradas('RA0242128,8260648148', '7', '04/05/2015 19:49:32','19,6', 'RA02');
execute insertartiradas('RA0242128,8268402778', '32', '04/05/2015 19:50:39','-20,4', 'RA02');
execute insertartiradas('RA0242128,8276967593', '12', '04/05/2015 19:51:53','21,3', 'RA02');
execute insertartiradas('RA0242128,8286805556', '24', '04/05/2015 19:53:18','-15,2', 'RA02');
execute insertartiradas('RA0242128,8292939815', '27', '04/05/2015 19:54:11','17,7', 'RA02');
execute insertartiradas('RA0242128,8300231481', '29', '04/05/2015 19:55:14','-17,3', 'RA02');
execute insertartiradas('RA0242128,8306944444', '35', '04/05/2015 19:56:12','13,2', 'RA02');
execute insertartiradas('RA0242128,8311342593', '20', '04/05/2015 19:56:50','-17,6', 'RA02');
execute insertartiradas('RA0242128,8316782407', '20', '04/05/2015 19:57:37','18,2', 'RA02');
execute insertartiradas('RA0242128,8325925926', '10', '04/05/2015 19:58:56','-17,1', 'RA02');
execute insertartiradas('RA0242128,8331018519', '21', '04/05/2015 19:59:40','18,4', 'RA02');
execute insertartiradas('RA0242128,8336921296', '6', '04/05/2015 20:00:31','-16', 'RA02');
execute insertartiradas('RA0242128,8345138889', '19', '04/05/2015 20:01:42','17,4', 'RA02');
execute insertartiradas('RA0242128,8352430556', '0', '04/05/2015 20:02:45','-12,1', 'RA02');
execute insertartiradas('RA0242128,8356481481', '31', '04/05/2015 20:03:20','15,9', 'RA02');
execute insertartiradas('RA0242128,8362847222', '20', '04/05/2015 20:04:15','-12,6', 'RA02');
execute insertartiradas('RA0242128,8370833333', '1', '04/05/2015 20:05:24','19', 'RA02');
execute insertartiradas('RA0242128,8376041667', '32', '04/05/2015 20:06:09','-10,3', 'RA02');
execute insertartiradas('RA0242128,838125', '20', '04/05/2015 20:06:54','14,4', 'RA02');
execute insertartiradas('RA0242128,8387615741', '6', '04/05/2015 20:07:49','-13,1', 'RA02');
execute insertartiradas('RA0242128,8394212963', '15', '04/05/2015 20:08:46','14,6', 'RA02');
execute insertartiradas('RA0242128,8402777778', '1', '04/05/2015 20:10:00','-14', 'RA02');
execute insertartiradas('RA0242128,8408333333', '18', '04/05/2015 20:10:48','14,6', 'RA02');
execute insertartiradas('RA0242128,8416435185', '13', '04/05/2015 20:11:58','-12,1', 'RA02');
execute insertartiradas('RA0242128,8426736111', '0', '04/05/2015 20:13:27','16,9', 'RA02');
execute insertartiradas('RA0242128,8432291667', '27', '04/05/2015 20:14:15','-12,6', 'RA02');
execute insertartiradas('RA0242128,8439930556', '17', '04/05/2015 20:15:21','12,1', 'RA02');
execute insertartiradas('RA0242128,8449189815', '22', '04/05/2015 20:16:41','-11,6', 'RA02');
execute insertartiradas('RA0242128,8459027778', '28', '04/05/2015 20:18:06','12,7', 'RA02');
execute insertartiradas('RA0242128,847025463', '4', '04/05/2015 20:19:43','-14,4', 'RA02');
execute insertartiradas('RA0242128,8481828704', '5', '04/05/2015 20:21:23','18,3', 'RA02');
execute insertartiradas('RA0242128,8494560185', '15', '04/05/2015 20:23:13','-13,6', 'RA02');
execute insertartiradas('RA0242128,8503125', '4', '04/05/2015 20:24:27','15,2', 'RA02');
execute insertartiradas('RA0242128,8516087963', '11', '04/05/2015 20:26:19','-13,4', 'RA02');
execute insertartiradas('RA0242128,8529398148', '19', '04/05/2015 20:28:14','14,2', 'RA02');
execute insertartiradas('RA0242128,8537847222', '26', '04/05/2015 20:29:27','-11,9', 'RA02');
execute insertartiradas('RA0242128,8551041667', '31', '04/05/2015 20:31:21','13', 'RA02');
execute insertartiradas('RA0242128,8563773148', '30', '04/05/2015 20:33:11','-13,2', 'RA02');
execute insertartiradas('RA0242128,8577083333', '26', '04/05/2015 20:35:06','12,1', 'RA02');
execute insertartiradas('RA0242128,8587962963', '1', '04/05/2015 20:36:40','-11,8', 'RA02');
execute insertartiradas('RA0242128,8594907407', '31', '04/05/2015 20:37:40','16,8', 'RA02');
execute insertartiradas('RA0242128,8603703704', '22', '04/05/2015 20:38:56','-11,9', 'RA02');
execute insertartiradas('RA0242128,8613541667', '32', '04/05/2015 20:40:21','15,4', 'RA02');
execute insertartiradas('RA0242128,8625347222', '18', '04/05/2015 20:42:03','-12,4', 'RA02');
execute insertartiradas('RA0242128,8635185185', '35', '04/05/2015 20:43:28','18,7', 'RA02');
execute insertartiradas('RA0242128,8651388889', '28', '04/05/2015 20:45:48','-18,8', 'RA02');
execute insertartiradas('RA0242128,8666898148', '8', '04/05/2015 20:48:02','18,5', 'RA02');
execute insertartiradas('RA0242128,8684490741', '32', '04/05/2015 20:50:34','-18,6', 'RA02');
execute insertartiradas('RA0242128,8705787037', '1', '04/05/2015 20:53:38','14,7', 'RA02');
execute insertartiradas('RA0242128,8714467593', '5', '04/05/2015 20:54:53','-19,3', 'RA02');
execute insertartiradas('RA0242128,8720486111', '32', '04/05/2015 20:55:45','19,1', 'RA02');
execute insertartiradas('RA0242128,8726967593', '34', '04/05/2015 20:56:41','-17,6', 'RA02');
execute insertartiradas('RA0242128,8731597222', '22', '04/05/2015 20:57:21','20,7', 'RA02');
execute insertartiradas('RA0242128,874212963', '19', '04/05/2015 20:58:52','-19,6', 'RA02');
execute insertartiradas('RA0242128,8746875', '15', '04/05/2015 20:59:33','19,7', 'RA02');
execute insertartiradas('RA0242128,8750462963', '1', '04/05/2015 21:00:04','-18', 'RA02');
execute insertartiradas('RA0242128,8756365741', '5', '04/05/2015 21:00:55','19,9', 'RA02');
execute insertartiradas('RA0242128,8762962963', '18', '04/05/2015 21:01:52','-18,6', 'RA02');
execute insertartiradas('RA0242128,8768171296', '36', '04/05/2015 21:02:37','18,8', 'RA02');
execute insertartiradas('RA0242128,8772569444', '23', '04/05/2015 21:03:15','-17,4', 'RA02');
execute insertartiradas('RA0242128,8780671296', '3', '04/05/2015 21:04:25','19,1', 'RA02');
execute insertartiradas('RA0242128,8790509259', '18', '04/05/2015 21:05:50','-18,7', 'RA02');
execute insertartiradas('RA0242128,8806018519', '22', '04/05/2015 21:08:04','22,6', 'RA02');
execute insertartiradas('RA0242128,8821064815', '14', '04/05/2015 21:10:14','-14,7', 'RA02');
execute insertartiradas('RA0242128,8834259259', '33', '04/05/2015 21:12:08','17,4', 'RA02');
execute insertartiradas('RA0242128,8849652778', '4', '04/05/2015 21:14:21','-13,4', 'RA02');
execute insertartiradas('RA0242128,88625', '30', '04/05/2015 21:16:12','18,9', 'RA02');
execute insertartiradas('RA0242128,8870138889', '22', '04/05/2015 21:17:18','-13,5', 'RA02');
execute insertartiradas('RA0242128,8879166667', '25', '04/05/2015 21:18:36','14,2', 'RA02');
execute insertartiradas('RA0242128,8888888889', '6', '04/05/2015 21:20:00','-15,7', 'RA02');
execute insertartiradas('RA0242128,890162037', '13', '04/05/2015 21:21:50','15,1', 'RA02');
execute insertartiradas('RA0242128,8910763889', '14', '04/05/2015 21:23:09','-13,7', 'RA02');
execute insertartiradas('RA0242128,8919444444', '21', '04/05/2015 21:24:24','12,2', 'RA02');
execute insertartiradas('RA0242128,8930324074', '31', '04/05/2015 21:25:58','-12,1', 'RA02');
execute insertartiradas('RA0242128,8942708333', '18', '04/05/2015 21:27:45','15,5', 'RA02');
execute insertartiradas('RA0242128,8955092593', '36', '04/05/2015 21:29:32','-20,1', 'RA02');
execute insertartiradas('RA0242128,8964814815', '29', '04/05/2015 21:30:56','15,4', 'RA02');
execute insertartiradas('RA0242128,8975', '4', '04/05/2015 21:32:24','-21,8', 'RA02');
execute insertartiradas('RA0242128,8984837963', '28', '04/05/2015 21:33:49','22', 'RA02');
execute insertartiradas('RA0242128,8993055556', '13', '04/05/2015 21:35:00','-21,6', 'RA02');
execute insertartiradas('RA0242128,9002430556', '15', '04/05/2015 21:36:21','20,3', 'RA02');
execute insertartiradas('RA0242128,9006597222', '28', '04/05/2015 21:36:57','-16,4', 'RA02');
execute insertartiradas('RA0242128,9011921296', '36', '04/05/2015 21:37:43','19,7', 'RA02');
execute insertartiradas('RA0242128,901712963', '28', '04/05/2015 21:38:28','-13,5', 'RA02');
execute insertartiradas('RA0242128,9021643518', '14', '04/05/2015 21:39:07','20,3', 'RA02');
execute insertartiradas('RA0242128,9025925926', '26', '04/05/2015 21:39:44','-14,7', 'RA02');
execute insertartiradas('RA0242128,9031828704', '36', '04/05/2015 21:40:35','17', 'RA02');
execute insertartiradas('RA0242128,9037152778', '25', '04/05/2015 21:41:21','-15,1', 'RA02');
execute insertartiradas('RA0242128,9042592593', '4', '04/05/2015 21:42:08','16,3', 'RA02');
execute insertartiradas('RA0242128,9046527778', '29', '04/05/2015 21:42:42','-15,6', 'RA02');
execute insertartiradas('RA0242128,9062037037', '24', '04/05/2015 21:44:56','15,1', 'RA02');
execute insertartiradas('RA0242128,9073263889', '21', '04/05/2015 21:46:33','-14,4', 'RA02');
execute insertartiradas('RA0242128,9079166667', '12', '04/05/2015 21:47:24','15,8', 'RA02');
execute insertartiradas('RA0242128,9083680556', '30', '04/05/2015 21:48:03','-14', 'RA02');
execute insertartiradas('RA0242128,9090972222', '21', '04/05/2015 21:49:06','12,9', 'RA02');
execute insertartiradas('RA0242128,9096990741', '36', '04/05/2015 21:49:58','-14,5', 'RA02');
execute insertartiradas('RA0242128,9101157407', '8', '04/05/2015 21:50:34','15,2', 'RA02');
execute insertartiradas('RA0242128,9108449074', '30', '04/05/2015 21:51:37','-14', 'RA02');
execute insertartiradas('RA0242128,9114699074', '34', '04/05/2015 21:52:31','15,3', 'RA02');
execute insertartiradas('RA0242128,9120138889', '14', '04/05/2015 21:53:18','-15,8', 'RA02');
execute insertartiradas('RA0242128,912662037', '2', '04/05/2015 21:54:14','16,7', 'RA02');
execute insertartiradas('RA0242128,9131712963', '12', '04/05/2015 21:54:58','-14,4', 'RA02');
execute insertartiradas('RA0242128,9137268519', '24', '04/05/2015 21:55:46','15,7', 'RA02');
execute insertartiradas('RA0242128,9143634259', '25', '04/05/2015 21:56:41','-14', 'RA02');
execute insertartiradas('RA0242128,9149305556', '23', '04/05/2015 21:57:30','14,9', 'RA02');
execute insertartiradas('RA0242128,9156481481', '23', '04/05/2015 21:58:32','-16,2', 'RA02');
execute insertartiradas('RA0242128,9161921296', '34', '04/05/2015 21:59:19','14,5', 'RA02');
execute insertartiradas('RA0242128,9169328704', '30', '04/05/2015 22:00:23','-12,8', 'RA02');
execute insertartiradas('RA0242128,9175578704', '21', '04/05/2015 22:01:17','14,5', 'RA02');
execute insertartiradas('RA0242128,9183449074', '35', '04/05/2015 22:02:25','-13,8', 'RA02');
execute insertartiradas('RA0242128,9193287037', '27', '04/05/2015 22:03:50','16', 'RA02');
execute insertartiradas('RA0242128,9199305556', '29', '04/05/2015 22:04:42','-13,4', 'RA02');
execute insertartiradas('RA0242128,9205902778', '29', '04/05/2015 22:05:39','16,7', 'RA02');
execute insertartiradas('RA0242128,9213078704', '28', '04/05/2015 22:06:41','-13,2', 'RA02');
execute insertartiradas('RA0242128,9218981481', '10', '04/05/2015 22:07:32','16,4', 'RA02');
execute insertartiradas('RA0242128,922349537', '25', '04/05/2015 22:08:11','-15,1', 'RA02');
execute insertartiradas('RA0242128,9230555556', '20', '04/05/2015 22:09:12','19', 'RA02');
execute insertartiradas('RA0242128,9239814815', '5', '04/05/2015 22:10:32','-15', 'RA02');
execute insertartiradas('RA0242128,9245717593', '10', '04/05/2015 22:11:23','17,7', 'RA02');
execute insertartiradas('RA0242128,9250810185', '9', '04/05/2015 22:12:07','-15,7', 'RA02');
execute insertartiradas('RA0242128,9256018518', '36', '04/05/2015 22:12:52','17', 'RA02');
execute insertartiradas('RA0242128,9268402778', '9', '04/05/2015 22:14:39','-15,5', 'RA02');
execute insertartiradas('RA0242128,9277893519', '28', '04/05/2015 22:16:01','18,2', 'RA02');
execute insertartiradas('RA0242128,9284490741', '21', '04/05/2015 22:16:58','-15,3', 'RA02');
execute insertartiradas('RA0242128,9292013889', '9', '04/05/2015 22:18:03','17,1', 'RA02');
execute insertartiradas('RA0242128,9298842593', '23', '04/05/2015 22:19:02','-13,2', 'RA02');
execute insertartiradas('RA0242128,9307638889', '31', '04/05/2015 22:20:18','18,2', 'RA02');
execute insertartiradas('RA0242128,9316898148', '18', '04/05/2015 22:21:38','-16,3', 'RA02');
execute insertartiradas('RA0242128,9324421296', '6', '04/05/2015 22:22:43','13,6', 'RA02');
execute insertartiradas('RA0242128,9331134259', '9', '04/05/2015 22:23:41','-17,4', 'RA02');
execute insertartiradas('RA0242128,9337152778', '14', '04/05/2015 22:24:33','16,9', 'RA02');
execute insertartiradas('RA0242128,9350347222', '31', '04/05/2015 22:26:27','-21,2', 'RA02');
execute insertartiradas('RA0242128,9360763889', '33', '04/05/2015 22:27:57','14,7', 'RA02');
execute insertartiradas('RA0242128,9370486111', '15', '04/05/2015 22:29:21','-16,9', 'RA02');
execute insertartiradas('RA0242128,9377083333', '0', '04/05/2015 22:30:18','14,3', 'RA02');
execute insertartiradas('RA0242128,9385416667', '18', '04/05/2015 22:31:30','-15,4', 'RA02');
execute insertartiradas('RA0242128,9391435185', '15', '04/05/2015 22:32:22','15,7', 'RA02');
execute insertartiradas('RA0242128,9402546296', '26', '04/05/2015 22:33:58','-18,1', 'RA02');
execute insertartiradas('RA0242128,9409490741', '16', '04/05/2015 22:34:58','14,5', 'RA02');
execute insertartiradas('RA0242128,9420138889', '29', '04/05/2015 22:36:30','-16,9', 'RA02');
execute insertartiradas('RA0242128,9428703704', '21', '04/05/2015 22:37:44','14,9', 'RA02');
execute insertartiradas('RA0242128,9437847222', '0', '04/05/2015 22:39:03','-16,4', 'RA02');
execute insertartiradas('RA0242128,9445601852', '11', '04/05/2015 22:40:10','18,2', 'RA02');
execute insertartiradas('RA0242128,9453703704', '3', '04/05/2015 22:41:20','-16,7', 'RA02');
execute insertartiradas('RA0242128,9459375', '29', '04/05/2015 22:42:09','19,3', 'RA02');
execute insertartiradas('RA0242128,9466898148', '16', '04/05/2015 22:43:14','-18,2', 'RA02');
execute insertartiradas('RA0242128,9472569444', '14', '04/05/2015 22:44:03','17,9', 'RA02');
execute insertartiradas('RA0242128,9482291667', '6', '04/05/2015 22:45:27','-19,3', 'RA02');
execute insertartiradas('RA0242128,9491666667', '7', '04/05/2015 22:46:48','19,4', 'RA02');
execute insertartiradas('RA0242128,9498263889', '4', '04/05/2015 22:47:45','-18,5', 'RA02');
execute insertartiradas('RA0242128,9507986111', '22', '04/05/2015 22:49:09','23,1', 'RA02');
execute insertartiradas('RA0242128,9517592593', '11', '04/05/2015 22:50:32','-17,2', 'RA02');
execute insertartiradas('RA0242128,9525115741', '8', '04/05/2015 22:51:37','17,2', 'RA02');
execute insertartiradas('RA0242128,9533333333', '32', '04/05/2015 22:52:48','-18,1', 'RA02');
execute insertartiradas('RA0242128,9544791667', '5', '04/05/2015 22:54:27','21,3', 'RA02');
execute insertartiradas('RA0242128,9554976852', '5', '04/05/2015 22:55:55','-19,1', 'RA02');
execute insertartiradas('RA0242128,9563425926', '30', '04/05/2015 22:57:08','15', 'RA02');
execute insertartiradas('RA0242128,9569907407', '4', '04/05/2015 22:58:04','-18', 'RA02');
execute insertartiradas('RA0242128,9575', '12', '04/05/2015 22:58:48','21,2', 'RA02');
execute insertartiradas('RA0242128,9582060185', '8', '04/05/2015 22:59:49','-24', 'RA02');
execute insertartiradas('RA0242128,958900463', '8', '04/05/2015 23:00:49','18', 'RA02');
execute insertartiradas('RA0242128,9631944444', '9', '04/05/2015 23:07:00','-15', 'RA02');
execute insertartiradas('RA0242128,9636689815', '4', '04/05/2015 23:07:41','17,1', 'RA02');
execute insertartiradas('RA0242128,9640509259', '17', '04/05/2015 23:08:14','-18,7', 'RA02');
execute insertartiradas('RA0242128,9648958333', '0', '04/05/2015 23:09:27','21,9', 'RA02');
execute insertartiradas('RA0242128,9653472222', '27', '04/05/2015 23:10:06','-20,1', 'RA02');
execute insertartiradas('RA0242128,9660763889', '12', '04/05/2015 23:11:09','22', 'RA02');
execute insertartiradas('RA0242128,966875', '17', '04/05/2015 23:12:18','-17', 'RA02');
execute insertartiradas('RA0242128,9673032407', '24', '04/05/2015 23:12:55','21,3', 'RA02');
execute insertartiradas('RA0242128,9676967593', '28', '04/05/2015 23:13:29','-20,1', 'RA02');
execute insertartiradas('RA0242128,9680555556', '34', '04/05/2015 23:14:00','23,4', 'RA02');
execute insertartiradas('RA0242128,9684259259', '19', '04/05/2015 23:14:32','-19,8', 'RA02');
execute insertartiradas('RA0242128,9688773148', '23', '04/05/2015 23:15:11','21,1', 'RA02');
execute insertartiradas('RA0242128,9693518519', '21', '04/05/2015 23:15:52','-18,8', 'RA02');
execute insertartiradas('RA0242128,9698148148', '8', '04/05/2015 23:16:32','19,4', 'RA02');
execute insertartiradas('RA0242128,9702083333', '25', '04/05/2015 23:17:06','-18,9', 'RA02');
execute insertartiradas('RA0242128,9706018519', '32', '04/05/2015 23:17:40','20,9', 'RA02');
execute insertartiradas('RA0242128,9710416667', '11', '04/05/2015 23:18:18','-19,6', 'RA02');
execute insertartiradas('RA0242128,9714699074', '6', '04/05/2015 23:18:55','20,5', 'RA02');
execute insertartiradas('RA0242128,9718518518', '11', '04/05/2015 23:19:28','-18,7', 'RA02');
execute insertartiradas('RA0242128,9722222222', '36', '04/05/2015 23:20:00','21,7', 'RA02');
execute insertartiradas('RA0242128,9726851852', '28', '04/05/2015 23:20:40','-20,7', 'RA02');
execute insertartiradas('RA0242128,9731944444', '12', '04/05/2015 23:21:24','19,6', 'RA02');
execute insertartiradas('RA0242128,9736458333', '27', '04/05/2015 23:22:03','-20,1', 'RA02');
execute insertartiradas('RA0242128,9741550926', '9', '04/05/2015 23:22:47','19,1', 'RA02');
execute insertartiradas('RA0242128,9746527778', '34', '04/05/2015 23:23:30','-19,8', 'RA02');
execute insertartiradas('RA0242128,9750925926', '4', '04/05/2015 23:24:08','21', 'RA02');
execute insertartiradas('RA0242128,9754861111', '3', '04/05/2015 23:24:42','-20,2', 'RA02');
execute insertartiradas('RA0242128,9759027778', '33', '04/05/2015 23:25:18','20,2', 'RA02');
execute insertartiradas('RA0242128,97625', '23', '04/05/2015 23:25:48','-19,6', 'RA02');
execute insertartiradas('RA0242128,976724537', '19', '04/05/2015 23:26:29','19,9', 'RA02');
execute insertartiradas('RA0242128,9770717593', '9', '04/05/2015 23:26:59','-17,8', 'RA02');
execute insertartiradas('RA0242128,9774074074', '14', '04/05/2015 23:27:28','19,6', 'RA02');
execute insertartiradas('RA0242128,9778009259', '31', '04/05/2015 23:28:02','-19,3', 'RA02');
execute insertartiradas('RA0242128,9782407407', '13', '04/05/2015 23:28:40','20,8', 'RA02');
execute insertartiradas('RA0242128,9787731481', '30', '04/05/2015 23:29:26','-21,5', 'RA02');
execute insertartiradas('RA0242128,9793981481', '12', '04/05/2015 23:30:20','21,1', 'RA02');
execute insertartiradas('RA0242128,9799537037', '23', '04/05/2015 23:31:08','-20,5', 'RA02');
execute insertartiradas('RA0242128,9807638889', '33', '04/05/2015 23:32:18','15,8', 'RA02');
execute insertartiradas('RA0242128,9814583333', '6', '04/05/2015 23:33:18','-13,2', 'RA02');
execute insertartiradas('RA0242128,9818171296', '35', '04/05/2015 23:33:49','17,3', 'RA02');
execute insertartiradas('RA0242128,9824884259', '0', '04/05/2015 23:34:47','-18,6', 'RA02');
execute insertartiradas('RA0242128,9831944444', '1', '04/05/2015 23:35:48','19,6', 'RA02');
execute insertartiradas('RA0242128,9839814815', '24', '04/05/2015 23:36:56','-17,8', 'RA02');
execute insertartiradas('RA0242128,9850462963', '19', '04/05/2015 23:38:28','16,5', 'RA02');
execute insertartiradas('RA0242128,9855902778', '19', '04/05/2015 23:39:15','-19,1', 'RA02');
execute insertartiradas('RA0242128,9863541667', '32', '04/05/2015 23:40:21','21,3', 'RA02');
execute insertartiradas('RA0242128,9869907407', '34', '04/05/2015 23:41:16','-18,1', 'RA02');
execute insertartiradas('RA0242128,9875462963', '33', '04/05/2015 23:42:04','16', 'RA02');
execute insertartiradas('RA0242128,9881481481', '12', '04/05/2015 23:42:56','-12,9', 'RA02');
execute insertartiradas('RA0242128,9896875', '22', '04/05/2015 23:45:09','14,5', 'RA02');
execute insertartiradas('RA0242128,990787037', '9', '04/05/2015 23:46:44','-14,5', 'RA02');
execute insertartiradas('RA0242128,9970138889', '4', '04/05/2015 23:55:42','14,5', 'RA02');
execute insertartiradas('RA0242129,0002314815', '26', '05/05/2015 00:00:20','-13,7', 'RA02');
execute insertartiradas('RA0242129,0007175926', '25', '05/05/2015 00:01:02','14,5', 'RA02');
execute insertartiradas('RA0242129,0013773148', '24', '05/05/2015 00:01:59','-14,3', 'RA02');
execute insertartiradas('RA0242129,0020949074', '15', '05/05/2015 00:03:01','13,8', 'RA02');
execute insertartiradas('RA0242129,0025694444', '7', '05/05/2015 00:03:42','-11,5', 'RA02');
execute insertartiradas('RA0242129,0036226852', '11', '05/05/2015 00:05:13','12,2', 'RA02');
execute insertartiradas('RA0242129,005787037', '25', '05/05/2015 00:08:20','-13,8', 'RA02');
execute insertartiradas('RA0242129,006412037', '3', '05/05/2015 00:09:14','13,7', 'RA02');
execute insertartiradas('RA0242129,0068055556', '18', '05/05/2015 00:09:48','-13,7', 'RA02');
execute insertartiradas('RA0242129,007349537', '10', '05/05/2015 00:10:35','12,2', 'RA02');
execute insertartiradas('RA0242129,0350925926', '5', '05/05/2015 00:50:32','-16,6', 'RA02');
execute insertartiradas('RA0242129,0781597222', '33', '05/05/2015 01:52:33','17,7', 'RA02');
execute insertartiradas('RA0242129,078587963', '32', '05/05/2015 01:53:10','-15,9', 'RA02');
execute insertartiradas('RA0242129,0790972222', '3', '05/05/2015 01:53:54','18', 'RA02');
execute insertartiradas('RA0242129,0795717593', '26', '05/05/2015 01:54:35','-17,3', 'RA02');
execute insertartiradas('RA0242129,0801851851', '29', '05/05/2015 01:55:28','13,8', 'RA02');
execute insertartiradas('RA0242129,0806597222', '26', '05/05/2015 01:56:09','-13,2', 'RA02');
execute insertartiradas('RA0242129,0811458333', '30', '05/05/2015 01:56:51','15,9', 'RA02');
execute insertartiradas('RA0242129,0817476852', '29', '05/05/2015 01:57:43','-16,6', 'RA02');
execute insertartiradas('RA0242129,0822337963', '27', '05/05/2015 01:58:25','17,6', 'RA02');
execute insertartiradas('RA0242129,0827314815', '32', '05/05/2015 01:59:08','-15,4', 'RA02');
execute insertartiradas('RA0242129,0831944444', '17', '05/05/2015 01:59:48','12,9', 'RA02');
execute insertartiradas('RA0242129,0838194444', '11', '05/05/2015 02:00:42','-17,3', 'RA02');
execute insertartiradas('RA0242129,0842824074', '30', '05/05/2015 02:01:22','15,5', 'RA02');
execute insertartiradas('RA0242129,0847800926', '0', '05/05/2015 02:02:05','-18', 'RA02');
execute insertartiradas('RA0242129,0853703704', '13', '05/05/2015 02:02:56','13,7', 'RA02');
execute insertartiradas('RA0242129,0859953704', '19', '05/05/2015 02:03:50','-14,9', 'RA02');
execute insertartiradas('RA0242129,0866898148', '8', '05/05/2015 02:04:50','16,7', 'RA02');
execute insertartiradas('RA0242129,0874074074', '18', '05/05/2015 02:05:52','-14,7', 'RA02');
execute insertartiradas('RA0242129,0881597222', '20', '05/05/2015 02:06:57','16,8', 'RA02');
execute insertartiradas('RA0242129,0888888889', '19', '05/05/2015 02:08:00','-14,7', 'RA02');
execute insertartiradas('RA0242129,0895023148', '22', '05/05/2015 02:08:53','15,7', 'RA02');
execute insertartiradas('RA0242129,0901273148', '15', '05/05/2015 02:09:47','-16', 'RA02');
execute insertartiradas('RA0242129,0906597222', '29', '05/05/2015 02:10:33','16,9', 'RA02');
execute insertartiradas('RA0242129,0912615741', '4', '05/05/2015 02:11:25','-18,7', 'RA02');
execute insertartiradas('RA0242129,0917708333', '4', '05/05/2015 02:12:09','18,2', 'RA02');
execute insertartiradas('RA0242129,0922337963', '9', '05/05/2015 02:12:49','-17', 'RA02');
execute insertartiradas('RA0242129,0928587963', '17', '05/05/2015 02:13:43','14,9', 'RA02');
execute insertartiradas('RA0242129,0934722222', '13', '05/05/2015 02:14:36','-14', 'RA02');
execute insertartiradas('RA0242129,0939814815', '10', '05/05/2015 02:15:20','15,8', 'RA02');
execute insertartiradas('RA0242129,0944791666', '23', '05/05/2015 02:16:03','-16,6', 'RA02');
execute insertartiradas('RA0242129,0949305556', '6', '05/05/2015 02:16:42','15,7', 'RA02');
execute insertartiradas('RA0242129,0954282407', '21', '05/05/2015 02:17:25','-16,6', 'RA02');
execute insertartiradas('RA0242129,0962268518', '30', '05/05/2015 02:18:34','17,2', 'RA02');
execute insertartiradas('RA0242129,0969444444', '30', '05/05/2015 02:19:36','-16,7', 'RA02');
execute insertartiradas('RA0242129,0974884259', '24', '05/05/2015 02:20:23','16,1', 'RA02');
execute insertartiradas('RA0242129,097974537', '6', '05/05/2015 02:21:05','-16,1', 'RA02');
execute insertartiradas('RA0242129,0985532407', '13', '05/05/2015 02:21:55','13,6', 'RA02');
execute insertartiradas('RA0242129,0990046296', '10', '05/05/2015 02:22:34','-14,3', 'RA02');
execute insertartiradas('RA0242129,0994907407', '10', '05/05/2015 02:23:16','12,9', 'RA02');
execute insertartiradas('RA0242129,0999189815', '22', '05/05/2015 02:23:53','-12,2', 'RA02');
execute insertartiradas('RA0242129,1003703704', '4', '05/05/2015 02:24:32','15,3', 'RA02');
execute insertartiradas('RA0242129,1008564815', '29', '05/05/2015 02:25:14','-14,7', 'RA02');
execute insertartiradas('RA0242129,101400463', '1', '05/05/2015 02:26:01','14,8', 'RA02');
execute insertartiradas('RA0242129,1018981481', '0', '05/05/2015 02:26:44','-14,9', 'RA02');
execute insertartiradas('RA0242129,1024189815', '13', '05/05/2015 02:27:29','17,6', 'RA02');
execute insertartiradas('RA0242129,1029513889', '34', '05/05/2015 02:28:15','-14,4', 'RA02');
execute insertartiradas('RA0242129,1034375', '11', '05/05/2015 02:28:57','14', 'RA02');
execute insertartiradas('RA0242129,103912037', '10', '05/05/2015 02:29:38','-15,4', 'RA02');
execute insertartiradas('RA0242129,1043634259', '1', '05/05/2015 02:30:17','14,8', 'RA02');
execute insertartiradas('RA0242129,1048263889', '17', '05/05/2015 02:30:57','-15,3', 'RA02');
execute insertartiradas('RA0242129,1054050926', '16', '05/05/2015 02:31:47','16,4', 'RA02');
execute insertartiradas('RA0242129,8000578704', '5', '05/05/2015 19:12:05','16,2', 'RA02');
execute insertartiradas('RA0242129,8013310185', '2', '05/05/2015 19:13:55','-12,2', 'RA02');
execute insertartiradas('RA0242129,8020254629', '35', '05/05/2015 19:14:55','14,7', 'RA02');
execute insertartiradas('RA0242129,8030787037', '7', '05/05/2015 19:16:26','-12,8', 'RA02');
execute insertartiradas('RA0242129,8041782407', '20', '05/05/2015 19:18:01','22,9', 'RA02');
execute insertartiradas('RA0242129,8051157407', '10', '05/05/2015 19:19:22','-16,4', 'RA02');
execute insertartiradas('RA0242129,8060185185', '35', '05/05/2015 19:20:40','13,9', 'RA02');
execute insertartiradas('RA0242129,807037037', '21', '05/05/2015 19:22:08','-11,9', 'RA02');
execute insertartiradas('RA0242129,8077546296', '28', '05/05/2015 19:23:10','14,4', 'RA02');
execute insertartiradas('RA0242129,8083912037', '9', '05/05/2015 19:24:05','-11,6', 'RA02');
execute insertartiradas('RA0242129,8090046296', '22', '05/05/2015 19:24:58','15,3', 'RA02');
execute insertartiradas('RA0242129,810150463', '29', '05/05/2015 19:26:37','-16,4', 'RA02');
execute insertartiradas('RA0242129,8117824074', '9', '05/05/2015 19:28:58','18,4', 'RA02');
execute insertartiradas('RA0242129,8129976852', '33', '05/05/2015 19:30:43','-11,5', 'RA02');
execute insertartiradas('RA0242129,8139351852', '0', '05/05/2015 19:32:04','12,1', 'RA02');
execute insertartiradas('RA0242129,8150810185', '6', '05/05/2015 19:33:43','-10,8', 'RA02');
execute insertartiradas('RA0242129,8157407407', '14', '05/05/2015 19:34:40','14,2', 'RA02');
execute insertartiradas('RA0242129,8164814815', '5', '05/05/2015 19:35:44','-12,7', 'RA02');
execute insertartiradas('RA0242129,8174421296', '0', '05/05/2015 19:37:07','13', 'RA02');
execute insertartiradas('RA0242129,818287037', '27', '05/05/2015 19:38:20','-12,4', 'RA02');
execute insertartiradas('RA0242129,8189236111', '14', '05/05/2015 19:39:15','13,6', 'RA02');
execute insertartiradas('RA0242129,8196990741', '5', '05/05/2015 19:40:22','-11,4', 'RA02');
execute insertartiradas('RA0242129,8203819444', '0', '05/05/2015 19:41:21','13', 'RA02');
execute insertartiradas('RA0242129,8213194444', '3', '05/05/2015 19:42:42','-19,6', 'RA02');
execute insertartiradas('RA0242129,8221180556', '12', '05/05/2015 19:43:51','17,3', 'RA02');
execute insertartiradas('RA0242129,8231018518', '30', '05/05/2015 19:45:16','-16,3', 'RA02');
execute insertartiradas('RA0242129,8237962963', '26', '05/05/2015 19:46:16','15', 'RA02');
execute insertartiradas('RA0242129,8246064815', '3', '05/05/2015 19:47:26','-16,4', 'RA02');
execute insertartiradas('RA0242129,8252199074', '16', '05/05/2015 19:48:19','15,5', 'RA02');
execute insertartiradas('RA0242129,8258101852', '8', '05/05/2015 19:49:10','-22,1', 'RA02');
execute insertartiradas('RA0242129,8269328704', '13', '05/05/2015 19:50:47','14,7', 'RA02');
execute insertartiradas('RA0242129,8281018519', '22', '05/05/2015 19:52:28','-16,5', 'RA02');
execute insertartiradas('RA0242129,8287268519', '10', '05/05/2015 19:53:22','13,6', 'RA02');
execute insertartiradas('RA0242129,8295949074', '28', '05/05/2015 19:54:37','-16,7', 'RA02');
execute insertartiradas('RA0242129,8306828704', '23', '05/05/2015 19:56:11','16,4', 'RA02');
execute insertartiradas('RA0242129,831712963', '20', '05/05/2015 19:57:40','-13,9', 'RA02');
execute insertartiradas('RA0242129,8322453703', '0', '05/05/2015 19:58:26','16,3', 'RA02');
execute insertartiradas('RA0242129,8330787037', '27', '05/05/2015 19:59:38','-16,6', 'RA02');
execute insertartiradas('RA0242129,8338773148', '14', '05/05/2015 20:00:47','15,6', 'RA02');
execute insertartiradas('RA0242129,8348032407', '36', '05/05/2015 20:02:07','-18,8', 'RA02');
execute insertartiradas('RA0242129,8356481481', '32', '05/05/2015 20:03:20','17,2', 'RA02');
execute insertartiradas('RA0242129,8363078704', '32', '05/05/2015 20:04:17','-17,3', 'RA02');
execute insertartiradas('RA0242129,8389699074', '4', '05/05/2015 20:08:07','15,8', 'RA02');
execute insertartiradas('RA0242129,8403703704', '28', '05/05/2015 20:10:08','-15,2', 'RA02');
execute insertartiradas('RA0242129,8416319444', '22', '05/05/2015 20:11:57','13,4', 'RA02');
execute insertartiradas('RA0242129,842662037', '6', '05/05/2015 20:13:26','-26,7', 'RA02');
execute insertartiradas('RA0242129,8437962963', '1', '05/05/2015 20:15:04','19,8', 'RA02');
execute insertartiradas('RA0242129,8448842593', '30', '05/05/2015 20:16:38','-23,6', 'RA02');
execute insertartiradas('RA0242129,8460763889', '7', '05/05/2015 20:18:21','24,6', 'RA02');
execute insertartiradas('RA0242129,8468865741', '11', '05/05/2015 20:19:31','-22,6', 'RA02');
execute insertartiradas('RA0242129,8478356482', '13', '05/05/2015 20:20:53','16,5', 'RA02');
execute insertartiradas('RA0242129,8491087963', '9', '05/05/2015 20:22:43','-7,8', 'RA02');
execute insertartiradas('RA0242129,8511111111', '6', '05/05/2015 20:25:36','20,5', 'RA02');
execute insertartiradas('RA0242129,8526736111', '28', '05/05/2015 20:27:51','-11,1', 'RA02');
execute insertartiradas('RA0242129,8534837963', '29', '05/05/2015 20:29:01','13,3', 'RA02');
execute insertartiradas('RA0242129,8542824074', '31', '05/05/2015 20:30:10','-16,5', 'RA02');
execute insertartiradas('RA0242129,8552546296', '25', '05/05/2015 20:31:34','16,2', 'RA02');
execute insertartiradas('RA0242129,8567592593', '4', '05/05/2015 20:33:44','-14,8', 'RA02');
execute insertartiradas('RA0242129,8585532407', '2', '05/05/2015 20:36:19','18', 'RA02');
execute insertartiradas('RA0242129,8607986111', '14', '05/05/2015 20:39:33','-15,7', 'RA02');
execute insertartiradas('RA0242129,8626041667', '7', '05/05/2015 20:42:09','13,2', 'RA02');
execute insertartiradas('RA0242129,8642708333', '24', '05/05/2015 20:44:33','-20,7', 'RA02');
execute insertartiradas('RA0242129,864849537', '3', '05/05/2015 20:45:23','22,8', 'RA02');
execute insertartiradas('RA0242129,8656018519', '17', '05/05/2015 20:46:28','-15', 'RA02');
execute insertartiradas('RA0242129,8665972222', '26', '05/05/2015 20:47:54','20,7', 'RA02');
execute insertartiradas('RA0242129,8673726852', '19', '05/05/2015 20:49:01','-19,6', 'RA02');
execute insertartiradas('RA0242129,8680208333', '3', '05/05/2015 20:49:57','21,3', 'RA02');
execute insertartiradas('RA0242129,8689583333', '18', '05/05/2015 20:51:18','-18,5', 'RA02');
execute insertartiradas('RA0242129,8702314815', '30', '05/05/2015 20:53:08','9', 'RA02');
execute insertartiradas('RA0242129,8715046296', '9', '05/05/2015 20:54:58','-22,6', 'RA02');
execute insertartiradas('RA0242129,8720717593', '10', '05/05/2015 20:55:47','22,5', 'RA02');
execute insertartiradas('RA0242129,8730555556', '12', '05/05/2015 20:57:12','-16,7', 'RA02');
execute insertartiradas('RA0242129,8740740741', '33', '05/05/2015 20:58:40','18,6', 'RA02');
execute insertartiradas('RA0242129,8749768519', '12', '05/05/2015 20:59:58','-12,4', 'RA02');
execute insertartiradas('RA0242129,8757986111', '29', '05/05/2015 21:01:09','21,5', 'RA02');
execute insertartiradas('RA0242129,8771759259', '12', '05/05/2015 21:03:08','-22,1', 'RA02');
execute insertartiradas('RA0242129,8781944444', '33', '05/05/2015 21:04:36','11,1', 'RA02');
execute insertartiradas('RA0242129,8792013889', '10', '05/05/2015 21:06:03','-14,1', 'RA02');
execute insertartiradas('RA0242129,8796875', '30', '05/05/2015 21:06:45','21', 'RA02');
execute insertartiradas('RA0242129,8803587963', '12', '05/05/2015 21:07:43','-21,8', 'RA02');
execute insertartiradas('RA0242129,8815393519', '4', '05/05/2015 21:09:25','19,7', 'RA02');
execute insertartiradas('RA0242129,8824421296', '33', '05/05/2015 21:10:43','-21', 'RA02');
execute insertartiradas('RA0242129,8829976852', '10', '05/05/2015 21:11:31','21,3', 'RA02');
execute insertartiradas('RA0242129,8844791667', '32', '05/05/2015 21:13:39','-16,2', 'RA02');
execute insertartiradas('RA0242129,8857175926', '28', '05/05/2015 21:15:26','21,8', 'RA02');
execute insertartiradas('RA0242129,886412037', '6', '05/05/2015 21:16:26','-15,5', 'RA02');
execute insertartiradas('RA0242129,8870023148', '23', '05/05/2015 21:17:17','13,8', 'RA02');
execute insertartiradas('RA0242129,887662037', '30', '05/05/2015 21:18:14','-22', 'RA02');
execute insertartiradas('RA0242129,8885185185', '14', '05/05/2015 21:19:28','22,4', 'RA02');
execute insertartiradas('RA0242129,9038773148', '34', '05/05/2015 21:41:35','-15,8', 'RA02');
execute insertartiradas('RA0242129,9044675926', '17', '05/05/2015 21:42:26','17,9', 'RA02');
execute insertartiradas('RA0242129,9050578704', '23', '05/05/2015 21:43:17','-15,1', 'RA02');
execute insertartiradas('RA0242129,9058101852', '24', '05/05/2015 21:44:22','18,1', 'RA02');
execute insertartiradas('RA0242129,9065162037', '7', '05/05/2015 21:45:23','-15,2', 'RA02');
execute insertartiradas('RA0242129,9070138889', '32', '05/05/2015 21:46:06','18,8', 'RA02');
execute insertartiradas('RA0242129,9079976852', '11', '05/05/2015 21:47:31','-15,1', 'RA02');
execute insertartiradas('RA0242129,9085763889', '13', '05/05/2015 21:48:21','17,3', 'RA02');
execute insertartiradas('RA0242129,9094097222', '32', '05/05/2015 21:49:33','-16', 'RA02');
execute insertartiradas('RA0242129,9101273148', '23', '05/05/2015 21:50:35','18', 'RA02');
execute insertartiradas('RA0242129,9113657407', '23', '05/05/2015 21:52:22','-16,1', 'RA02');
execute insertartiradas('RA0242129,9123842593', '4', '05/05/2015 21:53:50','18,4', 'RA02');
execute insertartiradas('RA0242129,9133217593', '20', '05/05/2015 21:55:11','-15,8', 'RA02');
execute insertartiradas('RA0242129,9299421296', '21', '05/05/2015 22:19:07','15,2', 'RA02');
execute insertartiradas('RA0242129,9306365741', '36', '05/05/2015 22:20:07','-14,7', 'RA02');
execute insertartiradas('RA0242129,93125', '17', '05/05/2015 22:21:00','14,1', 'RA02');
execute insertartiradas('RA0242129,9318287037', '10', '05/05/2015 22:21:50','-12,9', 'RA02');
execute insertartiradas('RA0242129,9326157407', '4', '05/05/2015 22:22:58','14,8', 'RA02');
execute insertartiradas('RA0242129,9337847222', '22', '05/05/2015 22:24:39','-13,4', 'RA02');
execute insertartiradas('RA0242129,9346296296', '6', '05/05/2015 22:25:52','16,9', 'RA02');
execute insertartiradas('RA0242129,9353703704', '20', '05/05/2015 22:26:56','-14,7', 'RA02');
execute insertartiradas('RA0242129,9361458333', '10', '05/05/2015 22:28:03','15,3', 'RA02');
execute insertartiradas('RA0242129,9372569444', '1', '05/05/2015 22:29:39','-13,7', 'RA02');
execute insertartiradas('RA0242129,9379050926', '23', '05/05/2015 22:30:35','14,1', 'RA02');
execute insertartiradas('RA0242129,938587963', '22', '05/05/2015 22:31:34','-13,6', 'RA02');
execute insertartiradas('RA0242129,9391087963', '27', '05/05/2015 22:32:19','15,6', 'RA02');
execute insertartiradas('RA0242129,9398726852', '11', '05/05/2015 22:33:25','-12,2', 'RA02');
execute insertartiradas('RA0242129,940474537', '6', '05/05/2015 22:34:17','16,4', 'RA02');
execute insertartiradas('RA0242129,9411921296', '16', '05/05/2015 22:35:19','-14,5', 'RA02');
execute insertartiradas('RA0242129,9423032407', '17', '05/05/2015 22:36:55','12,6', 'RA02');
execute insertartiradas('RA0242129,9431944444', '10', '05/05/2015 22:38:12','-13,7', 'RA02');
execute insertartiradas('RA0242129,944224537', '1', '05/05/2015 22:39:41','15,4', 'RA02');
execute insertartiradas('RA0242129,9449884259', '15', '05/05/2015 22:40:47','-13,5', 'RA02');
execute insertartiradas('RA0242129,9457060185', '17', '05/05/2015 22:41:49','19,1', 'RA02');
execute insertartiradas('RA0242129,9464236111', '13', '05/05/2015 22:42:51','-18,5', 'RA02');
execute insertartiradas('RA0242129,9469791667', '24', '05/05/2015 22:43:39','14,2', 'RA02');
execute insertartiradas('RA0242129,9475462963', '20', '05/05/2015 22:44:28','-18,4', 'RA02');
execute insertartiradas('RA0242129,948275463', '22', '05/05/2015 22:45:31','15,4', 'RA02');
execute insertartiradas('RA0242129,9491203704', '7', '05/05/2015 22:46:44','-17,1', 'RA02');
execute insertartiradas('RA0242129,9500115741', '29', '05/05/2015 22:48:01','18,2', 'RA02');
execute insertartiradas('RA0242129,951099537', '32', '05/05/2015 22:49:35','-24', 'RA02');
execute insertartiradas('RA0242129,952349537', '4', '05/05/2015 22:51:23','20,2', 'RA02');
execute insertartiradas('RA0242129,9534027778', '11', '05/05/2015 22:52:54','-17,7', 'RA02');
execute insertartiradas('RA0242129,9545833333', '15', '05/05/2015 22:54:36','23,7', 'RA02');
execute insertartiradas('RA0242129,955775463', '15', '05/05/2015 22:56:19','-23,9', 'RA02');
execute insertartiradas('RA0242129,9569212963', '31', '05/05/2015 22:57:58','22,6', 'RA02');
execute insertartiradas('RA0242129,9577430556', '12', '05/05/2015 22:59:09','-17,8', 'RA02');
execute insertartiradas('RA0242129,9585648148', '13', '05/05/2015 23:00:20','22,4', 'RA02');
execute insertartiradas('RA0242129,959212963', '31', '05/05/2015 23:01:16','-16,6', 'RA02');
execute insertartiradas('RA0242129,9596180556', '6', '05/05/2015 23:01:51','21', 'RA02');
execute insertartiradas('RA0242129,9600347222', '7', '05/05/2015 23:02:27','-16,2', 'RA02');
execute insertartiradas('RA0242129,9604976852', '0', '05/05/2015 23:03:07','18,7', 'RA02');
execute insertartiradas('RA0242129,9609837963', '9', '05/05/2015 23:03:49','-17,3', 'RA02');
execute insertartiradas('RA0242129,961400463', '12', '05/05/2015 23:04:25','18,6', 'RA02');
execute insertartiradas('RA0242129,9620138889', '15', '05/05/2015 23:05:18','-16,3', 'RA02');
execute insertartiradas('RA0242129,9628703704', '3', '05/05/2015 23:06:32','17,4', 'RA02');
execute insertartiradas('RA0242129,9634027778', '13', '05/05/2015 23:07:18','-19,4', 'RA02');
execute insertartiradas('RA0242129,9640740741', '17', '05/05/2015 23:08:16','15,5', 'RA02');
execute insertartiradas('RA0242129,9646296296', '26', '05/05/2015 23:09:04','-13,4', 'RA02');
execute insertartiradas('RA0242129,9650810185', '16', '05/05/2015 23:09:43','17,2', 'RA02');
execute insertartiradas('RA0242129,9654861111', '18', '05/05/2015 23:10:18','-18', 'RA02');
execute insertartiradas('RA0242129,9658912037', '17', '05/05/2015 23:10:53','19,2', 'RA02');
execute insertartiradas('RA0242129,9663425926', '19', '05/05/2015 23:11:32','-19,7', 'RA02');
execute insertartiradas('RA0242129,9668518519', '17', '05/05/2015 23:12:16','17,1', 'RA02');
execute insertartiradas('RA0242129,9673032407', '0', '05/05/2015 23:12:55','-18,1', 'RA02');
execute insertartiradas('RA0242129,9677777778', '22', '05/05/2015 23:13:36','15,4', 'RA02');
execute insertartiradas('RA0242129,9681828704', '5', '05/05/2015 23:14:11','-13,4', 'RA02');
execute insertartiradas('RA0242129,9691203704', '15', '05/05/2015 23:15:32','14,3', 'RA02');
execute insertartiradas('RA0242129,9694444444', '24', '05/05/2015 23:16:00','-14,5', 'RA02');
execute insertartiradas('RA0242129,9699074074', '31', '05/05/2015 23:16:40','15,3', 'RA02');
execute insertartiradas('RA0242129,9702662037', '2', '05/05/2015 23:17:11','-15,9', 'RA02');
execute insertartiradas('RA0242129,9709375', '6', '05/05/2015 23:18:09','15,3', 'RA02');
execute insertartiradas('RA0242129,9719907407', '26', '05/05/2015 23:19:40','-14,5', 'RA02');
execute insertartiradas('RA0242129,9725', '8', '05/05/2015 23:20:24','19,5', 'RA02');
execute insertartiradas('RA0242129,972962963', '27', '05/05/2015 23:21:04','-14,4', 'RA02');
execute insertartiradas('RA0242129,9743402778', '20', '05/05/2015 23:23:03','19,1', 'RA02');
execute insertartiradas('RA0242129,9749537037', '18', '05/05/2015 23:23:56','-13,9', 'RA02');
execute insertartiradas('RA0242129,9755902778', '17', '05/05/2015 23:24:51','16,1', 'RA02');
execute insertartiradas('RA0242129,976087963', '10', '05/05/2015 23:25:34','-15,3', 'RA02');
execute insertartiradas('RA0242129,9765856481', '20', '05/05/2015 23:26:17','16,1', 'RA02');
execute insertartiradas('RA0242129,9770486111', '32', '05/05/2015 23:26:57','-16,4', 'RA02');
execute insertartiradas('RA0242129,9775', '32', '05/05/2015 23:27:36','18,8', 'RA02');
execute insertartiradas('RA0242129,9779282407', '13', '05/05/2015 23:28:13','-13,9', 'RA02');
execute insertartiradas('RA0242129,9786805556', '26', '05/05/2015 23:29:18','16,4', 'RA02');
execute insertartiradas('RA0242129,9795486111', '11', '05/05/2015 23:30:33','-14,3', 'RA02');
execute insertartiradas('RA0242129,9817476852', '28', '05/05/2015 23:33:43','20,7', 'RA02');
execute insertartiradas('RA0242129,9829398148', '28', '05/05/2015 23:35:26','-14,6', 'RA02');
execute insertartiradas('RA0242129,9840162037', '33', '05/05/2015 23:36:59','19,6', 'RA02');
execute insertartiradas('RA0242129,9850810185', '35', '05/05/2015 23:38:31','-17,1', 'RA02');
execute insertartiradas('RA0242129,9863078704', '18', '05/05/2015 23:40:17','18,9', 'RA02');
execute insertartiradas('RA0242129,9878009259', '14', '05/05/2015 23:42:26','-14,2', 'RA02');
execute insertartiradas('RA0242129,989212963', '21', '05/05/2015 23:44:28','16,2', 'RA02');
execute insertartiradas('RA0242129,9905555556', '36', '05/05/2015 23:46:24','-11,8', 'RA02');
execute insertartiradas('RA0242129,9919791667', '25', '05/05/2015 23:48:27','14,3', 'RA02');
execute insertartiradas('RA0242129,9931365741', '29', '05/05/2015 23:50:07','-15,7', 'RA02');
execute insertartiradas('RA0242129,9948611111', '26', '05/05/2015 23:52:36','17,7', 'RA02');
execute insertartiradas('RA0242129,9962037037', '8', '05/05/2015 23:54:32','-16,5', 'RA02');
execute insertartiradas('RA0242129,9973379629', '24', '05/05/2015 23:56:10','15,4', 'RA02');
execute insertartiradas('RA0242129,9981597222', '10', '05/05/2015 23:57:21','-13,8', 'RA02');
execute insertartiradas('RA0242129,9988541667', '7', '05/05/2015 23:58:21','16,8', 'RA02');
execute insertartiradas('RA0242129,9995023148', '3', '05/05/2015 23:59:17','-12,4', 'RA02');
execute insertartiradas('RA0242130,0000115741', '26', '06/05/2015 00:00:01','18', 'RA02');
execute insertartiradas('RA0242130,0006481481', '31', '06/05/2015 00:00:56','-14', 'RA02');
execute insertartiradas('RA0242130,0011458333', '7', '06/05/2015 00:01:39','16,6', 'RA02');
execute insertartiradas('RA0242130,0016550926', '33', '06/05/2015 00:02:23','-14,1', 'RA02');
execute insertartiradas('RA0242130,0021412037', '6', '06/05/2015 00:03:05','16,2', 'RA02');
execute insertartiradas('RA0242130,0027199074', '6', '06/05/2015 00:03:55','-14,9', 'RA02');
execute insertartiradas('RA0242130,0031944444', '12', '06/05/2015 00:04:36','16,9', 'RA02');
execute insertartiradas('RA0242130,0037962963', '25', '06/05/2015 00:05:28','-13,1', 'RA02');
execute insertartiradas('RA0242130,0046296296', '7', '06/05/2015 00:06:40','15', 'RA02');
execute insertartiradas('RA0242130,0053240741', '11', '06/05/2015 00:07:40','-14,7', 'RA02');
execute insertartiradas('RA0242130,0059837963', '2', '06/05/2015 00:08:37','15,4', 'RA02');
execute insertartiradas('RA0242130,0065046296', '34', '06/05/2015 00:09:22','-13,7', 'RA02');
execute insertartiradas('RA0242130,0070023148', '25', '06/05/2015 00:10:05','15,2', 'RA02');
execute insertartiradas('RA0242130,0076736111', '15', '06/05/2015 00:11:03','-13', 'RA02');
execute insertartiradas('RA0242130,0081828704', '16', '06/05/2015 00:11:47','14,2', 'RA02');
execute insertartiradas('RA0242130,0091319444', '33', '06/05/2015 00:13:09','-12,5', 'RA02');
execute insertartiradas('RA0242130,009837963', '16', '06/05/2015 00:14:10','16,8', 'RA02');
execute insertartiradas('RA0242130,010462963', '21', '06/05/2015 00:15:04','-14,6', 'RA02');
execute insertartiradas('RA0242130,0121064815', '2', '06/05/2015 00:17:26','15,1', 'RA02');
execute insertartiradas('RA0242130,0129861111', '24', '06/05/2015 00:18:42','-13,1', 'RA02');
execute insertartiradas('RA0242130,0136111111', '27', '06/05/2015 00:19:36','15,9', 'RA02');
execute insertartiradas('RA0242130,0141435185', '36', '06/05/2015 00:20:22','-13,9', 'RA02');
execute insertartiradas('RA0242130,0154513889', '32', '06/05/2015 00:22:15','18,6', 'RA02');
execute insertartiradas('RA0242130,0165625', '2', '06/05/2015 00:23:51','-14,2', 'RA02');
execute insertartiradas('RA0242130,0170023148', '3', '06/05/2015 00:24:29','16,7', 'RA02');
execute insertartiradas('RA0242130,0174189815', '12', '06/05/2015 00:25:05','-15,1', 'RA02');
execute insertartiradas('RA0242130,0179861111', '5', '06/05/2015 00:25:54','13,8', 'RA02');
execute insertartiradas('RA0242130,0183449074', '17', '06/05/2015 00:26:25','-11,7', 'RA02');
execute insertartiradas('RA0242130,0188425926', '20', '06/05/2015 00:27:08','14,5', 'RA02');
execute insertartiradas('RA0242130,0194328704', '30', '06/05/2015 00:27:59','-13,7', 'RA02');
execute insertartiradas('RA0242130,0199305556', '19', '06/05/2015 00:28:42','15,3', 'RA02');
execute insertartiradas('RA0242130,0204976852', '22', '06/05/2015 00:29:31','-15,9', 'RA02');
execute insertartiradas('RA0242130,0210300926', '29', '06/05/2015 00:30:17','17,6', 'RA02');
execute insertartiradas('RA0242130,0214583333', '23', '06/05/2015 00:30:54','-15,9', 'RA02');
execute insertartiradas('RA0242130,0222800926', '14', '06/05/2015 00:32:05','13,7', 'RA02');
execute insertartiradas('RA0242130,0228356481', '33', '06/05/2015 00:32:53','-15,9', 'RA02');
execute insertartiradas('RA0242130,0233449074', '33', '06/05/2015 00:33:37','16,5', 'RA02');
execute insertartiradas('RA0242130,0237847222', '11', '06/05/2015 00:34:15','-14,9', 'RA02');
execute insertartiradas('RA0242130,024212963', '7', '06/05/2015 00:34:52','16,7', 'RA02');
execute insertartiradas('RA0242130,0247337963', '14', '06/05/2015 00:35:37','-15,9', 'RA02');
execute insertartiradas('RA0242130,0253009259', '22', '06/05/2015 00:36:26','15,3', 'RA02');
execute insertartiradas('RA0242130,0256828704', '14', '06/05/2015 00:36:59','-14,6', 'RA02');
execute insertartiradas('RA0242130,0260763889', '14', '06/05/2015 00:37:33','14', 'RA02');
execute insertartiradas('RA0242130,0264814815', '0', '06/05/2015 00:38:08','-14,1', 'RA02');
execute insertartiradas('RA0242130,0268634259', '9', '06/05/2015 00:38:41','17,4', 'RA02');
execute insertartiradas('RA0242130,0272685185', '28', '06/05/2015 00:39:16','-17,3', 'RA02');
execute insertartiradas('RA0242130,0281828704', '4', '06/05/2015 00:40:35','16,4', 'RA02');
execute insertartiradas('RA0242130,0287847222', '31', '06/05/2015 00:41:27','-20,6', 'RA02');
execute insertartiradas('RA0242130,0291898148', '18', '06/05/2015 00:42:02','18,8', 'RA02');
execute insertartiradas('RA0242130,0299189814', '22', '06/05/2015 00:43:05','-17,4', 'RA02');
execute insertartiradas('RA0242130,0305555556', '30', '06/05/2015 00:44:00','18,2', 'RA02');
execute insertartiradas('RA0242130,0311689815', '31', '06/05/2015 00:44:53','-18,2', 'RA02');
execute insertartiradas('RA0242130,0317361111', '9', '06/05/2015 00:45:42','18,6', 'RA02');
execute insertartiradas('RA0242130,0323842593', '10', '06/05/2015 00:46:38','-18,7', 'RA02');
execute insertartiradas('RA0242130,0329282407', '10', '06/05/2015 00:47:25','19,1', 'RA02');
execute insertartiradas('RA0242130,0335763889', '26', '06/05/2015 00:48:21','-20', 'RA02');
execute insertartiradas('RA0242130,0342592593', '24', '06/05/2015 00:49:20','16,9', 'RA02');
execute insertartiradas('RA0242130,0349305556', '7', '06/05/2015 00:50:18','-18,6', 'RA02');
execute insertartiradas('RA0242130,035625', '10', '06/05/2015 00:51:18','16', 'RA02');
execute insertartiradas('RA0242130,0361805556', '1', '06/05/2015 00:52:06','-18,2', 'RA02');
execute insertartiradas('RA0242130,036712963', '24', '06/05/2015 00:52:52','18,4', 'RA02');
execute insertartiradas('RA0242130,0374421296', '20', '06/05/2015 00:53:55','-18,9', 'RA02');
execute insertartiradas('RA0242130,0380324074', '24', '06/05/2015 00:54:46','16,2', 'RA02');
execute insertartiradas('RA0242130,0385416667', '13', '06/05/2015 00:55:30','-18,3', 'RA02');
execute insertartiradas('RA0242130,0390740741', '29', '06/05/2015 00:56:16','18,1', 'RA02');
execute insertartiradas('RA0242130,0396296296', '5', '06/05/2015 00:57:04','-18,7', 'RA02');
execute insertartiradas('RA0242130,040150463', '26', '06/05/2015 00:57:49','19,5', 'RA02');
execute insertartiradas('RA0242130,0410648148', '14', '06/05/2015 00:59:08','-17,5', 'RA02');
execute insertartiradas('RA0242130,0417476852', '36', '06/05/2015 01:00:07','18,7', 'RA02');
execute insertartiradas('RA0242130,0425231481', '10', '06/05/2015 01:01:14','-19,3', 'RA02');
execute insertartiradas('RA0242130,043125', '14', '06/05/2015 01:02:06','17,8', 'RA02');
execute insertartiradas('RA0242130,0438194444', '4', '06/05/2015 01:03:06','-20,3', 'RA02');
execute insertartiradas('RA0242130,0444791667', '17', '06/05/2015 01:04:03','18,9', 'RA02');
execute insertartiradas('RA0242130,0448958333', '25', '06/05/2015 01:04:39','-19,1', 'RA02');
execute insertartiradas('RA0242130,0455439814', '15', '06/05/2015 01:05:35','15,8', 'RA02');
execute insertartiradas('RA0242130,0461689815', '1', '06/05/2015 01:06:29','-18,1', 'RA02');
execute insertartiradas('RA0242130,046712963', '0', '06/05/2015 01:07:16','17,8', 'RA02');
execute insertartiradas('RA0242130,0474305556', '10', '06/05/2015 01:08:18','-18,6', 'RA02');
execute insertartiradas('RA0242130,0478819444', '5', '06/05/2015 01:08:57','18,6', 'RA02');
execute insertartiradas('RA0242130,0485185185', '0', '06/05/2015 01:09:52','-17,3', 'RA02');
execute insertartiradas('RA0242130,0492476852', '34', '06/05/2015 01:10:55','19,8', 'RA02');
execute insertartiradas('RA0242130,0497916667', '12', '06/05/2015 01:11:42','-16,5', 'RA02');
execute insertartiradas('RA0242130,0503819444', '8', '06/05/2015 01:12:33','16,3', 'RA02');
execute insertartiradas('RA0242130,0511342593', '7', '06/05/2015 01:13:38','-20,6', 'RA02');
execute insertartiradas('RA0242130,0518171296', '35', '06/05/2015 01:14:37','18,8', 'RA02');
execute insertartiradas('RA0242130,0524189815', '12', '06/05/2015 01:15:29','-18,8', 'RA02');
execute insertartiradas('RA0242130,0532175926', '1', '06/05/2015 01:16:38','16,8', 'RA02');
execute insertartiradas('RA0242130,0537962963', '5', '06/05/2015 01:17:28','-19,7', 'RA02');
execute insertartiradas('RA0242130,0544675926', '14', '06/05/2015 01:18:26','17,9', 'RA02');
execute insertartiradas('RA0242130,0552662037', '4', '06/05/2015 01:19:35','-18', 'RA02');
execute insertartiradas('RA0242130,0559837963', '21', '06/05/2015 01:20:37','15,9', 'RA02');
execute insertartiradas('RA0242130,0565277778', '34', '06/05/2015 01:21:24','-18,2', 'RA02');
execute insertartiradas('RA0242130,0572916667', '28', '06/05/2015 01:22:30','13,6', 'RA02');
execute insertartiradas('RA0242130,0580787037', '11', '06/05/2015 01:23:38','-14,3', 'RA02');
execute insertartiradas('RA0242130,0590046296', '10', '06/05/2015 01:24:58','15,4', 'RA02');
execute insertartiradas('RA0242130,0596064815', '21', '06/05/2015 01:25:50','-18', 'RA02');
execute insertartiradas('RA0242130,0602083333', '23', '06/05/2015 01:26:42','17,2', 'RA02');
execute insertartiradas('RA0242130,060787037', '5', '06/05/2015 01:27:32','-18,2', 'RA02');
execute insertartiradas('RA0242130,0615856481', '36', '06/05/2015 01:28:41','15,4', 'RA02');
execute insertartiradas('RA0242130,0623958333', '8', '06/05/2015 01:29:51','-18,1', 'RA02');
execute insertartiradas('RA0242130,0632523148', '7', '06/05/2015 01:31:05','14,9', 'RA02');
execute insertartiradas('RA0242130,0639236111', '25', '06/05/2015 01:32:03','-19,4', 'RA02');
execute insertartiradas('RA0242130,0644212963', '8', '06/05/2015 01:32:46','15,7', 'RA02');
execute insertartiradas('RA0242130,0650694444', '4', '06/05/2015 01:33:42','-17,3', 'RA02');
execute insertartiradas('RA0242130,0656828704', '5', '06/05/2015 01:34:35','16,3', 'RA02');
execute insertartiradas('RA0242130,0663425926', '1', '06/05/2015 01:35:32','-23,4', 'RA02');
execute insertartiradas('RA0242130,0669675926', '2', '06/05/2015 01:36:26','16,4', 'RA02');
execute insertartiradas('RA0242130,0676273148', '25', '06/05/2015 01:37:23','-17,6', 'RA02');
execute insertartiradas('RA0242130,0682986111', '21', '06/05/2015 01:38:21','19,9', 'RA02');
execute insertartiradas('RA0242130,0689351852', '2', '06/05/2015 01:39:16','-19', 'RA02');
execute insertartiradas('RA0242130,0696064815', '35', '06/05/2015 01:40:14','16,3', 'RA02');
execute insertartiradas('RA0242130,0713194444', '24', '06/05/2015 01:42:42','-14,2', 'RA02');
execute insertartiradas('RA0242130,071712963', '12', '06/05/2015 01:43:16','14,8', 'RA02');
execute insertartiradas('RA0242130,0722453704', '32', '06/05/2015 01:44:02','-18,4', 'RA02');
execute insertartiradas('RA0242130,0728356481', '10', '06/05/2015 01:44:53','14,2', 'RA02');
execute insertartiradas('RA0242130,0734143518', '21', '06/05/2015 01:45:43','-18,8', 'RA02');
execute insertartiradas('RA0242130,073900463', '33', '06/05/2015 01:46:25','18,5', 'RA02');
execute insertartiradas('RA0242130,0744212963', '31', '06/05/2015 01:47:10','-20,3', 'RA02');
execute insertartiradas('RA0242130,0749305556', '2', '06/05/2015 01:47:54','17,8', 'RA02');
execute insertartiradas('RA0242130,0755092593', '17', '06/05/2015 01:48:44','-19,5', 'RA02');
execute insertartiradas('RA0242130,0764930556', '0', '06/05/2015 01:50:09','15,3', 'RA02');
execute insertartiradas('RA0242130,0775462963', '14', '06/05/2015 01:51:40','-16,9', 'RA02');
execute insertartiradas('RA0242130,0783912037', '23', '06/05/2015 01:52:53','18,5', 'RA02');
execute insertartiradas('RA0242130,0789814815', '22', '06/05/2015 01:53:44','-17,2', 'RA02');
execute insertartiradas('RA0242130,0798148148', '33', '06/05/2015 01:54:56','15,8', 'RA02');
execute insertartiradas('RA0242130,0804861111', '7', '06/05/2015 01:55:54','-18,3', 'RA02');
execute insertartiradas('RA0242130,0812384259', '7', '06/05/2015 01:56:59','15,6', 'RA02');
execute insertartiradas('RA0242130,0821412037', '35', '06/05/2015 01:58:17','-21', 'RA02');
execute insertartiradas('RA0242130,0830324074', '5', '06/05/2015 01:59:34','16,1', 'RA02');
execute insertartiradas('RA0242130,0836805556', '22', '06/05/2015 02:00:30','-21,9', 'RA02');
execute insertartiradas('RA0242130,0843518519', '0', '06/05/2015 02:01:28','17', 'RA02');
execute insertartiradas('RA0242130,0849768519', '13', '06/05/2015 02:02:22','-10,9', 'RA02');
execute insertartiradas('RA0242130,0853935185', '32', '06/05/2015 02:02:58','15,5', 'RA02');
execute insertartiradas('RA0242130,086099537', '3', '06/05/2015 02:03:59','-11,8', 'RA02');
execute insertartiradas('RA0242130,0865856481', '12', '06/05/2015 02:04:41','16,4', 'RA02');
execute insertartiradas('RA0242130,0871296296', '2', '06/05/2015 02:05:28','-12,7', 'RA02');
execute insertartiradas('RA0242130,0877546296', '12', '06/05/2015 02:06:22','13,1', 'RA02');
execute insertartiradas('RA0242130,0884953704', '15', '06/05/2015 02:07:26','-12,1', 'RA02');
execute insertartiradas('RA0242130,089525463', '8', '06/05/2015 02:08:55','14,3', 'RA02');
execute insertartiradas('RA0242130,0903819444', '34', '06/05/2015 02:10:09','-12,8', 'RA02');
execute insertartiradas('RA0242130,0911111111', '23', '06/05/2015 02:11:12','11,7', 'RA02');
execute insertartiradas('RA0242130,091875', '12', '06/05/2015 02:12:18','-13,5', 'RA02');
execute insertartiradas('RA0242130,0924884259', '6', '06/05/2015 02:13:11','15,7', 'RA02');
execute insertartiradas('RA0242130,0934375', '33', '06/05/2015 02:14:33','-11,8', 'RA02');
execute insertartiradas('RA0242130,094212963', '12', '06/05/2015 02:15:40','11,6', 'RA02');
execute insertartiradas('RA0242130,0949421296', '34', '06/05/2015 02:16:43','-10,6', 'RA02');
execute insertartiradas('RA0242130,0955902778', '27', '06/05/2015 02:17:39','16,9', 'RA02');
execute insertartiradas('RA0242130,0964930556', '27', '06/05/2015 02:18:57','-11,9', 'RA02');
execute insertartiradas('RA0242130,0971296296', '3', '06/05/2015 02:19:52','16,3', 'RA02');
execute insertartiradas('RA0242130,0976967593', '28', '06/05/2015 02:20:41','-11,6', 'RA02');
execute insertartiradas('RA0242130,0983564815', '8', '06/05/2015 02:21:38','15', 'RA02');
execute insertartiradas('RA0242130,0991087963', '31', '06/05/2015 02:22:43','-13,4', 'RA02');
execute insertartiradas('RA0242130,099837963', '13', '06/05/2015 02:23:46','13,2', 'RA02');
execute insertartiradas('RA0242130,1006018519', '25', '06/05/2015 02:24:52','-14,4', 'RA02');
execute insertartiradas('RA0242130,101261574', '8', '06/05/2015 02:25:49','12,2', 'RA02');
execute insertartiradas('RA0242130,1018634259', '7', '06/05/2015 02:26:41','-13,1', 'RA02');
execute insertartiradas('RA0242130,1026388889', '5', '06/05/2015 02:27:48','15,3', 'RA02');
execute insertartiradas('RA0242130,1032175926', '3', '06/05/2015 02:28:38','-11,9', 'RA02');
execute insertartiradas('RA0242130,10375', '16', '06/05/2015 02:29:24','14,6', 'RA02');
execute insertartiradas('RA0242130,8114814815', '0', '06/05/2015 19:28:32','19,9', 'RA02');
execute insertartiradas('RA0242130,8120833333', '29', '06/05/2015 19:29:24','-15,9', 'RA02');
execute insertartiradas('RA0242130,8128240741', '21', '06/05/2015 19:30:28','19,1', 'RA02');
execute insertartiradas('RA0242130,8136921296', '19', '06/05/2015 19:31:43','-19,2', 'RA02');
execute insertartiradas('RA0242130,8146643518', '22', '06/05/2015 19:33:07','19,9', 'RA02');
execute insertartiradas('RA0242130,8156365741', '19', '06/05/2015 19:34:31','-20,8', 'RA02');
execute insertartiradas('RA0242130,8167939815', '32', '06/05/2015 19:36:11','22,7', 'RA02');
execute insertartiradas('RA0242130,8182060185', '30', '06/05/2015 19:38:13','-20,5', 'RA02');
execute insertartiradas('RA0242130,8191550926', '31', '06/05/2015 19:39:35','19,6', 'RA02');
execute insertartiradas('RA0242130,8201851852', '11', '06/05/2015 19:41:04','-18,7', 'RA02');
execute insertartiradas('RA0242130,8217013889', '3', '06/05/2015 19:43:15','18,8', 'RA02');
execute insertartiradas('RA0242130,8222916667', '4', '06/05/2015 19:44:06','-18,9', 'RA02');
execute insertartiradas('RA0242130,8229282407', '33', '06/05/2015 19:45:01','22,1', 'RA02');
execute insertartiradas('RA0242130,823587963', '36', '06/05/2015 19:45:58','-19', 'RA02');
execute insertartiradas('RA0242130,8240856481', '18', '06/05/2015 19:46:41','24,1', 'RA02');
execute insertartiradas('RA0242130,833599537', '13', '06/05/2015 20:00:23','-17,2', 'RA02');
execute insertartiradas('RA0242130,8341550926', '24', '06/05/2015 20:01:11','17,7', 'RA02');
execute insertartiradas('RA0242130,8348032407', '10', '06/05/2015 20:02:07','-19,7', 'RA02');
execute insertartiradas('RA0242130,8355787037', '14', '06/05/2015 20:03:14','17,5', 'RA02');
execute insertartiradas('RA0242130,8363078704', '28', '06/05/2015 20:04:17','-18,7', 'RA02');
execute insertartiradas('RA0242130,8373148148', '9', '06/05/2015 20:05:44','18,6', 'RA02');
execute insertartiradas('RA0242130,8379282407', '24', '06/05/2015 20:06:37','-17,5', 'RA02');
execute insertartiradas('RA0242130,8385416667', '16', '06/05/2015 20:07:30','17,7', 'RA02');
execute insertartiradas('RA0242130,8391203704', '31', '06/05/2015 20:08:20','-18,9', 'RA02');
execute insertartiradas('RA0242130,8397453704', '20', '06/05/2015 20:09:14','17,8', 'RA02');
execute insertartiradas('RA0242130,8404513889', '29', '06/05/2015 20:10:15','-21,3', 'RA02');
execute insertartiradas('RA0242130,8412615741', '4', '06/05/2015 20:11:25','16,5', 'RA02');
execute insertartiradas('RA0242130,8418171296', '9', '06/05/2015 20:12:13','-19,2', 'RA02');
execute insertartiradas('RA0242130,8423842593', '7', '06/05/2015 20:13:02','19,1', 'RA02');
execute insertartiradas('RA0242130,8428819444', '6', '06/05/2015 20:13:45','-20,1', 'RA02');
execute insertartiradas('RA0242130,8433449074', '32', '06/05/2015 20:14:25','16,8', 'RA02');
execute insertartiradas('RA0242130,8442013889', '4', '06/05/2015 20:15:39','-23,4', 'RA02');
execute insertartiradas('RA0242130,8450810185', '19', '06/05/2015 20:16:55','17,1', 'RA02');
execute insertartiradas('RA0242130,845775463', '0', '06/05/2015 20:17:55','-18,1', 'RA02');
execute insertartiradas('RA0242130,8463541667', '28', '06/05/2015 20:18:45','18,3', 'RA02');
execute insertartiradas('RA0242130,8472106481', '20', '06/05/2015 20:19:59','-18,6', 'RA02');
execute insertartiradas('RA0242130,8479513889', '13', '06/05/2015 20:21:03','19,3', 'RA02');
execute insertartiradas('RA0242130,8485185185', '22', '06/05/2015 20:21:52','-17,1', 'RA02');
execute insertartiradas('RA0242130,8493055556', '1', '06/05/2015 20:23:00','17,6', 'RA02');
execute insertartiradas('RA0242130,8500578704', '15', '06/05/2015 20:24:05','-17', 'RA02');
execute insertartiradas('RA0242130,8510185185', '1', '06/05/2015 20:25:28','19,3', 'RA02');
execute insertartiradas('RA0242130,8521064815', '12', '06/05/2015 20:27:02','-18,5', 'RA02');
execute insertartiradas('RA0242130,8532060185', '19', '06/05/2015 20:28:37','17,3', 'RA02');
execute insertartiradas('RA0242130,8539699074', '17', '06/05/2015 20:29:43','-17,5', 'RA02');
execute insertartiradas('RA0242130,8548032407', '11', '06/05/2015 20:30:55','19,3', 'RA02');
execute insertartiradas('RA0242130,8557523148', '4', '06/05/2015 20:32:17','-17,6', 'RA02');
execute insertartiradas('RA0242130,8566087963', '11', '06/05/2015 20:33:31','19,5', 'RA02');
execute insertartiradas('RA0242130,8581712963', '12', '06/05/2015 20:35:46','-19,6', 'RA02');
execute insertartiradas('RA0242130,8598032407', '12', '06/05/2015 20:38:07','18,5', 'RA02');
execute insertartiradas('RA0242130,8619328704', '19', '06/05/2015 20:41:11','-15,8', 'RA02');
execute insertartiradas('RA0242130,8631365741', '25', '06/05/2015 20:42:55','14,8', 'RA02');
execute insertartiradas('RA0242130,864537037', '11', '06/05/2015 20:44:56','-11,6', 'RA02');
execute insertartiradas('RA0242130,8656597222', '24', '06/05/2015 20:46:33','15,5', 'RA02');
execute insertartiradas('RA0242130,8666435185', '28', '06/05/2015 20:47:58','-14,1', 'RA02');
execute insertartiradas('RA0242130,8677546296', '28', '06/05/2015 20:49:34','13', 'RA02');
execute insertartiradas('RA0242130,8693287037', '22', '06/05/2015 20:51:50','-12', 'RA02');
execute insertartiradas('RA0242130,8702662037', '21', '06/05/2015 20:53:11','16,7', 'RA02');
execute insertartiradas('RA0242130,8716782407', '8', '06/05/2015 20:55:13','-14', 'RA02');
execute insertartiradas('RA0242130,8730555556', '31', '06/05/2015 20:57:12','12,9', 'RA02');
execute insertartiradas('RA0242130,874525463', '34', '06/05/2015 20:59:19','-16,6', 'RA02');
execute insertartiradas('RA0242130,8759259259', '4', '06/05/2015 21:01:20','17,4', 'RA02');
execute insertartiradas('RA0242130,877037037', '35', '06/05/2015 21:02:56','-13,3', 'RA02');
execute insertartiradas('RA0242130,8780902777', '9', '06/05/2015 21:04:27','19', 'RA02');
execute insertartiradas('RA0242130,8789583333', '33', '06/05/2015 21:05:42','-19,1', 'RA02');
execute insertartiradas('RA0242130,8799305556', '21', '06/05/2015 21:07:06','18,4', 'RA02');
execute insertartiradas('RA0242130,8808912037', '6', '06/05/2015 21:08:29','-11,1', 'RA02');
execute insertartiradas('RA0242130,8818865741', '5', '06/05/2015 21:09:55','13,1', 'RA02');
execute insertartiradas('RA0242130,8827314815', '5', '06/05/2015 21:11:08','-12,9', 'RA02');
execute insertartiradas('RA0242130,884224537', '36', '06/05/2015 21:13:17','17,9', 'RA02');
execute insertartiradas('RA0242130,8852430556', '26', '06/05/2015 21:14:45','-11,8', 'RA02');
execute insertartiradas('RA0242130,8861458333', '29', '06/05/2015 21:16:03','16,7', 'RA02');
execute insertartiradas('RA0242130,8879513889', '5', '06/05/2015 21:18:39','-15,5', 'RA02');
execute insertartiradas('RA0242130,8886111111', '36', '06/05/2015 21:19:36','15,5', 'RA02');
execute insertartiradas('RA0242130,8900347222', '19', '06/05/2015 21:21:39','-11,6', 'RA02');
execute insertartiradas('RA0242130,8908333333', '15', '06/05/2015 21:22:48','15,9', 'RA02');
execute insertartiradas('RA0242130,8916666667', '34', '06/05/2015 21:24:00','-16,7', 'RA02');
execute insertartiradas('RA0242130,8922916667', '3', '06/05/2015 21:24:54','17,3', 'RA02');
execute insertartiradas('RA0242130,8928472222', '20', '06/05/2015 21:25:42','-14,2', 'RA02');
execute insertartiradas('RA0242130,89375', '6', '06/05/2015 21:27:00','15,7', 'RA02');
execute insertartiradas('RA0242130,8943981481', '10', '06/05/2015 21:27:56','-14,7', 'RA02');
execute insertartiradas('RA0242130,8949884259', '8', '06/05/2015 21:28:47','20,3', 'RA02');
execute insertartiradas('RA0242130,8958912037', '32', '06/05/2015 21:30:05','-14,6', 'RA02');
execute insertartiradas('RA0242130,8967708333', '34', '06/05/2015 21:31:21','13,9', 'RA02');
execute insertartiradas('RA0242130,8973958333', '19', '06/05/2015 21:32:15','-15,2', 'RA02');
execute insertartiradas('RA0242130,8983912037', '2', '06/05/2015 21:33:41','15,9', 'RA02');
execute insertartiradas('RA0242130,8989467593', '31', '06/05/2015 21:34:29','-15,7', 'RA02');
execute insertartiradas('RA0242130,8996180556', '34', '06/05/2015 21:35:27','17,2', 'RA02');
execute insertartiradas('RA0242130,9001041667', '31', '06/05/2015 21:36:09','-14,6', 'RA02');
execute insertartiradas('RA0242130,9011226852', '7', '06/05/2015 21:37:37','15,8', 'RA02');
execute insertartiradas('RA0242130,9018171296', '11', '06/05/2015 21:38:37','-15,4', 'RA02');
execute insertartiradas('RA0242130,9023842593', '20', '06/05/2015 21:39:26','16,3', 'RA02');
execute insertartiradas('RA0242130,9032407407', '28', '06/05/2015 21:40:40','-16,9', 'RA02');
execute insertartiradas('RA0242130,9043981481', '6', '06/05/2015 21:42:20','18,1', 'RA02');
execute insertartiradas('RA0242130,9049652778', '32', '06/05/2015 21:43:09','-18', 'RA02');
execute insertartiradas('RA0242130,9056828704', '1', '06/05/2015 21:44:11','20,4', 'RA02');
execute insertartiradas('RA0242130,9063541667', '7', '06/05/2015 21:45:09','-21,6', 'RA02');
execute insertartiradas('RA0242130,907025463', '4', '06/05/2015 21:46:07','18,8', 'RA02');
execute insertartiradas('RA0242130,9076967593', '1', '06/05/2015 21:47:05','-19,8', 'RA02');
execute insertartiradas('RA0242130,908287037', '16', '06/05/2015 21:47:56','17,5', 'RA02');
execute insertartiradas('RA0242130,9088310185', '8', '06/05/2015 21:48:43','-19,6', 'RA02');
execute insertartiradas('RA0242130,9094560185', '20', '06/05/2015 21:49:37','19,2', 'RA02');
execute insertartiradas('RA0242130,9101967593', '35', '06/05/2015 21:50:41','-20,1', 'RA02');
execute insertartiradas('RA0242130,9108564815', '27', '06/05/2015 21:51:38','20,7', 'RA02');
execute insertartiradas('RA0242130,9114351852', '11', '06/05/2015 21:52:28','-20,6', 'RA02');
execute insertartiradas('RA0242130,9121180556', '35', '06/05/2015 21:53:27','18,8', 'RA02');
execute insertartiradas('RA0242130,9128587963', '9', '06/05/2015 21:54:31','-20,1', 'RA02');
execute insertartiradas('RA0242130,9133912037', '33', '06/05/2015 21:55:17','17,1', 'RA02');
execute insertartiradas('RA0242130,9139351852', '28', '06/05/2015 21:56:04','-19,2', 'RA02');
execute insertartiradas('RA0242130,9145138889', '5', '06/05/2015 21:56:54','18,4', 'RA02');
execute insertartiradas('RA0242130,9149537037', '36', '06/05/2015 21:57:32','-19,6', 'RA02');
execute insertartiradas('RA0242130,9154398148', '2', '06/05/2015 21:58:14','20,4', 'RA02');
execute insertartiradas('RA0242130,9159375', '21', '06/05/2015 21:58:57','-18,7', 'RA02');
execute insertartiradas('RA0242130,9164236111', '24', '06/05/2015 21:59:39','18,3', 'RA02');
execute insertartiradas('RA0242130,9168981481', '3', '06/05/2015 22:00:20','-17,3', 'RA02');
execute insertartiradas('RA0242130,9172800926', '29', '06/05/2015 22:00:53','18', 'RA02');
execute insertartiradas('RA0242130,9178240741', '1', '06/05/2015 22:01:40','-17,2', 'RA02');
execute insertartiradas('RA0242130,9182638889', '17', '06/05/2015 22:02:18','16,9', 'RA02');
execute insertartiradas('RA0242130,9189814815', '8', '06/05/2015 22:03:20','-18,7', 'RA02');
execute insertartiradas('RA0242130,919537037', '24', '06/05/2015 22:04:08','19,4', 'RA02');
execute insertartiradas('RA0242130,9200578704', '15', '06/05/2015 22:04:53','-18,6', 'RA02');
execute insertartiradas('RA0242130,9206481481', '21', '06/05/2015 22:05:44','18', 'RA02');
execute insertartiradas('RA0242130,921099537', '16', '06/05/2015 22:06:23','-19,2', 'RA02');
execute insertartiradas('RA0242130,9215856481', '33', '06/05/2015 22:07:05','20,5', 'RA02');
execute insertartiradas('RA0242130,9220949074', '20', '06/05/2015 22:07:49','-18,2', 'RA02');
execute insertartiradas('RA0242130,9228587963', '1', '06/05/2015 22:08:55','18', 'RA02');
execute insertartiradas('RA0242130,9233912037', '0', '06/05/2015 22:09:41','-18,3', 'RA02');
execute insertartiradas('RA0242130,9247222222', '2', '06/05/2015 22:11:36','17,4', 'RA02');
execute insertartiradas('RA0242130,9253125', '7', '06/05/2015 22:12:27','-18,1', 'RA02');
execute insertartiradas('RA0242130,9257523148', '7', '06/05/2015 22:13:05','19,2', 'RA02');
execute insertartiradas('RA0242130,9263194444', '2', '06/05/2015 22:13:54','-17', 'RA02');
execute insertartiradas('RA0242130,9268634259', '4', '06/05/2015 22:14:41','17,6', 'RA02');
execute insertartiradas('RA0242130,9274652778', '23', '06/05/2015 22:15:33','-16,1', 'RA02');
execute insertartiradas('RA0242130,9281712963', '20', '06/05/2015 22:16:34','19,4', 'RA02');
execute insertartiradas('RA0242130,9289467593', '30', '06/05/2015 22:17:41','-17,7', 'RA02');
execute insertartiradas('RA0242130,9295486111', '7', '06/05/2015 22:18:33','17,5', 'RA02');
execute insertartiradas('RA0242130,9300115741', '30', '06/05/2015 22:19:13','-17,2', 'RA02');
execute insertartiradas('RA0242130,9304398148', '15', '06/05/2015 22:19:50','17,6', 'RA02');
execute insertartiradas('RA0242130,9309027778', '26', '06/05/2015 22:20:30','-19,7', 'RA02');
execute insertartiradas('RA0242130,9314467593', '14', '06/05/2015 22:21:17','17,5', 'RA02');
execute insertartiradas('RA0242130,9319212963', '2', '06/05/2015 22:21:58','-19,9', 'RA02');
execute insertartiradas('RA0242130,9323148148', '33', '06/05/2015 22:22:32','17,5', 'RA02');
execute insertartiradas('RA0242130,9333217593', '9', '06/05/2015 22:23:59','-18,1', 'RA02');
execute insertartiradas('RA0242130,9341898148', '1', '06/05/2015 22:25:14','19,1', 'RA02');
execute insertartiradas('RA0242130,9351851852', '15', '06/05/2015 22:26:40','-19,2', 'RA02');
execute insertartiradas('RA0242130,9358101852', '25', '06/05/2015 22:27:34','15,2', 'RA02');
execute insertartiradas('RA0242130,9366550926', '33', '06/05/2015 22:28:47','-19,8', 'RA02');
execute insertartiradas('RA0242130,9373726852', '21', '06/05/2015 22:29:49','14,7', 'RA02');
execute insertartiradas('RA0242130,9379050926', '6', '06/05/2015 22:30:35','-21,4', 'RA02');
execute insertartiradas('RA0242130,9384375', '29', '06/05/2015 22:31:21','23', 'RA02');
execute insertartiradas('RA0242130,9390277778', '1', '06/05/2015 22:32:12','-18,2', 'RA02');
execute insertartiradas('RA0242130,9397916667', '27', '06/05/2015 22:33:18','16', 'RA02');
execute insertartiradas('RA0242130,9403819444', '20', '06/05/2015 22:34:09','-19,9', 'RA02');
execute insertartiradas('RA0242130,9413078704', '3', '06/05/2015 22:35:29','17,7', 'RA02');
execute insertartiradas('RA0242130,9419212962', '10', '06/05/2015 22:36:22','-20,3', 'RA02');
execute insertartiradas('RA0242130,9429166667', '5', '06/05/2015 22:37:48','18', 'RA02');
execute insertartiradas('RA0242130,9435763889', '8', '06/05/2015 22:38:45','-22,8', 'RA02');
execute insertartiradas('RA0242130,9447337963', '5', '06/05/2015 22:40:25','14,1', 'RA02');
execute insertartiradas('RA0242130,9456828704', '30', '06/05/2015 22:41:47','-19,8', 'RA02');
execute insertartiradas('RA0242130,9463425925', '36', '06/05/2015 22:42:44','19,6', 'RA02');
execute insertartiradas('RA0242130,9469328704', '1', '06/05/2015 22:43:35','-14,6', 'RA02');
execute insertartiradas('RA0242130,9472916667', '19', '06/05/2015 22:44:06','17,4', 'RA02');
execute insertartiradas('RA0242130,9478009259', '23', '06/05/2015 22:44:50','-18,9', 'RA02');
execute insertartiradas('RA0242130,9484143518', '18', '06/05/2015 22:45:43','16,9', 'RA02');
execute insertartiradas('RA0242130,9489236111', '5', '06/05/2015 22:46:27','-10,6', 'RA02');
execute insertartiradas('RA0242130,9492939815', '27', '06/05/2015 22:46:59','16,9', 'RA02');
execute insertartiradas('RA0242130,9496527778', '17', '06/05/2015 22:47:30','-15,7', 'RA02');
execute insertartiradas('RA0242130,9500115741', '34', '06/05/2015 22:48:01','17,7', 'RA02');
execute insertartiradas('RA0242130,9504513889', '10', '06/05/2015 22:48:39','-16,3', 'RA02');
execute insertartiradas('RA0242130,9508449074', '13', '06/05/2015 22:49:13','18,1', 'RA02');
execute insertartiradas('RA0242130,9512962963', '28', '06/05/2015 22:49:52','-14,9', 'RA02');
execute insertartiradas('RA0242130,9553587963', '21', '06/05/2015 22:55:43','14,9', 'RA02');
execute insertartiradas('RA0242130,9560069444', '32', '06/05/2015 22:56:39','-15,4', 'RA02');
execute insertartiradas('RA0242130,9563657407', '0', '06/05/2015 22:57:10','13,1', 'RA02');
execute insertartiradas('RA0242130,9569675926', '27', '06/05/2015 22:58:02','-16,1', 'RA02');
execute insertartiradas('RA0242130,9573726852', '29', '06/05/2015 22:58:37','16,4', 'RA02');
execute insertartiradas('RA0242130,9577314815', '8', '06/05/2015 22:59:08','-15,8', 'RA02');
execute insertartiradas('RA0242130,958287037', '34', '06/05/2015 22:59:56','17,6', 'RA02');
execute insertartiradas('RA0242130,9595023148', '22', '06/05/2015 23:01:41','-18,6', 'RA02');
execute insertartiradas('RA0242130,9610763889', '13', '06/05/2015 23:03:57','19,9', 'RA02');
execute insertartiradas('RA0242130,9619212963', '34', '06/05/2015 23:05:10','-18,3', 'RA02');
execute insertartiradas('RA0242130,9625925926', '16', '06/05/2015 23:06:08','16,1', 'RA02');
execute insertartiradas('RA0242130,9633912037', '24', '06/05/2015 23:07:17','-19,9', 'RA02');
execute insertartiradas('RA0242130,9641435185', '30', '06/05/2015 23:08:22','10,8', 'RA02');
execute insertartiradas('RA0242130,9650578703', '5', '06/05/2015 23:09:41','-17,9', 'RA02');
execute insertartiradas('RA0242130,9658217593', '24', '06/05/2015 23:10:47','21,5', 'RA02');
execute insertartiradas('RA0242130,9665277778', '17', '06/05/2015 23:11:48','-18,1', 'RA02');
execute insertartiradas('RA0242130,9677777778', '3', '06/05/2015 23:13:36','17,4', 'RA02');
execute insertartiradas('RA0242130,9686689815', '4', '06/05/2015 23:14:53','-15', 'RA02');
execute insertartiradas('RA0242130,9692361111', '21', '06/05/2015 23:15:42','17,4', 'RA02');
execute insertartiradas('RA0242130,9700347222', '4', '06/05/2015 23:16:51','-18,8', 'RA02');
execute insertartiradas('RA0242130,9708564815', '2', '06/05/2015 23:18:02','20', 'RA02');
execute insertartiradas('RA0242130,9719328704', '14', '06/05/2015 23:19:35','-19,7', 'RA02');
execute insertartiradas('RA0242130,9728472222', '22', '06/05/2015 23:20:54','10,9', 'RA02');
execute insertartiradas('RA0242130,9733680556', '29', '06/05/2015 23:21:39','-15,2', 'RA02');
execute insertartiradas('RA0242130,9742824074', '0', '06/05/2015 23:22:58','14,5', 'RA02');
execute insertartiradas('RA0242130,9748958333', '22', '06/05/2015 23:23:51','-18,7', 'RA02');
execute insertartiradas('RA0242130,9754861111', '9', '06/05/2015 23:24:42','15,9', 'RA02');
execute insertartiradas('RA0242130,9761574074', '10', '06/05/2015 23:25:40','-17,2', 'RA02');
execute insertartiradas('RA0242130,9773958333', '8', '06/05/2015 23:27:27','16,3', 'RA02');
execute insertartiradas('RA0242130,9780092593', '23', '06/05/2015 23:28:20','-14,3', 'RA02');
execute insertartiradas('RA0242130,9784722222', '24', '06/05/2015 23:29:00','12,2', 'RA02');
execute insertartiradas('RA0242130,9808217593', '17', '06/05/2015 23:32:23','-17,8', 'RA02');
execute insertartiradas('RA0242130,981875', '36', '06/05/2015 23:33:54','12,2', 'RA02');
execute insertartiradas('RA0242130,9825810185', '22', '06/05/2015 23:34:55','-17,5', 'RA02');
execute insertartiradas('RA0242130,9832407407', '36', '06/05/2015 23:35:52','20,3', 'RA02');
execute insertartiradas('RA0242130,9839236111', '3', '06/05/2015 23:36:51','-18,4', 'RA02');
execute insertartiradas('RA0242130,9847222222', '10', '06/05/2015 23:38:00','21', 'RA02');
execute insertartiradas('RA0242130,9858333333', '27', '06/05/2015 23:39:36','-20,2', 'RA02');
execute insertartiradas('RA0242130,9871643518', '18', '06/05/2015 23:41:31','14,9', 'RA02');
execute insertartiradas('RA0242130,9882986111', '7', '06/05/2015 23:43:09','-16,2', 'RA02');
execute insertartiradas('RA0242130,9893634259', '17', '06/05/2015 23:44:41','16,5', 'RA02');
execute insertartiradas('RA0242130,9905787037', '6', '06/05/2015 23:46:26','-17', 'RA02');
execute insertartiradas('RA0242130,9919097222', '21', '06/05/2015 23:48:21','16,5', 'RA02');
execute insertartiradas('RA0242130,9933449074', '0', '06/05/2015 23:50:25','-17,4', 'RA02');
execute insertartiradas('RA0242130,9950925926', '15', '06/05/2015 23:52:56','15,1', 'RA02');
execute insertartiradas('RA0242130,9964583333', '11', '06/05/2015 23:54:54','-15,3', 'RA02');
execute insertartiradas('RA0242130,9976273148', '18', '06/05/2015 23:56:35','16,6', 'RA02');
execute insertartiradas('RA0242130,9989236111', '27', '06/05/2015 23:58:27','-16,7', 'RA02');
execute insertartiradas('RA0242131,0001388889', '5', '07/05/2015 00:00:12','16', 'RA02');
execute insertartiradas('RA0242131,0014236111', '15', '07/05/2015 00:02:03','-16,8', 'RA02');
execute insertartiradas('RA0242131,0024652778', '0', '07/05/2015 00:03:33','16,9', 'RA02');
execute insertartiradas('RA0242131,0042361111', '35', '07/05/2015 00:06:06','-16,8', 'RA02');
execute insertartiradas('RA0242131,0054513888', '10', '07/05/2015 00:07:51','16,1', 'RA02');
execute insertartiradas('RA0242131,0070023148', '24', '07/05/2015 00:10:05','-15', 'RA02');
execute insertartiradas('RA0242131,0074652778', '7', '07/05/2015 00:10:45','15,1', 'RA02');
execute insertartiradas('RA0242131,0082523148', '22', '07/05/2015 00:11:53','-16,2', 'RA02');
execute insertartiradas('RA0242131,0087847222', '20', '07/05/2015 00:12:39','16,6', 'RA02');
execute insertartiradas('RA0242131,0099074074', '0', '07/05/2015 00:14:16','-15,5', 'RA02');
execute insertartiradas('RA0242131,0105787037', '20', '07/05/2015 00:15:14','15,1', 'RA02');
execute insertartiradas('RA0242131,0115625', '27', '07/05/2015 00:16:39','-16,9', 'RA02');
execute insertartiradas('RA0242131,0125810185', '13', '07/05/2015 00:18:07','18,5', 'RA02');
execute insertartiradas('RA0242131,0136458333', '31', '07/05/2015 00:19:39','-18,9', 'RA02');
execute insertartiradas('RA0242131,0145949074', '11', '07/05/2015 00:21:01','15,6', 'RA02');
execute insertartiradas('RA0242131,0157291667', '2', '07/05/2015 00:22:39','-18,5', 'RA02');
execute insertartiradas('RA0242131,0164467593', '11', '07/05/2015 00:23:41','21,4', 'RA02');
execute insertartiradas('RA0242131,0172106481', '31', '07/05/2015 00:24:47','-15,3', 'RA02');
execute insertartiradas('RA0242131,018275463', '25', '07/05/2015 00:26:19','22,4', 'RA02');
execute insertartiradas('RA0242131,0195138889', '11', '07/05/2015 00:28:06','-23,4', 'RA02');
execute insertartiradas('RA0242131,0220833333', '1', '07/05/2015 00:31:48','16,1', 'RA02');
execute insertartiradas('RA0242131,0230208333', '35', '07/05/2015 00:33:09','-18,8', 'RA02');
execute insertartiradas('RA0242131,0240740741', '32', '07/05/2015 00:34:40','16,3', 'RA02');
execute insertartiradas('RA0242131,0248726852', '29', '07/05/2015 00:35:49','-17,2', 'RA02');
execute insertartiradas('RA0242131,0260532407', '33', '07/05/2015 00:37:31','16,8', 'RA02');
execute insertartiradas('RA0242131,0269212963', '4', '07/05/2015 00:38:46','-21,6', 'RA02');
execute insertartiradas('RA0242131,0278009259', '13', '07/05/2015 00:40:02','15', 'RA02');
execute insertartiradas('RA0242131,0285532407', '16', '07/05/2015 00:41:07','-21,5', 'RA02');
execute insertartiradas('RA0242131,0298148148', '22', '07/05/2015 00:42:56','16,5', 'RA02');
execute insertartiradas('RA0242131,0305787037', '3', '07/05/2015 00:44:02','-22,1', 'RA02');
execute insertartiradas('RA0242131,0313078704', '0', '07/05/2015 00:45:05','18,6', 'RA02');
execute insertartiradas('RA0242131,0322800925', '29', '07/05/2015 00:46:29','-21', 'RA02');
execute insertartiradas('RA0242131,0333796296', '27', '07/05/2015 00:48:04','17,1', 'RA02');
execute insertartiradas('RA0242131,0349884259', '28', '07/05/2015 00:50:23','-20,6', 'RA02');
execute insertartiradas('RA0242131,0361342593', '29', '07/05/2015 00:52:02','15,3', 'RA02');
execute insertartiradas('RA0242131,0376851852', '33', '07/05/2015 00:54:16','-16,6', 'RA02');
execute insertartiradas('RA0242131,0389583333', '3', '07/05/2015 00:56:06','17,4', 'RA02');
execute insertartiradas('RA0242131,0402777778', '6', '07/05/2015 00:58:00','-18,1', 'RA02');
execute insertartiradas('RA0242131,0413541667', '31', '07/05/2015 00:59:33','15,4', 'RA02');
execute insertartiradas('RA0242131,0426967593', '29', '07/05/2015 01:01:29','-17,1', 'RA02');
execute insertartiradas('RA0242131,0442129629', '28', '07/05/2015 01:03:40','20,5', 'RA02');
execute insertartiradas('RA0242131,0460532407', '27', '07/05/2015 01:06:19','-17', 'RA02');
execute insertartiradas('RA0242131,0474074074', '34', '07/05/2015 01:08:16','17,1', 'RA02');
execute insertartiradas('RA0242131,0485300926', '32', '07/05/2015 01:09:53','-19,6', 'RA02');
execute insertartiradas('RA0242131,0503587963', '5', '07/05/2015 01:12:31','17,8', 'RA02');
execute insertartiradas('RA0242131,0521064815', '5', '07/05/2015 01:15:02','-16,9', 'RA02');
execute insertartiradas('RA0242131,0536574074', '24', '07/05/2015 01:17:16','17,8', 'RA02');
execute insertartiradas('RA0242131,0550810185', '30', '07/05/2015 01:19:19','-18,3', 'RA02');
execute insertartiradas('RA0242131,0574305556', '17', '07/05/2015 01:22:42','14', 'RA02');
execute insertartiradas('RA0242131,0582986111', '6', '07/05/2015 01:23:57','-19,2', 'RA02');
execute insertartiradas('RA0242131,0591898148', '10', '07/05/2015 01:25:14','17,2', 'RA02');
execute insertartiradas('RA0242131,0603009259', '6', '07/05/2015 01:26:50','-15,2', 'RA02');
execute insertartiradas('RA0242131,061400463', '21', '07/05/2015 01:28:25','10,6', 'RA02');
execute insertartiradas('RA0242131,0623148148', '8', '07/05/2015 01:29:44','-15,2', 'RA02');
execute insertartiradas('RA0242131,0635648148', '30', '07/05/2015 01:31:32','21,9', 'RA02');
execute insertartiradas('RA0242131,0644675926', '9', '07/05/2015 01:32:50','-20,7', 'RA02');
execute insertartiradas('RA0242131,0648842593', '5', '07/05/2015 01:33:26','16,2', 'RA02');
execute insertartiradas('RA0242131,0654398148', '1', '07/05/2015 01:34:14','-18,2', 'RA02');
execute insertartiradas('RA0242131,0662037037', '22', '07/05/2015 01:35:20','15,5', 'RA02');
execute insertartiradas('RA0242131,0668402778', '9', '07/05/2015 01:36:15','-17,7', 'RA02');
execute insertartiradas('RA0242131,0673726852', '8', '07/05/2015 01:37:01','19,6', 'RA02');
execute insertartiradas('RA0242131,0682175926', '4', '07/05/2015 01:38:14','-16,1', 'RA02');
execute insertartiradas('RA0242131,0687847222', '8', '07/05/2015 01:39:03','14,6', 'RA02');
execute insertartiradas('RA0242131,0694444444', '29', '07/05/2015 01:40:00','-18,1', 'RA02');
execute insertartiradas('RA0242131,0702662037', '12', '07/05/2015 01:41:11','12', 'RA02');
execute insertartiradas('RA0242131,0707523148', '35', '07/05/2015 01:41:53','-11,9', 'RA02');
execute insertartiradas('RA0242131,0713078704', '19', '07/05/2015 01:42:41','13,2', 'RA02');
execute insertartiradas('RA0242131,0717939815', '29', '07/05/2015 01:43:23','-13,9', 'RA02');
execute insertartiradas('RA0242131,0731018518', '6', '07/05/2015 01:45:16','17,6', 'RA02');
execute insertartiradas('RA0242131,0736921296', '3', '07/05/2015 01:46:07','-14,2', 'RA02');
execute insertartiradas('RA0242131,0741782407', '27', '07/05/2015 01:46:49','16,4', 'RA02');
execute insertartiradas('RA0242131,0751388889', '23', '07/05/2015 01:48:12','-14,8', 'RA02');
execute insertartiradas('RA0242131,0760300926', '23', '07/05/2015 01:49:29','15,1', 'RA02');
execute insertartiradas('RA0242131,0768865741', '2', '07/05/2015 01:50:43','-18,5', 'RA02');
execute insertartiradas('RA0242131,0779398148', '20', '07/05/2015 01:52:14','15,1', 'RA02');
execute insertartiradas('RA0242131,0786111111', '25', '07/05/2015 01:53:12','-15,7', 'RA02');
execute insertartiradas('RA0242131,079375', '29', '07/05/2015 01:54:18','14,3', 'RA02');
execute insertartiradas('RA0242131,0801736111', '14', '07/05/2015 01:55:27','-16,4', 'RA02');
execute insertartiradas('RA0242131,081099537', '30', '07/05/2015 01:56:47','17,9', 'RA02');
execute insertartiradas('RA0242131,081875', '22', '07/05/2015 01:57:54','-14', 'RA02');
execute insertartiradas('RA0242131,0826851852', '35', '07/05/2015 01:59:04','18,2', 'RA02');
execute insertartiradas('RA0242131,0834375', '26', '07/05/2015 02:00:09','-16,4', 'RA02');
execute insertartiradas('RA0242131,0844328704', '2', '07/05/2015 02:01:35','20', 'RA02');
execute insertartiradas('RA0242131,0852199074', '28', '07/05/2015 02:02:43','-17,7', 'RA02');
execute insertartiradas('RA0242131,0862962963', '10', '07/05/2015 02:04:16','13,8', 'RA02');
execute insertartiradas('RA0242131,0871064815', '3', '07/05/2015 02:05:26','-18,5', 'RA02');
execute insertartiradas('RA0242131,087962963', '23', '07/05/2015 02:06:40','17,1', 'RA02');
execute insertartiradas('RA0242131,0889236111', '36', '07/05/2015 02:08:03','-17,3', 'RA02');
execute insertartiradas('RA0242131,0896875', '16', '07/05/2015 02:09:09','19,5', 'RA02');
execute insertartiradas('RA0242131,0907060185', '3', '07/05/2015 02:10:37','-13,3', 'RA02');
execute insertartiradas('RA0242131,0913078704', '31', '07/05/2015 02:11:29','13,2', 'RA02');
execute insertartiradas('RA0242131,0918865741', '0', '07/05/2015 02:12:19','-14,8', 'RA02');
execute insertartiradas('RA0242131,0925', '31', '07/05/2015 02:13:12','13,6', 'RA02');
execute insertartiradas('RA0242131,0931828704', '34', '07/05/2015 02:14:11','-10,7', 'RA02');
execute insertartiradas('RA0242131,0938310185', '13', '07/05/2015 02:15:07','14,9', 'RA02');
execute insertartiradas('RA0242131,0943634259', '30', '07/05/2015 02:15:53','-10,7', 'RA02');
execute insertartiradas('RA0242131,0949074074', '20', '07/05/2015 02:16:40','18,8', 'RA02');
execute insertartiradas('RA0242131,0953935185', '35', '07/05/2015 02:17:22','-17', 'RA02');
execute insertartiradas('RA0242131,096099537', '34', '07/05/2015 02:18:23','15,5', 'RA02');
execute insertartiradas('RA0242131,0969675926', '10', '07/05/2015 02:19:38','-14,4', 'RA02');
execute insertartiradas('RA0242131,0975462963', '20', '07/05/2015 02:20:28','14,6', 'RA02');
execute insertartiradas('RA0242131,0980902778', '18', '07/05/2015 02:21:15','-17,9', 'RA02');
execute insertartiradas('RA0242131,0990162037', '4', '07/05/2015 02:22:35','13,9', 'RA02');
execute insertartiradas('RA0242131,0995486111', '36', '07/05/2015 02:23:21','-19,4', 'RA02');
execute insertartiradas('RA0242131,0999652778', '12', '07/05/2015 02:23:57','16,7', 'RA02');
execute insertartiradas('RA0242131,1003703704', '23', '07/05/2015 02:24:32','-16,4', 'RA02');
execute insertartiradas('RA0242131,1009722222', '20', '07/05/2015 02:25:24','16,5', 'RA02');
execute insertartiradas('RA0242131,101712963', '15', '07/05/2015 02:26:28','-16,3', 'RA02');
execute insertartiradas('RA0242131,1022337963', '33', '07/05/2015 02:27:13','16,7', 'RA02');
execute insertartiradas('RA0242131,1027777778', '27', '07/05/2015 02:28:00','-16,1', 'RA02');
execute insertartiradas('RA0242131,1035532407', '29', '07/05/2015 02:29:07','16', 'RA02');
execute insertartiradas('RA0242131,1042939815', '5', '07/05/2015 02:30:11','-19', 'RA02');
execute insertartiradas('RA0242131,1050694444', '3', '07/05/2015 02:31:18','18,1', 'RA02');
execute insertartiradas('RA0242131,1057060185', '13', '07/05/2015 02:32:13','-15,8', 'RA02');
execute insertartiradas('RA0242131,1063310185', '5', '07/05/2015 02:33:07','19', 'RA02');
execute insertartiradas('RA0242131,1070601852', '16', '07/05/2015 02:34:10','-19,4', 'RA02');
execute insertartiradas('RA0242131,1077199074', '9', '07/05/2015 02:35:07','16,8', 'RA02');
execute insertartiradas('RA0242131,1110185185', '6', '07/05/2015 02:39:52','-16,3', 'RA02');
execute insertartiradas('RA0242131,111412037', '23', '07/05/2015 02:40:26','18,4', 'RA02');
execute insertartiradas('RA0242131,1118981481', '10', '07/05/2015 02:41:08','-21,2', 'RA02');
execute insertartiradas('RA0242131,1126041667', '18', '07/05/2015 02:42:09','18,6', 'RA02');
execute insertartiradas('RA0242131,1130902778', '6', '07/05/2015 02:42:51','-15,8', 'RA02');
execute insertartiradas('RA0242131,4958564815', '36', '07/05/2015 11:54:02','10,2', 'RA02');
execute insertartiradas('RA0242131,4963078703', '22', '07/05/2015 11:54:41','-9,5', 'RA02');
execute insertartiradas('RA0242131,4966319444', '33', '07/05/2015 11:55:09','6,8', 'RA02');
execute insertartiradas('RA0242131,4969328704', '33', '07/05/2015 11:55:35','-10,5', 'RA02');
execute insertartiradas('RA0242131,794224537', '37', '07/05/2015 19:03:41','0', 'RA02');
execute insertartiradas('RA0242131,8006134259', '5', '07/05/2015 19:12:53','17,9', 'RA02');
execute insertartiradas('RA0242131,8033912037', '7', '07/05/2015 19:16:53','-17,6', 'RA02');
execute insertartiradas('RA0242131,8047685185', '22', '07/05/2015 19:18:52','15,9', 'RA02');
execute insertartiradas('RA0242131,8057523148', '34', '07/05/2015 19:20:17','-20,6', 'RA02');
execute insertartiradas('RA0242131,8068287037', '14', '07/05/2015 19:21:50','17,9', 'RA02');
execute insertartiradas('RA0242131,8080324074', '28', '07/05/2015 19:23:34','-17,2', 'RA02');
execute insertartiradas('RA0242131,8093055556', '4', '07/05/2015 19:25:24','16,4', 'RA02');
execute insertartiradas('RA0242131,8105092593', '9', '07/05/2015 19:27:08','-18,3', 'RA02');
execute insertartiradas('RA0242131,8116666667', '29', '07/05/2015 19:28:48','16,3', 'RA02');
execute insertartiradas('RA0242131,813125', '26', '07/05/2015 19:30:54','-14,7', 'RA02');
execute insertartiradas('RA0242131,8150115741', '4', '07/05/2015 19:33:37','18,2', 'RA02');
execute insertartiradas('RA0242131,8166435185', '18', '07/05/2015 19:35:58','-13,2', 'RA02');
execute insertartiradas('RA0242131,8175925926', '10', '07/05/2015 19:37:20','16,9', 'RA02');
execute insertartiradas('RA0242131,8185648148', '32', '07/05/2015 19:38:44','-16,4', 'RA02');
execute insertartiradas('RA0242131,819525463', '5', '07/05/2015 19:40:07','16,3', 'RA02');
execute insertartiradas('RA0242131,821400463', '1', '07/05/2015 19:42:49','20,6', 'RA02');
execute insertartiradas('RA0242131,8228587963', '29', '07/05/2015 19:44:55','-16,3', 'RA02');
execute insertartiradas('RA0242131,8243402778', '30', '07/05/2015 19:47:03','23,5', 'RA02');
execute insertartiradas('RA0242131,8253703704', '31', '07/05/2015 19:48:32','-16,5', 'RA02');
execute insertartiradas('RA0242131,826412037', '30', '07/05/2015 19:50:02','19,7', 'RA02');
execute insertartiradas('RA0242131,8271759259', '33', '07/05/2015 19:51:08','-17,7', 'RA02');
execute insertartiradas('RA0242131,8278009259', '11', '07/05/2015 19:52:02','18,4', 'RA02');
execute insertartiradas('RA0242131,8283333333', '0', '07/05/2015 19:52:48','-15,3', 'RA02');
execute insertartiradas('RA0242131,8289930556', '36', '07/05/2015 19:53:45','17,9', 'RA02');
execute insertartiradas('RA0242131,829537037', '31', '07/05/2015 19:54:32','-14,4', 'RA02');
execute insertartiradas('RA0242131,8302430556', '6', '07/05/2015 19:55:33','18,9', 'RA02');
execute insertartiradas('RA0242131,8309259259', '0', '07/05/2015 19:56:32','-14,7', 'RA02');
execute insertartiradas('RA0242131,8315740741', '12', '07/05/2015 19:57:28','16,2', 'RA02');
execute insertartiradas('RA0242131,8320601852', '9', '07/05/2015 19:58:10','-15,2', 'RA02');
execute insertartiradas('RA0242131,8325694444', '26', '07/05/2015 19:58:54','18,1', 'RA02');
execute insertartiradas('RA0242131,8356828704', '12', '07/05/2015 20:03:23','-19,2', 'RA02');
execute insertartiradas('RA0242131,8461111111', '24', '07/05/2015 20:18:24','17,6', 'RA02');
execute insertartiradas('RA0242131,8492824074', '12', '07/05/2015 20:22:58','-16,7', 'RA02');
execute insertartiradas('RA0242131,8501388889', '2', '07/05/2015 20:24:12','13,8', 'RA02');
execute insertartiradas('RA0242131,8509722222', '12', '07/05/2015 20:25:24','-16,8', 'RA02');
execute insertartiradas('RA0242131,8518287037', '1', '07/05/2015 20:26:38','17,8', 'RA02');
execute insertartiradas('RA0242131,8527893519', '26', '07/05/2015 20:28:01','-15,2', 'RA02');
execute insertartiradas('RA0242131,8537962963', '2', '07/05/2015 20:29:28','21,6', 'RA02');
execute insertartiradas('RA0242131,8545601852', '10', '07/05/2015 20:30:34','-17,7', 'RA02');
execute insertartiradas('RA0242131,8551967593', '25', '07/05/2015 20:31:29','18,9', 'RA02');
execute insertartiradas('RA0242131,8558796296', '25', '07/05/2015 20:32:28','-19,7', 'RA02');
execute insertartiradas('RA0242131,8565856482', '8', '07/05/2015 20:33:29','13,8', 'RA02');
execute insertartiradas('RA0242131,8575', '3', '07/05/2015 20:34:48','-14,6', 'RA02');
execute insertartiradas('RA0242131,8582638889', '26', '07/05/2015 20:35:54','14,1', 'RA02');
execute insertartiradas('RA0242131,859224537', '20', '07/05/2015 20:37:17','-17,4', 'RA02');
execute insertartiradas('RA0242131,8601851852', '28', '07/05/2015 20:38:40','19,8', 'RA02');
execute insertartiradas('RA0242131,8610648148', '7', '07/05/2015 20:39:56','-15', 'RA02');
execute insertartiradas('RA0242131,8620023148', '19', '07/05/2015 20:41:17','13,7', 'RA02');
execute insertartiradas('RA0242131,8633564815', '13', '07/05/2015 20:43:14','-17,5', 'RA02');
execute insertartiradas('RA0242131,8639351852', '3', '07/05/2015 20:44:04','13,8', 'RA02');
execute insertartiradas('RA0242131,8645023148', '26', '07/05/2015 20:44:53','-13,3', 'RA02');
execute insertartiradas('RA0242131,8654513889', '23', '07/05/2015 20:46:15','22,1', 'RA02');
execute insertartiradas('RA0242131,866412037', '30', '07/05/2015 20:47:38','-12,9', 'RA02');
execute insertartiradas('RA0242131,8671759259', '8', '07/05/2015 20:48:44','17,4', 'RA02');
execute insertartiradas('RA0242131,8678587963', '6', '07/05/2015 20:49:43','-17,2', 'RA02');
execute insertartiradas('RA0242131,8687152778', '4', '07/05/2015 20:50:57','15,6', 'RA02');
execute insertartiradas('RA0242131,8697337963', '3', '07/05/2015 20:52:25','-17,8', 'RA02');
execute insertartiradas('RA0242131,8706828704', '9', '07/05/2015 20:53:47','15,3', 'RA02');
execute insertartiradas('RA0242131,8715625', '19', '07/05/2015 20:55:03','-16,5', 'RA02');
execute insertartiradas('RA0242131,8724652778', '1', '07/05/2015 20:56:21','20,2', 'RA02');
execute insertartiradas('RA0242131,8733680556', '15', '07/05/2015 20:57:39','-14', 'RA02');
execute insertartiradas('RA0242131,874224537', '9', '07/05/2015 20:58:53','13,1', 'RA02');
execute insertartiradas('RA0242131,8749421296', '35', '07/05/2015 20:59:55','-12,1', 'RA02');
execute insertartiradas('RA0242131,8757523148', '20', '07/05/2015 21:01:05','17,3', 'RA02');
execute insertartiradas('RA0242131,876712963', '16', '07/05/2015 21:02:28','-14,8', 'RA02');
execute insertartiradas('RA0242131,8774305556', '21', '07/05/2015 21:03:30','18,4', 'RA02');
execute insertartiradas('RA0242131,8784837963', '6', '07/05/2015 21:05:01','-18', 'RA02');
execute insertartiradas('RA0242131,8793055556', '33', '07/05/2015 21:06:12','18,3', 'RA02');
execute insertartiradas('RA0242131,8800231482', '25', '07/05/2015 21:07:14','-16,9', 'RA02');
execute insertartiradas('RA0242131,8808796296', '10', '07/05/2015 21:08:28','19,6', 'RA02');
execute insertartiradas('RA0242131,8816435185', '8', '07/05/2015 21:09:34','-18,2', 'RA02');
execute insertartiradas('RA0242131,8827777778', '18', '07/05/2015 21:11:12','16,5', 'RA02');
execute insertartiradas('RA0242131,8840162037', '31', '07/05/2015 21:12:59','-17,2', 'RA02');
execute insertartiradas('RA0242131,8847685185', '0', '07/05/2015 21:14:04','17,5', 'RA02');
execute insertartiradas('RA0242131,8859375', '1', '07/05/2015 21:15:45','-15,9', 'RA02');
execute insertartiradas('RA0242131,8870717593', '34', '07/05/2015 21:17:23','15,9', 'RA02');
execute insertartiradas('RA0242131,8880555556', '4', '07/05/2015 21:18:48','-15,5', 'RA02');
execute insertartiradas('RA0242131,888900463', '9', '07/05/2015 21:20:01','17,1', 'RA02');
execute insertartiradas('RA0242131,8894560185', '14', '07/05/2015 21:20:49','-16,1', 'RA02');
execute insertartiradas('RA0242131,8900347222', '33', '07/05/2015 21:21:39','16,9', 'RA02');
execute insertartiradas('RA0242131,8908101852', '22', '07/05/2015 21:22:46','-17,8', 'RA02');
execute insertartiradas('RA0242131,8918981481', '9', '07/05/2015 21:24:20','18', 'RA02');
execute insertartiradas('RA0242131,8930787037', '19', '07/05/2015 21:26:02','-17,8', 'RA02');
execute insertartiradas('RA0242131,8939236111', '12', '07/05/2015 21:27:15','17,5', 'RA02');
execute insertartiradas('RA0242131,8948958333', '2', '07/05/2015 21:28:39','-16,7', 'RA02');
execute insertartiradas('RA0242131,8956944444', '25', '07/05/2015 21:29:48','18,1', 'RA02');
execute insertartiradas('RA0242131,8962962963', '3', '07/05/2015 21:30:40','-19,1', 'RA02');
execute insertartiradas('RA0242131,8972222222', '7', '07/05/2015 21:32:00','16,9', 'RA02');
execute insertartiradas('RA0242131,8981828704', '14', '07/05/2015 21:33:23','-16', 'RA02');
execute insertartiradas('RA0242131,8987268519', '28', '07/05/2015 21:34:10','16,8', 'RA02');
execute insertartiradas('RA0242131,9000231481', '22', '07/05/2015 21:36:02','-16,4', 'RA02');
execute insertartiradas('RA0242131,9006134259', '29', '07/05/2015 21:36:53','16,3', 'RA02');
execute insertartiradas('RA0242131,9020949074', '6', '07/05/2015 21:39:01','-17,9', 'RA02');
execute insertartiradas('RA0242131,9027546296', '32', '07/05/2015 21:39:58','17,9', 'RA02');
execute insertartiradas('RA0242131,9036342593', '31', '07/05/2015 21:41:14','-15,8', 'RA02');
execute insertartiradas('RA0242131,9044444444', '8', '07/05/2015 21:42:24','21,5', 'RA02');
execute insertartiradas('RA0242131,9049652778', '8', '07/05/2015 21:43:09','-18,1', 'RA02');
execute insertartiradas('RA0242131,9054513889', '17', '07/05/2015 21:43:51','23,5', 'RA02');
execute insertartiradas('RA0242131,9060185185', '29', '07/05/2015 21:44:40','-19,5', 'RA02');
execute insertartiradas('RA0242131,9065393519', '10', '07/05/2015 21:45:25','21,4', 'RA02');
execute insertartiradas('RA0242131,9070486111', '13', '07/05/2015 21:46:09','-23,1', 'RA02');
execute insertartiradas('RA0242131,9081134259', '3', '07/05/2015 21:47:41','21,7', 'RA02');
execute insertartiradas('RA0242131,9091087963', '32', '07/05/2015 21:49:07','-18,2', 'RA02');
execute insertartiradas('RA0242131,9105439815', '8', '07/05/2015 21:51:11','26,7', 'RA02');
execute insertartiradas('RA0242131,9118055556', '34', '07/05/2015 21:53:00','-24,2', 'RA02');
execute insertartiradas('RA0242131,9125231481', '28', '07/05/2015 21:54:02','24,2', 'RA02');
execute insertartiradas('RA0242131,9135416667', '23', '07/05/2015 21:55:30','-21,3', 'RA02');
execute insertartiradas('RA0242131,9143981481', '27', '07/05/2015 21:56:44','21,2', 'RA02');
execute insertartiradas('RA0242131,9157986111', '36', '07/05/2015 21:58:45','-21,2', 'RA02');
execute insertartiradas('RA0242131,9163657407', '4', '07/05/2015 21:59:34','24', 'RA02');
execute insertartiradas('RA0242131,9168055556', '23', '07/05/2015 22:00:12','-21,4', 'RA02');
execute insertartiradas('RA0242131,9176851852', '22', '07/05/2015 22:01:28','17,4', 'RA02');
execute insertartiradas('RA0242131,9180439815', '35', '07/05/2015 22:01:59','-17,6', 'RA02');
execute insertartiradas('RA0242131,9190856482', '22', '07/05/2015 22:03:29','20', 'RA02');
execute insertartiradas('RA0242131,9221990741', '29', '07/05/2015 22:07:58','-18,2', 'RA02');
execute insertartiradas('RA0242131,9234259259', '27', '07/05/2015 22:09:44','20,6', 'RA02');
execute insertartiradas('RA0242131,9241666667', '9', '07/05/2015 22:10:48','-20,3', 'RA02');
execute insertartiradas('RA0242131,9249189815', '29', '07/05/2015 22:11:53','23,8', 'RA02');
execute insertartiradas('RA0242131,9256018518', '33', '07/05/2015 22:12:52','-20,9', 'RA02');
execute insertartiradas('RA0242131,92625', '24', '07/05/2015 22:13:48','22,1', 'RA02');
execute insertartiradas('RA0242131,9269328704', '13', '07/05/2015 22:14:47','-20,6', 'RA02');
execute insertartiradas('RA0242131,9278819444', '34', '07/05/2015 22:16:09','22,4', 'RA02');
execute insertartiradas('RA0242131,9284027778', '22', '07/05/2015 22:16:54','-16,9', 'RA02');
execute insertartiradas('RA0242131,9289236111', '11', '07/05/2015 22:17:39','20,5', 'RA02');
execute insertartiradas('RA0242131,9296527778', '3', '07/05/2015 22:18:42','-19,2', 'RA02');
execute insertartiradas('RA0242131,9303472222', '32', '07/05/2015 22:19:42','18,7', 'RA02');
execute insertartiradas('RA0242131,9309837963', '5', '07/05/2015 22:20:37','-16,4', 'RA02');
execute insertartiradas('RA0242131,9315856481', '27', '07/05/2015 22:21:29','18,7', 'RA02');
execute insertartiradas('RA0242131,9322916667', '9', '07/05/2015 22:22:30','-17,8', 'RA02');
execute insertartiradas('RA0242131,9328356481', '12', '07/05/2015 22:23:17','17,9', 'RA02');
execute insertartiradas('RA0242131,9335763889', '0', '07/05/2015 22:24:21','-17,1', 'RA02');
execute insertartiradas('RA0242131,9348148148', '19', '07/05/2015 22:26:08','21,8', 'RA02');
execute insertartiradas('RA0242131,9355439815', '15', '07/05/2015 22:27:11','-18,9', 'RA02');
execute insertartiradas('RA0242131,936412037', '3', '07/05/2015 22:28:26','21,3', 'RA02');
execute insertartiradas('RA0242131,9374421296', '6', '07/05/2015 22:29:55','-23,4', 'RA02');
execute insertartiradas('RA0242131,9386342593', '4', '07/05/2015 22:31:38','23,1', 'RA02');
execute insertartiradas('RA0242131,9394097222', '28', '07/05/2015 22:32:45','-18,4', 'RA02');
execute insertartiradas('RA0242131,9406828704', '9', '07/05/2015 22:34:35','21,2', 'RA02');
execute insertartiradas('RA0242131,9415509259', '22', '07/05/2015 22:35:50','-18,7', 'RA02');
execute insertartiradas('RA0242131,9427430556', '36', '07/05/2015 22:37:33','19,6', 'RA02');
execute insertartiradas('RA0242131,9440393519', '25', '07/05/2015 22:39:25','-17', 'RA02');
execute insertartiradas('RA0242131,9449537037', '35', '07/05/2015 22:40:44','19,3', 'RA02');
execute insertartiradas('RA0242131,9461689815', '15', '07/05/2015 22:42:29','-19,5', 'RA02');
execute insertartiradas('RA0242131,9474652778', '20', '07/05/2015 22:44:21','17,2', 'RA02');
execute insertartiradas('RA0242131,9480902778', '3', '07/05/2015 22:45:15','-24,4', 'RA02');
execute insertartiradas('RA0242131,9486689815', '35', '07/05/2015 22:46:05','13,8', 'RA02');
execute insertartiradas('RA0242131,9492939815', '18', '07/05/2015 22:46:59','-20,4', 'RA02');
execute insertartiradas('RA0242131,9499189815', '26', '07/05/2015 22:47:53','18,6', 'RA02');
execute insertartiradas('RA0242131,950625', '4', '07/05/2015 22:48:54','-18,4', 'RA02');
execute insertartiradas('RA0242131,9511805556', '27', '07/05/2015 22:49:42','16,4', 'RA02');
execute insertartiradas('RA0242131,9517824074', '12', '07/05/2015 22:50:34','-19', 'RA02');
execute insertartiradas('RA0242131,9525231481', '25', '07/05/2015 22:51:38','14,6', 'RA02');
execute insertartiradas('RA0242131,953275463', '9', '07/05/2015 22:52:43','-15', 'RA02');
execute insertartiradas('RA0242131,9536921296', '35', '07/05/2015 22:53:19','18,4', 'RA02');
execute insertartiradas('RA0242131,9542708333', '4', '07/05/2015 22:54:09','-14,7', 'RA02');
execute insertartiradas('RA0242131,9548611111', '19', '07/05/2015 22:55:00','15,4', 'RA02');
execute insertartiradas('RA0242131,9553935185', '36', '07/05/2015 22:55:46','-22,4', 'RA02');
execute insertartiradas('RA0242131,9560763889', '0', '07/05/2015 22:56:45','13,1', 'RA02');
execute insertartiradas('RA0242131,9568055556', '15', '07/05/2015 22:57:48','-18,5', 'RA02');
execute insertartiradas('RA0242131,9575810185', '15', '07/05/2015 22:58:55','14', 'RA02');
execute insertartiradas('RA0242131,9580555556', '4', '07/05/2015 22:59:36','-20,3', 'RA02');
execute insertartiradas('RA0242131,9585416667', '4', '07/05/2015 23:00:18','18,3', 'RA02');
execute insertartiradas('RA0242131,9590046296', '33', '07/05/2015 23:00:58','-15,3', 'RA02');
execute insertartiradas('RA0242131,9596875', '30', '07/05/2015 23:01:57','19,9', 'RA02');
execute insertartiradas('RA0242131,9605092593', '20', '07/05/2015 23:03:08','-25,6', 'RA02');
execute insertartiradas('RA0242131,9612037037', '27', '07/05/2015 23:04:08','15', 'RA02');
execute insertartiradas('RA0242131,9618171296', '34', '07/05/2015 23:05:01','-19,9', 'RA02');
execute insertartiradas('RA0242131,9624189815', '17', '07/05/2015 23:05:53','17,2', 'RA02');
execute insertartiradas('RA0242131,9629513889', '9', '07/05/2015 23:06:39','-18,4', 'RA02');
execute insertartiradas('RA0242131,9636111111', '9', '07/05/2015 23:07:36','28,7', 'RA02');
execute insertartiradas('RA0242131,9647337963', '36', '07/05/2015 23:09:13','-21,2', 'RA02');
execute insertartiradas('RA0242131,9658217593', '17', '07/05/2015 23:10:47','24,6', 'RA02');
execute insertartiradas('RA0242131,9665509259', '19', '07/05/2015 23:11:50','-26,5', 'RA02');
execute insertartiradas('RA0242131,9673611111', '13', '07/05/2015 23:13:00','20', 'RA02');
execute insertartiradas('RA0242131,9680208333', '10', '07/05/2015 23:13:57','-27', 'RA02');
execute insertartiradas('RA0242131,9686921296', '33', '07/05/2015 23:14:55','25,1', 'RA02');
execute insertartiradas('RA0242131,9695023148', '1', '07/05/2015 23:16:05','-27,7', 'RA02');
execute insertartiradas('RA0242131,9704398148', '21', '07/05/2015 23:17:26','26,5', 'RA02');
execute insertartiradas('RA0242131,9710763889', '34', '07/05/2015 23:18:21','-27,9', 'RA02');
execute insertartiradas('RA0242131,9718865741', '25', '07/05/2015 23:19:31','13,5', 'RA02');
execute insertartiradas('RA0242131,9725578704', '21', '07/05/2015 23:20:29','-21,5', 'RA02');
execute insertartiradas('RA0242131,9730208333', '19', '07/05/2015 23:21:09','29,1', 'RA02');
execute insertartiradas('RA0242131,9738773148', '9', '07/05/2015 23:22:23','-13,2', 'RA02');
execute insertartiradas('RA0242131,9746180556', '28', '07/05/2015 23:23:27','12', 'RA02');
execute insertartiradas('RA0242131,975162037', '15', '07/05/2015 23:24:14','-18,8', 'RA02');
execute insertartiradas('RA0242131,9759722222', '1', '07/05/2015 23:25:24','13,6', 'RA02');
execute insertartiradas('RA0242131,9764351852', '33', '07/05/2015 23:26:04','-15,6', 'RA02');
execute insertartiradas('RA0242131,9769675926', '27', '07/05/2015 23:26:50','15,7', 'RA02');
execute insertartiradas('RA0242131,977349537', '9', '07/05/2015 23:27:23','-16,5', 'RA02');
execute insertartiradas('RA0242131,9777546296', '6', '07/05/2015 23:27:58','15', 'RA02');
execute insertartiradas('RA0242131,9784027778', '4', '07/05/2015 23:28:54','-16,5', 'RA02');
execute insertartiradas('RA0242131,9790972222', '25', '07/05/2015 23:29:54','14,7', 'RA02');
execute insertartiradas('RA0242131,9797916667', '23', '07/05/2015 23:30:54','-13,2', 'RA02');
execute insertartiradas('RA0242131,9804398148', '24', '07/05/2015 23:31:50','12,8', 'RA02');
execute insertartiradas('RA0242131,9811111111', '1', '07/05/2015 23:32:48','-14,9', 'RA02');
execute insertartiradas('RA0242131,9815972222', '4', '07/05/2015 23:33:30','12,6', 'RA02');
execute insertartiradas('RA0242131,9823842593', '36', '07/05/2015 23:34:38','-16,7', 'RA02');
execute insertartiradas('RA0242131,9830902778', '18', '07/05/2015 23:35:39','15,2', 'RA02');
execute insertartiradas('RA0242131,9834953704', '25', '07/05/2015 23:36:14','-13,7', 'RA02');
execute insertartiradas('RA0242131,9839583333', '3', '07/05/2015 23:36:54','13,4', 'RA02');
execute insertartiradas('RA0242131,9844328704', '13', '07/05/2015 23:37:35','-12,3', 'RA02');
execute insertartiradas('RA0242131,985', '28', '07/05/2015 23:38:24','17,6', 'RA02');
execute insertartiradas('RA0242131,9854976852', '23', '07/05/2015 23:39:07','-13,9', 'RA02');
execute insertartiradas('RA0242131,9859722222', '3', '07/05/2015 23:39:48','10,2', 'RA02');
execute insertartiradas('RA0242131,9863773148', '27', '07/05/2015 23:40:23','-10,9', 'RA02');
execute insertartiradas('RA0242131,9874074074', '23', '07/05/2015 23:41:52','14,4', 'RA02');
execute insertartiradas('RA0242131,9883333333', '20', '07/05/2015 23:43:12','-14,4', 'RA02');
execute insertartiradas('RA0242131,9891087963', '1', '07/05/2015 23:44:19','16,8', 'RA02');
execute insertartiradas('RA0242131,99', '11', '07/05/2015 23:45:36','-12,7', 'RA02');
execute insertartiradas('RA0242131,9908680556', '10', '07/05/2015 23:46:51','14,7', 'RA02');
execute insertartiradas('RA0242131,9916203704', '20', '07/05/2015 23:47:56','-13', 'RA02');
execute insertartiradas('RA0242131,9926157407', '32', '07/05/2015 23:49:22','15,3', 'RA02');
execute insertartiradas('RA0242131,9938194444', '29', '07/05/2015 23:51:06','-14,9', 'RA02');
execute insertartiradas('RA0242131,995462963', '32', '07/05/2015 23:53:28','18,5', 'RA02');
execute insertartiradas('RA0242131,9965509259', '15', '07/05/2015 23:55:02','-17,3', 'RA02');
execute insertartiradas('RA0242131,9976041667', '36', '07/05/2015 23:56:33','19,2', 'RA02');
execute insertartiradas('RA0242131,9989236111', '27', '07/05/2015 23:58:27','-13,6', 'RA02');
execute insertartiradas('RA0242132,0002199074', '19', '08/05/2015 00:00:19','21,8', 'RA02');
execute insertartiradas('RA0242132,0019675926', '7', '08/05/2015 00:02:50','-17,8', 'RA02');
execute insertartiradas('RA0242132,0031365741', '27', '08/05/2015 00:04:31','18,1', 'RA02');
execute insertartiradas('RA0242132,005', '3', '08/05/2015 00:07:12','-15', 'RA02');
execute insertartiradas('RA0242132,0059953704', '8', '08/05/2015 00:08:38','14,1', 'RA02');
execute insertartiradas('RA0242132,0068055556', '8', '08/05/2015 00:09:48','-16', 'RA02');
execute insertartiradas('RA0242132,007650463', '28', '08/05/2015 00:11:01','16', 'RA02');
execute insertartiradas('RA0242132,0084375', '19', '08/05/2015 00:12:09','-15,2', 'RA02');
execute insertartiradas('RA0242132,0097106481', '8', '08/05/2015 00:13:59','14,6', 'RA02');
execute insertartiradas('RA0242132,0108796296', '15', '08/05/2015 00:15:40','-16', 'RA02');
execute insertartiradas('RA0242132,0123032407', '33', '08/05/2015 00:17:43','15,9', 'RA02');
execute insertartiradas('RA0242132,013587963', '26', '08/05/2015 00:19:34','-14,4', 'RA02');
execute insertartiradas('RA0242132,014525463', '9', '08/05/2015 00:20:55','14,7', 'RA02');
execute insertartiradas('RA0242132,015625', '22', '08/05/2015 00:22:30','-14,9', 'RA02');
execute insertartiradas('RA0242132,0167708333', '28', '08/05/2015 00:24:09','16,7', 'RA02');
execute insertartiradas('RA0242132,0178935185', '6', '08/05/2015 00:25:46','-15,5', 'RA02');
execute insertartiradas('RA0242132,0197222222', '16', '08/05/2015 00:28:24','16,2', 'RA02');
execute insertartiradas('RA0242132,0211342593', '13', '08/05/2015 00:30:26','-14,4', 'RA02');
execute insertartiradas('RA0242132,0227430556', '24', '08/05/2015 00:32:45','15,7', 'RA02');
execute insertartiradas('RA0242132,0242824074', '25', '08/05/2015 00:34:58','-14,3', 'RA02');
execute insertartiradas('RA0242132,0259375', '27', '08/05/2015 00:37:21','17,6', 'RA02');
execute insertartiradas('RA0242132,0272685185', '6', '08/05/2015 00:39:16','-19,5', 'RA02');
execute insertartiradas('RA0242132,0282523148', '36', '08/05/2015 00:40:41','16,4', 'RA02');
execute insertartiradas('RA0242132,0297916667', '17', '08/05/2015 00:42:54','-21,6', 'RA02');
execute insertartiradas('RA0242132,030949074', '27', '08/05/2015 00:44:34','19,4', 'RA02');
execute insertartiradas('RA0242132,0319675926', '22', '08/05/2015 00:46:02','-22,9', 'RA02');
execute insertartiradas('RA0242132,0328935185', '21', '08/05/2015 00:47:22','26,3', 'RA02');
execute insertartiradas('RA0242132,0338541667', '11', '08/05/2015 00:48:45','-21,3', 'RA02');
execute insertartiradas('RA0242132,0347222222', '2', '08/05/2015 00:50:00','18,6', 'RA02');
execute insertartiradas('RA0242132,0358796296', '2', '08/05/2015 00:51:40','-18,9', 'RA02');
execute insertartiradas('RA0242132,0368171296', '22', '08/05/2015 00:53:01','25,2', 'RA02');
execute insertartiradas('RA0242132,0378240741', '5', '08/05/2015 00:54:28','-21,8', 'RA02');
execute insertartiradas('RA0242132,0388541667', '35', '08/05/2015 00:55:57','18', 'RA02');
execute insertartiradas('RA0242132,0400462963', '31', '08/05/2015 00:57:40','-19,5', 'RA02');
execute insertartiradas('RA0242132,0412962963', '12', '08/05/2015 00:59:28','18,3', 'RA02');
execute insertartiradas('RA0242132,0426967593', '33', '08/05/2015 01:01:29','-23', 'RA02');
execute insertartiradas('RA0242132,0437731482', '8', '08/05/2015 01:03:02','19,1', 'RA02');
execute insertartiradas('RA0242132,0451736111', '4', '08/05/2015 01:05:03','-20,1', 'RA02');
execute insertartiradas('RA0242132,0463194444', '23', '08/05/2015 01:06:42','18,3', 'RA02');
execute insertartiradas('RA0242132,0474074074', '23', '08/05/2015 01:08:16','-21,2', 'RA02');
execute insertartiradas('RA0242132,0486342593', '27', '08/05/2015 01:10:02','24,6', 'RA02');
execute insertartiradas('RA0242132,0497800926', '19', '08/05/2015 01:11:41','-13,2', 'RA02');
execute insertartiradas('RA0242132,0513541667', '7', '08/05/2015 01:13:57','14,8', 'RA02');
execute insertartiradas('RA0242132,0527546296', '10', '08/05/2015 01:15:58','-12,4', 'RA02');
execute insertartiradas('RA0242132,0538310185', '14', '08/05/2015 01:17:31','15,4', 'RA02');
execute insertartiradas('RA0242132,0548611111', '24', '08/05/2015 01:19:00','-21,1', 'RA02');
execute insertartiradas('RA0242132,0558101852', '35', '08/05/2015 01:20:22','18,6', 'RA02');
execute insertartiradas('RA0242132,0572800926', '17', '08/05/2015 01:22:29','-20', 'RA02');
execute insertartiradas('RA0242132,0582175926', '2', '08/05/2015 01:23:50','18', 'RA02');
execute insertartiradas('RA0242132,0596412037', '3', '08/05/2015 01:25:53','-23,2', 'RA02');
execute insertartiradas('RA0242132,0610300926', '26', '08/05/2015 01:27:53','22', 'RA02');
execute insertartiradas('RA0242132,0631481481', '35', '08/05/2015 01:30:56','-21', 'RA02');
execute insertartiradas('RA0242132,065150463', '3', '08/05/2015 01:33:49','18,3', 'RA02');
execute insertartiradas('RA0242132,0668171296', '26', '08/05/2015 01:36:13','-28,3', 'RA02');
execute insertartiradas('RA0242132,0708912037', '2', '08/05/2015 01:42:05','20,9', 'RA02');
execute insertartiradas('RA0242132,0711921296', '35', '08/05/2015 01:42:31','-25,5', 'RA02');
execute insertartiradas('RA0242132,0736458333', '36', '08/05/2015 01:46:03','23,2', 'RA02');
execute insertartiradas('RA0242132,0754398148', '33', '08/05/2015 01:48:38','-18,2', 'RA02');
execute insertartiradas('RA0242132,0774652778', '18', '08/05/2015 01:51:33','16,1', 'RA02');
execute insertartiradas('RA0242132,0786342593', '11', '08/05/2015 01:53:14','-18,7', 'RA02');
execute insertartiradas('RA0242132,0825231482', '12', '08/05/2015 01:58:50','14', 'RA02');
execute insertartiradas('RA0242132,0841550926', '36', '08/05/2015 02:01:11','-16,2', 'RA02');
execute insertartiradas('RA0242132,0855555556', '7', '08/05/2015 02:03:12','15,6', 'RA02');
execute insertartiradas('RA0242132,0868518519', '3', '08/05/2015 02:05:04','-15', 'RA02');
execute insertartiradas('RA0242132,0882407407', '34', '08/05/2015 02:07:04','15,5', 'RA02');
execute insertartiradas('RA0242132,0888657407', '24', '08/05/2015 02:07:58','-16', 'RA02');
execute insertartiradas('RA0242132,0895833333', '17', '08/05/2015 02:09:00','16,4', 'RA02');
execute insertartiradas('RA0242132,0902314815', '10', '08/05/2015 02:09:56','-13,6', 'RA02');
execute insertartiradas('RA0242132,0915162037', '20', '08/05/2015 02:11:47','17,6', 'RA02');
execute insertartiradas('RA0242132,0920486111', '1', '08/05/2015 02:12:33','-15,6', 'RA02');
execute insertartiradas('RA0242132,0928356481', '21', '08/05/2015 02:13:41','15,4', 'RA02');
execute insertartiradas('RA0242132,093912037', '20', '08/05/2015 02:15:14','-14,1', 'RA02');
execute insertartiradas('RA0242132,0946759259', '26', '08/05/2015 02:16:20','16,4', 'RA02');
execute insertartiradas('RA0242132,0955787037', '23', '08/05/2015 02:17:38','-14,5', 'RA02');
execute insertartiradas('RA0242132,0966087963', '19', '08/05/2015 02:19:07','16,2', 'RA02');
execute insertartiradas('RA0242132,0975810185', '26', '08/05/2015 02:20:31','-14', 'RA02');
execute insertartiradas('RA0242132,0983101852', '25', '08/05/2015 02:21:34','13,3', 'RA02');
execute insertartiradas('RA0242132,0991782407', '26', '08/05/2015 02:22:49','-13,4', 'RA02');
execute insertartiradas('RA0242132,1000810185', '27', '08/05/2015 02:24:07','16,1', 'RA02');
execute insertartiradas('RA0242132,1010069444', '27', '08/05/2015 02:25:27','-15,5', 'RA02');
execute insertartiradas('RA0242132,1018981481', '24', '08/05/2015 02:26:44','14,8', 'RA02');
execute insertartiradas('RA0242132,1026157407', '17', '08/05/2015 02:27:46','-14,1', 'RA02');
execute insertartiradas('RA0242132,1032291667', '27', '08/05/2015 02:28:39','16,3', 'RA02');
execute insertartiradas('RA0242132,1040393518', '7', '08/05/2015 02:29:49','-14,1', 'RA02');
execute insertartiradas('RA0242132,1048611111', '24', '08/05/2015 02:31:00','16,9', 'RA02');
execute insertartiradas('RA0242132,1057060185', '9', '08/05/2015 02:32:13','-13,7', 'RA02');
execute insertartiradas('RA0242132,1065509259', '3', '08/05/2015 02:33:26','14,6', 'RA02');
execute insertartiradas('RA0242132,1074421296', '28', '08/05/2015 02:34:43','-15,2', 'RA02');
execute insertartiradas('RA0242132,1089930556', '28', '08/05/2015 02:36:57','18,3', 'RA02');
execute insertartiradas('RA0242132,1108449074', '23', '08/05/2015 02:39:37','-18,4', 'RA02');
execute insertartiradas('RA0242132,1127777778', '11', '08/05/2015 02:42:24','20,9', 'RA02');
execute insertartiradas('RA0242132,1138425926', '1', '08/05/2015 02:43:56','-18,7', 'RA02');
execute insertartiradas('RA0242132,1149189815', '10', '08/05/2015 02:45:29','22,3', 'RA02');
execute insertartiradas('RA0242132,1159953704', '36', '08/05/2015 02:47:02','-18,1', 'RA02');
execute insertartiradas('RA0242132,1168518519', '32', '08/05/2015 02:48:16','15,3', 'RA02');
execute insertartiradas('RA0242132,1181134259', '3', '08/05/2015 02:50:05','-15,1', 'RA02');
execute insertartiradas('RA0242132,1190046296', '8', '08/05/2015 02:51:22','17,7', 'RA02');
execute insertartiradas('RA0242132,119849537', '31', '08/05/2015 02:52:35','-20,7', 'RA02');
execute insertartiradas('RA0242132,1206481481', '19', '08/05/2015 02:53:44','21,5', 'RA02');
execute insertartiradas('RA0242132,1213194444', '33', '08/05/2015 02:54:42','-15,7', 'RA02');
execute insertartiradas('RA0242132,1222916667', '27', '08/05/2015 02:56:06','18,6', 'RA02');
execute insertartiradas('RA0242132,1231597222', '10', '08/05/2015 02:57:21','-14', 'RA02');
execute insertartiradas('RA0242132,1243055556', '10', '08/05/2015 02:59:00','17,5', 'RA02');
execute insertartiradas('RA0242132,7577199074', '8', '08/05/2015 18:11:07','0', 'RA02');
execute insertartiradas('RA0242132,7620486111', '21', '08/05/2015 18:17:21','18,4', 'RA02');
execute insertartiradas('RA0242132,7626041667', '0', '08/05/2015 18:18:09','-16', 'RA02');
execute insertartiradas('RA0242132,762974537', '24', '08/05/2015 18:18:41','14,1', 'RA02');
execute insertartiradas('RA0242132,7649652778', '1', '08/05/2015 18:21:33','-16,9', 'RA02');
execute insertartiradas('RA0242132,7655439815', '19', '08/05/2015 18:22:23','16,4', 'RA02');
execute insertartiradas('RA0242132,7662037037', '10', '08/05/2015 18:23:20','-17,4', 'RA02');
execute insertartiradas('RA0242132,7668171296', '15', '08/05/2015 18:24:13','16', 'RA02');
execute insertartiradas('RA0242132,7682986111', '27', '08/05/2015 18:26:21','-15,4', 'RA02');
execute insertartiradas('RA0242132,7690972222', '9', '08/05/2015 18:27:30','18,5', 'RA02');
execute insertartiradas('RA0242132,7699652778', '25', '08/05/2015 18:28:45','-21,7', 'RA02');
execute insertartiradas('RA0242132,7706828704', '11', '08/05/2015 18:29:47','16,1', 'RA02');
execute insertartiradas('RA0242132,7715162037', '36', '08/05/2015 18:30:59','-17,2', 'RA02');
execute insertartiradas('RA0242132,7722337963', '15', '08/05/2015 18:32:01','17,2', 'RA02');
execute insertartiradas('RA0242132,7727430556', '20', '08/05/2015 18:32:45','-14,5', 'RA02');
execute insertartiradas('RA0242132,7732407407', '10', '08/05/2015 18:33:28','16', 'RA02');
execute insertartiradas('RA0242132,7736574074', '31', '08/05/2015 18:34:04','-16,6', 'RA02');
execute insertartiradas('RA0242132,7744791667', '18', '08/05/2015 18:35:15','14,1', 'RA02');
execute insertartiradas('RA0242132,7756944444', '33', '08/05/2015 18:37:00','-22,5', 'RA02');
execute insertartiradas('RA0242132,7769212963', '18', '08/05/2015 18:38:46','16,8', 'RA02');
execute insertartiradas('RA0242132,7782986111', '19', '08/05/2015 18:40:45','-21,6', 'RA02');
execute insertartiradas('RA0242132,7790393519', '11', '08/05/2015 18:41:49','18,8', 'RA02');
execute insertartiradas('RA0242132,7800578704', '30', '08/05/2015 18:43:17','-21,5', 'RA02');
execute insertartiradas('RA0242132,7818981481', '26', '08/05/2015 18:45:56','14,5', 'RA02');
execute insertartiradas('RA0242132,7831481481', '9', '08/05/2015 18:47:44','-21,8', 'RA02');
execute insertartiradas('RA0242132,7844675926', '5', '08/05/2015 18:49:38','13,7', 'RA02');
execute insertartiradas('RA0242132,7856944444', '24', '08/05/2015 18:51:24','-16,8', 'RA02');
execute insertartiradas('RA0242132,7867013888', '0', '08/05/2015 18:52:51','14,8', 'RA02');
execute insertartiradas('RA0242132,7873726852', '7', '08/05/2015 18:53:49','-18,1', 'RA02');
execute insertartiradas('RA0242132,7881365741', '27', '08/05/2015 18:54:55','19,9', 'RA02');
execute insertartiradas('RA0242132,7887731481', '5', '08/05/2015 18:55:50','-14,6', 'RA02');
execute insertartiradas('RA0242132,789212963', '18', '08/05/2015 18:56:28','12,4', 'RA02');
execute insertartiradas('RA0242132,791712963', '13', '08/05/2015 19:00:04','-15,3', 'RA02');
execute insertartiradas('RA0242132,7922337963', '32', '08/05/2015 19:00:49','15,3', 'RA02');
execute insertartiradas('RA0242132,8145138889', '35', '08/05/2015 19:32:54','-11,4', 'RA02');
execute insertartiradas('RA0242132,8154513889', '14', '08/05/2015 19:34:15','17,3', 'RA02');
execute insertartiradas('RA0242132,8188310185', '9', '08/05/2015 19:39:07','-18,3', 'RA02');
execute insertartiradas('RA0242132,8199768519', '8', '08/05/2015 19:40:46','12,8', 'RA02');
execute insertartiradas('RA0242132,8210300926', '28', '08/05/2015 19:42:17','-18,9', 'RA02');
execute insertartiradas('RA0242132,8218981481', '12', '08/05/2015 19:43:32','18,7', 'RA02');
execute insertartiradas('RA0242132,8229861111', '6', '08/05/2015 19:45:06','-18,3', 'RA02');
execute insertartiradas('RA0242132,8241203704', '4', '08/05/2015 19:46:44','20,4', 'RA02');
execute insertartiradas('RA0242132,8250231482', '34', '08/05/2015 19:48:02','-14,3', 'RA02');
execute insertartiradas('RA0242132,8277777778', '30', '08/05/2015 19:52:00','14,9', 'RA02');
execute insertartiradas('RA0242132,8288078704', '35', '08/05/2015 19:53:29','-17', 'RA02');
execute insertartiradas('RA0242132,8297916667', '15', '08/05/2015 19:54:54','21,3', 'RA02');
execute insertartiradas('RA0242132,8310185185', '4', '08/05/2015 19:56:40','-12,7', 'RA02');
execute insertartiradas('RA0242132,8316435185', '16', '08/05/2015 19:57:34','21,6', 'RA02');
execute insertartiradas('RA0242132,8324305556', '34', '08/05/2015 19:58:42','-16,2', 'RA02');
execute insertartiradas('RA0242132,8723726852', '5', '08/05/2015 20:56:13','15,5', 'RA02');
execute insertartiradas('RA0242132,8733680556', '32', '08/05/2015 20:57:39','-17,9', 'RA02');
execute insertartiradas('RA0242132,8741319444', '26', '08/05/2015 20:58:45','19,8', 'RA02');
execute insertartiradas('RA0242132,8748148148', '28', '08/05/2015 20:59:44','-18', 'RA02');
execute insertartiradas('RA0242132,8756944444', '29', '08/05/2015 21:01:00','17,6', 'RA02');
execute insertartiradas('RA0242132,8770833333', '33', '08/05/2015 21:03:00','-20,2', 'RA02');
execute insertartiradas('RA0242132,8781134259', '13', '08/05/2015 21:04:29','18', 'RA02');
execute insertartiradas('RA0242132,8790856482', '2', '08/05/2015 21:05:53','-17,4', 'RA02');
execute insertartiradas('RA0242132,8796875', '35', '08/05/2015 21:06:45','18,2', 'RA02');
execute insertartiradas('RA0242132,8808101852', '17', '08/05/2015 21:08:22','-17,3', 'RA02');
execute insertartiradas('RA0242132,8814583333', '36', '08/05/2015 21:09:18','15,4', 'RA02');
execute insertartiradas('RA0242132,8821643519', '12', '08/05/2015 21:10:19','-16,8', 'RA02');
execute insertartiradas('RA0242132,8828240741', '19', '08/05/2015 21:11:16','17,8', 'RA02');
execute insertartiradas('RA0242132,8836342593', '3', '08/05/2015 21:12:26','-14,9', 'RA02');
execute insertartiradas('RA0242132,884537037', '29', '08/05/2015 21:13:44','20,7', 'RA02');
execute insertartiradas('RA0242132,8859027777', '16', '08/05/2015 21:15:42','-19,4', 'RA02');
execute insertartiradas('RA0242132,8868055556', '2', '08/05/2015 21:17:00','14', 'RA02');
execute insertartiradas('RA0242132,8878819444', '7', '08/05/2015 21:18:33','-18,1', 'RA02');
execute insertartiradas('RA0242132,8888888889', '25', '08/05/2015 21:20:00','15,9', 'RA02');
execute insertartiradas('RA0242132,8898032407', '13', '08/05/2015 21:21:19','-16,3', 'RA02');
execute insertartiradas('RA0242132,8910300926', '26', '08/05/2015 21:23:05','15,8', 'RA02');
execute insertartiradas('RA0242132,8920486111', '32', '08/05/2015 21:24:33','-14,7', 'RA02');
execute insertartiradas('RA0242132,8928125', '27', '08/05/2015 21:25:39','15,9', 'RA02');
execute insertartiradas('RA0242132,8936921296', '7', '08/05/2015 21:26:55','-13,6', 'RA02');
execute insertartiradas('RA0242132,894537037', '8', '08/05/2015 21:28:08','18,4', 'RA02');
execute insertartiradas('RA0242132,8957986111', '4', '08/05/2015 21:29:57','-14,3', 'RA02');
execute insertartiradas('RA0242132,8966550926', '29', '08/05/2015 21:31:11','17,3', 'RA02');
execute insertartiradas('RA0242132,8982407407', '9', '08/05/2015 21:33:28','-13,5', 'RA02');
execute insertartiradas('RA0242132,8988310185', '26', '08/05/2015 21:34:19','23,3', 'RA02');
execute insertartiradas('RA0242132,8996527778', '27', '08/05/2015 21:35:30','-15,4', 'RA02');
execute insertartiradas('RA0242132,9005439815', '33', '08/05/2015 21:36:47','17,2', 'RA02');
execute insertartiradas('RA0242132,9013657407', '18', '08/05/2015 21:37:58','-14,2', 'RA02');
execute insertartiradas('RA0242132,9019212963', '3', '08/05/2015 21:38:46','16,6', 'RA02');
execute insertartiradas('RA0242132,9025462963', '2', '08/05/2015 21:39:40','-13,6', 'RA02');
execute insertartiradas('RA0242132,9033217593', '25', '08/05/2015 21:40:47','16,5', 'RA02');
execute insertartiradas('RA0242132,9041435185', '2', '08/05/2015 21:41:58','-13,5', 'RA02');
execute insertartiradas('RA0242132,9048726852', '12', '08/05/2015 21:43:01','17,3', 'RA02');
execute insertartiradas('RA0242132,9056828704', '29', '08/05/2015 21:44:11','-14,1', 'RA02');
execute insertartiradas('RA0242132,9067939815', '4', '08/05/2015 21:45:47','17,5', 'RA02');
execute insertartiradas('RA0242132,907662037', '27', '08/05/2015 21:47:02','-12,8', 'RA02');
execute insertartiradas('RA0242132,9082175926', '20', '08/05/2015 21:47:50','15,4', 'RA02');
execute insertartiradas('RA0242132,9087615741', '18', '08/05/2015 21:48:37','-13,4', 'RA02');
execute insertartiradas('RA0242132,9094444444', '20', '08/05/2015 21:49:36','15,5', 'RA02');
execute insertartiradas('RA0242132,9101851852', '30', '08/05/2015 21:50:40','-13,5', 'RA02');
execute insertartiradas('RA0242132,911724537', '17', '08/05/2015 21:52:53','16,7', 'RA02');
execute insertartiradas('RA0242132,9128240741', '35', '08/05/2015 21:54:28','-13,3', 'RA02');
execute insertartiradas('RA0242132,9136574074', '23', '08/05/2015 21:55:40','16,5', 'RA02');
execute insertartiradas('RA0242132,915462963', '24', '08/05/2015 21:58:16','-14,9', 'RA02');
execute insertartiradas('RA0242132,9163773148', '21', '08/05/2015 21:59:35','18,9', 'RA02');
execute insertartiradas('RA0242132,9174884259', '8', '08/05/2015 22:01:11','-18,1', 'RA02');
execute insertartiradas('RA0242132,9191666667', '34', '08/05/2015 22:03:36','21,5', 'RA02');
execute insertartiradas('RA0242132,9207291667', '14', '08/05/2015 22:05:51','-18', 'RA02');
execute insertartiradas('RA0242132,9227314815', '24', '08/05/2015 22:08:44','21,6', 'RA02');
execute insertartiradas('RA0242132,9241782407', '13', '08/05/2015 22:10:49','-20,3', 'RA02');
execute insertartiradas('RA0242132,9258564815', '34', '08/05/2015 22:13:14','22,8', 'RA02');
execute insertartiradas('RA0242132,9272222222', '29', '08/05/2015 22:15:12','-18,7', 'RA02');
execute insertartiradas('RA0242132,9294444444', '23', '08/05/2015 22:18:24','22,8', 'RA02');
execute insertartiradas('RA0242132,9337268519', '5', '08/05/2015 22:24:34','-17,9', 'RA02');
execute insertartiradas('RA0242132,9364351852', '1', '08/05/2015 22:28:28','16,6', 'RA02');
execute insertartiradas('RA0242132,9381018519', '17', '08/05/2015 22:30:52','-16,1', 'RA02');
execute insertartiradas('RA0242132,9402777778', '9', '08/05/2015 22:34:00','20,4', 'RA02');
execute insertartiradas('RA0242132,9429282407', '0', '08/05/2015 22:37:49','-18,4', 'RA02');
execute insertartiradas('RA0242132,9441782407', '7', '08/05/2015 22:39:37','17,9', 'RA02');
execute insertartiradas('RA0242132,9452430556', '25', '08/05/2015 22:41:09','-14,5', 'RA02');
execute insertartiradas('RA0242132,9462037037', '36', '08/05/2015 22:42:32','18,6', 'RA02');
execute insertartiradas('RA0242132,9468865741', '30', '08/05/2015 22:43:31','-17,1', 'RA02');
execute insertartiradas('RA0242132,9474537037', '2', '08/05/2015 22:44:20','15,8', 'RA02');
execute insertartiradas('RA0242132,9482291667', '21', '08/05/2015 22:45:27','-14,6', 'RA02');
execute insertartiradas('RA0242132,9487962963', '20', '08/05/2015 22:46:16','15,9', 'RA02');
execute insertartiradas('RA0242132,9493287037', '30', '08/05/2015 22:47:02','-15', 'RA02');
execute insertartiradas('RA0242132,9500347222', '17', '08/05/2015 22:48:03','17', 'RA02');
execute insertartiradas('RA0242132,9512268519', '14', '08/05/2015 22:49:46','-16,8', 'RA02');
execute insertartiradas('RA0242132,9524189815', '7', '08/05/2015 22:51:29','21', 'RA02');
execute insertartiradas('RA0242132,9533333333', '5', '08/05/2015 22:52:48','-20,1', 'RA02');
execute insertartiradas('RA0242132,9551967593', '2', '08/05/2015 22:55:29','20,5', 'RA02');
execute insertartiradas('RA0242132,9562152777', '2', '08/05/2015 22:56:57','-21,7', 'RA02');
execute insertartiradas('RA0242132,9574884259', '6', '08/05/2015 22:58:47','19,1', 'RA02');
execute insertartiradas('RA0242132,9584259259', '32', '08/05/2015 23:00:08','-20,1', 'RA02');
execute insertartiradas('RA0242132,9594560185', '4', '08/05/2015 23:01:37','20,6', 'RA02');
execute insertartiradas('RA0242132,9600231481', '30', '08/05/2015 23:02:26','-13,5', 'RA02');
execute insertartiradas('RA0242132,9607175926', '24', '08/05/2015 23:03:26','16,2', 'RA02');
execute insertartiradas('RA0242132,9612615741', '23', '08/05/2015 23:04:13','-19,6', 'RA02');
execute insertartiradas('RA0242132,9627083333', '9', '08/05/2015 23:06:18','11,6', 'RA02');
execute insertartiradas('RA0242132,9632407407', '32', '08/05/2015 23:07:04','-17,2', 'RA02');
execute insertartiradas('RA0242132,9638194444', '7', '08/05/2015 23:07:54','22,2', 'RA02');
execute insertartiradas('RA0242132,9643634259', '34', '08/05/2015 23:08:41','-18,7', 'RA02');
execute insertartiradas('RA0242132,9649421296', '17', '08/05/2015 23:09:31','22,6', 'RA02');
execute insertartiradas('RA0242132,9658564815', '4', '08/05/2015 23:10:50','-25', 'RA02');
execute insertartiradas('RA0242132,9664236111', '8', '08/05/2015 23:11:39','21,9', 'RA02');
execute insertartiradas('RA0242132,9671296296', '9', '08/05/2015 23:12:40','-20,7', 'RA02');
execute insertartiradas('RA0242132,967662037', '17', '08/05/2015 23:13:26','17,2', 'RA02');
execute insertartiradas('RA0242132,9687152778', '36', '08/05/2015 23:14:57','-19,4', 'RA02');
execute insertartiradas('RA0242132,969537037', '23', '08/05/2015 23:16:08','14,2', 'RA02');
execute insertartiradas('RA0242132,9712847222', '1', '08/05/2015 23:18:39','-21,7', 'RA02');
execute insertartiradas('RA0242132,9721064815', '7', '08/05/2015 23:19:50','24,7', 'RA02');
execute insertartiradas('RA0242132,9729282407', '11', '08/05/2015 23:21:01','-22,9', 'RA02');
execute insertartiradas('RA0242132,974212963', '30', '08/05/2015 23:22:52','19', 'RA02');
execute insertartiradas('RA0242132,9757175926', '35', '08/05/2015 23:25:02','-18,3', 'RA02');
execute insertartiradas('RA0242132,9770023148', '5', '08/05/2015 23:26:53','19,9', 'RA02');
execute insertartiradas('RA0242132,9779513889', '17', '08/05/2015 23:28:15','-18,5', 'RA02');
execute insertartiradas('RA0242132,9792013889', '13', '08/05/2015 23:30:03','21,8', 'RA02');
execute insertartiradas('RA0242132,9801041667', '17', '08/05/2015 23:31:21','-17,1', 'RA02');
execute insertartiradas('RA0242132,98125', '29', '08/05/2015 23:33:00','20,2', 'RA02');
execute insertartiradas('RA0242132,9819907407', '31', '08/05/2015 23:34:04','-17,2', 'RA02');
execute insertartiradas('RA0242132,9827893519', '12', '08/05/2015 23:35:13','20', 'RA02');
execute insertartiradas('RA0242132,9841087963', '34', '08/05/2015 23:37:07','-15,5', 'RA02');
execute insertartiradas('RA0242132,9849768519', '14', '08/05/2015 23:38:22','23,9', 'RA02');
execute insertartiradas('RA0242132,9859953704', '33', '08/05/2015 23:39:50','-20', 'RA02');
execute insertartiradas('RA0242132,9871296296', '36', '08/05/2015 23:41:28','20,7', 'RA02');
execute insertartiradas('RA0242132,9884027778', '16', '08/05/2015 23:43:18','-18,9', 'RA02');
execute insertartiradas('RA0242132,9896875', '23', '08/05/2015 23:45:09','18,7', 'RA02');
execute insertartiradas('RA0242132,9915162037', '2', '08/05/2015 23:47:47','-17,2', 'RA02');
execute insertartiradas('RA0242132,9926273148', '15', '08/05/2015 23:49:23','23,2', 'RA02');
execute insertartiradas('RA0242132,993287037', '29', '08/05/2015 23:50:20','-19,4', 'RA02');
execute insertartiradas('RA0242132,9944097222', '34', '08/05/2015 23:51:57','19,6', 'RA02');
execute insertartiradas('RA0242132,9960532407', '33', '08/05/2015 23:54:19','-21,7', 'RA02');
execute insertartiradas('RA0242132,9973958333', '32', '08/05/2015 23:56:15','19,1', 'RA02');
execute insertartiradas('RA0242132,9984953704', '11', '08/05/2015 23:57:50','-19,9', 'RA02');
execute insertartiradas('RA0242133,0006481481', '1', '09/05/2015 00:00:56','20,2', 'RA02');
execute insertartiradas('RA0242133,0022800926', '20', '09/05/2015 00:03:17','-18,4', 'RA02');
execute insertartiradas('RA0242133,0033101852', '26', '09/05/2015 00:04:46','18,7', 'RA02');
execute insertartiradas('RA0242133,0041435185', '16', '09/05/2015 00:05:58','-19,2', 'RA02');
execute insertartiradas('RA0242133,0055787037', '34', '09/05/2015 00:08:02','19,2', 'RA02');
execute insertartiradas('RA0242133,0068055556', '15', '09/05/2015 00:09:48','-18,8', 'RA02');
execute insertartiradas('RA0242133,0083449074', '13', '09/05/2015 00:12:01','18,4', 'RA02');
execute insertartiradas('RA0242133,0095486111', '19', '09/05/2015 00:13:45','-19,3', 'RA02');
execute insertartiradas('RA0242133,010787037', '11', '09/05/2015 00:15:32','18,9', 'RA02');
execute insertartiradas('RA0242133,0122337962', '23', '09/05/2015 00:17:37','-19,5', 'RA02');
execute insertartiradas('RA0242133,014224537', '24', '09/05/2015 00:20:29','20', 'RA02');
execute insertartiradas('RA0242133,0154166667', '7', '09/05/2015 00:22:12','-11,3', 'RA02');
execute insertartiradas('RA0242133,016724537', '16', '09/05/2015 00:24:05','17,5', 'RA02');
execute insertartiradas('RA0242133,0177430556', '0', '09/05/2015 00:25:33','-15,5', 'RA02');
execute insertartiradas('RA0242133,0186805556', '30', '09/05/2015 00:26:54','13,1', 'RA02');
execute insertartiradas('RA0242133,0200231482', '2', '09/05/2015 00:28:50','-18,5', 'RA02');
execute insertartiradas('RA0242133,0210763888', '9', '09/05/2015 00:30:21','19', 'RA02');
execute insertartiradas('RA0242133,0220833333', '20', '09/05/2015 00:31:48','-14', 'RA02');
execute insertartiradas('RA0242133,0227546296', '13', '09/05/2015 00:32:46','16,1', 'RA02');
execute insertartiradas('RA0242133,0234490741', '1', '09/05/2015 00:33:46','-15,7', 'RA02');
execute insertartiradas('RA0242133,0240625', '3', '09/05/2015 00:34:39','16,5', 'RA02');
execute insertartiradas('RA0242133,024849537', '27', '09/05/2015 00:35:47','-12,9', 'RA02');
execute insertartiradas('RA0242133,0256018518', '9', '09/05/2015 00:36:52','16,9', 'RA02');
execute insertartiradas('RA0242133,0267708333', '6', '09/05/2015 00:38:33','-18,2', 'RA02');
execute insertartiradas('RA0242133,027962963', '22', '09/05/2015 00:40:16','19,5', 'RA02');
execute insertartiradas('RA0242133,0296412037', '19', '09/05/2015 00:42:41','-16', 'RA02');
execute insertartiradas('RA0242133,0303935185', '2', '09/05/2015 00:43:46','18,9', 'RA02');
execute insertartiradas('RA0242133,0311458333', '8', '09/05/2015 00:44:51','-16,3', 'RA02');
execute insertartiradas('RA0242133,0321412037', '31', '09/05/2015 00:46:17','19,2', 'RA02');
execute insertartiradas('RA0242133,0331481481', '19', '09/05/2015 00:47:44','-16,8', 'RA02');
execute insertartiradas('RA0242133,0343865741', '29', '09/05/2015 00:49:31','18,6', 'RA02');
execute insertartiradas('RA0242133,0360416667', '16', '09/05/2015 00:51:54','-16,2', 'RA02');
execute insertartiradas('RA0242133,0376157407', '4', '09/05/2015 00:54:10','17,1', 'RA02');
execute insertartiradas('RA0242133,0380671296', '36', '09/05/2015 00:54:49','-17,8', 'RA02');
execute insertartiradas('RA0242133,0389236111', '12', '09/05/2015 00:56:03','17,9', 'RA02');
execute insertartiradas('RA0242133,0397337963', '30', '09/05/2015 00:57:13','-16,4', 'RA02');
execute insertartiradas('RA0242133,0411574074', '0', '09/05/2015 00:59:16','20,4', 'RA02');
execute insertartiradas('RA0242133,0420486111', '34', '09/05/2015 01:00:33','-19,3', 'RA02');
execute insertartiradas('RA0242133,0429282407', '33', '09/05/2015 01:01:49','16,5', 'RA02');
execute insertartiradas('RA0242133,043599537', '31', '09/05/2015 01:02:47','-15,8', 'RA02');
execute insertartiradas('RA0242133,0442129629', '8', '09/05/2015 01:03:40','15,5', 'RA02');
execute insertartiradas('RA0242133,045162037', '20', '09/05/2015 01:05:02','-14,9', 'RA02');
execute insertartiradas('RA0242133,0458680556', '20', '09/05/2015 01:06:03','17,1', 'RA02');
execute insertartiradas('RA0242133,0467361111', '23', '09/05/2015 01:07:18','-16,2', 'RA02');
execute insertartiradas('RA0242133,0480671296', '36', '09/05/2015 01:09:13','17,1', 'RA02');
execute insertartiradas('RA0242133,0491550926', '18', '09/05/2015 01:10:47','-16', 'RA02');
execute insertartiradas('RA0242133,0503935185', '12', '09/05/2015 01:12:34','15,8', 'RA02');
execute insertartiradas('RA0242133,0515625', '8', '09/05/2015 01:14:15','-13,7', 'RA02');
execute insertartiradas('RA0242133,0528356481', '29', '09/05/2015 01:16:05','16,4', 'RA02');
execute insertartiradas('RA0242133,0545138889', '26', '09/05/2015 01:18:30','-18,3', 'RA02');
execute insertartiradas('RA0242133,055474537', '19', '09/05/2015 01:19:53','17,5', 'RA02');
execute insertartiradas('RA0242133,0563078704', '13', '09/05/2015 01:21:05','-16,2', 'RA02');
execute insertartiradas('RA0242133,0572916667', '24', '09/05/2015 01:22:30','16,9', 'RA02');
execute insertartiradas('RA0242133,0582986111', '2', '09/05/2015 01:23:57','-16,2', 'RA02');
execute insertartiradas('RA0242133,0594791667', '8', '09/05/2015 01:25:39','15,2', 'RA02');
execute insertartiradas('RA0242133,0605092593', '9', '09/05/2015 01:27:08','-22,1', 'RA02');
execute insertartiradas('RA0242133,0614583333', '5', '09/05/2015 01:28:30','16,4', 'RA02');
execute insertartiradas('RA0242133,0632291666', '26', '09/05/2015 01:31:03','-20,8', 'RA02');
execute insertartiradas('RA0242133,0643287037', '11', '09/05/2015 01:32:38','15,3', 'RA02');
execute insertartiradas('RA0242133,0657638889', '8', '09/05/2015 01:34:42','-13,7', 'RA02');
execute insertartiradas('RA0242133,0673032407', '27', '09/05/2015 01:36:55','15,4', 'RA02');
execute insertartiradas('RA0242133,0681481482', '15', '09/05/2015 01:38:08','-15,1', 'RA02');
execute insertartiradas('RA0242133,0688310185', '36', '09/05/2015 01:39:07','13,1', 'RA02');
execute insertartiradas('RA0242133,0698842593', '32', '09/05/2015 01:40:38','-14,9', 'RA02');
execute insertartiradas('RA0242133,0716550926', '8', '09/05/2015 01:43:11','18,8', 'RA02');
execute insertartiradas('RA0242133,0733912037', '13', '09/05/2015 01:45:41','-18,3', 'RA02');
execute insertartiradas('RA0242133,0747453704', '14', '09/05/2015 01:47:38','19', 'RA02');
execute insertartiradas('RA0242133,0757060185', '8', '09/05/2015 01:49:01','-17,2', 'RA02');
execute insertartiradas('RA0242133,0766782407', '22', '09/05/2015 01:50:25','17,6', 'RA02');
execute insertartiradas('RA0242133,0775115741', '4', '09/05/2015 01:51:37','-17,6', 'RA02');
execute insertartiradas('RA0242133,078587963', '3', '09/05/2015 01:53:10','16,4', 'RA02');
execute insertartiradas('RA0242133,0794560185', '32', '09/05/2015 01:54:25','-15,3', 'RA02');
execute insertartiradas('RA0242133,0803819444', '6', '09/05/2015 01:55:45','23,4', 'RA02');
execute insertartiradas('RA0242133,0808449074', '7', '09/05/2015 01:56:25','-14,4', 'RA02');
execute insertartiradas('RA0242133,0814236111', '30', '09/05/2015 01:57:15','19,8', 'RA02');
execute insertartiradas('RA0242133,0819675926', '28', '09/05/2015 01:58:02','-15,4', 'RA02');
execute insertartiradas('RA0242133,0829976852', '26', '09/05/2015 01:59:31','20,9', 'RA02');
execute insertartiradas('RA0242133,0836342593', '1', '09/05/2015 02:00:26','-15,3', 'RA02');
execute insertartiradas('RA0242133,084375', '3', '09/05/2015 02:01:30','19,7', 'RA02');
execute insertartiradas('RA0242133,0853587963', '35', '09/05/2015 02:02:55','-15,4', 'RA02');
execute insertartiradas('RA0242133,0859143519', '5', '09/05/2015 02:03:43','20,7', 'RA02');
execute insertartiradas('RA0242133,0865277778', '12', '09/05/2015 02:04:36','-15,2', 'RA02');
execute insertartiradas('RA0242133,0877893519', '5', '09/05/2015 02:06:25','18', 'RA02');
execute insertartiradas('RA0242133,0886226852', '1', '09/05/2015 02:07:37','-17,7', 'RA02');
execute insertartiradas('RA0242133,0892361111', '11', '09/05/2015 02:08:30','21,9', 'RA02');
execute insertartiradas('RA0242133,0900115741', '12', '09/05/2015 02:09:37','-17,8', 'RA02');
execute insertartiradas('RA0242133,0906481482', '4', '09/05/2015 02:10:32','23', 'RA02');
execute insertartiradas('RA0242133,0912037037', '14', '09/05/2015 02:11:20','-15,3', 'RA02');
execute insertartiradas('RA0242133,0920601852', '25', '09/05/2015 02:12:34','19,5', 'RA02');
execute insertartiradas('RA0242133,0928819444', '6', '09/05/2015 02:13:45','-17,7', 'RA02');
execute insertartiradas('RA0242133,0933680556', '5', '09/05/2015 02:14:27','17,8', 'RA02');
execute insertartiradas('RA0242133,0940740741', '36', '09/05/2015 02:15:28','-18,3', 'RA02');
execute insertartiradas('RA0242133,0947569444', '15', '09/05/2015 02:16:27','21', 'RA02');
execute insertartiradas('RA0242133,0955902778', '36', '09/05/2015 02:17:39','-16,9', 'RA02');
execute insertartiradas('RA0242133,096099537', '24', '09/05/2015 02:18:23','21,2', 'RA02');
execute insertartiradas('RA0242133,0968287037', '11', '09/05/2015 02:19:26','-16,3', 'RA02');
execute insertartiradas('RA0242133,0976157407', '7', '09/05/2015 02:20:34','19,8', 'RA02');
execute insertartiradas('RA0242133,098587963', '9', '09/05/2015 02:21:58','-16,7', 'RA02');
execute insertartiradas('RA0242133,0993518519', '31', '09/05/2015 02:23:04','20,7', 'RA02');
execute insertartiradas('RA0242133,1002083333', '7', '09/05/2015 02:24:18','-24,5', 'RA02');
execute insertartiradas('RA0242133,1009490741', '28', '09/05/2015 02:25:22','20,7', 'RA02');
execute insertartiradas('RA0242133,1013657407', '18', '09/05/2015 02:25:58','-21,8', 'RA02');
execute insertartiradas('RA0242133,1017824074', '1', '09/05/2015 02:26:34','19,8', 'RA02');
execute insertartiradas('RA0242133,1021412037', '20', '09/05/2015 02:27:05','-21', 'RA02');
execute insertartiradas('RA0242133,1025347222', '24', '09/05/2015 02:27:39','17,7', 'RA02');
execute insertartiradas('RA0242133,1028935185', '11', '09/05/2015 02:28:10','-21,6', 'RA02');
execute insertartiradas('RA0242133,1032986111', '9', '09/05/2015 02:28:45','16,5', 'RA02');
execute insertartiradas('RA0242133,1036574074', '18', '09/05/2015 02:29:16','-21,1', 'RA02');
execute insertartiradas('RA0242133,1045601852', '22', '09/05/2015 02:30:34','21,6', 'RA02');
execute insertartiradas('RA0242133,1050694444', '0', '09/05/2015 02:31:18','-19,9', 'RA02');
execute insertartiradas('RA0242133,1058912037', '4', '09/05/2015 02:32:29','21,4', 'RA02');
execute insertartiradas('RA0242133,1064351852', '4', '09/05/2015 02:33:16','-21,8', 'RA02');
execute insertartiradas('RA0242133,1069212963', '14', '09/05/2015 02:33:58','16,7', 'RA02');
execute insertartiradas('RA0242133,1074421296', '12', '09/05/2015 02:34:43','-22,2', 'RA02');
execute insertartiradas('RA0242133,1080324074', '33', '09/05/2015 02:35:34','20,1', 'RA02');
execute insertartiradas('RA0242133,1085648148', '3', '09/05/2015 02:36:20','-18,8', 'RA02');
execute insertartiradas('RA0242133,1096759259', '10', '09/05/2015 02:37:56','21,8', 'RA02');
execute insertartiradas('RA0242133,1107291667', '34', '09/05/2015 02:39:27','-17,4', 'RA02');
execute insertartiradas('RA0242133,1113773148', '27', '09/05/2015 02:40:23','21,2', 'RA02');
execute insertartiradas('RA0242133,1120023148', '34', '09/05/2015 02:41:17','-20', 'RA02');
execute insertartiradas('RA0242133,1125231481', '2', '09/05/2015 02:42:02','20,5', 'RA02');
execute insertartiradas('RA0242133,1130902778', '1', '09/05/2015 02:42:51','-20,6', 'RA02');
execute insertartiradas('RA0242133,1136921296', '23', '09/05/2015 02:43:43','18,7', 'RA02');
execute insertartiradas('RA0242133,1149421296', '9', '09/05/2015 02:45:31','-21,2', 'RA02');
execute insertartiradas('RA0242133,1154050926', '8', '09/05/2015 02:46:11','18', 'RA02');
execute insertartiradas('RA0242133,1161111111', '16', '09/05/2015 02:47:12','-19,8', 'RA02');
execute insertartiradas('RA0242133,1166782407', '19', '09/05/2015 02:48:01','20,3', 'RA02');
execute insertartiradas('RA0242133,1175', '2', '09/05/2015 02:49:12','-22,2', 'RA02');
execute insertartiradas('RA0242133,1184722222', '31', '09/05/2015 02:50:36','22,7', 'RA02');
execute insertartiradas('RA0242133,1191203704', '36', '09/05/2015 02:51:32','-20', 'RA02');
execute insertartiradas('RA0242133,1197337963', '15', '09/05/2015 02:52:25','22,1', 'RA02');
execute insertartiradas('RA0242133,1200925926', '1', '09/05/2015 02:52:56','-21,8', 'RA02');
execute insertartiradas('RA0242133,1209722222', '8', '09/05/2015 02:54:12','23,7', 'RA02');
execute insertartiradas('RA0242133,1216666667', '36', '09/05/2015 02:55:12','-23,1', 'RA02');
execute insertartiradas('RA0242133,1223379629', '6', '09/05/2015 02:56:10','22,2', 'RA02');
execute insertartiradas('RA0242133,1227893519', '4', '09/05/2015 02:56:49','-22', 'RA02');
execute insertartiradas('RA0242133,1234490741', '33', '09/05/2015 02:57:46','19,5', 'RA02');
execute insertartiradas('RA0242133,7793402778', '3', '09/05/2015 18:42:15','19,7', 'RA02');
execute insertartiradas('RA0242133,7798842593', '8', '09/05/2015 18:43:02','-13,3', 'RA02');
execute insertartiradas('RA0242133,7804282407', '9', '09/05/2015 18:43:49','16,2', 'RA02');
execute insertartiradas('RA0242133,7808101852', '27', '09/05/2015 18:44:22','-12,6', 'RA02');
execute insertartiradas('RA0242133,7812268519', '25', '09/05/2015 18:44:58','16,2', 'RA02');
execute insertartiradas('RA0242133,7818171296', '18', '09/05/2015 18:45:49','-12,1', 'RA02');
execute insertartiradas('RA0242133,7822800925', '19', '09/05/2015 18:46:29','11', 'RA02');
execute insertartiradas('RA0242133,7830902778', '0', '09/05/2015 18:47:39','-16,1', 'RA02');
execute insertartiradas('RA0242133,78375', '18', '09/05/2015 18:48:36','16,2', 'RA02');
execute insertartiradas('RA0242133,784212963', '26', '09/05/2015 18:49:16','-13,6', 'RA02');
execute insertartiradas('RA0242133,7849537037', '3', '09/05/2015 18:50:20','14,4', 'RA02');
execute insertartiradas('RA0242133,785462963', '23', '09/05/2015 18:51:04','-15', 'RA02');
execute insertartiradas('RA0242133,7860185185', '21', '09/05/2015 18:51:52','10,6', 'RA02');
execute insertartiradas('RA0242133,7867476852', '28', '09/05/2015 18:52:55','-14,5', 'RA02');
execute insertartiradas('RA0242133,7874074074', '6', '09/05/2015 18:53:52','19,5', 'RA02');
execute insertartiradas('RA0242133,7879282407', '0', '09/05/2015 18:54:37','-14,9', 'RA02');
execute insertartiradas('RA0242133,7884027778', '12', '09/05/2015 18:55:18','15,8', 'RA02');
execute insertartiradas('RA0242133,7891203704', '26', '09/05/2015 18:56:20','-17,4', 'RA02');
execute insertartiradas('RA0242133,7898726852', '13', '09/05/2015 18:57:25','16,1', 'RA02');
execute insertartiradas('RA0242133,7906018519', '27', '09/05/2015 18:58:28','-12,5', 'RA02');
execute insertartiradas('RA0242133,7915509259', '23', '09/05/2015 18:59:50','15,3', 'RA02');
execute insertartiradas('RA0242133,7921180556', '10', '09/05/2015 19:00:39','-12,5', 'RA02');
execute insertartiradas('RA0242133,7925810185', '32', '09/05/2015 19:01:19','15,7', 'RA02');
execute insertartiradas('RA0242133,7931597222', '11', '09/05/2015 19:02:09','-13,2', 'RA02');
execute insertartiradas('RA0242133,7940625', '36', '09/05/2015 19:03:27','21,8', 'RA02');
execute insertartiradas('RA0242133,7947453704', '18', '09/05/2015 19:04:26','-20,2', 'RA02');
execute insertartiradas('RA0242133,7953472222', '4', '09/05/2015 19:05:18','22,7', 'RA02');
execute insertartiradas('RA0242133,7958449074', '4', '09/05/2015 19:06:01','-19,8', 'RA02');
execute insertartiradas('RA0242133,7966203704', '28', '09/05/2015 19:07:08','21,2', 'RA02');
execute insertartiradas('RA0242133,7972685185', '28', '09/05/2015 19:08:04','-20,4', 'RA02');
execute insertartiradas('RA0242133,7978703704', '24', '09/05/2015 19:08:56','22,3', 'RA02');
execute insertartiradas('RA0242133,7985069444', '13', '09/05/2015 19:09:51','-18,8', 'RA02');
execute insertartiradas('RA0242133,798912037', '24', '09/05/2015 19:10:26','19,9', 'RA02');
execute insertartiradas('RA0242133,799837963', '32', '09/05/2015 19:11:46','-19,5', 'RA02');
execute insertartiradas('RA0242133,8003703704', '35', '09/05/2015 19:12:32','19,4', 'RA02');
execute insertartiradas('RA0242133,8010532407', '17', '09/05/2015 19:13:31','-19,8', 'RA02');
execute insertartiradas('RA0242133,8015277778', '0', '09/05/2015 19:14:12','20,7', 'RA02');
execute insertartiradas('RA0242133,8020023148', '36', '09/05/2015 19:14:53','-18,3', 'RA02');
execute insertartiradas('RA0242133,8026157407', '30', '09/05/2015 19:15:46','17,2', 'RA02');
execute insertartiradas('RA0242133,8030787037', '10', '09/05/2015 19:16:26','-16,3', 'RA02');
execute insertartiradas('RA0242133,8037384259', '34', '09/05/2015 19:17:23','17,3', 'RA02');
execute insertartiradas('RA0242133,8043634259', '13', '09/05/2015 19:18:17','-18', 'RA02');
execute insertartiradas('RA0242133,8049884259', '5', '09/05/2015 19:19:11','20,6', 'RA02');
execute insertartiradas('RA0242133,8054398148', '3', '09/05/2015 19:19:50','-18,8', 'RA02');
execute insertartiradas('RA0242133,8059837963', '9', '09/05/2015 19:20:37','19,8', 'RA02');
execute insertartiradas('RA0242133,8067013889', '18', '09/05/2015 19:21:39','-15,9', 'RA02');
execute insertartiradas('RA0242133,8071296296', '14', '09/05/2015 19:22:16','21,2', 'RA02');
execute insertartiradas('RA0242133,8075', '30', '09/05/2015 19:22:48','-18,4', 'RA02');
execute insertartiradas('RA0242133,8080439815', '13', '09/05/2015 19:23:35','19,7', 'RA02');
execute insertartiradas('RA0242133,8086921296', '17', '09/05/2015 19:24:31','-14,9', 'RA02');
execute insertartiradas('RA0242133,8092361111', '34', '09/05/2015 19:25:18','19', 'RA02');
execute insertartiradas('RA0242133,827349537', '20', '09/05/2015 19:51:23','-12,8', 'RA02');
execute insertartiradas('RA0242133,8278819444', '2', '09/05/2015 19:52:09','15,4', 'RA02');
execute insertartiradas('RA0242133,8283217593', '20', '09/05/2015 19:52:47','-11,3', 'RA02');
execute insertartiradas('RA0242133,8288773148', '18', '09/05/2015 19:53:35','17,5', 'RA02');
execute insertartiradas('RA0242133,8292824074', '32', '09/05/2015 19:54:10','-15', 'RA02');
execute insertartiradas('RA0242133,8297337963', '20', '09/05/2015 19:54:49','17,6', 'RA02');
execute insertartiradas('RA0242133,8302083333', '12', '09/05/2015 19:55:30','-12,1', 'RA02');
execute insertartiradas('RA0242133,8306018518', '16', '09/05/2015 19:56:04','13,2', 'RA02');
execute insertartiradas('RA0242133,8310416667', '27', '09/05/2015 19:56:42','-13,1', 'RA02');
execute insertartiradas('RA0242133,8315277778', '22', '09/05/2015 19:57:24','15,5', 'RA02');
execute insertartiradas('RA0242133,8319444444', '7', '09/05/2015 19:58:00','-14,1', 'RA02');
execute insertartiradas('RA0242133,8324074074', '18', '09/05/2015 19:58:40','13,1', 'RA02');
execute insertartiradas('RA0242133,832974537', '28', '09/05/2015 19:59:29','-14', 'RA02');
execute insertartiradas('RA0242133,8335300926', '25', '09/05/2015 20:00:17','15,7', 'RA02');
execute insertartiradas('RA0242133,8339930556', '36', '09/05/2015 20:00:57','-13,4', 'RA02');
execute insertartiradas('RA0242133,8344328704', '34', '09/05/2015 20:01:35','15,9', 'RA02');
execute insertartiradas('RA0242133,8348842593', '29', '09/05/2015 20:02:14','-13,2', 'RA02');
execute insertartiradas('RA0242133,8353009259', '18', '09/05/2015 20:02:50','15,2', 'RA02');
execute insertartiradas('RA0242133,8357407407', '23', '09/05/2015 20:03:28','-13,4', 'RA02');
execute insertartiradas('RA0242133,8361921296', '31', '09/05/2015 20:04:07','17,5', 'RA02');
execute insertartiradas('RA0242133,8366550926', '16', '09/05/2015 20:04:47','-14,5', 'RA02');
execute insertartiradas('RA0242133,8371643519', '27', '09/05/2015 20:05:31','17,9', 'RA02');
execute insertartiradas('RA0242133,8376041667', '11', '09/05/2015 20:06:09','-12,1', 'RA02');
execute insertartiradas('RA0242133,8379976851', '29', '09/05/2015 20:06:43','16', 'RA02');
execute insertartiradas('RA0242133,8384953704', '26', '09/05/2015 20:07:26','-12,3', 'RA02');
execute insertartiradas('RA0242133,8389236111', '4', '09/05/2015 20:08:03','17,3', 'RA02');
execute insertartiradas('RA0242133,839375', '1', '09/05/2015 20:08:42','-12,3', 'RA02');
execute insertartiradas('RA0242133,8397800926', '29', '09/05/2015 20:09:17','17,4', 'RA02');
execute insertartiradas('RA0242133,8401967593', '22', '09/05/2015 20:09:53','-13,5', 'RA02');
execute insertartiradas('RA0242133,8405208333', '30', '09/05/2015 20:10:21','16,9', 'RA02');
execute insertartiradas('RA0242133,8413194444', '0', '09/05/2015 20:11:30','-12,5', 'RA02');
execute insertartiradas('RA0242133,8421180556', '4', '09/05/2015 20:12:39','13,9', 'RA02');
execute insertartiradas('RA0242133,8425925926', '12', '09/05/2015 20:13:20','-12,4', 'RA02');
execute insertartiradas('RA0242133,8430671296', '14', '09/05/2015 20:14:01','14,7', 'RA02');
execute insertartiradas('RA0242133,8435648148', '28', '09/05/2015 20:14:44','-12,2', 'RA02');
execute insertartiradas('RA0242133,8439930556', '29', '09/05/2015 20:15:21','16,8', 'RA02');
execute insertartiradas('RA0242133,8445023148', '5', '09/05/2015 20:16:05','-12,1', 'RA02');
execute insertartiradas('RA0242133,8450115741', '26', '09/05/2015 20:16:49','17', 'RA02');
execute insertartiradas('RA0242133,8455092593', '22', '09/05/2015 20:17:32','-13,2', 'RA02');
execute insertartiradas('RA0242133,8464236111', '20', '09/05/2015 20:18:51','16,5', 'RA02');
execute insertartiradas('RA0242133,8469560185', '15', '09/05/2015 20:19:37','-13,1', 'RA02');
execute insertartiradas('RA0242133,847337963', '25', '09/05/2015 20:20:10','15,6', 'RA02');
execute insertartiradas('RA0242133,8478356482', '16', '09/05/2015 20:20:53','-12,8', 'RA02');
execute insertartiradas('RA0242133,8482407407', '10', '09/05/2015 20:21:28','16,6', 'RA02');
execute insertartiradas('RA0242133,8493055556', '17', '09/05/2015 20:23:00','-11,2', 'RA02');
execute insertartiradas('RA0242133,8498148148', '16', '09/05/2015 20:23:44','13,3', 'RA02');
execute insertartiradas('RA0242133,8502546296', '17', '09/05/2015 20:24:22','-11,1', 'RA02');
execute insertartiradas('RA0242133,8510300926', '11', '09/05/2015 20:25:29','13,6', 'RA02');
execute insertartiradas('RA0242133,8515740741', '25', '09/05/2015 20:26:16','-11,6', 'RA02');
execute insertartiradas('RA0242133,8521064815', '4', '09/05/2015 20:27:02','13,2', 'RA02');
execute insertartiradas('RA0242133,852650463', '9', '09/05/2015 20:27:49','-11,5', 'RA02');
execute insertartiradas('RA0242133,8530555556', '7', '09/05/2015 20:28:24','14,6', 'RA02');
execute insertartiradas('RA0242133,8769212963', '20', '09/05/2015 21:02:46','-16,7', 'RA02');
execute insertartiradas('RA0242133,8773726852', '30', '09/05/2015 21:03:25','15,4', 'RA02');
execute insertartiradas('RA0242133,8777777778', '22', '09/05/2015 21:04:00','-17,3', 'RA02');
execute insertartiradas('RA0242133,8784259259', '7', '09/05/2015 21:04:56','17,6', 'RA02');
execute insertartiradas('RA0242133,8788541667', '14', '09/05/2015 21:05:33','-18,7', 'RA02');
execute insertartiradas('RA0242133,8793171296', '16', '09/05/2015 21:06:13','14,5', 'RA02');
execute insertartiradas('RA0242133,88', '25', '09/05/2015 21:07:12','-18,1', 'RA02');
execute insertartiradas('RA0242133,8805902778', '2', '09/05/2015 21:08:03','15,7', 'RA02');
execute insertartiradas('RA0242133,8811226852', '10', '09/05/2015 21:08:49','-16,3', 'RA02');
execute insertartiradas('RA0242133,8815509259', '23', '09/05/2015 21:09:26','18,7', 'RA02');
execute insertartiradas('RA0242133,8819097222', '5', '09/05/2015 21:09:57','-15,6', 'RA02');
execute insertartiradas('RA0242133,8825', '11', '09/05/2015 21:10:48','15', 'RA02');
execute insertartiradas('RA0242133,8829861111', '27', '09/05/2015 21:11:30','-19,4', 'RA02');
execute insertartiradas('RA0242133,8834722222', '21', '09/05/2015 21:12:12','17,8', 'RA02');
execute insertartiradas('RA0242133,8841666667', '32', '09/05/2015 21:13:12','-17,1', 'RA02');
execute insertartiradas('RA0242133,8846527778', '2', '09/05/2015 21:13:54','15', 'RA02');
execute insertartiradas('RA0242133,8851388889', '0', '09/05/2015 21:14:36','-16,8', 'RA02');
execute insertartiradas('RA0242133,8857060185', '30', '09/05/2015 21:15:25','16,4', 'RA02');
execute insertartiradas('RA0242133,8862152778', '24', '09/05/2015 21:16:09','-14,8', 'RA02');
execute insertartiradas('RA0242133,8868981482', '30', '09/05/2015 21:17:08','14,6', 'RA02');
execute insertartiradas('RA0242133,8872222222', '31', '09/05/2015 21:17:36','-15,2', 'RA02');
execute insertartiradas('RA0242133,8876967593', '25', '09/05/2015 21:18:17','15,6', 'RA02');
execute insertartiradas('RA0242133,8880787037', '6', '09/05/2015 21:18:50','-15,8', 'RA02');
execute insertartiradas('RA0242133,8888773148', '0', '09/05/2015 21:19:59','19,7', 'RA02');
execute insertartiradas('RA0242133,8910069444', '6', '09/05/2015 21:23:03','-16,5', 'RA02');
execute insertartiradas('RA0242133,8916435185', '28', '09/05/2015 21:23:58','16,5', 'RA02');
execute insertartiradas('RA0242133,8925', '34', '09/05/2015 21:25:12','-16', 'RA02');
execute insertartiradas('RA0242133,8931828704', '2', '09/05/2015 21:26:11','16,6', 'RA02');
execute insertartiradas('RA0242133,8937268518', '5', '09/05/2015 21:26:58','-18,9', 'RA02');
execute insertartiradas('RA0242133,8942824074', '32', '09/05/2015 21:27:46','15,7', 'RA02');
execute insertartiradas('RA0242133,8949421296', '33', '09/05/2015 21:28:43','-16,2', 'RA02');
execute insertartiradas('RA0242133,8955208333', '24', '09/05/2015 21:29:33','17,6', 'RA02');
execute insertartiradas('RA0242133,8963425926', '12', '09/05/2015 21:30:44','-17,7', 'RA02');
execute insertartiradas('RA0242133,8969097222', '32', '09/05/2015 21:31:33','15,7', 'RA02');
execute insertartiradas('RA0242133,8974884259', '11', '09/05/2015 21:32:23','-17,1', 'RA02');
execute insertartiradas('RA0242133,8983217593', '34', '09/05/2015 21:33:35','16,6', 'RA02');
execute insertartiradas('RA0242133,8989351852', '28', '09/05/2015 21:34:28','-20', 'RA02');
execute insertartiradas('RA0242133,8996527778', '20', '09/05/2015 21:35:30','17,2', 'RA02');
execute insertartiradas('RA0242133,9003935185', '3', '09/05/2015 21:36:34','-18,9', 'RA02');
execute insertartiradas('RA0242133,9010185185', '12', '09/05/2015 21:37:28','14,3', 'RA02');
execute insertartiradas('RA0242133,9015740741', '2', '09/05/2015 21:38:16','-13,2', 'RA02');
execute insertartiradas('RA0242133,9021990741', '17', '09/05/2015 21:39:10','16,6', 'RA02');
execute insertartiradas('RA0242133,9027546296', '8', '09/05/2015 21:39:58','-14,8', 'RA02');
execute insertartiradas('RA0242133,9033333333', '23', '09/05/2015 21:40:48','17', 'RA02');
execute insertartiradas('RA0242133,904212963', '26', '09/05/2015 21:42:04','-18,7', 'RA02');
execute insertartiradas('RA0242133,9051388889', '9', '09/05/2015 21:43:24','19,2', 'RA02');
execute insertartiradas('RA0242133,905775463', '14', '09/05/2015 21:44:19','-17', 'RA02');
execute insertartiradas('RA0242133,9063194444', '21', '09/05/2015 21:45:06','17,2', 'RA02');
execute insertartiradas('RA0242133,9068055556', '19', '09/05/2015 21:45:48','-17,3', 'RA02');
execute insertartiradas('RA0242133,907349537', '18', '09/05/2015 21:46:35','18,6', 'RA02');
execute insertartiradas('RA0242133,9078703704', '17', '09/05/2015 21:47:20','-12,4', 'RA02');
execute insertartiradas('RA0242133,9085069444', '32', '09/05/2015 21:48:15','18,9', 'RA02');
execute insertartiradas('RA0242133,9091319444', '26', '09/05/2015 21:49:09','-19,2', 'RA02');
execute insertartiradas('RA0242133,9101388889', '6', '09/05/2015 21:50:36','21,5', 'RA02');
execute insertartiradas('RA0242133,9107638889', '33', '09/05/2015 21:51:30','-13,3', 'RA02');
execute insertartiradas('RA0242133,9113194444', '21', '09/05/2015 21:52:18','18,6', 'RA02');
execute insertartiradas('RA0242133,9117939815', '36', '09/05/2015 21:52:59','-18,6', 'RA02');
execute insertartiradas('RA0242133,9122569444', '20', '09/05/2015 21:53:39','17,5', 'RA02');
execute insertartiradas('RA0242133,9128703704', '12', '09/05/2015 21:54:32','-17,1', 'RA02');
execute insertartiradas('RA0242133,9133912037', '27', '09/05/2015 21:55:17','18,1', 'RA02');
execute insertartiradas('RA0242133,9140162037', '26', '09/05/2015 21:56:11','-17,4', 'RA02');
execute insertartiradas('RA0242133,9146990741', '24', '09/05/2015 21:57:10','20,5', 'RA02');
execute insertartiradas('RA0242133,9155555556', '9', '09/05/2015 21:58:24','-18,6', 'RA02');
execute insertartiradas('RA0242133,916099537', '23', '09/05/2015 21:59:11','16,1', 'RA02');
execute insertartiradas('RA0242133,9168981481', '36', '09/05/2015 22:00:20','-18,7', 'RA02');
execute insertartiradas('RA0242133,9176273148', '25', '09/05/2015 22:01:23','19,1', 'RA02');
execute insertartiradas('RA0242133,9183796296', '21', '09/05/2015 22:02:28','-17,8', 'RA02');
execute insertartiradas('RA0242133,9190277778', '7', '09/05/2015 22:03:24','17,8', 'RA02');
execute insertartiradas('RA0242133,9195023148', '29', '09/05/2015 22:04:05','-19,2', 'RA02');
execute insertartiradas('RA0242133,9212037037', '28', '09/05/2015 22:06:32','20', 'RA02');
execute insertartiradas('RA0242133,9222453704', '29', '09/05/2015 22:08:02','-15,9', 'RA02');
execute insertartiradas('RA0242133,9235069444', '1', '09/05/2015 22:09:51','20,7', 'RA02');
execute insertartiradas('RA0242133,9242939815', '33', '09/05/2015 22:10:59','-18,9', 'RA02');
execute insertartiradas('RA0242133,9251736111', '33', '09/05/2015 22:12:15','21', 'RA02');
execute insertartiradas('RA0242133,9261226852', '30', '09/05/2015 22:13:37','-20', 'RA02');
execute insertartiradas('RA0242133,9268518519', '2', '09/05/2015 22:14:40','20,7', 'RA02');
execute insertartiradas('RA0242133,9280208333', '24', '09/05/2015 22:16:21','-17,6', 'RA02');
execute insertartiradas('RA0242133,928599537', '28', '09/05/2015 22:17:11','22,3', 'RA02');
execute insertartiradas('RA0242133,9292939815', '9', '09/05/2015 22:18:11','-18,4', 'RA02');
execute insertartiradas('RA0242133,9302662037', '14', '09/05/2015 22:19:35','19,8', 'RA02');
execute insertartiradas('RA0242133,9310532407', '29', '09/05/2015 22:20:43','-17,6', 'RA02');
execute insertartiradas('RA0242133,9320949074', '32', '09/05/2015 22:22:13','19,1', 'RA02');
execute insertartiradas('RA0242133,9330092593', '4', '09/05/2015 22:23:32','-16,6', 'RA02');
execute insertartiradas('RA0242133,9338773148', '15', '09/05/2015 22:24:47','18,7', 'RA02');
execute insertartiradas('RA0242133,9348726852', '27', '09/05/2015 22:26:13','-16,2', 'RA02');
execute insertartiradas('RA0242133,9355439815', '18', '09/05/2015 22:27:11','20,2', 'RA02');
execute insertartiradas('RA0242133,9362731481', '34', '09/05/2015 22:28:14','-16,5', 'RA02');
execute insertartiradas('RA0242133,9368981481', '36', '09/05/2015 22:29:08','19,7', 'RA02');
execute insertartiradas('RA0242133,9374074074', '25', '09/05/2015 22:29:52','-17', 'RA02');
execute insertartiradas('RA0242133,9378125', '24', '09/05/2015 22:30:27','21,8', 'RA02');
execute insertartiradas('RA0242133,9386226852', '4', '09/05/2015 22:31:37','-18,1', 'RA02');
execute insertartiradas('RA0242133,9390277778', '0', '09/05/2015 22:32:12','20,8', 'RA02');
execute insertartiradas('RA0242133,9395023148', '13', '09/05/2015 22:32:53','-17,5', 'RA02');
execute insertartiradas('RA0242133,94', '20', '09/05/2015 22:33:36','18', 'RA02');
execute insertartiradas('RA0242133,9404861111', '7', '09/05/2015 22:34:18','-17,8', 'RA02');
execute insertartiradas('RA0242133,9412037037', '25', '09/05/2015 22:35:20','19,3', 'RA02');
execute insertartiradas('RA0242133,9417592593', '10', '09/05/2015 22:36:08','-16,1', 'RA02');
execute insertartiradas('RA0242133,9424305556', '33', '09/05/2015 22:37:06','19,8', 'RA02');
execute insertartiradas('RA0242133,9432060185', '18', '09/05/2015 22:38:13','-17', 'RA02');
execute insertartiradas('RA0242133,94375', '36', '09/05/2015 22:39:00','19,8', 'RA02');
execute insertartiradas('RA0242133,9444675926', '1', '09/05/2015 22:40:02','-18', 'RA02');
execute insertartiradas('RA0242133,9451041667', '36', '09/05/2015 22:40:57','21,2', 'RA02');
execute insertartiradas('RA0242133,9461574074', '35', '09/05/2015 22:42:28','-20,7', 'RA02');
execute insertartiradas('RA0242133,9470717593', '2', '09/05/2015 22:43:47','18', 'RA02');
execute insertartiradas('RA0242133,9477546296', '18', '09/05/2015 22:44:46','-21,4', 'RA02');
execute insertartiradas('RA0242133,9485185185', '30', '09/05/2015 22:45:52','19,9', 'RA02');
execute insertartiradas('RA0242133,9491435185', '0', '09/05/2015 22:46:46','-20,4', 'RA02');
execute insertartiradas('RA0242133,9498958333', '2', '09/05/2015 22:47:51','21,2', 'RA02');
execute insertartiradas('RA0242133,9504513889', '6', '09/05/2015 22:48:39','-20,7', 'RA02');
execute insertartiradas('RA0242133,9510300926', '7', '09/05/2015 22:49:29','18,2', 'RA02');
execute insertartiradas('RA0242133,9515740741', '17', '09/05/2015 22:50:16','-21,8', 'RA02');
execute insertartiradas('RA0242133,9523726852', '12', '09/05/2015 22:51:25','16,8', 'RA02');
execute insertartiradas('RA0242133,9532060185', '14', '09/05/2015 22:52:37','-21,2', 'RA02');
execute insertartiradas('RA0242133,9540740741', '9', '09/05/2015 22:53:52','17,2', 'RA02');
execute insertartiradas('RA0242133,954837963', '27', '09/05/2015 22:54:58','-22,2', 'RA02');
execute insertartiradas('RA0242133,9555439815', '25', '09/05/2015 22:55:59','22,7', 'RA02');
execute insertartiradas('RA0242133,9561574074', '36', '09/05/2015 22:56:52','-17,5', 'RA02');
execute insertartiradas('RA0242133,9568402778', '3', '09/05/2015 22:57:51','16,7', 'RA02');
execute insertartiradas('RA0242133,9576157407', '25', '09/05/2015 22:58:58','-20', 'RA02');
execute insertartiradas('RA0242133,9582754629', '32', '09/05/2015 22:59:55','21,1', 'RA02');
execute insertartiradas('RA0242133,9595023148', '24', '09/05/2015 23:01:41','-21', 'RA02');
execute insertartiradas('RA0242133,9602083333', '4', '09/05/2015 23:02:42','17,2', 'RA02');
execute insertartiradas('RA0242133,9608333333', '11', '09/05/2015 23:03:36','-20,4', 'RA02');
execute insertartiradas('RA0242133,9614930556', '16', '09/05/2015 23:04:33','20,8', 'RA02');
execute insertartiradas('RA0242133,9621180556', '21', '09/05/2015 23:05:27','-20,1', 'RA02');
execute insertartiradas('RA0242133,9627199074', '7', '09/05/2015 23:06:19','21,5', 'RA02');
execute insertartiradas('RA0242133,9634953704', '16', '09/05/2015 23:07:26','-22,8', 'RA02');
execute insertartiradas('RA0242133,9653009259', '19', '09/05/2015 23:10:02','20,4', 'RA02');
execute insertartiradas('RA0242133,9659490741', '30', '09/05/2015 23:10:58','-22,6', 'RA02');
execute insertartiradas('RA0242133,9668634259', '0', '09/05/2015 23:12:17','17,6', 'RA02');
execute insertartiradas('RA0242133,9685532407', '4', '09/05/2015 23:14:43','-21,5', 'RA02');
execute insertartiradas('RA0242133,9694328704', '11', '09/05/2015 23:15:59','18,8', 'RA02');
execute insertartiradas('RA0242133,9703935185', '31', '09/05/2015 23:17:22','-21,6', 'RA02');
execute insertartiradas('RA0242133,9713888889', '9', '09/05/2015 23:18:48','22,4', 'RA02');
execute insertartiradas('RA0242133,9721527778', '31', '09/05/2015 23:19:54','-19,6', 'RA02');
execute insertartiradas('RA0242133,9735532407', '14', '09/05/2015 23:21:55','20,7', 'RA02');
execute insertartiradas('RA0242133,9743055556', '14', '09/05/2015 23:23:00','-19,8', 'RA02');
execute insertartiradas('RA0242133,9749652778', '9', '09/05/2015 23:23:57','22,2', 'RA02');
execute insertartiradas('RA0242133,9754513889', '2', '09/05/2015 23:24:39','-23,2', 'RA02');
execute insertartiradas('RA0242133,9761921296', '28', '09/05/2015 23:25:43','21,3', 'RA02');
execute insertartiradas('RA0242133,9770023148', '6', '09/05/2015 23:26:53','-14,2', 'RA02');
execute insertartiradas('RA0242133,9776388889', '12', '09/05/2015 23:27:48','20,9', 'RA02');
execute insertartiradas('RA0242133,9783101852', '32', '09/05/2015 23:28:46','-21,8', 'RA02');
execute insertartiradas('RA0242133,9792361111', '27', '09/05/2015 23:30:06','14,1', 'RA02');
execute insertartiradas('RA0242133,9804282407', '31', '09/05/2015 23:31:49','-20,1', 'RA02');
execute insertartiradas('RA0242133,9813888889', '19', '09/05/2015 23:33:12','19', 'RA02');
execute insertartiradas('RA0242133,9821064815', '31', '09/05/2015 23:34:14','-13,7', 'RA02');
execute insertartiradas('RA0242133,9831944444', '18', '09/05/2015 23:35:48','14', 'RA02');
execute insertartiradas('RA0242133,9844560185', '3', '09/05/2015 23:37:37','-21,8', 'RA02');
execute insertartiradas('RA0242133,9853703704', '35', '09/05/2015 23:38:56','22,3', 'RA02');
execute insertartiradas('RA0242133,98625', '11', '09/05/2015 23:40:12','-12,2', 'RA02');
execute insertartiradas('RA0242133,9868287037', '22', '09/05/2015 23:41:02','17,2', 'RA02');
execute insertartiradas('RA0242133,9874074074', '10', '09/05/2015 23:41:52','-22,5', 'RA02');
execute insertartiradas('RA0242133,9881365741', '34', '09/05/2015 23:42:55','23,9', 'RA02');
execute insertartiradas('RA0242133,9891550926', '16', '09/05/2015 23:44:23','-15', 'RA02');
execute insertartiradas('RA0242133,9898958333', '25', '09/05/2015 23:45:27','15,3', 'RA02');
execute insertartiradas('RA0242133,9908449074', '24', '09/05/2015 23:46:49','-22,2', 'RA02');
execute insertartiradas('RA0242133,9917013889', '2', '09/05/2015 23:48:03','18,1', 'RA02');
execute insertartiradas('RA0242133,9925231481', '32', '09/05/2015 23:49:14','-22,2', 'RA02');
execute insertartiradas('RA0242133,9950694444', '28', '09/05/2015 23:52:54','22,4', 'RA02');
execute insertartiradas('RA0242133,9961574074', '20', '09/05/2015 23:54:28','-24,5', 'RA02');
execute insertartiradas('RA0242133,9969791667', '1', '09/05/2015 23:55:39','18,4', 'RA02');
execute insertartiradas('RA0242133,997974537', '8', '09/05/2015 23:57:05','-23,5', 'RA02');
execute insertartiradas('RA0242133,9989930556', '32', '09/05/2015 23:58:33','15,5', 'RA02');
execute insertartiradas('RA0242134,0005902778', '36', '10/05/2015 00:00:51','-25,1', 'RA02');
execute insertartiradas('RA0242134,0020949074', '34', '10/05/2015 00:03:01','20,1', 'RA02');
execute insertartiradas('RA0242134,0039930556', '20', '10/05/2015 00:05:45','-12,8', 'RA02');
execute insertartiradas('RA0242134,0051157407', '9', '10/05/2015 00:07:22','19,7', 'RA02');
execute insertartiradas('RA0242134,0061111111', '34', '10/05/2015 00:08:48','-11,1', 'RA02');
execute insertartiradas('RA0242134,0070601852', '10', '10/05/2015 00:10:10','13', 'RA02');
execute insertartiradas('RA0242134,0082523148', '8', '10/05/2015 00:11:53','-12,1', 'RA02');
execute insertartiradas('RA0242134,0096759259', '20', '10/05/2015 00:13:56','23,4', 'RA02');
execute insertartiradas('RA0242134,0108564815', '19', '10/05/2015 00:15:38','-13,9', 'RA02');
execute insertartiradas('RA0242134,0117708333', '11', '10/05/2015 00:16:57','18,4', 'RA02');
execute insertartiradas('RA0242134,012662037', '27', '10/05/2015 00:18:14','-14,2', 'RA02');
execute insertartiradas('RA0242134,015', '10', '10/05/2015 00:21:36','22,6', 'RA02');
execute insertartiradas('RA0242134,016875', '4', '10/05/2015 00:24:18','-20', 'RA02');
execute insertartiradas('RA0242134,0180208333', '28', '10/05/2015 00:25:57','21,8', 'RA02');
execute insertartiradas('RA0242134,0191319444', '30', '10/05/2015 00:27:33','-15,2', 'RA02');
execute insertartiradas('RA0242134,0200462962', '4', '10/05/2015 00:28:52','18,2', 'RA02');
execute insertartiradas('RA0242134,0209606482', '30', '10/05/2015 00:30:11','-14,6', 'RA02');
execute insertartiradas('RA0242134,0219328704', '33', '10/05/2015 00:31:35','19,4', 'RA02');
execute insertartiradas('RA0242134,0233449074', '24', '10/05/2015 00:33:37','-15,2', 'RA02');
execute insertartiradas('RA0242134,0247916667', '36', '10/05/2015 00:35:42','18,1', 'RA02');
execute insertartiradas('RA0242134,0259606481', '29', '10/05/2015 00:37:23','-16,1', 'RA02');
execute insertartiradas('RA0242134,0275810185', '28', '10/05/2015 00:39:43','18,2', 'RA02');
execute insertartiradas('RA0242134,0291782407', '21', '10/05/2015 00:42:01','-15,2', 'RA02');
execute insertartiradas('RA0242134,0303472222', '12', '10/05/2015 00:43:42','20,1', 'RA02');
execute insertartiradas('RA0242134,0315740741', '30', '10/05/2015 00:45:28','-15', 'RA02');
execute insertartiradas('RA0242134,0331597222', '8', '10/05/2015 00:47:45','17,8', 'RA02');
execute insertartiradas('RA0242134,0356365741', '1', '10/05/2015 00:51:19','-16,5', 'RA02');
execute insertartiradas('RA0242134,0371180556', '17', '10/05/2015 00:53:27','19', 'RA02');
execute insertartiradas('RA0242134,038761574', '35', '10/05/2015 00:55:49','-14,6', 'RA02');
execute insertartiradas('RA0242134,0397800926', '22', '10/05/2015 00:57:17','17,1', 'RA02');
execute insertartiradas('RA0242134,0407060185', '18', '10/05/2015 00:58:37','-15,7', 'RA02');
execute insertartiradas('RA0242134,0417476852', '31', '10/05/2015 01:00:07','19,6', 'RA02');
execute insertartiradas('RA0242134,042974537', '16', '10/05/2015 01:01:53','-15,7', 'RA02');
execute insertartiradas('RA0242134,0440972222', '4', '10/05/2015 01:03:30','20,1', 'RA02');
execute insertartiradas('RA0242134,0448958333', '34', '10/05/2015 01:04:39','-14,5', 'RA02');
execute insertartiradas('RA0242134,0457175926', '13', '10/05/2015 01:05:50','17,1', 'RA02');
execute insertartiradas('RA0242134,0463194444', '18', '10/05/2015 01:06:42','-13,2', 'RA02');
execute insertartiradas('RA0242134,0471180556', '6', '10/05/2015 01:07:51','18,4', 'RA02');
execute insertartiradas('RA0242134,0478240741', '14', '10/05/2015 01:08:52','-12,5', 'RA02');
execute insertartiradas('RA0242134,048587963', '13', '10/05/2015 01:09:58','15,6', 'RA02');
execute insertartiradas('RA0242134,0494791667', '8', '10/05/2015 01:11:15','-13,6', 'RA02');
execute insertartiradas('RA0242134,0505092593', '23', '10/05/2015 01:12:44','18,2', 'RA02');
execute insertartiradas('RA0242134,0511921296', '16', '10/05/2015 01:13:43','-13,8', 'RA02');
execute insertartiradas('RA0242134,0524768519', '30', '10/05/2015 01:15:34','14,9', 'RA02');
execute insertartiradas('RA0242134,0534027778', '3', '10/05/2015 01:16:54','-16,7', 'RA02');
execute insertartiradas('RA0242134,0540046296', '32', '10/05/2015 01:17:46','16,6', 'RA02');
execute insertartiradas('RA0242134,0548263889', '22', '10/05/2015 01:18:57','-14,2', 'RA02');
execute insertartiradas('RA0242134,0554513889', '1', '10/05/2015 01:19:51','14,8', 'RA02');
execute insertartiradas('RA0242134,0562037037', '27', '10/05/2015 01:20:56','-14,3', 'RA02');
execute insertartiradas('RA0242134,0572222222', '11', '10/05/2015 01:22:24','19,7', 'RA02');
execute insertartiradas('RA0242134,0587384259', '19', '10/05/2015 01:24:35','-15,1', 'RA02');
execute insertartiradas('RA0242134,0595949074', '24', '10/05/2015 01:25:49','13,7', 'RA02');
execute insertartiradas('RA0242134,0606597222', '27', '10/05/2015 01:27:21','-16,9', 'RA02');
execute insertartiradas('RA0242134,0615740741', '30', '10/05/2015 01:28:40','16,8', 'RA02');
execute insertartiradas('RA0242134,0630324074', '21', '10/05/2015 01:30:46','-16', 'RA02');
execute insertartiradas('RA0242134,0638078704', '30', '10/05/2015 01:31:53','17,8', 'RA02');
execute insertartiradas('RA0242134,0645833333', '22', '10/05/2015 01:33:00','-13', 'RA02');
execute insertartiradas('RA0242134,0651157407', '6', '10/05/2015 01:33:46','18,2', 'RA02');
execute insertartiradas('RA0242134,0658564815', '13', '10/05/2015 01:34:50','-15,9', 'RA02');
execute insertartiradas('RA0242134,0667476852', '0', '10/05/2015 01:36:07','17,6', 'RA02');
execute insertartiradas('RA0242134,0674768519', '26', '10/05/2015 01:37:10','-15,4', 'RA02');
execute insertartiradas('RA0242134,0681712963', '12', '10/05/2015 01:38:10','15,7', 'RA02');
execute insertartiradas('RA0242134,068900463', '28', '10/05/2015 01:39:13','-13,5', 'RA02');
execute insertartiradas('RA0242134,0694328704', '4', '10/05/2015 01:39:59','16,6', 'RA02');
execute insertartiradas('RA0242134,0701157407', '1', '10/05/2015 01:40:58','-14,3', 'RA02');
execute insertartiradas('RA0242134,0711111111', '33', '10/05/2015 01:42:24','17,2', 'RA02');
execute insertartiradas('RA0242134,0717824074', '14', '10/05/2015 01:43:22','-16', 'RA02');
execute insertartiradas('RA0242134,0724189815', '14', '10/05/2015 01:44:17','15,7', 'RA02');
execute insertartiradas('RA0242134,0730324074', '14', '10/05/2015 01:45:10','-14,9', 'RA02');
execute insertartiradas('RA0242134,0738657407', '29', '10/05/2015 01:46:22','18,8', 'RA02');
execute insertartiradas('RA0242134,0745486111', '26', '10/05/2015 01:47:21','-15,5', 'RA02');
execute insertartiradas('RA0242134,0756481482', '30', '10/05/2015 01:48:56','16,4', 'RA02');
execute insertartiradas('RA0242134,0766319444', '35', '10/05/2015 01:50:21','-17,4', 'RA02');
execute insertartiradas('RA0242134,0776041667', '23', '10/05/2015 01:51:45','19,6', 'RA02');
execute insertartiradas('RA0242134,0786458333', '26', '10/05/2015 01:53:15','-17,9', 'RA02');
execute insertartiradas('RA0242134,0796527778', '18', '10/05/2015 01:54:42','15,6', 'RA02');
execute insertartiradas('RA0242134,0807986111', '4', '10/05/2015 01:56:21','-16', 'RA02');
execute insertartiradas('RA0242134,0818171296', '10', '10/05/2015 01:57:49','18,2', 'RA02');
execute insertartiradas('RA0242134,0827893519', '13', '10/05/2015 01:59:13','-15,1', 'RA02');
execute insertartiradas('RA0242134,0837847222', '19', '10/05/2015 02:00:39','17,6', 'RA02');
execute insertartiradas('RA0242134,0849305556', '10', '10/05/2015 02:02:18','-16,9', 'RA02');
execute insertartiradas('RA0242134,0858796296', '30', '10/05/2015 02:03:40','19,6', 'RA02');
execute insertartiradas('RA0242134,0869791667', '32', '10/05/2015 02:05:15','-16,2', 'RA02');
execute insertartiradas('RA0242134,0880555556', '34', '10/05/2015 02:06:48','16,9', 'RA02');
execute insertartiradas('RA0242134,0889467593', '30', '10/05/2015 02:08:05','-16,1', 'RA02');
execute insertartiradas('RA0242134,0903240741', '8', '10/05/2015 02:10:04','18,7', 'RA02');
execute insertartiradas('RA0242134,0913657407', '13', '10/05/2015 02:11:34','-11,7', 'RA02');
execute insertartiradas('RA0242134,0924074074', '2', '10/05/2015 02:13:04','24,5', 'RA02');
execute insertartiradas('RA0242134,0935300926', '25', '10/05/2015 02:14:41','-19,1', 'RA02');
execute insertartiradas('RA0242134,0946527778', '12', '10/05/2015 02:16:18','17,9', 'RA02');
execute insertartiradas('RA0242134,0954861111', '5', '10/05/2015 02:17:30','-14,2', 'RA02');
execute insertartiradas('RA0242134,0966782407', '32', '10/05/2015 02:19:13','17,8', 'RA02');
execute insertartiradas('RA0242134,0975694444', '3', '10/05/2015 02:20:30','-17,1', 'RA02');
execute insertartiradas('RA0242134,0981481482', '8', '10/05/2015 02:21:20','18,8', 'RA02');
execute insertartiradas('RA0242134,0988541667', '3', '10/05/2015 02:22:21','-19,6', 'RA02');
execute insertartiradas('RA0242134,0996180556', '22', '10/05/2015 02:23:27','18,8', 'RA02');
execute insertartiradas('RA0242134,1000810185', '21', '10/05/2015 02:24:07','-16,9', 'RA02');
execute insertartiradas('RA0242134,1006134259', '23', '10/05/2015 02:24:53','18,3', 'RA02');
execute insertartiradas('RA0242134,1013078704', '36', '10/05/2015 02:25:53','-17,6', 'RA02');
execute insertartiradas('RA0242134,1019675926', '35', '10/05/2015 02:26:50','17,8', 'RA02');
execute insertartiradas('RA0242134,1025694444', '27', '10/05/2015 02:27:42','-18,9', 'RA02');
execute insertartiradas('RA0242134,1030787037', '16', '10/05/2015 02:28:26','19,8', 'RA02');
execute insertartiradas('RA0242134,1035763889', '8', '10/05/2015 02:29:09','-18,5', 'RA02');
execute insertartiradas('RA0242134,103900463', '12', '10/05/2015 02:29:37','19,9', 'RA02');
execute insertartiradas('RA0242134,1047106481', '18', '10/05/2015 02:30:47','-17,2', 'RA02');
execute insertartiradas('RA0242134,105162037', '23', '10/05/2015 02:31:26','19', 'RA02');
execute insertartiradas('RA0242134,1058912037', '3', '10/05/2015 02:32:29','-18,5', 'RA02');
execute insertartiradas('RA0242134,1063541667', '29', '10/05/2015 02:33:09','17,4', 'RA02');
execute insertartiradas('RA0242134,1068634259', '35', '10/05/2015 02:33:53','-18', 'RA02');
execute insertartiradas('RA0242134,107349537', '7', '10/05/2015 02:34:35','18,4', 'RA02');
execute insertartiradas('RA0242134,1125347222', '21', '10/05/2015 02:42:03','-18,2', 'RA02');
execute insertartiradas('RA0242134,1154282407', '8', '10/05/2015 02:46:13','18,6', 'RA02');
execute insertartiradas('RA0242134,1182291667', '29', '10/05/2015 02:50:15','-19,5', 'RA02');
execute insertartiradas('RA0242134,1196064815', '26', '10/05/2015 02:52:14','19,4', 'RA02');
execute insertartiradas('RA0242134,1205555556', '27', '10/05/2015 02:53:36','-14,8', 'RA02');
execute insertartiradas('RA0242134,121087963', '27', '10/05/2015 02:54:22','19,1', 'RA02');
execute insertartiradas('RA0242134,1215277778', '1', '10/05/2015 02:55:00','-19,2', 'RA02');
execute insertartiradas('RA0242134,1220717593', '0', '10/05/2015 02:55:47','19,7', 'RA02');
execute insertartiradas('RA0242134,1232638889', '27', '10/05/2015 02:57:30','-18,7', 'RA02');
execute insertartiradas('RA0242134,8209375', '5', '10/05/2015 19:42:09','18,9', 'RA02');
execute insertartiradas('RA0242134,8217824074', '31', '10/05/2015 19:43:22','-14,7', 'RA02');
execute insertartiradas('RA0242134,8224768518', '24', '10/05/2015 19:44:22','17,6', 'RA02');
execute insertartiradas('RA0242134,8232986111', '22', '10/05/2015 19:45:33','-14,6', 'RA02');
execute insertartiradas('RA0242134,8241203704', '31', '10/05/2015 19:46:44','18', 'RA02');
execute insertartiradas('RA0242134,8249305556', '13', '10/05/2015 19:47:54','-13,7', 'RA02');
execute insertartiradas('RA0242134,8257638888', '13', '10/05/2015 19:49:06','16', 'RA02');
execute insertartiradas('RA0242134,8265625', '23', '10/05/2015 19:50:15','-15,3', 'RA02');
execute insertartiradas('RA0242134,8275462963', '25', '10/05/2015 19:51:40','18,1', 'RA02');
execute insertartiradas('RA0242134,8282407407', '20', '10/05/2015 19:52:40','-14,1', 'RA02');
execute insertartiradas('RA0242134,8289236111', '22', '10/05/2015 19:53:39','16,2', 'RA02');
execute insertartiradas('RA0242134,8296527778', '28', '10/05/2015 19:54:42','-16,3', 'RA02');
execute insertartiradas('RA0242134,8303819444', '10', '10/05/2015 19:55:45','21,8', 'RA02');
execute insertartiradas('RA0242134,8312152777', '33', '10/05/2015 19:56:57','-15,4', 'RA02');
execute insertartiradas('RA0242134,8319675926', '26', '10/05/2015 19:58:02','19,8', 'RA02');
execute insertartiradas('RA0242134,8325115741', '33', '10/05/2015 19:58:49','-15,8', 'RA02');
execute insertartiradas('RA0242134,8331828704', '14', '10/05/2015 19:59:47','18,5', 'RA02');
execute insertartiradas('RA0242134,8338194444', '28', '10/05/2015 20:00:42','-14,9', 'RA02');
execute insertartiradas('RA0242134,8343981481', '10', '10/05/2015 20:01:32','18,9', 'RA02');
execute insertartiradas('RA0242134,8350694444', '1', '10/05/2015 20:02:30','-13,8', 'RA02');
execute insertartiradas('RA0242134,835787037', '17', '10/05/2015 20:03:32','18,2', 'RA02');
execute insertartiradas('RA0242134,8365046296', '24', '10/05/2015 20:04:34','-16,4', 'RA02');
execute insertartiradas('RA0242134,8371875', '5', '10/05/2015 20:05:33','18,5', 'RA02');
execute insertartiradas('RA0242134,8379282407', '34', '10/05/2015 20:06:37','-15,1', 'RA02');
execute insertartiradas('RA0242134,8385532407', '0', '10/05/2015 20:07:31','15,8', 'RA02');
execute insertartiradas('RA0242134,8391435185', '32', '10/05/2015 20:08:22','-13,3', 'RA02');
execute insertartiradas('RA0242134,839525463', '17', '10/05/2015 20:08:55','17', 'RA02');
execute insertartiradas('RA0242134,8567361111', '17', '10/05/2015 20:33:42','-13,9', 'RA02');
execute insertartiradas('RA0242134,8570486111', '30', '10/05/2015 20:34:09','14,5', 'RA02');
execute insertartiradas('RA0242134,8574074074', '18', '10/05/2015 20:34:40','-14,3', 'RA02');
execute insertartiradas('RA0242134,8577314815', '2', '10/05/2015 20:35:08','17,1', 'RA02');
execute insertartiradas('RA0242134,9007407407', '24', '10/05/2015 21:37:04','-15,5', 'RA02');
execute insertartiradas('RA0242134,90125', '36', '10/05/2015 21:37:48','18,4', 'RA02');
execute insertartiradas('RA0242134,9016203704', '22', '10/05/2015 21:38:20','-15,6', 'RA02');
execute insertartiradas('RA0242134,9022569444', '33', '10/05/2015 21:39:15','17,5', 'RA02');
execute insertartiradas('RA0242134,9028472222', '12', '10/05/2015 21:40:06','-13,7', 'RA02');
execute insertartiradas('RA0242134,9035648148', '10', '10/05/2015 21:41:08','16,6', 'RA02');
execute insertartiradas('RA0242134,9041087963', '9', '10/05/2015 21:41:55','-15,1', 'RA02');
execute insertartiradas('RA0242134,9046180556', '31', '10/05/2015 21:42:39','19,8', 'RA02');
execute insertartiradas('RA0242134,905150463', '9', '10/05/2015 21:43:25','-15,9', 'RA02');
execute insertartiradas('RA0242134,9240277778', '27', '10/05/2015 22:10:36','16,3', 'RA02');
execute insertartiradas('RA0242135,0374768519', '13', '11/05/2015 00:53:58','-18,7', 'RA02');
execute insertartiradas('RA0242135,0380439815', '20', '11/05/2015 00:54:47','18,3', 'RA02');
execute insertartiradas('RA0242135,0389236111', '4', '11/05/2015 00:56:03','-19,8', 'RA02');
execute insertartiradas('RA0242135,039375', '20', '11/05/2015 00:56:42','20,7', 'RA02');
execute insertartiradas('RA0242135,040162037', '4', '11/05/2015 00:57:50','-18', 'RA02');
execute insertartiradas('RA0242135,0406365741', '14', '11/05/2015 00:58:31','21,4', 'RA02');
execute insertartiradas('RA0242135,0412152778', '4', '11/05/2015 00:59:21','-19,5', 'RA02');
execute insertartiradas('RA0242135,0419328704', '18', '11/05/2015 01:00:23','21,2', 'RA02');
execute insertartiradas('RA0242135,0424652778', '3', '11/05/2015 01:01:09','-21', 'RA02');
execute insertartiradas('RA0242135,0430787037', '15', '11/05/2015 01:02:02','20', 'RA02');
execute insertartiradas('RA0242135,0438773148', '21', '11/05/2015 01:03:11','-17,6', 'RA02');
execute insertartiradas('RA0242135,0445833333', '26', '11/05/2015 01:04:12','19,9', 'RA02');
execute insertartiradas('RA0242135,0451041667', '10', '11/05/2015 01:04:57','-17', 'RA02');
execute insertartiradas('RA0242135,0455902778', '8', '11/05/2015 01:05:39','19,2', 'RA02');
execute insertartiradas('RA0242135,0460300926', '30', '11/05/2015 01:06:17','-15,7', 'RA02');
execute insertartiradas('RA0242135,0466319444', '23', '11/05/2015 01:07:09','21,1', 'RA02');
execute insertartiradas('RA0242135,0470949074', '21', '11/05/2015 01:07:49','-20,6', 'RA02');
execute insertartiradas('RA0242135,0478009259', '26', '11/05/2015 01:08:50','19,3', 'RA02');
execute insertartiradas('RA0242135,0486458333', '16', '11/05/2015 01:10:03','-16', 'RA02');
execute insertartiradas('RA0242135,0491898148', '14', '11/05/2015 01:10:50','20,9', 'RA02');
execute insertartiradas('RA0242135,0498611111', '34', '11/05/2015 01:11:48','-20,5', 'RA02');
execute insertartiradas('RA0242135,0505092593', '25', '11/05/2015 01:12:44','19,9', 'RA02');
execute insertartiradas('RA0242135,0510185185', '0', '11/05/2015 01:13:28','-18', 'RA02');
execute insertartiradas('RA0242135,0516782407', '27', '11/05/2015 01:14:25','18,5', 'RA02');
execute insertartiradas('RA0242135,0522106482', '26', '11/05/2015 01:15:11','-19,6', 'RA02');
execute insertartiradas('RA0242135,0711342593', '12', '11/05/2015 01:42:26','14,6', 'RA02');
execute insertartiradas('RA0242135,0716782407', '30', '11/05/2015 01:43:13','-14', 'RA02');
execute insertartiradas('RA0242135,0722337963', '23', '11/05/2015 01:44:01','15,9', 'RA02');
execute insertartiradas('RA0242135,0728819444', '34', '11/05/2015 01:44:57','-20', 'RA02');
execute insertartiradas('RA0242135,0738425926', '8', '11/05/2015 01:46:20','16,6', 'RA02');
execute insertartiradas('RA0242135,0742708333', '33', '11/05/2015 01:46:57','-13,4', 'RA02');
execute insertartiradas('RA0242135,0746064815', '7', '11/05/2015 01:47:26','14,3', 'RA02');
execute insertartiradas('RA0242135,0749074074', '32', '11/05/2015 01:47:52','-13', 'RA02');
execute insertartiradas('RA0242135,0753472222', '36', '11/05/2015 01:48:30','16', 'RA02');
execute insertartiradas('RA0242135,0757638888', '24', '11/05/2015 01:49:06','-17,2', 'RA02');
execute insertartiradas('RA0242135,0762615741', '10', '11/05/2015 01:49:49','21,6', 'RA02');
execute insertartiradas('RA0242135,7660416667', '10', '11/05/2015 18:23:06','18,5', 'RA02');
execute insertartiradas('RA0242135,7664930556', '23', '11/05/2015 18:23:45','-14,4', 'RA02');
execute insertartiradas('RA0242135,7669212963', '23', '11/05/2015 18:24:22','20', 'RA02');
execute insertartiradas('RA0242135,7675115741', '35', '11/05/2015 18:25:13','-18', 'RA02');
execute insertartiradas('RA0242135,7678935185', '32', '11/05/2015 18:25:46','16,6', 'RA02');
execute insertartiradas('RA0242135,7683217593', '36', '11/05/2015 18:26:23','-15,2', 'RA02');
execute insertartiradas('RA0242135,76875', '17', '11/05/2015 18:27:00','19,9', 'RA02');
execute insertartiradas('RA0242135,7691435185', '30', '11/05/2015 18:27:34','-14,2', 'RA02');
execute insertartiradas('RA0242135,7695949074', '26', '11/05/2015 18:28:13','15,8', 'RA02');
execute insertartiradas('RA0242135,7700694444', '36', '11/05/2015 18:28:54','-14,3', 'RA02');
execute insertartiradas('RA0242135,7704398148', '30', '11/05/2015 18:29:26','12,9', 'RA02');
execute insertartiradas('RA0242135,7709953704', '18', '11/05/2015 18:30:14','-14,3', 'RA02');
execute insertartiradas('RA0242135,7715625', '13', '11/05/2015 18:31:03','19,2', 'RA02');
execute insertartiradas('RA0242135,7720717593', '7', '11/05/2015 18:31:47','-19,1', 'RA02');
execute insertartiradas('RA0242135,7766087963', '36', '11/05/2015 18:38:19','15,7', 'RA02');
execute insertartiradas('RA0242135,7773842593', '11', '11/05/2015 18:39:26','-14,5', 'RA02');
execute insertartiradas('RA0242135,777974537', '15', '11/05/2015 18:40:17','16,3', 'RA02');
execute insertartiradas('RA0242135,7788541667', '21', '11/05/2015 18:41:33','-17,3', 'RA02');
execute insertartiradas('RA0242135,7796759259', '18', '11/05/2015 18:42:44','20,2', 'RA02');
execute insertartiradas('RA0242135,7806365741', '18', '11/05/2015 18:44:07','-19,2', 'RA02');
execute insertartiradas('RA0242135,7814814815', '29', '11/05/2015 18:45:20','17,9', 'RA02');
execute insertartiradas('RA0242135,7824537037', '9', '11/05/2015 18:46:44','-16,2', 'RA02');
execute insertartiradas('RA0242135,7831712963', '7', '11/05/2015 18:47:46','18', 'RA02');
execute insertartiradas('RA0242135,7839699074', '6', '11/05/2015 18:48:55','-16,3', 'RA02');
execute insertartiradas('RA0242135,7847106481', '24', '11/05/2015 18:49:59','19,6', 'RA02');
execute insertartiradas('RA0242135,7856597222', '20', '11/05/2015 18:51:21','-16,8', 'RA02');
execute insertartiradas('RA0242135,7865393519', '12', '11/05/2015 18:52:37','20,4', 'RA02');
execute insertartiradas('RA0242135,787650463', '6', '11/05/2015 18:54:13','-17,1', 'RA02');
execute insertartiradas('RA0242135,7885532407', '8', '11/05/2015 18:55:31','19,2', 'RA02');
execute insertartiradas('RA0242135,7894444444', '15', '11/05/2015 18:56:48','-16,2', 'RA02');
execute insertartiradas('RA0242135,7904861111', '33', '11/05/2015 18:58:18','18,6', 'RA02');
execute insertartiradas('RA0242135,7915393518', '27', '11/05/2015 18:59:49','-16,7', 'RA02');
execute insertartiradas('RA0242135,7927893518', '24', '11/05/2015 19:01:37','19,2', 'RA02');
execute insertartiradas('RA0242135,793900463', '24', '11/05/2015 19:03:13','-16,4', 'RA02');
execute insertartiradas('RA0242135,7950231481', '35', '11/05/2015 19:04:50','20,5', 'RA02');
execute insertartiradas('RA0242135,7964236111', '16', '11/05/2015 19:06:51','-17', 'RA02');
execute insertartiradas('RA0242135,7976967593', '14', '11/05/2015 19:08:41','20', 'RA02');
execute insertartiradas('RA0242135,7990509259', '15', '11/05/2015 19:10:38','-18,5', 'RA02');
execute insertartiradas('RA0242135,8002893518', '21', '11/05/2015 19:12:25','17,7', 'RA02');
execute insertartiradas('RA0242135,8071412037', '13', '11/05/2015 19:22:17','-18', 'RA02');
execute insertartiradas('RA0242135,8082986111', '5', '11/05/2015 19:23:57','17,5', 'RA02');
execute insertartiradas('RA0242135,8189236111', '24', '11/05/2015 19:39:15','-15,1', 'RA02');
execute insertartiradas('RA0242135,8196875', '4', '11/05/2015 19:40:21','17,3', 'RA02');
execute insertartiradas('RA0242135,8210300926', '25', '11/05/2015 19:42:17','-18,6', 'RA02');
execute insertartiradas('RA0242135,8220023148', '14', '11/05/2015 19:43:41','17,4', 'RA02');
execute insertartiradas('RA0242135,8242824074', '21', '11/05/2015 19:46:58','-15,8', 'RA02');
execute insertartiradas('RA0242135,8252199074', '25', '11/05/2015 19:48:19','15,8', 'RA02');
execute insertartiradas('RA0242135,8257986111', '13', '11/05/2015 19:49:09','-13,5', 'RA02');
execute insertartiradas('RA0242135,8269328704', '28', '11/05/2015 19:50:47','12,3', 'RA02');
execute insertartiradas('RA0242135,8287731481', '14', '11/05/2015 19:53:26','-17,1', 'RA02');
execute insertartiradas('RA0242135,8299537037', '5', '11/05/2015 19:55:08','15,9', 'RA02');
execute insertartiradas('RA0242135,8313194444', '14', '11/05/2015 19:57:06','-13,3', 'RA02');
execute insertartiradas('RA0242135,8321643519', '9', '11/05/2015 19:58:19','19,1', 'RA02');
execute insertartiradas('RA0242135,8331828704', '25', '11/05/2015 19:59:47','-13,5', 'RA02');
execute insertartiradas('RA0242135,8341319444', '27', '11/05/2015 20:01:09','16', 'RA02');
execute insertartiradas('RA0242135,8350810185', '35', '11/05/2015 20:02:31','-17,4', 'RA02');
execute insertartiradas('RA0242135,9493171296', '27', '11/05/2015 22:47:01','16,9', 'RA02');
execute insertartiradas('RA0242135,9503240741', '27', '11/05/2015 22:48:28','-15,3', 'RA02');
execute insertartiradas('RA0242135,9514699074', '10', '11/05/2015 22:50:07','18,5', 'RA02');
execute insertartiradas('RA0242135,9528472222', '34', '11/05/2015 22:52:06','-18,1', 'RA02');
execute insertartiradas('RA0242135,9540972222', '3', '11/05/2015 22:53:54','19,9', 'RA02');
execute insertartiradas('RA0242135,9550694444', '13', '11/05/2015 22:55:18','-19', 'RA02');
execute insertartiradas('RA0242135,9562962963', '19', '11/05/2015 22:57:04','15,6', 'RA02');
execute insertartiradas('RA0242135,9572685185', '17', '11/05/2015 22:58:28','-20', 'RA02');
execute insertartiradas('RA0242135,9581828704', '12', '11/05/2015 22:59:47','18,2', 'RA02');
execute insertartiradas('RA0242135,9594097222', '34', '11/05/2015 23:01:33','-18,2', 'RA02');
execute insertartiradas('RA0242135,9605787037', '31', '11/05/2015 23:03:14','20,6', 'RA02');
execute insertartiradas('RA0242135,9617708333', '22', '11/05/2015 23:04:57','-18,6', 'RA02');
execute insertartiradas('RA0242135,9627546296', '26', '11/05/2015 23:06:22','18,4', 'RA02');
execute insertartiradas('RA0242135,9636574074', '35', '11/05/2015 23:07:40','-16,1', 'RA02');
execute insertartiradas('RA0242135,9647685185', '31', '11/05/2015 23:09:16','19,2', 'RA02');
execute insertartiradas('RA0242135,9660532407', '31', '11/05/2015 23:11:07','-17,4', 'RA02');
execute insertartiradas('RA0242135,9671875', '15', '11/05/2015 23:12:45','20,2', 'RA02');
execute insertartiradas('RA0242135,9683217593', '21', '11/05/2015 23:14:23','-16,9', 'RA02');
execute insertartiradas('RA0242135,9697453704', '29', '11/05/2015 23:16:26','19,6', 'RA02');
execute insertartiradas('RA0242135,9710069444', '24', '11/05/2015 23:18:15','-18,5', 'RA02');
execute insertartiradas('RA0242135,9716319444', '3', '11/05/2015 23:19:09','18,3', 'RA02');
execute insertartiradas('RA0242135,9724189815', '20', '11/05/2015 23:20:17','-16,9', 'RA02');
execute insertartiradas('RA0242135,9731828704', '26', '11/05/2015 23:21:23','20,3', 'RA02');
execute insertartiradas('RA0242135,9740856482', '2', '11/05/2015 23:22:41','-16', 'RA02');
execute insertartiradas('RA0242135,9750810185', '12', '11/05/2015 23:24:07','18,1', 'RA02');
execute insertartiradas('RA0242135,9762268519', '16', '11/05/2015 23:25:46','-17,3', 'RA02');
execute insertartiradas('RA0242135,9769907407', '4', '11/05/2015 23:26:52','19,9', 'RA02');
execute insertartiradas('RA0242135,977662037', '24', '11/05/2015 23:27:50','-16,3', 'RA02');
execute insertartiradas('RA0242135,9782407407', '22', '11/05/2015 23:28:40','20,9', 'RA02');
execute insertartiradas('RA0242135,9787962963', '33', '11/05/2015 23:29:28','-19,5', 'RA02');
execute insertartiradas('RA0242135,979375', '6', '11/05/2015 23:30:18','20,8', 'RA02');
execute insertartiradas('RA0242135,979849537', '4', '11/05/2015 23:30:59','-17,9', 'RA02');
execute insertartiradas('RA0242135,9803587963', '16', '11/05/2015 23:31:43','21,8', 'RA02');
execute insertartiradas('RA0242135,9810648148', '10', '11/05/2015 23:32:44','-15,6', 'RA02');
execute insertartiradas('RA0242135,9815277778', '10', '11/05/2015 23:33:24','20,7', 'RA02');
execute insertartiradas('RA0242135,9819907407', '16', '11/05/2015 23:34:04','-17,6', 'RA02');
execute insertartiradas('RA0242135,9824189815', '25', '11/05/2015 23:34:41','21,5', 'RA02');
execute insertartiradas('RA0242135,9828703704', '36', '11/05/2015 23:35:20','-16,8', 'RA02');
execute insertartiradas('RA0242135,9833333333', '4', '11/05/2015 23:36:00','20,1', 'RA02');
execute insertartiradas('RA0242135,9837731481', '36', '11/05/2015 23:36:38','-15,3', 'RA02');
execute insertartiradas('RA0242135,9847222222', '7', '11/05/2015 23:38:00','20,5', 'RA02');
execute insertartiradas('RA0242135,9858449074', '34', '11/05/2015 23:39:37','-21,4', 'RA02');
execute insertartiradas('RA0242135,9868171296', '21', '11/05/2015 23:41:01','18,8', 'RA02');
execute insertartiradas('RA0242135,9878356481', '17', '11/05/2015 23:42:29','-15,6', 'RA02');
execute insertartiradas('RA0242136,0019444444', '33', '12/05/2015 00:02:48','-21,4', 'RA02');
execute insertartiradas('RA0242136,0031134259', '4', '12/05/2015 00:04:29','20,4', 'RA02');
execute insertartiradas('RA0242136,0043865741', '12', '12/05/2015 00:06:19','-20', 'RA02');
execute insertartiradas('RA0242136,0054050926', '27', '12/05/2015 00:07:47','19,2', 'RA02');
execute insertartiradas('RA0242136,0063541667', '27', '12/05/2015 00:09:09','-16,9', 'RA02');
execute insertartiradas('RA0242136,0075578704', '6', '12/05/2015 00:10:53','19,9', 'RA02');
execute insertartiradas('RA0242136,008912037', '7', '12/05/2015 00:12:50','-21,2', 'RA02');
execute insertartiradas('RA0242136,0102430556', '9', '12/05/2015 00:14:45','19,9', 'RA02');
execute insertartiradas('RA0242136,0113425926', '0', '12/05/2015 00:16:20','-19,7', 'RA02');
execute insertartiradas('RA0242136,0125810185', '3', '12/05/2015 00:18:07','21,2', 'RA02');
execute insertartiradas('RA0242136,0136458333', '23', '12/05/2015 00:19:39','-19,1', 'RA02');
execute insertartiradas('RA0242136,015324074', '16', '12/05/2015 00:22:04','20,3', 'RA02');
execute insertartiradas('RA0242136,0161574074', '12', '12/05/2015 00:23:16','-21,3', 'RA02');
execute insertartiradas('RA0242136,0169212963', '33', '12/05/2015 00:24:22','19,4', 'RA02');
execute insertartiradas('RA0242136,0177777778', '7', '12/05/2015 00:25:36','-18,2', 'RA02');
execute insertartiradas('RA0242136,0182638889', '7', '12/05/2015 00:26:18','18,3', 'RA02');
execute insertartiradas('RA0242136,0190393518', '0', '12/05/2015 00:27:25','-17,1', 'RA02');
execute insertartiradas('RA0242136,0198842593', '6', '12/05/2015 00:28:38','19,4', 'RA02');
execute insertartiradas('RA0242136,0205092593', '3', '12/05/2015 00:29:32','-19,6', 'RA02');
execute insertartiradas('RA0242136,0212152778', '33', '12/05/2015 00:30:33','19,5', 'RA02');
execute insertartiradas('RA0242136,0221990741', '7', '12/05/2015 00:31:58','-20,3', 'RA02');
execute insertartiradas('RA0242136,0229861111', '18', '12/05/2015 00:33:06','20,7', 'RA02');
execute insertartiradas('RA0242136,0242013889', '3', '12/05/2015 00:34:51','-18,6', 'RA02');
execute insertartiradas('RA0242136,0252314815', '25', '12/05/2015 00:36:20','20,3', 'RA02');
execute insertartiradas('RA0242136,0262962963', '16', '12/05/2015 00:37:52','-18,5', 'RA02');
execute insertartiradas('RA0242136,0272685185', '15', '12/05/2015 00:39:16','19', 'RA02');
execute insertartiradas('RA0242136,0280208333', '20', '12/05/2015 00:40:21','-19,2', 'RA02');
execute insertartiradas('RA0242136,0286689815', '13', '12/05/2015 00:41:17','18,2', 'RA02');
execute insertartiradas('RA0242136,0556712963', '29', '12/05/2015 01:20:10','-19,9', 'RA02');
execute insertartiradas('RA0242136,0561689815', '1', '12/05/2015 01:20:53','19,8', 'RA02');
execute insertartiradas('RA0242136,0566782407', '12', '12/05/2015 01:21:37','-18', 'RA02');
execute insertartiradas('RA0242136,0571412037', '15', '12/05/2015 01:22:17','19,1', 'RA02');
execute insertartiradas('RA0242136,057662037', '16', '12/05/2015 01:23:02','-17,2', 'RA02');
execute insertartiradas('RA0242136,0581712963', '12', '12/05/2015 01:23:46','23,1', 'RA02');
execute insertartiradas('RA0242136,0585648148', '12', '12/05/2015 01:24:20','-17,8', 'RA02');
execute insertartiradas('RA0242136,0590046296', '26', '12/05/2015 01:24:58','17,3', 'RA02');
execute insertartiradas('RA0242136,0600694444', '23', '12/05/2015 01:26:30','-18,7', 'RA02');
execute insertartiradas('RA0242136,060775463', '1', '12/05/2015 01:27:31','19', 'RA02');
execute insertartiradas('RA0242136,0613310185', '19', '12/05/2015 01:28:19','-17,5', 'RA02');
execute insertartiradas('RA0242136,0621412037', '31', '12/05/2015 01:29:29','20,4', 'RA02');
execute insertartiradas('RA0242136,0628935185', '22', '12/05/2015 01:30:34','-18,4', 'RA02');
execute insertartiradas('RA0242136,0634490741', '13', '12/05/2015 01:31:22','19,7', 'RA02');
execute insertartiradas('RA0242136,0642592593', '27', '12/05/2015 01:32:32','-19,3', 'RA02');
execute insertartiradas('RA0242136,065150463', '3', '12/05/2015 01:33:49','19,6', 'RA02');
execute insertartiradas('RA0242136,0659259259', '29', '12/05/2015 01:34:56','-18,6', 'RA02');
execute insertartiradas('RA0242136,0665856482', '34', '12/05/2015 01:35:53','20,2', 'RA02');
execute insertartiradas('RA0242136,0671875', '29', '12/05/2015 01:36:45','-18,3', 'RA02');
execute insertartiradas('RA0242136,067974537', '33', '12/05/2015 01:37:53','23,1', 'RA02');
execute insertartiradas('RA0242136,0686111111', '6', '12/05/2015 01:38:48','-18,6', 'RA02');
execute insertartiradas('RA0242136,0690046296', '26', '12/05/2015 01:39:22','22,7', 'RA02');
execute insertartiradas('RA0242136,0698032407', '18', '12/05/2015 01:40:31','-18', 'RA02');
execute insertartiradas('RA0242136,8357986111', '25', '12/05/2015 20:03:33','11', 'RA02');
execute insertartiradas('RA0242136,8371875', '7', '12/05/2015 20:05:33','-11,9', 'RA02');
execute insertartiradas('RA0242136,8384490741', '15', '12/05/2015 20:07:22','10,3', 'RA02');
execute insertartiradas('RA0242136,8403819444', '21', '12/05/2015 20:10:09','-10,6', 'RA02');
execute insertartiradas('RA0242136,8417361111', '21', '12/05/2015 20:12:06','12,1', 'RA02');
execute insertartiradas('RA0242136,8429976852', '15', '12/05/2015 20:13:55','-8,4', 'RA02');
execute insertartiradas('RA0242136,8444097222', '15', '12/05/2015 20:15:57','9,1', 'RA02');
execute insertartiradas('RA0242136,8464930556', '25', '12/05/2015 20:18:57','-9,7', 'RA02');
execute insertartiradas('RA0242136,8483680556', '27', '12/05/2015 20:21:39','18,5', 'RA02');
execute insertartiradas('RA0242136,849212963', '24', '12/05/2015 20:22:52','-17,5', 'RA02');
execute insertartiradas('RA0242136,8503703704', '31', '12/05/2015 20:24:32','19,8', 'RA02');
execute insertartiradas('RA0242136,8517939815', '32', '12/05/2015 20:26:35','-18,7', 'RA02');
execute insertartiradas('RA0242136,8531944444', '29', '12/05/2015 20:28:36','20,5', 'RA02');
execute insertartiradas('RA0242136,8553587963', '10', '12/05/2015 20:31:43','-17,3', 'RA02');
execute insertartiradas('RA0242136,8567824074', '4', '12/05/2015 20:33:46','20,1', 'RA02');
execute insertartiradas('RA0242136,8578472222', '13', '12/05/2015 20:35:18','-18,5', 'RA02');
execute insertartiradas('RA0242136,8589583333', '14', '12/05/2015 20:36:54','21,7', 'RA02');
execute insertartiradas('RA0242136,8597800926', '9', '12/05/2015 20:38:05','-18,9', 'RA02');
execute insertartiradas('RA0242136,8608796296', '13', '12/05/2015 20:39:40','21', 'RA02');
execute insertartiradas('RA0242136,8617939815', '14', '12/05/2015 20:40:59','-18,4', 'RA02');
execute insertartiradas('RA0242136,862962963', '28', '12/05/2015 20:42:40','19,6', 'RA02');
execute insertartiradas('RA0242136,8640625', '29', '12/05/2015 20:44:15','-19,4', 'RA02');
execute insertartiradas('RA0242136,8652430556', '1', '12/05/2015 20:45:57','24,5', 'RA02');
execute insertartiradas('RA0242136,8656944444', '5', '12/05/2015 20:46:36','-21,4', 'RA02');
execute insertartiradas('RA0242136,866724537', '11', '12/05/2015 20:48:05','22,4', 'RA02');
execute insertartiradas('RA0242136,8681597222', '17', '12/05/2015 20:50:09','-20,8', 'RA02');
execute insertartiradas('RA0242136,8693402778', '10', '12/05/2015 20:51:51','22,3', 'RA02');
execute insertartiradas('RA0242136,8710648148', '6', '12/05/2015 20:54:20','-18,9', 'RA02');
execute insertartiradas('RA0242136,8722800926', '36', '12/05/2015 20:56:05','20,2', 'RA02');
execute insertartiradas('RA0242136,8742592593', '3', '12/05/2015 20:58:56','-15,9', 'RA02');
execute insertartiradas('RA0242136,8752893519', '19', '12/05/2015 21:00:25','19,1', 'RA02');
execute insertartiradas('RA0242136,8764930556', '5', '12/05/2015 21:02:09','-21,4', 'RA02');
execute insertartiradas('RA0242136,8776273148', '12', '12/05/2015 21:03:47','19,8', 'RA02');
execute insertartiradas('RA0242136,8788194444', '12', '12/05/2015 21:05:30','-18,4', 'RA02');
execute insertartiradas('RA0242136,8799421296', '10', '12/05/2015 21:07:07','11,2', 'RA02');
execute insertartiradas('RA0242136,881099537', '1', '12/05/2015 21:08:47','-14,8', 'RA02');
execute insertartiradas('RA0242136,8818055556', '32', '12/05/2015 21:09:48','13', 'RA02');
execute insertartiradas('RA0242136,8826041667', '17', '12/05/2015 21:10:57','-15', 'RA02');
execute insertartiradas('RA0242136,8833796296', '31', '12/05/2015 21:12:04','16,4', 'RA02');
execute insertartiradas('RA0242136,8843402778', '28', '12/05/2015 21:13:27','-11,6', 'RA02');
execute insertartiradas('RA0242136,8852662037', '33', '12/05/2015 21:14:47','19,6', 'RA02');
execute insertartiradas('RA0242136,8860532407', '21', '12/05/2015 21:15:55','-12,3', 'RA02');
execute insertartiradas('RA0242136,886712963', '4', '12/05/2015 21:16:52','18,6', 'RA02');
execute insertartiradas('RA0242136,8872337962', '27', '12/05/2015 21:17:37','-14,9', 'RA02');
execute insertartiradas('RA0242136,8923148148', '29', '12/05/2015 21:24:56','18,7', 'RA02');
execute insertartiradas('RA0242136,8928472222', '14', '12/05/2015 21:25:42','-16,3', 'RA02');
execute insertartiradas('RA0242136,893599537', '8', '12/05/2015 21:26:47','18,8', 'RA02');
execute insertartiradas('RA0242136,8940509259', '8', '12/05/2015 21:27:26','-15', 'RA02');
execute insertartiradas('RA0242136,8946990741', '17', '12/05/2015 21:28:22','17,6', 'RA02');
execute insertartiradas('RA0242136,8953472222', '4', '12/05/2015 21:29:18','-14,4', 'RA02');
execute insertartiradas('RA0242136,8959259259', '7', '12/05/2015 21:30:08','15,4', 'RA02');
execute insertartiradas('RA0242136,8965972222', '23', '12/05/2015 21:31:06','-13', 'RA02');
execute insertartiradas('RA0242136,8970949074', '2', '12/05/2015 21:31:49','17,4', 'RA02');
execute insertartiradas('RA0242136,8976273148', '21', '12/05/2015 21:32:35','-13,9', 'RA02');
execute insertartiradas('RA0242136,8982291667', '5', '12/05/2015 21:33:27','15,9', 'RA02');
execute insertartiradas('RA0242136,8988078704', '9', '12/05/2015 21:34:17','-16,3', 'RA02');
execute insertartiradas('RA0242136,8994328704', '20', '12/05/2015 21:35:11','18,3', 'RA02');
execute insertartiradas('RA0242136,9000578704', '2', '12/05/2015 21:36:05','-15,8', 'RA02');
execute insertartiradas('RA0242136,9005902778', '26', '12/05/2015 21:36:51','18,1', 'RA02');
execute insertartiradas('RA0242136,9011111111', '2', '12/05/2015 21:37:36','-17,3', 'RA02');
execute insertartiradas('RA0242136,9015625', '8', '12/05/2015 21:38:15','16,7', 'RA02');
execute insertartiradas('RA0242136,9020023148', '23', '12/05/2015 21:38:53','-16,8', 'RA02');
execute insertartiradas('RA0242136,9029398148', '33', '12/05/2015 21:40:14','18,3', 'RA02');
execute insertartiradas('RA0242136,9036226852', '6', '12/05/2015 21:41:13','-15,4', 'RA02');
execute insertartiradas('RA0242136,9040972222', '31', '12/05/2015 21:41:54','18,3', 'RA02');
execute insertartiradas('RA0242136,9050347222', '34', '12/05/2015 21:43:15','-16', 'RA02');
execute insertartiradas('RA0242136,9055324074', '19', '12/05/2015 21:43:58','19,3', 'RA02');
execute insertartiradas('RA0242136,9062962963', '10', '12/05/2015 21:45:04','-16', 'RA02');
execute insertartiradas('RA0242136,9071064815', '8', '12/05/2015 21:46:14','19,8', 'RA02');
execute insertartiradas('RA0242136,9080324074', '9', '12/05/2015 21:47:34','-15,4', 'RA02');
execute insertartiradas('RA0242136,9086921296', '10', '12/05/2015 21:48:31','18,2', 'RA02');
execute insertartiradas('RA0242136,9095023148', '7', '12/05/2015 21:49:41','-17,5', 'RA02');
execute insertartiradas('RA0242136,9102314815', '36', '12/05/2015 21:50:44','17,1', 'RA02');
execute insertartiradas('RA0242136,9109722222', '1', '12/05/2015 21:51:48','-15,2', 'RA02');
execute insertartiradas('RA0242136,9116203704', '5', '12/05/2015 21:52:44','18,6', 'RA02');
execute insertartiradas('RA0242136,9124421296', '24', '12/05/2015 21:53:55','-16,8', 'RA02');
execute insertartiradas('RA0242136,9130208333', '23', '12/05/2015 21:54:45','18,7', 'RA02');
execute insertartiradas('RA0242136,9137847222', '3', '12/05/2015 21:55:51','-15,2', 'RA02');
execute insertartiradas('RA0242136,9144907407', '32', '12/05/2015 21:56:52','18,5', 'RA02');
execute insertartiradas('RA0242136,9153587963', '17', '12/05/2015 21:58:07','-15', 'RA02');
execute insertartiradas('RA0242136,9159375', '0', '12/05/2015 21:58:57','17,7', 'RA02');
execute insertartiradas('RA0242136,9166550926', '13', '12/05/2015 21:59:59','-15,4', 'RA02');
execute insertartiradas('RA0242136,9173726852', '19', '12/05/2015 22:01:01','19,5', 'RA02');
execute insertartiradas('RA0242136,9180902778', '12', '12/05/2015 22:02:03','-15,3', 'RA02');
execute insertartiradas('RA0242136,9189351852', '36', '12/05/2015 22:03:16','19,7', 'RA02');
execute insertartiradas('RA0242136,9196759259', '23', '12/05/2015 22:04:20','-14,9', 'RA02');
execute insertartiradas('RA0242136,9203819444', '28', '12/05/2015 22:05:21','18,2', 'RA02');
execute insertartiradas('RA0242136,9210763889', '21', '12/05/2015 22:06:21','-15,3', 'RA02');
execute insertartiradas('RA0242136,9218055556', '9', '12/05/2015 22:07:24','17,6', 'RA02');
execute insertartiradas('RA0242136,9224305556', '21', '12/05/2015 22:08:18','-17,3', 'RA02');
execute insertartiradas('RA0242136,9230555556', '27', '12/05/2015 22:09:12','19,6', 'RA02');
execute insertartiradas('RA0242136,9235069444', '31', '12/05/2015 22:09:51','-16,8', 'RA02');
execute insertartiradas('RA0242136,9239351851', '17', '12/05/2015 22:10:28','19,2', 'RA02');
execute insertartiradas('RA0242136,9245023148', '24', '12/05/2015 22:11:17','-15,6', 'RA02');
execute insertartiradas('RA0242136,9249305556', '34', '12/05/2015 22:11:54','19,4', 'RA02');
execute insertartiradas('RA0242136,9256712963', '27', '12/05/2015 22:12:58','-17', 'RA02');
execute insertartiradas('RA0242136,9263078704', '14', '12/05/2015 22:13:53','18,6', 'RA02');
execute insertartiradas('RA0242136,9268634259', '30', '12/05/2015 22:14:41','-14,7', 'RA02');
execute insertartiradas('RA0242136,9272800926', '8', '12/05/2015 22:15:17','19', 'RA02');
execute insertartiradas('RA0242136,9280208333', '5', '12/05/2015 22:16:21','-16,5', 'RA02');
execute insertartiradas('RA0242136,9288078704', '8', '12/05/2015 22:17:29','21,1', 'RA02');
execute insertartiradas('RA0242136,929386574', '18', '12/05/2015 22:18:19','-16', 'RA02');
execute insertartiradas('RA0242136,9299884259', '9', '12/05/2015 22:19:11','17,8', 'RA02');
execute insertartiradas('RA0242136,9306828704', '30', '12/05/2015 22:20:11','-14,8', 'RA02');
execute insertartiradas('RA0242136,9314699074', '8', '12/05/2015 22:21:19','21,9', 'RA02');
execute insertartiradas('RA0242136,9322337963', '26', '12/05/2015 22:22:25','-17', 'RA02');
execute insertartiradas('RA0242136,9328819444', '22', '12/05/2015 22:23:21','15,1', 'RA02');
execute insertartiradas('RA0242136,9335185185', '3', '12/05/2015 22:24:16','-17,9', 'RA02');
execute insertartiradas('RA0242136,9340740741', '2', '12/05/2015 22:25:04','14,3', 'RA02');
execute insertartiradas('RA0242136,9349074074', '17', '12/05/2015 22:26:16','-21,3', 'RA02');
execute insertartiradas('RA0242136,9354976852', '3', '12/05/2015 22:27:07','15,3', 'RA02');
execute insertartiradas('RA0242136,9361111111', '32', '12/05/2015 22:28:00','-11,6', 'RA02');
execute insertartiradas('RA0242136,936724537', '7', '12/05/2015 22:28:53','17,9', 'RA02');
execute insertartiradas('RA0242136,9372916667', '33', '12/05/2015 22:29:42','-12,8', 'RA02');
execute insertartiradas('RA0242136,9378356481', '35', '12/05/2015 22:30:29','17,8', 'RA02');
execute insertartiradas('RA0242136,9384027778', '29', '12/05/2015 22:31:18','-13,5', 'RA02');
execute insertartiradas('RA0242136,9390393519', '32', '12/05/2015 22:32:13','15,9', 'RA02');
execute insertartiradas('RA0242136,9398263889', '28', '12/05/2015 22:33:21','-15,2', 'RA02');
execute insertartiradas('RA0242136,9404513889', '17', '12/05/2015 22:34:15','23,4', 'RA02');
execute insertartiradas('RA0242136,9411805556', '9', '12/05/2015 22:35:18','-13,4', 'RA02');
execute insertartiradas('RA0242136,9416435185', '25', '12/05/2015 22:35:58','15,9', 'RA02');
execute insertartiradas('RA0242136,9421412037', '5', '12/05/2015 22:36:41','-16,2', 'RA02');
execute insertartiradas('RA0242136,9428472222', '35', '12/05/2015 22:37:42','16,8', 'RA02');
execute insertartiradas('RA0242136,9434837963', '17', '12/05/2015 22:38:37','-15,2', 'RA02');
execute insertartiradas('RA0242136,9443171296', '7', '12/05/2015 22:39:49','15,9', 'RA02');
execute insertartiradas('RA0242136,9448263889', '10', '12/05/2015 22:40:33','-16,9', 'RA02');
execute insertartiradas('RA0242136,9456828704', '7', '12/05/2015 22:41:47','15,8', 'RA02');
execute insertartiradas('RA0242136,9463773148', '36', '12/05/2015 22:42:47','-14,7', 'RA02');
execute insertartiradas('RA0242136,9470023148', '23', '12/05/2015 22:43:41','18,5', 'RA02');
execute insertartiradas('RA0242136,9478125', '24', '12/05/2015 22:44:51','-15,7', 'RA02');
execute insertartiradas('RA0242136,9483912037', '26', '12/05/2015 22:45:41','20,1', 'RA02');
execute insertartiradas('RA0242136,9488310185', '35', '12/05/2015 22:46:19','-15,2', 'RA02');
execute insertartiradas('RA0242136,9492361111', '2', '12/05/2015 22:46:54','17,8', 'RA02');
execute insertartiradas('RA0242136,9495833333', '8', '12/05/2015 22:47:24','-14,4', 'RA02');
execute insertartiradas('RA0242136,9499768519', '12', '12/05/2015 22:47:58','18,4', 'RA02');
execute insertartiradas('RA0242136,9502893519', '19', '12/05/2015 22:48:25','-16,3', 'RA02');
execute insertartiradas('RA0242136,9507060185', '16', '12/05/2015 22:49:01','17,6', 'RA02');
execute insertartiradas('RA0242136,9512152778', '11', '12/05/2015 22:49:45','-18,5', 'RA02');
execute insertartiradas('RA0242136,9515046296', '1', '12/05/2015 22:50:10','19,5', 'RA02');
execute insertartiradas('RA0242136,9521527778', '28', '12/05/2015 22:51:06','-17,9', 'RA02');
execute insertartiradas('RA0242136,9525578704', '26', '12/05/2015 22:51:41','18,7', 'RA02');
execute insertartiradas('RA0242136,953287037', '15', '12/05/2015 22:52:44','-19', 'RA02');
execute insertartiradas('RA0242136,9539583333', '1', '12/05/2015 22:53:42','20,8', 'RA02');
execute insertartiradas('RA0242136,9545601852', '22', '12/05/2015 22:54:34','-16,1', 'RA02');
execute insertartiradas('RA0242136,9550115741', '25', '12/05/2015 22:55:13','20,4', 'RA02');
execute insertartiradas('RA0242136,9556712963', '14', '12/05/2015 22:56:10','-15,7', 'RA02');
execute insertartiradas('RA0242136,9561111111', '19', '12/05/2015 22:56:48','17,3', 'RA02');
execute insertartiradas('RA0242136,9568055556', '0', '12/05/2015 22:57:48','-15,8', 'RA02');
execute insertartiradas('RA0242136,9577777778', '36', '12/05/2015 22:59:12','23', 'RA02');
execute insertartiradas('RA0242136,9582291667', '31', '12/05/2015 22:59:51','-16,2', 'RA02');
execute insertartiradas('RA0242136,958599537', '0', '12/05/2015 23:00:23','16,3', 'RA02');
execute insertartiradas('RA0242136,9591782407', '13', '12/05/2015 23:01:13','-18,1', 'RA02');
execute insertartiradas('RA0242136,9603356481', '29', '12/05/2015 23:02:53','21', 'RA02');
execute insertartiradas('RA0242136,961087963', '31', '12/05/2015 23:03:58','-10,9', 'RA02');
execute insertartiradas('RA0242136,9615509259', '32', '12/05/2015 23:04:38','10,5', 'RA02');
execute insertartiradas('RA0242136,9622916667', '18', '12/05/2015 23:05:42','-9,6', 'RA02');
execute insertartiradas('RA0242136,9628125', '33', '12/05/2015 23:06:27','11,8', 'RA02');
execute insertartiradas('RA0242136,9634259259', '2', '12/05/2015 23:07:20','-10,6', 'RA02');
execute insertartiradas('RA0242136,9638773148', '11', '12/05/2015 23:07:59','11,8', 'RA02');
execute insertartiradas('RA0242136,9644560185', '4', '12/05/2015 23:08:49','-9,5', 'RA02');
execute insertartiradas('RA0242136,9649768519', '14', '12/05/2015 23:09:34','11,5', 'RA02');
execute insertartiradas('RA0242136,9655671296', '36', '12/05/2015 23:10:25','-9,9', 'RA02');
execute insertartiradas('RA0242136,9661111111', '13', '12/05/2015 23:11:12','9,6', 'RA02');
execute insertartiradas('RA0242136,966724537', '31', '12/05/2015 23:12:05','-9,6', 'RA02');
execute insertartiradas('RA0242136,9671412037', '14', '12/05/2015 23:12:41','11,2', 'RA02');
execute insertartiradas('RA0242136,9683449074', '34', '12/05/2015 23:14:25','-9,3', 'RA02');
execute insertartiradas('RA0242136,9690856481', '33', '12/05/2015 23:15:29','11', 'RA02');
execute insertartiradas('RA0242136,9697569444', '34', '12/05/2015 23:16:27','-9,3', 'RA02');
execute insertartiradas('RA0242136,9701736111', '10', '12/05/2015 23:17:03','10,2', 'RA02');
execute insertartiradas('RA0242136,9706597222', '6', '12/05/2015 23:17:45','-9', 'RA02');
execute insertartiradas('RA0242136,9710648148', '31', '12/05/2015 23:18:20','10,2', 'RA02');
execute insertartiradas('RA0242136,9717824074', '18', '12/05/2015 23:19:22','-8,2', 'RA02');
execute insertartiradas('RA0242136,9724537037', '10', '12/05/2015 23:20:20','12', 'RA02');
execute insertartiradas('RA0242136,9729398148', '5', '12/05/2015 23:21:02','-9,6', 'RA02');
execute insertartiradas('RA0242136,9736226852', '13', '12/05/2015 23:22:01','11,4', 'RA02');
execute insertartiradas('RA0242136,9742939815', '24', '12/05/2015 23:22:59','-20', 'RA02');
execute insertartiradas('RA0242136,9748958333', '7', '12/05/2015 23:23:51','19,9', 'RA02');
execute insertartiradas('RA0242136,975775463', '36', '12/05/2015 23:25:07','-16,2', 'RA02');
execute insertartiradas('RA0242136,9764351852', '32', '12/05/2015 23:26:04','20,5', 'RA02');
execute insertartiradas('RA0242136,9769560185', '26', '12/05/2015 23:26:49','-18,9', 'RA02');
execute insertartiradas('RA0242136,9773263889', '0', '12/05/2015 23:27:21','22,2', 'RA02');
execute insertartiradas('RA0242136,9776967593', '10', '12/05/2015 23:27:53','-16,9', 'RA02');
execute insertartiradas('RA0242136,9779861111', '11', '12/05/2015 23:28:18','14,8', 'RA02');
execute insertartiradas('RA0242136,9783449074', '19', '12/05/2015 23:28:49','-17,3', 'RA02');
execute insertartiradas('RA0242136,9787962963', '30', '12/05/2015 23:29:28','16,9', 'RA02');
execute insertartiradas('RA0242136,9791898148', '26', '12/05/2015 23:30:02','-18,8', 'RA02');
execute insertartiradas('RA0242136,9797453704', '30', '12/05/2015 23:30:50','17,9', 'RA02');
execute insertartiradas('RA0242136,9804513889', '16', '12/05/2015 23:31:51','-17,7', 'RA02');
execute insertartiradas('RA0242136,9812037037', '2', '12/05/2015 23:32:56','18,2', 'RA02');
execute insertartiradas('RA0242136,9817476852', '28', '12/05/2015 23:33:43','-18,1', 'RA02');
execute insertartiradas('RA0242136,9823842593', '24', '12/05/2015 23:34:38','18,3', 'RA02');
execute insertartiradas('RA0242136,9828240741', '23', '12/05/2015 23:35:16','-16,3', 'RA02');
execute insertartiradas('RA0242136,9831828704', '35', '12/05/2015 23:35:47','19,7', 'RA02');
execute insertartiradas('RA0242136,9838194444', '14', '12/05/2015 23:36:42','-19', 'RA02');
execute insertartiradas('RA0242136,9842361111', '28', '12/05/2015 23:37:18','19', 'RA02');
execute insertartiradas('RA0242136,9852083333', '31', '12/05/2015 23:38:42','-16,8', 'RA02');
execute insertartiradas('RA0242136,987337963', '10', '12/05/2015 23:41:46','17,9', 'RA02');
execute insertartiradas('RA0242136,9950810185', '25', '12/05/2015 23:52:55','-18,7', 'RA02');
execute insertartiradas('RA0242137,0082175926', '18', '13/05/2015 00:11:50','18,3', 'RA02');
execute insertartiradas('RA0242137,0103125', '13', '13/05/2015 00:14:51','-14,8', 'RA02');
execute insertartiradas('RA0242137,010787037', '0', '13/05/2015 00:15:32','14,1', 'RA02');
execute insertartiradas('RA0242137,0142013889', '30', '13/05/2015 00:20:27','-14,8', 'RA02');
execute insertartiradas('RA0242137,0152777778', '20', '13/05/2015 00:22:00','16,1', 'RA02');
execute insertartiradas('RA0242137,0160069444', '3', '13/05/2015 00:23:03','-15,2', 'RA02');
execute insertartiradas('RA0242137,0165393519', '32', '13/05/2015 00:23:49','16,9', 'RA02');
execute insertartiradas('RA0242137,0170833333', '25', '13/05/2015 00:24:36','-13,4', 'RA02');
execute insertartiradas('RA0242137,0175115741', '0', '13/05/2015 00:25:13','14,2', 'RA02');
execute insertartiradas('RA0242137,018287037', '32', '13/05/2015 00:26:20','-14,2', 'RA02');
execute insertartiradas('RA0242137,0190277778', '7', '13/05/2015 00:27:24','16,6', 'RA02');
execute insertartiradas('RA0242137,0199652778', '28', '13/05/2015 00:28:45','-15,2', 'RA02');
execute insertartiradas('RA0242137,0205787037', '17', '13/05/2015 00:29:38','15,7', 'RA02');
execute insertartiradas('RA0242137,0212268519', '26', '13/05/2015 00:30:34','-14,4', 'RA02');
execute insertartiradas('RA0242137,0220023148', '32', '13/05/2015 00:31:41','16,7', 'RA02');
execute insertartiradas('RA0242137,0230092593', '24', '13/05/2015 00:33:08','-15,1', 'RA02');
execute insertartiradas('RA0242137,0236458333', '18', '13/05/2015 00:34:03','14,2', 'RA02');
execute insertartiradas('RA0242137,0240740741', '20', '13/05/2015 00:34:40','-16,4', 'RA02');
execute insertartiradas('RA0242137,0247569444', '26', '13/05/2015 00:35:39','18,9', 'RA02');
execute insertartiradas('RA0242137,0256365741', '35', '13/05/2015 00:36:55','-13,5', 'RA02');
execute insertartiradas('RA0242137,0265856481', '27', '13/05/2015 00:38:17','16,6', 'RA02');
execute insertartiradas('RA0242137,0283333333', '35', '13/05/2015 00:40:48','-16,2', 'RA02');
execute insertartiradas('RA0242137,029224537', '4', '13/05/2015 00:42:05','17,7', 'RA02');
execute insertartiradas('RA0242137,03', '23', '13/05/2015 00:43:12','-14,3', 'RA02');
execute insertartiradas('RA0242137,030775463', '28', '13/05/2015 00:44:19','13,3', 'RA02');
execute insertartiradas('RA0242137,0314930556', '10', '13/05/2015 00:45:21','-9,5', 'RA02');
execute insertartiradas('RA0242137,0322106481', '3', '13/05/2015 00:46:23','12,3', 'RA02');
execute insertartiradas('RA0242137,0329861111', '18', '13/05/2015 00:47:30','-10,8', 'RA02');
execute insertartiradas('RA0242137,0334375', '6', '13/05/2015 00:48:09','12,8', 'RA02');
execute insertartiradas('RA0242137,0338657407', '1', '13/05/2015 00:48:46','-10,2', 'RA02');
execute insertartiradas('RA0242137,0347685185', '21', '13/05/2015 00:50:04','10,4', 'RA02');
execute insertartiradas('RA0242137,035474537', '24', '13/05/2015 00:51:05','-10,1', 'RA02');
execute insertartiradas('RA0242137,0362037037', '14', '13/05/2015 00:52:08','11,5', 'RA02');
execute insertartiradas('RA0242137,0368402778', '27', '13/05/2015 00:53:03','-10,9', 'RA02');
execute insertartiradas('RA0242137,037337963', '20', '13/05/2015 00:53:46','10,8', 'RA02');
execute insertartiradas('RA0242137,0379166667', '13', '13/05/2015 00:54:36','-9,4', 'RA02');
execute insertartiradas('RA0242137,0384837963', '20', '13/05/2015 00:55:25','10,6', 'RA02');
execute insertartiradas('RA0242137,0390162037', '34', '13/05/2015 00:56:11','-9,3', 'RA02');
execute insertartiradas('RA0242137,0394791667', '36', '13/05/2015 00:56:51','10,2', 'RA02');
execute insertartiradas('RA0242137,0401736111', '30', '13/05/2015 00:57:51','-9,3', 'RA02');
execute insertartiradas('RA0242137,0408680556', '24', '13/05/2015 00:58:51','10,2', 'RA02');
execute insertartiradas('RA0242137,0416898148', '11', '13/05/2015 01:00:02','-10,4', 'RA02');
execute insertartiradas('RA0242137,0424074074', '32', '13/05/2015 01:01:04','10,4', 'RA02');
execute insertartiradas('RA0242137,0432060185', '8', '13/05/2015 01:02:13','-10,2', 'RA02');
execute insertartiradas('RA0242137,0442013889', '35', '13/05/2015 01:03:39','9,6', 'RA02');
execute insertartiradas('RA0242137,0447106482', '0', '13/05/2015 01:04:23','-9,7', 'RA02');
execute insertartiradas('RA0242137,045474537', '0', '13/05/2015 01:05:29','12,1', 'RA02');
execute insertartiradas('RA0242137,0460532407', '14', '13/05/2015 01:06:19','-9,4', 'RA02');
execute insertartiradas('RA0242137,0467939815', '12', '13/05/2015 01:07:23','10,7', 'RA02');
execute insertartiradas('RA0242137,0473958333', '15', '13/05/2015 01:08:15','-9,9', 'RA02');
execute insertartiradas('RA0242137,0478472222', '24', '13/05/2015 01:08:54','11,7', 'RA02');
execute insertartiradas('RA0242137,0485300926', '11', '13/05/2015 01:09:53','-10,2', 'RA02');
execute insertartiradas('RA0242137,0491898148', '18', '13/05/2015 01:10:50','9,7', 'RA02');
execute insertartiradas('RA0242137,0497569444', '16', '13/05/2015 01:11:39','-9,7', 'RA02');
execute insertartiradas('RA0242137,0503587963', '17', '13/05/2015 01:12:31','9,9', 'RA02');
execute insertartiradas('RA0242137,0509837963', '16', '13/05/2015 01:13:25','-9', 'RA02');
execute insertartiradas('RA0242137,0514467593', '32', '13/05/2015 01:14:05','10,5', 'RA02');
execute insertartiradas('RA0242137,0519212963', '22', '13/05/2015 01:14:46','-9,5', 'RA02');
execute insertartiradas('RA0242137,0525694444', '10', '13/05/2015 01:15:42','10,1', 'RA02');
execute insertartiradas('RA0242137,0530671296', '34', '13/05/2015 01:16:25','-8,4', 'RA02');
execute insertartiradas('RA0242137,0538425926', '20', '13/05/2015 01:17:32','10,2', 'RA02');
execute insertartiradas('RA0242137,0548263889', '34', '13/05/2015 01:18:57','-9,3', 'RA02');
execute insertartiradas('RA0242137,0552662037', '29', '13/05/2015 01:19:35','9,8', 'RA02');
execute insertartiradas('RA0242137,0558680556', '1', '13/05/2015 01:20:27','-9,2', 'RA02');
execute insertartiradas('RA0242137,0562847222', '9', '13/05/2015 01:21:03','9,9', 'RA02');
execute insertartiradas('RA0242137,0569444444', '28', '13/05/2015 01:22:00','-18,3', 'RA02');
execute insertartiradas('RA0242137,0593634259', '24', '13/05/2015 01:25:29','20,7', 'RA02');
execute insertartiradas('RA0242137,0598958333', '35', '13/05/2015 01:26:15','-16,9', 'RA02');
execute insertartiradas('RA0242137,0602777778', '17', '13/05/2015 01:26:48','19,2', 'RA02');
execute insertartiradas('RA0242137,0626273148', '36', '13/05/2015 01:30:11','-16,8', 'RA02');
execute insertartiradas('RA0242137,0637268519', '32', '13/05/2015 01:31:46','20,6', 'RA02');
execute insertartiradas('RA0242137,0641203704', '32', '13/05/2015 01:32:20','-16,5', 'RA02');
execute insertartiradas('RA0242137,0644560185', '20', '13/05/2015 01:32:49','18,9', 'RA02');
execute insertartiradas('RA0242137,0654513889', '33', '13/05/2015 01:34:15','-17,8', 'RA02');
execute insertartiradas('RA0242137,0658680556', '19', '13/05/2015 01:34:51','17,6', 'RA02');
execute insertartiradas('RA0242137,0663078704', '9', '13/05/2015 01:35:29','-16,4', 'RA02');
execute insertartiradas('RA0242137,0666782407', '13', '13/05/2015 01:36:01','19,2', 'RA02');
execute insertartiradas('RA0242137,0709837963', '21', '13/05/2015 01:42:13','-18', 'RA02');
execute insertartiradas('RA0242137,0715046296', '6', '13/05/2015 01:42:58','14', 'RA02');
execute insertartiradas('RA0242137,0721759259', '7', '13/05/2015 01:43:56','-9,7', 'RA02');
execute insertartiradas('RA0242137,0742708333', '6', '13/05/2015 01:46:57','11,2', 'RA02');
execute insertartiradas('RA0242137,0750462963', '8', '13/05/2015 01:48:04','-9,4', 'RA02');
execute insertartiradas('RA0242137,0753587963', '1', '13/05/2015 01:48:31','9,3', 'RA02');
execute insertartiradas('RA0242137,0829050926', '18', '13/05/2015 01:59:23','-9,4', 'RA02');
execute insertartiradas('RA0242137,0888773148', '2', '13/05/2015 02:07:59','10,8', 'RA02');
execute insertartiradas('RA0242137,0892708333', '4', '13/05/2015 02:08:33','-9,5', 'RA02');
execute insertartiradas('RA0242137,0896759259', '23', '13/05/2015 02:09:08','10,5', 'RA02');
execute insertartiradas('RA0242137,0901736111', '21', '13/05/2015 02:09:51','-7,9', 'RA02');
execute insertartiradas('RA0242137,094837963', '28', '13/05/2015 02:16:34','12,2', 'RA02');
execute insertartiradas('RA0242137,0952430556', '3', '13/05/2015 02:17:09','-9', 'RA02');
execute insertartiradas('RA0242137,0957407407', '18', '13/05/2015 02:17:52','10,4', 'RA02');
execute insertartiradas('RA0242137,0961111111', '34', '13/05/2015 02:18:24','-10,6', 'RA02');
execute insertartiradas('RA0242137,0965046296', '18', '13/05/2015 02:18:58','10,4', 'RA02');
execute insertartiradas('RA0242137,0971759259', '29', '13/05/2015 02:19:56','-10,4', 'RA02');
execute insertartiradas('RA0242137,0975462963', '35', '13/05/2015 02:20:28','10,7', 'RA02');
execute insertartiradas('RA0242137,0979513889', '16', '13/05/2015 02:21:03','-8,8', 'RA02');
execute insertartiradas('RA0242137,0982638889', '12', '13/05/2015 02:21:30','13,4', 'RA02');
execute insertartiradas('RA0242137,0987962963', '30', '13/05/2015 02:22:16','-16,3', 'RA02');
execute insertartiradas('RA0242137,0991319444', '15', '13/05/2015 02:22:45','14,7', 'RA02');
execute insertartiradas('RA0242137,0996527778', '36', '13/05/2015 02:23:30','-17,6', 'RA02');
execute insertartiradas('RA0242137,1000115741', '25', '13/05/2015 02:24:01','18,2', 'RA02');
execute insertartiradas('RA0242137,1004050926', '5', '13/05/2015 02:24:35','-17,4', 'RA02');
execute insertartiradas('RA0242137,1007986111', '18', '13/05/2015 02:25:09','19', 'RA02');
execute insertartiradas('RA0242137,101400463', '9', '13/05/2015 02:26:01','-15,4', 'RA02');
execute insertartiradas('RA0242137,1018171296', '0', '13/05/2015 02:26:37','16,3', 'RA02');
execute insertartiradas('RA0242137,1023842593', '34', '13/05/2015 02:27:26','-18,1', 'RA02');
execute insertartiradas('RA0242137,1027893519', '32', '13/05/2015 02:28:01','14,9', 'RA02');
execute insertartiradas('RA0242137,1033680556', '31', '13/05/2015 02:28:51','-16,3', 'RA02');
execute insertartiradas('RA0242137,1037962963', '33', '13/05/2015 02:29:28','17,3', 'RA02');
execute insertartiradas('RA0242137,1042708333', '11', '13/05/2015 02:30:09','-17', 'RA02');
execute insertartiradas('RA0242137,1046296296', '32', '13/05/2015 02:30:40','16,9', 'RA02');
execute insertartiradas('RA0242137,1050115741', '7', '13/05/2015 02:31:13','-16,6', 'RA02');
execute insertartiradas('RA0242137,1052893518', '35', '13/05/2015 02:31:37','15,8', 'RA02');
execute insertartiradas('RA0242137,1107175926', '36', '13/05/2015 02:39:26','-17,4', 'RA02');
execute insertartiradas('RA0242137,1138541667', '17', '13/05/2015 02:43:57','15,4', 'RA02');
execute insertartiradas('RA0242137,1202893518', '22', '13/05/2015 02:53:13','-14,6', 'RA02');
execute insertartiradas('RA0242137,8397685185', '2', '13/05/2015 20:09:16','14,3', 'RA02');
execute insertartiradas('RA0242137,8406944444', '12', '13/05/2015 20:10:36','-16', 'RA02');
execute insertartiradas('RA0242137,8415856482', '19', '13/05/2015 20:11:53','15,6', 'RA02');
execute insertartiradas('RA0242137,8426736111', '0', '13/05/2015 20:13:27','-15,6', 'RA02');
execute insertartiradas('RA0242137,8436689815', '23', '13/05/2015 20:14:53','15,2', 'RA02');
execute insertartiradas('RA0242137,8447685185', '18', '13/05/2015 20:16:28','-14,5', 'RA02');
execute insertartiradas('RA0242137,8457407407', '30', '13/05/2015 20:17:52','14,7', 'RA02');
execute insertartiradas('RA0242137,8465625', '34', '13/05/2015 20:19:03','-18,9', 'RA02');
execute insertartiradas('RA0242137,8563773148', '32', '13/05/2015 20:33:11','13,7', 'RA02');
execute insertartiradas('RA0242137,8568171296', '2', '13/05/2015 20:33:49','-11,5', 'RA02');
execute insertartiradas('RA0242137,8576157407', '27', '13/05/2015 20:34:58','13,6', 'RA02');
execute insertartiradas('RA0242137,8580902778', '33', '13/05/2015 20:35:39','-12', 'RA02');
execute insertartiradas('RA0242137,8585648148', '29', '13/05/2015 20:36:20','12,9', 'RA02');
execute insertartiradas('RA0242137,8589930556', '18', '13/05/2015 20:36:57','-12,6', 'RA02');
execute insertartiradas('RA0242137,859537037', '33', '13/05/2015 20:37:44','15', 'RA02');
execute insertartiradas('RA0242137,8641319444', '20', '13/05/2015 20:44:21','-14,9', 'RA02');
execute insertartiradas('RA0242137,8649652778', '6', '13/05/2015 20:45:33','19,4', 'RA02');
execute insertartiradas('RA0242137,8654282407', '9', '13/05/2015 20:46:13','-14,6', 'RA02');
execute insertartiradas('RA0242137,8659722222', '14', '13/05/2015 20:47:00','18,3', 'RA02');
execute insertartiradas('RA0242137,8664699074', '24', '13/05/2015 20:47:43','-17,8', 'RA02');
execute insertartiradas('RA0242137,8671759259', '26', '13/05/2015 20:48:44','20,6', 'RA02');
execute insertartiradas('RA0242137,8676851852', '19', '13/05/2015 20:49:28','-15,2', 'RA02');
execute insertartiradas('RA0242137,8681481481', '3', '13/05/2015 20:50:08','17,3', 'RA02');
execute insertartiradas('RA0242137,8686574074', '32', '13/05/2015 20:50:52','-14,5', 'RA02');
execute insertartiradas('RA0242137,8691782407', '4', '13/05/2015 20:51:37','16,6', 'RA02');
execute insertartiradas('RA0242137,8697337963', '9', '13/05/2015 20:52:25','-16,2', 'RA02');
execute insertartiradas('RA0242137,8702893518', '8', '13/05/2015 20:53:13','15,6', 'RA02');
execute insertartiradas('RA0242137,8709143518', '2', '13/05/2015 20:54:07','-14', 'RA02');
execute insertartiradas('RA0242137,8713773148', '13', '13/05/2015 20:54:47','16,5', 'RA02');
execute insertartiradas('RA0242137,8718518519', '34', '13/05/2015 20:55:28','-13,9', 'RA02');
execute insertartiradas('RA0242137,8723958333', '27', '13/05/2015 20:56:15','16,4', 'RA02');
execute insertartiradas('RA0242137,8728240741', '25', '13/05/2015 20:56:52','-14', 'RA02');
execute insertartiradas('RA0242137,8732407407', '15', '13/05/2015 20:57:28','16', 'RA02');
execute insertartiradas('RA0242137,8737037037', '32', '13/05/2015 20:58:08','-12,9', 'RA02');
execute insertartiradas('RA0242137,8741319444', '18', '13/05/2015 20:58:45','15,1', 'RA02');
execute insertartiradas('RA0242137,8745717593', '35', '13/05/2015 20:59:23','-13,2', 'RA02');
execute insertartiradas('RA0242137,8750115741', '15', '13/05/2015 21:00:01','20,5', 'RA02');
execute insertartiradas('RA0242137,8754398148', '10', '13/05/2015 21:00:38','-13,2', 'RA02');
execute insertartiradas('RA0242137,8757638889', '3', '13/05/2015 21:01:06','19,6', 'RA02');
execute insertartiradas('RA0242137,8760763889', '10', '13/05/2015 21:01:33','-13,5', 'RA02');
execute insertartiradas('RA0242137,8764467593', '22', '13/05/2015 21:02:05','16,5', 'RA02');
execute insertartiradas('RA0242137,8768402778', '33', '13/05/2015 21:02:39','-13,8', 'RA02');
execute insertartiradas('RA0242137,8771643518', '7', '13/05/2015 21:03:07','16,2', 'RA02');
execute insertartiradas('RA0242137,8774768518', '29', '13/05/2015 21:03:34','-13,1', 'RA02');
execute insertartiradas('RA0242137,8778125', '23', '13/05/2015 21:04:03','21,6', 'RA02');
execute insertartiradas('RA0242137,8780787037', '35', '13/05/2015 21:04:26','-13,2', 'RA02');
execute insertartiradas('RA0242137,8919328704', '5', '13/05/2015 21:24:23','20', 'RA02');
execute insertartiradas('RA0242137,8925115741', '36', '13/05/2015 21:25:13','-15,8', 'RA02');
execute insertartiradas('RA0242137,8928703704', '20', '13/05/2015 21:25:44','17,2', 'RA02');
execute insertartiradas('RA0242137,893275463', '5', '13/05/2015 21:26:19','-16,5', 'RA02');
execute insertartiradas('RA0242137,8938078704', '35', '13/05/2015 21:27:05','16,6', 'RA02');
execute insertartiradas('RA0242137,8942708333', '35', '13/05/2015 21:27:45','-16,1', 'RA02');
execute insertartiradas('RA0242137,8947916667', '2', '13/05/2015 21:28:30','21,4', 'RA02');
execute insertartiradas('RA0242137,8952546296', '3', '13/05/2015 21:29:10','-16,5', 'RA02');
execute insertartiradas('RA0242137,8956597222', '23', '13/05/2015 21:29:45','14,4', 'RA02');
execute insertartiradas('RA0242137,8961226852', '11', '13/05/2015 21:30:25','-14', 'RA02');
execute insertartiradas('RA0242137,8964930556', '7', '13/05/2015 21:30:57','19,1', 'RA02');
execute insertartiradas('RA0242137,8969444444', '24', '13/05/2015 21:31:36','-20,7', 'RA02');
execute insertartiradas('RA0242137,8974074074', '24', '13/05/2015 21:32:16','19,5', 'RA02');
execute insertartiradas('RA0242137,8978703704', '17', '13/05/2015 21:32:56','-17,9', 'RA02');
execute insertartiradas('RA0242137,8983101852', '36', '13/05/2015 21:33:34','16,2', 'RA02');
execute insertartiradas('RA0242137,8987731481', '3', '13/05/2015 21:34:14','-15,9', 'RA02');
execute insertartiradas('RA0242137,8991898148', '30', '13/05/2015 21:34:50','18,1', 'RA02');
execute insertartiradas('RA0242137,8995833333', '1', '13/05/2015 21:35:24','-14,1', 'RA02');
execute insertartiradas('RA0242137,9131597222', '22', '13/05/2015 21:54:57','17,6', 'RA02');
execute insertartiradas('RA0242137,9137731481', '11', '13/05/2015 21:55:50','-12,2', 'RA02');
execute insertartiradas('RA0242137,9143865741', '29', '13/05/2015 21:56:43','19,6', 'RA02');
execute insertartiradas('RA0242137,9150115741', '23', '13/05/2015 21:57:37','-17,6', 'RA02');
execute insertartiradas('RA0242137,915474537', '17', '13/05/2015 21:58:17','22,2', 'RA02');
execute insertartiradas('RA0242137,9160416667', '25', '13/05/2015 21:59:06','-16,9', 'RA02');
execute insertartiradas('RA0242137,9168171296', '21', '13/05/2015 22:00:13','19,8', 'RA02');
execute insertartiradas('RA0242137,9176851852', '23', '13/05/2015 22:01:28','-15', 'RA02');
execute insertartiradas('RA0242137,9182175926', '18', '13/05/2015 22:02:14','12,2', 'RA02');
execute insertartiradas('RA0242137,9190393519', '2', '13/05/2015 22:03:25','-21,1', 'RA02');
execute insertartiradas('RA0242137,9196296296', '30', '13/05/2015 22:04:16','21,7', 'RA02');
execute insertartiradas('RA0242137,9202199074', '26', '13/05/2015 22:05:07','-22,1', 'RA02');
execute insertartiradas('RA0242137,9206597222', '15', '13/05/2015 22:05:45','19,7', 'RA02');
execute insertartiradas('RA0242137,9211921296', '23', '13/05/2015 22:06:31','-19,8', 'RA02');
execute insertartiradas('RA0242137,9216203704', '30', '13/05/2015 22:07:08','19,9', 'RA02');
execute insertartiradas('RA0242137,9222453704', '11', '13/05/2015 22:08:02','-20', 'RA02');
execute insertartiradas('RA0242137,9227546296', '29', '13/05/2015 22:08:46','20', 'RA02');
execute insertartiradas('RA0242137,9232175926', '13', '13/05/2015 22:09:26','-17,7', 'RA02');
execute insertartiradas('RA0242137,9236574074', '20', '13/05/2015 22:10:04','20,4', 'RA02');
execute insertartiradas('RA0242137,9241087963', '20', '13/05/2015 22:10:43','-21,2', 'RA02');
execute insertartiradas('RA0242137,9247106481', '27', '13/05/2015 22:11:35','16,2', 'RA02');
execute insertartiradas('RA0242137,9252083333', '18', '13/05/2015 22:12:18','-20,4', 'RA02');
execute insertartiradas('RA0242137,9258217593', '20', '13/05/2015 22:13:11','21,7', 'RA02');
execute insertartiradas('RA0242137,9264699074', '5', '13/05/2015 22:14:07','-22,5', 'RA02');
execute insertartiradas('RA0242137,9270138889', '18', '13/05/2015 22:14:54','18,7', 'RA02');
execute insertartiradas('RA0242137,9274768519', '26', '13/05/2015 22:15:34','-18,7', 'RA02');
execute insertartiradas('RA0242137,9279861111', '11', '13/05/2015 22:16:18','17,1', 'RA02');
execute insertartiradas('RA0242137,9284722222', '11', '13/05/2015 22:17:00','-19,4', 'RA02');
execute insertartiradas('RA0242137,9290972222', '36', '13/05/2015 22:17:54','18,1', 'RA02');
execute insertartiradas('RA0242137,9299537037', '19', '13/05/2015 22:19:08','-23,8', 'RA02');
execute insertartiradas('RA0242137,9306481481', '28', '13/05/2015 22:20:08','21,2', 'RA02');
execute insertartiradas('RA0242137,9318287037', '4', '13/05/2015 22:21:50','-15,1', 'RA02');
execute insertartiradas('RA0242137,9327314815', '7', '13/05/2015 22:23:08','20,6', 'RA02');
execute insertartiradas('RA0242137,9337037037', '22', '13/05/2015 22:24:32','-13,5', 'RA02');
execute insertartiradas('RA0242137,9346296296', '22', '13/05/2015 22:25:52','16,7', 'RA02');
execute insertartiradas('RA0242137,9355092593', '1', '13/05/2015 22:27:08','-13,9', 'RA02');
execute insertartiradas('RA0242137,9361921296', '31', '13/05/2015 22:28:07','16,2', 'RA02');
execute insertartiradas('RA0242137,9377546296', '20', '13/05/2015 22:30:22','-15,9', 'RA02');
execute insertartiradas('RA0242137,9390740741', '25', '13/05/2015 22:32:16','16,5', 'RA02');
execute insertartiradas('RA0242137,9397569444', '35', '13/05/2015 22:33:15','-16,4', 'RA02');
execute insertartiradas('RA0242137,9405439815', '19', '13/05/2015 22:34:23','16,6', 'RA02');
execute insertartiradas('RA0242137,9414814815', '36', '13/05/2015 22:35:44','-15', 'RA02');
execute insertartiradas('RA0242137,9421875', '10', '13/05/2015 22:36:45','16,7', 'RA02');
execute insertartiradas('RA0242137,9429398148', '30', '13/05/2015 22:37:50','-14,5', 'RA02');
execute insertartiradas('RA0242137,9438078704', '20', '13/05/2015 22:39:05','17,5', 'RA02');
execute insertartiradas('RA0242137,9448148148', '24', '13/05/2015 22:40:32','-13,2', 'RA02');
execute insertartiradas('RA0242137,9459837963', '15', '13/05/2015 22:42:13','16,7', 'RA02');
execute insertartiradas('RA0242137,9468055556', '25', '13/05/2015 22:43:24','-15,8', 'RA02');
execute insertartiradas('RA0242137,9474421296', '22', '13/05/2015 22:44:19','17,2', 'RA02');
execute insertartiradas('RA0242137,9482638889', '24', '13/05/2015 22:45:30','-16,2', 'RA02');
execute insertartiradas('RA0242137,9491203704', '21', '13/05/2015 22:46:44','17', 'RA02');
execute insertartiradas('RA0242137,9500115741', '30', '13/05/2015 22:48:01','-17,1', 'RA02');
execute insertartiradas('RA0242137,9514814815', '1', '13/05/2015 22:50:08','18,5', 'RA02');
execute insertartiradas('RA0242137,9525578704', '20', '13/05/2015 22:51:41','-16,9', 'RA02');
execute insertartiradas('RA0242137,9535648148', '1', '13/05/2015 22:53:08','18,1', 'RA02');
execute insertartiradas('RA0242137,9545717593', '12', '13/05/2015 22:54:35','-15,5', 'RA02');
execute insertartiradas('RA0242137,9559722222', '32', '13/05/2015 22:56:36','19,3', 'RA02');
execute insertartiradas('RA0242137,9572453703', '7', '13/05/2015 22:58:26','-16,2', 'RA02');
execute insertartiradas('RA0242137,9582291667', '14', '13/05/2015 22:59:51','22,2', 'RA02');
execute insertartiradas('RA0242137,9595601852', '7', '13/05/2015 23:01:46','-18,5', 'RA02');
execute insertartiradas('RA0242137,960787037', '17', '13/05/2015 23:03:32','15,9', 'RA02');
execute insertartiradas('RA0242137,9618171296', '19', '13/05/2015 23:05:01','-16,5', 'RA02');
execute insertartiradas('RA0242137,9624884259', '9', '13/05/2015 23:05:59','16,6', 'RA02');
execute insertartiradas('RA0242137,9634027778', '34', '13/05/2015 23:07:18','-14', 'RA02');
execute insertartiradas('RA0242137,9641435185', '10', '13/05/2015 23:08:22','14,7', 'RA02');
execute insertartiradas('RA0242137,9647106481', '32', '13/05/2015 23:09:11','-15,3', 'RA02');
execute insertartiradas('RA0242137,9653356482', '24', '13/05/2015 23:10:05','14,5', 'RA02');
execute insertartiradas('RA0242137,9658796296', '28', '13/05/2015 23:10:52','-14,2', 'RA02');
execute insertartiradas('RA0242137,9667708333', '1', '13/05/2015 23:12:09','14,4', 'RA02');
execute insertartiradas('RA0242137,9675578704', '27', '13/05/2015 23:13:17','-13,3', 'RA02');
execute insertartiradas('RA0242137,9681481481', '9', '13/05/2015 23:14:08','14,8', 'RA02');
execute insertartiradas('RA0242137,9687615741', '7', '13/05/2015 23:15:01','-13,5', 'RA02');
execute insertartiradas('RA0242137,969224537', '16', '13/05/2015 23:15:41','15', 'RA02');
execute insertartiradas('RA0242137,9701967593', '1', '13/05/2015 23:17:05','-14,2', 'RA02');
execute insertartiradas('RA0242137,9706944444', '32', '13/05/2015 23:17:48','13,6', 'RA02');
execute insertartiradas('RA0242137,9813773148', '20', '13/05/2015 23:33:11','-16,1', 'RA02');
execute insertartiradas('RA0242137,9821643519', '14', '13/05/2015 23:34:19','17,5', 'RA02');
execute insertartiradas('RA0242137,9830787037', '36', '13/05/2015 23:35:38','-15,5', 'RA02');
execute insertartiradas('RA0242137,9836111111', '1', '13/05/2015 23:36:24','16,7', 'RA02');
execute insertartiradas('RA0242137,9843171296', '8', '13/05/2015 23:37:25','-15,3', 'RA02');
execute insertartiradas('RA0242137,9849074074', '24', '13/05/2015 23:38:16','14,3', 'RA02');
execute insertartiradas('RA0242137,9855671296', '16', '13/05/2015 23:39:13','-16,1', 'RA02');
execute insertartiradas('RA0242137,9865277778', '15', '13/05/2015 23:40:36','19,9', 'RA02');
execute insertartiradas('RA0242137,9872222222', '34', '13/05/2015 23:41:36','-15,6', 'RA02');
execute insertartiradas('RA0242137,9878935185', '23', '13/05/2015 23:42:34','20,7', 'RA02');
execute insertartiradas('RA0242137,9885763889', '4', '13/05/2015 23:43:33','-16,2', 'RA02');
execute insertartiradas('RA0242137,9895138889', '0', '13/05/2015 23:44:54','19,8', 'RA02');
execute insertartiradas('RA0242137,9902893519', '31', '13/05/2015 23:46:01','-16,7', 'RA02');
execute insertartiradas('RA0242137,9953935185', '12', '13/05/2015 23:53:22','18,7', 'RA02');
execute insertartiradas('RA0242137,9958796296', '33', '13/05/2015 23:54:04','-14', 'RA02');
execute insertartiradas('RA0242137,996400463', '0', '13/05/2015 23:54:49','17,5', 'RA02');
execute insertartiradas('RA0242137,9970138889', '21', '13/05/2015 23:55:42','-15,5', 'RA02');
execute insertartiradas('RA0242137,9975347222', '24', '13/05/2015 23:56:27','16,7', 'RA02');
execute insertartiradas('RA0242137,9981481481', '10', '13/05/2015 23:57:20','-15,8', 'RA02');
execute insertartiradas('RA0242137,9987615741', '21', '13/05/2015 23:58:13','17,3', 'RA02');
execute insertartiradas('RA0242137,9994560185', '9', '13/05/2015 23:59:13','-16,5', 'RA02');
execute insertartiradas('RA0242138,0000578704', '31', '14/05/2015 00:00:05','14,8', 'RA02');
execute insertartiradas('RA0242138,0016203704', '11', '14/05/2015 00:02:20','-13,1', 'RA02');
execute insertartiradas('RA0242138,0021643518', '1', '14/05/2015 00:03:07','17', 'RA02');
execute insertartiradas('RA0242138,0029976852', '20', '14/05/2015 00:04:19','-18', 'RA02');
execute insertartiradas('RA0242138,0039583333', '31', '14/05/2015 00:05:42','18', 'RA02');
execute insertartiradas('RA0242138,0044444444', '24', '14/05/2015 00:06:24','-16,9', 'RA02');
execute insertartiradas('RA0242138,0049421296', '17', '14/05/2015 00:07:07','18,4', 'RA02');
execute insertartiradas('RA0242138,0055324074', '26', '14/05/2015 00:07:58','-15,7', 'RA02');
execute insertartiradas('RA0242138,0062037037', '22', '14/05/2015 00:08:56','9,6', 'RA02');
execute insertartiradas('RA0242138,0066087963', '24', '14/05/2015 00:09:31','-18,4', 'RA02');
execute insertartiradas('RA0242138,0071296296', '8', '14/05/2015 00:10:16','17,9', 'RA02');
execute insertartiradas('RA0242138,0080787037', '25', '14/05/2015 00:11:38','-17,6', 'RA02');
execute insertartiradas('RA0242138,0085416666', '6', '14/05/2015 00:12:18','11,9', 'RA02');
execute insertartiradas('RA0242138,0090393519', '5', '14/05/2015 00:13:01','-12,1', 'RA02');
execute insertartiradas('RA0242138,0096180556', '4', '14/05/2015 00:13:51','17,3', 'RA02');
execute insertartiradas('RA0242138,0100694444', '10', '14/05/2015 00:14:30','-17,6', 'RA02');
execute insertartiradas('RA0242138,0140856481', '36', '14/05/2015 00:20:17','15,8', 'RA02');
execute insertartiradas('RA0242138,0144097222', '36', '14/05/2015 00:20:45','-14,6', 'RA02');
execute insertartiradas('RA0242138,0148611111', '15', '14/05/2015 00:21:24','12,9', 'RA02');
execute insertartiradas('RA0242138,0152430556', '8', '14/05/2015 00:21:57','-13,3', 'RA02');
execute insertartiradas('RA0242138,0155902778', '12', '14/05/2015 00:22:27','14,5', 'RA02');
execute insertartiradas('RA0242138,0161342593', '23', '14/05/2015 00:23:14','-14,2', 'RA02');
execute insertartiradas('RA0242138,0165740741', '23', '14/05/2015 00:23:52','13,6', 'RA02');
execute insertartiradas('RA0242138,017037037', '23', '14/05/2015 00:24:32','-13,3', 'RA02');
execute insertartiradas('RA0242138,0175115741', '19', '14/05/2015 00:25:13','13,5', 'RA02');
execute insertartiradas('RA0242138,0178819444', '7', '14/05/2015 00:25:45','-13,1', 'RA02');
execute insertartiradas('RA0242138,0186111111', '28', '14/05/2015 00:26:48','11,2', 'RA02');
execute insertartiradas('RA0242138,0191203704', '1', '14/05/2015 00:27:32','-14,6', 'RA02');
execute insertartiradas('RA0242138,0196643519', '18', '14/05/2015 00:28:19','18,6', 'RA02');
execute insertartiradas('RA0242138,0201157407', '15', '14/05/2015 00:28:58','-17,3', 'RA02');
execute insertartiradas('RA0242138,0206481482', '17', '14/05/2015 00:29:44','12,3', 'RA02');
execute insertartiradas('RA0242138,0210185185', '32', '14/05/2015 00:30:16','-11,7', 'RA02');
execute insertartiradas('RA0242138,0213773148', '12', '14/05/2015 00:30:47','17', 'RA02');
execute insertartiradas('RA0242138,0217708333', '4', '14/05/2015 00:31:21','-14,8', 'RA02');
execute insertartiradas('RA0242138,0222685185', '4', '14/05/2015 00:32:04','14,3', 'RA02');
execute insertartiradas('RA0242138,0227546296', '1', '14/05/2015 00:32:46','-7,9', 'RA02');
execute insertartiradas('RA0242138,0230439815', '35', '14/05/2015 00:33:11','17,7', 'RA02');
execute insertartiradas('RA0242138,0234490741', '33', '14/05/2015 00:33:46','-14,7', 'RA02');
execute insertartiradas('RA0242138,0238078704', '7', '14/05/2015 00:34:17','14,6', 'RA02');
execute insertartiradas('RA0242138,0241435185', '8', '14/05/2015 00:34:46','-11,3', 'RA02');
execute insertartiradas('RA0242138,0245833333', '20', '14/05/2015 00:35:24','14,9', 'RA02');
execute insertartiradas('RA0242138,025162037', '21', '14/05/2015 00:36:14','-13,7', 'RA02');
execute insertartiradas('RA0242138,026400463', '35', '14/05/2015 00:38:01','12,8', 'RA02');
execute insertartiradas('RA0242138,0342824074', '32', '14/05/2015 00:49:22','-11,8', 'RA02');
execute insertartiradas('RA0242138,8279050926', '26', '14/05/2015 19:52:11','13,5', 'RA02');
execute insertartiradas('RA0242138,8292939815', '14', '14/05/2015 19:54:11','-12,9', 'RA02');
execute insertartiradas('RA0242138,8302314815', '34', '14/05/2015 19:55:32','15,1', 'RA02');
execute insertartiradas('RA0242138,8311226852', '10', '14/05/2015 19:56:49','-12,4', 'RA02');
execute insertartiradas('RA0242138,8323726852', '2', '14/05/2015 19:58:37','13,7', 'RA02');
execute insertartiradas('RA0242138,8330671296', '7', '14/05/2015 19:59:37','-18,5', 'RA02');
execute insertartiradas('RA0242138,834375', '3', '14/05/2015 20:01:30','15,9', 'RA02');
execute insertartiradas('RA0242138,8356828704', '20', '14/05/2015 20:03:23','-12,4', 'RA02');
execute insertartiradas('RA0242138,8365509259', '18', '14/05/2015 20:04:38','17,7', 'RA02');
execute insertartiradas('RA0242138,8376388889', '4', '14/05/2015 20:06:12','-13,5', 'RA02');
execute insertartiradas('RA0242138,8385532407', '29', '14/05/2015 20:07:31','16,7', 'RA02');
execute insertartiradas('RA0242138,8400578703', '21', '14/05/2015 20:09:41','-13,7', 'RA02');
execute insertartiradas('RA0242138,8403935185', '6', '14/05/2015 20:10:10','16,1', 'RA02');
execute insertartiradas('RA0242138,8425694444', '23', '14/05/2015 20:13:18','-12,6', 'RA02');
execute insertartiradas('RA0242138,8434837963', '19', '14/05/2015 20:14:37','13,9', 'RA02');
execute insertartiradas('RA0242138,8442013889', '11', '14/05/2015 20:15:39','-14,9', 'RA02');
execute insertartiradas('RA0242138,8450694444', '10', '14/05/2015 20:16:54','14,3', 'RA02');
execute insertartiradas('RA0242138,846400463', '34', '14/05/2015 20:18:49','-14,5', 'RA02');
execute insertartiradas('RA0242138,8472337963', '30', '14/05/2015 20:20:01','15,2', 'RA02');
execute insertartiradas('RA0242138,8483101852', '25', '14/05/2015 20:21:34','-17,5', 'RA02');
execute insertartiradas('RA0242138,8493981482', '19', '14/05/2015 20:23:08','15,6', 'RA02');
execute insertartiradas('RA0242138,8502199074', '22', '14/05/2015 20:24:19','-14,2', 'RA02');
execute insertartiradas('RA0242138,8508217593', '2', '14/05/2015 20:25:11','13,8', 'RA02');
execute insertartiradas('RA0242138,8518865741', '24', '14/05/2015 20:26:43','-16,7', 'RA02');
execute insertartiradas('RA0242138,852650463', '17', '14/05/2015 20:27:49','16,7', 'RA02');
execute insertartiradas('RA0242138,8536111111', '24', '14/05/2015 20:29:12','-16,4', 'RA02');
execute insertartiradas('RA0242138,8540740741', '19', '14/05/2015 20:29:52','15,2', 'RA02');
execute insertartiradas('RA0242138,8544328704', '34', '14/05/2015 20:30:23','-13,6', 'RA02');
execute insertartiradas('RA0242138,854849537', '1', '14/05/2015 20:30:59','12,9', 'RA02');
execute insertartiradas('RA0242138,8553356481', '8', '14/05/2015 20:31:41','-13,9', 'RA02');
execute insertartiradas('RA0242138,855775463', '8', '14/05/2015 20:32:19','14,4', 'RA02');
execute insertartiradas('RA0242138,8562615741', '27', '14/05/2015 20:33:01','-11,9', 'RA02');
execute insertartiradas('RA0242138,8566203704', '5', '14/05/2015 20:33:32','12,9', 'RA02');
execute insertartiradas('RA0242138,8572453704', '31', '14/05/2015 20:34:26','-13,7', 'RA02');
execute insertartiradas('RA0242138,8576736111', '30', '14/05/2015 20:35:03','13,1', 'RA02');
execute insertartiradas('RA0242138,8586805556', '24', '14/05/2015 20:36:30','-11,4', 'RA02');
execute insertartiradas('RA0242138,8591319444', '29', '14/05/2015 20:37:09','14,8', 'RA02');
execute insertartiradas('RA0242138,8605902778', '20', '14/05/2015 20:39:15','-14,6', 'RA02');
execute insertartiradas('RA0242138,8615509259', '20', '14/05/2015 20:40:38','14,7', 'RA02');
execute insertartiradas('RA0242138,8624305556', '3', '14/05/2015 20:41:54','-12,8', 'RA02');
execute insertartiradas('RA0242138,8630902778', '26', '14/05/2015 20:42:51','13,6', 'RA02');
execute insertartiradas('RA0242138,8637615741', '34', '14/05/2015 20:43:49','-13', 'RA02');
execute insertartiradas('RA0242138,8646412037', '25', '14/05/2015 20:45:05','14,9', 'RA02');
execute insertartiradas('RA0242138,8656481481', '28', '14/05/2015 20:46:32','-12,8', 'RA02');
execute insertartiradas('RA0242138,8664351852', '35', '14/05/2015 20:47:40','13,6', 'RA02');
execute insertartiradas('RA0242138,8673958333', '23', '14/05/2015 20:49:03','-15,4', 'RA02');
execute insertartiradas('RA0242138,8681481481', '15', '14/05/2015 20:50:08','13,6', 'RA02');
execute insertartiradas('RA0242138,8691203704', '9', '14/05/2015 20:51:32','-15,4', 'RA02');
execute insertartiradas('RA0242138,8699074074', '25', '14/05/2015 20:52:40','14,3', 'RA02');
execute insertartiradas('RA0242138,8705208333', '1', '14/05/2015 20:53:33','-12,4', 'RA02');
execute insertartiradas('RA0242138,8710185185', '7', '14/05/2015 20:54:16','14,2', 'RA02');
execute insertartiradas('RA0242138,8775462963', '36', '14/05/2015 21:03:40','-18,1', 'RA02');
execute insertartiradas('RA0242138,8788078704', '4', '14/05/2015 21:05:29','20', 'RA02');
execute insertartiradas('RA0242138,8792592593', '1', '14/05/2015 21:06:08','-18,5', 'RA02');
execute insertartiradas('RA0242138,879849537', '26', '14/05/2015 21:06:59','19,3', 'RA02');
execute insertartiradas('RA0242138,8804050926', '0', '14/05/2015 21:07:47','-19,9', 'RA02');
execute insertartiradas('RA0242138,8808912037', '26', '14/05/2015 21:08:29','18,2', 'RA02');
execute insertartiradas('RA0242138,8812731481', '28', '14/05/2015 21:09:02','-13,6', 'RA02');
execute insertartiradas('RA0242138,8819791667', '20', '14/05/2015 21:10:03','11,9', 'RA02');
execute insertartiradas('RA0242138,8823263889', '17', '14/05/2015 21:10:33','-14,7', 'RA02');
execute insertartiradas('RA0242138,882650463', '23', '14/05/2015 21:11:01','12', 'RA02');
execute insertartiradas('RA0242138,8853472222', '22', '14/05/2015 21:14:54','-16', 'RA02');
execute insertartiradas('RA0242138,8857523148', '30', '14/05/2015 21:15:29','16,4', 'RA02');
execute insertartiradas('RA0242138,9003240741', '24', '14/05/2015 21:36:28','-27,3', 'RA02');
execute insertartiradas('RA0242138,9008333333', '15', '14/05/2015 21:37:12','17,3', 'RA02');
execute insertartiradas('RA0242138,9014351852', '5', '14/05/2015 21:38:04','-20,4', 'RA02');
execute insertartiradas('RA0242138,9018981481', '29', '14/05/2015 21:38:44','18,4', 'RA02');
execute insertartiradas('RA0242138,9024652778', '23', '14/05/2015 21:39:33','-18,5', 'RA02');
execute insertartiradas('RA0242138,9029166667', '6', '14/05/2015 21:40:12','14,9', 'RA02');
execute insertartiradas('RA0242138,9034143519', '15', '14/05/2015 21:40:55','-18,8', 'RA02');
execute insertartiradas('RA0242138,9039236111', '18', '14/05/2015 21:41:39','15,8', 'RA02');
execute insertartiradas('RA0242138,9042824074', '15', '14/05/2015 21:42:10','-16,3', 'RA02');
execute insertartiradas('RA0242138,9048148148', '13', '14/05/2015 21:42:56','16,7', 'RA02');
execute insertartiradas('RA0242138,9055787037', '8', '14/05/2015 21:44:02','-20,9', 'RA02');
execute insertartiradas('RA0242138,9060416667', '31', '14/05/2015 21:44:42','16,6', 'RA02');
execute insertartiradas('RA0242138,9065162037', '27', '14/05/2015 21:45:23','-17,3', 'RA02');
execute insertartiradas('RA0242138,9071296296', '24', '14/05/2015 21:46:16','15,4', 'RA02');
execute insertartiradas('RA0242138,9074884259', '21', '14/05/2015 21:46:47','-20,2', 'RA02');
execute insertartiradas('RA0242138,9081712963', '2', '14/05/2015 21:47:46','17,3', 'RA02');
execute insertartiradas('RA0242138,9086805556', '32', '14/05/2015 21:48:30','-19', 'RA02');
execute insertartiradas('RA0242138,9094097222', '22', '14/05/2015 21:49:33','15,8', 'RA02');
execute insertartiradas('RA0242138,9102430556', '20', '14/05/2015 21:50:45','-17,2', 'RA02');
execute insertartiradas('RA0242138,9110069444', '8', '14/05/2015 21:51:51','17,6', 'RA02');
execute insertartiradas('RA0242138,9117476852', '18', '14/05/2015 21:52:55','-18', 'RA02');
execute insertartiradas('RA0242138,9124537037', '31', '14/05/2015 21:53:56','13,8', 'RA02');
execute insertartiradas('RA0242138,913125', '8', '14/05/2015 21:54:54','-16,4', 'RA02');
execute insertartiradas('RA0242138,9136458333', '24', '14/05/2015 21:55:39','15,3', 'RA02');
execute insertartiradas('RA0242138,9144444444', '20', '14/05/2015 21:56:48','-20', 'RA02');
execute insertartiradas('RA0242138,9152199074', '10', '14/05/2015 21:57:55','14,8', 'RA02');
execute insertartiradas('RA0242138,9159375', '3', '14/05/2015 21:58:57','-14,7', 'RA02');
execute insertartiradas('RA0242138,9166898148', '26', '14/05/2015 22:00:02','16,4', 'RA02');
execute insertartiradas('RA0242138,9178472222', '6', '14/05/2015 22:01:42','-17,9', 'RA02');
execute insertartiradas('RA0242138,9185416667', '19', '14/05/2015 22:02:42','19', 'RA02');
execute insertartiradas('RA0242138,9192361111', '25', '14/05/2015 22:03:42','-20,9', 'RA02');
execute insertartiradas('RA0242138,9201157407', '27', '14/05/2015 22:04:58','19,3', 'RA02');
execute insertartiradas('RA0242138,9209490741', '4', '14/05/2015 22:06:10','-22,9', 'RA02');
execute insertartiradas('RA0242138,9218171296', '5', '14/05/2015 22:07:25','18,7', 'RA02');
execute insertartiradas('RA0242138,9228587963', '35', '14/05/2015 22:08:55','-20,3', 'RA02');
execute insertartiradas('RA0242138,9241203704', '11', '14/05/2015 22:10:44','18,2', 'RA02');
execute insertartiradas('RA0242138,9250694444', '30', '14/05/2015 22:12:06','-24,8', 'RA02');
execute insertartiradas('RA0242138,9263773148', '33', '14/05/2015 22:13:59','19,1', 'RA02');
execute insertartiradas('RA0242138,9275578704', '9', '14/05/2015 22:15:41','-19,9', 'RA02');
execute insertartiradas('RA0242138,9283101852', '13', '14/05/2015 22:16:46','18,9', 'RA02');
execute insertartiradas('RA0242138,9290972222', '17', '14/05/2015 22:17:54','-19,1', 'RA02');
execute insertartiradas('RA0242138,9303819444', '30', '14/05/2015 22:19:45','16,3', 'RA02');
execute insertartiradas('RA0242138,9314930556', '13', '14/05/2015 22:21:21','-18,4', 'RA02');
execute insertartiradas('RA0242138,932337963', '11', '14/05/2015 22:22:34','20,2', 'RA02');
execute insertartiradas('RA0242138,9332291667', '15', '14/05/2015 22:23:51','-19,6', 'RA02');
execute insertartiradas('RA0242138,9339814815', '10', '14/05/2015 22:24:56','19,5', 'RA02');
execute insertartiradas('RA0242138,9346643519', '5', '14/05/2015 22:25:55','-20', 'RA02');
execute insertartiradas('RA0242138,9370486111', '25', '14/05/2015 22:29:21','18,3', 'RA02');
execute insertartiradas('RA0242138,9374421296', '3', '14/05/2015 22:29:55','-20,8', 'RA02');
execute insertartiradas('RA0242138,9379282407', '26', '14/05/2015 22:30:37','16', 'RA02');
execute insertartiradas('RA0242138,9384606481', '22', '14/05/2015 22:31:23','-20,6', 'RA02');
execute insertartiradas('RA0242138,9393171296', '5', '14/05/2015 22:32:37','16,7', 'RA02');
execute insertartiradas('RA0242138,9399768518', '33', '14/05/2015 22:33:34','-21,2', 'RA02');
execute insertartiradas('RA0242138,9405324074', '3', '14/05/2015 22:34:22','16,3', 'RA02');
execute insertartiradas('RA0242138,9409143518', '9', '14/05/2015 22:34:55','-22,2', 'RA02');
execute insertartiradas('RA0242138,9413657407', '0', '14/05/2015 22:35:34','17,2', 'RA02');
execute insertartiradas('RA0242138,9430208333', '8', '14/05/2015 22:37:57','-19,2', 'RA02');
execute insertartiradas('RA0242138,9434953704', '20', '14/05/2015 22:38:38','18,6', 'RA02');
execute insertartiradas('RA0242138,9444444444', '18', '14/05/2015 22:40:00','-19,3', 'RA02');
execute insertartiradas('RA0242138,9451967593', '1', '14/05/2015 22:41:05','18,9', 'RA02');
execute insertartiradas('RA0242138,946099537', '22', '14/05/2015 22:42:23','-18,9', 'RA02');
execute insertartiradas('RA0242138,9467476852', '13', '14/05/2015 22:43:19','20,1', 'RA02');
execute insertartiradas('RA0242138,9473148148', '8', '14/05/2015 22:44:08','-18,8', 'RA02');
execute insertartiradas('RA0242138,9478356481', '25', '14/05/2015 22:44:53','20,1', 'RA02');
execute insertartiradas('RA0242138,9484490741', '8', '14/05/2015 22:45:46','-20,1', 'RA02');
execute insertartiradas('RA0242138,9488773148', '1', '14/05/2015 22:46:23','17,3', 'RA02');
execute insertartiradas('RA0242138,9493055556', '32', '14/05/2015 22:47:00','-21,3', 'RA02');
execute insertartiradas('RA0242138,9497569444', '33', '14/05/2015 22:47:39','18,7', 'RA02');
execute insertartiradas('RA0242138,9502430556', '28', '14/05/2015 22:48:21','-18,5', 'RA02');
execute insertartiradas('RA0242138,9507291667', '24', '14/05/2015 22:49:03','15,8', 'RA02');
execute insertartiradas('RA0242138,9512152778', '14', '14/05/2015 22:49:45','-17', 'RA02');
execute insertartiradas('RA0242138,9516435185', '14', '14/05/2015 22:50:22','17,5', 'RA02');
execute insertartiradas('RA0242138,9521064815', '25', '14/05/2015 22:51:02','-20,2', 'RA02');
execute insertartiradas('RA0242138,9525578704', '8', '14/05/2015 22:51:41','16,8', 'RA02');
execute insertartiradas('RA0242138,952974537', '11', '14/05/2015 22:52:17','-19,5', 'RA02');
execute insertartiradas('RA0242138,9533217593', '19', '14/05/2015 22:52:47','20,3', 'RA02');
execute insertartiradas('RA0242138,9539930556', '30', '14/05/2015 22:53:45','-18', 'RA02');
execute insertartiradas('RA0242138,9545717593', '25', '14/05/2015 22:54:35','21,8', 'RA02');
execute insertartiradas('RA0242138,9550810185', '27', '14/05/2015 22:55:19','-17,9', 'RA02');
execute insertartiradas('RA0242138,9556365741', '3', '14/05/2015 22:56:07','19,5', 'RA02');
execute insertartiradas('RA0242138,9560648148', '14', '14/05/2015 22:56:44','-18,6', 'RA02');
execute insertartiradas('RA0242138,9564930556', '12', '14/05/2015 22:57:21','14,8', 'RA02');
execute insertartiradas('RA0242138,9574652778', '30', '14/05/2015 22:58:45','-20,1', 'RA02');
execute insertartiradas('RA0242138,9579166667', '23', '14/05/2015 22:59:24','18,2', 'RA02');
execute insertartiradas('RA0242138,9583564815', '28', '14/05/2015 23:00:02','-18,9', 'RA02');
execute insertartiradas('RA0242138,9587384259', '3', '14/05/2015 23:00:35','18', 'RA02');
execute insertartiradas('RA0242138,9593287037', '8', '14/05/2015 23:01:26','-22,6', 'RA02');
execute insertartiradas('RA0242138,9598726852', '2', '14/05/2015 23:02:13','20,4', 'RA02');
execute insertartiradas('RA0242138,9604861111', '24', '14/05/2015 23:03:06','-21', 'RA02');
execute insertartiradas('RA0242138,9610416667', '31', '14/05/2015 23:03:54','20,6', 'RA02');
execute insertartiradas('RA0242138,9616087963', '5', '14/05/2015 23:04:43','-17,9', 'RA02');
execute insertartiradas('RA0242138,9620949074', '31', '14/05/2015 23:05:25','23,8', 'RA02');
execute insertartiradas('RA0242138,9626967593', '25', '14/05/2015 23:06:17','-18,7', 'RA02');
execute insertartiradas('RA0242138,9636226852', '15', '14/05/2015 23:07:37','24,9', 'RA02');
execute insertartiradas('RA0242138,9641666667', '1', '14/05/2015 23:08:24','-19,9', 'RA02');
execute insertartiradas('RA0242138,9647569444', '36', '14/05/2015 23:09:15','24,1', 'RA02');
execute insertartiradas('RA0242138,965625', '28', '14/05/2015 23:10:30','-22,5', 'RA02');
execute insertartiradas('RA0242138,9664236111', '17', '14/05/2015 23:11:39','19,4', 'RA02');
execute insertartiradas('RA0242138,966875', '23', '14/05/2015 23:12:18','-20,8', 'RA02');
execute insertartiradas('RA0242138,9673148148', '0', '14/05/2015 23:12:56','20,7', 'RA02');
execute insertartiradas('RA0242138,968449074', '11', '14/05/2015 23:14:34','-23,5', 'RA02');
execute insertartiradas('RA0242138,9687731481', '13', '14/05/2015 23:15:02','20,9', 'RA02');
execute insertartiradas('RA0242138,9693287037', '23', '14/05/2015 23:15:50','-20,9', 'RA02');
execute insertartiradas('RA0242138,9696990741', '29', '14/05/2015 23:16:22','20', 'RA02');
execute insertartiradas('RA0242138,9700694444', '17', '14/05/2015 23:16:54','-22,8', 'RA02');
execute insertartiradas('RA0242138,9704282407', '6', '14/05/2015 23:17:25','19,2', 'RA02');
execute insertartiradas('RA0242138,9708449074', '16', '14/05/2015 23:18:01','-20,4', 'RA02');
execute insertartiradas('RA0242138,9718171296', '2', '14/05/2015 23:19:25','23,8', 'RA02');
execute insertartiradas('RA0242138,9724537037', '8', '14/05/2015 23:20:20','-22,1', 'RA02');
execute insertartiradas('RA0242138,9729050926', '16', '14/05/2015 23:20:59','21,7', 'RA02');
execute insertartiradas('RA0242138,9734027778', '19', '14/05/2015 23:21:42','-23,1', 'RA02');
execute insertartiradas('RA0242138,9740393519', '0', '14/05/2015 23:22:37','14,5', 'RA02');
execute insertartiradas('RA0242138,9748148148', '11', '14/05/2015 23:23:44','-16,2', 'RA02');
execute insertartiradas('RA0242138,975462963', '32', '14/05/2015 23:24:40','19,4', 'RA02');
execute insertartiradas('RA0242138,976099537', '11', '14/05/2015 23:25:35','-18,3', 'RA02');
execute insertartiradas('RA0242138,9767592593', '29', '14/05/2015 23:26:32','18,1', 'RA02');
execute insertartiradas('RA0242138,9772916666', '6', '14/05/2015 23:27:18','-17,8', 'RA02');
execute insertartiradas('RA0242138,9779398148', '25', '14/05/2015 23:28:14','14,8', 'RA02');
execute insertartiradas('RA0242138,9784837963', '3', '14/05/2015 23:29:01','-18,7', 'RA02');
execute insertartiradas('RA0242138,9790393518', '35', '14/05/2015 23:29:49','14', 'RA02');
execute insertartiradas('RA0242138,9795138889', '11', '14/05/2015 23:30:30','-21,5', 'RA02');
execute insertartiradas('RA0242138,9799768518', '8', '14/05/2015 23:31:10','13', 'RA02');
execute insertartiradas('RA0242138,980462963', '34', '14/05/2015 23:31:52','-15,6', 'RA02');
execute insertartiradas('RA0242138,9809490741', '6', '14/05/2015 23:32:34','16,3', 'RA02');
execute insertartiradas('RA0242138,9813310185', '35', '14/05/2015 23:33:07','-16,4', 'RA02');
execute insertartiradas('RA0242138,9820023148', '1', '14/05/2015 23:34:05','18,6', 'RA02');
execute insertartiradas('RA0242138,9825', '11', '14/05/2015 23:34:48','-16,1', 'RA02');
execute insertartiradas('RA0242138,9829976852', '21', '14/05/2015 23:35:31','18,6', 'RA02');
execute insertartiradas('RA0242138,9835069444', '29', '14/05/2015 23:36:15','-16,1', 'RA02');
execute insertartiradas('RA0242138,9840046296', '17', '14/05/2015 23:36:58','12', 'RA02');
execute insertartiradas('RA0242138,9845023148', '21', '14/05/2015 23:37:41','-16,7', 'RA02');
execute insertartiradas('RA0242138,9849421296', '33', '14/05/2015 23:38:19','16,1', 'RA02');
execute insertartiradas('RA0242138,9855787037', '27', '14/05/2015 23:39:14','-19,5', 'RA02');
execute insertartiradas('RA0242138,98625', '3', '14/05/2015 23:40:12','16,8', 'RA02');
execute insertartiradas('RA0242138,9877083333', '3', '14/05/2015 23:42:18','-15,1', 'RA02');
execute insertartiradas('RA0242138,9883796296', '3', '14/05/2015 23:43:16','17,9', 'RA02');
execute insertartiradas('RA0242138,9890856482', '18', '14/05/2015 23:44:17','-14', 'RA02');
execute insertartiradas('RA0242138,9896064815', '34', '14/05/2015 23:45:02','19,1', 'RA02');
execute insertartiradas('RA0242138,9975694444', '29', '14/05/2015 23:56:30','-14,6', 'RA02');
execute insertartiradas('RA0242139,0042013889', '14', '15/05/2015 00:06:03','16,2', 'RA02');
execute insertartiradas('RA0242139,0303125', '31', '15/05/2015 00:43:39','-20,9', 'RA02');
execute insertartiradas('RA0242139,0307291667', '25', '15/05/2015 00:44:15','21,3', 'RA02');
execute insertartiradas('RA0242139,0332291667', '24', '15/05/2015 00:47:51','-22,9', 'RA02');
execute insertartiradas('RA0242139,0338773148', '22', '15/05/2015 00:48:47','21,2', 'RA02');
execute insertartiradas('RA0242139,0343402777', '27', '15/05/2015 00:49:27','-20,8', 'RA02');
execute insertartiradas('RA0242139,0347800926', '24', '15/05/2015 00:50:05','22,4', 'RA02');
execute insertartiradas('RA0242139,0354166667', '36', '15/05/2015 00:51:00','-18,5', 'RA02');
execute insertartiradas('RA0242139,0365046296', '2', '15/05/2015 00:52:34','19', 'RA02');
execute insertartiradas('RA0242139,0373263889', '15', '15/05/2015 00:53:45','-23,6', 'RA02');
execute insertartiradas('RA0242139,0381597222', '9', '15/05/2015 00:54:57','20,4', 'RA02');
execute insertartiradas('RA0242139,0390972222', '9', '15/05/2015 00:56:18','-20,3', 'RA02');
execute insertartiradas('RA0242139,0400578704', '20', '15/05/2015 00:57:41','11,4', 'RA02');
execute insertartiradas('RA0242139,0409259259', '2', '15/05/2015 00:58:56','-24,4', 'RA02');
execute insertartiradas('RA0242139,0417824074', '28', '15/05/2015 01:00:10','22,5', 'RA02');
execute insertartiradas('RA0242139,042962963', '1', '15/05/2015 01:01:52','-19,7', 'RA02');
execute insertartiradas('RA0242139,0438773148', '9', '15/05/2015 01:03:11','18,5', 'RA02');
execute insertartiradas('RA0342005,7575347222', '10', '01/01/2015 18:10:51','17', 'RA03');
execute insertartiradas('RA0342005,7712268519', '9', '01/01/2015 18:30:34','22,1', 'RA03');
execute insertartiradas('RA0342005,7824074074', '6', '01/01/2015 18:46:40','-20,8', 'RA03');
execute insertartiradas('RA0342005,7904861111', '13', '01/01/2015 18:58:18','11', 'RA03');
execute insertartiradas('RA0342005,8112615741', '2', '01/01/2015 19:28:13','16', 'RA03');
execute insertartiradas('RA0342005,903125', '22', '01/01/2015 21:40:30','18,2', 'RA03');
execute insertartiradas('RA0342006,077662037', '0', '02/01/2015 01:51:50','-16,1', 'RA03');
execute insertartiradas('RA0342006,7616898148', '18', '02/01/2015 18:16:50','17', 'RA03');
execute insertartiradas('RA0342006,7646296296', '1', '02/01/2015 18:21:04','-22,4', 'RA03');
execute insertartiradas('RA0342006,8504050926', '30', '02/01/2015 20:24:35','-18', 'RA03');
execute insertartiradas('RA0342006,9362962963', '36', '02/01/2015 22:28:16','17', 'RA03');
execute insertartiradas('RA0342006,9511805556', '1', '02/01/2015 22:49:42','-20,7', 'RA03');
execute insertartiradas('RA0342007,8142361111', '7', '03/01/2015 19:32:30','22,7', 'RA03');
execute insertartiradas('RA0342007,8601388889', '28', '03/01/2015 20:38:36','-17,1', 'RA03');
execute insertartiradas('RA0342007,9133449074', '13', '03/01/2015 21:55:13','18,2', 'RA03');
execute insertartiradas('RA0342008,8634027778', '1', '04/01/2015 20:43:18','-19,2', 'RA03');
execute insertartiradas('RA0342008,8693634259', '27', '04/01/2015 20:51:53','13,9', 'RA03');
execute insertartiradas('RA0342008,8733333333', '14', '04/01/2015 20:57:36','-13,9', 'RA03');
execute insertartiradas('RA0342008,8915393519', '2', '04/01/2015 21:23:49','-16,8', 'RA03');
execute insertartiradas('RA0342008,9469907407', '6', '04/01/2015 22:43:40','-16,6', 'RA03');
execute insertartiradas('RA0342008,9651736111', '0', '04/01/2015 23:09:51','-17,9', 'RA03');
execute insertartiradas('RA0342008,9905324074', '32', '04/01/2015 23:46:22','-18,6', 'RA03');
execute insertartiradas('RA0342008,9958101852', '13', '04/01/2015 23:53:58','-17,4', 'RA03');
execute insertartiradas('RA0342009,0963310185', '9', '05/01/2015 02:18:43','13,8', 'RA03');
execute insertartiradas('RA0342009,7545717593', '33', '05/01/2015 18:06:35','19,9', 'RA03');
execute insertartiradas('RA0342009,7585416666', '5', '05/01/2015 18:12:18','16,3', 'RA03');
execute insertartiradas('RA0342009,7769097222', '6', '05/01/2015 18:38:45','19,5', 'RA03');
execute insertartiradas('RA0342009,7787268519', '33', '05/01/2015 18:41:22','-13,5', 'RA03');
execute insertartiradas('RA0342009,7848842593', '11', '05/01/2015 18:50:14','-17,6', 'RA03');
execute insertartiradas('RA0342009,8301388889', '30', '05/01/2015 19:55:24','17,5', 'RA03');
execute insertartiradas('RA0342009,9250694444', '22', '05/01/2015 22:12:06','15,6', 'RA03');
execute insertartiradas('RA0342009,9281944444', '32', '05/01/2015 22:16:36','19,3', 'RA03');
execute insertartiradas('RA0342010,8271990741', '1', '06/01/2015 19:51:10','-21,6', 'RA03');
execute insertartiradas('RA0342010,8424652778', '29', '06/01/2015 20:13:09','-14,5', 'RA03');
execute insertartiradas('RA0342010,8820833333', '6', '06/01/2015 21:10:12','16,8', 'RA03');
execute insertartiradas('RA0342010,9115162037', '26', '06/01/2015 21:52:35','15,8', 'RA03');
execute insertartiradas('RA0342010,915787037', '13', '06/01/2015 21:58:44','-15,2', 'RA03');
execute insertartiradas('RA0342010,9398958333', '17', '06/01/2015 22:33:27','15,3', 'RA03');
execute insertartiradas('RA0342010,9874305556', '29', '06/01/2015 23:41:54','-18,5', 'RA03');
execute insertartiradas('RA0342011,0356944444', '18', '07/01/2015 00:51:24','14,8', 'RA03');
execute insertartiradas('RA0342011,756724537', '19', '07/01/2015 18:09:41','15,3', 'RA03');
execute insertartiradas('RA0342011,7635069444', '30', '07/01/2015 18:19:27','16,1', 'RA03');
execute insertartiradas('RA0342011,8052777778', '33', '07/01/2015 19:19:36','14,6', 'RA03');
execute insertartiradas('RA0342011,8134027778', '35', '07/01/2015 19:31:18','12,8', 'RA03');
execute insertartiradas('RA0342011,8613194444', '28', '07/01/2015 20:40:18','-18,3', 'RA03');
execute insertartiradas('RA0342011,8661689815', '23', '07/01/2015 20:47:17','16,2', 'RA03');
execute insertartiradas('RA0342011,8855439815', '22', '07/01/2015 21:15:11','-17,8', 'RA03');
execute insertartiradas('RA0342012,7917013889', '25', '08/01/2015 19:00:03','-18,6', 'RA03');
execute insertartiradas('RA0342012,7984953704', '4', '08/01/2015 19:09:50','-20,3', 'RA03');
execute insertartiradas('RA0342013,0005555556', '33', '09/01/2015 00:00:48','-19,7', 'RA03');
execute insertartiradas('RA0342013,7874305556', '14', '09/01/2015 18:53:54','-20,3', 'RA03');
execute insertartiradas('RA0342013,8027430556', '1', '09/01/2015 19:15:57','17,8', 'RA03');
execute insertartiradas('RA0342013,8725231482', '9', '09/01/2015 20:56:26','-17,7', 'RA03');
execute insertartiradas('RA0342013,9201041667', '15', '09/01/2015 22:04:57','-19,1', 'RA03');
execute insertartiradas('RA0342013,9488194444', '20', '09/01/2015 22:46:18','16,6', 'RA03');
execute insertartiradas('RA0342013,9551736111', '31', '09/01/2015 22:55:27','20,6', 'RA03');
execute insertartiradas('RA0342014,7690972222', '7', '10/01/2015 18:27:30','-17,5', 'RA03');
execute insertartiradas('RA0342014,7967476852', '23', '10/01/2015 19:07:19','21,3', 'RA03');
execute insertartiradas('RA0342014,8293518519', '0', '10/01/2015 19:54:16','19', 'RA03');
execute insertartiradas('RA0342014,8599305556', '9', '10/01/2015 20:38:18','-16,9', 'RA03');
execute insertartiradas('RA0342014,8813078704', '0', '10/01/2015 21:09:05','-22,9', 'RA03');
execute insertartiradas('RA0342014,8974421296', '15', '10/01/2015 21:32:19','-25,3', 'RA03');
execute insertartiradas('RA0342015,0161226852', '29', '11/01/2015 00:23:13','18', 'RA03');
execute insertartiradas('RA0342015,017349537', '27', '11/01/2015 00:24:59','-19,3', 'RA03');
execute insertartiradas('RA0342015,0753240741', '13', '11/01/2015 01:48:28','-23,4', 'RA03');
execute insertartiradas('RA0342015,7786689815', '6', '11/01/2015 18:41:17','-18,5', 'RA03');
execute insertartiradas('RA0342015,782650463', '28', '11/01/2015 18:47:01','15,5', 'RA03');
execute insertartiradas('RA0342015,7979050925', '0', '11/01/2015 19:08:59','-19,7', 'RA03');
execute insertartiradas('RA0342015,8201967593', '3', '11/01/2015 19:41:05','-16,3', 'RA03');
execute insertartiradas('RA0342015,8312731481', '3', '11/01/2015 19:57:02','-14,9', 'RA03');
execute insertartiradas('RA0342015,8685532407', '7', '11/01/2015 20:50:43','15,7', 'RA03');
execute insertartiradas('RA0342015,8747222222', '2', '11/01/2015 20:59:36','-18,1', 'RA03');
execute insertartiradas('RA0342015,8863425926', '15', '11/01/2015 21:16:20','-16,7', 'RA03');
execute insertartiradas('RA0342016,0447106482', '26', '12/01/2015 01:04:23','-18,4', 'RA03');
execute insertartiradas('RA0342016,046574074', '9', '12/01/2015 01:07:04','-18,3', 'RA03');
execute insertartiradas('RA0342016,7621412037', '7', '12/01/2015 18:17:29','18,3', 'RA03');
execute insertartiradas('RA0342016,7719675926', '6', '12/01/2015 18:31:38','-18,3', 'RA03');
execute insertartiradas('RA0342016,7776273148', '3', '12/01/2015 18:39:47','-20,4', 'RA03');
execute insertartiradas('RA0342016,7886458333', '2', '12/01/2015 18:55:39','17,4', 'RA03');
execute insertartiradas('RA0342016,8445833333', '2', '12/01/2015 20:16:12','16,2', 'RA03');
execute insertartiradas('RA0342016,8536111111', '2', '12/01/2015 20:29:12','16,4', 'RA03');
execute insertartiradas('RA0342016,8579166667', '14', '12/01/2015 20:35:24','-18,9', 'RA03');
execute insertartiradas('RA0342017,0100231481', '7', '13/01/2015 00:14:26','-15', 'RA03');
execute insertartiradas('RA0342017,7726157407', '32', '13/01/2015 18:32:34','-17,8', 'RA03');
execute insertartiradas('RA0342017,7933796296', '14', '13/01/2015 19:02:28','-16,5', 'RA03');
execute insertartiradas('RA0342017,8173842593', '36', '13/01/2015 19:37:02','-20,5', 'RA03');
execute insertartiradas('RA0342017,8211226852', '29', '13/01/2015 19:42:25','19,5', 'RA03');
execute insertartiradas('RA0342018,7664930556', '30', '14/01/2015 18:23:45','-17,4', 'RA03');
execute insertartiradas('RA0342018,8171412037', '32', '14/01/2015 19:36:41','-16,9', 'RA03');
execute insertartiradas('RA0342018,8893518519', '27', '14/01/2015 21:20:40','17,3', 'RA03');
execute insertartiradas('RA0342018,9213425926', '4', '14/01/2015 22:06:44','-19,4', 'RA03');
execute insertartiradas('RA0342018,9300925926', '36', '14/01/2015 22:19:20','12,2', 'RA03');
execute insertartiradas('RA0342019,7578587963', '4', '15/01/2015 18:11:19','20', 'RA03');
execute insertartiradas('RA0342019,795150463', '22', '15/01/2015 19:05:01','-13', 'RA03');
execute insertartiradas('RA0342019,8293171296', '0', '15/01/2015 19:54:13','17,9', 'RA03');
execute insertartiradas('RA0342020,0701967593', '23', '16/01/2015 01:41:05','-18,3', 'RA03');
execute insertartiradas('RA0342020,7589930556', '22', '16/01/2015 18:12:57','19,8', 'RA03');
execute insertartiradas('RA0342020,771412037', '10', '16/01/2015 18:30:50','-17,6', 'RA03');
execute insertartiradas('RA0342020,7754050926', '28', '16/01/2015 18:36:35','23,8', 'RA03');
execute insertartiradas('RA0342020,789837963', '11', '16/01/2015 18:57:22','-18,7', 'RA03');
execute insertartiradas('RA0342020,8683564815', '27', '16/01/2015 20:50:26','21,6', 'RA03');
execute insertartiradas('RA0342020,9212731481', '11', '16/01/2015 22:06:38','-21,3', 'RA03');
execute insertartiradas('RA0342020,9228356481', '10', '16/01/2015 22:08:53','-19,4', 'RA03');
execute insertartiradas('RA0342021,7966666667', '2', '17/01/2015 19:07:12','20,3', 'RA03');
execute insertartiradas('RA0342021,8374652778', '25', '17/01/2015 20:05:57','16,9', 'RA03');
execute insertartiradas('RA0342021,8445949074', '27', '17/01/2015 20:16:13','-18,2', 'RA03');
execute insertartiradas('RA0342022,0354513889', '12', '18/01/2015 00:51:03','-17,8', 'RA03');
execute insertartiradas('RA0342022,04', '24', '18/01/2015 00:57:36','19,7', 'RA03');
execute insertartiradas('RA0342022,0872800926', '17', '18/01/2015 02:05:41','-16,2', 'RA03');
execute insertartiradas('RA0342022,7950925926', '24', '18/01/2015 19:04:56','-19,3', 'RA03');
execute insertartiradas('RA0342022,8317708333', '18', '18/01/2015 19:57:45','-20,6', 'RA03');
execute insertartiradas('RA0342022,8339814815', '30', '18/01/2015 20:00:56','-16,7', 'RA03');
execute insertartiradas('RA0342022,8665856481', '33', '18/01/2015 20:47:53','-19,9', 'RA03');
execute insertartiradas('RA0342022,8713310185', '14', '18/01/2015 20:54:43','-20,4', 'RA03');
execute insertartiradas('RA0342022,9692476852', '14', '18/01/2015 23:15:43','17,5', 'RA03');
execute insertartiradas('RA0342023,7919328704', '33', '19/01/2015 19:00:23','20,7', 'RA03');
execute insertartiradas('RA0342023,7961574074', '29', '19/01/2015 19:06:28','17,3', 'RA03');
execute insertartiradas('RA0342023,8589467593', '19', '19/01/2015 20:36:53','23,5', 'RA03');
execute insertartiradas('RA0342023,9071064815', '25', '19/01/2015 21:46:14','-17,8', 'RA03');
execute insertartiradas('RA0342023,9472453704', '11', '19/01/2015 22:44:02','-18,4', 'RA03');
execute insertartiradas('RA0342023,9898842593', '17', '19/01/2015 23:45:26','-20,1', 'RA03');
execute insertartiradas('RA0342023,9957407407', '30', '19/01/2015 23:53:52','-15,1', 'RA03');
execute insertartiradas('RA0342024,0030787037', '24', '20/01/2015 00:04:26','15,7', 'RA03');
execute insertartiradas('RA0342024,8009375', '25', '20/01/2015 19:13:21','-18,4', 'RA03');
execute insertartiradas('RA0342024,811724537', '31', '20/01/2015 19:28:53','16', 'RA03');
execute insertartiradas('RA0342024,8752314815', '27', '20/01/2015 21:00:20','13,6', 'RA03');
execute insertartiradas('RA0342025,1083449074', '17', '21/01/2015 02:36:01','-17,8', 'RA03');
execute insertartiradas('RA0342025,7857291667', '23', '21/01/2015 18:51:27','-16', 'RA03');
execute insertartiradas('RA0342025,8161574074', '16', '21/01/2015 19:35:16','19,4', 'RA03');
execute insertartiradas('RA0342025,8303240741', '12', '21/01/2015 19:55:40','-20,7', 'RA03');
execute insertartiradas('RA0342026,0137268519', '1', '22/01/2015 00:19:46','13,7', 'RA03');
execute insertartiradas('RA0342026,0519791667', '7', '22/01/2015 01:14:51','16,3', 'RA03');
execute insertartiradas('RA0342026,7781828704', '14', '22/01/2015 18:40:35','-13,8', 'RA03');
execute insertartiradas('RA0342026,7921527777', '15', '22/01/2015 19:00:42','14,8', 'RA03');
execute insertartiradas('RA0342026,8405092593', '34', '22/01/2015 20:10:20','16,5', 'RA03');
execute insertartiradas('RA0342026,8503240741', '1', '22/01/2015 20:24:28','16,7', 'RA03');
execute insertartiradas('RA0342026,8708912037', '28', '22/01/2015 20:54:05','14,6', 'RA03');
execute insertartiradas('RA0342027,0003819444', '33', '23/01/2015 00:00:33','-16,1', 'RA03');
execute insertartiradas('RA0342027,0022916667', '20', '23/01/2015 00:03:18','-14,4', 'RA03');
execute insertartiradas('RA0342027,024224537', '30', '23/01/2015 00:34:53','19,4', 'RA03');
execute insertartiradas('RA0342027,0272106481', '32', '23/01/2015 00:39:11','20,6', 'RA03');
execute insertartiradas('RA0342027,7653587963', '29', '23/01/2015 18:22:07','-16,9', 'RA03');
execute insertartiradas('RA0342027,7789583333', '13', '23/01/2015 18:41:42','25,2', 'RA03');
execute insertartiradas('RA0342027,780462963', '20', '23/01/2015 18:43:52','-14,8', 'RA03');
execute insertartiradas('RA0342027,7948842593', '28', '23/01/2015 19:04:38','-21,5', 'RA03');
execute insertartiradas('RA0342027,8146875', '34', '23/01/2015 19:33:09','-13,3', 'RA03');
execute insertartiradas('RA0342027,8426388889', '28', '23/01/2015 20:13:24','17,8', 'RA03');
execute insertartiradas('RA0342027,9758564815', '14', '23/01/2015 23:25:14','17,7', 'RA03');
execute insertartiradas('RA0342027,9814814815', '17', '23/01/2015 23:33:20','20', 'RA03');
execute insertartiradas('RA0342027,9826157407', '32', '23/01/2015 23:34:58','-15,5', 'RA03');
execute insertartiradas('RA0342027,9922916667', '4', '23/01/2015 23:48:54','15,4', 'RA03');
execute insertartiradas('RA0342028,7848611111', '7', '24/01/2015 18:50:12','18,5', 'RA03');
execute insertartiradas('RA0342028,8492361111', '29', '24/01/2015 20:22:54','-25,1', 'RA03');
execute insertartiradas('RA0342028,8597222222', '19', '24/01/2015 20:38:00','-14,6', 'RA03');
execute insertartiradas('RA0342028,873599537', '33', '24/01/2015 20:57:59','13,6', 'RA03');
execute insertartiradas('RA0342028,8923726852', '13', '24/01/2015 21:25:01','18,5', 'RA03');
execute insertartiradas('RA0342028,8932291667', '30', '24/01/2015 21:26:15','-18', 'RA03');
execute insertartiradas('RA0342029,0597916667', '15', '25/01/2015 01:26:06','-17,7', 'RA03');
execute insertartiradas('RA0342029,1101736111', '26', '25/01/2015 02:38:39','-20,4', 'RA03');
execute insertartiradas('RA0342029,7950578704', '9', '25/01/2015 19:04:53','18,6', 'RA03');
execute insertartiradas('RA0342029,8665625', '13', '25/01/2015 20:47:51','-19,4', 'RA03');
execute insertartiradas('RA0342029,8713078703', '3', '25/01/2015 20:54:41','-18,4', 'RA03');
execute insertartiradas('RA0342029,9835416667', '3', '25/01/2015 23:36:18','17,7', 'RA03');
execute insertartiradas('RA0342030,7909375', '2', '26/01/2015 18:58:57','-16,8', 'RA03');
execute insertartiradas('RA0342030,7991666667', '36', '26/01/2015 19:10:48','-19,8', 'RA03');
execute insertartiradas('RA0342030,8080555556', '6', '26/01/2015 19:23:36','-14,4', 'RA03');
execute insertartiradas('RA0342030,8117013889', '17', '26/01/2015 19:28:51','18,1', 'RA03');
execute insertartiradas('RA0342030,8128240741', '5', '26/01/2015 19:30:28','16,2', 'RA03');
execute insertartiradas('RA0342030,8591203704', '0', '26/01/2015 20:37:08','13,8', 'RA03');
execute insertartiradas('RA0342030,9520717593', '28', '26/01/2015 22:50:59','-19,6', 'RA03');
execute insertartiradas('RA0342030,9758564815', '4', '26/01/2015 23:25:14','15,5', 'RA03');
execute insertartiradas('RA0342031,041712963', '4', '27/01/2015 01:00:04','-19', 'RA03');
execute insertartiradas('RA0342031,8260069444', '1', '27/01/2015 19:49:27','-14,6', 'RA03');
execute insertartiradas('RA0342031,8337152778', '6', '27/01/2015 20:00:33','-18,1', 'RA03');
execute insertartiradas('RA0342032,0721180556', '18', '28/01/2015 01:43:51','14,7', 'RA03');
execute insertartiradas('RA0342032,0892013889', '5', '28/01/2015 02:08:27','-16,3', 'RA03');
execute insertartiradas('RA0342032,7775810185', '12', '28/01/2015 18:39:43','16', 'RA03');
execute insertartiradas('RA0342032,8036689815', '33', '28/01/2015 19:17:17','16,9', 'RA03');
execute insertartiradas('RA0342032,8167592593', '27', '28/01/2015 19:36:08','-20,5', 'RA03');
execute insertartiradas('RA0342032,9508333333', '34', '28/01/2015 22:49:12','19,3', 'RA03');
execute insertartiradas('RA0342032,9882986111', '31', '28/01/2015 23:43:09','-20', 'RA03');
execute insertartiradas('RA0342033,7566203704', '6', '29/01/2015 18:09:32','16,3', 'RA03');
execute insertartiradas('RA0342033,7757986111', '3', '29/01/2015 18:37:09','12', 'RA03');
execute insertartiradas('RA0342033,7927893518', '17', '29/01/2015 19:01:37','-18,9', 'RA03');
execute insertartiradas('RA0342034,7693287037', '32', '30/01/2015 18:27:50','14,5', 'RA03');
execute insertartiradas('RA0342034,7936921296', '24', '30/01/2015 19:02:55','12,6', 'RA03');
execute insertartiradas('RA0342034,8127893519', '25', '30/01/2015 19:30:25','-19', 'RA03');
execute insertartiradas('RA0342034,8621527778', '27', '30/01/2015 20:41:30','-17,9', 'RA03');
execute insertartiradas('RA0342034,9428703704', '22', '30/01/2015 22:37:44','15,9', 'RA03');
execute insertartiradas('RA0342034,9553125', '29', '30/01/2015 22:55:39','-22,7', 'RA03');
execute insertartiradas('RA0342034,9923263889', '30', '30/01/2015 23:48:57','-21,5', 'RA03');
execute insertartiradas('RA0342035,774837963', '24', '31/01/2015 18:35:46','14,8', 'RA03');
execute insertartiradas('RA0342035,7901736111', '1', '31/01/2015 18:57:51','-16,9', 'RA03');
execute insertartiradas('RA0342035,7979513889', '0', '31/01/2015 19:09:03','-16,8', 'RA03');
execute insertartiradas('RA0342035,9212037037', '33', '31/01/2015 22:06:32','18,4', 'RA03');
execute insertartiradas('RA0342035,9348379629', '17', '31/01/2015 22:26:10','-19,5', 'RA03');
execute insertartiradas('RA0342035,9947453704', '3', '31/01/2015 23:52:26','15,2', 'RA03');
execute insertartiradas('RA0342036,0296990741', '23', '01/02/2015 00:42:46','-17,2', 'RA03');
execute insertartiradas('RA0342036,8038541667', '34', '01/02/2015 19:17:33','13,9', 'RA03');
execute insertartiradas('RA0342036,8330324074', '17', '01/02/2015 19:59:34','17,6', 'RA03');
execute insertartiradas('RA0342036,833900463', '9', '01/02/2015 20:00:49','-20,3', 'RA03');
execute insertartiradas('RA0342036,8467939815', '20', '01/02/2015 20:19:23','-19,4', 'RA03');
execute insertartiradas('RA0342036,9079166667', '2', '01/02/2015 21:47:24','17,6', 'RA03');
execute insertartiradas('RA0342036,9495833333', '2', '01/02/2015 22:47:24','-19,6', 'RA03');
execute insertartiradas('RA0342037,0148842593', '10', '02/02/2015 00:21:26','20,7', 'RA03');
execute insertartiradas('RA0342037,7609953704', '18', '02/02/2015 18:15:50','19,7', 'RA03');
execute insertartiradas('RA0342037,7811921296', '29', '02/02/2015 18:44:55','14,7', 'RA03');
execute insertartiradas('RA0342037,8114930556', '20', '02/02/2015 19:28:33','-21,7', 'RA03');
execute insertartiradas('RA0342037,8183101852', '0', '02/02/2015 19:38:22','18,3', 'RA03');
execute insertartiradas('RA0342037,8275694444', '22', '02/02/2015 19:51:42','19,8', 'RA03');
execute insertartiradas('RA0342037,8353703704', '15', '02/02/2015 20:02:56','-19,6', 'RA03');
execute insertartiradas('RA0342037,8893634259', '15', '02/02/2015 21:20:41','-18,6', 'RA03');
execute insertartiradas('RA0342037,9210069444', '21', '02/02/2015 22:06:15','17,7', 'RA03');
execute insertartiradas('RA0342038,792962963', '30', '03/02/2015 19:01:52','18,6', 'RA03');
execute insertartiradas('RA0342038,7945138888', '21', '03/02/2015 19:04:06','16,8', 'RA03');
execute insertartiradas('RA0342038,8088310185', '21', '03/02/2015 19:24:43','-20,4', 'RA03');
execute insertartiradas('RA0342038,8123148148', '22', '03/02/2015 19:29:44','-21,1', 'RA03');
execute insertartiradas('RA0342038,8675115741', '5', '03/02/2015 20:49:13','-20,6', 'RA03');
execute insertartiradas('RA0342039,760462963', '28', '04/02/2015 18:15:04','18,6', 'RA03');
execute insertartiradas('RA0342039,7628356482', '1', '04/02/2015 18:18:29','13,5', 'RA03');
execute insertartiradas('RA0342039,7760069444', '18', '04/02/2015 18:37:27','-12,9', 'RA03');
execute insertartiradas('RA0342039,8131018519', '29', '04/02/2015 19:30:52','10,7', 'RA03');
execute insertartiradas('RA0342039,8606712963', '22', '04/02/2015 20:39:22','-17,4', 'RA03');
execute insertartiradas('RA0342039,8726967593', '33', '04/02/2015 20:56:41','-19,5', 'RA03');
execute insertartiradas('RA0342039,9691550926', '15', '04/02/2015 23:15:35','-18,4', 'RA03');
execute insertartiradas('RA0342040,050150463', '4', '05/02/2015 01:12:13','-15,9', 'RA03');
execute insertartiradas('RA0342040,7672222222', '26', '05/02/2015 18:24:48','17,1', 'RA03');
execute insertartiradas('RA0342040,7887962963', '23', '05/02/2015 18:55:52','-13,3', 'RA03');
execute insertartiradas('RA0342040,7979861111', '11', '05/02/2015 19:09:06','19', 'RA03');
execute insertartiradas('RA0342040,8990856481', '23', '05/02/2015 21:34:41','13,4', 'RA03');
execute insertartiradas('RA0342040,9075925926', '3', '05/02/2015 21:46:56','19,9', 'RA03');
execute insertartiradas('RA0342040,9584837963', '14', '05/02/2015 23:00:13','18', 'RA03');
execute insertartiradas('RA0342041,0256712963', '28', '06/02/2015 00:36:58','-16,1', 'RA03');
execute insertartiradas('RA0342041,1153703704', '21', '06/02/2015 02:46:08','15,7', 'RA03');
execute insertartiradas('RA0342041,7818287037', '3', '06/02/2015 18:45:50','19,6', 'RA03');
execute insertartiradas('RA0342041,7878587963', '27', '06/02/2015 18:54:31','-20,5', 'RA03');
execute insertartiradas('RA0342041,7914351852', '30', '06/02/2015 18:59:40','18,8', 'RA03');
execute insertartiradas('RA0342041,8023263888', '1', '06/02/2015 19:15:21','-19,6', 'RA03');
execute insertartiradas('RA0342041,828125', '15', '06/02/2015 19:52:30','20,1', 'RA03');
execute insertartiradas('RA0342041,8787384259', '35', '06/02/2015 21:05:23','-13,8', 'RA03');
execute insertartiradas('RA0342041,9553125', '21', '06/02/2015 22:55:39','-17,3', 'RA03');
execute insertartiradas('RA0342042,0173958333', '15', '07/02/2015 00:25:03','-19,7', 'RA03');
execute insertartiradas('RA0342042,7741203704', '2', '07/02/2015 18:34:44','19,6', 'RA03');
execute insertartiradas('RA0342042,8436458333', '5', '07/02/2015 20:14:51','-18,8', 'RA03');
execute insertartiradas('RA0342042,8702314815', '11', '07/02/2015 20:53:08','-20,2', 'RA03');
execute insertartiradas('RA0342042,8957754629', '7', '07/02/2015 21:29:55','13,7', 'RA03');
execute insertartiradas('RA0342043,072662037', '8', '08/02/2015 01:44:38','12,1', 'RA03');
execute insertartiradas('RA0342043,1406481481', '36', '08/02/2015 03:22:32','-17,8', 'RA03');
execute insertartiradas('RA0342043,7755787037', '33', '08/02/2015 18:36:50','17,8', 'RA03');
execute insertartiradas('RA0342043,8685532407', '31', '08/02/2015 20:50:43','-16,7', 'RA03');
execute insertartiradas('RA0342043,9642476852', '16', '08/02/2015 23:08:31','19,9', 'RA03');
execute insertartiradas('RA0342044,7542592593', '29', '09/02/2015 18:06:08','22,6', 'RA03');
execute insertartiradas('RA0342044,7693981481', '27', '09/02/2015 18:27:56','20,1', 'RA03');
execute insertartiradas('RA0342044,7711458333', '24', '09/02/2015 18:30:27','21', 'RA03');
execute insertartiradas('RA0342044,8030208333', '24', '09/02/2015 19:16:21','17,3', 'RA03');
execute insertartiradas('RA0342044,8796875', '17', '09/02/2015 21:06:45','-17,3', 'RA03');
execute insertartiradas('RA0342044,9706365741', '1', '09/02/2015 23:17:43','-17', 'RA03');
execute insertartiradas('RA0342045,7951157407', '23', '10/02/2015 19:04:58','-13,8', 'RA03');
execute insertartiradas('RA0342045,8062037037', '4', '10/02/2015 19:20:56','-16,3', 'RA03');
execute insertartiradas('RA0342045,8109837963', '21', '10/02/2015 19:27:49','17,7', 'RA03');
execute insertartiradas('RA0342045,8151388889', '34', '10/02/2015 19:33:48','15,1', 'RA03');
execute insertartiradas('RA0342045,8335763888', '17', '10/02/2015 20:00:21','14,6', 'RA03');
execute insertartiradas('RA0342045,8394907407', '28', '10/02/2015 20:08:52','-15,1', 'RA03');
execute insertartiradas('RA0342045,9046412037', '3', '10/02/2015 21:42:41','12,4', 'RA03');
execute insertartiradas('RA0342046,7725694444', '2', '11/02/2015 18:32:30','-20', 'RA03');
execute insertartiradas('RA0342046,8074421296', '36', '11/02/2015 19:22:43','17,4', 'RA03');
execute insertartiradas('RA0342046,8136921296', '10', '11/02/2015 19:31:43','-19,8', 'RA03');
execute insertartiradas('RA0342046,8281134259', '6', '11/02/2015 19:52:29','-15,8', 'RA03');
execute insertartiradas('RA0342046,8380324074', '18', '11/02/2015 20:06:46','-16,6', 'RA03');
execute insertartiradas('RA0342046,8561458333', '19', '11/02/2015 20:32:51','17', 'RA03');
execute insertartiradas('RA0342046,8636574074', '28', '11/02/2015 20:43:40','17,8', 'RA03');
execute insertartiradas('RA0342046,8929398148', '29', '11/02/2015 21:25:50','16,5', 'RA03');
execute insertartiradas('RA0342046,9234606481', '9', '11/02/2015 22:09:47','-15,6', 'RA03');
execute insertartiradas('RA0342046,932349537', '24', '11/02/2015 22:22:35','-13,7', 'RA03');
execute insertartiradas('RA0342046,9782523148', '13', '11/02/2015 23:28:41','13,9', 'RA03');
execute insertartiradas('RA0342046,9874652777', '29', '11/02/2015 23:41:57','-17', 'RA03');
execute insertartiradas('RA0342047,0140162037', '16', '12/02/2015 00:20:11','-14,2', 'RA03');
execute insertartiradas('RA0342047,0241435185', '24', '12/02/2015 00:34:46','-16,3', 'RA03');
execute insertartiradas('RA0342047,0345486111', '9', '12/02/2015 00:49:45','-18,1', 'RA03');
execute insertartiradas('RA0342047,7593518519', '23', '12/02/2015 18:13:28','18,3', 'RA03');
execute insertartiradas('RA0342047,7744791667', '5', '12/02/2015 18:35:15','14,3', 'RA03');
execute insertartiradas('RA0342047,776712963', '23', '12/02/2015 18:38:28','-15,3', 'RA03');
execute insertartiradas('RA0342047,7850925926', '31', '12/02/2015 18:50:32','15,2', 'RA03');
execute insertartiradas('RA0342047,8146759259', '18', '12/02/2015 19:33:08','20,2', 'RA03');
execute insertartiradas('RA0342047,8293981481', '10', '12/02/2015 19:54:20','18', 'RA03');
execute insertartiradas('RA0342047,8456828704', '5', '12/02/2015 20:17:47','15,5', 'RA03');
execute insertartiradas('RA0342047,8790277778', '27', '12/02/2015 21:05:48','-16,7', 'RA03');
execute insertartiradas('RA0342048,0226041667', '35', '13/02/2015 00:32:33','18,1', 'RA03');
execute insertartiradas('RA0342048,7918287037', '11', '13/02/2015 19:00:14','18,3', 'RA03');
execute insertartiradas('RA0342048,7998032407', '23', '13/02/2015 19:11:43','13,2', 'RA03');
execute insertartiradas('RA0342048,8058564815', '27', '13/02/2015 19:20:26','17,6', 'RA03');
execute insertartiradas('RA0342048,8115972222', '0', '13/02/2015 19:28:42','-17,5', 'RA03');
execute insertartiradas('RA0342048,8222453704', '4', '13/02/2015 19:44:02','-19,3', 'RA03');
execute insertartiradas('RA0342048,8708217593', '13', '13/02/2015 20:53:59','-16,4', 'RA03');
execute insertartiradas('RA0342048,9848726852', '31', '13/02/2015 23:38:13','-13,5', 'RA03');
execute insertartiradas('RA0342049,0025462963', '36', '14/02/2015 00:03:40','-20,1', 'RA03');
execute insertartiradas('RA0342049,8540972222', '20', '14/02/2015 20:29:54','16,2', 'RA03');
execute insertartiradas('RA0342049,8642361111', '6', '14/02/2015 20:44:30','17,5', 'RA03');
execute insertartiradas('RA0342049,8811226852', '4', '14/02/2015 21:08:49','20,1', 'RA03');
execute insertartiradas('RA0342049,9415162037', '9', '14/02/2015 22:35:47','18,8', 'RA03');
execute insertartiradas('RA0342049,9867013889', '6', '14/02/2015 23:40:51','-14,9', 'RA03');
execute insertartiradas('RA0342049,9947800926', '11', '14/02/2015 23:52:29','14,5', 'RA03');
execute insertartiradas('RA0342049,9969097222', '20', '14/02/2015 23:55:33','14,2', 'RA03');
execute insertartiradas('RA0342050,0265277777', '19', '15/02/2015 00:38:12','-20,5', 'RA03');
execute insertartiradas('RA0342050,7705555556', '16', '15/02/2015 18:29:36','21', 'RA03');
execute insertartiradas('RA0342050,7709606482', '25', '15/02/2015 18:30:11','-20,4', 'RA03');
execute insertartiradas('RA0342050,8118634259', '14', '15/02/2015 19:29:05','17,7', 'RA03');
execute insertartiradas('RA0342050,9922916667', '18', '15/02/2015 23:48:54','14,1', 'RA03');
execute insertartiradas('RA0342051,7836458333', '0', '16/02/2015 18:48:27','15,8', 'RA03');
execute insertartiradas('RA0342051,7891203704', '22', '16/02/2015 18:56:20','-15,5', 'RA03');
execute insertartiradas('RA0342051,7962152778', '15', '16/02/2015 19:06:33','14', 'RA03');
execute insertartiradas('RA0342051,7983912037', '12', '16/02/2015 19:09:41','-11,5', 'RA03');
execute insertartiradas('RA0342052,7542476852', '19', '17/02/2015 18:06:07','16,9', 'RA03');
execute insertartiradas('RA0342052,7735532407', '2', '17/02/2015 18:33:55','15,8', 'RA03');
execute insertartiradas('RA0342052,7768402778', '19', '17/02/2015 18:38:39','-17,7', 'RA03');
execute insertartiradas('RA0342052,8544791667', '26', '17/02/2015 20:30:27','15,4', 'RA03');
execute insertartiradas('RA0342052,9225', '25', '17/02/2015 22:08:24','16,7', 'RA03');
execute insertartiradas('RA0342053,7675347222', '6', '18/02/2015 18:25:15','-18,4', 'RA03');
execute insertartiradas('RA0342053,7717708333', '10', '18/02/2015 18:31:21','15,8', 'RA03');
execute insertartiradas('RA0342053,7950347222', '2', '18/02/2015 19:04:51','-15,2', 'RA03');
execute insertartiradas('RA0342053,7993055556', '13', '18/02/2015 19:11:00','-13,5', 'RA03');
execute insertartiradas('RA0342053,8512037037', '35', '18/02/2015 20:25:44','-18,3', 'RA03');
execute insertartiradas('RA0342054,78375', '2', '19/02/2015 18:48:36','13,9', 'RA03');
execute insertartiradas('RA0342054,7954513889', '36', '19/02/2015 19:05:27','-15,9', 'RA03');
execute insertartiradas('RA0342054,8018171296', '10', '19/02/2015 19:14:37','16,8', 'RA03');
execute insertartiradas('RA0342054,8055555556', '0', '19/02/2015 19:20:00','14,1', 'RA03');
execute insertartiradas('RA0342054,874525463', '15', '19/02/2015 20:59:19','-11,5', 'RA03');
execute insertartiradas('RA0342054,9391898148', '24', '19/02/2015 22:32:26','-17,8', 'RA03');
execute insertartiradas('RA0342054,9751157407', '18', '19/02/2015 23:24:10','-16,4', 'RA03');
execute insertartiradas('RA0342055,7657291667', '20', '20/02/2015 18:22:39','-20,9', 'RA03');
execute insertartiradas('RA0342055,7739351852', '35', '20/02/2015 18:34:28','17,3', 'RA03');
execute insertartiradas('RA0342055,7754282407', '36', '20/02/2015 18:36:37','13,1', 'RA03');
execute insertartiradas('RA0342055,8575810185', '20', '20/02/2015 20:34:55','-18,8', 'RA03');
execute insertartiradas('RA0342055,9292592593', '14', '20/02/2015 22:18:08','-16,4', 'RA03');
execute insertartiradas('RA0342055,9450578704', '26', '20/02/2015 22:40:53','16,2', 'RA03');
execute insertartiradas('RA0342056,7647916667', '17', '21/02/2015 18:21:18','-16,2', 'RA03');
execute insertartiradas('RA0342056,7744097222', '5', '21/02/2015 18:35:09','24,5', 'RA03');
execute insertartiradas('RA0342056,8062384259', '29', '21/02/2015 19:20:59','17,7', 'RA03');
execute insertartiradas('RA0342056,8357638889', '0', '21/02/2015 20:03:30','-17,4', 'RA03');
execute insertartiradas('RA0342056,857337963', '26', '21/02/2015 20:34:34','-19,5', 'RA03');
execute insertartiradas('RA0342056,8617939815', '2', '21/02/2015 20:40:59','18,4', 'RA03');
execute insertartiradas('RA0342056,9920486111', '8', '21/02/2015 23:48:33','17,1', 'RA03');
execute insertartiradas('RA0342056,9926851852', '32', '21/02/2015 23:49:28','-18,3', 'RA03');
execute insertartiradas('RA0342057,0396990741', '30', '22/02/2015 00:57:10','15,5', 'RA03');
execute insertartiradas('RA0342057,7609259259', '3', '22/02/2015 18:15:44','-13,3', 'RA03');
execute insertartiradas('RA0342057,8010185185', '21', '22/02/2015 19:13:28','-21,2', 'RA03');
execute insertartiradas('RA0342057,9397800926', '6', '22/02/2015 22:33:17','11,8', 'RA03');
execute insertartiradas('RA0342058,0616319444', '30', '23/02/2015 01:28:45','16,6', 'RA03');
execute insertartiradas('RA0342058,779224537', '35', '23/02/2015 18:42:05','-13,9', 'RA03');
execute insertartiradas('RA0342058,7862962963', '26', '23/02/2015 18:52:16','-16,6', 'RA03');
execute insertartiradas('RA0342058,8347569444', '10', '23/02/2015 20:02:03','-20,6', 'RA03');
execute insertartiradas('RA0342058,9413657407', '11', '23/02/2015 22:35:34','-17,5', 'RA03');
execute insertartiradas('RA0342059,7848148148', '0', '24/02/2015 18:50:08','16,5', 'RA03');
execute insertartiradas('RA0342059,8075', '21', '24/02/2015 19:22:48','16,4', 'RA03');
execute insertartiradas('RA0342059,8318518518', '30', '24/02/2015 19:57:52','13,2', 'RA03');
execute insertartiradas('RA0342059,8398842593', '2', '24/02/2015 20:09:26','15,3', 'RA03');
execute insertartiradas('RA0342059,8659953704', '6', '24/02/2015 20:47:02','18,7', 'RA03');
execute insertartiradas('RA0342059,928912037', '22', '24/02/2015 22:17:38','-20,3', 'RA03');
execute insertartiradas('RA0342060,0190856481', '5', '25/02/2015 00:27:29','13,2', 'RA03');
execute insertartiradas('RA0342060,7828125', '6', '25/02/2015 18:47:15','10,4', 'RA03');
execute insertartiradas('RA0342060,7896412037', '7', '25/02/2015 18:57:05','9,7', 'RA03');
execute insertartiradas('RA0342060,8055439815', '36', '25/02/2015 19:19:59','-19,1', 'RA03');
execute insertartiradas('RA0342060,8092824074', '19', '25/02/2015 19:25:22','18', 'RA03');
execute insertartiradas('RA0342060,8178587963', '20', '25/02/2015 19:37:43','16,9', 'RA03');
execute insertartiradas('RA0342060,8223958333', '6', '25/02/2015 19:44:15','-17,4', 'RA03');
execute insertartiradas('RA0342060,8665277778', '23', '25/02/2015 20:47:48','20,3', 'RA03');
execute insertartiradas('RA0342060,9338773148', '7', '25/02/2015 22:24:47','-18,5', 'RA03');
execute insertartiradas('RA0342060,9505787037', '26', '25/02/2015 22:48:50','16,1', 'RA03');
execute insertartiradas('RA0342061,0263078704', '36', '26/02/2015 00:37:53','16,7', 'RA03');
execute insertartiradas('RA0342061,7561111111', '13', '26/02/2015 18:08:48','21,4', 'RA03');
execute insertartiradas('RA0342061,7654976852', '33', '26/02/2015 18:22:19','-23,6', 'RA03');
execute insertartiradas('RA0342061,7876041667', '30', '26/02/2015 18:54:09','-15,1', 'RA03');
execute insertartiradas('RA0342061,7915046296', '11', '26/02/2015 18:59:46','17,7', 'RA03');
execute insertartiradas('RA0342061,7964930556', '4', '26/02/2015 19:06:57','17,1', 'RA03');
execute insertartiradas('RA0342061,7985532407', '14', '26/02/2015 19:09:55','20,1', 'RA03');
execute insertartiradas('RA0342061,8130092593', '13', '26/02/2015 19:30:44','25', 'RA03');
execute insertartiradas('RA0342061,8266666667', '7', '26/02/2015 19:50:24','-21,6', 'RA03');
execute insertartiradas('RA0342061,9051273148', '32', '26/02/2015 21:43:23','18,4', 'RA03');
execute insertartiradas('RA0342061,9401157407', '0', '26/02/2015 22:33:46','14,9', 'RA03');
execute insertartiradas('RA0342061,9467476852', '35', '26/02/2015 22:43:19','16,9', 'RA03');
execute insertartiradas('RA0342061,9614351852', '23', '26/02/2015 23:04:28','-17,1', 'RA03');
execute insertartiradas('RA0342061,9630208333', '14', '26/02/2015 23:06:45','18,4', 'RA03');
execute insertartiradas('RA0342061,9981597222', '3', '26/02/2015 23:57:21','18,7', 'RA03');
execute insertartiradas('RA0342062,7563310185', '8', '27/02/2015 18:09:07','18,8', 'RA03');
execute insertartiradas('RA0342062,7725115741', '27', '27/02/2015 18:32:25','-17', 'RA03');
execute insertartiradas('RA0342062,7792361111', '16', '27/02/2015 18:42:06','15,1', 'RA03');
execute insertartiradas('RA0342062,8435648148', '19', '27/02/2015 20:14:44','18,9', 'RA03');
execute insertartiradas('RA0342062,8554861111', '13', '27/02/2015 20:31:54','-19,4', 'RA03');
execute insertartiradas('RA0342062,9745601852', '14', '27/02/2015 23:23:22','-22,4', 'RA03');
execute insertartiradas('RA0342063,087974537', '20', '28/02/2015 02:06:41','-18,6', 'RA03');
execute insertartiradas('RA0342063,7561226852', '11', '28/02/2015 18:08:49','18,1', 'RA03');
execute insertartiradas('RA0342063,7755092593', '21', '28/02/2015 18:36:44','-12,1', 'RA03');
execute insertartiradas('RA0342063,7808564815', '24', '28/02/2015 18:44:26','19,2', 'RA03');
execute insertartiradas('RA0342063,793287037', '19', '28/02/2015 19:02:20','20,7', 'RA03');
execute insertartiradas('RA0342063,8112384259', '17', '28/02/2015 19:28:11','-20,2', 'RA03');
execute insertartiradas('RA0342063,8290625', '34', '28/02/2015 19:53:51','-18', 'RA03');
execute insertartiradas('RA0342063,8562847222', '24', '28/02/2015 20:33:03','13,4', 'RA03');
execute insertartiradas('RA0342063,8658796296', '4', '28/02/2015 20:46:52','-20,7', 'RA03');
execute insertartiradas('RA0342063,9637847222', '32', '28/02/2015 23:07:51','16,2', 'RA03');
execute insertartiradas('RA0342064,0878009259', '16', '01/03/2015 02:06:26','-20,1', 'RA03');
execute insertartiradas('RA0342064,1093171296', '24', '01/03/2015 02:37:25','-17,1', 'RA03');
execute insertartiradas('RA0342064,7706018519', '8', '01/03/2015 18:29:40','-21,1', 'RA03');
execute insertartiradas('RA0342064,8160300926', '34', '01/03/2015 19:35:05','15,9', 'RA03');
execute insertartiradas('RA0342064,8165509259', '19', '01/03/2015 19:35:50','-15,5', 'RA03');
execute insertartiradas('RA0342064,8304050926', '4', '01/03/2015 19:55:47','-16,1', 'RA03');
execute insertartiradas('RA0342064,8596759259', '5', '01/03/2015 20:37:56','-19,1', 'RA03');
execute insertartiradas('RA0342064,9696296296', '34', '01/03/2015 23:16:16','17,1', 'RA03');
execute insertartiradas('RA0342064,9724421296', '26', '01/03/2015 23:20:19','14,2', 'RA03');
execute insertartiradas('RA0342065,0028935185', '13', '02/03/2015 00:04:10','-15,9', 'RA03');
execute insertartiradas('RA0342065,7957407407', '15', '02/03/2015 19:05:52','17,7', 'RA03');
execute insertartiradas('RA0342065,8008217593', '7', '02/03/2015 19:13:11','-18,4', 'RA03');
execute insertartiradas('RA0342065,8022453704', '34', '02/03/2015 19:15:14','17,1', 'RA03');
execute insertartiradas('RA0342065,8083333333', '26', '02/03/2015 19:24:00','-17', 'RA03');
execute insertartiradas('RA0342065,8664351852', '7', '02/03/2015 20:47:40','-16,9', 'RA03');
execute insertartiradas('RA0342065,9190972222', '11', '02/03/2015 22:03:30','19,4', 'RA03');
execute insertartiradas('RA0342065,9513194444', '22', '02/03/2015 22:49:54','-17,2', 'RA03');
execute insertartiradas('RA0342065,952974537', '0', '02/03/2015 22:52:17','19,6', 'RA03');
execute insertartiradas('RA0342066,7605324074', '19', '03/03/2015 18:15:10','-17,7', 'RA03');
execute insertartiradas('RA0342066,7666203704', '32', '03/03/2015 18:23:56','-15,8', 'RA03');
execute insertartiradas('RA0342066,7739930556', '25', '03/03/2015 18:34:33','-21,1', 'RA03');
execute insertartiradas('RA0342066,8600694444', '9', '03/03/2015 20:38:30','-13,5', 'RA03');
execute insertartiradas('RA0342066,8758333333', '29', '03/03/2015 21:01:12','12,9', 'RA03');
execute insertartiradas('RA0342066,9637268518', '12', '03/03/2015 23:07:46','-16,5', 'RA03');
execute insertartiradas('RA0342066,9682291667', '14', '03/03/2015 23:14:15','17,6', 'RA03');
execute insertartiradas('RA0342067,0693402778', '23', '04/03/2015 01:39:51','-18,7', 'RA03');
execute insertartiradas('RA0342067,7701273148', '6', '04/03/2015 18:28:59','18,4', 'RA03');
execute insertartiradas('RA0342067,793912037', '36', '04/03/2015 19:03:14','15,9', 'RA03');
execute insertartiradas('RA0342067,8023726852', '17', '04/03/2015 19:15:25','-22,1', 'RA03');
execute insertartiradas('RA0342067,8592592593', '29', '04/03/2015 20:37:20','17,4', 'RA03');
execute insertartiradas('RA0342067,9684606481', '32', '04/03/2015 23:14:35','19,6', 'RA03');
execute insertartiradas('RA0342068,7532523148', '34', '05/03/2015 18:04:41','13,7', 'RA03');
execute insertartiradas('RA0342068,7589814815', '7', '05/03/2015 18:12:56','14,7', 'RA03');
execute insertartiradas('RA0342068,7833449074', '3', '05/03/2015 18:48:01','17,6', 'RA03');
execute insertartiradas('RA0342068,7924074074', '13', '05/03/2015 19:01:04','-21,2', 'RA03');
execute insertartiradas('RA0342068,8045949074', '21', '05/03/2015 19:18:37','-20,3', 'RA03');
execute insertartiradas('RA0342068,8133217593', '25', '05/03/2015 19:31:11','17,2', 'RA03');
execute insertartiradas('RA0342068,8150925926', '7', '05/03/2015 19:33:44','20,4', 'RA03');
execute insertartiradas('RA0342068,8213310185', '2', '05/03/2015 19:42:43','-19,5', 'RA03');
execute insertartiradas('RA0342068,8746296296', '36', '05/03/2015 20:59:28','-17,7', 'RA03');
execute insertartiradas('RA0342068,8802083333', '3', '05/03/2015 21:07:30','17,4', 'RA03');
execute insertartiradas('RA0342068,9519675926', '4', '05/03/2015 22:50:50','-22,9', 'RA03');
execute insertartiradas('RA0342069,0306944444', '28', '06/03/2015 00:44:12','-18,2', 'RA03');
execute insertartiradas('RA0342069,7593865741', '11', '06/03/2015 18:13:31','20,2', 'RA03');
execute insertartiradas('RA0342069,7680208333', '28', '06/03/2015 18:25:57','14,6', 'RA03');
execute insertartiradas('RA0342069,7823263889', '12', '06/03/2015 18:46:33','-17,9', 'RA03');
execute insertartiradas('RA0342069,7849189815', '23', '06/03/2015 18:50:17','-16,7', 'RA03');
execute insertartiradas('RA0342069,7988657407', '14', '06/03/2015 19:10:22','-17,3', 'RA03');
execute insertartiradas('RA0342069,818599537', '17', '06/03/2015 19:38:47','-21', 'RA03');
execute insertartiradas('RA0342069,8348842593', '21', '06/03/2015 20:02:14','27', 'RA03');
execute insertartiradas('RA0342069,8963657407', '15', '06/03/2015 21:30:46','-19,5', 'RA03');
execute insertartiradas('RA0342069,9707523148', '17', '06/03/2015 23:17:53','-19,1', 'RA03');
execute insertartiradas('RA0342070,7801736111', '8', '07/03/2015 18:43:27','12,9', 'RA03');
execute insertartiradas('RA0342070,8171759259', '32', '07/03/2015 19:36:44','20,1', 'RA03');
execute insertartiradas('RA0342070,8462152778', '9', '07/03/2015 20:18:33','-15,5', 'RA03');
execute insertartiradas('RA0342070,8664236111', '26', '07/03/2015 20:47:39','18,3', 'RA03');
execute insertartiradas('RA0342070,9039699074', '30', '07/03/2015 21:41:43','-19,1', 'RA03');
execute insertartiradas('RA0342070,9163657407', '31', '07/03/2015 21:59:34','18,2', 'RA03');
execute insertartiradas('RA0342070,9552662037', '29', '07/03/2015 22:55:35','13', 'RA03');
execute insertartiradas('RA0342071,0225925926', '35', '08/03/2015 00:32:32','-15,8', 'RA03');
execute insertartiradas('RA0342071,8308217593', '33', '08/03/2015 19:56:23','-15,9', 'RA03');
execute insertartiradas('RA0342071,997349537', '14', '08/03/2015 23:56:11','15', 'RA03');
execute insertartiradas('RA0342072,7672106481', '26', '09/03/2015 18:24:47','-16,7', 'RA03');
execute insertartiradas('RA0342072,7877083333', '27', '09/03/2015 18:54:18','21,2', 'RA03');
execute insertartiradas('RA0342072,793912037', '17', '09/03/2015 19:03:14','22,4', 'RA03');
execute insertartiradas('RA0342072,7991550926', '16', '09/03/2015 19:10:47','-20,3', 'RA03');
execute insertartiradas('RA0342072,8246296296', '24', '09/03/2015 19:47:28','-21', 'RA03');
execute insertartiradas('RA0342072,8330208333', '9', '09/03/2015 19:59:33','15,4', 'RA03');
execute insertartiradas('RA0342072,9160069444', '20', '09/03/2015 21:59:03','-20,7', 'RA03');
execute insertartiradas('RA0342072,9437152778', '16', '09/03/2015 22:38:57','-18,3', 'RA03');
execute insertartiradas('RA0342072,9523842593', '36', '09/03/2015 22:51:26','19,2', 'RA03');
execute insertartiradas('RA0342073,7967592593', '18', '10/03/2015 19:07:20','16,6', 'RA03');
execute insertartiradas('RA0342073,8150231481', '4', '10/03/2015 19:33:38','14,4', 'RA03');
execute insertartiradas('RA0342073,8227430556', '3', '10/03/2015 19:44:45','-18,2', 'RA03');
execute insertartiradas('RA0342073,8486805556', '10', '10/03/2015 20:22:06','14,6', 'RA03');
execute insertartiradas('RA0342073,8522453704', '31', '10/03/2015 20:27:14','15,2', 'RA03');
execute insertartiradas('RA0342073,8534953704', '8', '10/03/2015 20:29:02','-12,6', 'RA03');
execute insertartiradas('RA0342074,0523958333', '6', '11/03/2015 01:15:27','-16', 'RA03');
execute insertartiradas('RA0342074,7826273148', '35', '11/03/2015 18:46:59','-16,5', 'RA03');
execute insertartiradas('RA0342074,7956481481', '11', '11/03/2015 19:05:44','19,4', 'RA03');
execute insertartiradas('RA0342075,1026851852', '11', '12/03/2015 02:27:52','12', 'RA03');
execute insertartiradas('RA0342075,7606712963', '28', '12/03/2015 18:15:22','17,1', 'RA03');
execute insertartiradas('RA0342075,7741782407', '18', '12/03/2015 18:34:49','13,9', 'RA03');
execute insertartiradas('RA0342075,7823148148', '20', '12/03/2015 18:46:32','15,9', 'RA03');
execute insertartiradas('RA0342075,7833449074', '14', '12/03/2015 18:48:01','19,5', 'RA03');
execute insertartiradas('RA0342075,7933912037', '17', '12/03/2015 19:02:29','16,3', 'RA03');
execute insertartiradas('RA0342075,8128009259', '25', '12/03/2015 19:30:26','-18,7', 'RA03');
execute insertartiradas('RA0342075,8318518518', '0', '12/03/2015 19:57:52','-21', 'RA03');
execute insertartiradas('RA0342075,8333101852', '33', '12/03/2015 19:59:58','17,4', 'RA03');
execute insertartiradas('RA0342076,0359490741', '13', '13/03/2015 00:51:46','14,9', 'RA03');
execute insertartiradas('RA0342076,0458449074', '21', '13/03/2015 01:06:01','-17,6', 'RA03');
execute insertartiradas('RA0342076,7751851852', '28', '13/03/2015 18:36:16','17,6', 'RA03');
execute insertartiradas('RA0342076,7869675926', '32', '13/03/2015 18:53:14','16,1', 'RA03');
execute insertartiradas('RA0342076,8093171296', '12', '13/03/2015 19:25:25','17', 'RA03');
execute insertartiradas('RA0342076,9402546296', '29', '13/03/2015 22:33:58','-21,8', 'RA03');
execute insertartiradas('RA0342077,0501157407', '7', '14/03/2015 01:12:10','-27,7', 'RA03');
execute insertartiradas('RA0342077,7850925926', '5', '14/03/2015 18:50:32','19,4', 'RA03');
execute insertartiradas('RA0342077,7895023148', '9', '14/03/2015 18:56:53','20,8', 'RA03');
execute insertartiradas('RA0342077,8644444444', '11', '14/03/2015 20:44:48','-19,4', 'RA03');
execute insertartiradas('RA0342077,8657407407', '5', '14/03/2015 20:46:40','17,5', 'RA03');
execute insertartiradas('RA0342077,8939814815', '34', '14/03/2015 21:27:20','-20,9', 'RA03');
execute insertartiradas('RA0342077,9372916667', '31', '14/03/2015 22:29:42','-15,5', 'RA03');
execute insertartiradas('RA0342078,7580902778', '34', '15/03/2015 18:11:39','18,3', 'RA03');
execute insertartiradas('RA0342078,7971990741', '14', '15/03/2015 19:07:58','19,8', 'RA03');
execute insertartiradas('RA0342078,8320138889', '13', '15/03/2015 19:58:06','-23,2', 'RA03');
execute insertartiradas('RA0342078,9928819444', '35', '15/03/2015 23:49:45','13,3', 'RA03');
execute insertartiradas('RA0342079,0245949074', '16', '16/03/2015 00:35:25','16,3', 'RA03');
execute insertartiradas('RA0342079,7581597222', '20', '16/03/2015 18:11:45','21,6', 'RA03');
execute insertartiradas('RA0342079,7664467593', '21', '16/03/2015 18:23:41','21,2', 'RA03');
execute insertartiradas('RA0342079,7795601852', '36', '16/03/2015 18:42:34','17,3', 'RA03');
execute insertartiradas('RA0342079,7853125', '34', '16/03/2015 18:50:51','-17,7', 'RA03');
execute insertartiradas('RA0342079,7970833333', '26', '16/03/2015 19:07:48','-19,9', 'RA03');
execute insertartiradas('RA0342079,7978240741', '10', '16/03/2015 19:08:52','23,7', 'RA03');
execute insertartiradas('RA0342079,8129398148', '1', '16/03/2015 19:30:38','13,6', 'RA03');
execute insertartiradas('RA0342079,8321296296', '9', '16/03/2015 19:58:16','14,9', 'RA03');
execute insertartiradas('RA0342079,8410300926', '35', '16/03/2015 20:11:05','14,3', 'RA03');
execute insertartiradas('RA0342079,9147685185', '20', '16/03/2015 21:57:16','-16,5', 'RA03');
execute insertartiradas('RA0342080,0109027777', '23', '17/03/2015 00:15:42','-10,3', 'RA03');
execute insertartiradas('RA0342080,0443055556', '6', '17/03/2015 01:03:48','-20,3', 'RA03');
execute insertartiradas('RA0342080,0824537037', '4', '17/03/2015 01:58:44','18,4', 'RA03');
execute insertartiradas('RA0342080,7556712963', '2', '17/03/2015 18:08:10','21,2', 'RA03');
execute insertartiradas('RA0342080,7615740741', '0', '17/03/2015 18:16:40','23,2', 'RA03');
execute insertartiradas('RA0342080,7866435185', '34', '17/03/2015 18:52:46','-25,3', 'RA03');
execute insertartiradas('RA0342080,7876736111', '9', '17/03/2015 18:54:15','23,2', 'RA03');
execute insertartiradas('RA0342080,7920486111', '26', '17/03/2015 19:00:33','22,8', 'RA03');
execute insertartiradas('RA0342080,8396643518', '1', '17/03/2015 20:09:07','16,3', 'RA03');
execute insertartiradas('RA0342080,8427430556', '28', '17/03/2015 20:13:33','-19,3', 'RA03');
execute insertartiradas('RA0342080,9708796296', '21', '17/03/2015 23:18:04','18,6', 'RA03');
execute insertartiradas('RA0342081,0214699074', '9', '18/03/2015 00:30:55','16', 'RA03');
execute insertartiradas('RA0342081,7644560185', '32', '18/03/2015 18:20:49','20,6', 'RA03');
execute insertartiradas('RA0342081,7794560185', '30', '18/03/2015 18:42:25','-22,3', 'RA03');
execute insertartiradas('RA0342081,8028935185', '28', '18/03/2015 19:16:10','-18,5', 'RA03');
execute insertartiradas('RA0342081,8303703704', '9', '18/03/2015 19:55:44','-17,6', 'RA03');
execute insertartiradas('RA0342081,8360532407', '34', '18/03/2015 20:03:55','-19,4', 'RA03');
execute insertartiradas('RA0342081,9284837963', '14', '18/03/2015 22:17:01','-18,9', 'RA03');
execute insertartiradas('RA0342081,9358796296', '13', '18/03/2015 22:27:40','-11', 'RA03');
execute insertartiradas('RA0342081,9535300926', '17', '18/03/2015 22:53:05','17,1', 'RA03');
execute insertartiradas('RA0342081,9744097222', '13', '18/03/2015 23:23:09','-15,8', 'RA03');
execute insertartiradas('RA0342082,7563078704', '1', '19/03/2015 18:09:05','21,7', 'RA03');
execute insertartiradas('RA0342082,7586574074', '19', '19/03/2015 18:12:28','21', 'RA03');
execute insertartiradas('RA0342082,8102199074', '14', '19/03/2015 19:26:43','-18', 'RA03');
execute insertartiradas('RA0342082,8180324074', '20', '19/03/2015 19:37:58','-16,7', 'RA03');
execute insertartiradas('RA0342082,8736342593', '6', '19/03/2015 20:58:02','-19,9', 'RA03');
execute insertartiradas('RA0342082,9129166667', '12', '19/03/2015 21:54:36','19,7', 'RA03');
execute insertartiradas('RA0342083,0266203704', '10', '20/03/2015 00:38:20','-19,2', 'RA03');
execute insertartiradas('RA0342083,0556712963', '35', '20/03/2015 01:20:10','-18,2', 'RA03');
execute insertartiradas('RA0342083,7846412037', '12', '20/03/2015 18:49:53','16,6', 'RA03');
execute insertartiradas('RA0342083,7875115741', '6', '20/03/2015 18:54:01','17,1', 'RA03');
execute insertartiradas('RA0342083,839224537', '2', '20/03/2015 20:08:29','-23', 'RA03');
execute insertartiradas('RA0342083,9496643519', '35', '20/03/2015 22:47:31','16,7', 'RA03');
execute insertartiradas('RA0342084,0002893519', '34', '21/03/2015 00:00:25','13', 'RA03');
execute insertartiradas('RA0342084,7683449074', '18', '21/03/2015 18:26:25','-20,5', 'RA03');
execute insertartiradas('RA0342084,8000810185', '28', '21/03/2015 19:12:07','17,1', 'RA03');
execute insertartiradas('RA0342084,8218055556', '34', '21/03/2015 19:43:24','-16,4', 'RA03');
execute insertartiradas('RA0342084,9599884259', '35', '21/03/2015 23:02:23','22,1', 'RA03');
execute insertartiradas('RA0342085,7712384259', '21', '22/03/2015 18:30:35','-15,5', 'RA03');
execute insertartiradas('RA0342085,7931944444', '19', '22/03/2015 19:02:12','16,8', 'RA03');
execute insertartiradas('RA0342085,8651388889', '15', '22/03/2015 20:45:48','-18,8', 'RA03');
execute insertartiradas('RA0342086,0137268519', '30', '23/03/2015 00:19:46','11,4', 'RA03');
execute insertartiradas('RA0342086,0221527778', '23', '23/03/2015 00:31:54','17,8', 'RA03');
execute insertartiradas('RA0342086,064849537', '36', '23/03/2015 01:33:23','18', 'RA03');
execute insertartiradas('RA0342086,7833680556', '0', '23/03/2015 18:48:03','20,4', 'RA03');
execute insertartiradas('RA0342086,8041435185', '20', '23/03/2015 19:17:58','-19,4', 'RA03');
execute insertartiradas('RA0342086,8094791667', '1', '23/03/2015 19:25:39','-23', 'RA03');
execute insertartiradas('RA0342086,8230555556', '11', '23/03/2015 19:45:12','-26,8', 'RA03');
execute insertartiradas('RA0342086,8301736111', '31', '23/03/2015 19:55:27','16,3', 'RA03');
execute insertartiradas('RA0342086,9070486111', '16', '23/03/2015 21:46:09','13', 'RA03');
execute insertartiradas('RA0342086,9308449074', '28', '23/03/2015 22:20:25','16', 'RA03');
execute insertartiradas('RA0342086,9471759259', '30', '23/03/2015 22:43:56','-15,2', 'RA03');
execute insertartiradas('RA0342086,9745717593', '26', '23/03/2015 23:23:23','-18,2', 'RA03');
execute insertartiradas('RA0342087,7636226852', '3', '24/03/2015 18:19:37','18,4', 'RA03');
execute insertartiradas('RA0342087,7645023148', '16', '24/03/2015 18:20:53','10', 'RA03');
execute insertartiradas('RA0342087,7681018518', '32', '24/03/2015 18:26:04','19', 'RA03');
execute insertartiradas('RA0342087,7704861111', '17', '24/03/2015 18:29:30','-18,6', 'RA03');
execute insertartiradas('RA0342087,7738888889', '21', '24/03/2015 18:34:24','19,5', 'RA03');
execute insertartiradas('RA0342087,7858217593', '6', '24/03/2015 18:51:35','-18,5', 'RA03');
execute insertartiradas('RA0342087,7950810185', '24', '24/03/2015 19:04:55','-17,4', 'RA03');
execute insertartiradas('RA0342087,7974421296', '7', '24/03/2015 19:08:19','-17,2', 'RA03');
execute insertartiradas('RA0342087,7982986111', '18', '24/03/2015 19:09:33','16,6', 'RA03');
execute insertartiradas('RA0342087,8502893519', '9', '24/03/2015 20:24:25','21', 'RA03');
execute insertartiradas('RA0342087,8747800926', '35', '24/03/2015 20:59:41','17', 'RA03');
execute insertartiradas('RA0342087,9591550926', '0', '24/03/2015 23:01:11','22,1', 'RA03');
execute insertartiradas('RA0342088,0129861111', '31', '25/03/2015 00:18:42','24,5', 'RA03');
execute insertartiradas('RA0342088,0918287037', '1', '25/03/2015 02:12:14','19,2', 'RA03');
execute insertartiradas('RA0342088,7616898148', '5', '25/03/2015 18:16:50','17,9', 'RA03');
execute insertartiradas('RA0342088,8193981481', '17', '25/03/2015 19:39:56','-22,6', 'RA03');
execute insertartiradas('RA0342088,8259490741', '28', '25/03/2015 19:49:22','-19,3', 'RA03');
execute insertartiradas('RA0342088,8512847222', '4', '25/03/2015 20:25:51','-21', 'RA03');
execute insertartiradas('RA0342088,8587847222', '11', '25/03/2015 20:36:39','19', 'RA03');
execute insertartiradas('RA0342088,8732175926', '25', '25/03/2015 20:57:26','21,6', 'RA03');
execute insertartiradas('RA0342088,9145949074', '21', '25/03/2015 21:57:01','-18', 'RA03');
execute insertartiradas('RA0342089,7515972222', '1', '26/03/2015 18:02:18','18,3', 'RA03');
execute insertartiradas('RA0342089,7728472222', '26', '26/03/2015 18:32:54','20,2', 'RA03');
execute insertartiradas('RA0342089,7946180556', '16', '26/03/2015 19:04:15','-15', 'RA03');
execute insertartiradas('RA0342089,8004282407', '7', '26/03/2015 19:12:37','-17,9', 'RA03');
execute insertartiradas('RA0342089,8141435185', '32', '26/03/2015 19:32:22','-17,7', 'RA03');
execute insertartiradas('RA0342089,8173958333', '3', '26/03/2015 19:37:03','17,1', 'RA03');
execute insertartiradas('RA0342089,8333449074', '16', '26/03/2015 20:00:01','15,8', 'RA03');
execute insertartiradas('RA0342089,8618634259', '2', '26/03/2015 20:41:05','16,3', 'RA03');
execute insertartiradas('RA0342089,8639236111', '36', '26/03/2015 20:44:03','-16,3', 'RA03');
execute insertartiradas('RA0342089,9733796296', '13', '26/03/2015 23:21:40','10,1', 'RA03');
execute insertartiradas('RA0342089,9831828704', '2', '26/03/2015 23:35:47','-17,4', 'RA03');
execute insertartiradas('RA0342090,0217708333', '23', '27/03/2015 00:31:21','14,4', 'RA03');
execute insertartiradas('RA0342090,7611689815', '28', '27/03/2015 18:16:05','18,2', 'RA03');
execute insertartiradas('RA0342090,7678472222', '30', '27/03/2015 18:25:42','-18,4', 'RA03');
execute insertartiradas('RA0342090,776875', '23', '27/03/2015 18:38:42','-15,1', 'RA03');
execute insertartiradas('RA0342090,7787268519', '20', '27/03/2015 18:41:22','-15,2', 'RA03');
execute insertartiradas('RA0342090,7910763889', '26', '27/03/2015 18:59:09','-17', 'RA03');
execute insertartiradas('RA0342090,7941666667', '14', '27/03/2015 19:03:36','16', 'RA03');
execute insertartiradas('RA0342090,8187847222', '2', '27/03/2015 19:39:03','19,1', 'RA03');
execute insertartiradas('RA0342090,8199421296', '25', '27/03/2015 19:40:43','-15,2', 'RA03');
execute insertartiradas('RA0342090,861099537', '23', '27/03/2015 20:39:59','19,6', 'RA03');
execute insertartiradas('RA0342090,873912037', '7', '27/03/2015 20:58:26','18,1', 'RA03');
execute insertartiradas('RA0342090,8890046296', '5', '27/03/2015 21:20:10','-24,7', 'RA03');
execute insertartiradas('RA0342090,9388194444', '11', '27/03/2015 22:31:54','17,6', 'RA03');
execute insertartiradas('RA0342090,9409027778', '21', '27/03/2015 22:34:54','14,1', 'RA03');
execute insertartiradas('RA0342090,9796527777', '1', '27/03/2015 23:30:42','14', 'RA03');
execute insertartiradas('RA0342090,9851851852', '14', '27/03/2015 23:38:40','13,9', 'RA03');
execute insertartiradas('RA0342091,0248148148', '27', '28/03/2015 00:35:44','12,9', 'RA03');
execute insertartiradas('RA0342091,7599537037', '12', '28/03/2015 18:14:20','-16,6', 'RA03');
execute insertartiradas('RA0342091,8404050926', '5', '28/03/2015 20:10:11','-20', 'RA03');
execute insertartiradas('RA0342091,9208796296', '24', '28/03/2015 22:06:04','15,2', 'RA03');
execute insertartiradas('RA0342091,9383912037', '9', '28/03/2015 22:31:17','-19,8', 'RA03');
execute insertartiradas('RA0342091,9422337963', '14', '28/03/2015 22:36:49','19,6', 'RA03');
execute insertartiradas('RA0342092,0069560185', '3', '29/03/2015 00:10:01','-15,5', 'RA03');
execute insertartiradas('RA0342092,75125', '29', '29/03/2015 18:01:48','15,5', 'RA03');
execute insertartiradas('RA0342092,7521180556', '16', '29/03/2015 18:03:03','-18', 'RA03');
execute insertartiradas('RA0342092,7547337963', '19', '29/03/2015 18:06:49','-16,4', 'RA03');
execute insertartiradas('RA0342092,7664699074', '4', '29/03/2015 18:23:43','-17,9', 'RA03');
execute insertartiradas('RA0342092,8823032407', '10', '29/03/2015 21:10:31','14', 'RA03');
execute insertartiradas('RA0342092,9548611111', '32', '29/03/2015 22:55:00','-16,4', 'RA03');
execute insertartiradas('RA0342093,7617824074', '7', '30/03/2015 18:16:58','-16,7', 'RA03');
execute insertartiradas('RA0342093,8351157407', '21', '30/03/2015 20:02:34','21,2', 'RA03');
execute insertartiradas('RA0342093,9717361111', '30', '30/03/2015 23:19:18','-15,7', 'RA03');
execute insertartiradas('RA0342093,9868981481', '12', '30/03/2015 23:41:08','-17', 'RA03');
execute insertartiradas('RA0342094,7582638889', '0', '31/03/2015 18:11:54','-18,8', 'RA03');
execute insertartiradas('RA0342094,8061805556', '29', '31/03/2015 19:20:54','19,1', 'RA03');
execute insertartiradas('RA0342094,8237037037', '31', '31/03/2015 19:46:08','14,1', 'RA03');
execute insertartiradas('RA0342094,8548958333', '27', '31/03/2015 20:31:03','15,1', 'RA03');
execute insertartiradas('RA0342094,8829166667', '26', '31/03/2015 21:11:24','-16,4', 'RA03');
execute insertartiradas('RA0342094,9121064815', '19', '31/03/2015 21:53:26','-13,7', 'RA03');
execute insertartiradas('RA0342094,9251967593', '19', '31/03/2015 22:12:17','-17,1', 'RA03');
execute insertartiradas('RA0342094,9842013889', '20', '31/03/2015 23:37:15','-19,5', 'RA03');
execute insertartiradas('RA0342095,0069907407', '30', '01/04/2015 00:10:04','-14,8', 'RA03');
execute insertartiradas('RA0342095,0134490741', '9', '01/04/2015 00:19:22','-15,6', 'RA03');
execute insertartiradas('RA0342095,0790856481', '3', '01/04/2015 01:53:53','14,1', 'RA03');
execute insertartiradas('RA0342095,7653587963', '24', '01/04/2015 18:22:07','18,4', 'RA03');
execute insertartiradas('RA0342095,7756944444', '29', '01/04/2015 18:37:00','16,9', 'RA03');
execute insertartiradas('RA0342095,8012384259', '11', '01/04/2015 19:13:47','-18,5', 'RA03');
execute insertartiradas('RA0342095,8321412037', '8', '01/04/2015 19:58:17','17,9', 'RA03');
execute insertartiradas('RA0342095,845474537', '35', '01/04/2015 20:17:29','-16,9', 'RA03');
execute insertartiradas('RA0342095,8933796296', '21', '01/04/2015 21:26:28','16,1', 'RA03');
execute insertartiradas('RA0342095,9375347222', '12', '01/04/2015 22:30:03','-21,2', 'RA03');
execute insertartiradas('RA0342095,9745601852', '29', '01/04/2015 23:23:22','17,8', 'RA03');
execute insertartiradas('RA0342096,7628472222', '13', '02/04/2015 18:18:30','20,1', 'RA03');
execute insertartiradas('RA0342096,7853125', '28', '02/04/2015 18:50:51','17', 'RA03');
execute insertartiradas('RA0342096,8722569444', '18', '02/04/2015 20:56:03','14,9', 'RA03');
execute insertartiradas('RA0342096,9058101852', '36', '02/04/2015 21:44:22','-18,8', 'RA03');
execute insertartiradas('RA0342097,0006597222', '2', '03/04/2015 00:00:57','-16,5', 'RA03');
execute insertartiradas('RA0342097,0947453704', '11', '03/04/2015 02:16:26','18,5', 'RA03');
execute insertartiradas('RA0342097,7681828704', '27', '03/04/2015 18:26:11','12,1', 'RA03');
execute insertartiradas('RA0342097,7894212963', '34', '03/04/2015 18:56:46','14,9', 'RA03');
execute insertartiradas('RA0342097,8455671296', '19', '03/04/2015 20:17:37','14,4', 'RA03');
execute insertartiradas('RA0342097,8820138889', '1', '03/04/2015 21:10:06','-14,7', 'RA03');
execute insertartiradas('RA0342097,9056481481', '27', '03/04/2015 21:44:08','17,1', 'RA03');
execute insertartiradas('RA0342097,9128703704', '16', '03/04/2015 21:54:32','-16,9', 'RA03');
execute insertartiradas('RA0342097,9934259259', '13', '03/04/2015 23:50:32','15,8', 'RA03');
execute insertartiradas('RA0342098,0154166667', '13', '04/04/2015 00:22:12','14,6', 'RA03');
execute insertartiradas('RA0342098,0438078704', '3', '04/04/2015 01:03:05','21,8', 'RA03');
execute insertartiradas('RA0342098,0613425926', '25', '04/04/2015 01:28:20','24,1', 'RA03');
execute insertartiradas('RA0342098,0744212963', '26', '04/04/2015 01:47:10','-16,5', 'RA03');
execute insertartiradas('RA0342098,084525463', '20', '04/04/2015 02:01:43','-14,9', 'RA03');
execute insertartiradas('RA0342098,752337963', '30', '04/04/2015 18:03:22','19,4', 'RA03');
execute insertartiradas('RA0342098,7773958333', '31', '04/04/2015 18:39:27','20,2', 'RA03');
execute insertartiradas('RA0342098,8327546296', '21', '04/04/2015 19:59:10','-19,2', 'RA03');
execute insertartiradas('RA0342098,9148842593', '19', '04/04/2015 21:57:26','19,6', 'RA03');
execute insertartiradas('RA0342099,0381018519', '21', '05/04/2015 00:54:52','17', 'RA03');
execute insertartiradas('RA0342099,7608796296', '1', '05/04/2015 18:15:40','-16,6', 'RA03');
execute insertartiradas('RA0342099,7640740741', '7', '05/04/2015 18:20:16','17,2', 'RA03');
execute insertartiradas('RA0342099,8297337963', '27', '05/04/2015 19:54:49','-18,7', 'RA03');
execute insertartiradas('RA0342099,8447106481', '13', '05/04/2015 20:16:23','-15,6', 'RA03');
execute insertartiradas('RA0342099,8624884259', '34', '05/04/2015 20:41:59','-16,4', 'RA03');
execute insertartiradas('RA0342099,8866087963', '7', '05/04/2015 21:16:43','-8,7', 'RA03');
execute insertartiradas('RA0342099,9683912037', '27', '05/04/2015 23:14:29','-17,1', 'RA03');
execute insertartiradas('RA0342100,7841435185', '18', '06/04/2015 18:49:10','21,4', 'RA03');
execute insertartiradas('RA0342100,7932638889', '13', '06/04/2015 19:02:18','-21,3', 'RA03');
execute insertartiradas('RA0342100,8004166667', '2', '06/04/2015 19:12:36','16,8', 'RA03');
execute insertartiradas('RA0342100,8148032407', '16', '06/04/2015 19:33:19','16,7', 'RA03');
execute insertartiradas('RA0342100,8907291667', '32', '06/04/2015 21:22:39','-31,8', 'RA03');
execute insertartiradas('RA0342101,0424189815', '3', '07/04/2015 01:01:05','-19,9', 'RA03');
execute insertartiradas('RA0342101,7553935185', '5', '07/04/2015 18:07:46','-15,3', 'RA03');
execute insertartiradas('RA0342101,7647222222', '27', '07/04/2015 18:21:12','-17,2', 'RA03');
execute insertartiradas('RA0342101,7720833333', '29', '07/04/2015 18:31:48','14,4', 'RA03');
execute insertartiradas('RA0342101,8099537037', '12', '07/04/2015 19:26:20','18,1', 'RA03');
execute insertartiradas('RA0342101,9134722222', '27', '07/04/2015 21:55:24','14,7', 'RA03');
execute insertartiradas('RA0342102,7561111111', '28', '08/04/2015 18:08:48','-18,1', 'RA03');
execute insertartiradas('RA0342102,78875', '7', '08/04/2015 18:55:48','22,4', 'RA03');
execute insertartiradas('RA0342102,7907523148', '22', '08/04/2015 18:58:41','19,4', 'RA03');
execute insertartiradas('RA0342102,8113657407', '15', '08/04/2015 19:28:22','18,3', 'RA03');
execute insertartiradas('RA0342102,827824074', '11', '08/04/2015 19:52:04','-18,6', 'RA03');
execute insertartiradas('RA0342102,9083333333', '32', '08/04/2015 21:48:00','-16,3', 'RA03');
execute insertartiradas('RA0342102,9091435185', '9', '08/04/2015 21:49:10','14,4', 'RA03');
execute insertartiradas('RA0342102,9413888889', '1', '08/04/2015 22:35:36','18,8', 'RA03');
execute insertartiradas('RA0342102,9559143518', '9', '08/04/2015 22:56:31','22,6', 'RA03');
execute insertartiradas('RA0342102,9635300926', '21', '08/04/2015 23:07:29','-16,4', 'RA03');
execute insertartiradas('RA0342103,0005092593', '25', '09/04/2015 00:00:44','12,2', 'RA03');
execute insertartiradas('RA0342103,7541435185', '20', '09/04/2015 18:05:58','-14,3', 'RA03');
execute insertartiradas('RA0342103,762337963', '31', '09/04/2015 18:17:46','15,6', 'RA03');
execute insertartiradas('RA0342103,763287037', '32', '09/04/2015 18:19:08','-13,3', 'RA03');
execute insertartiradas('RA0342103,7789467593', '3', '09/04/2015 18:41:41','-21,6', 'RA03');
execute insertartiradas('RA0342103,808900463', '24', '09/04/2015 19:24:49','-22,2', 'RA03');
execute insertartiradas('RA0342103,8110185185', '23', '09/04/2015 19:27:52','-23,4', 'RA03');
execute insertartiradas('RA0342103,8166435185', '9', '09/04/2015 19:35:58','-22,7', 'RA03');
execute insertartiradas('RA0342103,8176736111', '12', '09/04/2015 19:37:27','20', 'RA03');
execute insertartiradas('RA0342103,8258449074', '0', '09/04/2015 19:49:13','14,4', 'RA03');
execute insertartiradas('RA0342103,847337963', '8', '09/04/2015 20:20:10','-12,9', 'RA03');
execute insertartiradas('RA0342103,9326157407', '18', '09/04/2015 22:22:58','16,6', 'RA03');
execute insertartiradas('RA0342103,9380787037', '19', '09/04/2015 22:30:50','-19,4', 'RA03');
execute insertartiradas('RA0342104,0057986111', '3', '10/04/2015 00:08:21','17,1', 'RA03');
execute insertartiradas('RA0342104,0465162037', '8', '10/04/2015 01:06:59','24,1', 'RA03');
execute insertartiradas('RA0342104,0592361111', '16', '10/04/2015 01:25:18','-17,9', 'RA03');
execute insertartiradas('RA0342104,1138078704', '17', '10/04/2015 02:43:53','17,9', 'RA03');
execute insertartiradas('RA0342104,1245717593', '3', '10/04/2015 02:59:23','-16,8', 'RA03');
execute insertartiradas('RA0342104,7981597222', '21', '10/04/2015 19:09:21','17,7', 'RA03');
execute insertartiradas('RA0342104,8102083333', '24', '10/04/2015 19:26:42','17,5', 'RA03');
execute insertartiradas('RA0342104,8438310185', '28', '10/04/2015 20:15:07','18,7', 'RA03');
execute insertartiradas('RA0342104,8453703704', '0', '10/04/2015 20:17:20','17,2', 'RA03');
execute insertartiradas('RA0342104,8540393518', '2', '10/04/2015 20:29:49','-17,3', 'RA03');
execute insertartiradas('RA0342104,874849537', '18', '10/04/2015 20:59:47','13,6', 'RA03');
execute insertartiradas('RA0342104,9324537037', '17', '10/04/2015 22:22:44','15,4', 'RA03');
execute insertartiradas('RA0342104,9611689815', '1', '10/04/2015 23:04:05','13,9', 'RA03');
execute insertartiradas('RA0342104,9660532407', '19', '10/04/2015 23:11:07','-11,8', 'RA03');
execute insertartiradas('RA0342105,772349537', '5', '11/04/2015 18:32:11','16,3', 'RA03');
execute insertartiradas('RA0342105,7834722222', '25', '11/04/2015 18:48:12','17,9', 'RA03');
execute insertartiradas('RA0342105,8312152777', '2', '11/04/2015 19:56:57','-23,7', 'RA03');
execute insertartiradas('RA0342105,9587731482', '26', '11/04/2015 23:00:38','-18,2', 'RA03');
execute insertartiradas('RA0342106,0121875', '32', '12/04/2015 00:17:33','16,5', 'RA03');
execute insertartiradas('RA0342106,7580324074', '2', '12/04/2015 18:11:34','18,1', 'RA03');
execute insertartiradas('RA0342106,7686111111', '0', '12/04/2015 18:26:48','-16,1', 'RA03');
execute insertartiradas('RA0342106,7867708333', '34', '12/04/2015 18:52:57','-15,6', 'RA03');
execute insertartiradas('RA0342106,820011574', '19', '12/04/2015 19:40:49','-23,2', 'RA03');
execute insertartiradas('RA0342106,8214236111', '18', '12/04/2015 19:42:51','24,4', 'RA03');
execute insertartiradas('RA0342106,838912037', '28', '12/04/2015 20:08:02','20,1', 'RA03');
execute insertartiradas('RA0342106,9267592593', '22', '12/04/2015 22:14:32','-13,2', 'RA03');
execute insertartiradas('RA0342106,9322222222', '34', '12/04/2015 22:22:24','15,2', 'RA03');
execute insertartiradas('RA0342107,779837963', '21', '13/04/2015 18:42:58','18,7', 'RA03');
execute insertartiradas('RA0342107,7858796296', '5', '13/04/2015 18:51:40','-19,9', 'RA03');
execute insertartiradas('RA0342107,9469444444', '23', '13/04/2015 22:43:36','19,8', 'RA03');
execute insertartiradas('RA0342108,0884375', '7', '14/04/2015 02:07:21','-15,4', 'RA03');
execute insertartiradas('RA0342108,7920023148', '13', '14/04/2015 19:00:29','20,5', 'RA03');
execute insertartiradas('RA0342108,8003240741', '24', '14/04/2015 19:12:28','20,4', 'RA03');
execute insertartiradas('RA0342108,8113310185', '22', '14/04/2015 19:28:19','17,1', 'RA03');
execute insertartiradas('RA0342108,8207291667', '6', '14/04/2015 19:41:51','19,8', 'RA03');
execute insertartiradas('RA0342108,8248611111', '21', '14/04/2015 19:47:48','16,5', 'RA03');
execute insertartiradas('RA0342108,9146527778', '21', '14/04/2015 21:57:06','-17,5', 'RA03');
execute insertartiradas('RA0342108,9151736111', '18', '14/04/2015 21:57:51','16,2', 'RA03');
execute insertartiradas('RA0342108,9958333333', '21', '14/04/2015 23:54:00','-18', 'RA03');
execute insertartiradas('RA0342109,0206134259', '34', '15/04/2015 00:29:41','19,2', 'RA03');
execute insertartiradas('RA0342109,7622916667', '35', '15/04/2015 18:17:42','-18,6', 'RA03');
execute insertartiradas('RA0342109,7948032407', '26', '15/04/2015 19:04:31','-20,1', 'RA03');
execute insertartiradas('RA0342109,8099884259', '25', '15/04/2015 19:26:23','20,4', 'RA03');
execute insertartiradas('RA0342109,8459722222', '13', '15/04/2015 20:18:12','-17,5', 'RA03');
execute insertartiradas('RA0342109,886087963', '11', '15/04/2015 21:15:58','16', 'RA03');
execute insertartiradas('RA0342109,8997106481', '21', '15/04/2015 21:35:35','-19,3', 'RA03');
execute insertartiradas('RA0342110,019849537', '14', '16/04/2015 00:28:35','-17', 'RA03');
execute insertartiradas('RA0342110,763599537', '26', '16/04/2015 18:19:35','19,4', 'RA03');
execute insertartiradas('RA0342110,7801273148', '1', '16/04/2015 18:43:23','18', 'RA03');
execute insertartiradas('RA0342110,7925810185', '23', '16/04/2015 19:01:19','-18,1', 'RA03');
execute insertartiradas('RA0342110,7986226852', '12', '16/04/2015 19:10:01','-18,4', 'RA03');
execute insertartiradas('RA0342110,9073958333', '17', '16/04/2015 21:46:39','-14', 'RA03');
execute insertartiradas('RA0342110,9168981481', '19', '16/04/2015 22:00:20','-15,1', 'RA03');
execute insertartiradas('RA0342110,9175810185', '9', '16/04/2015 22:01:19','14', 'RA03');
execute insertartiradas('RA0342110,9674074074', '7', '16/04/2015 23:13:04','20,3', 'RA03');
execute insertartiradas('RA0342110,9798263889', '31', '16/04/2015 23:30:57','18,5', 'RA03');
execute insertartiradas('RA0342111,7698842593', '26', '17/04/2015 18:28:38','-17', 'RA03');
execute insertartiradas('RA0342111,7839814815', '13', '17/04/2015 18:48:56','21,4', 'RA03');
execute insertartiradas('RA0342111,8632291667', '11', '17/04/2015 20:43:03','-16,8', 'RA03');
execute insertartiradas('RA0342111,9482523148', '20', '17/04/2015 22:45:29','17,4', 'RA03');
execute insertartiradas('RA0342111,9754398148', '29', '17/04/2015 23:24:38','20,1', 'RA03');
execute insertartiradas('RA0342112,0051736111', '22', '18/04/2015 00:07:27','19', 'RA03');
execute insertartiradas('RA0342112,0161111111', '6', '18/04/2015 00:23:12','19', 'RA03');
execute insertartiradas('RA0342112,0172569444', '28', '18/04/2015 00:24:51','16,6', 'RA03');
execute insertartiradas('RA0342112,0605324074', '6', '18/04/2015 01:27:10','-15,2', 'RA03');
execute insertartiradas('RA0342112,078900463', '36', '18/04/2015 01:53:37','13,4', 'RA03');
execute insertartiradas('RA0342112,0798726852', '7', '18/04/2015 01:55:01','-14', 'RA03');
execute insertartiradas('RA0342112,7752083333', '15', '18/04/2015 18:36:18','16,5', 'RA03');
execute insertartiradas('RA0342112,776099537', '16', '18/04/2015 18:37:35','17,7', 'RA03');
execute insertartiradas('RA0342112,845462963', '4', '18/04/2015 20:17:28','-17,7', 'RA03');
execute insertartiradas('RA0342112,8861921296', '20', '18/04/2015 21:16:07','-16,7', 'RA03');
execute insertartiradas('RA0342112,9490972222', '0', '18/04/2015 22:46:42','16,6', 'RA03');
execute insertartiradas('RA0342112,9887268519', '7', '18/04/2015 23:43:46','14,3', 'RA03');
execute insertartiradas('RA0342112,9993981481', '22', '18/04/2015 23:59:08','-21,3', 'RA03');
execute insertartiradas('RA0342113,0790740741', '32', '19/04/2015 01:53:52','17,8', 'RA03');
execute insertartiradas('RA0342113,7809259259', '13', '19/04/2015 18:44:32','-13,2', 'RA03');
execute insertartiradas('RA0342113,783599537', '32', '19/04/2015 18:48:23','12,6', 'RA03');
execute insertartiradas('RA0342113,8764930556', '20', '19/04/2015 21:02:09','-16,3', 'RA03');
execute insertartiradas('RA0342113,9234722222', '3', '19/04/2015 22:09:48','-18,8', 'RA03');
execute insertartiradas('RA0342113,9448263889', '4', '19/04/2015 22:40:33','16,1', 'RA03');
execute insertartiradas('RA0342113,9563078704', '8', '19/04/2015 22:57:05','-17,4', 'RA03');
execute insertartiradas('RA0342113,9966319444', '1', '19/04/2015 23:55:09','16,1', 'RA03');
execute insertartiradas('RA0342114,0249074074', '23', '20/04/2015 00:35:52','14,4', 'RA03');
execute insertartiradas('RA0342114,7886458333', '21', '20/04/2015 18:55:39','17,4', 'RA03');
execute insertartiradas('RA0342114,8329166667', '23', '20/04/2015 19:59:24','-20,8', 'RA03');
execute insertartiradas('RA0342114,910775463', '11', '20/04/2015 21:51:31','-17,3', 'RA03');
execute insertartiradas('RA0342114,9154166667', '25', '20/04/2015 21:58:12','-16,6', 'RA03');
execute insertartiradas('RA0342115,7722569444', '8', '21/04/2015 18:32:03','17,6', 'RA03');
execute insertartiradas('RA0342115,7782523148', '25', '21/04/2015 18:40:41','21', 'RA03');
execute insertartiradas('RA0342115,8391898148', '34', '21/04/2015 20:08:26','-13,7', 'RA03');
execute insertartiradas('RA0342115,8439583333', '25', '21/04/2015 20:15:18','12,7', 'RA03');
execute insertartiradas('RA0342115,9185648148', '9', '21/04/2015 22:02:44','-16,5', 'RA03');
execute insertartiradas('RA0342115,9240856481', '32', '21/04/2015 22:10:41','-17', 'RA03');
execute insertartiradas('RA0342115,926724537', '17', '21/04/2015 22:14:29','-16,8', 'RA03');
execute insertartiradas('RA0342115,9621296296', '21', '21/04/2015 23:05:28','-14,1', 'RA03');
execute insertartiradas('RA0342116,8392592593', '20', '22/04/2015 20:08:32','14', 'RA03');
execute insertartiradas('RA0342116,860787037', '36', '22/04/2015 20:39:32','16,2', 'RA03');
execute insertartiradas('RA0342116,9453703704', '3', '22/04/2015 22:41:20','15,4', 'RA03');
execute insertartiradas('RA0342117,7575578704', '8', '23/04/2015 18:10:53','-15,7', 'RA03');
execute insertartiradas('RA0342117,8009375', '35', '23/04/2015 19:13:21','-20,2', 'RA03');
execute insertartiradas('RA0342117,8800578704', '7', '23/04/2015 21:07:17','-18,6', 'RA03');
execute insertartiradas('RA0342117,9725810185', '3', '23/04/2015 23:20:31','17,5', 'RA03');
execute insertartiradas('RA0342118,0090625', '29', '24/04/2015 00:13:03','20,6', 'RA03');
execute insertartiradas('RA0342118,0102893518', '21', '24/04/2015 00:14:49','19', 'RA03');
execute insertartiradas('RA0342118,0380787037', '5', '24/04/2015 00:54:50','15,5', 'RA03');
execute insertartiradas('RA0342118,7541319444', '11', '24/04/2015 18:05:57','10,7', 'RA03');
execute insertartiradas('RA0342118,7696527778', '28', '24/04/2015 18:28:18','18,6', 'RA03');
execute insertartiradas('RA0342118,8107638889', '29', '24/04/2015 19:27:30','-18,3', 'RA03');
execute insertartiradas('RA0342118,8288425926', '1', '24/04/2015 19:53:32','18,5', 'RA03');
execute insertartiradas('RA0342118,847025463', '29', '24/04/2015 20:19:43','15,9', 'RA03');
execute insertartiradas('RA0342118,8511458333', '1', '24/04/2015 20:25:39','-13,3', 'RA03');
execute insertartiradas('RA0342118,8605787037', '4', '24/04/2015 20:39:14','13,4', 'RA03');
execute insertartiradas('RA0342118,8776851852', '7', '24/04/2015 21:03:52','19,3', 'RA03');
execute insertartiradas('RA0342118,9906712963', '34', '24/04/2015 23:46:34','10,7', 'RA03');
execute insertartiradas('RA0342119,0717708333', '25', '25/04/2015 01:43:21','16', 'RA03');
execute insertartiradas('RA0342119,7736226852', '28', '25/04/2015 18:34:01','-20,7', 'RA03');
execute insertartiradas('RA0342119,7943402778', '31', '25/04/2015 19:03:51','20', 'RA03');
execute insertartiradas('RA0342119,797025463', '16', '25/04/2015 19:07:43','-20,8', 'RA03');
execute insertartiradas('RA0342119,8213657407', '13', '25/04/2015 19:42:46','-17,3', 'RA03');
execute insertartiradas('RA0342119,8232407407', '8', '25/04/2015 19:45:28','-16,4', 'RA03');
execute insertartiradas('RA0342119,8299189815', '0', '25/04/2015 19:55:05','14,1', 'RA03');
execute insertartiradas('RA0342119,9572453703', '20', '25/04/2015 22:58:26','-15,1', 'RA03');
execute insertartiradas('RA0342120,7284953704', '12', '26/04/2015 17:29:02','16,6', 'RA03');
execute insertartiradas('RA0342120,8089699074', '18', '26/04/2015 19:24:55','-16,8', 'RA03');
execute insertartiradas('RA0342120,8899421296', '5', '26/04/2015 21:21:31','-17,1', 'RA03');
execute insertartiradas('RA0342120,9477893518', '18', '26/04/2015 22:44:49','-17,1', 'RA03');
execute insertartiradas('RA0342121,7562962963', '11', '27/04/2015 18:09:04','17,3', 'RA03');
execute insertartiradas('RA0342121,808125', '9', '27/04/2015 19:23:42','14,9', 'RA03');
execute insertartiradas('RA0342121,8087615741', '2', '27/04/2015 19:24:37','-16', 'RA03');
execute insertartiradas('RA0342121,8135648148', '30', '27/04/2015 19:31:32','12,6', 'RA03');
execute insertartiradas('RA0342121,8380208333', '21', '27/04/2015 20:06:45','11,8', 'RA03');
execute insertartiradas('RA0342121,9417824074', '31', '27/04/2015 22:36:10','-13', 'RA03');
execute insertartiradas('RA0342121,9682407407', '23', '27/04/2015 23:14:16','-16,9', 'RA03');
execute insertartiradas('RA0342122,787349537', '28', '28/04/2015 18:53:47','-19,5', 'RA03');
execute insertartiradas('RA0342122,7978356481', '35', '28/04/2015 19:08:53','-16', 'RA03');
execute insertartiradas('RA0342123,0427662037', '32', '29/04/2015 01:01:35','15,5', 'RA03');
execute insertartiradas('RA0342123,7565856481', '28', '29/04/2015 18:09:29','16,9', 'RA03');
execute insertartiradas('RA0342123,8220023148', '20', '29/04/2015 19:43:41','21,6', 'RA03');
execute insertartiradas('RA0342124,7830787037', '24', '30/04/2015 18:47:38','18,5', 'RA03');
execute insertartiradas('RA0342124,8764814815', '6', '30/04/2015 21:02:08','-13,6', 'RA03');
execute insertartiradas('RA0342125,0009027778', '32', '01/05/2015 00:01:18','-16,7', 'RA03');
execute insertartiradas('RA0342125,7160185185', '35', '01/05/2015 17:11:04','13,7', 'RA03');
execute insertartiradas('RA0342125,7163773148', '7', '01/05/2015 17:11:35','-15', 'RA03');
execute insertartiradas('RA0342125,7168055556', '3', '01/05/2015 17:12:12','13,8', 'RA03');
execute insertartiradas('RA0342125,7171412037', '35', '01/05/2015 17:12:41','-14,6', 'RA03');
execute insertartiradas('RA0342125,7175115741', '29', '01/05/2015 17:13:13','16,8', 'RA03');
execute insertartiradas('RA0342125,7178935185', '9', '01/05/2015 17:13:46','-19,5', 'RA03');
execute insertartiradas('RA0342125,718287037', '0', '01/05/2015 17:14:20','14,7', 'RA03');
execute insertartiradas('RA0342125,7186574074', '34', '01/05/2015 17:14:52','-15,3', 'RA03');
execute insertartiradas('RA0342125,7190740741', '7', '01/05/2015 17:15:28','14,1', 'RA03');
execute insertartiradas('RA0342125,7194328704', '32', '01/05/2015 17:15:59','-15,6', 'RA03');
execute insertartiradas('RA0342125,7198611111', '7', '01/05/2015 17:16:36','14,9', 'RA03');
execute insertartiradas('RA0342125,720474537', '5', '01/05/2015 17:17:29','-15,1', 'RA03');
execute insertartiradas('RA0342125,7208796296', '33', '01/05/2015 17:18:04','14,6', 'RA03');
execute insertartiradas('RA0342125,7216898148', '4', '01/05/2015 17:19:14','-16,3', 'RA03');
execute insertartiradas('RA0342125,7221064815', '6', '01/05/2015 17:19:50','12,9', 'RA03');
execute insertartiradas('RA0342125,7226388889', '23', '01/05/2015 17:20:36','-14,5', 'RA03');
execute insertartiradas('RA0342125,7231481482', '15', '01/05/2015 17:21:20','22,1', 'RA03');
execute insertartiradas('RA0342125,7236689815', '25', '01/05/2015 17:22:05','-18,9', 'RA03');
execute insertartiradas('RA0342125,7242824074', '2', '01/05/2015 17:22:58','17,8', 'RA03');
execute insertartiradas('RA0342125,7247800926', '32', '01/05/2015 17:23:41','-13,3', 'RA03');
execute insertartiradas('RA0342125,7253009259', '33', '01/05/2015 17:24:26','17,4', 'RA03');
execute insertartiradas('RA0342125,72625', '8', '01/05/2015 17:25:48','-21,3', 'RA03');
execute insertartiradas('RA0342125,7268055556', '24', '01/05/2015 17:26:36','24,7', 'RA03');
execute insertartiradas('RA0342125,7273842593', '18', '01/05/2015 17:27:26','-20,2', 'RA03');
execute insertartiradas('RA0342125,7279398148', '14', '01/05/2015 17:28:14','18,9', 'RA03');
execute insertartiradas('RA0342125,7284027778', '27', '01/05/2015 17:28:54','-17,8', 'RA03');
execute insertartiradas('RA0342125,7289351852', '7', '01/05/2015 17:29:40','16,7', 'RA03');
execute insertartiradas('RA0342125,7293981481', '20', '01/05/2015 17:30:20','-14,4', 'RA03');
execute insertartiradas('RA0342125,7298611111', '34', '01/05/2015 17:31:00','18,4', 'RA03');
execute insertartiradas('RA0342125,7304398148', '17', '01/05/2015 17:31:50','-16,1', 'RA03');
execute insertartiradas('RA0342125,7310532407', '0', '01/05/2015 17:32:43','15,4', 'RA03');
execute insertartiradas('RA0342125,7315625', '0', '01/05/2015 17:33:27','-16,4', 'RA03');
execute insertartiradas('RA0342125,7322222222', '30', '01/05/2015 17:34:24','22,7', 'RA03');
execute insertartiradas('RA0342125,7327546296', '34', '01/05/2015 17:35:10','-16,4', 'RA03');
execute insertartiradas('RA0342125,7332175926', '5', '01/05/2015 17:35:50','19,9', 'RA03');
execute insertartiradas('RA0342125,7336458333', '12', '01/05/2015 17:36:27','-17,5', 'RA03');
execute insertartiradas('RA0342125,7345601852', '34', '01/05/2015 17:37:46','20,6', 'RA03');
execute insertartiradas('RA0342125,7352430556', '16', '01/05/2015 17:38:45','-17,4', 'RA03');
execute insertartiradas('RA0342125,7356597222', '19', '01/05/2015 17:39:21','18,2', 'RA03');
execute insertartiradas('RA0342125,7361921296', '7', '01/05/2015 17:40:07','-15,4', 'RA03');
execute insertartiradas('RA0342125,7367476852', '18', '01/05/2015 17:40:55','16,6', 'RA03');
execute insertartiradas('RA0342125,7372453704', '10', '01/05/2015 17:41:38','-16,1', 'RA03');
execute insertartiradas('RA0342125,7377546296', '13', '01/05/2015 17:42:22','18,2', 'RA03');
execute insertartiradas('RA0342125,7382638889', '29', '01/05/2015 17:43:06','-16,2', 'RA03');
execute insertartiradas('RA0342125,7392361111', '35', '01/05/2015 17:44:30','19,7', 'RA03');
execute insertartiradas('RA0342125,7400347222', '4', '01/05/2015 17:45:39','-19', 'RA03');
execute insertartiradas('RA0342125,7407638889', '1', '01/05/2015 17:46:42','20,7', 'RA03');
execute insertartiradas('RA0342125,7414583333', '34', '01/05/2015 17:47:42','-18,3', 'RA03');
execute insertartiradas('RA0342125,7420833333', '25', '01/05/2015 17:48:36','23', 'RA03');
execute insertartiradas('RA0342125,742662037', '4', '01/05/2015 17:49:26','-20,6', 'RA03');
execute insertartiradas('RA0342125,7433796296', '3', '01/05/2015 17:50:28','20,8', 'RA03');
execute insertartiradas('RA0342125,7442476851', '7', '01/05/2015 17:51:43','-17,9', 'RA03');
execute insertartiradas('RA0342125,7452083333', '17', '01/05/2015 17:53:06','15,2', 'RA03');
execute insertartiradas('RA0342125,7459027778', '20', '01/05/2015 17:54:06','-19,2', 'RA03');
execute insertartiradas('RA0342125,7464814815', '23', '01/05/2015 17:54:56','15,4', 'RA03');
execute insertartiradas('RA0342125,7472106482', '6', '01/05/2015 17:55:59','-17,7', 'RA03');
execute insertartiradas('RA0342125,7479166667', '0', '01/05/2015 17:57:00','19', 'RA03');
execute insertartiradas('RA0342125,7487152778', '23', '01/05/2015 17:58:09','-19,3', 'RA03');
execute insertartiradas('RA0342125,749699074', '35', '01/05/2015 17:59:34','16,5', 'RA03');
execute insertartiradas('RA0342125,7510532407', '24', '01/05/2015 18:01:31','-20,5', 'RA03');
execute insertartiradas('RA0342125,7520601851', '18', '01/05/2015 18:02:58','17,1', 'RA03');
execute insertartiradas('RA0342125,7531597222', '29', '01/05/2015 18:04:33','-18,1', 'RA03');
execute insertartiradas('RA0342125,7543518519', '0', '01/05/2015 18:06:16','20,2', 'RA03');
execute insertartiradas('RA0342125,7551967593', '18', '01/05/2015 18:07:29','-19,9', 'RA03');
execute insertartiradas('RA0342125,7559953704', '0', '01/05/2015 18:08:38','21,9', 'RA03');
execute insertartiradas('RA0342125,7568865741', '23', '01/05/2015 18:09:55','-22,1', 'RA03');
execute insertartiradas('RA0342125,7579513889', '23', '01/05/2015 18:11:27','22', 'RA03');
execute insertartiradas('RA0342125,7590046296', '7', '01/05/2015 18:12:58','-16,4', 'RA03');
execute insertartiradas('RA0342125,7597916667', '11', '01/05/2015 18:14:06','21,4', 'RA03');
execute insertartiradas('RA0342125,7609259259', '21', '01/05/2015 18:15:44','-12,9', 'RA03');
execute insertartiradas('RA0342125,7618055556', '24', '01/05/2015 18:17:00','18,8', 'RA03');
execute insertartiradas('RA0342125,7629513889', '11', '01/05/2015 18:18:39','-18,2', 'RA03');
execute insertartiradas('RA0342125,7639236111', '5', '01/05/2015 18:20:03','18,6', 'RA03');
execute insertartiradas('RA0342125,7644675926', '9', '01/05/2015 18:20:50','-20,7', 'RA03');
execute insertartiradas('RA0342125,7650810185', '17', '01/05/2015 18:21:43','19,7', 'RA03');
execute insertartiradas('RA0342125,7657175926', '1', '01/05/2015 18:22:38','-16,4', 'RA03');
execute insertartiradas('RA0342125,785775463', '35', '01/05/2015 18:51:31','23,4', 'RA03');
execute insertartiradas('RA0342125,7862847222', '35', '01/05/2015 18:52:15','-19,1', 'RA03');
execute insertartiradas('RA0342125,7868171296', '31', '01/05/2015 18:53:01','20', 'RA03');
execute insertartiradas('RA0342125,7873032407', '29', '01/05/2015 18:53:43','-16,9', 'RA03');
execute insertartiradas('RA0342125,7877430556', '0', '01/05/2015 18:54:21','20,9', 'RA03');
execute insertartiradas('RA0342125,7881481481', '28', '01/05/2015 18:54:56','-17,8', 'RA03');
execute insertartiradas('RA0342125,7886689815', '8', '01/05/2015 18:55:41','21', 'RA03');
execute insertartiradas('RA0342125,7891666667', '30', '01/05/2015 18:56:24','-14', 'RA03');
execute insertartiradas('RA0342125,7896180556', '10', '01/05/2015 18:57:03','20,3', 'RA03');
execute insertartiradas('RA0342125,7903009259', '25', '01/05/2015 18:58:02','-16,6', 'RA03');
execute insertartiradas('RA0342125,7908449074', '32', '01/05/2015 18:58:49','21,9', 'RA03');
execute insertartiradas('RA0342125,7913310185', '8', '01/05/2015 18:59:31','-16,2', 'RA03');
execute insertartiradas('RA0342125,7918287037', '8', '01/05/2015 19:00:14','19,3', 'RA03');
execute insertartiradas('RA0342125,7924189815', '17', '01/05/2015 19:01:05','-18,5', 'RA03');
execute insertartiradas('RA0342125,7932060185', '1', '01/05/2015 19:02:13','19,7', 'RA03');
execute insertartiradas('RA0342125,7937615741', '10', '01/05/2015 19:03:01','-16,3', 'RA03');
execute insertartiradas('RA0342125,7945138888', '11', '01/05/2015 19:04:06','18,9', 'RA03');
execute insertartiradas('RA0342125,7953356481', '9', '01/05/2015 19:05:17','-14,8', 'RA03');
execute insertartiradas('RA0342125,7958101852', '25', '01/05/2015 19:05:58','22,1', 'RA03');
execute insertartiradas('RA0342125,7963425926', '2', '01/05/2015 19:06:44','-18,3', 'RA03');
execute insertartiradas('RA0342125,7967939815', '2', '01/05/2015 19:07:23','18,1', 'RA03');
execute insertartiradas('RA0342125,7972685185', '29', '01/05/2015 19:08:04','-16,4', 'RA03');
execute insertartiradas('RA0342125,7979050925', '12', '01/05/2015 19:08:59','19,9', 'RA03');
execute insertartiradas('RA0342125,7984375', '13', '01/05/2015 19:09:45','-17,4', 'RA03');
execute insertartiradas('RA0342125,7988773148', '12', '01/05/2015 19:10:23','17,9', 'RA03');
execute insertartiradas('RA0342125,7993518518', '13', '01/05/2015 19:11:04','-18,1', 'RA03');
execute insertartiradas('RA0342125,8008333333', '16', '01/05/2015 19:13:12','15,5', 'RA03');
execute insertartiradas('RA0342125,8346180556', '12', '01/05/2015 20:01:51','-20', 'RA03');
execute insertartiradas('RA0342125,8349768519', '28', '01/05/2015 20:02:22','19,5', 'RA03');
execute insertartiradas('RA0342125,8353356481', '10', '01/05/2015 20:02:53','-17,5', 'RA03');
execute insertartiradas('RA0342125,8360763889', '18', '01/05/2015 20:03:57','19,8', 'RA03');
execute insertartiradas('RA0342125,8368634259', '24', '01/05/2015 20:05:05','-19,8', 'RA03');
execute insertartiradas('RA0342125,8377199074', '3', '01/05/2015 20:06:19','22,4', 'RA03');
execute insertartiradas('RA0342125,838275463', '1', '01/05/2015 20:07:07','-19,1', 'RA03');
execute insertartiradas('RA0342125,8387962963', '27', '01/05/2015 20:07:52','20,8', 'RA03');
execute insertartiradas('RA0342125,8393402778', '0', '01/05/2015 20:08:39','-18,6', 'RA03');
execute insertartiradas('RA0342125,8399189815', '2', '01/05/2015 20:09:29','19,5', 'RA03');
execute insertartiradas('RA0342125,8405439815', '10', '01/05/2015 20:10:23','-18,8', 'RA03');
execute insertartiradas('RA0342125,8411574074', '27', '01/05/2015 20:11:16','17,8', 'RA03');
execute insertartiradas('RA0342125,8416550926', '12', '01/05/2015 20:11:59','-19,9', 'RA03');
execute insertartiradas('RA0342125,8421296296', '1', '01/05/2015 20:12:40','19,4', 'RA03');
execute insertartiradas('RA0342125,8425231481', '28', '01/05/2015 20:13:14','-18,3', 'RA03');
execute insertartiradas('RA0342125,8430671296', '24', '01/05/2015 20:14:01','17,2', 'RA03');
execute insertartiradas('RA0342125,843599537', '31', '01/05/2015 20:14:47','-19,1', 'RA03');
execute insertartiradas('RA0342125,8439930556', '21', '01/05/2015 20:15:21','19', 'RA03');
execute insertartiradas('RA0342125,8446527778', '11', '01/05/2015 20:16:18','-18,2', 'RA03');
execute insertartiradas('RA0342125,8454282407', '5', '01/05/2015 20:17:25','16,6', 'RA03');
execute insertartiradas('RA0342125,8461342593', '13', '01/05/2015 20:18:26','-18,4', 'RA03');
execute insertartiradas('RA0342125,8466898148', '1', '01/05/2015 20:19:14','19,7', 'RA03');
execute insertartiradas('RA0342125,8476851852', '13', '01/05/2015 20:20:40','-19,6', 'RA03');
execute insertartiradas('RA0342125,8489699074', '15', '01/05/2015 20:22:31','18,5', 'RA03');
execute insertartiradas('RA0342125,85', '25', '01/05/2015 20:24:00','-16,3', 'RA03');
execute insertartiradas('RA0342125,8507291667', '11', '01/05/2015 20:25:03','20,6', 'RA03');
execute insertartiradas('RA0342125,8520486111', '11', '01/05/2015 20:26:57','-20,8', 'RA03');
execute insertartiradas('RA0342125,8528240741', '2', '01/05/2015 20:28:04','18,9', 'RA03');
execute insertartiradas('RA0342125,8535069444', '16', '01/05/2015 20:29:03','-18,1', 'RA03');
execute insertartiradas('RA0342125,854375', '27', '01/05/2015 20:30:18','17,4', 'RA03');
execute insertartiradas('RA0342125,8551273148', '36', '01/05/2015 20:31:23','-19,5', 'RA03');
execute insertartiradas('RA0342125,8562384259', '16', '01/05/2015 20:32:59','19,9', 'RA03');
execute insertartiradas('RA0342125,8570486111', '25', '01/05/2015 20:34:09','-16,8', 'RA03');
execute insertartiradas('RA0342125,8582060185', '19', '01/05/2015 20:35:49','18,4', 'RA03');
execute insertartiradas('RA0342125,8594444444', '16', '01/05/2015 20:37:36','-17,7', 'RA03');
execute insertartiradas('RA0342125,8606365741', '24', '01/05/2015 20:39:19','18,1', 'RA03');
execute insertartiradas('RA0342125,8617708333', '22', '01/05/2015 20:40:57','-19,8', 'RA03');
execute insertartiradas('RA0342125,8633449074', '23', '01/05/2015 20:43:13','23,6', 'RA03');
execute insertartiradas('RA0342125,8649305556', '11', '01/05/2015 20:45:30','-19,1', 'RA03');
execute insertartiradas('RA0342125,8659259259', '12', '01/05/2015 20:46:56','19,3', 'RA03');
execute insertartiradas('RA0342125,8668055556', '25', '01/05/2015 20:48:12','-21,3', 'RA03');
execute insertartiradas('RA0342125,8674884259', '31', '01/05/2015 20:49:11','17,5', 'RA03');
execute insertartiradas('RA0342125,8680902778', '20', '01/05/2015 20:50:03','-20,6', 'RA03');
execute insertartiradas('RA0342125,8690972222', '30', '01/05/2015 20:51:30','20,7', 'RA03');
execute insertartiradas('RA0342125,8697800926', '12', '01/05/2015 20:52:29','-20,8', 'RA03');
execute insertartiradas('RA0342125,8706365741', '23', '01/05/2015 20:53:43','19,5', 'RA03');
execute insertartiradas('RA0342125,8713773148', '27', '01/05/2015 20:54:47','-18,2', 'RA03');
execute insertartiradas('RA0342125,8720949074', '26', '01/05/2015 20:55:49','18,3', 'RA03');
execute insertartiradas('RA0342125,8728935185', '16', '01/05/2015 20:56:58','-20', 'RA03');
execute insertartiradas('RA0342125,8734027778', '14', '01/05/2015 20:57:42','21', 'RA03');
execute insertartiradas('RA0342125,8743171296', '22', '01/05/2015 20:59:01','-18,6', 'RA03');
execute insertartiradas('RA0342125,8756597222', '1', '01/05/2015 21:00:57','20,1', 'RA03');
execute insertartiradas('RA0342125,8771875', '8', '01/05/2015 21:03:09','-17,2', 'RA03');
execute insertartiradas('RA0342125,8778009259', '25', '01/05/2015 21:04:02','20,5', 'RA03');
execute insertartiradas('RA0342125,8783564815', '3', '01/05/2015 21:04:50','-18,2', 'RA03');
execute insertartiradas('RA0342125,8791087963', '36', '01/05/2015 21:05:55','17,4', 'RA03');
execute insertartiradas('RA0342125,8796527778', '8', '01/05/2015 21:06:42','-17,7', 'RA03');
execute insertartiradas('RA0342125,8803009259', '12', '01/05/2015 21:07:38','20,2', 'RA03');
execute insertartiradas('RA0342125,8810763889', '19', '01/05/2015 21:08:45','-16,1', 'RA03');
execute insertartiradas('RA0342125,8817592593', '6', '01/05/2015 21:09:44','19,3', 'RA03');
execute insertartiradas('RA0342125,8824074074', '12', '01/05/2015 21:10:40','-18,6', 'RA03');
execute insertartiradas('RA0342125,8829398148', '2', '01/05/2015 21:11:26','21,7', 'RA03');
execute insertartiradas('RA0342125,8836689815', '27', '01/05/2015 21:12:29','-18,1', 'RA03');
execute insertartiradas('RA0342125,8842592593', '32', '01/05/2015 21:13:20','17,1', 'RA03');
execute insertartiradas('RA0342125,8849652778', '34', '01/05/2015 21:14:21','-17,1', 'RA03');
execute insertartiradas('RA0342125,8855439815', '29', '01/05/2015 21:15:11','18,6', 'RA03');
execute insertartiradas('RA0342125,8861342593', '30', '01/05/2015 21:16:02','-16,3', 'RA03');
execute insertartiradas('RA0342125,8866898148', '9', '01/05/2015 21:16:50','18,6', 'RA03');
execute insertartiradas('RA0342125,8872106482', '26', '01/05/2015 21:17:35','-17,7', 'RA03');
execute insertartiradas('RA0342125,887974537', '26', '01/05/2015 21:18:41','22,2', 'RA03');
execute insertartiradas('RA0342125,8887037037', '26', '01/05/2015 21:19:44','-19,3', 'RA03');
execute insertartiradas('RA0342125,8895486111', '19', '01/05/2015 21:20:57','17,3', 'RA03');
execute insertartiradas('RA0342125,8900810185', '12', '01/05/2015 21:21:43','-15,7', 'RA03');
execute insertartiradas('RA0342125,9006712963', '16', '01/05/2015 21:36:58','20,9', 'RA03');
execute insertartiradas('RA0342125,9011805556', '22', '01/05/2015 21:37:42','-19', 'RA03');
execute insertartiradas('RA0342125,9017939815', '8', '01/05/2015 21:38:35','19,7', 'RA03');
execute insertartiradas('RA0342125,9022569444', '31', '01/05/2015 21:39:15','-15,7', 'RA03');
execute insertartiradas('RA0342125,9028356482', '0', '01/05/2015 21:40:05','22,3', 'RA03');
execute insertartiradas('RA0342125,9035185185', '25', '01/05/2015 21:41:04','-16,5', 'RA03');
execute insertartiradas('RA0342125,9039236111', '1', '01/05/2015 21:41:39','15,2', 'RA03');
execute insertartiradas('RA0342125,9051967593', '14', '01/05/2015 21:43:29','-18,8', 'RA03');
execute insertartiradas('RA0342125,9056365741', '12', '01/05/2015 21:44:07','13,7', 'RA03');
execute insertartiradas('RA0342125,9060069444', '3', '01/05/2015 21:44:39','-16,2', 'RA03');
execute insertartiradas('RA0342125,9083680556', '26', '01/05/2015 21:48:03','13,2', 'RA03');
execute insertartiradas('RA0342125,908900463', '14', '01/05/2015 21:48:49','-16,2', 'RA03');
execute insertartiradas('RA0342125,9094444444', '19', '01/05/2015 21:49:36','12,2', 'RA03');
execute insertartiradas('RA0342125,9100578704', '32', '01/05/2015 21:50:29','-15,9', 'RA03');
execute insertartiradas('RA0342125,9105324074', '23', '01/05/2015 21:51:10','12,5', 'RA03');
execute insertartiradas('RA0342125,911087963', '20', '01/05/2015 21:51:58','-15,4', 'RA03');
execute insertartiradas('RA0342125,9116898148', '1', '01/05/2015 21:52:50','12,3', 'RA03');
execute insertartiradas('RA0342125,9121643519', '34', '01/05/2015 21:53:31','-15,1', 'RA03');
execute insertartiradas('RA0342125,9126157407', '8', '01/05/2015 21:54:10','12,9', 'RA03');
execute insertartiradas('RA0342125,9132060185', '16', '01/05/2015 21:55:01','-15,8', 'RA03');
execute insertartiradas('RA0342125,9138310185', '8', '01/05/2015 21:55:55','13', 'RA03');
execute insertartiradas('RA0342125,9143402778', '31', '01/05/2015 21:56:39','-16,2', 'RA03');
execute insertartiradas('RA0342125,9147800926', '24', '01/05/2015 21:57:17','12,6', 'RA03');
execute insertartiradas('RA0342125,9151851852', '35', '01/05/2015 21:57:52','-16,1', 'RA03');
execute insertartiradas('RA0342125,915625', '33', '01/05/2015 21:58:30','12,2', 'RA03');
execute insertartiradas('RA0342125,9161689815', '19', '01/05/2015 21:59:17','-15,1', 'RA03');
execute insertartiradas('RA0342125,9165856481', '14', '01/05/2015 21:59:53','12,2', 'RA03');
execute insertartiradas('RA0342125,9171064815', '25', '01/05/2015 22:00:38','-16', 'RA03');
execute insertartiradas('RA0342125,9174884259', '16', '01/05/2015 22:01:11','13,2', 'RA03');
execute insertartiradas('RA0342125,9179861111', '0', '01/05/2015 22:01:54','-15,9', 'RA03');
execute insertartiradas('RA0342125,9183912037', '19', '01/05/2015 22:02:29','13,2', 'RA03');
execute insertartiradas('RA0342125,9187152778', '23', '01/05/2015 22:02:57','-17', 'RA03');
execute insertartiradas('RA0342125,9194560185', '12', '01/05/2015 22:04:01','12', 'RA03');
execute insertartiradas('RA0342125,9204050926', '17', '01/05/2015 22:05:23','-16,2', 'RA03');
execute insertartiradas('RA0342125,9219560185', '14', '01/05/2015 22:07:37','14,3', 'RA03');
execute insertartiradas('RA0342125,9235763889', '10', '01/05/2015 22:09:57','-17,1', 'RA03');
execute insertartiradas('RA0342125,9245023148', '10', '01/05/2015 22:11:17','13,5', 'RA03');
execute insertartiradas('RA0342125,9254513889', '7', '01/05/2015 22:12:39','-15,5', 'RA03');
execute insertartiradas('RA0342125,926087963', '12', '01/05/2015 22:13:34','13,3', 'RA03');
execute insertartiradas('RA0342125,927037037', '10', '01/05/2015 22:14:56','-17,5', 'RA03');
execute insertartiradas('RA0342125,9280902778', '9', '01/05/2015 22:16:27','13,8', 'RA03');
execute insertartiradas('RA0342125,9288078704', '24', '01/05/2015 22:17:29','-15,4', 'RA03');
execute insertartiradas('RA0342125,9294212963', '25', '01/05/2015 22:18:22','13,2', 'RA03');
execute insertartiradas('RA0342125,9300925926', '7', '01/05/2015 22:19:20','-16,5', 'RA03');
execute insertartiradas('RA0342125,9306597222', '7', '01/05/2015 22:20:09','13,7', 'RA03');
execute insertartiradas('RA0342125,9311921296', '11', '01/05/2015 22:20:55','-16,5', 'RA03');
execute insertartiradas('RA0342125,9322685185', '9', '01/05/2015 22:22:28','13,1', 'RA03');
execute insertartiradas('RA0342125,9327430556', '10', '01/05/2015 22:23:09','-17,2', 'RA03');
execute insertartiradas('RA0342125,9335648148', '12', '01/05/2015 22:24:20','12,4', 'RA03');
execute insertartiradas('RA0342125,9344212963', '35', '01/05/2015 22:25:34','-14,4', 'RA03');
execute insertartiradas('RA0342125,9351967593', '9', '01/05/2015 22:26:41','13,4', 'RA03');
execute insertartiradas('RA0342125,9357060185', '1', '01/05/2015 22:27:25','-15,7', 'RA03');
execute insertartiradas('RA0342125,9363888889', '9', '01/05/2015 22:28:24','13,4', 'RA03');
execute insertartiradas('RA0342125,9371412037', '8', '01/05/2015 22:29:29','-14,5', 'RA03');
execute insertartiradas('RA0342125,9379513889', '29', '01/05/2015 22:30:39','13,1', 'RA03');
execute insertartiradas('RA0342125,9388310185', '31', '01/05/2015 22:31:55','-14,3', 'RA03');
execute insertartiradas('RA0342125,9394907407', '30', '01/05/2015 22:32:52','11,4', 'RA03');
execute insertartiradas('RA0342125,9404398148', '15', '01/05/2015 22:34:14','-14,6', 'RA03');
execute insertartiradas('RA0342125,9414236111', '5', '01/05/2015 22:35:39','13,6', 'RA03');
execute insertartiradas('RA0342125,9423842593', '0', '01/05/2015 22:37:02','-14,7', 'RA03');
execute insertartiradas('RA0342125,9440277778', '14', '01/05/2015 22:39:24','12', 'RA03');
execute insertartiradas('RA0342125,9448263889', '26', '01/05/2015 22:40:33','-14,7', 'RA03');
execute insertartiradas('RA0342125,9456018519', '27', '01/05/2015 22:41:40','11,2', 'RA03');
execute insertartiradas('RA0342125,9462847222', '17', '01/05/2015 22:42:39','-16,1', 'RA03');
execute insertartiradas('RA0342125,9471064815', '11', '01/05/2015 22:43:50','15,1', 'RA03');
execute insertartiradas('RA0342125,9490046296', '27', '01/05/2015 22:46:34','-16,1', 'RA03');
execute insertartiradas('RA0342125,949537037', '13', '01/05/2015 22:47:20','19,7', 'RA03');
execute insertartiradas('RA0342125,9506597222', '29', '01/05/2015 22:48:57','-15,1', 'RA03');
execute insertartiradas('RA0342125,9518171296', '27', '01/05/2015 22:50:37','18,9', 'RA03');
execute insertartiradas('RA0342125,9525115741', '21', '01/05/2015 22:51:37','-16', 'RA03');
execute insertartiradas('RA0342125,9535416667', '25', '01/05/2015 22:53:06','19,5', 'RA03');
execute insertartiradas('RA0342125,954537037', '32', '01/05/2015 22:54:32','-17,3', 'RA03');
execute insertartiradas('RA0342125,9552430556', '35', '01/05/2015 22:55:33','16,5', 'RA03');
execute insertartiradas('RA0342125,9562152777', '17', '01/05/2015 22:56:57','-17,8', 'RA03');
execute insertartiradas('RA0342125,9569097222', '31', '01/05/2015 22:57:57','17,9', 'RA03');
execute insertartiradas('RA0342125,9573726852', '8', '01/05/2015 22:58:37','-15,7', 'RA03');
execute insertartiradas('RA0342125,9576851852', '10', '01/05/2015 22:59:04','15,3', 'RA03');
execute insertartiradas('RA0342125,9579976852', '7', '01/05/2015 22:59:31','-15,6', 'RA03');
execute insertartiradas('RA0342125,9583101852', '7', '01/05/2015 22:59:58','13,8', 'RA03');
execute insertartiradas('RA0342125,9588078704', '5', '01/05/2015 23:00:41','-16,1', 'RA03');
execute insertartiradas('RA0342125,960162037', '18', '01/05/2015 23:02:38','14,8', 'RA03');
execute insertartiradas('RA0342125,9608564815', '20', '01/05/2015 23:03:38','-17,5', 'RA03');
execute insertartiradas('RA0342125,9614351852', '4', '01/05/2015 23:04:28','16,4', 'RA03');
execute insertartiradas('RA0342125,9624421296', '30', '01/05/2015 23:05:55','-16,1', 'RA03');
execute insertartiradas('RA0342125,9632407407', '9', '01/05/2015 23:07:04','17,2', 'RA03');
execute insertartiradas('RA0342125,9639699074', '23', '01/05/2015 23:08:07','-16,8', 'RA03');
execute insertartiradas('RA0342125,9649652778', '3', '01/05/2015 23:09:33','16,6', 'RA03');
execute insertartiradas('RA0342125,9657986111', '29', '01/05/2015 23:10:45','-14,6', 'RA03');
execute insertartiradas('RA0342125,9665509259', '24', '01/05/2015 23:11:50','15,4', 'RA03');
execute insertartiradas('RA0342125,9674189814', '26', '01/05/2015 23:13:05','-17,4', 'RA03');
execute insertartiradas('RA0342125,9685069444', '36', '01/05/2015 23:14:39','15,2', 'RA03');
execute insertartiradas('RA0342125,9703009259', '36', '01/05/2015 23:17:14','-14,6', 'RA03');
execute insertartiradas('RA0342125,9711574074', '0', '01/05/2015 23:18:28','15,5', 'RA03');
execute insertartiradas('RA0342125,9722222222', '10', '01/05/2015 23:20:00','-14,3', 'RA03');
execute insertartiradas('RA0342125,9734143519', '13', '01/05/2015 23:21:43','17,2', 'RA03');
execute insertartiradas('RA0342125,9745833333', '3', '01/05/2015 23:23:24','-15,7', 'RA03');
execute insertartiradas('RA0342125,9755439815', '31', '01/05/2015 23:24:47','17,2', 'RA03');
execute insertartiradas('RA0342125,9763425926', '0', '01/05/2015 23:25:56','-18,5', 'RA03');
execute insertartiradas('RA0342125,9773611111', '28', '01/05/2015 23:27:24','20', 'RA03');
execute insertartiradas('RA0342125,9781828704', '15', '01/05/2015 23:28:35','-18', 'RA03');
execute insertartiradas('RA0342125,9793287037', '19', '01/05/2015 23:30:14','16', 'RA03');
execute insertartiradas('RA0342125,9806134259', '25', '01/05/2015 23:32:05','-17,6', 'RA03');
execute insertartiradas('RA0342125,9813541667', '20', '01/05/2015 23:33:09','18', 'RA03');
execute insertartiradas('RA0342125,9823148148', '10', '01/05/2015 23:34:32','-15,8', 'RA03');
execute insertartiradas('RA0342125,9832407407', '36', '01/05/2015 23:35:52','16,1', 'RA03');
execute insertartiradas('RA0342125,9838888889', '0', '01/05/2015 23:36:48','-16,2', 'RA03');
execute insertartiradas('RA0342125,9849884259', '34', '01/05/2015 23:38:23','16,1', 'RA03');
execute insertartiradas('RA0342125,9859375', '1', '01/05/2015 23:39:45','-18,4', 'RA03');
execute insertartiradas('RA0342125,986712963', '8', '01/05/2015 23:40:52','13,8', 'RA03');
execute insertartiradas('RA0342125,9870833333', '27', '01/05/2015 23:41:24','-19,5', 'RA03');
execute insertartiradas('RA0342125,987662037', '18', '01/05/2015 23:42:14','18,6', 'RA03');
execute insertartiradas('RA0342125,9885069444', '16', '01/05/2015 23:43:27','-16,7', 'RA03');
execute insertartiradas('RA0342125,9891435185', '8', '01/05/2015 23:44:22','16,5', 'RA03');
execute insertartiradas('RA0342125,9902430556', '20', '01/05/2015 23:45:57','-16,1', 'RA03');
execute insertartiradas('RA0342125,9911805556', '19', '01/05/2015 23:47:18','18,2', 'RA03');
execute insertartiradas('RA0342125,9922685185', '15', '01/05/2015 23:48:52','-15,6', 'RA03');
execute insertartiradas('RA0342125,9934837963', '11', '01/05/2015 23:50:37','17,2', 'RA03');
execute insertartiradas('RA0342125,9945486111', '8', '01/05/2015 23:52:09','-15,7', 'RA03');
execute insertartiradas('RA0342125,9954050926', '35', '01/05/2015 23:53:23','14,2', 'RA03');
execute insertartiradas('RA0342125,9961689815', '26', '01/05/2015 23:54:29','-15,7', 'RA03');
execute insertartiradas('RA0342125,997974537', '15', '01/05/2015 23:57:05','16', 'RA03');
execute insertartiradas('RA0342125,9996064815', '35', '01/05/2015 23:59:26','-20,3', 'RA03');
execute insertartiradas('RA0342126,0007523148', '35', '02/05/2015 00:01:05','19,9', 'RA03');
execute insertartiradas('RA0342126,0024074074', '19', '02/05/2015 00:03:28','-20,2', 'RA03');
execute insertartiradas('RA0342126,004212963', '2', '02/05/2015 00:06:04','19,4', 'RA03');
execute insertartiradas('RA0342126,0049189815', '14', '02/05/2015 00:07:05','-21,3', 'RA03');
execute insertartiradas('RA0342126,0059027778', '4', '02/05/2015 00:08:30','14,2', 'RA03');
execute insertartiradas('RA0342126,0065393519', '6', '02/05/2015 00:09:25','-16,5', 'RA03');
execute insertartiradas('RA0342126,0071759259', '10', '02/05/2015 00:10:20','18,2', 'RA03');
execute insertartiradas('RA0342126,0079513889', '3', '02/05/2015 00:11:27','-17,7', 'RA03');
execute insertartiradas('RA0342126,0088773148', '14', '02/05/2015 00:12:47','16,2', 'RA03');
execute insertartiradas('RA0342126,0098842593', '17', '02/05/2015 00:14:14','-20,6', 'RA03');
execute insertartiradas('RA0342126,0107291667', '22', '02/05/2015 00:15:27','16,4', 'RA03');
execute insertartiradas('RA0342126,0118518519', '4', '02/05/2015 00:17:04','-19,2', 'RA03');
execute insertartiradas('RA0342126,0127546296', '14', '02/05/2015 00:18:22','21,6', 'RA03');
execute insertartiradas('RA0342126,014224537', '29', '02/05/2015 00:20:29','-11,6', 'RA03');
execute insertartiradas('RA0342126,01625', '18', '02/05/2015 00:23:24','24,4', 'RA03');
execute insertartiradas('RA0342126,0177546296', '24', '02/05/2015 00:25:34','-10,7', 'RA03');
execute insertartiradas('RA0342126,0187037037', '17', '02/05/2015 00:26:56','21,6', 'RA03');
execute insertartiradas('RA0342126,0197685185', '16', '02/05/2015 00:28:28','-23,1', 'RA03');
execute insertartiradas('RA0342126,020462963', '30', '02/05/2015 00:29:28','21,4', 'RA03');
execute insertartiradas('RA0342126,0212847222', '7', '02/05/2015 00:30:39','-22,1', 'RA03');
execute insertartiradas('RA0342126,0219212963', '9', '02/05/2015 00:31:34','21,8', 'RA03');
execute insertartiradas('RA0342126,0224768519', '29', '02/05/2015 00:32:22','-23,5', 'RA03');
execute insertartiradas('RA0342126,0233333333', '22', '02/05/2015 00:33:36','21,8', 'RA03');
execute insertartiradas('RA0342126,0242939815', '35', '02/05/2015 00:34:59','-20,4', 'RA03');
execute insertartiradas('RA0342126,0255671296', '11', '02/05/2015 00:36:49','16,8', 'RA03');
execute insertartiradas('RA0342126,0266087963', '14', '02/05/2015 00:38:19','-14,6', 'RA03');
execute insertartiradas('RA0342126,0280902778', '29', '02/05/2015 00:40:27','19,6', 'RA03');
execute insertartiradas('RA0342126,0296412037', '21', '02/05/2015 00:42:41','-15,3', 'RA03');
execute insertartiradas('RA0342126,0305324074', '6', '02/05/2015 00:43:58','16', 'RA03');
execute insertartiradas('RA0342126,0312731481', '10', '02/05/2015 00:45:02','-18,5', 'RA03');
execute insertartiradas('RA0342126,0325231481', '26', '02/05/2015 00:46:50','17', 'RA03');
execute insertartiradas('RA0342126,0337384259', '21', '02/05/2015 00:48:35','-15,3', 'RA03');
execute insertartiradas('RA0342126,0347222222', '34', '02/05/2015 00:50:00','17,5', 'RA03');
execute insertartiradas('RA0342126,0355208333', '21', '02/05/2015 00:51:09','-15,9', 'RA03');
execute insertartiradas('RA0342126,0364583333', '16', '02/05/2015 00:52:30','15,3', 'RA03');
execute insertartiradas('RA0342126,0371643519', '25', '02/05/2015 00:53:31','-15', 'RA03');
execute insertartiradas('RA0342126,0380208333', '33', '02/05/2015 00:54:45','17,9', 'RA03');
execute insertartiradas('RA0342126,0390972222', '21', '02/05/2015 00:56:18','-17,3', 'RA03');
execute insertartiradas('RA0342126,0409722222', '14', '02/05/2015 00:59:00','15,1', 'RA03');
execute insertartiradas('RA0342126,0416087963', '16', '02/05/2015 00:59:55','-14,6', 'RA03');
execute insertartiradas('RA0342126,0430324074', '3', '02/05/2015 01:01:58','14,5', 'RA03');
execute insertartiradas('RA0342126,043587963', '34', '02/05/2015 01:02:46','-14', 'RA03');
execute insertartiradas('RA0342126,044375', '21', '02/05/2015 01:03:54','14,6', 'RA03');
execute insertartiradas('RA0342126,0454976852', '25', '02/05/2015 01:05:31','-13,9', 'RA03');
execute insertartiradas('RA0342126,0466319444', '9', '02/05/2015 01:07:09','19', 'RA03');
execute insertartiradas('RA0342126,0473611111', '15', '02/05/2015 01:08:12','-15,7', 'RA03');
execute insertartiradas('RA0342126,0486111111', '32', '02/05/2015 01:10:00','16,4', 'RA03');
execute insertartiradas('RA0342126,0494560185', '15', '02/05/2015 01:11:13','-16,3', 'RA03');
execute insertartiradas('RA0342126,0502893518', '8', '02/05/2015 01:12:25','15,4', 'RA03');
execute insertartiradas('RA0342126,0510416667', '4', '02/05/2015 01:13:30','-16,8', 'RA03');
execute insertartiradas('RA0342126,051712963', '9', '02/05/2015 01:14:28','16,5', 'RA03');
execute insertartiradas('RA0342126,052662037', '27', '02/05/2015 01:15:50','-17,8', 'RA03');
execute insertartiradas('RA0342126,0534027778', '13', '02/05/2015 01:16:54','16,4', 'RA03');
execute insertartiradas('RA0342126,0542708333', '9', '02/05/2015 01:18:09','-14,5', 'RA03');
execute insertartiradas('RA0342126,0551967593', '9', '02/05/2015 01:19:29','14,7', 'RA03');
execute insertartiradas('RA0342126,0561226852', '35', '02/05/2015 01:20:49','-17,3', 'RA03');
execute insertartiradas('RA0342126,0570717593', '25', '02/05/2015 01:22:11','16,7', 'RA03');
execute insertartiradas('RA0342126,0580787037', '8', '02/05/2015 01:23:38','-17,7', 'RA03');
execute insertartiradas('RA0342126,0587731482', '21', '02/05/2015 01:24:38','16,2', 'RA03');
execute insertartiradas('RA0342126,0601157407', '33', '02/05/2015 01:26:34','-15,3', 'RA03');
execute insertartiradas('RA0342126,0609143519', '24', '02/05/2015 01:27:43','17,2', 'RA03');
execute insertartiradas('RA0342126,0622569444', '10', '02/05/2015 01:29:39','-14,3', 'RA03');
execute insertartiradas('RA0342126,0632523148', '34', '02/05/2015 01:31:05','15,8', 'RA03');
execute insertartiradas('RA0342126,0641087963', '16', '02/05/2015 01:32:19','-16,6', 'RA03');
execute insertartiradas('RA0342126,0649537037', '1', '02/05/2015 01:33:32','16,5', 'RA03');
execute insertartiradas('RA0342126,0656597222', '29', '02/05/2015 01:34:33','-15,6', 'RA03');
execute insertartiradas('RA0342126,0668171296', '35', '02/05/2015 01:36:13','16,7', 'RA03');
execute insertartiradas('RA0342126,0674074074', '13', '02/05/2015 01:37:04','-16,5', 'RA03');
execute insertartiradas('RA0342126,0684606481', '10', '02/05/2015 01:38:35','15,3', 'RA03');
execute insertartiradas('RA0342126,0695601852', '7', '02/05/2015 01:40:10','-18,4', 'RA03');
execute insertartiradas('RA0342126,0705902778', '28', '02/05/2015 01:41:39','19,1', 'RA03');
execute insertartiradas('RA0342126,0716898148', '1', '02/05/2015 01:43:14','-19,7', 'RA03');
execute insertartiradas('RA0342126,0723958333', '22', '02/05/2015 01:44:15','22', 'RA03');
execute insertartiradas('RA0342126,0733796296', '19', '02/05/2015 01:45:40','-22,2', 'RA03');
execute insertartiradas('RA0342126,0744675926', '3', '02/05/2015 01:47:14','19,4', 'RA03');
execute insertartiradas('RA0342126,0750925926', '28', '02/05/2015 01:48:08','-21,9', 'RA03');
execute insertartiradas('RA0342126,076400463', '16', '02/05/2015 01:50:01','21,5', 'RA03');
execute insertartiradas('RA0342126,0771180556', '3', '02/05/2015 01:51:03','-19,9', 'RA03');
execute insertartiradas('RA0342126,0781018519', '21', '02/05/2015 01:52:28','19', 'RA03');
execute insertartiradas('RA0342126,078912037', '13', '02/05/2015 01:53:38','-26', 'RA03');
execute insertartiradas('RA0342126,0799884259', '22', '02/05/2015 01:55:11','24,1', 'RA03');
execute insertartiradas('RA0342126,0813888889', '31', '02/05/2015 01:57:12','-20,9', 'RA03');
execute insertartiradas('RA0342126,7237384259', '30', '02/05/2015 17:22:11','-16,6', 'RA03');
execute insertartiradas('RA0342126,7242476852', '26', '02/05/2015 17:22:55','13,5', 'RA03');
execute insertartiradas('RA0342126,7247685185', '14', '02/05/2015 17:23:40','-14,8', 'RA03');
execute insertartiradas('RA0342126,7254050926', '11', '02/05/2015 17:24:35','14,5', 'RA03');
execute insertartiradas('RA0342126,7257986111', '21', '02/05/2015 17:25:09','-13', 'RA03');
execute insertartiradas('RA0342126,7262037037', '20', '02/05/2015 17:25:44','13,7', 'RA03');
execute insertartiradas('RA0342126,7372106481', '30', '02/05/2015 17:41:35','-14,4', 'RA03');
execute insertartiradas('RA0342126,7377777778', '33', '02/05/2015 17:42:24','13,9', 'RA03');
execute insertartiradas('RA0342126,7380671296', '28', '02/05/2015 17:42:49','-14', 'RA03');
execute insertartiradas('RA0342126,7383217593', '13', '02/05/2015 17:43:11','13,1', 'RA03');
execute insertartiradas('RA0342126,7386111111', '18', '02/05/2015 17:43:36','-14,5', 'RA03');
execute insertartiradas('RA0342126,738912037', '36', '02/05/2015 17:44:02','13', 'RA03');
execute insertartiradas('RA0342126,7391782407', '16', '02/05/2015 17:44:25','-13,9', 'RA03');
execute insertartiradas('RA0342126,7396643519', '5', '02/05/2015 17:45:07','14', 'RA03');
execute insertartiradas('RA0342126,7403703704', '35', '02/05/2015 17:46:08','-15,3', 'RA03');
execute insertartiradas('RA0342126,7416319444', '5', '02/05/2015 17:47:57','16,3', 'RA03');
execute insertartiradas('RA0342126,7420486111', '0', '02/05/2015 17:48:33','-14', 'RA03');
execute insertartiradas('RA0342126,7422916667', '36', '02/05/2015 17:48:54','17', 'RA03');
execute insertartiradas('RA0342126,7430208333', '12', '02/05/2015 17:49:57','-15', 'RA03');
execute insertartiradas('RA0342126,743287037', '13', '02/05/2015 17:50:20','14,4', 'RA03');
execute insertartiradas('RA0342126,7435185185', '25', '02/05/2015 17:50:40','-13,1', 'RA03');
execute insertartiradas('RA0342126,7438657407', '32', '02/05/2015 17:51:10','14,6', 'RA03');
execute insertartiradas('RA0342126,7528356481', '16', '02/05/2015 18:04:05','-14,9', 'RA03');
execute insertartiradas('RA0342126,7531828704', '34', '02/05/2015 18:04:35','14,9', 'RA03');
execute insertartiradas('RA0342126,753599537', '11', '02/05/2015 18:05:11','-11,5', 'RA03');
execute insertartiradas('RA0342126,753900463', '33', '02/05/2015 18:05:37','13,5', 'RA03');
execute insertartiradas('RA0342126,7542476852', '6', '02/05/2015 18:06:07','-13,4', 'RA03');
execute insertartiradas('RA0342126,755625', '7', '02/05/2015 18:08:06','13,6', 'RA03');
execute insertartiradas('RA0342126,7560648148', '28', '02/05/2015 18:08:44','-14,9', 'RA03');
execute insertartiradas('RA0342126,7565277778', '0', '02/05/2015 18:09:24','15,7', 'RA03');
execute insertartiradas('RA0342126,7570949074', '19', '02/05/2015 18:10:13','-15,3', 'RA03');
execute insertartiradas('RA0342126,7576736111', '30', '02/05/2015 18:11:03','14,1', 'RA03');
execute insertartiradas('RA0342126,758275463', '34', '02/05/2015 18:11:55','-15,5', 'RA03');
execute insertartiradas('RA0342126,7588078704', '6', '02/05/2015 18:12:41','14,5', 'RA03');
execute insertartiradas('RA0342126,7591319444', '16', '02/05/2015 18:13:09','-12,1', 'RA03');
execute insertartiradas('RA0342126,7596990741', '22', '02/05/2015 18:13:58','14,9', 'RA03');
execute insertartiradas('RA0342126,7600925926', '30', '02/05/2015 18:14:32','-14,2', 'RA03');
execute insertartiradas('RA0342126,7605555556', '34', '02/05/2015 18:15:12','13,9', 'RA03');
execute insertartiradas('RA0342126,7609837963', '3', '02/05/2015 18:15:49','-14,5', 'RA03');
execute insertartiradas('RA0342126,761712963', '4', '02/05/2015 18:16:52','15,7', 'RA03');
execute insertartiradas('RA0342126,7622800926', '16', '02/05/2015 18:17:41','-13,8', 'RA03');
execute insertartiradas('RA0342126,7628703704', '7', '02/05/2015 18:18:32','15,7', 'RA03');
execute insertartiradas('RA0342126,7634606482', '15', '02/05/2015 18:19:23','-16,2', 'RA03');
execute insertartiradas('RA0342126,763912037', '18', '02/05/2015 18:20:02','14,1', 'RA03');
execute insertartiradas('RA0342126,7680092593', '5', '02/05/2015 18:25:56','-16,6', 'RA03');
execute insertartiradas('RA0342126,7683564815', '16', '02/05/2015 18:26:26','13,3', 'RA03');
execute insertartiradas('RA0342126,7724074074', '10', '02/05/2015 18:32:16','-16,7', 'RA03');
execute insertartiradas('RA0342126,7731597222', '2', '02/05/2015 18:33:21','13,3', 'RA03');
execute insertartiradas('RA0342126,7736574074', '19', '02/05/2015 18:34:04','-16,4', 'RA03');
execute insertartiradas('RA0342126,7741898148', '29', '02/05/2015 18:34:50','13,3', 'RA03');
execute insertartiradas('RA0342126,7746990741', '11', '02/05/2015 18:35:34','-16,6', 'RA03');
execute insertartiradas('RA0342126,7753935185', '15', '02/05/2015 18:36:34','14,3', 'RA03');
execute insertartiradas('RA0342126,7758912037', '32', '02/05/2015 18:37:17','-15,4', 'RA03');
execute insertartiradas('RA0342126,7764236111', '7', '02/05/2015 18:38:03','13,4', 'RA03');
execute insertartiradas('RA0342126,7768981481', '26', '02/05/2015 18:38:44','-16', 'RA03');
execute insertartiradas('RA0342126,7774537037', '30', '02/05/2015 18:39:32','13', 'RA03');
execute insertartiradas('RA0342126,7779861111', '27', '02/05/2015 18:40:18','-15,2', 'RA03');
execute insertartiradas('RA0342126,7784259259', '34', '02/05/2015 18:40:56','13,4', 'RA03');
execute insertartiradas('RA0342126,7791319444', '3', '02/05/2015 18:41:57','-16', 'RA03');
execute insertartiradas('RA0342126,7796527778', '2', '02/05/2015 18:42:42','13,1', 'RA03');
execute insertartiradas('RA0342126,780150463', '20', '02/05/2015 18:43:25','-15,5', 'RA03');
execute insertartiradas('RA0342126,7808564815', '31', '02/05/2015 18:44:26','13,1', 'RA03');
execute insertartiradas('RA0342126,7846296296', '19', '02/05/2015 18:49:52','-17,4', 'RA03');
execute insertartiradas('RA0342126,7852546296', '20', '02/05/2015 18:50:46','12,4', 'RA03');
execute insertartiradas('RA0342126,7856944444', '13', '02/05/2015 18:51:24','-15,1', 'RA03');
execute insertartiradas('RA0342126,7861342593', '28', '02/05/2015 18:52:02','12,9', 'RA03');
execute insertartiradas('RA0342126,7865625', '33', '02/05/2015 18:52:39','-14,3', 'RA03');
execute insertartiradas('RA0342126,7870717593', '2', '02/05/2015 18:53:23','11,3', 'RA03');
execute insertartiradas('RA0342126,7875694444', '15', '02/05/2015 18:54:06','-15,6', 'RA03');
execute insertartiradas('RA0342126,7880092593', '21', '02/05/2015 18:54:44','13,2', 'RA03');
execute insertartiradas('RA0342126,8039930556', '34', '02/05/2015 19:17:45','-16,9', 'RA03');
execute insertartiradas('RA0342126,8346064814', '36', '02/05/2015 20:01:50','-20,9', 'RA03');
execute insertartiradas('RA0342126,8353125', '1', '02/05/2015 20:02:51','20,3', 'RA03');
execute insertartiradas('RA0342126,8359722222', '24', '02/05/2015 20:03:48','-19,3', 'RA03');
execute insertartiradas('RA0342126,8365856481', '26', '02/05/2015 20:04:41','17,9', 'RA03');
execute insertartiradas('RA0342126,8374421296', '31', '02/05/2015 20:05:55','-20,6', 'RA03');
execute insertartiradas('RA0342126,8381712963', '23', '02/05/2015 20:06:58','19,8', 'RA03');
execute insertartiradas('RA0342126,8388310185', '31', '02/05/2015 20:07:55','-17,9', 'RA03');
execute insertartiradas('RA0342126,8396064815', '10', '02/05/2015 20:09:02','22,4', 'RA03');
execute insertartiradas('RA0342126,8403703704', '13', '02/05/2015 20:10:08','-17', 'RA03');
execute insertartiradas('RA0342126,8411574074', '22', '02/05/2015 20:11:16','18,8', 'RA03');
execute insertartiradas('RA0342126,8418402778', '31', '02/05/2015 20:12:15','-22,5', 'RA03');
execute insertartiradas('RA0342126,8425231481', '23', '02/05/2015 20:13:14','18,3', 'RA03');
execute insertartiradas('RA0342126,8432291667', '35', '02/05/2015 20:14:15','-16', 'RA03');
execute insertartiradas('RA0342126,844525463', '22', '02/05/2015 20:16:07','21,7', 'RA03');
execute insertartiradas('RA0342126,8450810185', '5', '02/05/2015 20:16:55','-18,1', 'RA03');
execute insertartiradas('RA0342126,845462963', '33', '02/05/2015 20:17:28','17', 'RA03');
execute insertartiradas('RA0342126,8458217593', '36', '02/05/2015 20:17:59','-20,4', 'RA03');
execute insertartiradas('RA0342126,8461689815', '6', '02/05/2015 20:18:29','15,8', 'RA03');
execute insertartiradas('RA0342126,8464814815', '24', '02/05/2015 20:18:56','-17,7', 'RA03');
execute insertartiradas('RA0342126,8502893519', '30', '02/05/2015 20:24:25','18,1', 'RA03');
execute insertartiradas('RA0342126,8707291667', '27', '02/05/2015 20:53:51','-15,1', 'RA03');
execute insertartiradas('RA0342126,8745486111', '27', '02/05/2015 20:59:21','14,3', 'RA03');
execute insertartiradas('RA0342126,8754166667', '26', '02/05/2015 21:00:36','-15,5', 'RA03');
execute insertartiradas('RA0342126,8767939815', '23', '02/05/2015 21:02:35','17,1', 'RA03');
execute insertartiradas('RA0342126,8778009259', '36', '02/05/2015 21:04:02','-15,3', 'RA03');
execute insertartiradas('RA0342126,8783449074', '15', '02/05/2015 21:04:49','15,6', 'RA03');
execute insertartiradas('RA0342126,8790509259', '15', '02/05/2015 21:05:50','-17,2', 'RA03');
execute insertartiradas('RA0342126,8799074074', '1', '02/05/2015 21:07:04','18,1', 'RA03');
execute insertartiradas('RA0342126,8806365741', '17', '02/05/2015 21:08:07','-16,7', 'RA03');
execute insertartiradas('RA0342126,8814583333', '10', '02/05/2015 21:09:18','15', 'RA03');
execute insertartiradas('RA0342126,8823842593', '13', '02/05/2015 21:10:38','-17,6', 'RA03');
execute insertartiradas('RA0342126,8831481481', '13', '02/05/2015 21:11:44','13,1', 'RA03');
execute insertartiradas('RA0342126,8837268519', '14', '02/05/2015 21:12:34','-14,9', 'RA03');
execute insertartiradas('RA0342126,8845717593', '0', '02/05/2015 21:13:47','15', 'RA03');
execute insertartiradas('RA0342126,8858217593', '23', '02/05/2015 21:15:35','-14,1', 'RA03');
execute insertartiradas('RA0342126,8865393518', '9', '02/05/2015 21:16:37','15,8', 'RA03');
execute insertartiradas('RA0342126,8871412037', '35', '02/05/2015 21:17:29','-16,3', 'RA03');
execute insertartiradas('RA0342126,8880208333', '18', '02/05/2015 21:18:45','15,6', 'RA03');
execute insertartiradas('RA0342126,8886458333', '28', '02/05/2015 21:19:39','-15,6', 'RA03');
execute insertartiradas('RA0342126,8891203704', '1', '02/05/2015 21:20:20','15,1', 'RA03');
execute insertartiradas('RA0342126,8899537037', '32', '02/05/2015 21:21:32','-14,6', 'RA03');
execute insertartiradas('RA0342126,8907523148', '19', '02/05/2015 21:22:41','13,5', 'RA03');
execute insertartiradas('RA0342126,8916666667', '11', '02/05/2015 21:24:00','-21,3', 'RA03');
execute insertartiradas('RA0342126,8928472222', '10', '02/05/2015 21:25:42','17,6', 'RA03');
execute insertartiradas('RA0342126,8939699074', '25', '02/05/2015 21:27:19','-13,8', 'RA03');
execute insertartiradas('RA0342126,8947800926', '22', '02/05/2015 21:28:29','16,3', 'RA03');
execute insertartiradas('RA0342126,8959259259', '6', '02/05/2015 21:30:08','-13,7', 'RA03');
execute insertartiradas('RA0342126,8966898148', '7', '02/05/2015 21:31:14','16,8', 'RA03');
execute insertartiradas('RA0342126,8976273148', '23', '02/05/2015 21:32:35','-17,1', 'RA03');
execute insertartiradas('RA0342126,8986805556', '30', '02/05/2015 21:34:06','16,3', 'RA03');
execute insertartiradas('RA0342126,8994212963', '11', '02/05/2015 21:35:10','-14,6', 'RA03');
execute insertartiradas('RA0342126,9002083333', '21', '02/05/2015 21:36:18','15,6', 'RA03');
execute insertartiradas('RA0342126,9011111111', '29', '02/05/2015 21:37:36','-16,5', 'RA03');
execute insertartiradas('RA0342126,9022453704', '11', '02/05/2015 21:39:14','16,1', 'RA03');
execute insertartiradas('RA0342126,9031018519', '21', '02/05/2015 21:40:28','-15,7', 'RA03');
execute insertartiradas('RA0342126,9041319444', '0', '02/05/2015 21:41:57','19,4', 'RA03');
execute insertartiradas('RA0342126,9047800926', '7', '02/05/2015 21:42:53','-18,5', 'RA03');
execute insertartiradas('RA0342126,9054050926', '30', '02/05/2015 21:43:47','18,7', 'RA03');
execute insertartiradas('RA0342126,9062847222', '20', '02/05/2015 21:45:03','-20,9', 'RA03');
execute insertartiradas('RA0342126,9072222222', '11', '02/05/2015 21:46:24','17,6', 'RA03');
execute insertartiradas('RA0342126,9081365741', '25', '02/05/2015 21:47:43','-20,3', 'RA03');
execute insertartiradas('RA0342126,9087384259', '15', '02/05/2015 21:48:35','18,3', 'RA03');
execute insertartiradas('RA0342126,9096412037', '9', '02/05/2015 21:49:53','-18,5', 'RA03');
execute insertartiradas('RA0342126,910162037', '10', '02/05/2015 21:50:38','19,3', 'RA03');
execute insertartiradas('RA0342126,9110416667', '9', '02/05/2015 21:51:54','-19,8', 'RA03');
execute insertartiradas('RA0342126,9114930556', '19', '02/05/2015 21:52:33','19,9', 'RA03');
execute insertartiradas('RA0342126,9121527778', '33', '02/05/2015 21:53:30','-19', 'RA03');
execute insertartiradas('RA0342126,9127083333', '5', '02/05/2015 21:54:18','19,4', 'RA03');
execute insertartiradas('RA0342126,9165509259', '11', '02/05/2015 21:59:50','-19,8', 'RA03');
execute insertartiradas('RA0342126,9237268519', '19', '02/05/2015 22:10:10','17,8', 'RA03');
execute insertartiradas('RA0342126,9241898148', '23', '02/05/2015 22:10:50','-20,8', 'RA03');
execute insertartiradas('RA0342126,9246296296', '27', '02/05/2015 22:11:28','20,9', 'RA03');
execute insertartiradas('RA0342126,925', '32', '02/05/2015 22:12:00','-20,7', 'RA03');
execute insertartiradas('RA0342126,9254398148', '15', '02/05/2015 22:12:38','19', 'RA03');
execute insertartiradas('RA0342126,9258564815', '17', '02/05/2015 22:13:14','-20,6', 'RA03');
execute insertartiradas('RA0342126,92625', '13', '02/05/2015 22:13:48','19,4', 'RA03');
execute insertartiradas('RA0342126,926724537', '22', '02/05/2015 22:14:29','-19', 'RA03');
execute insertartiradas('RA0342126,9271643519', '0', '02/05/2015 22:15:07','19,6', 'RA03');
execute insertartiradas('RA0342126,9276851852', '7', '02/05/2015 22:15:52','-18,9', 'RA03');
execute insertartiradas('RA0342126,9280902778', '29', '02/05/2015 22:16:27','18,9', 'RA03');
execute insertartiradas('RA0342126,9286342593', '8', '02/05/2015 22:17:14','-20', 'RA03');
execute insertartiradas('RA0342126,9290740741', '8', '02/05/2015 22:17:52','19', 'RA03');
execute insertartiradas('RA0342126,929525463', '20', '02/05/2015 22:18:31','-20,2', 'RA03');
execute insertartiradas('RA0342126,9298611111', '25', '02/05/2015 22:19:00','18,6', 'RA03');
execute insertartiradas('RA0342126,9302662037', '16', '02/05/2015 22:19:35','-22', 'RA03');
execute insertartiradas('RA0342126,9306712963', '1', '02/05/2015 22:20:10','19,7', 'RA03');
execute insertartiradas('RA0342126,9310185185', '13', '02/05/2015 22:20:40','-20', 'RA03');
execute insertartiradas('RA0342126,9314814815', '11', '02/05/2015 22:21:20','14,9', 'RA03');
execute insertartiradas('RA0342126,9319560185', '6', '02/05/2015 22:22:01','-16,4', 'RA03');
execute insertartiradas('RA0342126,9323611111', '20', '02/05/2015 22:22:36','13,1', 'RA03');
execute insertartiradas('RA0342126,9327314815', '14', '02/05/2015 22:23:08','-14,6', 'RA03');
execute insertartiradas('RA0342126,9331828704', '33', '02/05/2015 22:23:47','12,3', 'RA03');
execute insertartiradas('RA0342126,933599537', '32', '02/05/2015 22:24:23','-15,2', 'RA03');
execute insertartiradas('RA0342126,9340162037', '31', '02/05/2015 22:24:59','12,5', 'RA03');
execute insertartiradas('RA0342126,9343981482', '2', '02/05/2015 22:25:32','-14,2', 'RA03');
execute insertartiradas('RA0342126,9347569444', '34', '02/05/2015 22:26:03','12,5', 'RA03');
execute insertartiradas('RA0342126,9365046296', '32', '02/05/2015 22:28:34','-14,9', 'RA03');
execute insertartiradas('RA0342126,937025463', '4', '02/05/2015 22:29:19','12,1', 'RA03');
execute insertartiradas('RA0342126,9374537037', '2', '02/05/2015 22:29:56','-14,9', 'RA03');
execute insertartiradas('RA0342126,937962963', '21', '02/05/2015 22:30:40','11,6', 'RA03');
execute insertartiradas('RA0342126,9384490741', '32', '02/05/2015 22:31:22','-15,2', 'RA03');
execute insertartiradas('RA0342126,9389583333', '0', '02/05/2015 22:32:06','11,8', 'RA03');
execute insertartiradas('RA0342126,9393518519', '6', '02/05/2015 22:32:40','-13,6', 'RA03');
execute insertartiradas('RA0342126,9398611111', '33', '02/05/2015 22:33:24','12,4', 'RA03');
execute insertartiradas('RA0342126,9403009259', '20', '02/05/2015 22:34:02','-14,3', 'RA03');
execute insertartiradas('RA0342126,9406828704', '28', '02/05/2015 22:34:35','12', 'RA03');
execute insertartiradas('RA0342126,9430208333', '29', '02/05/2015 22:37:57','-15,4', 'RA03');
execute insertartiradas('RA0342126,9435648148', '3', '02/05/2015 22:38:44','12,2', 'RA03');
execute insertartiradas('RA0342126,9440856481', '35', '02/05/2015 22:39:29','-14,6', 'RA03');
execute insertartiradas('RA0342126,9446064815', '22', '02/05/2015 22:40:14','13', 'RA03');
execute insertartiradas('RA0342126,9452430556', '27', '02/05/2015 22:41:09','-14,6', 'RA03');
execute insertartiradas('RA0342126,9456712963', '0', '02/05/2015 22:41:46','11,3', 'RA03');
execute insertartiradas('RA0342126,9461574074', '30', '02/05/2015 22:42:28','-16,3', 'RA03');
execute insertartiradas('RA0342126,9467824074', '26', '02/05/2015 22:43:22','18,7', 'RA03');
execute insertartiradas('RA0342126,9474074074', '21', '02/05/2015 22:44:16','-20', 'RA03');
execute insertartiradas('RA0342126,9484027777', '24', '02/05/2015 22:45:42','18,3', 'RA03');
execute insertartiradas('RA0342126,9493171296', '27', '02/05/2015 22:47:01','-21,2', 'RA03');
execute insertartiradas('RA0342126,9499537037', '28', '02/05/2015 22:47:56','19,4', 'RA03');
execute insertartiradas('RA0342126,9506828704', '8', '02/05/2015 22:48:59','-18,9', 'RA03');
execute insertartiradas('RA0342126,9512731481', '33', '02/05/2015 22:49:50','18,9', 'RA03');
execute insertartiradas('RA0342126,9521875', '33', '02/05/2015 22:51:09','-21,1', 'RA03');
execute insertartiradas('RA0342126,9531944444', '30', '02/05/2015 22:52:36','14,2', 'RA03');
execute insertartiradas('RA0342126,9538078704', '9', '02/05/2015 22:53:29','-19,3', 'RA03');
execute insertartiradas('RA0342126,9544212963', '29', '02/05/2015 22:54:22','17,7', 'RA03');
execute insertartiradas('RA0342126,9551157407', '10', '02/05/2015 22:55:22','-19,4', 'RA03');
execute insertartiradas('RA0342126,9560648148', '10', '02/05/2015 22:56:44','19,6', 'RA03');
execute insertartiradas('RA0342126,9572222222', '36', '02/05/2015 22:58:24','-17', 'RA03');
execute insertartiradas('RA0342126,9579050926', '32', '02/05/2015 22:59:23','16,5', 'RA03');
execute insertartiradas('RA0342126,9585763888', '27', '02/05/2015 23:00:21','-16', 'RA03');
execute insertartiradas('RA0342126,9591782407', '7', '02/05/2015 23:01:13','17,2', 'RA03');
execute insertartiradas('RA0342126,9597337963', '4', '02/05/2015 23:02:01','-19,7', 'RA03');
execute insertartiradas('RA0342126,960150463', '0', '02/05/2015 23:02:37','16,1', 'RA03');
execute insertartiradas('RA0342126,9608101852', '11', '02/05/2015 23:03:34','-18,8', 'RA03');
execute insertartiradas('RA0342126,9612037037', '31', '02/05/2015 23:04:08','15,9', 'RA03');
execute insertartiradas('RA0342126,9617013889', '3', '02/05/2015 23:04:51','-17,9', 'RA03');
execute insertartiradas('RA0342126,9621296296', '35', '02/05/2015 23:05:28','16,5', 'RA03');
execute insertartiradas('RA0342126,962650463', '11', '02/05/2015 23:06:13','-18,1', 'RA03');
execute insertartiradas('RA0342126,9630671296', '6', '02/05/2015 23:06:49','16,9', 'RA03');
execute insertartiradas('RA0342126,9635763889', '16', '02/05/2015 23:07:33','-17,2', 'RA03');
execute insertartiradas('RA0342126,9640625', '3', '02/05/2015 23:08:15','16,9', 'RA03');
execute insertartiradas('RA0342126,9646296296', '10', '02/05/2015 23:09:04','-16,6', 'RA03');
execute insertartiradas('RA0342126,9651388889', '24', '02/05/2015 23:09:48','18,3', 'RA03');
execute insertartiradas('RA0342126,9656481482', '28', '02/05/2015 23:10:32','-19,4', 'RA03');
execute insertartiradas('RA0342126,966099537', '23', '02/05/2015 23:11:11','17,2', 'RA03');
execute insertartiradas('RA0342126,9665162037', '28', '02/05/2015 23:11:47','-16,9', 'RA03');
execute insertartiradas('RA0342126,9669907407', '3', '02/05/2015 23:12:28','16,5', 'RA03');
execute insertartiradas('RA0342126,9674305556', '18', '02/05/2015 23:13:06','-18,5', 'RA03');
execute insertartiradas('RA0342126,9677893519', '33', '02/05/2015 23:13:37','17,3', 'RA03');
execute insertartiradas('RA0342126,9682175926', '25', '02/05/2015 23:14:14','-18,4', 'RA03');
execute insertartiradas('RA0342126,9686342593', '17', '02/05/2015 23:14:50','18,8', 'RA03');
execute insertartiradas('RA0342126,9690509259', '22', '02/05/2015 23:15:26','-18,4', 'RA03');
execute insertartiradas('RA0342126,9694097222', '25', '02/05/2015 23:15:57','17,3', 'RA03');
execute insertartiradas('RA0342126,9698958333', '22', '02/05/2015 23:16:39','-18,2', 'RA03');
execute insertartiradas('RA0342126,9703587963', '6', '02/05/2015 23:17:19','17,1', 'RA03');
execute insertartiradas('RA0342126,9708101851', '34', '02/05/2015 23:17:58','-18', 'RA03');
execute insertartiradas('RA0342126,9714699074', '17', '02/05/2015 23:18:55','16,2', 'RA03');
execute insertartiradas('RA0342126,9720023148', '23', '02/05/2015 23:19:41','-18,7', 'RA03');
execute insertartiradas('RA0342126,9725578704', '3', '02/05/2015 23:20:29','19,2', 'RA03');
execute insertartiradas('RA0342126,9730671296', '18', '02/05/2015 23:21:13','-20,9', 'RA03');
execute insertartiradas('RA0342126,973599537', '18', '02/05/2015 23:21:59','14,2', 'RA03');
execute insertartiradas('RA0342126,9740740741', '23', '02/05/2015 23:22:40','-15,2', 'RA03');
execute insertartiradas('RA0342126,9744791667', '13', '02/05/2015 23:23:15','14,3', 'RA03');
execute insertartiradas('RA0342126,9749305556', '19', '02/05/2015 23:23:54','-15,4', 'RA03');
execute insertartiradas('RA0342126,9753240741', '29', '02/05/2015 23:24:28','14,8', 'RA03');
execute insertartiradas('RA0342126,9759027778', '24', '02/05/2015 23:25:18','-15,8', 'RA03');
execute insertartiradas('RA0342126,9763773148', '17', '02/05/2015 23:25:59','15,7', 'RA03');
execute insertartiradas('RA0342126,9768634259', '2', '02/05/2015 23:26:41','-15,9', 'RA03');
execute insertartiradas('RA0342126,9772569444', '28', '02/05/2015 23:27:15','13', 'RA03');
execute insertartiradas('RA0342126,977662037', '6', '02/05/2015 23:27:50','-15', 'RA03');
execute insertartiradas('RA0342126,9780555556', '13', '02/05/2015 23:28:24','12,6', 'RA03');
execute insertartiradas('RA0342126,9785416667', '11', '02/05/2015 23:29:06','-14,5', 'RA03');
execute insertartiradas('RA0342126,9789467593', '4', '02/05/2015 23:29:41','14,1', 'RA03');
execute insertartiradas('RA0342126,9793055556', '12', '02/05/2015 23:30:12','-14,5', 'RA03');
execute insertartiradas('RA0342126,9798958333', '16', '02/05/2015 23:31:03','12,4', 'RA03');
execute insertartiradas('RA0342126,9805092593', '13', '02/05/2015 23:31:56','-13,6', 'RA03');
execute insertartiradas('RA0342126,9810416667', '28', '02/05/2015 23:32:42','14,2', 'RA03');
execute insertartiradas('RA0342126,9814236111', '29', '02/05/2015 23:33:15','-14,3', 'RA03');
execute insertartiradas('RA0342126,9818171296', '26', '02/05/2015 23:33:49','11,9', 'RA03');
execute insertartiradas('RA0342126,9821990741', '7', '02/05/2015 23:34:22','-13,2', 'RA03');
execute insertartiradas('RA0342126,9827430556', '32', '02/05/2015 23:35:09','12', 'RA03');
execute insertartiradas('RA0342126,9831597222', '32', '02/05/2015 23:35:45','-14,9', 'RA03');
execute insertartiradas('RA0342126,9835648148', '1', '02/05/2015 23:36:20','12,8', 'RA03');
execute insertartiradas('RA0342126,9839699074', '27', '02/05/2015 23:36:55','-14,1', 'RA03');
execute insertartiradas('RA0342126,9843981481', '22', '02/05/2015 23:37:32','11,6', 'RA03');
execute insertartiradas('RA0342126,9848958333', '30', '02/05/2015 23:38:15','-14,2', 'RA03');
execute insertartiradas('RA0342126,9854513889', '33', '02/05/2015 23:39:03','12,7', 'RA03');
execute insertartiradas('RA0342126,9857986111', '14', '02/05/2015 23:39:33','-15,7', 'RA03');
execute insertartiradas('RA0342126,986400463', '10', '02/05/2015 23:40:25','11,6', 'RA03');
execute insertartiradas('RA0342126,9868634259', '32', '02/05/2015 23:41:05','-14,6', 'RA03');
execute insertartiradas('RA0342126,9875347222', '24', '02/05/2015 23:42:03','12,1', 'RA03');
execute insertartiradas('RA0342126,9882407407', '5', '02/05/2015 23:43:04','-15,2', 'RA03');
execute insertartiradas('RA0342126,9887268519', '12', '02/05/2015 23:43:46','13,7', 'RA03');
execute insertartiradas('RA0342126,9891203704', '17', '02/05/2015 23:44:20','-20,5', 'RA03');
execute insertartiradas('RA0342126,9895254629', '29', '02/05/2015 23:44:55','19', 'RA03');
execute insertartiradas('RA0342126,9899189815', '24', '02/05/2015 23:45:29','-21,5', 'RA03');
execute insertartiradas('RA0342126,9906134259', '15', '02/05/2015 23:46:29','18', 'RA03');
execute insertartiradas('RA0342126,9910300926', '19', '02/05/2015 23:47:05','-19,8', 'RA03');
execute insertartiradas('RA0342126,9914930556', '4', '02/05/2015 23:47:45','18,2', 'RA03');
execute insertartiradas('RA0342126,9918634259', '24', '02/05/2015 23:48:17','-22,4', 'RA03');
execute insertartiradas('RA0342126,9922222222', '2', '02/05/2015 23:48:48','18', 'RA03');
execute insertartiradas('RA0342126,9925810185', '29', '02/05/2015 23:49:19','-17,9', 'RA03');
execute insertartiradas('RA0342126,9929398148', '13', '02/05/2015 23:49:50','17,9', 'RA03');
execute insertartiradas('RA0342126,9933101852', '1', '02/05/2015 23:50:22','-21,2', 'RA03');
execute insertartiradas('RA0342126,9936921296', '10', '02/05/2015 23:50:55','19,7', 'RA03');
execute insertartiradas('RA0342126,9943287037', '3', '02/05/2015 23:51:50','-21,2', 'RA03');
execute insertartiradas('RA0342126,9947685185', '20', '02/05/2015 23:52:28','15,7', 'RA03');
execute insertartiradas('RA0342126,9954166667', '6', '02/05/2015 23:53:24','-18,7', 'RA03');
execute insertartiradas('RA0342126,9958796296', '19', '02/05/2015 23:54:04','16,6', 'RA03');
execute insertartiradas('RA0342126,9963078703', '22', '02/05/2015 23:54:41','-17,6', 'RA03');
execute insertartiradas('RA0342126,996712963', '31', '02/05/2015 23:55:16','17,9', 'RA03');
execute insertartiradas('RA0342126,9970949074', '6', '02/05/2015 23:55:49','-19,4', 'RA03');
execute insertartiradas('RA0342126,9975462963', '28', '02/05/2015 23:56:28','13,8', 'RA03');
execute insertartiradas('RA0342126,9980439815', '24', '02/05/2015 23:57:11','-19', 'RA03');
execute insertartiradas('RA0342126,9985763889', '30', '02/05/2015 23:57:57','18,9', 'RA03');
execute insertartiradas('RA0342126,9990277778', '24', '02/05/2015 23:58:36','-23,5', 'RA03');
execute insertartiradas('RA0342126,9994675926', '9', '02/05/2015 23:59:14','18,9', 'RA03');
execute insertartiradas('RA0342127,0000231481', '12', '03/05/2015 00:00:02','-18,7', 'RA03');
execute insertartiradas('RA0342127,0004513889', '15', '03/05/2015 00:00:39','19,5', 'RA03');
execute insertartiradas('RA0342127,0009606481', '33', '03/05/2015 00:01:23','-15,5', 'RA03');
execute insertartiradas('RA0342127,0015046296', '29', '03/05/2015 00:02:10','13,1', 'RA03');
execute insertartiradas('RA0342127,0021180556', '34', '03/05/2015 00:03:03','-14,8', 'RA03');
execute insertartiradas('RA0342127,0026157407', '2', '03/05/2015 00:03:46','12,3', 'RA03');
execute insertartiradas('RA0342127,0030208333', '27', '03/05/2015 00:04:21','-14,6', 'RA03');
execute insertartiradas('RA0342127,0034259259', '16', '03/05/2015 00:04:56','11,7', 'RA03');
execute insertartiradas('RA0342127,0095486111', '25', '03/05/2015 00:13:45','-15,3', 'RA03');
execute insertartiradas('RA0342127,0103703704', '34', '03/05/2015 00:14:56','12,5', 'RA03');
execute insertartiradas('RA0342127,0109259259', '2', '03/05/2015 00:15:44','-14,2', 'RA03');
execute insertartiradas('RA0342127,0115162037', '13', '03/05/2015 00:16:35','11,4', 'RA03');
execute insertartiradas('RA0342127,0122800926', '1', '03/05/2015 00:17:41','-17,3', 'RA03');
execute insertartiradas('RA0342127,0127430556', '4', '03/05/2015 00:18:21','12,4', 'RA03');
execute insertartiradas('RA0342127,013287037', '20', '03/05/2015 00:19:08','-14,5', 'RA03');
execute insertartiradas('RA0342127,0137962963', '13', '03/05/2015 00:19:52','12,5', 'RA03');
execute insertartiradas('RA0342127,0146759259', '16', '03/05/2015 00:21:08','-13,4', 'RA03');
execute insertartiradas('RA0342127,0156481481', '2', '03/05/2015 00:22:32','11,7', 'RA03');
execute insertartiradas('RA0342127,0166203704', '33', '03/05/2015 00:23:56','-13,6', 'RA03');
execute insertartiradas('RA0342127,0172222222', '8', '03/05/2015 00:24:48','12,6', 'RA03');
execute insertartiradas('RA0342127,0177546296', '1', '03/05/2015 00:25:34','-14,6', 'RA03');
execute insertartiradas('RA0342127,0182638889', '6', '03/05/2015 00:26:18','12,5', 'RA03');
execute insertartiradas('RA0342127,0188194444', '8', '03/05/2015 00:27:06','-13,9', 'RA03');
execute insertartiradas('RA0342127,0193287037', '15', '03/05/2015 00:27:50','12,5', 'RA03');
execute insertartiradas('RA0342127,02', '0', '03/05/2015 00:28:48','-13,8', 'RA03');
execute insertartiradas('RA0342127,0209027778', '26', '03/05/2015 00:30:06','12,2', 'RA03');
execute insertartiradas('RA0342127,0219097222', '12', '03/05/2015 00:31:33','-13,5', 'RA03');
execute insertartiradas('RA0342127,0228587963', '7', '03/05/2015 00:32:55','11,9', 'RA03');
execute insertartiradas('RA0342127,0236574074', '23', '03/05/2015 00:34:04','-13,4', 'RA03');
execute insertartiradas('RA0342127,0241782407', '12', '03/05/2015 00:34:49','12,3', 'RA03');
execute insertartiradas('RA0342127,0249652778', '0', '03/05/2015 00:35:57','-13,9', 'RA03');
execute insertartiradas('RA0342127,0260300926', '2', '03/05/2015 00:37:29','13', 'RA03');
execute insertartiradas('RA0342127,0268171296', '8', '03/05/2015 00:38:37','-14,5', 'RA03');
execute insertartiradas('RA0342127,0279166667', '18', '03/05/2015 00:40:12','12,9', 'RA03');
execute insertartiradas('RA0342127,0291666667', '3', '03/05/2015 00:42:00','-18,5', 'RA03');
execute insertartiradas('RA0342127,0298958333', '32', '03/05/2015 00:43:03','20,2', 'RA03');
execute insertartiradas('RA0342127,0313194444', '17', '03/05/2015 00:45:06','-12,5', 'RA03');
execute insertartiradas('RA0342127,0319444444', '29', '03/05/2015 00:46:00','19,4', 'RA03');
execute insertartiradas('RA0342127,0326041667', '9', '03/05/2015 00:46:57','-19,3', 'RA03');
execute insertartiradas('RA0342127,0335532407', '10', '03/05/2015 00:48:19','19,4', 'RA03');
execute insertartiradas('RA0342127,0343981481', '32', '03/05/2015 00:49:32','-18,7', 'RA03');
execute insertartiradas('RA0342127,0353125', '6', '03/05/2015 00:50:51','16,8', 'RA03');
execute insertartiradas('RA0342127,0356944444', '10', '03/05/2015 00:51:24','-19', 'RA03');
execute insertartiradas('RA0342127,0363078704', '7', '03/05/2015 00:52:17','20,2', 'RA03');
execute insertartiradas('RA0342127,037037037', '3', '03/05/2015 00:53:20','-19', 'RA03');
execute insertartiradas('RA0342127,0375115741', '14', '03/05/2015 00:54:01','20,1', 'RA03');
execute insertartiradas('RA0342127,0378819444', '3', '03/05/2015 00:54:33','-20,1', 'RA03');
execute insertartiradas('RA0342127,0382407407', '30', '03/05/2015 00:55:04','17,7', 'RA03');
execute insertartiradas('RA0342127,0385416667', '7', '03/05/2015 00:55:30','-21,1', 'RA03');
execute insertartiradas('RA0342127,0390162037', '5', '03/05/2015 00:56:11','19', 'RA03');
execute insertartiradas('RA0342127,0394791667', '18', '03/05/2015 00:56:51','-19,5', 'RA03');
execute insertartiradas('RA0342127,0398726852', '31', '03/05/2015 00:57:25','17,1', 'RA03');
execute insertartiradas('RA0342127,0403240741', '20', '03/05/2015 00:58:04','-19,8', 'RA03');
execute insertartiradas('RA0342127,0408680556', '10', '03/05/2015 00:58:51','16,8', 'RA03');
execute insertartiradas('RA0342127,0413773148', '20', '03/05/2015 00:59:35','-20,1', 'RA03');
execute insertartiradas('RA0342127,0418402778', '21', '03/05/2015 01:00:15','18,9', 'RA03');
execute insertartiradas('RA0342127,0423263889', '17', '03/05/2015 01:00:57','-21,3', 'RA03');
execute insertartiradas('RA0342127,0428472222', '22', '03/05/2015 01:01:42','19', 'RA03');
execute insertartiradas('RA0342127,043275463', '7', '03/05/2015 01:02:19','-19,1', 'RA03');
execute insertartiradas('RA0342127,0438657407', '26', '03/05/2015 01:03:10','19,5', 'RA03');
execute insertartiradas('RA0342127,0445138888', '27', '03/05/2015 01:04:06','-21,1', 'RA03');
execute insertartiradas('RA0342127,0451041667', '7', '03/05/2015 01:04:57','19,2', 'RA03');
execute insertartiradas('RA0342127,0459027778', '17', '03/05/2015 01:06:06','-17,3', 'RA03');
execute insertartiradas('RA0342127,0463425926', '9', '03/05/2015 01:06:44','13,8', 'RA03');
execute insertartiradas('RA0342127,0468171296', '21', '03/05/2015 01:07:25','-17,1', 'RA03');
execute insertartiradas('RA0342127,0472222222', '19', '03/05/2015 01:08:00','18,7', 'RA03');
execute insertartiradas('RA0342127,0480208333', '28', '03/05/2015 01:09:09','-21,4', 'RA03');
execute insertartiradas('RA0342127,0486458333', '33', '03/05/2015 01:10:03','11', 'RA03');
execute insertartiradas('RA0342127,0492013889', '31', '03/05/2015 01:10:51','-17,1', 'RA03');
execute insertartiradas('RA0342127,0496296296', '3', '03/05/2015 01:11:28','19,9', 'RA03');
execute insertartiradas('RA0342127,0501157407', '26', '03/05/2015 01:12:10','-20', 'RA03');
execute insertartiradas('RA0342127,0506944444', '6', '03/05/2015 01:13:00','12,6', 'RA03');
execute insertartiradas('RA0342127,0511111111', '22', '03/05/2015 01:13:36','-17,5', 'RA03');
execute insertartiradas('RA0342127,0521759259', '6', '03/05/2015 01:15:08','19,9', 'RA03');
execute insertartiradas('RA0342127,0527199074', '10', '03/05/2015 01:15:55','-19,5', 'RA03');
execute insertartiradas('RA0342127,0533796296', '11', '03/05/2015 01:16:52','20,3', 'RA03');
execute insertartiradas('RA0342127,0540856481', '5', '03/05/2015 01:17:53','-17', 'RA03');
execute insertartiradas('RA0342127,0552314815', '6', '03/05/2015 01:19:32','19,5', 'RA03');
execute insertartiradas('RA0342127,0558217593', '28', '03/05/2015 01:20:23','-17,9', 'RA03');
execute insertartiradas('RA0342127,0563310185', '34', '03/05/2015 01:21:07','17,2', 'RA03');
execute insertartiradas('RA0342127,0568171296', '13', '03/05/2015 01:21:49','-19', 'RA03');
execute insertartiradas('RA0342127,0576273148', '18', '03/05/2015 01:22:59','15,3', 'RA03');
execute insertartiradas('RA0342127,0581597222', '27', '03/05/2015 01:23:45','-17,4', 'RA03');
execute insertartiradas('RA0342127,0588078703', '20', '03/05/2015 01:24:41','15,3', 'RA03');
execute insertartiradas('RA0342127,0593865741', '24', '03/05/2015 01:25:31','-15,6', 'RA03');
execute insertartiradas('RA0342127,0598263889', '34', '03/05/2015 01:26:09','15,6', 'RA03');
execute insertartiradas('RA0342127,0602893519', '12', '03/05/2015 01:26:49','-17,3', 'RA03');
execute insertartiradas('RA0342127,0607407407', '5', '03/05/2015 01:27:28','15,4', 'RA03');
execute insertartiradas('RA0342127,0612731481', '2', '03/05/2015 01:28:14','-15,5', 'RA03');
execute insertartiradas('RA0342127,0618287037', '19', '03/05/2015 01:29:02','15', 'RA03');
execute insertartiradas('RA0342127,0626041667', '11', '03/05/2015 01:30:09','-17', 'RA03');
execute insertartiradas('RA0342127,0632407407', '25', '03/05/2015 01:31:04','15,5', 'RA03');
execute insertartiradas('RA0342127,0637384259', '0', '03/05/2015 01:31:47','-15,7', 'RA03');
execute insertartiradas('RA0342127,0641782407', '33', '03/05/2015 01:32:25','14,8', 'RA03');
execute insertartiradas('RA0342127,0644907407', '11', '03/05/2015 01:32:52','-16,5', 'RA03');
execute insertartiradas('RA0342127,0649537037', '27', '03/05/2015 01:33:32','16,2', 'RA03');
execute insertartiradas('RA0342127,0655208333', '34', '03/05/2015 01:34:21','-15,6', 'RA03');
execute insertartiradas('RA0342127,0659953704', '34', '03/05/2015 01:35:02','16,5', 'RA03');
execute insertartiradas('RA0342127,0665393519', '5', '03/05/2015 01:35:49','-17,2', 'RA03');
execute insertartiradas('RA0342127,0668981482', '14', '03/05/2015 01:36:20','15,9', 'RA03');
execute insertartiradas('RA0342127,0674884259', '25', '03/05/2015 01:37:11','-17,5', 'RA03');
execute insertartiradas('RA0342127,0678935185', '36', '03/05/2015 01:37:46','16,3', 'RA03');
execute insertartiradas('RA0342127,0684143519', '31', '03/05/2015 01:38:31','-16,4', 'RA03');
execute insertartiradas('RA0342127,0690277778', '20', '03/05/2015 01:39:24','14,3', 'RA03');
execute insertartiradas('RA0342127,0694675926', '17', '03/05/2015 01:40:02','-16,6', 'RA03');
execute insertartiradas('RA0342127,0698842593', '9', '03/05/2015 01:40:38','12,9', 'RA03');
execute insertartiradas('RA0342127,0702083333', '12', '03/05/2015 01:41:06','-13,1', 'RA03');
execute insertartiradas('RA0342127,0705787037', '14', '03/05/2015 01:41:38','13,6', 'RA03');
execute insertartiradas('RA0342127,0710532407', '7', '03/05/2015 01:42:19','-15,2', 'RA03');
execute insertartiradas('RA0342127,0718518519', '35', '03/05/2015 01:43:28','14,3', 'RA03');
execute insertartiradas('RA0342127,0725925926', '30', '03/05/2015 01:44:32','-17,5', 'RA03');
execute insertartiradas('RA0342127,0731944444', '32', '03/05/2015 01:45:24','14,8', 'RA03');
execute insertartiradas('RA0342127,07375', '9', '03/05/2015 01:46:12','-13,9', 'RA03');
execute insertartiradas('RA0342127,0742361111', '29', '03/05/2015 01:46:54','13,2', 'RA03');
execute insertartiradas('RA0342127,0748726852', '36', '03/05/2015 01:47:49','-17,6', 'RA03');
execute insertartiradas('RA0342127,0755439815', '15', '03/05/2015 01:48:47','15,2', 'RA03');
execute insertartiradas('RA0342127,076087963', '23', '03/05/2015 01:49:34','-16,5', 'RA03');
execute insertartiradas('RA0342127,0765856481', '4', '03/05/2015 01:50:17','14,3', 'RA03');
execute insertartiradas('RA0342127,0771990741', '9', '03/05/2015 01:51:10','-21,5', 'RA03');
execute insertartiradas('RA0342127,0776967593', '31', '03/05/2015 01:51:53','16,1', 'RA03');
execute insertartiradas('RA0342127,0784027778', '24', '03/05/2015 01:52:54','-16,1', 'RA03');
execute insertartiradas('RA0342127,0790625', '20', '03/05/2015 01:53:51','15,2', 'RA03');
execute insertartiradas('RA0342127,0797222222', '28', '03/05/2015 01:54:48','-17,1', 'RA03');
execute insertartiradas('RA0342127,0803240741', '7', '03/05/2015 01:55:40','15,6', 'RA03');
execute insertartiradas('RA0342127,0810648148', '26', '03/05/2015 01:56:44','-16,5', 'RA03');
execute insertartiradas('RA0342127,0819444444', '28', '03/05/2015 01:58:00','18', 'RA03');
execute insertartiradas('RA0342127,0825694444', '27', '03/05/2015 01:58:54','-19', 'RA03');
execute insertartiradas('RA0342127,0832407407', '14', '03/05/2015 01:59:52','15,4', 'RA03');
execute insertartiradas('RA0342127,0837152778', '21', '03/05/2015 02:00:33','-19,1', 'RA03');
execute insertartiradas('RA0342127,0845023148', '7', '03/05/2015 02:01:41','15,7', 'RA03');
execute insertartiradas('RA0342127,086412037', '21', '03/05/2015 02:04:26','19,7', 'RA03');
execute insertartiradas('RA0342127,0870601852', '16', '03/05/2015 02:05:22','-19', 'RA03');
execute insertartiradas('RA0342127,0876157407', '31', '03/05/2015 02:06:10','18,8', 'RA03');
execute insertartiradas('RA0342127,0884953704', '22', '03/05/2015 02:07:26','-20,8', 'RA03');
execute insertartiradas('RA0342127,0893055556', '32', '03/05/2015 02:08:36','17,4', 'RA03');
execute insertartiradas('RA0342127,0901157407', '26', '03/05/2015 02:09:46','-20,6', 'RA03');
execute insertartiradas('RA0342127,0917592593', '30', '03/05/2015 02:12:08','19,4', 'RA03');
execute insertartiradas('RA0342127,0924537037', '26', '03/05/2015 02:13:08','-17,5', 'RA03');
execute insertartiradas('RA0342127,0933912037', '9', '03/05/2015 02:14:29','18', 'RA03');
execute insertartiradas('RA0342127,094224537', '23', '03/05/2015 02:15:41','-18,1', 'RA03');
execute insertartiradas('RA0342127,0949768519', '17', '03/05/2015 02:16:46','17,3', 'RA03');
execute insertartiradas('RA0342127,0961805556', '35', '03/05/2015 02:18:30','-19,4', 'RA03');
execute insertartiradas('RA0342127,0971527778', '12', '03/05/2015 02:19:54','19,1', 'RA03');
execute insertartiradas('RA0342127,098125', '30', '03/05/2015 02:21:18','-16,8', 'RA03');
execute insertartiradas('RA0342127,0987962963', '17', '03/05/2015 02:22:16','12,7', 'RA03');
execute insertartiradas('RA0342127,0996527778', '22', '03/05/2015 02:23:30','-12,7', 'RA03');
execute insertartiradas('RA0342127,1004166667', '2', '03/05/2015 02:24:36','16,4', 'RA03');
execute insertartiradas('RA0342127,1010416667', '28', '03/05/2015 02:25:30','-12,8', 'RA03');
execute insertartiradas('RA0342127,1019328704', '20', '03/05/2015 02:26:47','19,5', 'RA03');
execute insertartiradas('RA0342127,1024537037', '20', '03/05/2015 02:27:32','-15,6', 'RA03');
execute insertartiradas('RA0342127,1030787037', '10', '03/05/2015 02:28:26','13,9', 'RA03');
execute insertartiradas('RA0342127,1036574074', '20', '03/05/2015 02:29:16','-14', 'RA03');
execute insertartiradas('RA0342127,1043518518', '16', '03/05/2015 02:30:16','13,5', 'RA03');
execute insertartiradas('RA0342127,1050347222', '0', '03/05/2015 02:31:15','-15,8', 'RA03');
execute insertartiradas('RA0342127,1057175926', '10', '03/05/2015 02:32:14','14,9', 'RA03');
execute insertartiradas('RA0342127,1063425926', '5', '03/05/2015 02:33:08','-15', 'RA03');
execute insertartiradas('RA0342127,1070833333', '19', '03/05/2015 02:34:12','13,7', 'RA03');
execute insertartiradas('RA0342127,1080555556', '36', '03/05/2015 02:35:36','-15,9', 'RA03');
execute insertartiradas('RA0342127,1088078704', '22', '03/05/2015 02:36:41','12,6', 'RA03');
execute insertartiradas('RA0342127,1094560185', '1', '03/05/2015 02:37:37','-13,5', 'RA03');
execute insertartiradas('RA0342127,1100578704', '23', '03/05/2015 02:38:29','11,6', 'RA03');
execute insertartiradas('RA0342127,1106365741', '12', '03/05/2015 02:39:19','-14,6', 'RA03');
execute insertartiradas('RA0342127,1112152778', '21', '03/05/2015 02:40:09','12,2', 'RA03');
execute insertartiradas('RA0342127,1117361111', '7', '03/05/2015 02:40:54','-14,5', 'RA03');
execute insertartiradas('RA0342127,112349537', '7', '03/05/2015 02:41:47','12,4', 'RA03');
execute insertartiradas('RA0342127,1129282407', '14', '03/05/2015 02:42:37','-15,9', 'RA03');
execute insertartiradas('RA0342127,1134259259', '0', '03/05/2015 02:43:20','12,4', 'RA03');
execute insertartiradas('RA0342127,1139236111', '18', '03/05/2015 02:44:03','-15,1', 'RA03');
execute insertartiradas('RA0342127,1145717593', '30', '03/05/2015 02:44:59','12,2', 'RA03');
execute insertartiradas('RA0342127,1150462963', '29', '03/05/2015 02:45:40','-14', 'RA03');
execute insertartiradas('RA0342127,1157638889', '33', '03/05/2015 02:46:42','13', 'RA03');
execute insertartiradas('RA0342127,1163078704', '31', '03/05/2015 02:47:29','-14,5', 'RA03');
execute insertartiradas('RA0342127,1169097222', '34', '03/05/2015 02:48:21','11', 'RA03');
execute insertartiradas('RA0342127,1173842593', '20', '03/05/2015 02:49:02','-12,5', 'RA03');
execute insertartiradas('RA0342127,1178472222', '10', '03/05/2015 02:49:42','13', 'RA03');
execute insertartiradas('RA0342127,1183101852', '30', '03/05/2015 02:50:22','-15,7', 'RA03');
execute insertartiradas('RA0342127,1187847222', '30', '03/05/2015 02:51:03','13', 'RA03');
execute insertartiradas('RA0342127,1192824074', '4', '03/05/2015 02:51:46','-14,4', 'RA03');
execute insertartiradas('RA0342127,1198032407', '22', '03/05/2015 02:52:31','16,2', 'RA03');
execute insertartiradas('RA0342127,1202893518', '20', '03/05/2015 02:53:13','-19,4', 'RA03');
execute insertartiradas('RA0342127,1209375', '4', '03/05/2015 02:54:09','14,7', 'RA03');
execute insertartiradas('RA0342127,1214930556', '13', '03/05/2015 02:54:57','-16,1', 'RA03');
execute insertartiradas('RA0342127,1221296296', '34', '03/05/2015 02:55:52','14', 'RA03');
execute insertartiradas('RA0342127,1227083333', '7', '03/05/2015 02:56:42','-17', 'RA03');
execute insertartiradas('RA0342127,1234837963', '19', '03/05/2015 02:57:49','13,9', 'RA03');
execute insertartiradas('RA0342127,7058449074', '3', '03/05/2015 16:56:25','-24,7', 'RA03');
execute insertartiradas('RA0342127,7173148148', '3', '03/05/2015 17:12:56','18,6', 'RA03');
execute insertartiradas('RA0342127,7179166667', '18', '03/05/2015 17:13:48','-19', 'RA03');
execute insertartiradas('RA0342127,7184837963', '0', '03/05/2015 17:14:37','20,8', 'RA03');
execute insertartiradas('RA0342127,7191435185', '6', '03/05/2015 17:15:34','-13,5', 'RA03');
execute insertartiradas('RA0342127,7199884259', '36', '03/05/2015 17:16:47','17,2', 'RA03');
execute insertartiradas('RA0342127,7207986111', '2', '03/05/2015 17:17:57','-14,2', 'RA03');
execute insertartiradas('RA0342127,7217708333', '30', '03/05/2015 17:19:21','21,2', 'RA03');
execute insertartiradas('RA0342127,7230555556', '34', '03/05/2015 17:21:12','-20,5', 'RA03');
execute insertartiradas('RA0342127,7239004629', '9', '03/05/2015 17:22:25','17,8', 'RA03');
execute insertartiradas('RA0342127,7252314814', '19', '03/05/2015 17:24:20','-18,6', 'RA03');
execute insertartiradas('RA0342127,7261342593', '6', '03/05/2015 17:25:38','17,9', 'RA03');
execute insertartiradas('RA0342127,7272916666', '10', '03/05/2015 17:27:18','-16,8', 'RA03');
execute insertartiradas('RA0342127,7284027778', '21', '03/05/2015 17:28:54','19,7', 'RA03');
execute insertartiradas('RA0342127,7294560185', '6', '03/05/2015 17:30:25','-16,1', 'RA03');
execute insertartiradas('RA0342127,7307175926', '24', '03/05/2015 17:32:14','16,5', 'RA03');
execute insertartiradas('RA0342127,7313425926', '21', '03/05/2015 17:33:08','-17,8', 'RA03');
execute insertartiradas('RA0342127,7320717593', '32', '03/05/2015 17:34:11','17,6', 'RA03');
execute insertartiradas('RA0342127,732662037', '2', '03/05/2015 17:35:02','-17', 'RA03');
execute insertartiradas('RA0342127,7332638889', '33', '03/05/2015 17:35:54','14,7', 'RA03');
execute insertartiradas('RA0342127,7337847222', '10', '03/05/2015 17:36:39','-19', 'RA03');
execute insertartiradas('RA0342127,7342939815', '3', '03/05/2015 17:37:23','18,9', 'RA03');
execute insertartiradas('RA0342127,7350231481', '15', '03/05/2015 17:38:26','-17,5', 'RA03');
execute insertartiradas('RA0342127,7356597222', '36', '03/05/2015 17:39:21','14,9', 'RA03');
execute insertartiradas('RA0342127,7363657407', '15', '03/05/2015 17:40:22','-14,7', 'RA03');
execute insertartiradas('RA0342127,7369212963', '2', '03/05/2015 17:41:10','17,5', 'RA03');
execute insertartiradas('RA0342127,7374421296', '7', '03/05/2015 17:41:55','-16,7', 'RA03');
execute insertartiradas('RA0342127,7379282407', '20', '03/05/2015 17:42:37','17,3', 'RA03');
execute insertartiradas('RA0342127,7384259259', '7', '03/05/2015 17:43:20','-16', 'RA03');
execute insertartiradas('RA0342127,7390162037', '28', '03/05/2015 17:44:11','16,6', 'RA03');
execute insertartiradas('RA0342127,7394791667', '29', '03/05/2015 17:44:51','-16,8', 'RA03');
execute insertartiradas('RA0342127,7415162037', '8', '03/05/2015 17:47:47','15,6', 'RA03');
execute insertartiradas('RA0342127,7418287037', '28', '03/05/2015 17:48:14','-15,6', 'RA03');
execute insertartiradas('RA0342127,7421180556', '20', '03/05/2015 17:48:39','22,3', 'RA03');
execute insertartiradas('RA0342127,7424189815', '9', '03/05/2015 17:49:05','-15,5', 'RA03');
execute insertartiradas('RA0342127,7427314815', '27', '03/05/2015 17:49:32','18,1', 'RA03');
execute insertartiradas('RA0342127,7452662037', '20', '03/05/2015 17:53:11','-16,9', 'RA03');
execute insertartiradas('RA0342127,745625', '3', '03/05/2015 17:53:42','14,2', 'RA03');
execute insertartiradas('RA0342127,7465509259', '25', '03/05/2015 17:55:02','-14,6', 'RA03');
execute insertartiradas('RA0342127,7478472222', '23', '03/05/2015 17:56:54','17,4', 'RA03');
execute insertartiradas('RA0342127,7483912037', '28', '03/05/2015 17:57:41','-16,6', 'RA03');
execute insertartiradas('RA0342127,7606828704', '22', '03/05/2015 18:15:23','19', 'RA03');
execute insertartiradas('RA0342127,7610069444', '26', '03/05/2015 18:15:51','-19,6', 'RA03');
execute insertartiradas('RA0342127,7613541667', '15', '03/05/2015 18:16:21','18,5', 'RA03');
execute insertartiradas('RA0342127,7616898148', '17', '03/05/2015 18:16:50','-20,1', 'RA03');
execute insertartiradas('RA0342127,7620486111', '25', '03/05/2015 18:17:21','17,5', 'RA03');
execute insertartiradas('RA0342127,7624189815', '25', '03/05/2015 18:17:53','-19,3', 'RA03');
execute insertartiradas('RA0342127,7630092593', '16', '03/05/2015 18:18:44','18,6', 'RA03');
execute insertartiradas('RA0342127,7634490741', '16', '03/05/2015 18:19:22','-20,2', 'RA03');
execute insertartiradas('RA0342127,7639583333', '22', '03/05/2015 18:20:06','18', 'RA03');
execute insertartiradas('RA0342127,7652662037', '31', '03/05/2015 18:21:59','-18,8', 'RA03');
execute insertartiradas('RA0342127,7656828704', '10', '03/05/2015 18:22:35','17,5', 'RA03');
execute insertartiradas('RA0342127,7662731481', '32', '03/05/2015 18:23:26','-18,7', 'RA03');
execute insertartiradas('RA0342127,7666782407', '11', '03/05/2015 18:24:01','18,3', 'RA03');
execute insertartiradas('RA0342127,7676851851', '2', '03/05/2015 18:25:28','-19,6', 'RA03');
execute insertartiradas('RA0342127,768287037', '21', '03/05/2015 18:26:20','17,9', 'RA03');
execute insertartiradas('RA0342127,7688078704', '5', '03/05/2015 18:27:05','-19,3', 'RA03');
execute insertartiradas('RA0342127,7693865741', '26', '03/05/2015 18:27:55','18,9', 'RA03');
execute insertartiradas('RA0342127,7699074074', '9', '03/05/2015 18:28:40','-19', 'RA03');
execute insertartiradas('RA0342127,7703472222', '0', '03/05/2015 18:29:18','19,3', 'RA03');
execute insertartiradas('RA0342127,7709837963', '6', '03/05/2015 18:30:13','-20,5', 'RA03');
execute insertartiradas('RA0342127,7714699074', '10', '03/05/2015 18:30:55','19,9', 'RA03');
execute insertartiradas('RA0342127,7719328704', '33', '03/05/2015 18:31:35','-20,5', 'RA03');
execute insertartiradas('RA0342127,7724421296', '2', '03/05/2015 18:32:19','19,5', 'RA03');
execute insertartiradas('RA0342127,7728240741', '11', '03/05/2015 18:32:52','-20,3', 'RA03');
execute insertartiradas('RA0342127,7734259259', '10', '03/05/2015 18:33:44','19,6', 'RA03');
execute insertartiradas('RA0342127,7737962963', '6', '03/05/2015 18:34:16','-21,1', 'RA03');
execute insertartiradas('RA0342127,774224537', '7', '03/05/2015 18:34:53','18,7', 'RA03');
execute insertartiradas('RA0342127,7745949074', '30', '03/05/2015 18:35:25','-20,9', 'RA03');
execute insertartiradas('RA0342127,7751273148', '24', '03/05/2015 18:36:11','18,5', 'RA03');
execute insertartiradas('RA0342127,7755671296', '24', '03/05/2015 18:36:49','-20,2', 'RA03');
execute insertartiradas('RA0342127,7759953704', '7', '03/05/2015 18:37:26','17,9', 'RA03');
execute insertartiradas('RA0342127,7763541667', '17', '03/05/2015 18:37:57','-20', 'RA03');
execute insertartiradas('RA0342127,776712963', '8', '03/05/2015 18:38:28','19,9', 'RA03');
execute insertartiradas('RA0342127,7770486111', '9', '03/05/2015 18:38:57','-20,3', 'RA03');
execute insertartiradas('RA0342127,7773726852', '9', '03/05/2015 18:39:25','20,2', 'RA03');
execute insertartiradas('RA0342127,7777430556', '2', '03/05/2015 18:39:57','-20,2', 'RA03');
execute insertartiradas('RA0342127,7780787037', '25', '03/05/2015 18:40:26','18,6', 'RA03');
execute insertartiradas('RA0342127,7784606482', '23', '03/05/2015 18:40:59','-18,8', 'RA03');
execute insertartiradas('RA0342127,7788078704', '10', '03/05/2015 18:41:29','19,4', 'RA03');
execute insertartiradas('RA0342127,7791550926', '33', '03/05/2015 18:41:59','-20,3', 'RA03');
execute insertartiradas('RA0342127,779537037', '0', '03/05/2015 18:42:32','19,2', 'RA03');
execute insertartiradas('RA0342127,7799537037', '31', '03/05/2015 18:43:08','-20,3', 'RA03');
execute insertartiradas('RA0342127,7802546296', '34', '03/05/2015 18:43:34','17,9', 'RA03');
execute insertartiradas('RA0342127,7806134259', '2', '03/05/2015 18:44:05','-19,1', 'RA03');
execute insertartiradas('RA0342127,7809375', '32', '03/05/2015 18:44:33','20,7', 'RA03');
execute insertartiradas('RA0342127,7813194444', '31', '03/05/2015 18:45:06','-19,9', 'RA03');
execute insertartiradas('RA0342127,7816666667', '15', '03/05/2015 18:45:36','19,5', 'RA03');
execute insertartiradas('RA0342127,782025463', '1', '03/05/2015 18:46:07','-19', 'RA03');
execute insertartiradas('RA0342127,7823958333', '8', '03/05/2015 18:46:39','19,3', 'RA03');
execute insertartiradas('RA0342127,7828703704', '3', '03/05/2015 18:47:20','-20,5', 'RA03');
execute insertartiradas('RA0342127,7832291667', '21', '03/05/2015 18:47:51','21,4', 'RA03');
execute insertartiradas('RA0342127,783599537', '21', '03/05/2015 18:48:23','-20,4', 'RA03');
execute insertartiradas('RA0342127,7841898148', '23', '03/05/2015 18:49:14','18,4', 'RA03');
execute insertartiradas('RA0342127,7846527778', '24', '03/05/2015 18:49:54','-19,8', 'RA03');
execute insertartiradas('RA0342127,7852662037', '3', '03/05/2015 18:50:47','17,4', 'RA03');
execute insertartiradas('RA0342127,7858449074', '13', '03/05/2015 18:51:37','-20,6', 'RA03');
execute insertartiradas('RA0342127,7865972222', '2', '03/05/2015 18:52:42','17,2', 'RA03');
execute insertartiradas('RA0342127,7871296296', '29', '03/05/2015 18:53:28','-19,5', 'RA03');
execute insertartiradas('RA0342127,7880787037', '30', '03/05/2015 18:54:50','19,4', 'RA03');
execute insertartiradas('RA0342127,7886574074', '21', '03/05/2015 18:55:40','-21,4', 'RA03');
execute insertartiradas('RA0342127,7892476852', '11', '03/05/2015 18:56:31','19,8', 'RA03');
execute insertartiradas('RA0342127,7897685185', '28', '03/05/2015 18:57:16','-18,2', 'RA03');
execute insertartiradas('RA0342127,7901851852', '14', '03/05/2015 18:57:52','19,6', 'RA03');
execute insertartiradas('RA0342127,7905671296', '12', '03/05/2015 18:58:25','-20,4', 'RA03');
execute insertartiradas('RA0342127,7910532407', '36', '03/05/2015 18:59:07','20,4', 'RA03');
execute insertartiradas('RA0342127,7916087963', '31', '03/05/2015 18:59:55','-21,2', 'RA03');
execute insertartiradas('RA0342127,7919675926', '32', '03/05/2015 19:00:26','19,1', 'RA03');
execute insertartiradas('RA0342127,7922916667', '1', '03/05/2015 19:00:54','-20,3', 'RA03');
execute insertartiradas('RA0342127,7929050926', '13', '03/05/2015 19:01:47','19,5', 'RA03');
execute insertartiradas('RA0342127,7934027778', '2', '03/05/2015 19:02:30','-19,6', 'RA03');
execute insertartiradas('RA0342127,7938888889', '30', '03/05/2015 19:03:12','17', 'RA03');
execute insertartiradas('RA0342127,7944097222', '0', '03/05/2015 19:03:57','-10,6', 'RA03');
execute insertartiradas('RA0342127,7947569444', '1', '03/05/2015 19:04:27','11,4', 'RA03');
execute insertartiradas('RA0342127,7950810185', '16', '03/05/2015 19:04:55','-13', 'RA03');
execute insertartiradas('RA0342127,7953703704', '25', '03/05/2015 19:05:20','19,6', 'RA03');
execute insertartiradas('RA0342127,7958912037', '27', '03/05/2015 19:06:05','-16,2', 'RA03');
execute insertartiradas('RA0342127,7964467593', '35', '03/05/2015 19:06:53','13,5', 'RA03');
execute insertartiradas('RA0342127,7971180556', '12', '03/05/2015 19:07:51','-14,1', 'RA03');
execute insertartiradas('RA0342127,7976851852', '2', '03/05/2015 19:08:40','15,7', 'RA03');
execute insertartiradas('RA0342127,7982407407', '7', '03/05/2015 19:09:28','-17,7', 'RA03');
execute insertartiradas('RA0342127,7992824074', '11', '03/05/2015 19:10:58','12,9', 'RA03');
execute insertartiradas('RA0342127,7998263889', '4', '03/05/2015 19:11:45','-11', 'RA03');
execute insertartiradas('RA0342127,8001388889', '27', '03/05/2015 19:12:12','14,8', 'RA03');
execute insertartiradas('RA0342127,8006597222', '29', '03/05/2015 19:12:57','-12', 'RA03');
execute insertartiradas('RA0342127,8011574074', '5', '03/05/2015 19:13:40','16,3', 'RA03');
execute insertartiradas('RA0342127,8017592593', '34', '03/05/2015 19:14:32','-12,3', 'RA03');
execute insertartiradas('RA0342127,8021643519', '14', '03/05/2015 19:15:07','13', 'RA03');
execute insertartiradas('RA0342127,8026388889', '4', '03/05/2015 19:15:48','-15,8', 'RA03');
execute insertartiradas('RA0342127,8031828704', '22', '03/05/2015 19:16:35','16,8', 'RA03');
execute insertartiradas('RA0342127,8037962963', '14', '03/05/2015 19:17:28','-17,1', 'RA03');
execute insertartiradas('RA0342127,8046296296', '6', '03/05/2015 19:18:40','17,1', 'RA03');
execute insertartiradas('RA0342127,8050810185', '9', '03/05/2015 19:19:19','-14,6', 'RA03');
execute insertartiradas('RA0342127,8056018519', '11', '03/05/2015 19:20:04','13,2', 'RA03');
execute insertartiradas('RA0342127,8059027778', '29', '03/05/2015 19:20:30','-14,9', 'RA03');
execute insertartiradas('RA0342127,8266087963', '5', '03/05/2015 19:50:19','13,1', 'RA03');
execute insertartiradas('RA0342127,8269212963', '34', '03/05/2015 19:50:46','-15,7', 'RA03');
execute insertartiradas('RA0342127,8272800926', '12', '03/05/2015 19:51:17','12,9', 'RA03');
execute insertartiradas('RA0342127,8277662037', '32', '03/05/2015 19:51:59','-13,4', 'RA03');
execute insertartiradas('RA0342127,8282407407', '36', '03/05/2015 19:52:40','12,8', 'RA03');
execute insertartiradas('RA0342127,8286689815', '10', '03/05/2015 19:53:17','-14,1', 'RA03');
execute insertartiradas('RA0342127,8290856481', '26', '03/05/2015 19:53:53','12,5', 'RA03');
execute insertartiradas('RA0342127,8295138889', '0', '03/05/2015 19:54:30','-15,9', 'RA03');
execute insertartiradas('RA0342127,8300810185', '11', '03/05/2015 19:55:19','12,6', 'RA03');
execute insertartiradas('RA0342127,8305324074', '19', '03/05/2015 19:55:58','-15,8', 'RA03');
execute insertartiradas('RA0342127,8309375', '18', '03/05/2015 19:56:33','11,3', 'RA03');
execute insertartiradas('RA0342127,8315509259', '28', '03/05/2015 19:57:26','-14,7', 'RA03');
execute insertartiradas('RA0342127,8320601852', '3', '03/05/2015 19:58:10','11,5', 'RA03');
execute insertartiradas('RA0342127,8324189815', '23', '03/05/2015 19:58:41','-13,7', 'RA03');
execute insertartiradas('RA0342127,8329976852', '29', '03/05/2015 19:59:31','12,4', 'RA03');
execute insertartiradas('RA0342127,8339814815', '7', '03/05/2015 20:00:56','17', 'RA03');
execute insertartiradas('RA0342127,8347569444', '36', '03/05/2015 20:02:03','-17,1', 'RA03');
execute insertartiradas('RA0342127,8353356481', '0', '03/05/2015 20:02:53','18,3', 'RA03');
execute insertartiradas('RA0342127,8360648148', '21', '03/05/2015 20:03:56','-17,4', 'RA03');
execute insertartiradas('RA0342127,8368171296', '3', '03/05/2015 20:05:01','17,5', 'RA03');
execute insertartiradas('RA0342127,8377083333', '28', '03/05/2015 20:06:18','-17,7', 'RA03');
execute insertartiradas('RA0342127,8384837963', '6', '03/05/2015 20:07:25','16,3', 'RA03');
execute insertartiradas('RA0342127,8390162037', '34', '03/05/2015 20:08:11','-19', 'RA03');
execute insertartiradas('RA0342127,8395833333', '33', '03/05/2015 20:09:00','16,8', 'RA03');
execute insertartiradas('RA0342127,8403125', '25', '03/05/2015 20:10:03','-17,6', 'RA03');
execute insertartiradas('RA0342127,8408796296', '27', '03/05/2015 20:10:52','18,3', 'RA03');
execute insertartiradas('RA0342127,8417013889', '32', '03/05/2015 20:12:03','-15,7', 'RA03');
execute insertartiradas('RA0342127,842349537', '32', '03/05/2015 20:12:59','16,3', 'RA03');
execute insertartiradas('RA0342127,8428009259', '5', '03/05/2015 20:13:38','-16,3', 'RA03');
execute insertartiradas('RA0342127,843449074', '24', '03/05/2015 20:14:34','13,2', 'RA03');
execute insertartiradas('RA0342127,8440393519', '31', '03/05/2015 20:15:25','-17,1', 'RA03');
execute insertartiradas('RA0342127,8445833333', '34', '03/05/2015 20:16:12','17,3', 'RA03');
execute insertartiradas('RA0342127,8451736111', '34', '03/05/2015 20:17:03','-15,6', 'RA03');
execute insertartiradas('RA0342127,845625', '7', '03/05/2015 20:17:42','20', 'RA03');
execute insertartiradas('RA0342127,8461226852', '22', '03/05/2015 20:18:25','-17,8', 'RA03');
execute insertartiradas('RA0342127,8466087963', '25', '03/05/2015 20:19:07','16,8', 'RA03');
execute insertartiradas('RA0342127,8471990741', '24', '03/05/2015 20:19:58','-14,8', 'RA03');
execute insertartiradas('RA0342127,8477314815', '21', '03/05/2015 20:20:44','15,2', 'RA03');
execute insertartiradas('RA0342127,8486111111', '29', '03/05/2015 20:22:00','-15,4', 'RA03');
execute insertartiradas('RA0342127,8493055556', '22', '03/05/2015 20:23:00','16,9', 'RA03');
execute insertartiradas('RA0342127,8501157407', '14', '03/05/2015 20:24:10','-16', 'RA03');
execute insertartiradas('RA0342127,8505324074', '10', '03/05/2015 20:24:46','15,4', 'RA03');
execute insertartiradas('RA0342127,8510416667', '12', '03/05/2015 20:25:30','-18,8', 'RA03');
execute insertartiradas('RA0342127,8518287037', '5', '03/05/2015 20:26:38','18,6', 'RA03');
execute insertartiradas('RA0342127,8528240741', '15', '03/05/2015 20:28:04','-13,1', 'RA03');
execute insertartiradas('RA0342127,8535416667', '32', '03/05/2015 20:29:06','15,6', 'RA03');
execute insertartiradas('RA0342127,8543171296', '0', '03/05/2015 20:30:13','-19,8', 'RA03');
execute insertartiradas('RA0342127,8550115741', '9', '03/05/2015 20:31:13','14,3', 'RA03');
execute insertartiradas('RA0342127,855474537', '2', '03/05/2015 20:31:53','-16,6', 'RA03');
execute insertartiradas('RA0342127,856087963', '13', '03/05/2015 20:32:46','17,2', 'RA03');
execute insertartiradas('RA0342127,8566898148', '19', '03/05/2015 20:33:38','-18,4', 'RA03');
execute insertartiradas('RA0342127,8573726852', '9', '03/05/2015 20:34:37','16,3', 'RA03');
execute insertartiradas('RA0342127,8580555556', '15', '03/05/2015 20:35:36','-21', 'RA03');
execute insertartiradas('RA0342127,8586805556', '17', '03/05/2015 20:36:30','19', 'RA03');
execute insertartiradas('RA0342127,8591782407', '16', '03/05/2015 20:37:13','-19,2', 'RA03');
execute insertartiradas('RA0342127,8598148148', '30', '03/05/2015 20:38:08','14,1', 'RA03');
execute insertartiradas('RA0342127,8603703704', '13', '03/05/2015 20:38:56','-16', 'RA03');
execute insertartiradas('RA0342127,8608217593', '22', '03/05/2015 20:39:35','16,4', 'RA03');
execute insertartiradas('RA0342127,8614467593', '16', '03/05/2015 20:40:29','-15,9', 'RA03');
execute insertartiradas('RA0342127,8620138889', '26', '03/05/2015 20:41:18','17,7', 'RA03');
execute insertartiradas('RA0342127,8625', '17', '03/05/2015 20:42:00','-18', 'RA03');
execute insertartiradas('RA0342127,8630208333', '34', '03/05/2015 20:42:45','17,5', 'RA03');
execute insertartiradas('RA0342127,8635532407', '33', '03/05/2015 20:43:31','-15', 'RA03');
execute insertartiradas('RA0342127,8640625', '26', '03/05/2015 20:44:15','15,5', 'RA03');
execute insertartiradas('RA0342127,8646296296', '8', '03/05/2015 20:45:04','-18,6', 'RA03');
execute insertartiradas('RA0342127,8651273148', '16', '03/05/2015 20:45:47','17,5', 'RA03');
execute insertartiradas('RA0342127,8657523148', '11', '03/05/2015 20:46:41','-17,4', 'RA03');
execute insertartiradas('RA0342127,8662847222', '31', '03/05/2015 20:47:27','17,1', 'RA03');
execute insertartiradas('RA0342127,8669675926', '2', '03/05/2015 20:48:26','-16,6', 'RA03');
execute insertartiradas('RA0342127,8675', '22', '03/05/2015 20:49:12','16,1', 'RA03');
execute insertartiradas('RA0342127,8681828704', '1', '03/05/2015 20:50:11','-16,9', 'RA03');
execute insertartiradas('RA0342127,8686689815', '4', '03/05/2015 20:50:53','16,2', 'RA03');
execute insertartiradas('RA0342127,8690393519', '3', '03/05/2015 20:51:25','-17,6', 'RA03');
execute insertartiradas('RA0342127,8694907407', '1', '03/05/2015 20:52:04','16,5', 'RA03');
execute insertartiradas('RA0342127,8699305556', '6', '03/05/2015 20:52:42','-18,4', 'RA03');
execute insertartiradas('RA0342127,8703009259', '3', '03/05/2015 20:53:14','15,2', 'RA03');
execute insertartiradas('RA0342127,8706597222', '31', '03/05/2015 20:53:45','-18', 'RA03');
execute insertartiradas('RA0342127,8710069444', '21', '03/05/2015 20:54:15','17,3', 'RA03');
execute insertartiradas('RA0342127,8713657407', '22', '03/05/2015 20:54:46','-15,9', 'RA03');
execute insertartiradas('RA0342127,8717824074', '16', '03/05/2015 20:55:22','16,5', 'RA03');
execute insertartiradas('RA0342127,8722106482', '24', '03/05/2015 20:55:59','-17,1', 'RA03');
execute insertartiradas('RA0342127,8725578704', '24', '03/05/2015 20:56:29','17,1', 'RA03');
execute insertartiradas('RA0342127,8734837963', '13', '03/05/2015 20:57:49','-18,5', 'RA03');
execute insertartiradas('RA0342127,874224537', '1', '03/05/2015 20:58:53','16,5', 'RA03');
execute insertartiradas('RA0342127,8747800926', '15', '03/05/2015 20:59:41','-14,6', 'RA03');
execute insertartiradas('RA0342127,8756828704', '22', '03/05/2015 21:00:59','16,9', 'RA03');
execute insertartiradas('RA0342127,8767361111', '26', '03/05/2015 21:02:30','-19,6', 'RA03');
execute insertartiradas('RA0342127,8773148148', '1', '03/05/2015 21:03:20','17', 'RA03');
execute insertartiradas('RA0342127,8779513889', '13', '03/05/2015 21:04:15','-17,8', 'RA03');
execute insertartiradas('RA0342127,8790856482', '24', '03/05/2015 21:05:53','21,9', 'RA03');
execute insertartiradas('RA0342127,8801736111', '0', '03/05/2015 21:07:27','-18,7', 'RA03');
execute insertartiradas('RA0342127,8808680556', '25', '03/05/2015 21:08:27','19', 'RA03');
execute insertartiradas('RA0342127,8814583333', '10', '03/05/2015 21:09:18','-17,5', 'RA03');
execute insertartiradas('RA0342127,8822222222', '9', '03/05/2015 21:10:24','14,1', 'RA03');
execute insertartiradas('RA0342127,8829513889', '28', '03/05/2015 21:11:27','-17,7', 'RA03');
execute insertartiradas('RA0342127,8837152778', '21', '03/05/2015 21:12:33','17,7', 'RA03');
execute insertartiradas('RA0342127,8848032407', '28', '03/05/2015 21:14:07','-23,1', 'RA03');
execute insertartiradas('RA0342127,8858912037', '31', '03/05/2015 21:15:41','19,9', 'RA03');
execute insertartiradas('RA0342127,8867476852', '8', '03/05/2015 21:16:55','-18,8', 'RA03');
execute insertartiradas('RA0342127,8875', '0', '03/05/2015 21:18:00','20,5', 'RA03');
execute insertartiradas('RA0342127,8886342593', '9', '03/05/2015 21:19:38','-19,3', 'RA03');
execute insertartiradas('RA0342127,8896296296', '16', '03/05/2015 21:21:04','16,7', 'RA03');
execute insertartiradas('RA0342127,8905671296', '27', '03/05/2015 21:22:25','-19,1', 'RA03');
execute insertartiradas('RA0342127,8916203704', '5', '03/05/2015 21:23:56','18', 'RA03');
execute insertartiradas('RA0342127,8926388889', '27', '03/05/2015 21:25:24','-20,3', 'RA03');
execute insertartiradas('RA0342127,893275463', '31', '03/05/2015 21:26:19','19,2', 'RA03');
execute insertartiradas('RA0342127,8940972222', '30', '03/05/2015 21:27:30','-19,6', 'RA03');
execute insertartiradas('RA0342127,8948263889', '6', '03/05/2015 21:28:33','17,9', 'RA03');
execute insertartiradas('RA0342127,8953009259', '11', '03/05/2015 21:29:14','-18,5', 'RA03');
execute insertartiradas('RA0342127,8961458333', '25', '03/05/2015 21:30:27','18,1', 'RA03');
execute insertartiradas('RA0342127,8964699074', '30', '03/05/2015 21:30:55','-19,6', 'RA03');
execute insertartiradas('RA0342127,8969907407', '9', '03/05/2015 21:31:40','21,2', 'RA03');
execute insertartiradas('RA0342127,8973611111', '9', '03/05/2015 21:32:12','-19,4', 'RA03');
execute insertartiradas('RA0342127,8977777778', '30', '03/05/2015 21:32:48','17,2', 'RA03');
execute insertartiradas('RA0342127,8982291667', '20', '03/05/2015 21:33:27','-20,4', 'RA03');
execute insertartiradas('RA0342127,8988541667', '24', '03/05/2015 21:34:21','19,3', 'RA03');
execute insertartiradas('RA0342127,8992361111', '33', '03/05/2015 21:34:54','-19,9', 'RA03');
execute insertartiradas('RA0342127,8996180556', '17', '03/05/2015 21:35:27','18,6', 'RA03');
execute insertartiradas('RA0342127,8999537037', '17', '03/05/2015 21:35:56','-20,7', 'RA03');
execute insertartiradas('RA0342127,9003240741', '2', '03/05/2015 21:36:28','19,3', 'RA03');
execute insertartiradas('RA0342127,9006597222', '31', '03/05/2015 21:36:57','-19,7', 'RA03');
execute insertartiradas('RA0342127,9010069444', '32', '03/05/2015 21:37:27','18,9', 'RA03');
execute insertartiradas('RA0342127,9013194444', '35', '03/05/2015 21:37:54','-19,6', 'RA03');
execute insertartiradas('RA0342127,9016666667', '26', '03/05/2015 21:38:24','18,6', 'RA03');
execute insertartiradas('RA0342127,9019907407', '12', '03/05/2015 21:38:52','-19,6', 'RA03');
execute insertartiradas('RA0342127,9024074074', '17', '03/05/2015 21:39:28','18,9', 'RA03');
execute insertartiradas('RA0342127,9028472222', '7', '03/05/2015 21:40:06','-18,6', 'RA03');
execute insertartiradas('RA0342127,9031712963', '1', '03/05/2015 21:40:34','17,4', 'RA03');
execute insertartiradas('RA0342127,9034953704', '35', '03/05/2015 21:41:02','-18,8', 'RA03');
execute insertartiradas('RA0342127,9038425926', '17', '03/05/2015 21:41:32','19,9', 'RA03');
execute insertartiradas('RA0342127,9042708333', '28', '03/05/2015 21:42:09','-20,1', 'RA03');
execute insertartiradas('RA0342127,9046180556', '17', '03/05/2015 21:42:39','17,6', 'RA03');
execute insertartiradas('RA0342127,907962963', '3', '03/05/2015 21:47:28','-19,3', 'RA03');
execute insertartiradas('RA0342127,9088078704', '9', '03/05/2015 21:48:41','18,8', 'RA03');
execute insertartiradas('RA0342127,9095833333', '36', '03/05/2015 21:49:48','-19,2', 'RA03');
execute insertartiradas('RA0342127,9147106481', '25', '03/05/2015 21:57:11','18,5', 'RA03');
execute insertartiradas('RA0342127,9155324074', '29', '03/05/2015 21:58:22','-17,2', 'RA03');
execute insertartiradas('RA0342127,9170023148', '22', '03/05/2015 22:00:29','19,6', 'RA03');
execute insertartiradas('RA0342127,9175231481', '18', '03/05/2015 22:01:14','-19,5', 'RA03');
execute insertartiradas('RA0342127,9181481482', '28', '03/05/2015 22:02:08','17,4', 'RA03');
execute insertartiradas('RA0342127,918900463', '6', '03/05/2015 22:03:13','-14,3', 'RA03');
execute insertartiradas('RA0342127,9196875', '12', '03/05/2015 22:04:21','12', 'RA03');
execute insertartiradas('RA0342127,9203587963', '4', '03/05/2015 22:05:19','-18,7', 'RA03');
execute insertartiradas('RA0342127,9215625', '10', '03/05/2015 22:07:03','16,9', 'RA03');
execute insertartiradas('RA0342127,9220949074', '33', '03/05/2015 22:07:49','-16,1', 'RA03');
execute insertartiradas('RA0342127,922662037', '34', '03/05/2015 22:08:38','15,2', 'RA03');
execute insertartiradas('RA0342127,9231944444', '4', '03/05/2015 22:09:24','-14,4', 'RA03');
execute insertartiradas('RA0342127,9237731481', '14', '03/05/2015 22:10:14','12,9', 'RA03');
execute insertartiradas('RA0342127,9241782407', '30', '03/05/2015 22:10:49','-16,2', 'RA03');
execute insertartiradas('RA0342127,9256828704', '22', '03/05/2015 22:12:59','15,6', 'RA03');
execute insertartiradas('RA0342127,9272222222', '7', '03/05/2015 22:15:12','-16,8', 'RA03');
execute insertartiradas('RA0342127,927962963', '9', '03/05/2015 22:16:16','15,2', 'RA03');
execute insertartiradas('RA0342127,9286458333', '24', '03/05/2015 22:17:15','-17,7', 'RA03');
execute insertartiradas('RA0342127,9293171296', '1', '03/05/2015 22:18:13','19', 'RA03');
execute insertartiradas('RA0342127,9306712963', '29', '03/05/2015 22:20:10','-18,2', 'RA03');
execute insertartiradas('RA0342127,9316203704', '6', '03/05/2015 22:21:32','16,4', 'RA03');
execute insertartiradas('RA0342127,9321527778', '8', '03/05/2015 22:22:18','-16,1', 'RA03');
execute insertartiradas('RA0342127,9339930556', '32', '03/05/2015 22:24:57','14,8', 'RA03');
execute insertartiradas('RA0342127,934537037', '28', '03/05/2015 22:25:44','-20,1', 'RA03');
execute insertartiradas('RA0342127,9350925926', '18', '03/05/2015 22:26:32','15,9', 'RA03');
execute insertartiradas('RA0342127,9358680556', '10', '03/05/2015 22:27:39','-15,3', 'RA03');
execute insertartiradas('RA0342127,9364583333', '6', '03/05/2015 22:28:30','16,4', 'RA03');
execute insertartiradas('RA0342127,9370833333', '21', '03/05/2015 22:29:24','-17,1', 'RA03');
execute insertartiradas('RA0342127,9376736111', '12', '03/05/2015 22:30:15','18,2', 'RA03');
execute insertartiradas('RA0342127,9382523148', '5', '03/05/2015 22:31:05','-17,1', 'RA03');
execute insertartiradas('RA0342127,93875', '0', '03/05/2015 22:31:48','17,5', 'RA03');
execute insertartiradas('RA0342127,9393518519', '4', '03/05/2015 22:32:40','-17,9', 'RA03');
execute insertartiradas('RA0342127,9398842593', '8', '03/05/2015 22:33:26','16,7', 'RA03');
execute insertartiradas('RA0342127,9404050926', '16', '03/05/2015 22:34:11','-17,8', 'RA03');
execute insertartiradas('RA0342127,9409027778', '4', '03/05/2015 22:34:54','17,4', 'RA03');
execute insertartiradas('RA0342127,9416550926', '29', '03/05/2015 22:35:59','-18,7', 'RA03');
execute insertartiradas('RA0342127,9426967593', '5', '03/05/2015 22:37:29','19,6', 'RA03');
execute insertartiradas('RA0342127,9434143519', '5', '03/05/2015 22:38:31','-17', 'RA03');
execute insertartiradas('RA0342127,9444560185', '17', '03/05/2015 22:40:01','16,4', 'RA03');
execute insertartiradas('RA0342127,9455208333', '27', '03/05/2015 22:41:33','-17,7', 'RA03');
execute insertartiradas('RA0342127,9465972222', '26', '03/05/2015 22:43:06','19,3', 'RA03');
execute insertartiradas('RA0342127,9476736111', '10', '03/05/2015 22:44:39','-17,2', 'RA03');
execute insertartiradas('RA0342127,9486226852', '23', '03/05/2015 22:46:01','17', 'RA03');
execute insertartiradas('RA0342127,950162037', '29', '03/05/2015 22:48:14','-19,3', 'RA03');
execute insertartiradas('RA0342127,9519907407', '17', '03/05/2015 22:50:52','21,8', 'RA03');
execute insertartiradas('RA0342127,9529513889', '29', '03/05/2015 22:52:15','-18,6', 'RA03');
execute insertartiradas('RA0342127,9549421296', '27', '03/05/2015 22:55:07','22,7', 'RA03');
execute insertartiradas('RA0342127,9566087963', '13', '03/05/2015 22:57:31','-21,6', 'RA03');
execute insertartiradas('RA0342127,9585763888', '29', '03/05/2015 23:00:21','16,8', 'RA03');
execute insertartiradas('RA0342127,9602199074', '24', '03/05/2015 23:02:43','-20,9', 'RA03');
execute insertartiradas('RA0342127,9613657407', '5', '03/05/2015 23:04:22','17,3', 'RA03');
execute insertartiradas('RA0342127,9628935185', '33', '03/05/2015 23:06:34','-11,5', 'RA03');
execute insertartiradas('RA0342127,9641782407', '33', '03/05/2015 23:08:25','16,7', 'RA03');
execute insertartiradas('RA0342127,9656712963', '26', '03/05/2015 23:10:34','-22,8', 'RA03');
execute insertartiradas('RA0342127,9666319444', '11', '03/05/2015 23:11:57','20,7', 'RA03');
execute insertartiradas('RA0342127,9677199074', '1', '03/05/2015 23:13:31','-23,1', 'RA03');
execute insertartiradas('RA0342127,9687962963', '23', '03/05/2015 23:15:04','17,7', 'RA03');
execute insertartiradas('RA0342127,9699537037', '5', '03/05/2015 23:16:44','-21,8', 'RA03');
execute insertartiradas('RA0342127,9709953704', '16', '03/05/2015 23:18:14','23,5', 'RA03');
execute insertartiradas('RA0342127,971875', '12', '03/05/2015 23:19:30','-11,8', 'RA03');
execute insertartiradas('RA0342127,9726273148', '25', '03/05/2015 23:20:35','12,4', 'RA03');
execute insertartiradas('RA0342127,9733564815', '25', '03/05/2015 23:21:38','-14,7', 'RA03');
execute insertartiradas('RA0342127,9741435185', '25', '03/05/2015 23:22:46','12,9', 'RA03');
execute insertartiradas('RA0342127,9749537037', '12', '03/05/2015 23:23:56','-12,5', 'RA03');
execute insertartiradas('RA0342127,9758796296', '8', '03/05/2015 23:25:16','15,6', 'RA03');
execute insertartiradas('RA0342127,9767361111', '16', '03/05/2015 23:26:30','-13,6', 'RA03');
execute insertartiradas('RA0342127,9775115741', '20', '03/05/2015 23:27:37','13,4', 'RA03');
execute insertartiradas('RA0342127,9783680556', '1', '03/05/2015 23:28:51','-12,3', 'RA03');
execute insertartiradas('RA0342127,9791435185', '6', '03/05/2015 23:29:58','12,4', 'RA03');
execute insertartiradas('RA0342127,9799074074', '23', '03/05/2015 23:31:04','-13,5', 'RA03');
execute insertartiradas('RA0342127,9805787037', '31', '03/05/2015 23:32:02','12,6', 'RA03');
execute insertartiradas('RA0342127,9812731482', '23', '03/05/2015 23:33:02','-14,9', 'RA03');
execute insertartiradas('RA0342127,9819097222', '23', '03/05/2015 23:33:57','12,5', 'RA03');
execute insertartiradas('RA0342127,9828125', '36', '03/05/2015 23:35:15','-10,1', 'RA03');
execute insertartiradas('RA0342127,983587963', '10', '03/05/2015 23:36:22','14,2', 'RA03');
execute insertartiradas('RA0342127,9843634259', '35', '03/05/2015 23:37:29','-13,9', 'RA03');
execute insertartiradas('RA0342127,9852662037', '35', '03/05/2015 23:38:47','12,6', 'RA03');
execute insertartiradas('RA0342127,9869328704', '28', '03/05/2015 23:41:11','-19,8', 'RA03');
execute insertartiradas('RA0342127,9879976852', '12', '03/05/2015 23:42:43','17,9', 'RA03');
execute insertartiradas('RA0342127,9889236111', '31', '03/05/2015 23:44:03','-18,5', 'RA03');
execute insertartiradas('RA0342127,9899768519', '8', '03/05/2015 23:45:34','17,7', 'RA03');
execute insertartiradas('RA0342127,9906828704', '20', '03/05/2015 23:46:35','-19,3', 'RA03');
execute insertartiradas('RA0342127,9913773148', '17', '03/05/2015 23:47:35','19,8', 'RA03');
execute insertartiradas('RA0342127,9920833333', '10', '03/05/2015 23:48:36','-18,6', 'RA03');
execute insertartiradas('RA0342127,9932175925', '4', '03/05/2015 23:50:14','18,6', 'RA03');
execute insertartiradas('RA0342127,9944097222', '4', '03/05/2015 23:51:57','-19', 'RA03');
execute insertartiradas('RA0342127,9951736111', '3', '03/05/2015 23:53:03','18,9', 'RA03');
execute insertartiradas('RA0342127,9959837963', '19', '03/05/2015 23:54:13','-19,4', 'RA03');
execute insertartiradas('RA0342127,9965972222', '5', '03/05/2015 23:55:06','19,2', 'RA03');
execute insertartiradas('RA0342127,9977199074', '24', '03/05/2015 23:56:43','-19,6', 'RA03');
execute insertartiradas('RA0342127,9984143519', '20', '03/05/2015 23:57:43','19', 'RA03');
execute insertartiradas('RA0342127,9989236111', '28', '03/05/2015 23:58:27','-18,6', 'RA03');
execute insertartiradas('RA0342127,9996527778', '26', '03/05/2015 23:59:30','19,8', 'RA03');
execute insertartiradas('RA0342128,0006018519', '0', '04/05/2015 00:00:52','-19,3', 'RA03');
execute insertartiradas('RA0342128,0013657407', '29', '04/05/2015 00:01:58','18,5', 'RA03');
execute insertartiradas('RA0342128,0024537037', '16', '04/05/2015 00:03:32','-20,7', 'RA03');
execute insertartiradas('RA0342128,0032291667', '36', '04/05/2015 00:04:39','18,5', 'RA03');
execute insertartiradas('RA0342128,0037731481', '22', '04/05/2015 00:05:26','-20,3', 'RA03');
execute insertartiradas('RA0342128,004375', '19', '04/05/2015 00:06:18','19,1', 'RA03');
execute insertartiradas('RA0342128,0056365741', '28', '04/05/2015 00:08:07','-19,9', 'RA03');
execute insertartiradas('RA0342128,0062037037', '3', '04/05/2015 00:08:56','17,4', 'RA03');
execute insertartiradas('RA0342128,007662037', '17', '04/05/2015 00:11:02','-20,8', 'RA03');
execute insertartiradas('RA0342128,0085185185', '16', '04/05/2015 00:12:16','19,6', 'RA03');
execute insertartiradas('RA0342128,0091666667', '21', '04/05/2015 00:13:12','-19,9', 'RA03');
execute insertartiradas('RA0342128,0098726851', '20', '04/05/2015 00:14:13','19,5', 'RA03');
execute insertartiradas('RA0342128,0105787037', '15', '04/05/2015 00:15:14','-21,4', 'RA03');
execute insertartiradas('RA0342128,0116550926', '17', '04/05/2015 00:16:47','19,2', 'RA03');
execute insertartiradas('RA0342128,0122337962', '15', '04/05/2015 00:17:37','-19,5', 'RA03');
execute insertartiradas('RA0342128,0130439815', '15', '04/05/2015 00:18:47','20', 'RA03');
execute insertartiradas('RA0342128,0135648148', '15', '04/05/2015 00:19:32','-20,5', 'RA03');
execute insertartiradas('RA0342128,0140277778', '3', '04/05/2015 00:20:12','19,6', 'RA03');
execute insertartiradas('RA0342128,0146296296', '4', '04/05/2015 00:21:04','-19,5', 'RA03');
execute insertartiradas('RA0342128,0150231481', '10', '04/05/2015 00:21:38','18,3', 'RA03');
execute insertartiradas('RA0342128,0155555556', '16', '04/05/2015 00:22:24','-19,3', 'RA03');
execute insertartiradas('RA0342128,0304513889', '26', '04/05/2015 00:43:51','13,5', 'RA03');
execute insertartiradas('RA0342128,0311689815', '11', '04/05/2015 00:44:53','-16', 'RA03');
execute insertartiradas('RA0342128,0318171296', '24', '04/05/2015 00:45:49','13,3', 'RA03');
execute insertartiradas('RA0342128,0323842593', '26', '04/05/2015 00:46:38','-16,2', 'RA03');
execute insertartiradas('RA0342128,032962963', '15', '04/05/2015 00:47:28','12,7', 'RA03');
execute insertartiradas('RA0342128,0336342593', '2', '04/05/2015 00:48:26','-16,9', 'RA03');
execute insertartiradas('RA0342128,0344444444', '31', '04/05/2015 00:49:36','12,1', 'RA03');
execute insertartiradas('RA0342128,0349768518', '28', '04/05/2015 00:50:22','-15,8', 'RA03');
execute insertartiradas('RA0342128,0354513889', '26', '04/05/2015 00:51:03','13,1', 'RA03');
execute insertartiradas('RA0342128,0360763889', '18', '04/05/2015 00:51:57','-16,7', 'RA03');
execute insertartiradas('RA0342128,0368055556', '2', '04/05/2015 00:53:00','12,3', 'RA03');
execute insertartiradas('RA0342128,0374305556', '8', '04/05/2015 00:53:54','-18,7', 'RA03');
execute insertartiradas('RA0342128,038125', '21', '04/05/2015 00:54:54','14,3', 'RA03');
execute insertartiradas('RA0342128,0386805556', '29', '04/05/2015 00:55:42','-16,3', 'RA03');
execute insertartiradas('RA0342128,0393287037', '25', '04/05/2015 00:56:38','12,9', 'RA03');
execute insertartiradas('RA0342128,0398611111', '17', '04/05/2015 00:57:24','-16,4', 'RA03');
execute insertartiradas('RA0342128,0406365741', '7', '04/05/2015 00:58:31','14,6', 'RA03');
execute insertartiradas('RA0342128,0412384259', '26', '04/05/2015 00:59:23','-14,9', 'RA03');
execute insertartiradas('RA0342128,0433912037', '2', '04/05/2015 01:02:29','12,3', 'RA03');
execute insertartiradas('RA0342128,0441898148', '27', '04/05/2015 01:03:38','-17,8', 'RA03');
execute insertartiradas('RA0342128,0449884259', '19', '04/05/2015 01:04:47','14,3', 'RA03');
execute insertartiradas('RA0342128,0458796296', '19', '04/05/2015 01:06:04','-16', 'RA03');
execute insertartiradas('RA0342128,0466087963', '6', '04/05/2015 01:07:07','13,4', 'RA03');
execute insertartiradas('RA0342128,0471759259', '15', '04/05/2015 01:07:56','-16,8', 'RA03');
execute insertartiradas('RA0342128,0480208333', '31', '04/05/2015 01:09:09','13,9', 'RA03');
execute insertartiradas('RA0342128,0487731481', '10', '04/05/2015 01:10:14','-14,1', 'RA03');
execute insertartiradas('RA0342128,0496412037', '0', '04/05/2015 01:11:29','12,7', 'RA03');
execute insertartiradas('RA0342128,0505439815', '1', '04/05/2015 01:12:47','-16,6', 'RA03');
execute insertartiradas('RA0342128,0518287037', '26', '04/05/2015 01:14:38','16,2', 'RA03');
execute insertartiradas('RA0342128,0529861111', '14', '04/05/2015 01:16:18','-15,6', 'RA03');
execute insertartiradas('RA0342128,0540046296', '15', '04/05/2015 01:17:46','16,9', 'RA03');
execute insertartiradas('RA0342128,0557060185', '27', '04/05/2015 01:20:13','-20,7', 'RA03');
execute insertartiradas('RA0342128,0573842593', '24', '04/05/2015 01:22:38','13,4', 'RA03');
execute insertartiradas('RA0342128,0586111111', '5', '04/05/2015 01:24:24','-16,8', 'RA03');
execute insertartiradas('RA0342128,0591203704', '22', '04/05/2015 01:25:08','14,2', 'RA03');
execute insertartiradas('RA0342128,0597916667', '18', '04/05/2015 01:26:06','-16,1', 'RA03');
execute insertartiradas('RA0342128,0604861111', '6', '04/05/2015 01:27:06','13', 'RA03');
execute insertartiradas('RA0342128,0609722222', '9', '04/05/2015 01:27:48','-14,9', 'RA03');
execute insertartiradas('RA0342128,0615509259', '28', '04/05/2015 01:28:38','12', 'RA03');
execute insertartiradas('RA0342128,0619791667', '25', '04/05/2015 01:29:15','-16,4', 'RA03');
execute insertartiradas('RA0342128,0624768519', '34', '04/05/2015 01:29:58','14,1', 'RA03');
execute insertartiradas('RA0342128,0633101852', '33', '04/05/2015 01:31:10','-15,2', 'RA03');
execute insertartiradas('RA0342128,0637962963', '33', '04/05/2015 01:31:52','13,3', 'RA03');
execute insertartiradas('RA0342128,064212963', '23', '04/05/2015 01:32:28','-14', 'RA03');
execute insertartiradas('RA0342128,0653125', '34', '04/05/2015 01:34:03','14,6', 'RA03');
execute insertartiradas('RA0342128,0658217593', '30', '04/05/2015 01:34:47','-14', 'RA03');
execute insertartiradas('RA0342128,0664467593', '32', '04/05/2015 01:35:41','12,6', 'RA03');
execute insertartiradas('RA0342128,0670023148', '20', '04/05/2015 01:36:29','-15,4', 'RA03');
execute insertartiradas('RA0342128,067662037', '10', '04/05/2015 01:37:26','11,8', 'RA03');
execute insertartiradas('RA0342128,0681365741', '18', '04/05/2015 01:38:07','-14,8', 'RA03');
execute insertartiradas('RA0342128,0685532407', '9', '04/05/2015 01:38:43','13', 'RA03');
execute insertartiradas('RA0342128,0690393519', '21', '04/05/2015 01:39:25','-16,1', 'RA03');
execute insertartiradas('RA0342128,0695601852', '35', '04/05/2015 01:40:10','12,5', 'RA03');
execute insertartiradas('RA0342128,0704398148', '8', '04/05/2015 01:41:26','-19,7', 'RA03');
execute insertartiradas('RA0342128,0708680556', '30', '04/05/2015 01:42:03','18,2', 'RA03');
execute insertartiradas('RA0342128,0713425925', '24', '04/05/2015 01:42:44','-20,2', 'RA03');
execute insertartiradas('RA0342128,0719097222', '4', '04/05/2015 01:43:33','16,9', 'RA03');
execute insertartiradas('RA0342128,0722453704', '30', '04/05/2015 01:44:02','-21,3', 'RA03');
execute insertartiradas('RA0342128,0727199074', '9', '04/05/2015 01:44:43','19,5', 'RA03');
execute insertartiradas('RA0342128,0732060185', '35', '04/05/2015 01:45:25','-20,1', 'RA03');
execute insertartiradas('RA0342128,0737962963', '1', '04/05/2015 01:46:16','18,8', 'RA03');
execute insertartiradas('RA0342128,0741898148', '24', '04/05/2015 01:46:50','-19,1', 'RA03');
execute insertartiradas('RA0342128,0748032407', '28', '04/05/2015 01:47:43','18,4', 'RA03');
execute insertartiradas('RA0342128,075162037', '3', '04/05/2015 01:48:14','-20,2', 'RA03');
execute insertartiradas('RA0342128,0756134259', '33', '04/05/2015 01:48:53','19,1', 'RA03');
execute insertartiradas('RA0342128,0761342593', '31', '04/05/2015 01:49:38','-20,8', 'RA03');
execute insertartiradas('RA0342128,0766782407', '8', '04/05/2015 01:50:25','19,5', 'RA03');
execute insertartiradas('RA0342128,0772106481', '31', '04/05/2015 01:51:11','-19,4', 'RA03');
execute insertartiradas('RA0342128,0779398148', '25', '04/05/2015 01:52:14','18,1', 'RA03');
execute insertartiradas('RA0342128,0783564815', '20', '04/05/2015 01:52:50','-21,5', 'RA03');
execute insertartiradas('RA0342128,0791782407', '21', '04/05/2015 01:54:01','19,4', 'RA03');
execute insertartiradas('RA0342128,0799074074', '5', '04/05/2015 01:55:04','-19,3', 'RA03');
execute insertartiradas('RA0342128,0803587963', '21', '04/05/2015 01:55:43','19', 'RA03');
execute insertartiradas('RA0342128,0811111111', '18', '04/05/2015 01:56:48','-18,6', 'RA03');
execute insertartiradas('RA0342128,081875', '22', '04/05/2015 01:57:54','17,9', 'RA03');
execute insertartiradas('RA0342128,0822685185', '0', '04/05/2015 01:58:28','-21,1', 'RA03');
execute insertartiradas('RA0342128,082662037', '22', '04/05/2015 01:59:02','16,9', 'RA03');
execute insertartiradas('RA0342128,0832754629', '34', '04/05/2015 01:59:55','-19,8', 'RA03');
execute insertartiradas('RA0342128,0840625', '7', '04/05/2015 02:01:03','14,6', 'RA03');
execute insertartiradas('RA0342128,0845023148', '10', '04/05/2015 02:01:41','-15', 'RA03');
execute insertartiradas('RA0342128,0849652778', '1', '04/05/2015 02:02:21','11,4', 'RA03');
execute insertartiradas('RA0342128,0853703704', '30', '04/05/2015 02:02:56','-15,9', 'RA03');
execute insertartiradas('RA0342128,0860185185', '29', '04/05/2015 02:03:52','13,4', 'RA03');
execute insertartiradas('RA0342128,086712963', '7', '04/05/2015 02:04:52','-16,1', 'RA03');
execute insertartiradas('RA0342128,087349537', '21', '04/05/2015 02:05:47','14,2', 'RA03');
execute insertartiradas('RA0342128,0881597222', '20', '04/05/2015 02:06:57','-16', 'RA03');
execute insertartiradas('RA0342128,0888078704', '11', '04/05/2015 02:07:53','13,4', 'RA03');
execute insertartiradas('RA0342128,0891782407', '14', '04/05/2015 02:08:25','-15,6', 'RA03');
execute insertartiradas('RA0342128,0898032407', '19', '04/05/2015 02:09:19','11,8', 'RA03');
execute insertartiradas('RA0342128,0902199074', '7', '04/05/2015 02:09:55','-16,2', 'RA03');
execute insertartiradas('RA0342128,0907986111', '15', '04/05/2015 02:10:45','13,6', 'RA03');
execute insertartiradas('RA0342128,0913657407', '24', '04/05/2015 02:11:34','-16,2', 'RA03');
execute insertartiradas('RA0342128,0919907407', '13', '04/05/2015 02:12:28','12,8', 'RA03');
execute insertartiradas('RA0342128,0928703704', '35', '04/05/2015 02:13:44','-14,7', 'RA03');
execute insertartiradas('RA0342128,093449074', '30', '04/05/2015 02:14:34','14', 'RA03');
execute insertartiradas('RA0342128,0940509259', '33', '04/05/2015 02:15:26','-14,3', 'RA03');
execute insertartiradas('RA0342128,0945023148', '6', '04/05/2015 02:16:05','13,4', 'RA03');
execute insertartiradas('RA0342128,0949768519', '22', '04/05/2015 02:16:46','-15,8', 'RA03');
execute insertartiradas('RA0342128,0955439815', '1', '04/05/2015 02:17:35','12', 'RA03');
execute insertartiradas('RA0342128,0960648148', '21', '04/05/2015 02:18:20','-15,6', 'RA03');
execute insertartiradas('RA0342128,0978125', '9', '04/05/2015 02:20:51','14,5', 'RA03');
execute insertartiradas('RA0342128,0987037037', '18', '04/05/2015 02:22:08','-16', 'RA03');
execute insertartiradas('RA0342128,0993865741', '0', '04/05/2015 02:23:07','12,8', 'RA03');
execute insertartiradas('RA0342128,0998611111', '22', '04/05/2015 02:23:48','-15,3', 'RA03');
execute insertartiradas('RA0342128,1009027778', '7', '04/05/2015 02:25:18','17,1', 'RA03');
execute insertartiradas('RA0342128,7065509259', '4', '04/05/2015 16:57:26','-24,9', 'RA03');
execute insertartiradas('RA0342128,7105902778', '10', '04/05/2015 17:03:15','20', 'RA03');
execute insertartiradas('RA0342128,7112962963', '36', '04/05/2015 17:04:16','-19,4', 'RA03');
execute insertartiradas('RA0342128,7116203704', '20', '04/05/2015 17:04:44','18,9', 'RA03');
execute insertartiradas('RA0342128,713587963', '0', '04/05/2015 17:07:34','-20,8', 'RA03');
execute insertartiradas('RA0342128,7141203704', '14', '04/05/2015 17:08:20','17,2', 'RA03');
execute insertartiradas('RA0342128,7146527778', '16', '04/05/2015 17:09:06','-18,6', 'RA03');
execute insertartiradas('RA0342128,7149884259', '13', '04/05/2015 17:09:35','19,3', 'RA03');
execute insertartiradas('RA0342128,7191203704', '32', '04/05/2015 17:15:32','-23,2', 'RA03');
execute insertartiradas('RA0342128,7199189815', '29', '04/05/2015 17:16:41','18,7', 'RA03');
execute insertartiradas('RA0342128,720474537', '5', '04/05/2015 17:17:29','-16,4', 'RA03');
execute insertartiradas('RA0342128,7210763889', '18', '04/05/2015 17:18:21','17,9', 'RA03');
execute insertartiradas('RA0342128,7219560185', '20', '04/05/2015 17:19:37','-20,3', 'RA03');
execute insertartiradas('RA0342128,7231944444', '18', '04/05/2015 17:21:24','21,2', 'RA03');
execute insertartiradas('RA0342128,7240856482', '18', '04/05/2015 17:22:41','-23,4', 'RA03');
execute insertartiradas('RA0342128,7252199074', '11', '04/05/2015 17:24:19','17,4', 'RA03');
execute insertartiradas('RA0342128,7268634259', '30', '04/05/2015 17:26:41','-21', 'RA03');
execute insertartiradas('RA0342128,727962963', '35', '04/05/2015 17:28:16','21,3', 'RA03');
execute insertartiradas('RA0342128,728599537', '32', '04/05/2015 17:29:11','-22', 'RA03');
execute insertartiradas('RA0342128,729212963', '4', '04/05/2015 17:30:04','24,6', 'RA03');
execute insertartiradas('RA0342128,7298958333', '26', '04/05/2015 17:31:03','-21,5', 'RA03');
execute insertartiradas('RA0342128,730787037', '13', '04/05/2015 17:32:20','18,2', 'RA03');
execute insertartiradas('RA0342128,7313310185', '30', '04/05/2015 17:33:07','-22,1', 'RA03');
execute insertartiradas('RA0342128,7326273148', '11', '04/05/2015 17:34:59','20,9', 'RA03');
execute insertartiradas('RA0342128,7335763889', '5', '04/05/2015 17:36:21','-23,1', 'RA03');
execute insertartiradas('RA0342128,7343287037', '7', '04/05/2015 17:37:26','17,5', 'RA03');
execute insertartiradas('RA0342128,7352314815', '10', '04/05/2015 17:38:44','-22,9', 'RA03');
execute insertartiradas('RA0342128,7359143519', '29', '04/05/2015 17:39:43','22,2', 'RA03');
execute insertartiradas('RA0342128,7377893518', '31', '04/05/2015 17:42:25','-21,6', 'RA03');
execute insertartiradas('RA0342128,73875', '21', '04/05/2015 17:43:48','21,6', 'RA03');
execute insertartiradas('RA0342128,7397453704', '29', '04/05/2015 17:45:14','-20,7', 'RA03');
execute insertartiradas('RA0342128,7405555556', '12', '04/05/2015 17:46:24','19,7', 'RA03');
execute insertartiradas('RA0342128,7412615741', '12', '04/05/2015 17:47:25','-20,4', 'RA03');
execute insertartiradas('RA0342128,7419212963', '28', '04/05/2015 17:48:22','16,9', 'RA03');
execute insertartiradas('RA0342128,7429282407', '34', '04/05/2015 17:49:49','-18,9', 'RA03');
execute insertartiradas('RA0342128,7440856481', '8', '04/05/2015 17:51:29','17,7', 'RA03');
execute insertartiradas('RA0342128,744849537', '13', '04/05/2015 17:52:35','-21,3', 'RA03');
execute insertartiradas('RA0342128,7456712963', '26', '04/05/2015 17:53:46','18,1', 'RA03');
execute insertartiradas('RA0342128,7463310185', '34', '04/05/2015 17:54:43','-19,6', 'RA03');
execute insertartiradas('RA0342128,7470717593', '25', '04/05/2015 17:55:47','18,2', 'RA03');
execute insertartiradas('RA0342128,7481134259', '17', '04/05/2015 17:57:17','-20', 'RA03');
execute insertartiradas('RA0342128,7489583333', '8', '04/05/2015 17:58:30','19,4', 'RA03');
execute insertartiradas('RA0342128,7497916667', '22', '04/05/2015 17:59:42','-16,1', 'RA03');
execute insertartiradas('RA0342128,7504976852', '26', '04/05/2015 18:00:43','18,2', 'RA03');
execute insertartiradas('RA0342128,7515856481', '11', '04/05/2015 18:02:17','-20,6', 'RA03');
execute insertartiradas('RA0342128,7521412037', '26', '04/05/2015 18:03:05','18,2', 'RA03');
execute insertartiradas('RA0342128,7528356481', '9', '04/05/2015 18:04:05','-19,6', 'RA03');
execute insertartiradas('RA0342128,7534837963', '8', '04/05/2015 18:05:01','17,3', 'RA03');
execute insertartiradas('RA0342128,7545023148', '12', '04/05/2015 18:06:29','-18,8', 'RA03');
execute insertartiradas('RA0342128,7554050926', '6', '04/05/2015 18:07:47','18,4', 'RA03');
execute insertartiradas('RA0342128,75625', '11', '04/05/2015 18:09:00','-16,3', 'RA03');
execute insertartiradas('RA0342128,7569444444', '31', '04/05/2015 18:10:00','16,2', 'RA03');
execute insertartiradas('RA0342128,7577546296', '35', '04/05/2015 18:11:10','-21,7', 'RA03');
execute insertartiradas('RA0342128,7585185185', '1', '04/05/2015 18:12:16','15,3', 'RA03');
execute insertartiradas('RA0342128,7592708333', '13', '04/05/2015 18:13:21','-20', 'RA03');
execute insertartiradas('RA0342128,7601851852', '4', '04/05/2015 18:14:40','15,8', 'RA03');
execute insertartiradas('RA0342128,7608449074', '29', '04/05/2015 18:15:37','-21,3', 'RA03');
execute insertartiradas('RA0342128,761712963', '3', '04/05/2015 18:16:52','19,8', 'RA03');
execute insertartiradas('RA0342128,7626388889', '1', '04/05/2015 18:18:12','-19,3', 'RA03');
execute insertartiradas('RA0342128,763287037', '20', '04/05/2015 18:19:08','16,7', 'RA03');
execute insertartiradas('RA0342128,7643287037', '32', '04/05/2015 18:20:38','-20,6', 'RA03');
execute insertartiradas('RA0342128,7649884259', '13', '04/05/2015 18:21:35','18,9', 'RA03');
execute insertartiradas('RA0342128,7655092593', '18', '04/05/2015 18:22:20','-20,5', 'RA03');
execute insertartiradas('RA0342128,7661805556', '28', '04/05/2015 18:23:18','17,9', 'RA03');
execute insertartiradas('RA0342128,7666203704', '5', '04/05/2015 18:23:56','-17,9', 'RA03');
execute insertartiradas('RA0342128,7669675926', '20', '04/05/2015 18:24:26','19,2', 'RA03');
execute insertartiradas('RA0342128,767662037', '28', '04/05/2015 18:25:26','-19,8', 'RA03');
execute insertartiradas('RA0342128,7681365741', '25', '04/05/2015 18:26:07','17,9', 'RA03');
execute insertartiradas('RA0342128,7686342593', '0', '04/05/2015 18:26:50','-19,1', 'RA03');
execute insertartiradas('RA0342128,7693055556', '14', '04/05/2015 18:27:48','19,2', 'RA03');
execute insertartiradas('RA0342128,7697106482', '28', '04/05/2015 18:28:23','-20,7', 'RA03');
execute insertartiradas('RA0342128,7703703704', '15', '04/05/2015 18:29:20','19,8', 'RA03');
execute insertartiradas('RA0342128,771087963', '2', '04/05/2015 18:30:22','-18,9', 'RA03');
execute insertartiradas('RA0342128,7716435185', '16', '04/05/2015 18:31:10','18,5', 'RA03');
execute insertartiradas('RA0342128,7721527778', '28', '04/05/2015 18:31:54','-18,7', 'RA03');
execute insertartiradas('RA0342128,772662037', '19', '04/05/2015 18:32:38','19,9', 'RA03');
execute insertartiradas('RA0342128,7731828704', '31', '04/05/2015 18:33:23','-20,4', 'RA03');
execute insertartiradas('RA0342128,7736574074', '33', '04/05/2015 18:34:04','18,5', 'RA03');
execute insertartiradas('RA0342128,7740972222', '6', '04/05/2015 18:34:42','-19,3', 'RA03');
execute insertartiradas('RA0342128,7753240741', '13', '04/05/2015 18:36:28','18,5', 'RA03');
execute insertartiradas('RA0342128,775775463', '18', '04/05/2015 18:37:07','-19,1', 'RA03');
execute insertartiradas('RA0342128,776712963', '13', '04/05/2015 18:38:28','18,8', 'RA03');
execute insertartiradas('RA0342128,7771527778', '13', '04/05/2015 18:39:06','-19,9', 'RA03');
execute insertartiradas('RA0342128,777662037', '25', '04/05/2015 18:39:50','19,6', 'RA03');
execute insertartiradas('RA0342128,7781712963', '2', '04/05/2015 18:40:34','-19,5', 'RA03');
execute insertartiradas('RA0342128,7786226852', '14', '04/05/2015 18:41:13','19,7', 'RA03');
execute insertartiradas('RA0342128,7791550926', '1', '04/05/2015 18:41:59','-19,7', 'RA03');
execute insertartiradas('RA0342128,7799537037', '31', '04/05/2015 18:43:08','18,1', 'RA03');
execute insertartiradas('RA0342128,7806018519', '34', '04/05/2015 18:44:04','-18,8', 'RA03');
execute insertartiradas('RA0342128,7810648148', '33', '04/05/2015 18:44:44','18', 'RA03');
execute insertartiradas('RA0342128,7817592593', '30', '04/05/2015 18:45:44','-18,2', 'RA03');
execute insertartiradas('RA0342128,7824652778', '19', '04/05/2015 18:46:45','18,9', 'RA03');
execute insertartiradas('RA0342128,7831944444', '5', '04/05/2015 18:47:48','-19,4', 'RA03');
execute insertartiradas('RA0342128,7836689815', '32', '04/05/2015 18:48:29','18,9', 'RA03');
execute insertartiradas('RA0342128,7843171296', '15', '04/05/2015 18:49:25','-19,5', 'RA03');
execute insertartiradas('RA0342128,7850115741', '28', '04/05/2015 18:50:25','19,6', 'RA03');
execute insertartiradas('RA0342128,7855902778', '21', '04/05/2015 18:51:15','-19', 'RA03');
execute insertartiradas('RA0342128,7865162037', '31', '04/05/2015 18:52:35','18,6', 'RA03');
execute insertartiradas('RA0342128,7877314814', '14', '04/05/2015 18:54:20','-20,4', 'RA03');
execute insertartiradas('RA0342128,7885069444', '4', '04/05/2015 18:55:27','17,7', 'RA03');
execute insertartiradas('RA0342128,7895138889', '5', '04/05/2015 18:56:54','-21,4', 'RA03');
execute insertartiradas('RA0342128,7906828704', '20', '04/05/2015 18:58:35','19,3', 'RA03');
execute insertartiradas('RA0342128,7914583333', '23', '04/05/2015 18:59:42','-20,5', 'RA03');
execute insertartiradas('RA0342128,7921296296', '23', '04/05/2015 19:00:40','19,7', 'RA03');
execute insertartiradas('RA0342128,793287037', '3', '04/05/2015 19:02:20','-16,2', 'RA03');
execute insertartiradas('RA0342128,7942708333', '6', '04/05/2015 19:03:45','12,4', 'RA03');
execute insertartiradas('RA0342128,794837963', '26', '04/05/2015 19:04:34','-17,1', 'RA03');
execute insertartiradas('RA0342128,7954166667', '2', '04/05/2015 19:05:24','13,6', 'RA03');
execute insertartiradas('RA0342128,7959027778', '25', '04/05/2015 19:06:06','-18,9', 'RA03');
execute insertartiradas('RA0342128,7966087963', '15', '04/05/2015 19:07:07','14,5', 'RA03');
execute insertartiradas('RA0342128,7972337963', '9', '04/05/2015 19:08:01','-15,5', 'RA03');
execute insertartiradas('RA0342128,7977893519', '22', '04/05/2015 19:08:49','15,9', 'RA03');
execute insertartiradas('RA0342128,7984490741', '35', '04/05/2015 19:09:46','-16,5', 'RA03');
execute insertartiradas('RA0342128,7991782407', '27', '04/05/2015 19:10:49','14,6', 'RA03');
execute insertartiradas('RA0342128,7998842593', '21', '04/05/2015 19:11:50','-16,9', 'RA03');
execute insertartiradas('RA0342128,8004861111', '14', '04/05/2015 19:12:42','13,6', 'RA03');
execute insertartiradas('RA0342128,8012962962', '30', '04/05/2015 19:13:52','-17,5', 'RA03');
execute insertartiradas('RA0342128,8020717593', '0', '04/05/2015 19:14:59','16,7', 'RA03');
execute insertartiradas('RA0342128,8027893519', '18', '04/05/2015 19:16:01','-17,1', 'RA03');
execute insertartiradas('RA0342128,8034490741', '14', '04/05/2015 19:16:58','14,4', 'RA03');
execute insertartiradas('RA0342128,8045138889', '1', '04/05/2015 19:18:30','-18,7', 'RA03');
execute insertartiradas('RA0342128,8051157407', '36', '04/05/2015 19:19:22','14', 'RA03');
execute insertartiradas('RA0342128,8058564815', '11', '04/05/2015 19:20:26','-18', 'RA03');
execute insertartiradas('RA0342128,8065509259', '11', '04/05/2015 19:21:26','11,4', 'RA03');
execute insertartiradas('RA0342128,8072916667', '23', '04/05/2015 19:22:30','-17,9', 'RA03');
execute insertartiradas('RA0342128,8082523148', '0', '04/05/2015 19:23:53','14,6', 'RA03');
execute insertartiradas('RA0342128,809375', '12', '04/05/2015 19:25:30','-19,5', 'RA03');
execute insertartiradas('RA0342128,8098958333', '35', '04/05/2015 19:26:15','13,3', 'RA03');
execute insertartiradas('RA0342128,810625', '27', '04/05/2015 19:27:18','-19,1', 'RA03');
execute insertartiradas('RA0342128,8111805556', '23', '04/05/2015 19:28:06','15,5', 'RA03');
execute insertartiradas('RA0342128,8117824074', '36', '04/05/2015 19:28:58','-17,4', 'RA03');
execute insertartiradas('RA0342128,8126041667', '29', '04/05/2015 19:30:09','14,7', 'RA03');
execute insertartiradas('RA0342128,8133217593', '19', '04/05/2015 19:31:11','-16,7', 'RA03');
execute insertartiradas('RA0342128,8143402778', '19', '04/05/2015 19:32:39','15,1', 'RA03');
execute insertartiradas('RA0342128,8150231481', '22', '04/05/2015 19:33:38','-16,3', 'RA03');
execute insertartiradas('RA0342128,8157523148', '10', '04/05/2015 19:34:41','13,1', 'RA03');
execute insertartiradas('RA0342128,8162615741', '11', '04/05/2015 19:35:25','-17,5', 'RA03');
execute insertartiradas('RA0342128,817025463', '8', '04/05/2015 19:36:31','14,3', 'RA03');
execute insertartiradas('RA0342128,8177893519', '36', '04/05/2015 19:37:37','-15,7', 'RA03');
execute insertartiradas('RA0342128,8190046296', '8', '04/05/2015 19:39:22','17,8', 'RA03');
execute insertartiradas('RA0342128,8195486111', '27', '04/05/2015 19:40:09','-16,1', 'RA03');
execute insertartiradas('RA0342128,8200925926', '5', '04/05/2015 19:40:56','12,1', 'RA03');
execute insertartiradas('RA0342128,8205439815', '1', '04/05/2015 19:41:35','-15,3', 'RA03');
execute insertartiradas('RA0342128,8212268519', '24', '04/05/2015 19:42:34','15,1', 'RA03');
execute insertartiradas('RA0342128,8222453704', '3', '04/05/2015 19:44:02','-17,1', 'RA03');
execute insertartiradas('RA0342128,8228935185', '2', '04/05/2015 19:44:58','16,1', 'RA03');
execute insertartiradas('RA0342128,8236921296', '31', '04/05/2015 19:46:07','-18,7', 'RA03');
execute insertartiradas('RA0342128,8254166667', '8', '04/05/2015 19:48:36','17,8', 'RA03');
execute insertartiradas('RA0342128,8259837963', '10', '04/05/2015 19:49:25','-19,1', 'RA03');
execute insertartiradas('RA0342128,8267013889', '36', '04/05/2015 19:50:27','17,3', 'RA03');
execute insertartiradas('RA0342128,8275578704', '31', '04/05/2015 19:51:41','-19,3', 'RA03');
execute insertartiradas('RA0342128,8286574074', '34', '04/05/2015 19:53:16','16,1', 'RA03');
execute insertartiradas('RA0342128,8298263889', '23', '04/05/2015 19:54:57','-21', 'RA03');
execute insertartiradas('RA0342128,830775463', '34', '04/05/2015 19:56:19','16,8', 'RA03');
execute insertartiradas('RA0342128,8317824074', '30', '04/05/2015 19:57:46','-19,8', 'RA03');
execute insertartiradas('RA0342128,8329398148', '12', '04/05/2015 19:59:26','18', 'RA03');
execute insertartiradas('RA0342128,8335069444', '7', '04/05/2015 20:00:15','-24,6', 'RA03');
execute insertartiradas('RA0342128,8339699074', '30', '04/05/2015 20:00:55','19,6', 'RA03');
execute insertartiradas('RA0342128,8344097222', '2', '04/05/2015 20:01:33','-15,7', 'RA03');
execute insertartiradas('RA0342128,8347916667', '5', '04/05/2015 20:02:06','19,2', 'RA03');
execute insertartiradas('RA0342128,835150463', '32', '04/05/2015 20:02:37','-18,1', 'RA03');
execute insertartiradas('RA0342128,8367939815', '33', '04/05/2015 20:04:59','22,1', 'RA03');
execute insertartiradas('RA0342128,8380439815', '0', '04/05/2015 20:06:47','-19,4', 'RA03');
execute insertartiradas('RA0342128,8386342593', '23', '04/05/2015 20:07:38','16,3', 'RA03');
execute insertartiradas('RA0342128,8394097222', '36', '04/05/2015 20:08:45','-18,6', 'RA03');
execute insertartiradas('RA0342128,8401967593', '26', '04/05/2015 20:09:53','20,2', 'RA03');
execute insertartiradas('RA0342128,8407407407', '10', '04/05/2015 20:10:40','-20,3', 'RA03');
execute insertartiradas('RA0342128,8411689815', '9', '04/05/2015 20:11:17','15,9', 'RA03');
execute insertartiradas('RA0342128,8417592593', '21', '04/05/2015 20:12:08','-20,9', 'RA03');
execute insertartiradas('RA0342128,8424189814', '13', '04/05/2015 20:13:05','21,6', 'RA03');
execute insertartiradas('RA0342128,8429861111', '12', '04/05/2015 20:13:54','-18,5', 'RA03');
execute insertartiradas('RA0342128,8436111111', '17', '04/05/2015 20:14:48','18,2', 'RA03');
execute insertartiradas('RA0342128,8443634259', '28', '04/05/2015 20:15:53','-19,4', 'RA03');
execute insertartiradas('RA0342128,8452893519', '31', '04/05/2015 20:17:13','17,2', 'RA03');
execute insertartiradas('RA0342128,8462268518', '6', '04/05/2015 20:18:34','-18,7', 'RA03');
execute insertartiradas('RA0342128,847337963', '30', '04/05/2015 20:20:10','18,8', 'RA03');
execute insertartiradas('RA0342128,8482986111', '33', '04/05/2015 20:21:33','-17,4', 'RA03');
execute insertartiradas('RA0342128,8494560185', '12', '04/05/2015 20:23:13','18,6', 'RA03');
execute insertartiradas('RA0342128,8509027778', '21', '04/05/2015 20:25:18','-16,7', 'RA03');
execute insertartiradas('RA0342128,8524537037', '7', '04/05/2015 20:27:32','17,9', 'RA03');
execute insertartiradas('RA0342128,8537615741', '7', '04/05/2015 20:29:25','-26,7', 'RA03');
execute insertartiradas('RA0342128,8540856481', '20', '04/05/2015 20:29:53','16,9', 'RA03');
execute insertartiradas('RA0342128,8555555556', '26', '04/05/2015 20:32:00','-20', 'RA03');
execute insertartiradas('RA0342128,8570949074', '2', '04/05/2015 20:34:13','15,6', 'RA03');
execute insertartiradas('RA0342128,8590509259', '10', '04/05/2015 20:37:02','-17,5', 'RA03');
execute insertartiradas('RA0342128,860775463', '25', '04/05/2015 20:39:31','18,2', 'RA03');
execute insertartiradas('RA0342128,8618287037', '3', '04/05/2015 20:41:02','-20,8', 'RA03');
execute insertartiradas('RA0342128,8631828704', '25', '04/05/2015 20:42:59','15', 'RA03');
execute insertartiradas('RA0342128,8651273148', '27', '04/05/2015 20:45:47','-19,3', 'RA03');
execute insertartiradas('RA0342128,8663657407', '11', '04/05/2015 20:47:34','15,8', 'RA03');
execute insertartiradas('RA0342128,8678935185', '28', '04/05/2015 20:49:46','-19,8', 'RA03');
execute insertartiradas('RA0342128,8698842593', '15', '04/05/2015 20:52:38','16,8', 'RA03');
execute insertartiradas('RA0342128,8715625', '1', '04/05/2015 20:55:03','-18,7', 'RA03');
execute insertartiradas('RA0342128,8724537037', '23', '04/05/2015 20:56:20','13,9', 'RA03');
execute insertartiradas('RA0342128,8736805556', '20', '04/05/2015 20:58:06','-17,8', 'RA03');
execute insertartiradas('RA0342128,8745138889', '1', '04/05/2015 20:59:18','15,4', 'RA03');
execute insertartiradas('RA0342128,8752662037', '2', '04/05/2015 21:00:23','-17,5', 'RA03');
execute insertartiradas('RA0342128,8759722222', '29', '04/05/2015 21:01:24','18,7', 'RA03');
execute insertartiradas('RA0342128,8765856481', '9', '04/05/2015 21:02:17','-14,9', 'RA03');
execute insertartiradas('RA0342128,877650463', '33', '04/05/2015 21:03:49','14,6', 'RA03');
execute insertartiradas('RA0342128,8783912037', '24', '04/05/2015 21:04:53','-14,6', 'RA03');
execute insertartiradas('RA0342128,8797916667', '32', '04/05/2015 21:06:54','18,6', 'RA03');
execute insertartiradas('RA0342128,8808564815', '36', '04/05/2015 21:08:26','-16,5', 'RA03');
execute insertartiradas('RA0342128,8816319444', '10', '04/05/2015 21:09:33','15,1', 'RA03');
execute insertartiradas('RA0342128,8827546296', '0', '04/05/2015 21:11:10','-13,1', 'RA03');
execute insertartiradas('RA0342128,8839699074', '32', '04/05/2015 21:12:55','15,2', 'RA03');
execute insertartiradas('RA0342128,8849421296', '36', '04/05/2015 21:14:19','-18,5', 'RA03');
execute insertartiradas('RA0342128,8857523148', '0', '04/05/2015 21:15:29','15', 'RA03');
execute insertartiradas('RA0342128,8865509259', '15', '04/05/2015 21:16:38','-16,5', 'RA03');
execute insertartiradas('RA0342128,8873958333', '25', '04/05/2015 21:17:51','14,5', 'RA03');
execute insertartiradas('RA0342128,8884259259', '35', '04/05/2015 21:19:20','-14,5', 'RA03');
execute insertartiradas('RA0342128,8897337963', '19', '04/05/2015 21:21:13','16,2', 'RA03');
execute insertartiradas('RA0342128,8910069444', '29', '04/05/2015 21:23:03','-13', 'RA03');
execute insertartiradas('RA0342128,8930439815', '18', '04/05/2015 21:25:59','19,5', 'RA03');
execute insertartiradas('RA0342128,8943402778', '6', '04/05/2015 21:27:51','-16,9', 'RA03');
execute insertartiradas('RA0342128,8957986111', '29', '04/05/2015 21:29:57','17,7', 'RA03');
execute insertartiradas('RA0342128,8967013889', '27', '04/05/2015 21:31:15','-16,5', 'RA03');
execute insertartiradas('RA0342128,8972916667', '1', '04/05/2015 21:32:06','13', 'RA03');
execute insertartiradas('RA0342128,8980555556', '14', '04/05/2015 21:33:12','-15,6', 'RA03');
execute insertartiradas('RA0342128,8994675925', '2', '04/05/2015 21:35:14','14', 'RA03');
execute insertartiradas('RA0342128,9000462963', '9', '04/05/2015 21:36:04','-16,2', 'RA03');
execute insertartiradas('RA0342128,9008217593', '23', '04/05/2015 21:37:11','16,2', 'RA03');
execute insertartiradas('RA0342128,9016203704', '11', '04/05/2015 21:38:20','-15,4', 'RA03');
execute insertartiradas('RA0342128,9022916667', '15', '04/05/2015 21:39:18','15,9', 'RA03');
execute insertartiradas('RA0342128,9029050926', '33', '04/05/2015 21:40:11','-18', 'RA03');
execute insertartiradas('RA0342128,9036226852', '3', '04/05/2015 21:41:13','16,1', 'RA03');
execute insertartiradas('RA0342128,9043402778', '36', '04/05/2015 21:42:15','-14,1', 'RA03');
execute insertartiradas('RA0342128,9049652778', '21', '04/05/2015 21:43:09','12,8', 'RA03');
execute insertartiradas('RA0342128,9054861111', '33', '04/05/2015 21:43:54','-16,7', 'RA03');
execute insertartiradas('RA0342128,9064930556', '33', '04/05/2015 21:45:21','15,3', 'RA03');
execute insertartiradas('RA0342128,9071064815', '5', '04/05/2015 21:46:14','-16,8', 'RA03');
execute insertartiradas('RA0342128,9077893519', '10', '04/05/2015 21:47:13','19,2', 'RA03');
execute insertartiradas('RA0342128,9084722222', '28', '04/05/2015 21:48:12','-12,5', 'RA03');
execute insertartiradas('RA0342128,9089583333', '17', '04/05/2015 21:48:54','14,9', 'RA03');
execute insertartiradas('RA0342128,909537037', '3', '04/05/2015 21:49:44','-18', 'RA03');
execute insertartiradas('RA0342128,9099421296', '2', '04/05/2015 21:50:19','16,7', 'RA03');
execute insertartiradas('RA0342128,910462963', '8', '04/05/2015 21:51:04','-17,4', 'RA03');
execute insertartiradas('RA0342128,9108333333', '10', '04/05/2015 21:51:36','18', 'RA03');
execute insertartiradas('RA0342128,91125', '27', '04/05/2015 21:52:12','-15,1', 'RA03');
execute insertartiradas('RA0342128,9118402778', '24', '04/05/2015 21:53:03','16,1', 'RA03');
execute insertartiradas('RA0342128,912349537', '17', '04/05/2015 21:53:47','-16,9', 'RA03');
execute insertartiradas('RA0342128,9133101852', '10', '04/05/2015 21:55:10','17,1', 'RA03');
execute insertartiradas('RA0342128,9138310185', '10', '04/05/2015 21:55:55','-15,8', 'RA03');
execute insertartiradas('RA0342128,9143402778', '4', '04/05/2015 21:56:39','20,2', 'RA03');
execute insertartiradas('RA0342128,9147800926', '7', '04/05/2015 21:57:17','-16,4', 'RA03');
execute insertartiradas('RA0342128,9154166667', '31', '04/05/2015 21:58:12','19,6', 'RA03');
execute insertartiradas('RA0342128,9158796296', '21', '04/05/2015 21:58:52','-17,7', 'RA03');
execute insertartiradas('RA0342128,9163425926', '30', '04/05/2015 21:59:32','17,4', 'RA03');
execute insertartiradas('RA0342128,9168171296', '28', '04/05/2015 22:00:13','-14,7', 'RA03');
execute insertartiradas('RA0342128,9175694444', '34', '04/05/2015 22:01:18','16,3', 'RA03');
execute insertartiradas('RA0342128,917974537', '8', '04/05/2015 22:01:53','-17,7', 'RA03');
execute insertartiradas('RA0342128,9184027778', '29', '04/05/2015 22:02:30','16,1', 'RA03');
execute insertartiradas('RA0342128,9191319444', '21', '04/05/2015 22:03:33','-19', 'RA03');
execute insertartiradas('RA0342128,9196643519', '36', '04/05/2015 22:04:19','16,3', 'RA03');
execute insertartiradas('RA0342128,9200462963', '31', '04/05/2015 22:04:52','-19,7', 'RA03');
execute insertartiradas('RA0342128,9204513889', '21', '04/05/2015 22:05:27','17,8', 'RA03');
execute insertartiradas('RA0342128,9210532407', '16', '04/05/2015 22:06:19','-19,7', 'RA03');
execute insertartiradas('RA0342128,9215277778', '9', '04/05/2015 22:07:00','19,1', 'RA03');
execute insertartiradas('RA0342128,921875', '5', '04/05/2015 22:07:30','-18,4', 'RA03');
execute insertartiradas('RA0342128,9222569444', '25', '04/05/2015 22:08:03','19,4', 'RA03');
execute insertartiradas('RA0342128,9227546296', '17', '04/05/2015 22:08:46','-18,3', 'RA03');
execute insertartiradas('RA0342128,9231597222', '35', '04/05/2015 22:09:21','18,9', 'RA03');
execute insertartiradas('RA0342128,923587963', '3', '04/05/2015 22:09:58','-16,6', 'RA03');
execute insertartiradas('RA0342128,9240162037', '28', '04/05/2015 22:10:35','17,9', 'RA03');
execute insertartiradas('RA0342128,9247222222', '4', '04/05/2015 22:11:36','-18,6', 'RA03');
execute insertartiradas('RA0342128,9252199074', '36', '04/05/2015 22:12:19','17,1', 'RA03');
execute insertartiradas('RA0342128,9263541667', '16', '04/05/2015 22:13:57','-20', 'RA03');
execute insertartiradas('RA0342128,9268865741', '31', '04/05/2015 22:14:43','17,4', 'RA03');
execute insertartiradas('RA0342128,9280555556', '3', '04/05/2015 22:16:24','-16,3', 'RA03');
execute insertartiradas('RA0342128,9291435185', '16', '04/05/2015 22:17:58','16,7', 'RA03');
execute insertartiradas('RA0342128,9298032407', '2', '04/05/2015 22:18:55','-18,5', 'RA03');
execute insertartiradas('RA0342128,9303472222', '4', '04/05/2015 22:19:42','14', 'RA03');
execute insertartiradas('RA0342128,9314351852', '19', '04/05/2015 22:21:16','-17,6', 'RA03');
execute insertartiradas('RA0342128,9319791667', '18', '04/05/2015 22:22:03','17,2', 'RA03');
execute insertartiradas('RA0342128,9324305556', '32', '04/05/2015 22:22:42','-16,9', 'RA03');
execute insertartiradas('RA0342128,9332523148', '16', '04/05/2015 22:23:53','15,7', 'RA03');
execute insertartiradas('RA0342128,9336921296', '35', '04/05/2015 22:24:31','-15,4', 'RA03');
execute insertartiradas('RA0342128,934212963', '25', '04/05/2015 22:25:16','15,4', 'RA03');
execute insertartiradas('RA0342128,9345833333', '11', '04/05/2015 22:25:48','-12,2', 'RA03');
execute insertartiradas('RA0342128,9357407407', '12', '04/05/2015 22:27:28','19,2', 'RA03');
execute insertartiradas('RA0342128,9363310185', '25', '04/05/2015 22:28:19','-14,8', 'RA03');
execute insertartiradas('RA0342128,9367592593', '7', '04/05/2015 22:28:56','18,4', 'RA03');
execute insertartiradas('RA0342128,9374305556', '15', '04/05/2015 22:29:54','-14,2', 'RA03');
execute insertartiradas('RA0342128,9381365741', '0', '04/05/2015 22:30:55','18,7', 'RA03');
execute insertartiradas('RA0342128,9386689815', '7', '04/05/2015 22:31:41','-15,2', 'RA03');
execute insertartiradas('RA0342128,9391782407', '25', '04/05/2015 22:32:25','18,9', 'RA03');
execute insertartiradas('RA0342128,9395833333', '16', '04/05/2015 22:33:00','-15,2', 'RA03');
execute insertartiradas('RA0342128,9400578704', '30', '04/05/2015 22:33:41','19,6', 'RA03');
execute insertartiradas('RA0342128,940462963', '24', '04/05/2015 22:34:16','-15,6', 'RA03');
execute insertartiradas('RA0342128,9409953704', '16', '04/05/2015 22:35:02','16,9', 'RA03');
execute insertartiradas('RA0342128,9414930556', '16', '04/05/2015 22:35:45','-20,4', 'RA03');
execute insertartiradas('RA0342128,9420486111', '2', '04/05/2015 22:36:33','19,6', 'RA03');
execute insertartiradas('RA0342128,9425231482', '2', '04/05/2015 22:37:14','-15,9', 'RA03');
execute insertartiradas('RA0342128,9431597222', '2', '04/05/2015 22:38:09','20,6', 'RA03');
execute insertartiradas('RA0342128,9436458333', '16', '04/05/2015 22:38:51','-17,5', 'RA03');
execute insertartiradas('RA0342128,9440856481', '16', '04/05/2015 22:39:29','19,6', 'RA03');
execute insertartiradas('RA0342128,9447569444', '28', '04/05/2015 22:40:27','-26,3', 'RA03');
execute insertartiradas('RA0342128,9450810185', '30', '04/05/2015 22:40:55','16', 'RA03');
execute insertartiradas('RA0342128,9457523148', '5', '04/05/2015 22:41:53','-16,8', 'RA03');
execute insertartiradas('RA0342128,9467939815', '13', '04/05/2015 22:43:23','17,6', 'RA03');
execute insertartiradas('RA0342128,9475', '3', '04/05/2015 22:44:24','-20,9', 'RA03');
execute insertartiradas('RA0342128,9482523148', '21', '04/05/2015 22:45:29','16,8', 'RA03');
execute insertartiradas('RA0342128,9494212963', '32', '04/05/2015 22:47:10','-24', 'RA03');
execute insertartiradas('RA0342128,9502777778', '19', '04/05/2015 22:48:24','19', 'RA03');
execute insertartiradas('RA0342128,9508333333', '2', '04/05/2015 22:49:12','-23,9', 'RA03');
execute insertartiradas('RA0342128,9513425926', '0', '04/05/2015 22:49:56','18,7', 'RA03');
execute insertartiradas('RA0342128,9520486111', '11', '04/05/2015 22:50:57','-23,4', 'RA03');
execute insertartiradas('RA0342128,9525925926', '25', '04/05/2015 22:51:44','18,7', 'RA03');
execute insertartiradas('RA0342128,9530902778', '4', '04/05/2015 22:52:27','-20,5', 'RA03');
execute insertartiradas('RA0342128,9541782407', '20', '04/05/2015 22:54:01','18,4', 'RA03');
execute insertartiradas('RA0342128,9551851851', '21', '04/05/2015 22:55:28','-18', 'RA03');
execute insertartiradas('RA0342128,9561921296', '4', '04/05/2015 22:56:55','22,4', 'RA03');
execute insertartiradas('RA0342128,9567592593', '4', '04/05/2015 22:57:44','-24,8', 'RA03');
execute insertartiradas('RA0342128,9574768519', '23', '04/05/2015 22:58:46','18,3', 'RA03');
execute insertartiradas('RA0342128,957962963', '2', '04/05/2015 22:59:28','-20,5', 'RA03');
execute insertartiradas('RA0342128,9587962963', '29', '04/05/2015 23:00:40','17,1', 'RA03');
execute insertartiradas('RA0342128,9594560185', '25', '04/05/2015 23:01:37','-15,2', 'RA03');
execute insertartiradas('RA0342128,9600694444', '1', '04/05/2015 23:02:30','16,2', 'RA03');
execute insertartiradas('RA0342128,9607638889', '35', '04/05/2015 23:03:30','-14,2', 'RA03');
execute insertartiradas('RA0342128,9614583333', '24', '04/05/2015 23:04:30','14,3', 'RA03');
execute insertartiradas('RA0342128,961875', '2', '04/05/2015 23:05:06','-14,7', 'RA03');
execute insertartiradas('RA0342128,9624305556', '28', '04/05/2015 23:05:54','17', 'RA03');
execute insertartiradas('RA0342128,9629282407', '8', '04/05/2015 23:06:37','-14,3', 'RA03');
execute insertartiradas('RA0342128,9634837963', '0', '04/05/2015 23:07:25','18,9', 'RA03');
execute insertartiradas('RA0342128,9646990741', '17', '04/05/2015 23:09:10','-14,9', 'RA03');
execute insertartiradas('RA0342128,9654282407', '35', '04/05/2015 23:10:13','20,8', 'RA03');
execute insertartiradas('RA0342128,9659953704', '15', '04/05/2015 23:11:02','-16,3', 'RA03');
execute insertartiradas('RA0342128,966875', '2', '04/05/2015 23:12:18','19,8', 'RA03');
execute insertartiradas('RA0342128,9677430556', '31', '04/05/2015 23:13:33','-17', 'RA03');
execute insertartiradas('RA0342128,9684837963', '15', '04/05/2015 23:14:37','17,9', 'RA03');
execute insertartiradas('RA0342128,9693865741', '30', '04/05/2015 23:15:55','-18,7', 'RA03');
execute insertartiradas('RA0342128,9705092593', '20', '04/05/2015 23:17:32','18,8', 'RA03');
execute insertartiradas('RA0342128,971400463', '12', '04/05/2015 23:18:49','-22', 'RA03');
execute insertartiradas('RA0342128,9722685185', '6', '04/05/2015 23:20:04','17', 'RA03');
execute insertartiradas('RA0342128,9742013888', '1', '04/05/2015 23:22:51','-14,6', 'RA03');
execute insertartiradas('RA0342128,975150463', '3', '04/05/2015 23:24:13','13,5', 'RA03');
execute insertartiradas('RA0342128,9762152778', '20', '04/05/2015 23:25:45','-14,1', 'RA03');
execute insertartiradas('RA0342128,9768518519', '22', '04/05/2015 23:26:40','14', 'RA03');
execute insertartiradas('RA0342128,9788425926', '27', '04/05/2015 23:29:32','-17,7', 'RA03');
execute insertartiradas('RA0342128,9793055556', '17', '04/05/2015 23:30:12','15,3', 'RA03');
execute insertartiradas('RA0342128,9799189815', '16', '04/05/2015 23:31:05','-14', 'RA03');
execute insertartiradas('RA0342128,9805787037', '26', '04/05/2015 23:32:02','15,8', 'RA03');
execute insertartiradas('RA0342128,9811226852', '34', '04/05/2015 23:32:49','-13,9', 'RA03');
execute insertartiradas('RA0342128,9816898148', '12', '04/05/2015 23:33:38','14,2', 'RA03');
execute insertartiradas('RA0342128,9822569444', '29', '04/05/2015 23:34:27','-15,3', 'RA03');
execute insertartiradas('RA0342128,9827083333', '10', '04/05/2015 23:35:06','14,4', 'RA03');
execute insertartiradas('RA0342128,9831597222', '36', '04/05/2015 23:35:45','-14,4', 'RA03');
execute insertartiradas('RA0342128,9836574074', '3', '04/05/2015 23:36:28','14,7', 'RA03');
execute insertartiradas('RA0342128,9841550926', '19', '04/05/2015 23:37:11','-13,8', 'RA03');
execute insertartiradas('RA0342128,9846990741', '15', '04/05/2015 23:37:58','15,7', 'RA03');
execute insertartiradas('RA0342128,9851388889', '20', '04/05/2015 23:38:36','-17,4', 'RA03');
execute insertartiradas('RA0342128,9856134259', '20', '04/05/2015 23:39:17','16,2', 'RA03');
execute insertartiradas('RA0342128,9861805556', '4', '04/05/2015 23:40:06','-15,2', 'RA03');
execute insertartiradas('RA0342128,9867708333', '5', '04/05/2015 23:40:57','15,5', 'RA03');
execute insertartiradas('RA0342128,9876736111', '20', '04/05/2015 23:42:15','-15,1', 'RA03');
execute insertartiradas('RA0342128,9884837963', '24', '04/05/2015 23:43:25','12,4', 'RA03');
execute insertartiradas('RA0342128,9889930556', '27', '04/05/2015 23:44:09','-15', 'RA03');
execute insertartiradas('RA0342128,9896296296', '25', '04/05/2015 23:45:04','13,8', 'RA03');
execute insertartiradas('RA0342128,9902662037', '18', '04/05/2015 23:45:59','-14,1', 'RA03');
execute insertartiradas('RA0342128,9908449074', '19', '04/05/2015 23:46:49','14,3', 'RA03');
execute insertartiradas('RA0342128,9914467593', '33', '04/05/2015 23:47:41','-14,8', 'RA03');
execute insertartiradas('RA0342128,992337963', '28', '04/05/2015 23:48:58','14,5', 'RA03');
execute insertartiradas('RA0342128,9931134259', '27', '04/05/2015 23:50:05','-14,3', 'RA03');
execute insertartiradas('RA0342128,9939814815', '7', '04/05/2015 23:51:20','13,4', 'RA03');
execute insertartiradas('RA0342128,9945023148', '33', '04/05/2015 23:52:05','-14,1', 'RA03');
execute insertartiradas('RA0342128,995', '24', '04/05/2015 23:52:48','13,9', 'RA03');
execute insertartiradas('RA0342128,9955902778', '23', '04/05/2015 23:53:39','-14,8', 'RA03');
execute insertartiradas('RA0342128,9961458333', '4', '04/05/2015 23:54:27','13,8', 'RA03');
execute insertartiradas('RA0342128,9966666667', '32', '04/05/2015 23:55:12','-15,1', 'RA03');
execute insertartiradas('RA0342128,9971296296', '27', '04/05/2015 23:55:52','11,9', 'RA03');
execute insertartiradas('RA0342128,9975925926', '20', '04/05/2015 23:56:32','-14,3', 'RA03');
execute insertartiradas('RA0342128,9981134259', '21', '04/05/2015 23:57:17','13,8', 'RA03');
execute insertartiradas('RA0342128,998599537', '17', '04/05/2015 23:57:59','-15,4', 'RA03');
execute insertartiradas('RA0342128,9991666667', '0', '04/05/2015 23:58:48','12,7', 'RA03');
execute insertartiradas('RA0342128,9995138889', '36', '04/05/2015 23:59:18','-13,8', 'RA03');
execute insertartiradas('RA0342128,9999305556', '34', '04/05/2015 23:59:54','14,1', 'RA03');
execute insertartiradas('RA0342129,000625', '24', '05/05/2015 00:00:54','-16,2', 'RA03');
execute insertartiradas('RA0342129,001099537', '4', '05/05/2015 00:01:35','13,7', 'RA03');
execute insertartiradas('RA0342129,0028009259', '18', '05/05/2015 00:04:02','-13,7', 'RA03');
execute insertartiradas('RA0342129,003275463', '34', '05/05/2015 00:04:43','16,4', 'RA03');
execute insertartiradas('RA0342129,0046643519', '19', '05/05/2015 00:06:43','-14,2', 'RA03');
execute insertartiradas('RA0342129,005162037', '5', '05/05/2015 00:07:26','14,9', 'RA03');
execute insertartiradas('RA0342129,0100347222', '10', '05/05/2015 00:14:27','-13,5', 'RA03');
execute insertartiradas('RA0342129,010625', '11', '05/05/2015 00:15:18','15,3', 'RA03');
execute insertartiradas('RA0342129,0113888889', '26', '05/05/2015 00:16:24','-14,8', 'RA03');
execute insertartiradas('RA0342129,0119791667', '36', '05/05/2015 00:17:15','14,3', 'RA03');
execute insertartiradas('RA0342129,012650463', '6', '05/05/2015 00:18:13','-14,7', 'RA03');
execute insertartiradas('RA0342129,0131365741', '3', '05/05/2015 00:18:55','14,8', 'RA03');
execute insertartiradas('RA0342129,0153587963', '0', '05/05/2015 00:22:07','-14', 'RA03');
execute insertartiradas('RA0342129,0159837963', '16', '05/05/2015 00:23:01','15,2', 'RA03');
execute insertartiradas('RA0342129,0166203704', '10', '05/05/2015 00:23:56','-13', 'RA03');
execute insertartiradas('RA0342129,0474421296', '25', '05/05/2015 01:08:19','18', 'RA03');
execute insertartiradas('RA0342129,0513888889', '25', '05/05/2015 01:14:00','-20,7', 'RA03');
execute insertartiradas('RA0342129,0517708333', '14', '05/05/2015 01:14:33','17,1', 'RA03');
execute insertartiradas('RA0342129,0522453704', '29', '05/05/2015 01:15:14','-21', 'RA03');
execute insertartiradas('RA0342129,052662037', '29', '05/05/2015 01:15:50','17,6', 'RA03');
execute insertartiradas('RA0342129,0531134259', '8', '05/05/2015 01:16:29','-19,4', 'RA03');
execute insertartiradas('RA0342129,0534606481', '9', '05/05/2015 01:16:59','17,2', 'RA03');
execute insertartiradas('RA0342129,0538078704', '10', '05/05/2015 01:17:29','-19,1', 'RA03');
execute insertartiradas('RA0342129,0541203704', '27', '05/05/2015 01:17:56','20', 'RA03');
execute insertartiradas('RA0342129,0544560185', '27', '05/05/2015 01:18:25','-19,4', 'RA03');
execute insertartiradas('RA0342129,0547916667', '18', '05/05/2015 01:18:54','19,4', 'RA03');
execute insertartiradas('RA0342129,0552662037', '12', '05/05/2015 01:19:35','-19,3', 'RA03');
execute insertartiradas('RA0342129,0555787037', '35', '05/05/2015 01:20:02','15,5', 'RA03');
execute insertartiradas('RA0342129,0559143519', '13', '05/05/2015 01:20:31','-19', 'RA03');
execute insertartiradas('RA0342129,0563541667', '33', '05/05/2015 01:21:09','18,7', 'RA03');
execute insertartiradas('RA0342129,0567708333', '29', '05/05/2015 01:21:45','-19,2', 'RA03');
execute insertartiradas('RA0342129,057025463', '12', '05/05/2015 01:22:07','18', 'RA03');
execute insertartiradas('RA0342129,0572916667', '34', '05/05/2015 01:22:30','-19,6', 'RA03');
execute insertartiradas('RA0342129,0578356481', '14', '05/05/2015 01:23:17','18', 'RA03');
execute insertartiradas('RA0342129,058287037', '3', '05/05/2015 01:23:56','-16,9', 'RA03');
execute insertartiradas('RA0342129,0587615741', '11', '05/05/2015 01:24:37','16', 'RA03');
execute insertartiradas('RA0342129,0591319444', '30', '05/05/2015 01:25:09','-18,5', 'RA03');
execute insertartiradas('RA0342129,0594560185', '25', '05/05/2015 01:25:37','17,9', 'RA03');
execute insertartiradas('RA0342129,0601273148', '30', '05/05/2015 01:26:35','-21,9', 'RA03');
execute insertartiradas('RA0342129,0604513889', '25', '05/05/2015 01:27:03','16,5', 'RA03');
execute insertartiradas('RA0342129,0630208333', '0', '05/05/2015 01:30:45','-21,2', 'RA03');
execute insertartiradas('RA0342129,71125', '21', '05/05/2015 17:04:12','16,5', 'RA03');
execute insertartiradas('RA0342129,7125115741', '8', '05/05/2015 17:06:01','-15,1', 'RA03');
execute insertartiradas('RA0342129,7133217593', '9', '05/05/2015 17:07:11','16,4', 'RA03');
execute insertartiradas('RA0342129,7140046296', '15', '05/05/2015 17:08:10','-15,2', 'RA03');
execute insertartiradas('RA0342129,7147800926', '11', '05/05/2015 17:09:17','15,8', 'RA03');
execute insertartiradas('RA0342129,7154282407', '17', '05/05/2015 17:10:13','-16,9', 'RA03');
execute insertartiradas('RA0342129,7165625', '34', '05/05/2015 17:11:51','22,2', 'RA03');
execute insertartiradas('RA0342129,7169907407', '28', '05/05/2015 17:12:28','-18,8', 'RA03');
execute insertartiradas('RA0342129,7175347222', '0', '05/05/2015 17:13:15','16', 'RA03');
execute insertartiradas('RA0342129,7180092593', '30', '05/05/2015 17:13:56','-19,6', 'RA03');
execute insertartiradas('RA0342129,7184375', '11', '05/05/2015 17:14:33','16,6', 'RA03');
execute insertartiradas('RA0342129,7189699074', '32', '05/05/2015 17:15:19','-20,7', 'RA03');
execute insertartiradas('RA0342129,7194097222', '36', '05/05/2015 17:15:57','18', 'RA03');
execute insertartiradas('RA0342129,719849537', '23', '05/05/2015 17:16:35','-17,2', 'RA03');
execute insertartiradas('RA0342129,7202662037', '30', '05/05/2015 17:17:11','15,8', 'RA03');
execute insertartiradas('RA0342129,7210185185', '22', '05/05/2015 17:18:16','-16,6', 'RA03');
execute insertartiradas('RA0342129,7215509259', '15', '05/05/2015 17:19:02','17,5', 'RA03');
execute insertartiradas('RA0342129,7223263889', '16', '05/05/2015 17:20:09','-19', 'RA03');
execute insertartiradas('RA0342129,7227314815', '30', '05/05/2015 17:20:44','18,4', 'RA03');
execute insertartiradas('RA0342129,7233680556', '26', '05/05/2015 17:21:39','-16,2', 'RA03');
execute insertartiradas('RA0342129,7240509259', '35', '05/05/2015 17:22:38','14,3', 'RA03');
execute insertartiradas('RA0342129,7247222222', '4', '05/05/2015 17:23:36','-20', 'RA03');
execute insertartiradas('RA0342129,7252430556', '32', '05/05/2015 17:24:21','15,7', 'RA03');
execute insertartiradas('RA0342129,7257523148', '15', '05/05/2015 17:25:05','-17,4', 'RA03');
execute insertartiradas('RA0342129,7262152778', '6', '05/05/2015 17:25:45','16,9', 'RA03');
execute insertartiradas('RA0342129,7269675926', '30', '05/05/2015 17:26:50','-17,1', 'RA03');
execute insertartiradas('RA0342129,7276736111', '0', '05/05/2015 17:27:51','19,7', 'RA03');
execute insertartiradas('RA0342129,7284953704', '16', '05/05/2015 17:29:02','-15,3', 'RA03');
execute insertartiradas('RA0342129,7289814815', '4', '05/05/2015 17:29:44','19,1', 'RA03');
execute insertartiradas('RA0342129,7294791667', '24', '05/05/2015 17:30:27','-19,5', 'RA03');
execute insertartiradas('RA0342129,7302430556', '16', '05/05/2015 17:31:33','18,4', 'RA03');
execute insertartiradas('RA0342129,7309722222', '26', '05/05/2015 17:32:36','-17,1', 'RA03');
execute insertartiradas('RA0342129,7319328704', '24', '05/05/2015 17:33:59','17,5', 'RA03');
execute insertartiradas('RA0342129,7324537037', '16', '05/05/2015 17:34:44','-13,6', 'RA03');
execute insertartiradas('RA0342129,7332291667', '27', '05/05/2015 17:35:51','15,9', 'RA03');
execute insertartiradas('RA0342129,7340277778', '26', '05/05/2015 17:37:00','-18,8', 'RA03');
execute insertartiradas('RA0342129,7348032407', '26', '05/05/2015 17:38:07','15,5', 'RA03');
execute insertartiradas('RA0342129,7357060185', '2', '05/05/2015 17:39:25','-15,4', 'RA03');
execute insertartiradas('RA0342129,7369328704', '19', '05/05/2015 17:41:11','21,4', 'RA03');
execute insertartiradas('RA0342129,7378587963', '10', '05/05/2015 17:42:31','-18,2', 'RA03');
execute insertartiradas('RA0342129,738587963', '23', '05/05/2015 17:43:34','19,2', 'RA03');
execute insertartiradas('RA0342129,7393865741', '20', '05/05/2015 17:44:43','-22', 'RA03');
execute insertartiradas('RA0342129,7404050926', '23', '05/05/2015 17:46:11','20,1', 'RA03');
execute insertartiradas('RA0342129,7411342593', '16', '05/05/2015 17:47:14','-10,7', 'RA03');
execute insertartiradas('RA0342129,7421990741', '16', '05/05/2015 17:48:46','21,6', 'RA03');
execute insertartiradas('RA0342129,743275463', '36', '05/05/2015 17:50:19','-22', 'RA03');
execute insertartiradas('RA0342129,7438194444', '7', '05/05/2015 17:51:06','21,5', 'RA03');
execute insertartiradas('RA0342129,7444675926', '4', '05/05/2015 17:52:02','-19,8', 'RA03');
execute insertartiradas('RA0342129,7456481481', '24', '05/05/2015 17:53:44','16,4', 'RA03');
execute insertartiradas('RA0342129,7468287037', '16', '05/05/2015 17:55:26','-18,6', 'RA03');
execute insertartiradas('RA0342129,7482523148', '10', '05/05/2015 17:57:29','22,5', 'RA03');
execute insertartiradas('RA0342129,749224537', '29', '05/05/2015 17:58:53','-19,1', 'RA03');
execute insertartiradas('RA0342129,7501388889', '29', '05/05/2015 18:00:12','22,5', 'RA03');
execute insertartiradas('RA0342129,7516550926', '12', '05/05/2015 18:02:23','-20,2', 'RA03');
execute insertartiradas('RA0342129,7525', '30', '05/05/2015 18:03:36','20,2', 'RA03');
execute insertartiradas('RA0342129,7534027778', '23', '05/05/2015 18:04:54','-21', 'RA03');
execute insertartiradas('RA0342129,7545138889', '3', '05/05/2015 18:06:30','21,1', 'RA03');
execute insertartiradas('RA0342129,755162037', '12', '05/05/2015 18:07:26','-21,7', 'RA03');
execute insertartiradas('RA0342129,75625', '21', '05/05/2015 18:09:00','19,4', 'RA03');
execute insertartiradas('RA0342129,756724537', '4', '05/05/2015 18:09:41','-20,9', 'RA03');
execute insertartiradas('RA0342129,7573263889', '11', '05/05/2015 18:10:33','19,1', 'RA03');
execute insertartiradas('RA0342129,7582407407', '23', '05/05/2015 18:11:52','-19,4', 'RA03');
execute insertartiradas('RA0342129,7593865741', '6', '05/05/2015 18:13:31','21', 'RA03');
execute insertartiradas('RA0342129,7603935185', '21', '05/05/2015 18:14:58','-21,5', 'RA03');
execute insertartiradas('RA0342129,7612268518', '21', '05/05/2015 18:16:10','21,2', 'RA03');
execute insertartiradas('RA0342129,7618634259', '35', '05/05/2015 18:17:05','-21,1', 'RA03');
execute insertartiradas('RA0342129,7625462963', '26', '05/05/2015 18:18:04','20,7', 'RA03');
execute insertartiradas('RA0342129,7632291667', '26', '05/05/2015 18:19:03','-21,6', 'RA03');
execute insertartiradas('RA0342129,7641435185', '32', '05/05/2015 18:20:22','23,5', 'RA03');
execute insertartiradas('RA0342129,7657175926', '18', '05/05/2015 18:22:38','-20,2', 'RA03');
execute insertartiradas('RA0342129,7669444444', '13', '05/05/2015 18:24:24','15,6', 'RA03');
execute insertartiradas('RA0342129,7676273148', '3', '05/05/2015 18:25:23','-19,5', 'RA03');
execute insertartiradas('RA0342129,7687037037', '29', '05/05/2015 18:26:56','16,7', 'RA03');
execute insertartiradas('RA0342129,7701736111', '1', '05/05/2015 18:29:03','-18,7', 'RA03');
execute insertartiradas('RA0342129,7709143519', '10', '05/05/2015 18:30:07','15,3', 'RA03');
execute insertartiradas('RA0342129,7716203704', '27', '05/05/2015 18:31:08','-20,6', 'RA03');
execute insertartiradas('RA0342129,7723842593', '33', '05/05/2015 18:32:14','16,1', 'RA03');
execute insertartiradas('RA0342129,7734143519', '7', '05/05/2015 18:33:43','-17,8', 'RA03');
execute insertartiradas('RA0342129,7745601852', '12', '05/05/2015 18:35:22','12,9', 'RA03');
execute insertartiradas('RA0342129,7757986111', '14', '05/05/2015 18:37:09','-18', 'RA03');
execute insertartiradas('RA0342129,7764930556', '31', '05/05/2015 18:38:09','15,4', 'RA03');
execute insertartiradas('RA0342129,7778125', '10', '05/05/2015 18:40:03','-18,2', 'RA03');
execute insertartiradas('RA0342129,7787152778', '34', '05/05/2015 18:41:21','16,5', 'RA03');
execute insertartiradas('RA0342129,7796759259', '20', '05/05/2015 18:42:44','-17,5', 'RA03');
execute insertartiradas('RA0342129,7806134259', '19', '05/05/2015 18:44:05','16,6', 'RA03');
execute insertartiradas('RA0342129,7815625', '18', '05/05/2015 18:45:27','-18,3', 'RA03');
execute insertartiradas('RA0342129,7824884259', '16', '05/05/2015 18:46:47','16,7', 'RA03');
execute insertartiradas('RA0342129,7838194444', '18', '05/05/2015 18:48:42','-20,2', 'RA03');
execute insertartiradas('RA0342129,7852777778', '2', '05/05/2015 18:50:48','17,5', 'RA03');
execute insertartiradas('RA0342129,7863888889', '22', '05/05/2015 18:52:24','-18', 'RA03');
execute insertartiradas('RA0342129,7876736111', '31', '05/05/2015 18:54:15','18', 'RA03');
execute insertartiradas('RA0342129,7883912037', '28', '05/05/2015 18:55:17','-18,9', 'RA03');
execute insertartiradas('RA0342129,7892708333', '19', '05/05/2015 18:56:33','17,5', 'RA03');
execute insertartiradas('RA0342129,7904166667', '29', '05/05/2015 18:58:12','-19,6', 'RA03');
execute insertartiradas('RA0342129,791712963', '33', '05/05/2015 19:00:04','17,6', 'RA03');
execute insertartiradas('RA0342129,7925578704', '7', '05/05/2015 19:01:17','-16,8', 'RA03');
execute insertartiradas('RA0342129,7935069444', '22', '05/05/2015 19:02:39','14,7', 'RA03');
execute insertartiradas('RA0342129,7946064815', '31', '05/05/2015 19:04:14','-13', 'RA03');
execute insertartiradas('RA0342129,7958912037', '30', '05/05/2015 19:06:05','15,1', 'RA03');
execute insertartiradas('RA0342129,7968171296', '29', '05/05/2015 19:07:25','-18,1', 'RA03');
execute insertartiradas('RA0342129,7975347222', '34', '05/05/2015 19:08:27','13,7', 'RA03');
execute insertartiradas('RA0342129,7983796296', '28', '05/05/2015 19:09:40','-13,7', 'RA03');
execute insertartiradas('RA0342129,7992939815', '30', '05/05/2015 19:10:59','13,7', 'RA03');
execute insertartiradas('RA0342129,7998842593', '34', '05/05/2015 19:11:50','-16,2', 'RA03');
execute insertartiradas('RA0342129,8009027778', '32', '05/05/2015 19:13:18','16,7', 'RA03');
execute insertartiradas('RA0342129,8025231482', '34', '05/05/2015 19:15:38','-16,8', 'RA03');
execute insertartiradas('RA0342129,8037037037', '15', '05/05/2015 19:17:20','14,4', 'RA03');
execute insertartiradas('RA0342129,8050115741', '36', '05/05/2015 19:19:13','-17,6', 'RA03');
execute insertartiradas('RA0342129,8058217593', '26', '05/05/2015 19:20:23','14,8', 'RA03');
execute insertartiradas('RA0342129,8066319444', '21', '05/05/2015 19:21:33','-14,7', 'RA03');
execute insertartiradas('RA0342129,8072685185', '17', '05/05/2015 19:22:28','13,7', 'RA03');
execute insertartiradas('RA0342129,8082291667', '30', '05/05/2015 19:23:51','-17,5', 'RA03');
execute insertartiradas('RA0342129,8092939815', '23', '05/05/2015 19:25:23','13,4', 'RA03');
execute insertartiradas('RA0342129,8105092593', '18', '05/05/2015 19:27:08','-15', 'RA03');
execute insertartiradas('RA0342129,8122106481', '33', '05/05/2015 19:29:35','14,8', 'RA03');
execute insertartiradas('RA0342129,8128703704', '26', '05/05/2015 19:30:32','-16,5', 'RA03');
execute insertartiradas('RA0342129,8138078704', '18', '05/05/2015 19:31:53','16,3', 'RA03');
execute insertartiradas('RA0342129,8143171296', '14', '05/05/2015 19:32:37','-15,9', 'RA03');
execute insertartiradas('RA0342129,815', '34', '05/05/2015 19:33:36','12,9', 'RA03');
execute insertartiradas('RA0342129,8158449074', '6', '05/05/2015 19:34:49','-14,7', 'RA03');
execute insertartiradas('RA0342129,816724537', '5', '05/05/2015 19:36:05','13,7', 'RA03');
execute insertartiradas('RA0342129,8175115741', '17', '05/05/2015 19:37:13','-14,9', 'RA03');
execute insertartiradas('RA0342129,8185300926', '18', '05/05/2015 19:38:41','13,6', 'RA03');
execute insertartiradas('RA0342129,8198958333', '29', '05/05/2015 19:40:39','-14,1', 'RA03');
execute insertartiradas('RA0342129,8215393519', '27', '05/05/2015 19:43:01','16,2', 'RA03');
execute insertartiradas('RA0342129,8223611111', '21', '05/05/2015 19:44:12','-18,7', 'RA03');
execute insertartiradas('RA0342129,8231597222', '8', '05/05/2015 19:45:21','14,2', 'RA03');
execute insertartiradas('RA0342129,8241203704', '22', '05/05/2015 19:46:44','-18,1', 'RA03');
execute insertartiradas('RA0342129,8250115741', '6', '05/05/2015 19:48:01','14', 'RA03');
execute insertartiradas('RA0342129,8257175926', '33', '05/05/2015 19:49:02','-16,8', 'RA03');
execute insertartiradas('RA0342129,8266550926', '13', '05/05/2015 19:50:23','15,4', 'RA03');
execute insertartiradas('RA0342129,8275231481', '20', '05/05/2015 19:51:38','-16,9', 'RA03');
execute insertartiradas('RA0342129,8282407407', '16', '05/05/2015 19:52:40','16,4', 'RA03');
execute insertartiradas('RA0342129,828912037', '1', '05/05/2015 19:53:38','-16', 'RA03');
execute insertartiradas('RA0342129,829525463', '36', '05/05/2015 19:54:31','15,3', 'RA03');
execute insertartiradas('RA0342129,8302893518', '27', '05/05/2015 19:55:37','-18,2', 'RA03');
execute insertartiradas('RA0342129,8310300926', '12', '05/05/2015 19:56:41','15,8', 'RA03');
execute insertartiradas('RA0342129,8315972222', '1', '05/05/2015 19:57:30','-20,3', 'RA03');
execute insertartiradas('RA0342129,8326273148', '24', '05/05/2015 19:58:59','15,1', 'RA03');
execute insertartiradas('RA0342129,8333912037', '24', '05/05/2015 20:00:05','-17,5', 'RA03');
execute insertartiradas('RA0342129,8344212963', '12', '05/05/2015 20:01:34','18,2', 'RA03');
execute insertartiradas('RA0342129,835162037', '27', '05/05/2015 20:02:38','-16,3', 'RA03');
execute insertartiradas('RA0342129,8357291667', '19', '05/05/2015 20:03:27','16,9', 'RA03');
execute insertartiradas('RA0342129,8366666666', '9', '05/05/2015 20:04:48','-15,7', 'RA03');
execute insertartiradas('RA0342129,8377777778', '34', '05/05/2015 20:06:24','15,9', 'RA03');
execute insertartiradas('RA0342129,8391898148', '13', '05/05/2015 20:08:26','-15,3', 'RA03');
execute insertartiradas('RA0342129,8398032407', '7', '05/05/2015 20:09:19','16,2', 'RA03');
execute insertartiradas('RA0342129,8409722222', '14', '05/05/2015 20:11:00','-16,9', 'RA03');
execute insertartiradas('RA0342129,8421180556', '29', '05/05/2015 20:12:39','17,1', 'RA03');
execute insertartiradas('RA0342129,8434027778', '5', '05/05/2015 20:14:30','-16,1', 'RA03');
execute insertartiradas('RA0342129,8443518519', '30', '05/05/2015 20:15:52','16,3', 'RA03');
execute insertartiradas('RA0342129,8455671296', '9', '05/05/2015 20:17:37','-18,9', 'RA03');
execute insertartiradas('RA0342129,8462731481', '3', '05/05/2015 20:18:38','15,6', 'RA03');
execute insertartiradas('RA0342129,8470601852', '1', '05/05/2015 20:19:46','-16,4', 'RA03');
execute insertartiradas('RA0342129,8476388889', '20', '05/05/2015 20:20:36','16,4', 'RA03');
execute insertartiradas('RA0342129,8484953704', '0', '05/05/2015 20:21:50','-23', 'RA03');
execute insertartiradas('RA0342129,8496527778', '36', '05/05/2015 20:23:30','15,2', 'RA03');
execute insertartiradas('RA0342129,8508796296', '31', '05/05/2015 20:25:16','-23,8', 'RA03');
execute insertartiradas('RA0342129,8521990741', '9', '05/05/2015 20:27:10','17,3', 'RA03');
execute insertartiradas('RA0342129,8529398148', '23', '05/05/2015 20:28:14','-19,1', 'RA03');
execute insertartiradas('RA0342129,85375', '1', '05/05/2015 20:29:24','16,5', 'RA03');
execute insertartiradas('RA0342129,8544675926', '28', '05/05/2015 20:30:26','-21,4', 'RA03');
execute insertartiradas('RA0342129,8556712963', '15', '05/05/2015 20:32:10','22,1', 'RA03');
execute insertartiradas('RA0342129,8573611111', '15', '05/05/2015 20:34:36','-22,7', 'RA03');
execute insertartiradas('RA0342129,8592708333', '4', '05/05/2015 20:37:21','10,8', 'RA03');
execute insertartiradas('RA0342129,8610185185', '15', '05/05/2015 20:39:52','-24,7', 'RA03');
execute insertartiradas('RA0342129,8628819444', '6', '05/05/2015 20:42:33','17,4', 'RA03');
execute insertartiradas('RA0342129,863599537', '36', '05/05/2015 20:43:35','-16,7', 'RA03');
execute insertartiradas('RA0342129,8644212963', '33', '05/05/2015 20:44:46','16,7', 'RA03');
execute insertartiradas('RA0342129,8653703704', '2', '05/05/2015 20:46:08','-18,9', 'RA03');
execute insertartiradas('RA0342129,8661342593', '1', '05/05/2015 20:47:14','16,3', 'RA03');
execute insertartiradas('RA0342129,8674189815', '35', '05/05/2015 20:49:05','-18,2', 'RA03');
execute insertartiradas('RA0342129,8680902778', '2', '05/05/2015 20:50:03','15,9', 'RA03');
execute insertartiradas('RA0342129,8687268519', '24', '05/05/2015 20:50:58','-17,6', 'RA03');
execute insertartiradas('RA0342129,8697916667', '26', '05/05/2015 20:52:30','15,7', 'RA03');
execute insertartiradas('RA0342129,8704861111', '1', '05/05/2015 20:53:30','-18,5', 'RA03');
execute insertartiradas('RA0342129,87125', '3', '05/05/2015 20:54:36','15,9', 'RA03');
execute insertartiradas('RA0342129,8724305556', '22', '05/05/2015 20:56:18','-18,3', 'RA03');
execute insertartiradas('RA0342129,873125', '25', '05/05/2015 20:57:18','16', 'RA03');
execute insertartiradas('RA0342129,8737037037', '9', '05/05/2015 20:58:08','-20,3', 'RA03');
execute insertartiradas('RA0342129,8746064815', '36', '05/05/2015 20:59:26','16,6', 'RA03');
execute insertartiradas('RA0342129,8754513889', '34', '05/05/2015 21:00:39','-18,3', 'RA03');
execute insertartiradas('RA0342129,8763194444', '28', '05/05/2015 21:01:54','17,1', 'RA03');
execute insertartiradas('RA0342129,8767939815', '23', '05/05/2015 21:02:35','-18', 'RA03');
execute insertartiradas('RA0342129,8772685185', '27', '05/05/2015 21:03:16','15,9', 'RA03');
execute insertartiradas('RA0342129,8776157407', '14', '05/05/2015 21:03:46','-19,7', 'RA03');
execute insertartiradas('RA0342129,8782638889', '34', '05/05/2015 21:04:42','16,5', 'RA03');
execute insertartiradas('RA0342129,8788541667', '29', '05/05/2015 21:05:33','-18,1', 'RA03');
execute insertartiradas('RA0342129,8809490741', '5', '05/05/2015 21:08:34','18,2', 'RA03');
execute insertartiradas('RA0342129,8819907407', '12', '05/05/2015 21:10:04','-18,1', 'RA03');
execute insertartiradas('RA0342129,8829513889', '14', '05/05/2015 21:11:27','16,3', 'RA03');
execute insertartiradas('RA0342129,88375', '26', '05/05/2015 21:12:36','-19,4', 'RA03');
execute insertartiradas('RA0342129,8852199074', '25', '05/05/2015 21:14:43','17,8', 'RA03');
execute insertartiradas('RA0342129,8869907407', '20', '05/05/2015 21:17:16','-19,1', 'RA03');
execute insertartiradas('RA0342129,8881134259', '25', '05/05/2015 21:18:53','18,5', 'RA03');
execute insertartiradas('RA0342129,8904976852', '16', '05/05/2015 21:22:19','-16,4', 'RA03');
execute insertartiradas('RA0342129,8909143519', '30', '05/05/2015 21:22:55','15,7', 'RA03');
execute insertartiradas('RA0342129,8922453704', '23', '05/05/2015 21:24:50','-17,8', 'RA03');
execute insertartiradas('RA0342129,8931712963', '8', '05/05/2015 21:26:10','15,2', 'RA03');
execute insertartiradas('RA0342129,8938888889', '19', '05/05/2015 21:27:12','-17,7', 'RA03');
execute insertartiradas('RA0342129,8945138889', '5', '05/05/2015 21:28:06','18', 'RA03');
execute insertartiradas('RA0342129,8952777778', '35', '05/05/2015 21:29:12','-16,2', 'RA03');
execute insertartiradas('RA0342129,8983333333', '35', '05/05/2015 21:33:36','16,8', 'RA03');
execute insertartiradas('RA0342129,8993634259', '36', '05/05/2015 21:35:05','-16,9', 'RA03');
execute insertartiradas('RA0342129,9004976851', '8', '05/05/2015 21:36:43','14,8', 'RA03');
execute insertartiradas('RA0342129,9013078704', '14', '05/05/2015 21:37:53','-17,5', 'RA03');
execute insertartiradas('RA0342129,9018518518', '6', '05/05/2015 21:38:40','16,3', 'RA03');
execute insertartiradas('RA0342129,9023958333', '29', '05/05/2015 21:39:27','-15,6', 'RA03');
execute insertartiradas('RA0342129,9030208333', '5', '05/05/2015 21:40:21','17', 'RA03');
execute insertartiradas('RA0342129,9035416667', '5', '05/05/2015 21:41:06','-17,2', 'RA03');
execute insertartiradas('RA0342129,903900463', '8', '05/05/2015 21:41:37','15,6', 'RA03');
execute insertartiradas('RA0342129,9043287037', '1', '05/05/2015 21:42:14','-18,3', 'RA03');
execute insertartiradas('RA0342129,9048842593', '20', '05/05/2015 21:43:02','18,9', 'RA03');
execute insertartiradas('RA0342129,9052199074', '13', '05/05/2015 21:43:31','-15,9', 'RA03');
execute insertartiradas('RA0342129,9058101852', '14', '05/05/2015 21:44:22','15,5', 'RA03');
execute insertartiradas('RA0342129,9062037037', '35', '05/05/2015 21:44:56','-17,7', 'RA03');
execute insertartiradas('RA0342129,9071064815', '32', '05/05/2015 21:46:14','17,9', 'RA03');
execute insertartiradas('RA0342129,9078009259', '29', '05/05/2015 21:47:14','-15,5', 'RA03');
execute insertartiradas('RA0342129,9085763889', '21', '05/05/2015 21:48:21','14,7', 'RA03');
execute insertartiradas('RA0342129,9093518518', '29', '05/05/2015 21:49:28','-19,6', 'RA03');
execute insertartiradas('RA0342129,9102777778', '2', '05/05/2015 21:50:48','20,2', 'RA03');
execute insertartiradas('RA0342129,9115393519', '16', '05/05/2015 21:52:37','-19,6', 'RA03');
execute insertartiradas('RA0342129,912650463', '6', '05/05/2015 21:54:13','20,8', 'RA03');
execute insertartiradas('RA0342129,9134953704', '1', '05/05/2015 21:55:26','-20,5', 'RA03');
execute insertartiradas('RA0342129,9144444444', '10', '05/05/2015 21:56:48','21,4', 'RA03');
execute insertartiradas('RA0342129,9155787037', '6', '05/05/2015 21:58:26','-22,2', 'RA03');
execute insertartiradas('RA0342129,9163310185', '23', '05/05/2015 21:59:31','9,8', 'RA03');
execute insertartiradas('RA0342129,9172453704', '31', '05/05/2015 22:00:50','-19,7', 'RA03');
execute insertartiradas('RA0342129,918275463', '8', '05/05/2015 22:02:19','16,6', 'RA03');
execute insertartiradas('RA0342129,91875', '30', '05/05/2015 22:03:00','-16,1', 'RA03');
execute insertartiradas('RA0342129,9192708333', '2', '05/05/2015 22:03:45','14,4', 'RA03');
execute insertartiradas('RA0342129,9197916667', '14', '05/05/2015 22:04:30','-14,7', 'RA03');
execute insertartiradas('RA0342129,9202662037', '19', '05/05/2015 22:05:11','13,8', 'RA03');
execute insertartiradas('RA0342129,9262962962', '30', '05/05/2015 22:13:52','-14,6', 'RA03');
execute insertartiradas('RA0342129,9277546296', '19', '05/05/2015 22:15:58','13,9', 'RA03');
execute insertartiradas('RA0342129,9284953704', '22', '05/05/2015 22:17:02','-14,6', 'RA03');
execute insertartiradas('RA0342129,9290740741', '13', '05/05/2015 22:17:52','14,5', 'RA03');
execute insertartiradas('RA0342129,9296527778', '24', '05/05/2015 22:18:42','-14,4', 'RA03');
execute insertartiradas('RA0342129,9302199074', '1', '05/05/2015 22:19:31','13,3', 'RA03');
execute insertartiradas('RA0342129,930775463', '26', '05/05/2015 22:20:19','-13,9', 'RA03');
execute insertartiradas('RA0342129,9313310185', '4', '05/05/2015 22:21:07','12,8', 'RA03');
execute insertartiradas('RA0342129,9318634259', '24', '05/05/2015 22:21:53','-13,5', 'RA03');
execute insertartiradas('RA0342129,9324652778', '7', '05/05/2015 22:22:45','13,4', 'RA03');
execute insertartiradas('RA0342129,9333101852', '22', '05/05/2015 22:23:58','-13,3', 'RA03');
execute insertartiradas('RA0342129,9340509259', '28', '05/05/2015 22:25:02','12,9', 'RA03');
execute insertartiradas('RA0342129,9348032407', '6', '05/05/2015 22:26:07','-13,8', 'RA03');
execute insertartiradas('RA0342129,9355208333', '14', '05/05/2015 22:27:09','13,3', 'RA03');
execute insertartiradas('RA0342129,9362037037', '10', '05/05/2015 22:28:08','-13', 'RA03');
execute insertartiradas('RA0342129,9369444444', '33', '05/05/2015 22:29:12','12,7', 'RA03');
execute insertartiradas('RA0342129,9377430556', '29', '05/05/2015 22:30:21','-17,2', 'RA03');
execute insertartiradas('RA0342129,938587963', '25', '05/05/2015 22:31:34','12,8', 'RA03');
execute insertartiradas('RA0342129,9393171296', '4', '05/05/2015 22:32:37','-12,4', 'RA03');
execute insertartiradas('RA0342129,9400347222', '1', '05/05/2015 22:33:39','12,5', 'RA03');
execute insertartiradas('RA0342129,9406828704', '26', '05/05/2015 22:34:35','-12,8', 'RA03');
execute insertartiradas('RA0342129,9413773148', '22', '05/05/2015 22:35:35','12,8', 'RA03');
execute insertartiradas('RA0342129,9419212962', '16', '05/05/2015 22:36:22','-12,7', 'RA03');
execute insertartiradas('RA0342129,9424884259', '9', '05/05/2015 22:37:11','12,1', 'RA03');
execute insertartiradas('RA0342129,9429861111', '4', '05/05/2015 22:37:54','-12,9', 'RA03');
execute insertartiradas('RA0342129,9434837963', '6', '05/05/2015 22:38:37','13,3', 'RA03');
execute insertartiradas('RA0342129,9441087963', '2', '05/05/2015 22:39:31','-12,3', 'RA03');
execute insertartiradas('RA0342129,9448842593', '8', '05/05/2015 22:40:38','12', 'RA03');
execute insertartiradas('RA0342129,9458217593', '25', '05/05/2015 22:41:59','-22,3', 'RA03');
execute insertartiradas('RA0342129,946724537', '13', '05/05/2015 22:43:17','16,4', 'RA03');
execute insertartiradas('RA0342129,947974537', '17', '05/05/2015 22:45:05','-21,7', 'RA03');
execute insertartiradas('RA0342129,9487384259', '18', '05/05/2015 22:46:11','19,6', 'RA03');
execute insertartiradas('RA0342129,9497685185', '30', '05/05/2015 22:47:40','-21,6', 'RA03');
execute insertartiradas('RA0342129,9504861111', '28', '05/05/2015 22:48:42','17,5', 'RA03');
execute insertartiradas('RA0342129,9515740741', '18', '05/05/2015 22:50:16','-21,3', 'RA03');
execute insertartiradas('RA0342129,9523958333', '18', '05/05/2015 22:51:27','19', 'RA03');
execute insertartiradas('RA0342129,953275463', '35', '05/05/2015 22:52:43','-20,5', 'RA03');
execute insertartiradas('RA0342129,9542476852', '13', '05/05/2015 22:54:07','18', 'RA03');
execute insertartiradas('RA0342129,9548726852', '0', '05/05/2015 22:55:01','-22,6', 'RA03');
execute insertartiradas('RA0342129,9556018518', '34', '05/05/2015 22:56:04','18,7', 'RA03');
execute insertartiradas('RA0342129,9562268518', '22', '05/05/2015 22:56:58','-20,2', 'RA03');
execute insertartiradas('RA0342129,9567592593', '15', '05/05/2015 22:57:44','17', 'RA03');
execute insertartiradas('RA0342129,9572800926', '2', '05/05/2015 22:58:29','-21,2', 'RA03');
execute insertartiradas('RA0342129,9577430556', '15', '05/05/2015 22:59:09','18,1', 'RA03');
execute insertartiradas('RA0342129,9584953704', '16', '05/05/2015 23:00:14','-17,7', 'RA03');
execute insertartiradas('RA0342129,9589930556', '21', '05/05/2015 23:00:57','16,7', 'RA03');
execute insertartiradas('RA0342129,959537037', '7', '05/05/2015 23:01:44','-18,9', 'RA03');
execute insertartiradas('RA0342129,9602199074', '21', '05/05/2015 23:02:43','17,7', 'RA03');
execute insertartiradas('RA0342129,9607407407', '2', '05/05/2015 23:03:28','-19,2', 'RA03');
execute insertartiradas('RA0342129,9616087963', '22', '05/05/2015 23:04:43','17,6', 'RA03');
execute insertartiradas('RA0342129,9626736111', '29', '05/05/2015 23:06:15','-19,4', 'RA03');
execute insertartiradas('RA0342129,9641319444', '9', '05/05/2015 23:08:21','17,8', 'RA03');
execute insertartiradas('RA0342129,9652546296', '17', '05/05/2015 23:09:58','-19,7', 'RA03');
execute insertartiradas('RA0342129,9667476852', '24', '05/05/2015 23:12:07','18,2', 'RA03');
execute insertartiradas('RA0342129,9677546296', '23', '05/05/2015 23:13:34','-21,5', 'RA03');
execute insertartiradas('RA0342129,9689236111', '35', '05/05/2015 23:15:15','18', 'RA03');
execute insertartiradas('RA0342129,9700578704', '25', '05/05/2015 23:16:53','-20,9', 'RA03');
execute insertartiradas('RA0342129,9710185185', '32', '05/05/2015 23:18:16','18,2', 'RA03');
execute insertartiradas('RA0342129,9717592593', '18', '05/05/2015 23:19:20','-21,1', 'RA03');
execute insertartiradas('RA0342129,9730902778', '10', '05/05/2015 23:21:15','18,4', 'RA03');
execute insertartiradas('RA0342129,974212963', '24', '05/05/2015 23:22:52','-18,3', 'RA03');
execute insertartiradas('RA0342129,9755324074', '0', '05/05/2015 23:24:46','16,7', 'RA03');
execute insertartiradas('RA0342129,9766435185', '4', '05/05/2015 23:26:22','-17,7', 'RA03');
execute insertartiradas('RA0342129,9773958333', '23', '05/05/2015 23:27:27','19,7', 'RA03');
execute insertartiradas('RA0342129,9784490741', '31', '05/05/2015 23:28:58','-18', 'RA03');
execute insertartiradas('RA0342129,9796643518', '3', '05/05/2015 23:30:43','15,6', 'RA03');
execute insertartiradas('RA0342129,9807523148', '36', '05/05/2015 23:32:17','-19,8', 'RA03');
execute insertartiradas('RA0342129,9816435185', '16', '05/05/2015 23:33:34','15,3', 'RA03');
execute insertartiradas('RA0342129,9822916667', '26', '05/05/2015 23:34:30','-20,1', 'RA03');
execute insertartiradas('RA0342129,9830671296', '13', '05/05/2015 23:35:37','14,4', 'RA03');
execute insertartiradas('RA0342129,985625', '36', '05/05/2015 23:39:18','-17,5', 'RA03');
execute insertartiradas('RA0342129,9881828704', '16', '05/05/2015 23:42:59','14,2', 'RA03');
execute insertartiradas('RA0342129,9887962962', '25', '05/05/2015 23:43:52','-14,6', 'RA03');
execute insertartiradas('RA0342129,9895023148', '28', '05/05/2015 23:44:53','15,8', 'RA03');
execute insertartiradas('RA0342129,9904282407', '17', '05/05/2015 23:46:13','-15,2', 'RA03');
execute insertartiradas('RA0342129,9909837963', '15', '05/05/2015 23:47:01','16,7', 'RA03');
execute insertartiradas('RA0342129,9914351852', '4', '05/05/2015 23:47:40','-16,7', 'RA03');
execute insertartiradas('RA0342129,9919560185', '0', '05/05/2015 23:48:25','14,3', 'RA03');
execute insertartiradas('RA0342129,9924189815', '1', '05/05/2015 23:49:05','-13,1', 'RA03');
execute insertartiradas('RA0342129,9928587963', '27', '05/05/2015 23:49:43','13,4', 'RA03');
execute insertartiradas('RA0342129,9969212963', '19', '05/05/2015 23:55:34','-14', 'RA03');
execute insertartiradas('RA0342129,9973611111', '27', '05/05/2015 23:56:12','11,6', 'RA03');
execute insertartiradas('RA0342129,9977430556', '5', '05/05/2015 23:56:45','-11,7', 'RA03');
execute insertartiradas('RA0342129,9981481481', '1', '05/05/2015 23:57:20','12,8', 'RA03');
execute insertartiradas('RA0342129,9985763889', '4', '05/05/2015 23:57:57','-10,2', 'RA03');
execute insertartiradas('RA0342129,9990509259', '3', '05/05/2015 23:58:38','11,8', 'RA03');
execute insertartiradas('RA0342129,9998032407', '17', '05/05/2015 23:59:43','-12,2', 'RA03');
execute insertartiradas('RA0342130,0016203704', '25', '06/05/2015 00:02:20','13,7', 'RA03');
execute insertartiradas('RA0342130,0027430556', '18', '06/05/2015 00:03:57','-11,1', 'RA03');
execute insertartiradas('RA0342130,0037268518', '24', '06/05/2015 00:05:22','11,4', 'RA03');
execute insertartiradas('RA0342130,0046759259', '34', '06/05/2015 00:06:44','-11,4', 'RA03');
execute insertartiradas('RA0342130,0056018519', '25', '06/05/2015 00:08:04','11,7', 'RA03');
execute insertartiradas('RA0342130,0061226852', '5', '06/05/2015 00:08:49','-11,9', 'RA03');
execute insertartiradas('RA0342130,0068171296', '2', '06/05/2015 00:09:49','12,4', 'RA03');
execute insertartiradas('RA0342130,0072685185', '25', '06/05/2015 00:10:28','-11,1', 'RA03');
execute insertartiradas('RA0342130,007974537', '23', '06/05/2015 00:11:29','11,6', 'RA03');
execute insertartiradas('RA0342130,0084722222', '6', '06/05/2015 00:12:12','-12,9', 'RA03');
execute insertartiradas('RA0342130,0091087963', '17', '06/05/2015 00:13:07','13,1', 'RA03');
execute insertartiradas('RA0342130,0097222222', '24', '06/05/2015 00:14:00','-11,4', 'RA03');
execute insertartiradas('RA0342130,0103240741', '29', '06/05/2015 00:14:52','9,9', 'RA03');
execute insertartiradas('RA0342130,0109953704', '24', '06/05/2015 00:15:50','-10,9', 'RA03');
execute insertartiradas('RA0342130,0116666667', '25', '06/05/2015 00:16:48','10,1', 'RA03');
execute insertartiradas('RA0342130,0122106482', '1', '06/05/2015 00:17:35','-9,9', 'RA03');
execute insertartiradas('RA0342130,0126041667', '17', '06/05/2015 00:18:09','11,9', 'RA03');
execute insertartiradas('RA0342130,0130092593', '2', '06/05/2015 00:18:44','-11,3', 'RA03');
execute insertartiradas('RA0342130,0134722222', '29', '06/05/2015 00:19:24','11,6', 'RA03');
execute insertartiradas('RA0342130,0140046296', '34', '06/05/2015 00:20:10','-11,3', 'RA03');
execute insertartiradas('RA0342130,0144675926', '29', '06/05/2015 00:20:50','11,7', 'RA03');
execute insertartiradas('RA0342130,0152199074', '22', '06/05/2015 00:21:55','-11,2', 'RA03');
execute insertartiradas('RA0342130,0161111111', '36', '06/05/2015 00:23:12','10,6', 'RA03');
execute insertartiradas('RA0342130,0170023148', '34', '06/05/2015 00:24:29','-10,1', 'RA03');
execute insertartiradas('RA0342130,0174189815', '15', '06/05/2015 00:25:05','11,6', 'RA03');
execute insertartiradas('RA0342130,0206365741', '12', '06/05/2015 00:29:43','-11,4', 'RA03');
execute insertartiradas('RA0342130,0241319444', '34', '06/05/2015 00:34:45','11,9', 'RA03');
execute insertartiradas('RA0342130,0247106481', '4', '06/05/2015 00:35:35','-11,9', 'RA03');
execute insertartiradas('RA0342130,0253356481', '7', '06/05/2015 00:36:29','11,7', 'RA03');
execute insertartiradas('RA0342130,0260416667', '22', '06/05/2015 00:37:30','-14,2', 'RA03');
execute insertartiradas('RA0342130,0267476852', '8', '06/05/2015 00:38:31','11,7', 'RA03');
execute insertartiradas('RA0342130,0274074074', '21', '06/05/2015 00:39:28','-14,8', 'RA03');
execute insertartiradas('RA0342130,0280092593', '5', '06/05/2015 00:40:20','20,8', 'RA03');
execute insertartiradas('RA0342130,0287384259', '14', '06/05/2015 00:41:23','-17,8', 'RA03');
execute insertartiradas('RA0342130,0294444444', '36', '06/05/2015 00:42:24','19,2', 'RA03');
execute insertartiradas('RA0342130,030162037', '26', '06/05/2015 00:43:26','-20,6', 'RA03');
execute insertartiradas('RA0342130,0307175926', '7', '06/05/2015 00:44:14','17,2', 'RA03');
execute insertartiradas('RA0342130,0315856481', '2', '06/05/2015 00:45:29','-15,3', 'RA03');
execute insertartiradas('RA0342130,0321527778', '15', '06/05/2015 00:46:18','18', 'RA03');
execute insertartiradas('RA0342130,0328819444', '7', '06/05/2015 00:47:21','-13,5', 'RA03');
execute insertartiradas('RA0342130,0337384259', '6', '06/05/2015 00:48:35','9', 'RA03');
execute insertartiradas('RA0342130,0341782407', '6', '06/05/2015 00:49:13','-14,7', 'RA03');
execute insertartiradas('RA0342130,0347106481', '1', '06/05/2015 00:49:59','16,9', 'RA03');
execute insertartiradas('RA0342130,0395023148', '16', '06/05/2015 00:56:53','-13,6', 'RA03');
execute insertartiradas('RA0342130,0433449074', '8', '06/05/2015 01:02:25','17,3', 'RA03');
execute insertartiradas('RA0342130,0439583333', '34', '06/05/2015 01:03:18','-16,4', 'RA03');
execute insertartiradas('RA0342130,0445949074', '19', '06/05/2015 01:04:13','13,3', 'RA03');
execute insertartiradas('RA0342130,0453703704', '21', '06/05/2015 01:05:20','-14,8', 'RA03');
execute insertartiradas('RA0342130,045787037', '16', '06/05/2015 01:05:56','15,9', 'RA03');
execute insertartiradas('RA0342130,0463657407', '14', '06/05/2015 01:06:46','-18,1', 'RA03');
execute insertartiradas('RA0342130,0470023148', '8', '06/05/2015 01:07:41','15,6', 'RA03');
execute insertartiradas('RA0342130,0474652778', '33', '06/05/2015 01:08:21','-17,3', 'RA03');
execute insertartiradas('RA0342130,0480439815', '30', '06/05/2015 01:09:11','11,8', 'RA03');
execute insertartiradas('RA0342130,0484837963', '35', '06/05/2015 01:09:49','-15,6', 'RA03');
execute insertartiradas('RA0342130,0550810185', '29', '06/05/2015 01:19:19','14,3', 'RA03');
execute insertartiradas('RA0342130,0554513889', '25', '06/05/2015 01:19:51','-18,2', 'RA03');
execute insertartiradas('RA0342130,0559722222', '13', '06/05/2015 01:20:36','10,4', 'RA03');
execute insertartiradas('RA0342130,0563194444', '28', '06/05/2015 01:21:06','-16,1', 'RA03');
execute insertartiradas('RA0342130,7229166667', '25', '06/05/2015 17:21:00','-16,2', 'RA03');
execute insertartiradas('RA0342130,7233680556', '24', '06/05/2015 17:21:39','12,7', 'RA03');
execute insertartiradas('RA0342130,7241203704', '23', '06/05/2015 17:22:44','-14,1', 'RA03');
execute insertartiradas('RA0342130,7250231481', '34', '06/05/2015 17:24:02','12,2', 'RA03');
execute insertartiradas('RA0342130,7260069444', '18', '06/05/2015 17:25:27','-15,3', 'RA03');
execute insertartiradas('RA0342130,726724537', '15', '06/05/2015 17:26:29','14,8', 'RA03');
execute insertartiradas('RA0342130,7278935185', '33', '06/05/2015 17:28:10','-12,9', 'RA03');
execute insertartiradas('RA0342130,7294791667', '6', '06/05/2015 17:30:27','12,5', 'RA03');
execute insertartiradas('RA0342130,730474537', '15', '06/05/2015 17:31:53','-15,6', 'RA03');
execute insertartiradas('RA0342130,7314467593', '30', '06/05/2015 17:33:17','14,2', 'RA03');
execute insertartiradas('RA0342130,7322685185', '33', '06/05/2015 17:34:28','-16,8', 'RA03');
execute insertartiradas('RA0342130,7335532407', '4', '06/05/2015 17:36:19','11,3', 'RA03');
execute insertartiradas('RA0342130,7344444444', '3', '06/05/2015 17:37:36','-13,9', 'RA03');
execute insertartiradas('RA0342130,735', '5', '06/05/2015 17:38:24','13,2', 'RA03');
execute insertartiradas('RA0342130,7356597222', '27', '06/05/2015 17:39:21','-14,4', 'RA03');
execute insertartiradas('RA0342130,7367476852', '31', '06/05/2015 17:40:55','13', 'RA03');
execute insertartiradas('RA0342130,737349537', '22', '06/05/2015 17:41:47','-15,9', 'RA03');
execute insertartiradas('RA0342130,7382638889', '7', '06/05/2015 17:43:06','13,6', 'RA03');
execute insertartiradas('RA0342130,7388657407', '3', '06/05/2015 17:43:58','-14,7', 'RA03');
execute insertartiradas('RA0342130,7396412037', '8', '06/05/2015 17:45:05','12,7', 'RA03');
execute insertartiradas('RA0342130,740150463', '35', '06/05/2015 17:45:49','-18', 'RA03');
execute insertartiradas('RA0342130,7410069444', '4', '06/05/2015 17:47:03','14', 'RA03');
execute insertartiradas('RA0342130,7415625', '13', '06/05/2015 17:47:51','-18,2', 'RA03');
execute insertartiradas('RA0342130,742337963', '13', '06/05/2015 17:48:58','16,3', 'RA03');
execute insertartiradas('RA0342130,7429398148', '21', '06/05/2015 17:49:50','-18,7', 'RA03');
execute insertartiradas('RA0342130,7434837963', '7', '06/05/2015 17:50:37','14,9', 'RA03');
execute insertartiradas('RA0342130,7443055556', '11', '06/05/2015 17:51:48','-15,5', 'RA03');
execute insertartiradas('RA0342130,7449421296', '7', '06/05/2015 17:52:43','16,4', 'RA03');
execute insertartiradas('RA0342130,7454513889', '1', '06/05/2015 17:53:27','-18,6', 'RA03');
execute insertartiradas('RA0342130,7459490741', '27', '06/05/2015 17:54:10','13,7', 'RA03');
execute insertartiradas('RA0342130,7464351852', '32', '06/05/2015 17:54:52','-14,6', 'RA03');
execute insertartiradas('RA0342130,7469328704', '22', '06/05/2015 17:55:35','12,7', 'RA03');
execute insertartiradas('RA0342130,7474189815', '10', '06/05/2015 17:56:17','-16,1', 'RA03');
execute insertartiradas('RA0342130,7481712963', '25', '06/05/2015 17:57:22','12,4', 'RA03');
execute insertartiradas('RA0342130,74875', '4', '06/05/2015 17:58:12','-16,3', 'RA03');
execute insertartiradas('RA0342130,7493981481', '11', '06/05/2015 17:59:08','12,4', 'RA03');
execute insertartiradas('RA0342130,750162037', '15', '06/05/2015 18:00:14','-14', 'RA03');
execute insertartiradas('RA0342130,7511458333', '35', '06/05/2015 18:01:39','13,1', 'RA03');
execute insertartiradas('RA0342130,7517361111', '22', '06/05/2015 18:02:30','-14,8', 'RA03');
execute insertartiradas('RA0342130,7525347222', '30', '06/05/2015 18:03:39','13,3', 'RA03');
execute insertartiradas('RA0342130,7533912037', '7', '06/05/2015 18:04:53','-15,3', 'RA03');
execute insertartiradas('RA0342130,7540046296', '1', '06/05/2015 18:05:46','14,7', 'RA03');
execute insertartiradas('RA0342130,7545949074', '9', '06/05/2015 18:06:37','-13,9', 'RA03');
execute insertartiradas('RA0342130,7555092593', '20', '06/05/2015 18:07:56','13', 'RA03');
execute insertartiradas('RA0342130,7563194444', '25', '06/05/2015 18:09:06','-13,1', 'RA03');
execute insertartiradas('RA0342130,7573263889', '11', '06/05/2015 18:10:33','15', 'RA03');
execute insertartiradas('RA0342130,7584375', '13', '06/05/2015 18:12:09','-15,7', 'RA03');
execute insertartiradas('RA0342130,7594328704', '25', '06/05/2015 18:13:35','13,6', 'RA03');
execute insertartiradas('RA0342130,7600694444', '16', '06/05/2015 18:14:30','-12,7', 'RA03');
execute insertartiradas('RA0342130,7606018518', '12', '06/05/2015 18:15:16','12,8', 'RA03');
execute insertartiradas('RA0342130,7610763889', '11', '06/05/2015 18:15:57','-15,2', 'RA03');
execute insertartiradas('RA0342130,7619560185', '11', '06/05/2015 18:17:13','16', 'RA03');
execute insertartiradas('RA0342130,7628703704', '12', '06/05/2015 18:18:32','-14,7', 'RA03');
execute insertartiradas('RA0342130,7637152778', '34', '06/05/2015 18:19:45','12,7', 'RA03');
execute insertartiradas('RA0342130,7646527778', '30', '06/05/2015 18:21:06','-18,3', 'RA03');
execute insertartiradas('RA0342130,7661226852', '1', '06/05/2015 18:23:13','25,2', 'RA03');
execute insertartiradas('RA0342130,7672106481', '33', '06/05/2015 18:24:47','-19,8', 'RA03');
execute insertartiradas('RA0342130,7681944444', '2', '06/05/2015 18:26:12','23,9', 'RA03');
execute insertartiradas('RA0342130,7694675926', '8', '06/05/2015 18:28:02','-20', 'RA03');
execute insertartiradas('RA0342130,7706712963', '33', '06/05/2015 18:29:46','17,9', 'RA03');
execute insertartiradas('RA0342130,7716666667', '35', '06/05/2015 18:31:12','-25,7', 'RA03');
execute insertartiradas('RA0342130,7726967593', '2', '06/05/2015 18:32:41','21,4', 'RA03');
execute insertartiradas('RA0342130,773912037', '33', '06/05/2015 18:34:26','-19,4', 'RA03');
execute insertartiradas('RA0342130,7746990741', '14', '06/05/2015 18:35:34','22,9', 'RA03');
execute insertartiradas('RA0342130,7755671296', '6', '06/05/2015 18:36:49','-19,7', 'RA03');
execute insertartiradas('RA0342130,7765509259', '24', '06/05/2015 18:38:14','16,3', 'RA03');
execute insertartiradas('RA0342130,7770949074', '34', '06/05/2015 18:39:01','-19,7', 'RA03');
execute insertartiradas('RA0342130,7781134259', '6', '06/05/2015 18:40:29','23,6', 'RA03');
execute insertartiradas('RA0342130,7789699074', '13', '06/05/2015 18:41:43','-20,3', 'RA03');
execute insertartiradas('RA0342130,7798842593', '6', '06/05/2015 18:43:02','23,2', 'RA03');
execute insertartiradas('RA0342130,7807523148', '19', '06/05/2015 18:44:17','-16,7', 'RA03');
execute insertartiradas('RA0342130,7816435185', '3', '06/05/2015 18:45:34','21', 'RA03');
execute insertartiradas('RA0342130,7824652778', '31', '06/05/2015 18:46:45','-20,1', 'RA03');
execute insertartiradas('RA0342130,7832986111', '24', '06/05/2015 18:47:57','20', 'RA03');
execute insertartiradas('RA0342130,7840856481', '4', '06/05/2015 18:49:05','-19,9', 'RA03');
execute insertartiradas('RA0342130,8114467593', '29', '06/05/2015 19:28:29','11,8', 'RA03');
execute insertartiradas('RA0342130,8119444444', '14', '06/05/2015 19:29:12','-22,9', 'RA03');
execute insertartiradas('RA0342130,8125231481', '9', '06/05/2015 19:30:02','13,4', 'RA03');
execute insertartiradas('RA0342130,8133101852', '26', '06/05/2015 19:31:10','-22,8', 'RA03');
execute insertartiradas('RA0342130,8141666667', '19', '06/05/2015 19:32:24','18,1', 'RA03');
execute insertartiradas('RA0342130,8151388889', '6', '06/05/2015 19:33:48','-21,9', 'RA03');
execute insertartiradas('RA0342130,8163657407', '27', '06/05/2015 19:35:34','21,4', 'RA03');
execute insertartiradas('RA0342130,8175115741', '9', '06/05/2015 19:37:13','-18,6', 'RA03');
execute insertartiradas('RA0342130,8187615741', '5', '06/05/2015 19:39:01','21', 'RA03');
execute insertartiradas('RA0342130,8197800926', '29', '06/05/2015 19:40:29','-16,6', 'RA03');
execute insertartiradas('RA0342130,8211226852', '11', '06/05/2015 19:42:25','17,8', 'RA03');
execute insertartiradas('RA0342130,8221643519', '30', '06/05/2015 19:43:55','-15', 'RA03');
execute insertartiradas('RA0342130,8228240741', '33', '06/05/2015 19:44:52','13,6', 'RA03');
execute insertartiradas('RA0342130,8235185185', '21', '06/05/2015 19:45:52','-11,8', 'RA03');
execute insertartiradas('RA0342130,8242708333', '7', '06/05/2015 19:46:57','14,6', 'RA03');
execute insertartiradas('RA0342130,8247685185', '31', '06/05/2015 19:47:40','-12,6', 'RA03');
execute insertartiradas('RA0342130,825474537', '5', '06/05/2015 19:48:41','12,3', 'RA03');
execute insertartiradas('RA0342130,8261111111', '3', '06/05/2015 19:49:36','-16,8', 'RA03');
execute insertartiradas('RA0342130,8271759259', '0', '06/05/2015 19:51:08','11,6', 'RA03');
execute insertartiradas('RA0342130,8277430556', '2', '06/05/2015 19:51:57','-15,2', 'RA03');
execute insertartiradas('RA0342130,8283796296', '10', '06/05/2015 19:52:52','13,3', 'RA03');
execute insertartiradas('RA0342130,8292939815', '9', '06/05/2015 19:54:11','-14,4', 'RA03');
execute insertartiradas('RA0342130,8299189815', '3', '06/05/2015 19:55:05','11,5', 'RA03');
execute insertartiradas('RA0342130,8306944444', '8', '06/05/2015 19:56:12','-15,9', 'RA03');
execute insertartiradas('RA0342130,8312268518', '0', '06/05/2015 19:56:58','12,7', 'RA03');
execute insertartiradas('RA0342130,8318402778', '14', '06/05/2015 19:57:51','-17,1', 'RA03');
execute insertartiradas('RA0342130,8325578704', '15', '06/05/2015 19:58:53','11,9', 'RA03');
execute insertartiradas('RA0342130,8333333333', '19', '06/05/2015 20:00:00','-12,8', 'RA03');
execute insertartiradas('RA0342130,8339930556', '20', '06/05/2015 20:00:57','12,8', 'RA03');
execute insertartiradas('RA0342130,8346527778', '1', '06/05/2015 20:01:54','-14,5', 'RA03');
execute insertartiradas('RA0342130,835150463', '35', '06/05/2015 20:02:37','15,4', 'RA03');
execute insertartiradas('RA0342130,8356481481', '35', '06/05/2015 20:03:20','-15,1', 'RA03');
execute insertartiradas('RA0342130,836099537', '0', '06/05/2015 20:03:59','15,4', 'RA03');
execute insertartiradas('RA0342130,8368171296', '29', '06/05/2015 20:05:01','-15,9', 'RA03');
execute insertartiradas('RA0342130,8374768519', '13', '06/05/2015 20:05:58','14,3', 'RA03');
execute insertartiradas('RA0342130,8379861111', '33', '06/05/2015 20:06:42','-17,3', 'RA03');
execute insertartiradas('RA0342130,8384953704', '28', '06/05/2015 20:07:26','15', 'RA03');
execute insertartiradas('RA0342130,8391203704', '21', '06/05/2015 20:08:20','-14,9', 'RA03');
execute insertartiradas('RA0342130,8399652778', '9', '06/05/2015 20:09:33','16,5', 'RA03');
execute insertartiradas('RA0342130,8407291667', '0', '06/05/2015 20:10:39','-15,7', 'RA03');
execute insertartiradas('RA0342130,8413888888', '5', '06/05/2015 20:11:36','15,2', 'RA03');
execute insertartiradas('RA0342130,842025463', '18', '06/05/2015 20:12:31','-18,8', 'RA03');
execute insertartiradas('RA0342130,843125', '33', '06/05/2015 20:14:06','15,2', 'RA03');
execute insertartiradas('RA0342130,8437731481', '29', '06/05/2015 20:15:02','-17,3', 'RA03');
execute insertartiradas('RA0342130,8444791666', '23', '06/05/2015 20:16:03','16,1', 'RA03');
execute insertartiradas('RA0342130,8449768519', '17', '06/05/2015 20:16:46','-16,8', 'RA03');
execute insertartiradas('RA0342130,8456018519', '22', '06/05/2015 20:17:40','17,7', 'RA03');
execute insertartiradas('RA0342130,8464236111', '14', '06/05/2015 20:18:51','-17,6', 'RA03');
execute insertartiradas('RA0342130,8472916667', '33', '06/05/2015 20:20:06','16,3', 'RA03');
execute insertartiradas('RA0342130,8479050926', '34', '06/05/2015 20:20:59','-16,3', 'RA03');
execute insertartiradas('RA0342130,8485532407', '16', '06/05/2015 20:21:55','17,2', 'RA03');
execute insertartiradas('RA0342130,8493865741', '20', '06/05/2015 20:23:07','-17,9', 'RA03');
execute insertartiradas('RA0342130,8504513889', '0', '06/05/2015 20:24:39','16,6', 'RA03');
execute insertartiradas('RA0342130,8510300926', '33', '06/05/2015 20:25:29','-16,3', 'RA03');
execute insertartiradas('RA0342130,8516898148', '36', '06/05/2015 20:26:26','16', 'RA03');
execute insertartiradas('RA0342130,8527893519', '2', '06/05/2015 20:28:01','-15', 'RA03');
execute insertartiradas('RA0342130,8618287037', '18', '06/05/2015 20:41:02','14,8', 'RA03');
execute insertartiradas('RA0342130,8623611111', '18', '06/05/2015 20:41:48','-21,2', 'RA03');
execute insertartiradas('RA0342130,8629976852', '13', '06/05/2015 20:42:43','23,7', 'RA03');
execute insertartiradas('RA0342130,863587963', '27', '06/05/2015 20:43:34','-19', 'RA03');
execute insertartiradas('RA0342130,8641087963', '6', '06/05/2015 20:44:19','18,7', 'RA03');
execute insertartiradas('RA0342130,8646180556', '28', '06/05/2015 20:45:03','-17,9', 'RA03');
execute insertartiradas('RA0342130,8651273148', '14', '06/05/2015 20:45:47','21,2', 'RA03');
execute insertartiradas('RA0342130,8663541667', '6', '06/05/2015 20:47:33','-22,5', 'RA03');
execute insertartiradas('RA0342130,8674884259', '8', '06/05/2015 20:49:11','22,6', 'RA03');
execute insertartiradas('RA0342130,8682986111', '24', '06/05/2015 20:50:21','-20,8', 'RA03');
execute insertartiradas('RA0342130,8691782407', '1', '06/05/2015 20:51:37','23,1', 'RA03');
execute insertartiradas('RA0342130,8702893518', '22', '06/05/2015 20:53:13','-22,8', 'RA03');
execute insertartiradas('RA0342130,8720949074', '3', '06/05/2015 20:55:49','28,8', 'RA03');
execute insertartiradas('RA0342130,8730555556', '20', '06/05/2015 20:57:12','-26,3', 'RA03');
execute insertartiradas('RA0342130,874537037', '35', '06/05/2015 20:59:20','28,2', 'RA03');
execute insertartiradas('RA0342130,8767013889', '17', '06/05/2015 21:02:27','-16,9', 'RA03');
execute insertartiradas('RA0342130,8778009259', '1', '06/05/2015 21:04:02','13', 'RA03');
execute insertartiradas('RA0342130,8794097222', '17', '06/05/2015 21:06:21','-15,6', 'RA03');
execute insertartiradas('RA0342130,8810532407', '7', '06/05/2015 21:08:43','14,2', 'RA03');
execute insertartiradas('RA0342130,8821527778', '32', '06/05/2015 21:10:18','-16,2', 'RA03');
execute insertartiradas('RA0342130,8833680556', '30', '06/05/2015 21:12:03','11,3', 'RA03');
execute insertartiradas('RA0342130,8847337963', '28', '06/05/2015 21:14:01','-14,1', 'RA03');
execute insertartiradas('RA0342130,8859143518', '31', '06/05/2015 21:15:43','15,5', 'RA03');
execute insertartiradas('RA0342130,8872685185', '33', '06/05/2015 21:17:40','-15', 'RA03');
execute insertartiradas('RA0342130,8879513889', '27', '06/05/2015 21:18:39','14,5', 'RA03');
execute insertartiradas('RA0342130,8889467593', '18', '06/05/2015 21:20:05','-15,5', 'RA03');
execute insertartiradas('RA0342130,8900578704', '34', '06/05/2015 21:21:41','20,9', 'RA03');
execute insertartiradas('RA0342130,8910416667', '21', '06/05/2015 21:23:06','-20,9', 'RA03');
execute insertartiradas('RA0342130,8918865741', '10', '06/05/2015 21:24:19','15,1', 'RA03');
execute insertartiradas('RA0342130,892962963', '33', '06/05/2015 21:25:52','-18,3', 'RA03');
execute insertartiradas('RA0342130,8938425926', '19', '06/05/2015 21:27:08','19,6', 'RA03');
execute insertartiradas('RA0342130,8947337963', '28', '06/05/2015 21:28:25','-21,4', 'RA03');
execute insertartiradas('RA0342130,8955208333', '33', '06/05/2015 21:29:33','22,4', 'RA03');
execute insertartiradas('RA0342130,8967939815', '5', '06/05/2015 21:31:23','-19,1', 'RA03');
execute insertartiradas('RA0342130,8978703704', '8', '06/05/2015 21:32:56','17,1', 'RA03');
execute insertartiradas('RA0342130,8986805556', '0', '06/05/2015 21:34:06','-16,3', 'RA03');
execute insertartiradas('RA0342130,8999305556', '11', '06/05/2015 21:35:54','20,7', 'RA03');
execute insertartiradas('RA0342130,9009375', '12', '06/05/2015 21:37:21','-20', 'RA03');
execute insertartiradas('RA0342130,9020138889', '4', '06/05/2015 21:38:54','16,4', 'RA03');
execute insertartiradas('RA0342130,9031134259', '27', '06/05/2015 21:40:29','-17,7', 'RA03');
execute insertartiradas('RA0342130,903900463', '15', '06/05/2015 21:41:37','18,8', 'RA03');
execute insertartiradas('RA0342130,904837963', '12', '06/05/2015 21:42:58','-20,2', 'RA03');
execute insertartiradas('RA0342130,9064467593', '32', '06/05/2015 21:45:17','21,2', 'RA03');
execute insertartiradas('RA0342130,9077199074', '33', '06/05/2015 21:47:07','-20', 'RA03');
execute insertartiradas('RA0342130,9091203704', '5', '06/05/2015 21:49:08','22', 'RA03');
execute insertartiradas('RA0342130,9099768518', '22', '06/05/2015 21:50:22','-21', 'RA03');
execute insertartiradas('RA0342130,9107638889', '23', '06/05/2015 21:51:30','19,9', 'RA03');
execute insertartiradas('RA0342130,9116550926', '19', '06/05/2015 21:52:47','-23,4', 'RA03');
execute insertartiradas('RA0342130,9126851852', '21', '06/05/2015 21:54:16','19,3', 'RA03');
execute insertartiradas('RA0342130,9136921296', '1', '06/05/2015 21:55:43','-20,6', 'RA03');
execute insertartiradas('RA0342130,9146643519', '4', '06/05/2015 21:57:07','21,5', 'RA03');
execute insertartiradas('RA0342130,9155902778', '31', '06/05/2015 21:58:27','-21,6', 'RA03');
execute insertartiradas('RA0342130,9166435185', '7', '06/05/2015 21:59:58','17,2', 'RA03');
execute insertartiradas('RA0342130,9174074074', '4', '06/05/2015 22:01:04','-21,3', 'RA03');
execute insertartiradas('RA0342130,9186458333', '18', '06/05/2015 22:02:51','16,9', 'RA03');
execute insertartiradas('RA0342130,9196064815', '26', '06/05/2015 22:04:14','-21,7', 'RA03');
execute insertartiradas('RA0342130,9206597222', '22', '06/05/2015 22:05:45','20,7', 'RA03');
execute insertartiradas('RA0342130,9218402778', '34', '06/05/2015 22:07:27','-19,4', 'RA03');
execute insertartiradas('RA0342130,9225462963', '32', '06/05/2015 22:08:28','19,7', 'RA03');
execute insertartiradas('RA0342130,9237847222', '25', '06/05/2015 22:10:15','-21,7', 'RA03');
execute insertartiradas('RA0342130,9254976852', '24', '06/05/2015 22:12:43','19', 'RA03');
execute insertartiradas('RA0342130,9265046296', '17', '06/05/2015 22:14:10','-20,7', 'RA03');
execute insertartiradas('RA0342130,9271643519', '22', '06/05/2015 22:15:07','19,4', 'RA03');
execute insertartiradas('RA0342130,9278356481', '24', '06/05/2015 22:16:05','-20,5', 'RA03');
execute insertartiradas('RA0342130,9286921296', '23', '06/05/2015 22:17:19','19,4', 'RA03');
execute insertartiradas('RA0342130,9293518519', '8', '06/05/2015 22:18:16','-21,3', 'RA03');
execute insertartiradas('RA0342130,9300810185', '12', '06/05/2015 22:19:19','19,1', 'RA03');
execute insertartiradas('RA0342130,9308101852', '25', '06/05/2015 22:20:22','-17,6', 'RA03');
execute insertartiradas('RA0342130,9315509259', '16', '06/05/2015 22:21:26','17,8', 'RA03');
execute insertartiradas('RA0342130,932337963', '11', '06/05/2015 22:22:34','-19,8', 'RA03');
execute insertartiradas('RA0342130,9332060185', '16', '06/05/2015 22:23:49','15,1', 'RA03');
execute insertartiradas('RA0342130,9343171296', '0', '06/05/2015 22:25:25','-20,3', 'RA03');
execute insertartiradas('RA0342130,9355555556', '36', '06/05/2015 22:27:12','17,6', 'RA03');
execute insertartiradas('RA0342130,9373611111', '31', '06/05/2015 22:29:48','-23,9', 'RA03');
execute insertartiradas('RA0342130,9388773148', '19', '06/05/2015 22:31:59','18,5', 'RA03');
execute insertartiradas('RA0342130,9401273148', '33', '06/05/2015 22:33:47','-18,7', 'RA03');
execute insertartiradas('RA0342130,9409722222', '11', '06/05/2015 22:35:00','17,1', 'RA03');
execute insertartiradas('RA0342130,9420023148', '10', '06/05/2015 22:36:29','-19,6', 'RA03');
execute insertartiradas('RA0342130,9428935185', '30', '06/05/2015 22:37:46','17,5', 'RA03');
execute insertartiradas('RA0342130,9437615741', '17', '06/05/2015 22:39:01','-18,5', 'RA03');
execute insertartiradas('RA0342130,9446875', '0', '06/05/2015 22:40:21','15,1', 'RA03');
execute insertartiradas('RA0342130,9454398148', '11', '06/05/2015 22:41:26','-20,8', 'RA03');
execute insertartiradas('RA0342130,9465509259', '30', '06/05/2015 22:43:02','16,8', 'RA03');
execute insertartiradas('RA0342130,9478587963', '11', '06/05/2015 22:44:55','-22,1', 'RA03');
execute insertartiradas('RA0342130,948912037', '35', '06/05/2015 22:46:26','16,5', 'RA03');
execute insertartiradas('RA0342130,9497337962', '16', '06/05/2015 22:47:37','-21,6', 'RA03');
execute insertartiradas('RA0342130,9505092593', '30', '06/05/2015 22:48:44','16,7', 'RA03');
execute insertartiradas('RA0342130,9513425926', '9', '06/05/2015 22:49:56','-20,1', 'RA03');
execute insertartiradas('RA0342130,9526967593', '26', '06/05/2015 22:51:53','13,5', 'RA03');
execute insertartiradas('RA0342130,9541319444', '9', '06/05/2015 22:53:57','-16,4', 'RA03');
execute insertartiradas('RA0342130,9547453704', '18', '06/05/2015 22:54:50','17,8', 'RA03');
execute insertartiradas('RA0342130,955462963', '7', '06/05/2015 22:55:52','-20,6', 'RA03');
execute insertartiradas('RA0342130,9560648148', '33', '06/05/2015 22:56:44','19,9', 'RA03');
execute insertartiradas('RA0342130,9567708333', '26', '06/05/2015 22:57:45','-22', 'RA03');
execute insertartiradas('RA0342130,957337963', '24', '06/05/2015 22:58:34','14,9', 'RA03');
execute insertartiradas('RA0342130,9581365741', '5', '06/05/2015 22:59:43','-21,7', 'RA03');
execute insertartiradas('RA0342130,9589930556', '16', '06/05/2015 23:00:57','16,2', 'RA03');
execute insertartiradas('RA0342130,9597106481', '18', '06/05/2015 23:01:59','-14,3', 'RA03');
execute insertartiradas('RA0342130,9601967593', '23', '06/05/2015 23:02:41','11,7', 'RA03');
execute insertartiradas('RA0342130,9606828704', '2', '06/05/2015 23:03:23','-17,7', 'RA03');
execute insertartiradas('RA0342130,9612037037', '26', '06/05/2015 23:04:08','14,5', 'RA03');
execute insertartiradas('RA0342130,962349537', '32', '06/05/2015 23:05:47','-13,5', 'RA03');
execute insertartiradas('RA0342130,9637037037', '31', '06/05/2015 23:07:44','16,3', 'RA03');
execute insertartiradas('RA0342130,9646990741', '16', '06/05/2015 23:09:10','-18,7', 'RA03');
execute insertartiradas('RA0342130,965625', '2', '06/05/2015 23:10:30','16,4', 'RA03');
execute insertartiradas('RA0342130,9665972222', '0', '06/05/2015 23:11:54','-13,4', 'RA03');
execute insertartiradas('RA0342130,9676967593', '21', '06/05/2015 23:13:29','18,3', 'RA03');
execute insertartiradas('RA0342130,9685648148', '16', '06/05/2015 23:14:44','-13,9', 'RA03');
execute insertartiradas('RA0342130,9693981481', '8', '06/05/2015 23:15:56','17,5', 'RA03');
execute insertartiradas('RA0342130,9705671296', '36', '06/05/2015 23:17:37','-13,4', 'RA03');
execute insertartiradas('RA0342130,9718865741', '5', '06/05/2015 23:19:31','16,4', 'RA03');
execute insertartiradas('RA0342130,9730092593', '12', '06/05/2015 23:21:08','-18,1', 'RA03');
execute insertartiradas('RA0342130,9740625', '27', '06/05/2015 23:22:39','17', 'RA03');
execute insertartiradas('RA0342130,9749305556', '29', '06/05/2015 23:23:54','-15,1', 'RA03');
execute insertartiradas('RA0342130,9763773148', '23', '06/05/2015 23:25:59','22,4', 'RA03');
execute insertartiradas('RA0342130,9772916666', '30', '06/05/2015 23:27:18','-18,6', 'RA03');
execute insertartiradas('RA0342130,9786342593', '1', '06/05/2015 23:29:14','15,5', 'RA03');
execute insertartiradas('RA0342130,9793634259', '19', '06/05/2015 23:30:17','-14,4', 'RA03');
execute insertartiradas('RA0342130,9801967593', '11', '06/05/2015 23:31:29','16,6', 'RA03');
execute insertartiradas('RA0342130,9813657407', '3', '06/05/2015 23:33:10','-12,6', 'RA03');
execute insertartiradas('RA0342130,9825', '15', '06/05/2015 23:34:48','18,6', 'RA03');
execute insertartiradas('RA0342130,9833333333', '31', '06/05/2015 23:36:00','-12,5', 'RA03');
execute insertartiradas('RA0342130,9841550926', '29', '06/05/2015 23:37:11','16,9', 'RA03');
execute insertartiradas('RA0342130,9847916667', '10', '06/05/2015 23:38:06','-16,4', 'RA03');
execute insertartiradas('RA0342130,9855208333', '33', '06/05/2015 23:39:09','15,5', 'RA03');
execute insertartiradas('RA0342130,9862731481', '0', '06/05/2015 23:40:14','-12,5', 'RA03');
execute insertartiradas('RA0342130,9870601852', '11', '06/05/2015 23:41:22','14,7', 'RA03');
execute insertartiradas('RA0342130,9877662037', '10', '06/05/2015 23:42:23','-17,2', 'RA03');
execute insertartiradas('RA0342130,9886921296', '2', '06/05/2015 23:43:43','15,2', 'RA03');
execute insertartiradas('RA0342130,9892361111', '35', '06/05/2015 23:44:30','-14,4', 'RA03');
execute insertartiradas('RA0342130,9899768519', '32', '06/05/2015 23:45:34','16,4', 'RA03');
execute insertartiradas('RA0342130,9912731481', '1', '06/05/2015 23:47:26','-17,7', 'RA03');
execute insertartiradas('RA0342130,9919097222', '4', '06/05/2015 23:48:21','16,6', 'RA03');
execute insertartiradas('RA0342130,9924652778', '21', '06/05/2015 23:49:09','-13,2', 'RA03');
execute insertartiradas('RA0342130,9931597222', '7', '06/05/2015 23:50:09','15,4', 'RA03');
execute insertartiradas('RA0342130,9938425926', '2', '06/05/2015 23:51:08','-14,6', 'RA03');
execute insertartiradas('RA0342130,9961689815', '5', '06/05/2015 23:54:29','13,9', 'RA03');
execute insertartiradas('RA0342130,9985532407', '32', '06/05/2015 23:57:55','-11,4', 'RA03');
execute insertartiradas('RA0342130,9997453704', '35', '06/05/2015 23:59:38','15,2', 'RA03');
execute insertartiradas('RA0342131,000787037', '7', '07/05/2015 00:01:08','-17,8', 'RA03');
execute insertartiradas('RA0342131,0014930556', '15', '07/05/2015 00:02:09','16,8', 'RA03');
execute insertartiradas('RA0342131,0021643518', '7', '07/05/2015 00:03:07','-16,6', 'RA03');
execute insertartiradas('RA0342131,0028240741', '32', '07/05/2015 00:04:04','17,8', 'RA03');
execute insertartiradas('RA0342131,0039699074', '34', '07/05/2015 00:05:43','-17,1', 'RA03');
execute insertartiradas('RA0342131,0046180556', '1', '07/05/2015 00:06:39','14,1', 'RA03');
execute insertartiradas('RA0342131,0056828704', '18', '07/05/2015 00:08:11','-18,1', 'RA03');
execute insertartiradas('RA0342131,0065046296', '18', '07/05/2015 00:09:22','16,1', 'RA03');
execute insertartiradas('RA0342131,0072222222', '28', '07/05/2015 00:10:24','-16,7', 'RA03');
execute insertartiradas('RA0342131,0076967593', '33', '07/05/2015 00:11:05','17,8', 'RA03');
execute insertartiradas('RA0342131,0082407407', '13', '07/05/2015 00:11:52','-16,9', 'RA03');
execute insertartiradas('RA0342131,0087384259', '15', '07/05/2015 00:12:35','16,3', 'RA03');
execute insertartiradas('RA0342131,0103587963', '18', '07/05/2015 00:14:55','-15,2', 'RA03');
execute insertartiradas('RA0342131,0109143518', '19', '07/05/2015 00:15:43','15,4', 'RA03');
execute insertartiradas('RA0342131,0114467593', '32', '07/05/2015 00:16:29','-16,4', 'RA03');
execute insertartiradas('RA0342131,0119675926', '30', '07/05/2015 00:17:14','16,5', 'RA03');
execute insertartiradas('RA0342131,0127083333', '33', '07/05/2015 00:18:18','-15,6', 'RA03');
execute insertartiradas('RA0342131,0133449074', '2', '07/05/2015 00:19:13','16', 'RA03');
execute insertartiradas('RA0342131,0138541667', '29', '07/05/2015 00:19:57','-14,7', 'RA03');
execute insertartiradas('RA0342131,0143055556', '10', '07/05/2015 00:20:36','17,7', 'RA03');
execute insertartiradas('RA0342131,0153125', '31', '07/05/2015 00:22:03','-14', 'RA03');
execute insertartiradas('RA0342131,0158564815', '21', '07/05/2015 00:22:50','16,4', 'RA03');
execute insertartiradas('RA0342131,0163657407', '9', '07/05/2015 00:23:34','-18', 'RA03');
execute insertartiradas('RA0342131,0169328704', '9', '07/05/2015 00:24:23','17,2', 'RA03');
execute insertartiradas('RA0342131,0174421296', '11', '07/05/2015 00:25:07','-16,9', 'RA03');
execute insertartiradas('RA0342131,0180671296', '10', '07/05/2015 00:26:01','18,6', 'RA03');
execute insertartiradas('RA0342131,0187962963', '36', '07/05/2015 00:27:04','-17,7', 'RA03');
execute insertartiradas('RA0342131,0194907407', '18', '07/05/2015 00:28:04','17,2', 'RA03');
execute insertartiradas('RA0342131,020150463', '8', '07/05/2015 00:29:01','-17,3', 'RA03');
execute insertartiradas('RA0342131,020787037', '27', '07/05/2015 00:29:56','17,2', 'RA03');
execute insertartiradas('RA0342131,0217824074', '31', '07/05/2015 00:31:22','-16', 'RA03');
execute insertartiradas('RA0342131,0225231481', '21', '07/05/2015 00:32:26','17,7', 'RA03');
execute insertartiradas('RA0342131,0236342593', '15', '07/05/2015 00:34:02','-18,2', 'RA03');
execute insertartiradas('RA0342131,0248958333', '4', '07/05/2015 00:35:51','16,6', 'RA03');
execute insertartiradas('RA0342131,0257638889', '14', '07/05/2015 00:37:06','-17,4', 'RA03');
execute insertartiradas('RA0342131,0266435185', '24', '07/05/2015 00:38:22','16,5', 'RA03');
execute insertartiradas('RA0342131,0273958333', '36', '07/05/2015 00:39:27','-18', 'RA03');
execute insertartiradas('RA0342131,0281365741', '29', '07/05/2015 00:40:31','16,5', 'RA03');
execute insertartiradas('RA0342131,0297685185', '13', '07/05/2015 00:42:52','-18,1', 'RA03');
execute insertartiradas('RA0342131,0307986111', '2', '07/05/2015 00:44:21','19,6', 'RA03');
execute insertartiradas('RA0342131,0318634259', '14', '07/05/2015 00:45:53','-19,4', 'RA03');
execute insertartiradas('RA0342131,0334722222', '28', '07/05/2015 00:48:12','16', 'RA03');
execute insertartiradas('RA0342131,0351041667', '4', '07/05/2015 00:50:33','-20', 'RA03');
execute insertartiradas('RA0342131,0366550926', '2', '07/05/2015 00:52:47','19,2', 'RA03');
execute insertartiradas('RA0342131,0383333333', '11', '07/05/2015 00:55:12','-21,4', 'RA03');
execute insertartiradas('RA0342131,0393981481', '33', '07/05/2015 00:56:44','17,2', 'RA03');
execute insertartiradas('RA0342131,040462963', '20', '07/05/2015 00:58:16','-21', 'RA03');
execute insertartiradas('RA0342131,0419791667', '27', '07/05/2015 01:00:27','15,8', 'RA03');
execute insertartiradas('RA0342131,0430439815', '2', '07/05/2015 01:01:59','-17,3', 'RA03');
execute insertartiradas('RA0342131,044375', '15', '07/05/2015 01:03:54','18,2', 'RA03');
execute insertartiradas('RA0342131,0455324074', '5', '07/05/2015 01:05:34','-16,3', 'RA03');
execute insertartiradas('RA0342131,0463194444', '17', '07/05/2015 01:06:42','14,9', 'RA03');
execute insertartiradas('RA0342131,0475231481', '0', '07/05/2015 01:08:26','-20,2', 'RA03');
execute insertartiradas('RA0342131,0481597222', '20', '07/05/2015 01:09:21','16,2', 'RA03');
execute insertartiradas('RA0342131,0489814815', '4', '07/05/2015 01:10:32','-17,4', 'RA03');
execute insertartiradas('RA0342131,0494212963', '9', '07/05/2015 01:11:10','14,2', 'RA03');
execute insertartiradas('RA0342131,0500694444', '14', '07/05/2015 01:12:06','-18', 'RA03');
execute insertartiradas('RA0342131,0505902778', '14', '07/05/2015 01:12:51','15,4', 'RA03');
execute insertartiradas('RA0342131,0510648148', '34', '07/05/2015 01:13:32','-20,5', 'RA03');
execute insertartiradas('RA0342131,0515972222', '18', '07/05/2015 01:14:18','16,3', 'RA03');
execute insertartiradas('RA0342131,053599537', '36', '07/05/2015 01:17:11','-14,5', 'RA03');
execute insertartiradas('RA0342131,0563888889', '14', '07/05/2015 01:21:12','14,3', 'RA03');
execute insertartiradas('RA0342131,0575578704', '28', '07/05/2015 01:22:53','-14,4', 'RA03');
execute insertartiradas('RA0342131,0584490741', '24', '07/05/2015 01:24:10','14,6', 'RA03');
execute insertartiradas('RA0342131,0593055556', '32', '07/05/2015 01:25:24','-14,4', 'RA03');
execute insertartiradas('RA0342131,0605324074', '14', '07/05/2015 01:27:10','15,8', 'RA03');
execute insertartiradas('RA0342131,0611458333', '17', '07/05/2015 01:28:03','-16,2', 'RA03');
execute insertartiradas('RA0342131,0618055556', '25', '07/05/2015 01:29:00','16,2', 'RA03');
execute insertartiradas('RA0342131,0628819444', '35', '07/05/2015 01:30:33','-20,3', 'RA03');
execute insertartiradas('RA0342131,0639583333', '6', '07/05/2015 01:32:06','15,4', 'RA03');
execute insertartiradas('RA0342131,0645949074', '15', '07/05/2015 01:33:01','-15,4', 'RA03');
execute insertartiradas('RA0342131,0650694444', '1', '07/05/2015 01:33:42','13,3', 'RA03');
execute insertartiradas('RA0342131,0658101852', '8', '07/05/2015 01:34:46','-14,7', 'RA03');
execute insertartiradas('RA0342131,0667476852', '35', '07/05/2015 01:36:07','15,1', 'RA03');
execute insertartiradas('RA0342131,0673148148', '36', '07/05/2015 01:36:56','-15,7', 'RA03');
execute insertartiradas('RA0342131,0679976852', '19', '07/05/2015 01:37:55','12,7', 'RA03');
execute insertartiradas('RA0342131,0687962963', '14', '07/05/2015 01:39:04','-15,9', 'RA03');
execute insertartiradas('RA0342131,0697800926', '30', '07/05/2015 01:40:29','17,9', 'RA03');
execute insertartiradas('RA0342131,0709027778', '6', '07/05/2015 01:42:06','-18,3', 'RA03');
execute insertartiradas('RA0342131,0714814815', '6', '07/05/2015 01:42:56','16,5', 'RA03');
execute insertartiradas('RA0342131,0722222222', '21', '07/05/2015 01:44:00','-20,8', 'RA03');
execute insertartiradas('RA0342131,0729398148', '25', '07/05/2015 01:45:02','18,4', 'RA03');
execute insertartiradas('RA0342131,0735763889', '24', '07/05/2015 01:45:57','-18,7', 'RA03');
execute insertartiradas('RA0342131,0743518519', '29', '07/05/2015 01:47:04','16,2', 'RA03');
execute insertartiradas('RA0342131,0749652778', '22', '07/05/2015 01:47:57','-20,4', 'RA03');
execute insertartiradas('RA0342131,0760185185', '13', '07/05/2015 01:49:28','19,2', 'RA03');
execute insertartiradas('RA0342131,0766782407', '29', '07/05/2015 01:50:25','-17,1', 'RA03');
execute insertartiradas('RA0342131,0773842593', '18', '07/05/2015 01:51:26','15,9', 'RA03');
execute insertartiradas('RA0342131,0787152778', '1', '07/05/2015 01:53:21','-22,3', 'RA03');
execute insertartiradas('RA0342131,0804976852', '11', '07/05/2015 01:55:55','17,6', 'RA03');
execute insertartiradas('RA0342131,0826273148', '1', '07/05/2015 01:58:59','-21,9', 'RA03');
execute insertartiradas('RA0342131,0845717593', '4', '07/05/2015 02:01:47','16,5', 'RA03');
execute insertartiradas('RA0342131,0856481481', '34', '07/05/2015 02:03:20','-16,6', 'RA03');
execute insertartiradas('RA0342131,0867013889', '34', '07/05/2015 02:04:51','16,5', 'RA03');
execute insertartiradas('RA0342131,0874768519', '2', '07/05/2015 02:05:58','-15,9', 'RA03');
execute insertartiradas('RA0342131,0885300926', '29', '07/05/2015 02:07:29','16,3', 'RA03');
execute insertartiradas('RA0342131,0904513889', '19', '07/05/2015 02:10:15','-20', 'RA03');
execute insertartiradas('RA0342131,0912962963', '14', '07/05/2015 02:11:28','15,4', 'RA03');
execute insertartiradas('RA0342131,092349537', '27', '07/05/2015 02:12:59','-17,3', 'RA03');
execute insertartiradas('RA0342131,0933217593', '35', '07/05/2015 02:14:23','15,2', 'RA03');
execute insertartiradas('RA0342131,0944444444', '23', '07/05/2015 02:16:00','-13', 'RA03');
execute insertartiradas('RA0342131,0956018519', '6', '07/05/2015 02:17:40','16,8', 'RA03');
execute insertartiradas('RA0342131,0963425926', '1', '07/05/2015 02:18:44','-17,5', 'RA03');
execute insertartiradas('RA0342131,0972800926', '6', '07/05/2015 02:20:05','17,3', 'RA03');
execute insertartiradas('RA0342131,0986805556', '11', '07/05/2015 02:22:06','-14,7', 'RA03');
execute insertartiradas('RA0342131,0998842593', '12', '07/05/2015 02:23:50','15,5', 'RA03');
execute insertartiradas('RA0342131,1006944444', '21', '07/05/2015 02:25:00','-16,9', 'RA03');
execute insertartiradas('RA0342131,1018171296', '11', '07/05/2015 02:26:37','13,6', 'RA03');
execute insertartiradas('RA0342131,1032986111', '20', '07/05/2015 02:28:45','-15,4', 'RA03');
execute insertartiradas('RA0342131,1040856481', '8', '07/05/2015 02:29:53','14,4', 'RA03');
execute insertartiradas('RA0342131,1060416667', '2', '07/05/2015 02:32:42','-17', 'RA03');
execute insertartiradas('RA0342131,1066782407', '0', '07/05/2015 02:33:37','15,2', 'RA03');
execute insertartiradas('RA0342131,1077083333', '22', '07/05/2015 02:35:06','-16,2', 'RA03');
execute insertartiradas('RA0342131,1089583333', '23', '07/05/2015 02:36:54','16,3', 'RA03');
execute insertartiradas('RA0342131,11', '21', '07/05/2015 02:38:24','-16,9', 'RA03');
execute insertartiradas('RA0342131,1113888889', '20', '07/05/2015 02:40:24','17,8', 'RA03');
execute insertartiradas('RA0342131,1125925926', '7', '07/05/2015 02:42:08','-15,5', 'RA03');
execute insertartiradas('RA0342131,1137268519', '21', '07/05/2015 02:43:46','15,9', 'RA03');
execute insertartiradas('RA0342131,1145601852', '4', '07/05/2015 02:44:58','-16', 'RA03');
execute insertartiradas('RA0342131,1154513889', '11', '07/05/2015 02:46:15','15,9', 'RA03');
execute insertartiradas('RA0342131,1166087963', '1', '07/05/2015 02:47:55','-16,2', 'RA03');
execute insertartiradas('RA0342131,1175115741', '8', '07/05/2015 02:49:13','15,7', 'RA03');
execute insertartiradas('RA0342131,1187615741', '8', '07/05/2015 02:51:01','-17,9', 'RA03');
execute insertartiradas('RA0342131,1200810185', '10', '07/05/2015 02:52:55','13,6', 'RA03');
execute insertartiradas('RA0342131,1211921296', '14', '07/05/2015 02:54:31','-15,7', 'RA03');
execute insertartiradas('RA0342131,1221296296', '33', '07/05/2015 02:55:52','14,8', 'RA03');
execute insertartiradas('RA0342131,122962963', '32', '07/05/2015 02:57:04','-17', 'RA03');
execute insertartiradas('RA0342131,1240972222', '34', '07/05/2015 02:58:42','17', 'RA03');
execute insertartiradas('RA0342131,4944328704', '3', '07/05/2015 11:51:59','8,9', 'RA03');
execute insertartiradas('RA0342131,4947337963', '23', '07/05/2015 11:52:25','-9,2', 'RA03');
execute insertartiradas('RA0342131,4950231481', '27', '07/05/2015 11:52:50','9,8', 'RA03');
execute insertartiradas('RA0342131,7150462963', '21', '07/05/2015 17:09:40','16,4', 'RA03');
execute insertartiradas('RA0342131,7156365741', '32', '07/05/2015 17:10:31','-12,1', 'RA03');
execute insertartiradas('RA0342131,7162847222', '25', '07/05/2015 17:11:27','20,5', 'RA03');
execute insertartiradas('RA0342131,7168518519', '11', '07/05/2015 17:12:16','-21,3', 'RA03');
execute insertartiradas('RA0342131,7173148148', '6', '07/05/2015 17:12:56','22', 'RA03');
execute insertartiradas('RA0342131,7177083333', '22', '07/05/2015 17:13:30','-19,4', 'RA03');
execute insertartiradas('RA0342131,7182291667', '25', '07/05/2015 17:14:15','18,6', 'RA03');
execute insertartiradas('RA0342131,7189930556', '9', '07/05/2015 17:15:21','-22,6', 'RA03');
execute insertartiradas('RA0342131,7195601852', '13', '07/05/2015 17:16:10','19,6', 'RA03');
execute insertartiradas('RA0342131,7205092593', '2', '07/05/2015 17:17:32','-24,8', 'RA03');
execute insertartiradas('RA0342131,7211111111', '14', '07/05/2015 17:18:24','17,8', 'RA03');
execute insertartiradas('RA0342131,7217708333', '19', '07/05/2015 17:19:21','-14,8', 'RA03');
execute insertartiradas('RA0342131,7223842593', '4', '07/05/2015 17:20:14','19,3', 'RA03');
execute insertartiradas('RA0342131,7230324074', '26', '07/05/2015 17:21:10','-19,5', 'RA03');
execute insertartiradas('RA0342131,7238078704', '32', '07/05/2015 17:22:17','17,9', 'RA03');
execute insertartiradas('RA0342131,7244675926', '21', '07/05/2015 17:23:14','-18,5', 'RA03');
execute insertartiradas('RA0342131,7254282407', '3', '07/05/2015 17:24:37','17,2', 'RA03');
execute insertartiradas('RA0342131,7263425926', '34', '07/05/2015 17:25:56','-16,6', 'RA03');
execute insertartiradas('RA0342131,7270486111', '21', '07/05/2015 17:26:57','17,8', 'RA03');
execute insertartiradas('RA0342131,7280902778', '32', '07/05/2015 17:28:27','-17,6', 'RA03');
execute insertartiradas('RA0342131,7287615741', '10', '07/05/2015 17:29:25','16,3', 'RA03');
execute insertartiradas('RA0342131,7294212963', '11', '07/05/2015 17:30:22','-17,9', 'RA03');
execute insertartiradas('RA0342131,7300578704', '23', '07/05/2015 17:31:17','17,7', 'RA03');
execute insertartiradas('RA0342131,7313078704', '10', '07/05/2015 17:33:05','-16,9', 'RA03');
execute insertartiradas('RA0342131,7320601852', '5', '07/05/2015 17:34:10','15,1', 'RA03');
execute insertartiradas('RA0342131,7328009259', '16', '07/05/2015 17:35:14','-17,7', 'RA03');
execute insertartiradas('RA0342131,7335416667', '26', '07/05/2015 17:36:18','17,5', 'RA03');
execute insertartiradas('RA0342131,7341782407', '1', '07/05/2015 17:37:13','-18', 'RA03');
execute insertartiradas('RA0342131,7350578704', '35', '07/05/2015 17:38:29','16,9', 'RA03');
execute insertartiradas('RA0342131,7358449074', '27', '07/05/2015 17:39:37','-18,1', 'RA03');
execute insertartiradas('RA0342131,736712963', '7', '07/05/2015 17:40:52','19,2', 'RA03');
execute insertartiradas('RA0342131,7374537037', '36', '07/05/2015 17:41:56','-17,6', 'RA03');
execute insertartiradas('RA0342131,7382060185', '30', '07/05/2015 17:43:01','19,6', 'RA03');
execute insertartiradas('RA0342131,7387731482', '26', '07/05/2015 17:43:50','-19,5', 'RA03');
execute insertartiradas('RA0342131,7396064815', '15', '07/05/2015 17:45:02','16,2', 'RA03');
execute insertartiradas('RA0342131,7408333333', '7', '07/05/2015 17:46:48','-19,7', 'RA03');
execute insertartiradas('RA0342131,7414814815', '0', '07/05/2015 17:47:44','16,7', 'RA03');
execute insertartiradas('RA0342131,7422569444', '24', '07/05/2015 17:48:51','-19', 'RA03');
execute insertartiradas('RA0342131,7430671296', '20', '07/05/2015 17:50:01','17,8', 'RA03');
execute insertartiradas('RA0342131,744224537', '19', '07/05/2015 17:51:41','-17,7', 'RA03');
execute insertartiradas('RA0342131,745462963', '28', '07/05/2015 17:53:28','19,1', 'RA03');
execute insertartiradas('RA0342131,7464351852', '18', '07/05/2015 17:54:52','-18,1', 'RA03');
execute insertartiradas('RA0342131,7471296296', '11', '07/05/2015 17:55:52','17,4', 'RA03');
execute insertartiradas('RA0342131,7482986111', '17', '07/05/2015 17:57:33','-17,4', 'RA03');
execute insertartiradas('RA0342131,7491898148', '30', '07/05/2015 17:58:50','17,8', 'RA03');
execute insertartiradas('RA0342131,7499421296', '28', '07/05/2015 17:59:55','-18,1', 'RA03');
execute insertartiradas('RA0342131,7510648148', '7', '07/05/2015 18:01:32','17,3', 'RA03');
execute insertartiradas('RA0342131,7519097222', '29', '07/05/2015 18:02:45','-19,4', 'RA03');
execute insertartiradas('RA0342131,7526273148', '29', '07/05/2015 18:03:47','18,1', 'RA03');
execute insertartiradas('RA0342131,7533449074', '16', '07/05/2015 18:04:49','-19,2', 'RA03');
execute insertartiradas('RA0342131,7541319444', '31', '07/05/2015 18:05:57','16,5', 'RA03');
execute insertartiradas('RA0342131,7551388889', '8', '07/05/2015 18:07:24','-21,2', 'RA03');
execute insertartiradas('RA0342131,7560185185', '18', '07/05/2015 18:08:40','18', 'RA03');
execute insertartiradas('RA0342131,757025463', '21', '07/05/2015 18:10:07','-20,5', 'RA03');
execute insertartiradas('RA0342131,7580092593', '23', '07/05/2015 18:11:32','19', 'RA03');
execute insertartiradas('RA0342131,7590509259', '5', '07/05/2015 18:13:02','-21,5', 'RA03');
execute insertartiradas('RA0342131,7601041667', '3', '07/05/2015 18:14:33','17,8', 'RA03');
execute insertartiradas('RA0342131,7612731481', '33', '07/05/2015 18:16:14','-18,3', 'RA03');
execute insertartiradas('RA0342131,7630787037', '29', '07/05/2015 18:18:50','20,4', 'RA03');
execute insertartiradas('RA0342131,7642592593', '28', '07/05/2015 18:20:32','-21,5', 'RA03');
execute insertartiradas('RA0342131,7669791667', '32', '07/05/2015 18:24:27','21', 'RA03');
execute insertartiradas('RA0342131,7686805556', '5', '07/05/2015 18:26:54','-20,6', 'RA03');
execute insertartiradas('RA0342131,7698842593', '22', '07/05/2015 18:28:38','21', 'RA03');
execute insertartiradas('RA0342131,771099537', '2', '07/05/2015 18:30:23','-21,5', 'RA03');
execute insertartiradas('RA0342131,7725', '25', '07/05/2015 18:32:24','20,7', 'RA03');
execute insertartiradas('RA0342131,7741550926', '21', '07/05/2015 18:34:47','-20,6', 'RA03');
execute insertartiradas('RA0342131,7755208333', '2', '07/05/2015 18:36:45','24,6', 'RA03');
execute insertartiradas('RA0342131,7768402778', '33', '07/05/2015 18:38:39','-23,2', 'RA03');
execute insertartiradas('RA0342131,7777777778', '20', '07/05/2015 18:40:00','20,7', 'RA03');
execute insertartiradas('RA0342131,7798726852', '26', '07/05/2015 18:43:01','-23,9', 'RA03');
execute insertartiradas('RA0342131,7821180556', '10', '07/05/2015 18:46:15','20,9', 'RA03');
execute insertartiradas('RA0342131,7835532407', '36', '07/05/2015 18:48:19','-21,6', 'RA03');
execute insertartiradas('RA0342131,7848263889', '24', '07/05/2015 18:50:09','19,2', 'RA03');
execute insertartiradas('RA0342131,7862615741', '14', '07/05/2015 18:52:13','-24,9', 'RA03');
execute insertartiradas('RA0342131,787974537', '24', '07/05/2015 18:54:41','24,6', 'RA03');
execute insertartiradas('RA0342131,7896643519', '33', '07/05/2015 18:57:07','-23,3', 'RA03');
execute insertartiradas('RA0342131,7919791667', '1', '07/05/2015 19:00:27','21,9', 'RA03');
execute insertartiradas('RA0342131,7945138888', '12', '07/05/2015 19:04:06','-19,7', 'RA03');
execute insertartiradas('RA0342131,7956828704', '14', '07/05/2015 19:05:47','18,9', 'RA03');
execute insertartiradas('RA0342131,7969907407', '9', '07/05/2015 19:07:40','-17,7', 'RA03');
execute insertartiradas('RA0342131,7980555556', '0', '07/05/2015 19:09:12','17,5', 'RA03');
execute insertartiradas('RA0342131,7993865741', '17', '07/05/2015 19:11:07','-17,9', 'RA03');
execute insertartiradas('RA0342131,8004976852', '20', '07/05/2015 19:12:43','17,3', 'RA03');
execute insertartiradas('RA0342131,8016550926', '10', '07/05/2015 19:14:23','-16,9', 'RA03');
execute insertartiradas('RA0342131,8028587963', '4', '07/05/2015 19:16:07','15,6', 'RA03');
execute insertartiradas('RA0342131,8037384259', '4', '07/05/2015 19:17:23','-15,3', 'RA03');
execute insertartiradas('RA0342131,8045833333', '23', '07/05/2015 19:18:36','17,7', 'RA03');
execute insertartiradas('RA0342131,8055092593', '12', '07/05/2015 19:19:56','-18,5', 'RA03');
execute insertartiradas('RA0342131,8063541667', '10', '07/05/2015 19:21:09','15,2', 'RA03');
execute insertartiradas('RA0342131,8070833333', '29', '07/05/2015 19:22:12','-18,9', 'RA03');
execute insertartiradas('RA0342131,8079513889', '16', '07/05/2015 19:23:27','18,3', 'RA03');
execute insertartiradas('RA0342131,8087268519', '25', '07/05/2015 19:24:34','-14,8', 'RA03');
execute insertartiradas('RA0342131,8095138889', '32', '07/05/2015 19:25:42','16,9', 'RA03');
execute insertartiradas('RA0342131,8102199074', '5', '07/05/2015 19:26:43','-14,9', 'RA03');
execute insertartiradas('RA0342131,8106944444', '31', '07/05/2015 19:27:24','15,7', 'RA03');
execute insertartiradas('RA0342131,81125', '13', '07/05/2015 19:28:12','-21,3', 'RA03');
execute insertartiradas('RA0342131,8118634259', '27', '07/05/2015 19:29:05','16', 'RA03');
execute insertartiradas('RA0342131,8125115741', '22', '07/05/2015 19:30:01','-12,9', 'RA03');
execute insertartiradas('RA0342131,8130671296', '18', '07/05/2015 19:30:49','15,5', 'RA03');
execute insertartiradas('RA0342131,8134953704', '32', '07/05/2015 19:31:26','-15,8', 'RA03');
execute insertartiradas('RA0342131,8138773148', '8', '07/05/2015 19:31:59','12,9', 'RA03');
execute insertartiradas('RA0342131,8144560185', '4', '07/05/2015 19:32:49','-13,5', 'RA03');
execute insertartiradas('RA0342131,8148611111', '20', '07/05/2015 19:33:24','15', 'RA03');
execute insertartiradas('RA0342131,8153240741', '6', '07/05/2015 19:34:04','-13,6', 'RA03');
execute insertartiradas('RA0342131,8158680556', '31', '07/05/2015 19:34:51','16,2', 'RA03');
execute insertartiradas('RA0342131,8163541667', '22', '07/05/2015 19:35:33','-14,6', 'RA03');
execute insertartiradas('RA0342131,8167592593', '6', '07/05/2015 19:36:08','15,3', 'RA03');
execute insertartiradas('RA0342131,8171527778', '16', '07/05/2015 19:36:42','-14,1', 'RA03');
execute insertartiradas('RA0342131,8176157407', '1', '07/05/2015 19:37:22','14,6', 'RA03');
execute insertartiradas('RA0342131,8181018519', '2', '07/05/2015 19:38:04','-15,7', 'RA03');
execute insertartiradas('RA0342131,81875', '6', '07/05/2015 19:39:00','15,1', 'RA03');
execute insertartiradas('RA0342131,8193171296', '21', '07/05/2015 19:39:49','-15,9', 'RA03');
execute insertartiradas('RA0342131,8199421296', '29', '07/05/2015 19:40:43','13,5', 'RA03');
execute insertartiradas('RA0342131,8209490741', '12', '07/05/2015 19:42:10','-15,9', 'RA03');
execute insertartiradas('RA0342131,821724537', '14', '07/05/2015 19:43:17','14,8', 'RA03');
execute insertartiradas('RA0342131,8221875', '18', '07/05/2015 19:43:57','-14,9', 'RA03');
execute insertartiradas('RA0342131,8229050926', '31', '07/05/2015 19:44:59','14,1', 'RA03');
execute insertartiradas('RA0342131,8234837963', '10', '07/05/2015 19:45:49','-13,2', 'RA03');
execute insertartiradas('RA0342131,8240393518', '25', '07/05/2015 19:46:37','14,1', 'RA03');
execute insertartiradas('RA0342131,8245833333', '18', '07/05/2015 19:47:24','-14,9', 'RA03');
execute insertartiradas('RA0342131,8251041667', '25', '07/05/2015 19:48:09','15,7', 'RA03');
execute insertartiradas('RA0342131,8258680556', '5', '07/05/2015 19:49:15','-15', 'RA03');
execute insertartiradas('RA0342131,8269907407', '34', '07/05/2015 19:50:52','17,1', 'RA03');
execute insertartiradas('RA0342131,8280787037', '20', '07/05/2015 19:52:26','-15,3', 'RA03');
execute insertartiradas('RA0342131,828900463', '17', '07/05/2015 19:53:37','13,5', 'RA03');
execute insertartiradas('RA0342131,8298032407', '34', '07/05/2015 19:54:55','-16,9', 'RA03');
execute insertartiradas('RA0342131,8309953704', '32', '07/05/2015 19:56:38','16,1', 'RA03');
execute insertartiradas('RA0342131,8320601852', '8', '07/05/2015 19:58:10','-16,2', 'RA03');
execute insertartiradas('RA0342131,832974537', '26', '07/05/2015 19:59:29','18,2', 'RA03');
execute insertartiradas('RA0342131,8339351852', '7', '07/05/2015 20:00:52','-15,1', 'RA03');
execute insertartiradas('RA0342131,8350231481', '25', '07/05/2015 20:02:26','15,4', 'RA03');
execute insertartiradas('RA0342131,8359375', '28', '07/05/2015 20:03:45','-17,4', 'RA03');
execute insertartiradas('RA0342131,8369675925', '14', '07/05/2015 20:05:14','13,3', 'RA03');
execute insertartiradas('RA0342131,8376041667', '5', '07/05/2015 20:06:09','-15,4', 'RA03');
execute insertartiradas('RA0342131,8390972222', '13', '07/05/2015 20:08:18','16,6', 'RA03');
execute insertartiradas('RA0342131,8402430556', '25', '07/05/2015 20:09:57','-19,2', 'RA03');
execute insertartiradas('RA0342131,8411111111', '21', '07/05/2015 20:11:12','16,2', 'RA03');
execute insertartiradas('RA0342131,8421759259', '35', '07/05/2015 20:12:44','-20,2', 'RA03');
execute insertartiradas('RA0342131,8436342593', '30', '07/05/2015 20:14:50','14,9', 'RA03');
execute insertartiradas('RA0342131,8445138889', '13', '07/05/2015 20:16:06','-14,9', 'RA03');
execute insertartiradas('RA0342131,8454976852', '28', '07/05/2015 20:17:31','17,3', 'RA03');
execute insertartiradas('RA0342131,8468171296', '30', '07/05/2015 20:19:25','-17,2', 'RA03');
execute insertartiradas('RA0342131,8486805556', '13', '07/05/2015 20:22:06','17,1', 'RA03');
execute insertartiradas('RA0342131,8498958333', '25', '07/05/2015 20:23:51','-17,1', 'RA03');
execute insertartiradas('RA0342131,850775463', '28', '07/05/2015 20:25:07','18,6', 'RA03');
execute insertartiradas('RA0342131,8523611111', '14', '07/05/2015 20:27:24','-20,2', 'RA03');
execute insertartiradas('RA0342131,8534143519', '2', '07/05/2015 20:28:55','19,7', 'RA03');
execute insertartiradas('RA0342131,8543287037', '22', '07/05/2015 20:30:14','-20,2', 'RA03');
execute insertartiradas('RA0342131,8551967593', '36', '07/05/2015 20:31:29','19,1', 'RA03');
execute insertartiradas('RA0342131,8561458333', '27', '07/05/2015 20:32:51','-18', 'RA03');
execute insertartiradas('RA0342131,8570023148', '32', '07/05/2015 20:34:05','19', 'RA03');
execute insertartiradas('RA0342131,858125', '20', '07/05/2015 20:35:42','-18,7', 'RA03');
execute insertartiradas('RA0342131,8590509259', '26', '07/05/2015 20:37:02','19', 'RA03');
execute insertartiradas('RA0342131,8600578704', '6', '07/05/2015 20:38:29','-18,8', 'RA03');
execute insertartiradas('RA0342131,8606944444', '8', '07/05/2015 20:39:24','17,2', 'RA03');
execute insertartiradas('RA0342131,8614583333', '33', '07/05/2015 20:40:30','-17,7', 'RA03');
execute insertartiradas('RA0342131,8628356481', '35', '07/05/2015 20:42:29','20,6', 'RA03');
execute insertartiradas('RA0342131,8635532407', '36', '07/05/2015 20:43:31','-18,9', 'RA03');
execute insertartiradas('RA0342131,8645254629', '16', '07/05/2015 20:44:55','16,8', 'RA03');
execute insertartiradas('RA0342131,8652430556', '4', '07/05/2015 20:45:57','-18,9', 'RA03');
execute insertartiradas('RA0342131,8660300926', '33', '07/05/2015 20:47:05','18,5', 'RA03');
execute insertartiradas('RA0342131,8667824074', '27', '07/05/2015 20:48:10','-17,9', 'RA03');
execute insertartiradas('RA0342131,8683333333', '18', '07/05/2015 20:50:24','15,1', 'RA03');
execute insertartiradas('RA0342131,8692824074', '4', '07/05/2015 20:51:46','-18,6', 'RA03');
execute insertartiradas('RA0342131,8703009259', '36', '07/05/2015 20:53:14','17,5', 'RA03');
execute insertartiradas('RA0342131,8710185185', '33', '07/05/2015 20:54:16','-18,3', 'RA03');
execute insertartiradas('RA0342131,8722453704', '2', '07/05/2015 20:56:02','19', 'RA03');
execute insertartiradas('RA0342131,873275463', '10', '07/05/2015 20:57:31','-18,5', 'RA03');
execute insertartiradas('RA0342131,8743402778', '10', '07/05/2015 20:59:03','19,4', 'RA03');
execute insertartiradas('RA0342131,8752314815', '21', '07/05/2015 21:00:20','-19,2', 'RA03');
execute insertartiradas('RA0342131,8761574074', '24', '07/05/2015 21:01:40','17,6', 'RA03');
execute insertartiradas('RA0342131,8769212963', '7', '07/05/2015 21:02:46','-16,8', 'RA03');
execute insertartiradas('RA0342131,8779398148', '15', '07/05/2015 21:04:14','19,9', 'RA03');
execute insertartiradas('RA0342131,8788425926', '34', '07/05/2015 21:05:32','-22,1', 'RA03');
execute insertartiradas('RA0342131,8794328704', '14', '07/05/2015 21:06:23','22,6', 'RA03');
execute insertartiradas('RA0342131,8802430556', '33', '07/05/2015 21:07:33','-20,4', 'RA03');
execute insertartiradas('RA0342131,8809143519', '36', '07/05/2015 21:08:31','23,6', 'RA03');
execute insertartiradas('RA0342131,8814583333', '4', '07/05/2015 21:09:18','-21,4', 'RA03');
execute insertartiradas('RA0342131,8822106481', '5', '07/05/2015 21:10:23','25,8', 'RA03');
execute insertartiradas('RA0342131,8830092593', '25', '07/05/2015 21:11:32','-22,9', 'RA03');
execute insertartiradas('RA0342131,8836574074', '36', '07/05/2015 21:12:28','26', 'RA03');
execute insertartiradas('RA0342131,884212963', '17', '07/05/2015 21:13:16','-25', 'RA03');
execute insertartiradas('RA0342131,8847222222', '29', '07/05/2015 21:14:00','23,2', 'RA03');
execute insertartiradas('RA0342131,8854861111', '13', '07/05/2015 21:15:06','-21,9', 'RA03');
execute insertartiradas('RA0342131,8859490741', '36', '07/05/2015 21:15:46','21,5', 'RA03');
execute insertartiradas('RA0342131,8865509259', '1', '07/05/2015 21:16:38','-21,7', 'RA03');
execute insertartiradas('RA0342131,8870601852', '23', '07/05/2015 21:17:22','23', 'RA03');
execute insertartiradas('RA0342131,8875578704', '9', '07/05/2015 21:18:05','-22,6', 'RA03');
execute insertartiradas('RA0342131,8883564815', '29', '07/05/2015 21:19:14','22,8', 'RA03');
execute insertartiradas('RA0342131,8891666667', '18', '07/05/2015 21:20:24','-17,3', 'RA03');
execute insertartiradas('RA0342131,8896759259', '25', '07/05/2015 21:21:08','21,8', 'RA03');
execute insertartiradas('RA0342131,890150463', '3', '07/05/2015 21:21:49','-22,1', 'RA03');
execute insertartiradas('RA0342131,8913657407', '33', '07/05/2015 21:23:34','20,8', 'RA03');
execute insertartiradas('RA0342131,8922916667', '34', '07/05/2015 21:24:54','-22,4', 'RA03');
execute insertartiradas('RA0342131,8930092593', '31', '07/05/2015 21:25:56','20,7', 'RA03');
execute insertartiradas('RA0342131,8937152777', '17', '07/05/2015 21:26:57','-18,8', 'RA03');
execute insertartiradas('RA0342131,8946064815', '28', '07/05/2015 21:28:14','22', 'RA03');
execute insertartiradas('RA0342131,8952777778', '15', '07/05/2015 21:29:12','-20,4', 'RA03');
execute insertartiradas('RA0342131,8965625', '13', '07/05/2015 21:31:03','21,8', 'RA03');
execute insertartiradas('RA0342131,8971527778', '11', '07/05/2015 21:31:54','-20,5', 'RA03');
execute insertartiradas('RA0342131,8980439815', '14', '07/05/2015 21:33:11','22,6', 'RA03');
execute insertartiradas('RA0342131,8990509259', '15', '07/05/2015 21:34:38','-20,7', 'RA03');
execute insertartiradas('RA0342131,8998958333', '28', '07/05/2015 21:35:51','23,3', 'RA03');
execute insertartiradas('RA0342131,9007175926', '13', '07/05/2015 21:37:02','-17,4', 'RA03');
execute insertartiradas('RA0342131,9011111111', '15', '07/05/2015 21:37:36','25,5', 'RA03');
execute insertartiradas('RA0342131,9018055556', '29', '07/05/2015 21:38:36','-19,2', 'RA03');
execute insertartiradas('RA0342131,902662037', '5', '07/05/2015 21:39:50','16,1', 'RA03');
execute insertartiradas('RA0342131,9034606482', '5', '07/05/2015 21:40:59','-13,9', 'RA03');
execute insertartiradas('RA0342131,9043287037', '10', '07/05/2015 21:42:14','15,7', 'RA03');
execute insertartiradas('RA0342131,9050462963', '18', '07/05/2015 21:43:16','-12,3', 'RA03');
execute insertartiradas('RA0342131,9061342593', '32', '07/05/2015 21:44:50','18', 'RA03');
execute insertartiradas('RA0342131,9071527778', '10', '07/05/2015 21:46:18','-13', 'RA03');
execute insertartiradas('RA0342131,9083564815', '2', '07/05/2015 21:48:02','16,9', 'RA03');
execute insertartiradas('RA0342131,912349537', '13', '07/05/2015 21:53:47','-16,2', 'RA03');
execute insertartiradas('RA0342131,9129282407', '14', '07/05/2015 21:54:37','18,3', 'RA03');
execute insertartiradas('RA0342131,9136805556', '27', '07/05/2015 21:55:42','-18,8', 'RA03');
execute insertartiradas('RA0342131,9143171296', '7', '07/05/2015 21:56:37','13,4', 'RA03');
execute insertartiradas('RA0342131,9150347222', '27', '07/05/2015 21:57:39','-16,8', 'RA03');
execute insertartiradas('RA0342131,9157407407', '34', '07/05/2015 21:58:40','14,5', 'RA03');
execute insertartiradas('RA0342131,9163310185', '29', '07/05/2015 21:59:31','-19,8', 'RA03');
execute insertartiradas('RA0342131,9171412037', '14', '07/05/2015 22:00:41','14', 'RA03');
execute insertartiradas('RA0342131,9181365741', '36', '07/05/2015 22:02:07','-18,5', 'RA03');
execute insertartiradas('RA0342131,9186574074', '2', '07/05/2015 22:02:52','15,5', 'RA03');
execute insertartiradas('RA0342131,9194675926', '21', '07/05/2015 22:04:02','-15,4', 'RA03');
execute insertartiradas('RA0342131,9202314815', '24', '07/05/2015 22:05:08','12,4', 'RA03');
execute insertartiradas('RA0342131,9211921296', '33', '07/05/2015 22:06:31','-16,5', 'RA03');
execute insertartiradas('RA0342131,9221759259', '0', '07/05/2015 22:07:56','15,9', 'RA03');
execute insertartiradas('RA0342131,9229398148', '33', '07/05/2015 22:09:02','-16,1', 'RA03');
execute insertartiradas('RA0342131,9238425926', '24', '07/05/2015 22:10:20','16,2', 'RA03');
execute insertartiradas('RA0342131,9246875', '3', '07/05/2015 22:11:33','-17', 'RA03');
execute insertartiradas('RA0342131,9253356481', '22', '07/05/2015 22:12:29','16,2', 'RA03');
execute insertartiradas('RA0342131,9262847222', '8', '07/05/2015 22:13:51','-15,2', 'RA03');
execute insertartiradas('RA0342131,9269791667', '5', '07/05/2015 22:14:51','15,2', 'RA03');
execute insertartiradas('RA0342131,9276388889', '17', '07/05/2015 22:15:48','-16,7', 'RA03');
execute insertartiradas('RA0342131,928275463', '24', '07/05/2015 22:16:43','16,8', 'RA03');
execute insertartiradas('RA0342131,9288657407', '9', '07/05/2015 22:17:34','-15,7', 'RA03');
execute insertartiradas('RA0342131,9295486111', '13', '07/05/2015 22:18:33','16,4', 'RA03');
execute insertartiradas('RA0342131,9301388889', '4', '07/05/2015 22:19:24','-15,1', 'RA03');
execute insertartiradas('RA0342131,9331481481', '32', '07/05/2015 22:23:44','11,4', 'RA03');
execute insertartiradas('RA0342131,9337962963', '21', '07/05/2015 22:24:40','-16,1', 'RA03');
execute insertartiradas('RA0342131,9348379629', '11', '07/05/2015 22:26:10','14,3', 'RA03');
execute insertartiradas('RA0342131,9357638889', '33', '07/05/2015 22:27:30','-15,1', 'RA03');
execute insertartiradas('RA0342131,9368171296', '21', '07/05/2015 22:29:01','15,2', 'RA03');
execute insertartiradas('RA0342131,9383796296', '9', '07/05/2015 22:31:16','-16', 'RA03');
execute insertartiradas('RA0342131,9390046296', '11', '07/05/2015 22:32:10','15,5', 'RA03');
execute insertartiradas('RA0342131,94', '15', '07/05/2015 22:33:36','-16,9', 'RA03');
execute insertartiradas('RA0342131,9411574074', '13', '07/05/2015 22:35:16','16,6', 'RA03');
execute insertartiradas('RA0342131,9421296296', '22', '07/05/2015 22:36:40','-15,3', 'RA03');
execute insertartiradas('RA0342131,9431597222', '36', '07/05/2015 22:38:09','15,5', 'RA03');
execute insertartiradas('RA0342131,9437731481', '28', '07/05/2015 22:39:02','-17,6', 'RA03');
execute insertartiradas('RA0342131,9446412037', '5', '07/05/2015 22:40:17','14,6', 'RA03');
execute insertartiradas('RA0342131,9478240741', '13', '07/05/2015 22:44:52','-14,5', 'RA03');
execute insertartiradas('RA0342131,9486111111', '32', '07/05/2015 22:46:00','14', 'RA03');
execute insertartiradas('RA0342131,9494212963', '0', '07/05/2015 22:47:10','-14,3', 'RA03');
execute insertartiradas('RA0342131,9503240741', '1', '07/05/2015 22:48:28','14,4', 'RA03');
execute insertartiradas('RA0342131,9509837963', '10', '07/05/2015 22:49:25','-14,4', 'RA03');
execute insertartiradas('RA0342131,9518055556', '10', '07/05/2015 22:50:36','16,1', 'RA03');
execute insertartiradas('RA0342131,9525694444', '5', '07/05/2015 22:51:42','-16,1', 'RA03');
execute insertartiradas('RA0342131,953287037', '24', '07/05/2015 22:52:44','14,6', 'RA03');
execute insertartiradas('RA0342131,9537962963', '23', '07/05/2015 22:53:28','-15,6', 'RA03');
execute insertartiradas('RA0342131,9542361111', '1', '07/05/2015 22:54:06','14,9', 'RA03');
execute insertartiradas('RA0342131,9548032407', '0', '07/05/2015 22:54:55','-14,7', 'RA03');
execute insertartiradas('RA0342131,9554050926', '4', '07/05/2015 22:55:47','15,7', 'RA03');
execute insertartiradas('RA0342131,9558101852', '5', '07/05/2015 22:56:22','-14,2', 'RA03');
execute insertartiradas('RA0342131,956400463', '30', '07/05/2015 22:57:13','13,1', 'RA03');
execute insertartiradas('RA0342131,9567708333', '18', '07/05/2015 22:57:45','-13,8', 'RA03');
execute insertartiradas('RA0342131,9577662037', '29', '07/05/2015 22:59:11','13,3', 'RA03');
execute insertartiradas('RA0342131,9584375', '28', '07/05/2015 23:00:09','-14,4', 'RA03');
execute insertartiradas('RA0342131,9590162037', '36', '07/05/2015 23:00:59','14,8', 'RA03');
execute insertartiradas('RA0342131,959837963', '18', '07/05/2015 23:02:10','-16,9', 'RA03');
execute insertartiradas('RA0342131,9607407407', '16', '07/05/2015 23:03:28','19,1', 'RA03');
execute insertartiradas('RA0342131,9613425926', '27', '07/05/2015 23:04:20','-17,5', 'RA03');
execute insertartiradas('RA0342131,9618402778', '18', '07/05/2015 23:05:03','17,1', 'RA03');
execute insertartiradas('RA0342131,9624421296', '35', '07/05/2015 23:05:55','-15,5', 'RA03');
execute insertartiradas('RA0342131,9653009259', '16', '07/05/2015 23:10:02','12,7', 'RA03');
execute insertartiradas('RA0342131,9656712963', '14', '07/05/2015 23:10:34','-15,6', 'RA03');
execute insertartiradas('RA0342131,9675347222', '31', '07/05/2015 23:13:15','16,9', 'RA03');
execute insertartiradas('RA0342131,9680439815', '30', '07/05/2015 23:13:59','-15,9', 'RA03');
execute insertartiradas('RA0342131,9687152778', '8', '07/05/2015 23:14:57','18', 'RA03');
execute insertartiradas('RA0342131,9695601852', '17', '07/05/2015 23:16:10','-17,9', 'RA03');
execute insertartiradas('RA0342131,9702893519', '7', '07/05/2015 23:17:13','17,5', 'RA03');
execute insertartiradas('RA0342131,9707523148', '20', '07/05/2015 23:17:53','-16,5', 'RA03');
execute insertartiradas('RA0342131,9713541667', '25', '07/05/2015 23:18:45','16,9', 'RA03');
execute insertartiradas('RA0342131,9719444444', '10', '07/05/2015 23:19:36','-17,5', 'RA03');
execute insertartiradas('RA0342131,9725810185', '34', '07/05/2015 23:20:31','17,7', 'RA03');
execute insertartiradas('RA0342131,9732291667', '15', '07/05/2015 23:21:27','-16,2', 'RA03');
execute insertartiradas('RA0342131,9737268519', '3', '07/05/2015 23:22:10','15,8', 'RA03');
execute insertartiradas('RA0342131,9742939815', '18', '07/05/2015 23:22:59','-17,6', 'RA03');
execute insertartiradas('RA0342131,9749421296', '0', '07/05/2015 23:23:55','18,4', 'RA03');
execute insertartiradas('RA0342131,9754976852', '11', '07/05/2015 23:24:43','-19,6', 'RA03');
execute insertartiradas('RA0342131,9760648148', '18', '07/05/2015 23:25:32','15,8', 'RA03');
execute insertartiradas('RA0342131,9767013889', '19', '07/05/2015 23:26:27','-17,4', 'RA03');
execute insertartiradas('RA0342131,9772222222', '32', '07/05/2015 23:27:12','16,2', 'RA03');
execute insertartiradas('RA0342131,9777662037', '17', '07/05/2015 23:27:59','-17', 'RA03');
execute insertartiradas('RA0342131,9783217593', '26', '07/05/2015 23:28:47','15,5', 'RA03');
execute insertartiradas('RA0342131,9787268518', '29', '07/05/2015 23:29:22','-17,8', 'RA03');
execute insertartiradas('RA0342131,9790972222', '17', '07/05/2015 23:29:54','13,5', 'RA03');
execute insertartiradas('RA0342131,9795486111', '36', '07/05/2015 23:30:33','-14,6', 'RA03');
execute insertartiradas('RA0342131,9798958333', '34', '07/05/2015 23:31:03','13,9', 'RA03');
execute insertartiradas('RA0342131,9803240741', '0', '07/05/2015 23:31:40','-17,7', 'RA03');
execute insertartiradas('RA0342131,9814814815', '22', '07/05/2015 23:33:20','16,8', 'RA03');
execute insertartiradas('RA0342131,9824768519', '5', '07/05/2015 23:34:46','-20,5', 'RA03');
execute insertartiradas('RA0342131,9829282407', '12', '07/05/2015 23:35:25','16,1', 'RA03');
execute insertartiradas('RA0342131,9835416667', '21', '07/05/2015 23:36:18','-16,4', 'RA03');
execute insertartiradas('RA0342131,9843287037', '14', '07/05/2015 23:37:26','17,5', 'RA03');
execute insertartiradas('RA0342131,9854166667', '34', '07/05/2015 23:39:00','-17,8', 'RA03');
execute insertartiradas('RA0342131,9859027778', '8', '07/05/2015 23:39:42','17,3', 'RA03');
execute insertartiradas('RA0342131,986724537', '31', '07/05/2015 23:40:53','-18,4', 'RA03');
execute insertartiradas('RA0342131,9873148148', '33', '07/05/2015 23:41:44','16,5', 'RA03');
execute insertartiradas('RA0342131,9879050926', '8', '07/05/2015 23:42:35','-20,9', 'RA03');
execute insertartiradas('RA0342131,9884375', '5', '07/05/2015 23:43:21','15,9', 'RA03');
execute insertartiradas('RA0342131,989375', '19', '07/05/2015 23:44:42','-20,6', 'RA03');
execute insertartiradas('RA0342131,9899884259', '21', '07/05/2015 23:45:35','17,6', 'RA03');
execute insertartiradas('RA0342131,9905324074', '28', '07/05/2015 23:46:22','-16,1', 'RA03');
execute insertartiradas('RA0342131,9917592593', '24', '07/05/2015 23:48:08','14,7', 'RA03');
execute insertartiradas('RA0342131,9929050926', '27', '07/05/2015 23:49:47','-22,4', 'RA03');
execute insertartiradas('RA0342131,9943518518', '9', '07/05/2015 23:51:52','16,9', 'RA03');
execute insertartiradas('RA0342131,9958217593', '7', '07/05/2015 23:53:59','-22,1', 'RA03');
execute insertartiradas('RA0342131,9975231482', '23', '07/05/2015 23:56:26','19,6', 'RA03');
execute insertartiradas('RA0342131,9990393519', '19', '07/05/2015 23:58:37','-20,6', 'RA03');
execute insertartiradas('RA0342132,0005208333', '33', '08/05/2015 00:00:45','17,7', 'RA03');
execute insertartiradas('RA0342132,0021180556', '17', '08/05/2015 00:03:03','-19,2', 'RA03');
execute insertartiradas('RA0342132,0039236111', '32', '08/05/2015 00:05:39','15,7', 'RA03');
execute insertartiradas('RA0342132,0056828704', '4', '08/05/2015 00:08:11','-22,8', 'RA03');
execute insertartiradas('RA0342132,0077314815', '33', '08/05/2015 00:11:08','17', 'RA03');
execute insertartiradas('RA0342132,009375', '27', '08/05/2015 00:13:30','-20,7', 'RA03');
execute insertartiradas('RA0342132,0113425926', '2', '08/05/2015 00:16:20','17,6', 'RA03');
execute insertartiradas('RA0342132,0128240741', '14', '08/05/2015 00:18:28','-20,7', 'RA03');
execute insertartiradas('RA0342132,0143634259', '17', '08/05/2015 00:20:41','18', 'RA03');
execute insertartiradas('RA0342132,0163310185', '26', '08/05/2015 00:23:31','-18,5', 'RA03');
execute insertartiradas('RA0342132,0186921296', '10', '08/05/2015 00:26:55','17,4', 'RA03');
execute insertartiradas('RA0342132,0205902778', '24', '08/05/2015 00:29:39','-21,4', 'RA03');
execute insertartiradas('RA0342132,0226041667', '22', '08/05/2015 00:32:33','18,8', 'RA03');
execute insertartiradas('RA0342132,0239814815', '2', '08/05/2015 00:34:32','-18,2', 'RA03');
execute insertartiradas('RA0342132,0250462963', '21', '08/05/2015 00:36:04','17,2', 'RA03');
execute insertartiradas('RA0342132,0262268518', '5', '08/05/2015 00:37:46','-18,3', 'RA03');
execute insertartiradas('RA0342132,0277662037', '28', '08/05/2015 00:39:59','18,9', 'RA03');
execute insertartiradas('RA0342132,0299305556', '34', '08/05/2015 00:43:06','-14,7', 'RA03');
execute insertartiradas('RA0342132,0318171296', '12', '08/05/2015 00:45:49','13', 'RA03');
execute insertartiradas('RA0342132,0333796296', '14', '08/05/2015 00:48:04','-15,9', 'RA03');
execute insertartiradas('RA0342132,0343518518', '35', '08/05/2015 00:49:28','13,4', 'RA03');
execute insertartiradas('RA0342132,035', '23', '08/05/2015 00:50:24','-15', 'RA03');
execute insertartiradas('RA0342132,0362962963', '31', '08/05/2015 00:52:16','13,9', 'RA03');
execute insertartiradas('RA0342132,0372800926', '32', '08/05/2015 00:53:41','-16,3', 'RA03');
execute insertartiradas('RA0342132,0383796296', '14', '08/05/2015 00:55:16','14', 'RA03');
execute insertartiradas('RA0342132,0393518519', '25', '08/05/2015 00:56:40','-14,6', 'RA03');
execute insertartiradas('RA0342132,0401851852', '7', '08/05/2015 00:57:52','14,9', 'RA03');
execute insertartiradas('RA0342132,0412731481', '14', '08/05/2015 00:59:26','-15,2', 'RA03');
execute insertartiradas('RA0342132,0424074074', '33', '08/05/2015 01:01:04','12,3', 'RA03');
execute insertartiradas('RA0342132,0431712963', '30', '08/05/2015 01:02:10','-14,9', 'RA03');
execute insertartiradas('RA0342132,0441319444', '12', '08/05/2015 01:03:33','12,6', 'RA03');
execute insertartiradas('RA0342132,0448842593', '33', '08/05/2015 01:04:38','-14,8', 'RA03');
execute insertartiradas('RA0342132,0455671296', '21', '08/05/2015 01:05:37','13,3', 'RA03');
execute insertartiradas('RA0342132,046574074', '21', '08/05/2015 01:07:04','-17,1', 'RA03');
execute insertartiradas('RA0342132,0472916667', '18', '08/05/2015 01:08:06','11,8', 'RA03');
execute insertartiradas('RA0342132,0480208333', '26', '08/05/2015 01:09:09','-15,7', 'RA03');
execute insertartiradas('RA0342132,0490393518', '5', '08/05/2015 01:10:37','13,1', 'RA03');
execute insertartiradas('RA0342132,0496412037', '4', '08/05/2015 01:11:29','-15', 'RA03');
execute insertartiradas('RA0342132,0502083333', '8', '08/05/2015 01:12:18','12,1', 'RA03');
execute insertartiradas('RA0342132,0507175926', '3', '08/05/2015 01:13:02','-14,9', 'RA03');
execute insertartiradas('RA0342132,0511921296', '28', '08/05/2015 01:13:43','13,3', 'RA03');
execute insertartiradas('RA0342132,0515740741', '11', '08/05/2015 01:14:16','-14,2', 'RA03');
execute insertartiradas('RA0342132,0523148148', '1', '08/05/2015 01:15:20','13,1', 'RA03');
execute insertartiradas('RA0342132,0530439815', '30', '08/05/2015 01:16:23','-15,7', 'RA03');
execute insertartiradas('RA0342132,0541435185', '20', '08/05/2015 01:17:58','12,7', 'RA03');
execute insertartiradas('RA0342132,0552430556', '6', '08/05/2015 01:19:33','-16,4', 'RA03');
execute insertartiradas('RA0342132,0562615741', '22', '08/05/2015 01:21:01','12,4', 'RA03');
execute insertartiradas('RA0342132,0573263889', '5', '08/05/2015 01:22:33','-19,1', 'RA03');
execute insertartiradas('RA0342132,0586226852', '9', '08/05/2015 01:24:25','19,6', 'RA03');
execute insertartiradas('RA0342132,0596296296', '32', '08/05/2015 01:25:52','-20,5', 'RA03');
execute insertartiradas('RA0342132,0607060185', '4', '08/05/2015 01:27:25','19,8', 'RA03');
execute insertartiradas('RA0342132,0618981481', '0', '08/05/2015 01:29:08','-18,7', 'RA03');
execute insertartiradas('RA0342132,0636458333', '10', '08/05/2015 01:31:39','13,1', 'RA03');
execute insertartiradas('RA0342132,064224537', '9', '08/05/2015 01:32:29','-14,1', 'RA03');
execute insertartiradas('RA0342132,0652083333', '4', '08/05/2015 01:33:54','19,3', 'RA03');
execute insertartiradas('RA0342132,0657060185', '25', '08/05/2015 01:34:37','-18,4', 'RA03');
execute insertartiradas('RA0342132,0667708333', '5', '08/05/2015 01:36:09','19', 'RA03');
execute insertartiradas('RA0342132,0672916667', '16', '08/05/2015 01:36:54','-18,3', 'RA03');
execute insertartiradas('RA0342132,0681365741', '8', '08/05/2015 01:38:07','17,8', 'RA03');
execute insertartiradas('RA0342132,0687615741', '4', '08/05/2015 01:39:01','-17', 'RA03');
execute insertartiradas('RA0342132,0693402778', '30', '08/05/2015 01:39:51','17,9', 'RA03');
execute insertartiradas('RA0342132,070625', '14', '08/05/2015 01:41:42','-19', 'RA03');
execute insertartiradas('RA0342132,0740393518', '2', '08/05/2015 01:46:37','18,7', 'RA03');
execute insertartiradas('RA0342132,0744675926', '23', '08/05/2015 01:47:14','-19,7', 'RA03');
execute insertartiradas('RA0342132,0751273148', '8', '08/05/2015 01:48:11','19,3', 'RA03');
execute insertartiradas('RA0342132,0761458333', '23', '08/05/2015 01:49:39','-19,4', 'RA03');
execute insertartiradas('RA0342132,077349537', '30', '08/05/2015 01:51:23','10,9', 'RA03');
execute insertartiradas('RA0342132,0782175926', '18', '08/05/2015 01:52:38','-18,7', 'RA03');
execute insertartiradas('RA0342132,078900463', '24', '08/05/2015 01:53:37','18,8', 'RA03');
execute insertartiradas('RA0342132,079525463', '9', '08/05/2015 01:54:31','-15,9', 'RA03');
execute insertartiradas('RA0342132,0800462963', '18', '08/05/2015 01:55:16','17', 'RA03');
execute insertartiradas('RA0342132,0805902778', '9', '08/05/2015 01:56:03','-14,8', 'RA03');
execute insertartiradas('RA0342132,0812268518', '11', '08/05/2015 01:56:58','17,9', 'RA03');
execute insertartiradas('RA0342132,082650463', '35', '08/05/2015 01:59:01','-10,3', 'RA03');
execute insertartiradas('RA0342132,0837731482', '36', '08/05/2015 02:00:38','18,4', 'RA03');
execute insertartiradas('RA0342132,0849652778', '36', '08/05/2015 02:02:21','-17,4', 'RA03');
execute insertartiradas('RA0342132,0858449074', '22', '08/05/2015 02:03:37','12,8', 'RA03');
execute insertartiradas('RA0342132,0869791667', '35', '08/05/2015 02:05:15','-17,5', 'RA03');
execute insertartiradas('RA0342132,0878703704', '23', '08/05/2015 02:06:32','15', 'RA03');
execute insertartiradas('RA0342132,0886574074', '4', '08/05/2015 02:07:40','-15,6', 'RA03');
execute insertartiradas('RA0342132,0899537037', '28', '08/05/2015 02:09:32','16,6', 'RA03');
execute insertartiradas('RA0342132,0909606482', '14', '08/05/2015 02:10:59','-21,4', 'RA03');
execute insertartiradas('RA0342132,0918981481', '1', '08/05/2015 02:12:20','14,9', 'RA03');
execute insertartiradas('RA0342132,0925231481', '2', '08/05/2015 02:13:14','-17,1', 'RA03');
execute insertartiradas('RA0342132,0931597222', '31', '08/05/2015 02:14:09','17,3', 'RA03');
execute insertartiradas('RA0342132,0940856481', '35', '08/05/2015 02:15:29','-16,1', 'RA03');
execute insertartiradas('RA0342132,0945138889', '14', '08/05/2015 02:16:06','15', 'RA03');
execute insertartiradas('RA0342132,0950115741', '23', '08/05/2015 02:16:49','-16,2', 'RA03');
execute insertartiradas('RA0342132,0957060185', '36', '08/05/2015 02:17:49','16,4', 'RA03');
execute insertartiradas('RA0342132,7114236111', '3', '08/05/2015 17:04:27','19,3', 'RA03');
execute insertartiradas('RA0342132,7119907407', '10', '08/05/2015 17:05:16','-19,7', 'RA03');
execute insertartiradas('RA0342132,7126273148', '22', '08/05/2015 17:06:11','20,4', 'RA03');
execute insertartiradas('RA0342132,7133912037', '19', '08/05/2015 17:07:17','-13,2', 'RA03');
execute insertartiradas('RA0342132,7141666667', '31', '08/05/2015 17:08:24','-10,5', 'RA03');
execute insertartiradas('RA0342132,714837963', '22', '08/05/2015 17:09:22','20,2', 'RA03');
execute insertartiradas('RA0342132,715462963', '26', '08/05/2015 17:10:16','-17,2', 'RA03');
execute insertartiradas('RA0342132,7162962963', '7', '08/05/2015 17:11:28','20', 'RA03');
execute insertartiradas('RA0342132,7167939815', '30', '08/05/2015 17:12:11','-12,8', 'RA03');
execute insertartiradas('RA0342132,7177314815', '36', '08/05/2015 17:13:32','10', 'RA03');
execute insertartiradas('RA0342132,7182060185', '25', '08/05/2015 17:14:13','-17', 'RA03');
execute insertartiradas('RA0342132,7189351852', '36', '08/05/2015 17:15:16','16,1', 'RA03');
execute insertartiradas('RA0342132,7192592593', '27', '08/05/2015 17:15:44','-19,8', 'RA03');
execute insertartiradas('RA0342132,7201736111', '24', '08/05/2015 17:17:03','18,5', 'RA03');
execute insertartiradas('RA0342132,7207638889', '21', '08/05/2015 17:17:54','-12,9', 'RA03');
execute insertartiradas('RA0342132,7216435185', '23', '08/05/2015 17:19:10','20,2', 'RA03');
execute insertartiradas('RA0342132,7222685185', '4', '08/05/2015 17:20:04','-21,3', 'RA03');
execute insertartiradas('RA0342132,7289699074', '0', '08/05/2015 17:29:43','20,3', 'RA03');
execute insertartiradas('RA0342132,7296527777', '18', '08/05/2015 17:30:42','-16,4', 'RA03');
execute insertartiradas('RA0342132,7303587963', '7', '08/05/2015 17:31:43','23,5', 'RA03');
execute insertartiradas('RA0342132,7311689815', '28', '08/05/2015 17:32:53','-19,8', 'RA03');
execute insertartiradas('RA0342132,7321412037', '8', '08/05/2015 17:34:17','22,9', 'RA03');
execute insertartiradas('RA0342132,7340509259', '20', '08/05/2015 17:37:02','-22,7', 'RA03');
execute insertartiradas('RA0342132,7351967593', '34', '08/05/2015 17:38:41','20,9', 'RA03');
execute insertartiradas('RA0342132,7360069444', '15', '08/05/2015 17:39:51','-24,9', 'RA03');
execute insertartiradas('RA0342132,7370601852', '1', '08/05/2015 17:41:22','22,6', 'RA03');
execute insertartiradas('RA0342132,7380324074', '32', '08/05/2015 17:42:46','-23,2', 'RA03');
execute insertartiradas('RA0342132,7393055556', '15', '08/05/2015 17:44:36','23,1', 'RA03');
execute insertartiradas('RA0342132,740474537', '8', '08/05/2015 17:46:17','-21,2', 'RA03');
execute insertartiradas('RA0342132,7420833333', '26', '08/05/2015 17:48:36','22,3', 'RA03');
execute insertartiradas('RA0342132,7430439815', '23', '08/05/2015 17:49:59','-22,5', 'RA03');
execute insertartiradas('RA0342132,7439351852', '35', '08/05/2015 17:51:16','23,6', 'RA03');
execute insertartiradas('RA0342132,7449768518', '24', '08/05/2015 17:52:46','-21,4', 'RA03');
execute insertartiradas('RA0342132,7459606481', '27', '08/05/2015 17:54:11','28,1', 'RA03');
execute insertartiradas('RA0342132,747025463', '7', '08/05/2015 17:55:43','-21,7', 'RA03');
execute insertartiradas('RA0342132,7477662037', '1', '08/05/2015 17:56:47','26,1', 'RA03');
execute insertartiradas('RA0342132,7484027778', '18', '08/05/2015 17:57:42','-19,3', 'RA03');
execute insertartiradas('RA0342132,7491087963', '1', '08/05/2015 17:58:43','25,4', 'RA03');
execute insertartiradas('RA0342132,7498842593', '15', '08/05/2015 17:59:50','-18', 'RA03');
execute insertartiradas('RA0342132,7510763889', '36', '08/05/2015 18:01:33','24,7', 'RA03');
execute insertartiradas('RA0342132,7521064815', '13', '08/05/2015 18:03:02','-21,6', 'RA03');
execute insertartiradas('RA0342132,7531481481', '36', '08/05/2015 18:04:32','22,2', 'RA03');
execute insertartiradas('RA0342132,7542476852', '9', '08/05/2015 18:06:07','-21,3', 'RA03');
execute insertartiradas('RA0342132,7552546296', '25', '08/05/2015 18:07:34','24,3', 'RA03');
execute insertartiradas('RA0342132,7563194444', '25', '08/05/2015 18:09:06','-21,3', 'RA03');
execute insertartiradas('RA0342132,7572916667', '28', '08/05/2015 18:10:30','19,4', 'RA03');
execute insertartiradas('RA0342132,7587037037', '17', '08/05/2015 18:12:32','-21,9', 'RA03');
execute insertartiradas('RA0342132,7599537037', '35', '08/05/2015 18:14:20','22,3', 'RA03');
execute insertartiradas('RA0342132,76125', '19', '08/05/2015 18:16:12','-21,2', 'RA03');
execute insertartiradas('RA0342132,7622453704', '2', '08/05/2015 18:17:38','25,2', 'RA03');
execute insertartiradas('RA0342132,7635648148', '24', '08/05/2015 18:19:32','-21,6', 'RA03');
execute insertartiradas('RA0342132,764537037', '34', '08/05/2015 18:20:56','21', 'RA03');
execute insertartiradas('RA0342132,7658333333', '24', '08/05/2015 18:22:48','-21,7', 'RA03');
execute insertartiradas('RA0342132,7668634259', '2', '08/05/2015 18:24:17','18,5', 'RA03');
execute insertartiradas('RA0342132,7678819444', '3', '08/05/2015 18:25:45','-20,3', 'RA03');
execute insertartiradas('RA0342132,7696064815', '19', '08/05/2015 18:28:14','18,8', 'RA03');
execute insertartiradas('RA0342132,7713425926', '9', '08/05/2015 18:30:44','-21,4', 'RA03');
execute insertartiradas('RA0342132,7725462963', '20', '08/05/2015 18:32:28','18,1', 'RA03');
execute insertartiradas('RA0342132,7736342593', '20', '08/05/2015 18:34:02','-21,5', 'RA03');
execute insertartiradas('RA0342132,7747569444', '12', '08/05/2015 18:35:39','17,3', 'RA03');
execute insertartiradas('RA0342132,7762384259', '35', '08/05/2015 18:37:47','-22,8', 'RA03');
execute insertartiradas('RA0342132,7779513889', '22', '08/05/2015 18:40:15','16', 'RA03');
execute insertartiradas('RA0342132,7795138889', '22', '08/05/2015 18:42:30','-20,8', 'RA03');
execute insertartiradas('RA0342132,7814351852', '4', '08/05/2015 18:45:16','19,9', 'RA03');
execute insertartiradas('RA0342132,7831018519', '10', '08/05/2015 18:47:40','-16,2', 'RA03');
execute insertartiradas('RA0342132,7843634259', '26', '08/05/2015 18:49:29','17,8', 'RA03');
execute insertartiradas('RA0342132,7857986111', '22', '08/05/2015 18:51:33','-20,4', 'RA03');
execute insertartiradas('RA0342132,7874189815', '14', '08/05/2015 18:53:53','11,8', 'RA03');
execute insertartiradas('RA0342132,7885300926', '24', '08/05/2015 18:55:29','-16,2', 'RA03');
execute insertartiradas('RA0342132,7892708333', '34', '08/05/2015 18:56:33','19,7', 'RA03');
execute insertartiradas('RA0342132,7902083333', '13', '08/05/2015 18:57:54','-16,1', 'RA03');
execute insertartiradas('RA0342132,7910416667', '11', '08/05/2015 18:59:06','18,5', 'RA03');
execute insertartiradas('RA0342132,7919212963', '26', '08/05/2015 19:00:22','-19,2', 'RA03');
execute insertartiradas('RA0342132,7928240741', '15', '08/05/2015 19:01:40','19,5', 'RA03');
execute insertartiradas('RA0342132,79375', '30', '08/05/2015 19:03:00','-19,9', 'RA03');
execute insertartiradas('RA0342132,7946643519', '16', '08/05/2015 19:04:19','18,7', 'RA03');
execute insertartiradas('RA0342132,795625', '10', '08/05/2015 19:05:42','-18,6', 'RA03');
execute insertartiradas('RA0342132,796412037', '7', '08/05/2015 19:06:50','21,2', 'RA03');
execute insertartiradas('RA0342132,7975925926', '31', '08/05/2015 19:08:32','-20,1', 'RA03');
execute insertartiradas('RA0342132,7986111111', '15', '08/05/2015 19:10:00','21,3', 'RA03');
execute insertartiradas('RA0342132,7994675926', '30', '08/05/2015 19:11:14','-18,8', 'RA03');
execute insertartiradas('RA0342132,8000694444', '14', '08/05/2015 19:12:06','20,1', 'RA03');
execute insertartiradas('RA0342132,8008564815', '0', '08/05/2015 19:13:14','-18,4', 'RA03');
execute insertartiradas('RA0342132,801712963', '2', '08/05/2015 19:14:28','18,1', 'RA03');
execute insertartiradas('RA0342132,802337963', '20', '08/05/2015 19:15:22','-17,9', 'RA03');
execute insertartiradas('RA0342132,8029398148', '29', '08/05/2015 19:16:14','19,5', 'RA03');
execute insertartiradas('RA0342132,8037268519', '32', '08/05/2015 19:17:22','-19,6', 'RA03');
execute insertartiradas('RA0342132,8046875', '32', '08/05/2015 19:18:45','19,5', 'RA03');
execute insertartiradas('RA0342132,8052083333', '25', '08/05/2015 19:19:30','-15,2', 'RA03');
execute insertartiradas('RA0342132,8057291667', '8', '08/05/2015 19:20:15','16,3', 'RA03');
execute insertartiradas('RA0342132,8061458333', '10', '08/05/2015 19:20:51','-16,1', 'RA03');
execute insertartiradas('RA0342132,8066203704', '20', '08/05/2015 19:21:32','16,9', 'RA03');
execute insertartiradas('RA0342132,807337963', '15', '08/05/2015 19:22:34','-17,3', 'RA03');
execute insertartiradas('RA0342132,8077546296', '15', '08/05/2015 19:23:10','17', 'RA03');
execute insertartiradas('RA0342132,8081944444', '16', '08/05/2015 19:23:48','-17,3', 'RA03');
execute insertartiradas('RA0342132,808587963', '30', '08/05/2015 19:24:22','17,9', 'RA03');
execute insertartiradas('RA0342132,8089930556', '17', '08/05/2015 19:24:57','-13,6', 'RA03');
execute insertartiradas('RA0342132,8093981482', '1', '08/05/2015 19:25:32','15,8', 'RA03');
execute insertartiradas('RA0342132,8098842593', '30', '08/05/2015 19:26:14','-15,2', 'RA03');
execute insertartiradas('RA0342132,8102662037', '31', '08/05/2015 19:26:47','16,9', 'RA03');
execute insertartiradas('RA0342132,8108564815', '22', '08/05/2015 19:27:38','-18,2', 'RA03');
execute insertartiradas('RA0342132,8114814815', '25', '08/05/2015 19:28:32','15,8', 'RA03');
execute insertartiradas('RA0342132,8119328704', '36', '08/05/2015 19:29:11','-17,4', 'RA03');
execute insertartiradas('RA0342132,8123611111', '10', '08/05/2015 19:29:48','13,4', 'RA03');
execute insertartiradas('RA0342132,8126851852', '30', '08/05/2015 19:30:16','-15,3', 'RA03');
execute insertartiradas('RA0342132,8132523148', '33', '08/05/2015 19:31:05','15,6', 'RA03');
execute insertartiradas('RA0342132,8139699074', '7', '08/05/2015 19:32:07','-17,9', 'RA03');
execute insertartiradas('RA0342132,8149768518', '26', '08/05/2015 19:33:34','15,9', 'RA03');
execute insertartiradas('RA0342132,8160532407', '32', '08/05/2015 19:35:07','-17,4', 'RA03');
execute insertartiradas('RA0342132,8172916667', '35', '08/05/2015 19:36:54','17,2', 'RA03');
execute insertartiradas('RA0342132,8184259259', '3', '08/05/2015 19:38:32','-18,5', 'RA03');
execute insertartiradas('RA0342132,819375', '18', '08/05/2015 19:39:54','18,9', 'RA03');
execute insertartiradas('RA0342132,8205902778', '10', '08/05/2015 19:41:39','-15,9', 'RA03');
execute insertartiradas('RA0342132,8214583333', '15', '08/05/2015 19:42:54','21,3', 'RA03');
execute insertartiradas('RA0342132,8224074074', '2', '08/05/2015 19:44:16','-17,9', 'RA03');
execute insertartiradas('RA0342132,8230208333', '24', '08/05/2015 19:45:09','16,1', 'RA03');
execute insertartiradas('RA0342132,8236921296', '2', '08/05/2015 19:46:07','-16,6', 'RA03');
execute insertartiradas('RA0342132,8246296296', '12', '08/05/2015 19:47:28','17,2', 'RA03');
execute insertartiradas('RA0342132,8253587963', '21', '08/05/2015 19:48:31','-19,3', 'RA03');
execute insertartiradas('RA0342132,8261574074', '12', '08/05/2015 19:49:40','16,1', 'RA03');
execute insertartiradas('RA0342132,8270601852', '20', '08/05/2015 19:50:58','-19,9', 'RA03');
execute insertartiradas('RA0342132,8282060185', '11', '08/05/2015 19:52:37','16,9', 'RA03');
execute insertartiradas('RA0342132,8293171296', '26', '08/05/2015 19:54:13','-19,4', 'RA03');
execute insertartiradas('RA0342132,8302662037', '24', '08/05/2015 19:55:35','19,9', 'RA03');
execute insertartiradas('RA0342132,8372685185', '26', '08/05/2015 20:05:40','-19,9', 'RA03');
execute insertartiradas('RA0342132,8378819444', '34', '08/05/2015 20:06:33','19,3', 'RA03');
execute insertartiradas('RA0342132,8382638889', '9', '08/05/2015 20:07:06','-19,8', 'RA03');
execute insertartiradas('RA0342132,83875', '23', '08/05/2015 20:07:48','20,2', 'RA03');
execute insertartiradas('RA0342132,839375', '34', '08/05/2015 20:08:42','-21,4', 'RA03');
execute insertartiradas('RA0342132,8398148148', '5', '08/05/2015 20:09:20','19,7', 'RA03');
execute insertartiradas('RA0342132,8403472222', '14', '08/05/2015 20:10:06','-19,3', 'RA03');
execute insertartiradas('RA0342132,8407523148', '10', '08/05/2015 20:10:41','18,5', 'RA03');
execute insertartiradas('RA0342132,8412152778', '17', '08/05/2015 20:11:21','-21,5', 'RA03');
execute insertartiradas('RA0342132,8419675926', '7', '08/05/2015 20:12:26','16', 'RA03');
execute insertartiradas('RA0342132,8425231481', '31', '08/05/2015 20:13:14','-21,1', 'RA03');
execute insertartiradas('RA0342132,8429976852', '6', '08/05/2015 20:13:55','20', 'RA03');
execute insertartiradas('RA0342132,8434143519', '32', '08/05/2015 20:14:31','-21,2', 'RA03');
execute insertartiradas('RA0342132,8438541667', '34', '08/05/2015 20:15:09','19,6', 'RA03');
execute insertartiradas('RA0342132,8443634259', '32', '08/05/2015 20:15:53','-21,1', 'RA03');
execute insertartiradas('RA0342132,8448263889', '6', '08/05/2015 20:16:33','19,1', 'RA03');
execute insertartiradas('RA0342132,8453125', '29', '08/05/2015 20:17:15','-18,4', 'RA03');
execute insertartiradas('RA0342132,8457175926', '32', '08/05/2015 20:17:50','18,4', 'RA03');
execute insertartiradas('RA0342132,8461689815', '23', '08/05/2015 20:18:29','-20,2', 'RA03');
execute insertartiradas('RA0342132,8467361111', '2', '08/05/2015 20:19:18','20,7', 'RA03');
execute insertartiradas('RA0342132,8471759259', '12', '08/05/2015 20:19:56','-19,2', 'RA03');
execute insertartiradas('RA0342132,8481712962', '9', '08/05/2015 20:21:22','17,7', 'RA03');
execute insertartiradas('RA0342132,8488773148', '22', '08/05/2015 20:22:23','-17,9', 'RA03');
execute insertartiradas('RA0342132,8493865741', '30', '08/05/2015 20:23:07','18,1', 'RA03');
execute insertartiradas('RA0342132,8499768519', '10', '08/05/2015 20:23:58','-21,5', 'RA03');
execute insertartiradas('RA0342132,8504861111', '22', '08/05/2015 20:24:42','18,4', 'RA03');
execute insertartiradas('RA0342132,8510069444', '32', '08/05/2015 20:25:27','-21,8', 'RA03');
execute insertartiradas('RA0342132,8516666667', '6', '08/05/2015 20:26:24','16,9', 'RA03');
execute insertartiradas('RA0342132,8521180556', '26', '08/05/2015 20:27:03','-20', 'RA03');
execute insertartiradas('RA0342132,8527083333', '34', '08/05/2015 20:27:54','18,5', 'RA03');
execute insertartiradas('RA0342132,8534027778', '33', '08/05/2015 20:28:54','-21,2', 'RA03');
execute insertartiradas('RA0342132,8537962963', '5', '08/05/2015 20:29:28','19,8', 'RA03');
execute insertartiradas('RA0342132,8542013889', '22', '08/05/2015 20:30:03','-21', 'RA03');
execute insertartiradas('RA0342132,8547106481', '28', '08/05/2015 20:30:47','19,1', 'RA03');
execute insertartiradas('RA0342132,8551041667', '20', '08/05/2015 20:31:21','-19,9', 'RA03');
execute insertartiradas('RA0342132,8554861111', '9', '08/05/2015 20:31:54','20,2', 'RA03');
execute insertartiradas('RA0342132,8560185185', '14', '08/05/2015 20:32:40','-19,1', 'RA03');
execute insertartiradas('RA0342132,8565277778', '4', '08/05/2015 20:33:24','18,2', 'RA03');
execute insertartiradas('RA0342132,8569212963', '35', '08/05/2015 20:33:58','-20,2', 'RA03');
execute insertartiradas('RA0342132,8574652778', '24', '08/05/2015 20:34:45','19,2', 'RA03');
execute insertartiradas('RA0342132,8580671296', '20', '08/05/2015 20:35:37','-19,9', 'RA03');
execute insertartiradas('RA0342132,8585300926', '17', '08/05/2015 20:36:17','19,9', 'RA03');
execute insertartiradas('RA0342132,8591319444', '8', '08/05/2015 20:37:09','-20', 'RA03');
execute insertartiradas('RA0342132,8598263889', '29', '08/05/2015 20:38:09','21,2', 'RA03');
execute insertartiradas('RA0342132,8606712963', '7', '08/05/2015 20:39:22','-20,9', 'RA03');
execute insertartiradas('RA0342132,8615740741', '20', '08/05/2015 20:40:40','21,9', 'RA03');
execute insertartiradas('RA0342132,862662037', '28', '08/05/2015 20:42:14','-19,9', 'RA03');
execute insertartiradas('RA0342132,8633912037', '13', '08/05/2015 20:43:17','19', 'RA03');
execute insertartiradas('RA0342132,8640162037', '16', '08/05/2015 20:44:11','-21', 'RA03');
execute insertartiradas('RA0342132,8645138889', '26', '08/05/2015 20:44:54','17,7', 'RA03');
execute insertartiradas('RA0342132,8655324074', '22', '08/05/2015 20:46:22','-21,9', 'RA03');
execute insertartiradas('RA0342132,8663310185', '30', '08/05/2015 20:47:31','13', 'RA03');
execute insertartiradas('RA0342132,8673148148', '8', '08/05/2015 20:48:56','-21,4', 'RA03');
execute insertartiradas('RA0342132,8683333333', '9', '08/05/2015 20:50:24','19,6', 'RA03');
execute insertartiradas('RA0342132,8689351852', '11', '08/05/2015 20:51:16','-20,4', 'RA03');
execute insertartiradas('RA0342132,8701041667', '6', '08/05/2015 20:52:57','21,6', 'RA03');
execute insertartiradas('RA0342132,8708217593', '14', '08/05/2015 20:53:59','-17,8', 'RA03');
execute insertartiradas('RA0342132,8717361111', '2', '08/05/2015 20:55:18','17,6', 'RA03');
execute insertartiradas('RA0342132,8727199074', '36', '08/05/2015 20:56:43','-19,3', 'RA03');
execute insertartiradas('RA0342132,8736458333', '23', '08/05/2015 20:58:03','16,8', 'RA03');
execute insertartiradas('RA0342132,8747453704', '3', '08/05/2015 20:59:38','-18,5', 'RA03');
execute insertartiradas('RA0342132,8758217593', '16', '08/05/2015 21:01:11','17,5', 'RA03');
execute insertartiradas('RA0342132,8765509259', '33', '08/05/2015 21:02:14','-20,3', 'RA03');
execute insertartiradas('RA0342132,8776967593', '36', '08/05/2015 21:03:53','17,4', 'RA03');
execute insertartiradas('RA0342132,8788541667', '8', '08/05/2015 21:05:33','-18,2', 'RA03');
execute insertartiradas('RA0342132,8799768519', '11', '08/05/2015 21:07:10','19,6', 'RA03');
execute insertartiradas('RA0342132,8809606481', '28', '08/05/2015 21:08:35','-21,4', 'RA03');
execute insertartiradas('RA0342132,8819907407', '18', '08/05/2015 21:10:04','14,5', 'RA03');
execute insertartiradas('RA0342132,8828356481', '33', '08/05/2015 21:11:17','-15,9', 'RA03');
execute insertartiradas('RA0342132,8837037037', '18', '08/05/2015 21:12:32','15,1', 'RA03');
execute insertartiradas('RA0342132,8847222222', '20', '08/05/2015 21:14:00','-21,4', 'RA03');
execute insertartiradas('RA0342132,8855902778', '15', '08/05/2015 21:15:15','13,6', 'RA03');
execute insertartiradas('RA0342132,8862152778', '30', '08/05/2015 21:16:09','-19,6', 'RA03');
execute insertartiradas('RA0342132,8870833333', '32', '08/05/2015 21:17:24','12', 'RA03');
execute insertartiradas('RA0342132,8878356482', '8', '08/05/2015 21:18:29','-21,1', 'RA03');
execute insertartiradas('RA0342132,8885532407', '15', '08/05/2015 21:19:31','16,9', 'RA03');
execute insertartiradas('RA0342132,8891550926', '24', '08/05/2015 21:20:23','-20,3', 'RA03');
execute insertartiradas('RA0342132,889849537', '32', '08/05/2015 21:21:23','14,7', 'RA03');
execute insertartiradas('RA0342132,8904282407', '35', '08/05/2015 21:22:13','-17,5', 'RA03');
execute insertartiradas('RA0342132,8910300926', '25', '08/05/2015 21:23:05','18,1', 'RA03');
execute insertartiradas('RA0342132,8913657407', '12', '08/05/2015 21:23:34','-20,1', 'RA03');
execute insertartiradas('RA0342132,8917476852', '35', '08/05/2015 21:24:07','14,1', 'RA03');
execute insertartiradas('RA0342132,8923148148', '19', '08/05/2015 21:24:56','-19,1', 'RA03');
execute insertartiradas('RA0342132,8927430556', '20', '08/05/2015 21:25:33','14,8', 'RA03');
execute insertartiradas('RA0342132,8930787037', '20', '08/05/2015 21:26:02','-14,2', 'RA03');
execute insertartiradas('RA0342132,8934259259', '15', '08/05/2015 21:26:32','14,9', 'RA03');
execute insertartiradas('RA0342132,8937384259', '22', '08/05/2015 21:26:59','-14,9', 'RA03');
execute insertartiradas('RA0342132,8967708333', '3', '08/05/2015 21:31:21','15,9', 'RA03');
execute insertartiradas('RA0342132,8975694444', '29', '08/05/2015 21:32:30','-18,2', 'RA03');
execute insertartiradas('RA0342132,8983564815', '12', '08/05/2015 21:33:38','16,8', 'RA03');
execute insertartiradas('RA0342132,8991087963', '16', '08/05/2015 21:34:43','-16,9', 'RA03');
execute insertartiradas('RA0342132,8996296296', '11', '08/05/2015 21:35:28','15,3', 'RA03');
execute insertartiradas('RA0342132,9002430556', '31', '08/05/2015 21:36:21','-16,4', 'RA03');
execute insertartiradas('RA0342132,9008101852', '8', '08/05/2015 21:37:10','16,6', 'RA03');
execute insertartiradas('RA0342132,9016898148', '18', '08/05/2015 21:38:26','-17,6', 'RA03');
execute insertartiradas('RA0342132,902650463', '9', '08/05/2015 21:39:49','17,5', 'RA03');
execute insertartiradas('RA0342132,9033333333', '7', '08/05/2015 21:40:48','-19,7', 'RA03');
execute insertartiradas('RA0342132,9043402778', '21', '08/05/2015 21:42:15','16,8', 'RA03');
execute insertartiradas('RA0342132,9053125', '31', '08/05/2015 21:43:39','-18,4', 'RA03');
execute insertartiradas('RA0342132,9065046296', '11', '08/05/2015 21:45:22','17,8', 'RA03');
execute insertartiradas('RA0342132,9077430556', '7', '08/05/2015 21:47:09','20', 'RA03');
execute insertartiradas('RA0342132,9088078704', '4', '08/05/2015 21:48:41','-20,1', 'RA03');
execute insertartiradas('RA0342132,9098032407', '32', '08/05/2015 21:50:07','17,2', 'RA03');
execute insertartiradas('RA0342132,9108912037', '21', '08/05/2015 21:51:41','-18,9', 'RA03');
execute insertartiradas('RA0342132,9121064815', '31', '08/05/2015 21:53:26','19,3', 'RA03');
execute insertartiradas('RA0342132,913761574', '30', '08/05/2015 21:55:49','-17,5', 'RA03');
execute insertartiradas('RA0342132,9150810185', '35', '08/05/2015 21:57:43','17,5', 'RA03');
execute insertartiradas('RA0342132,9163657407', '5', '08/05/2015 21:59:34','-22,4', 'RA03');
execute insertartiradas('RA0342132,9178356481', '11', '08/05/2015 22:01:41','17,8', 'RA03');
execute insertartiradas('RA0342132,9194097222', '12', '08/05/2015 22:03:57','-19,6', 'RA03');
execute insertartiradas('RA0342132,9208217593', '24', '08/05/2015 22:05:59','19,4', 'RA03');
execute insertartiradas('RA0342132,9220486111', '17', '08/05/2015 22:07:45','-21,9', 'RA03');
execute insertartiradas('RA0342132,9230671296', '20', '08/05/2015 22:09:13','23,6', 'RA03');
execute insertartiradas('RA0342132,9244791667', '0', '08/05/2015 22:11:15','-22', 'RA03');
execute insertartiradas('RA0342132,9258564815', '35', '08/05/2015 22:13:14','19,7', 'RA03');
execute insertartiradas('RA0342132,9272222222', '13', '08/05/2015 22:15:12','-22', 'RA03');
execute insertartiradas('RA0342132,9293055556', '0', '08/05/2015 22:18:12','19,3', 'RA03');
execute insertartiradas('RA0342132,9313194444', '20', '08/05/2015 22:21:06','-22,9', 'RA03');
execute insertartiradas('RA0342132,9331597222', '30', '08/05/2015 22:23:45','18,5', 'RA03');
execute insertartiradas('RA0342132,9342592593', '15', '08/05/2015 22:25:20','-21,2', 'RA03');
execute insertartiradas('RA0342132,9356018519', '19', '08/05/2015 22:27:16','20,4', 'RA03');
execute insertartiradas('RA0342132,9364583333', '23', '08/05/2015 22:28:30','-21,8', 'RA03');
execute insertartiradas('RA0342132,9375115741', '24', '08/05/2015 22:30:01','21', 'RA03');
execute insertartiradas('RA0342132,9384837963', '27', '08/05/2015 22:31:25','-22,4', 'RA03');
execute insertartiradas('RA0342132,9394675926', '2', '08/05/2015 22:32:50','20,1', 'RA03');
execute insertartiradas('RA0342132,9402314815', '20', '08/05/2015 22:33:56','-20,6', 'RA03');
execute insertartiradas('RA0342132,9411689815', '31', '08/05/2015 22:35:17','19,7', 'RA03');
execute insertartiradas('RA0342132,9420717593', '3', '08/05/2015 22:36:35','-22,1', 'RA03');
execute insertartiradas('RA0342132,9427083333', '1', '08/05/2015 22:37:30','20,5', 'RA03');
execute insertartiradas('RA0342132,9433449074', '31', '08/05/2015 22:38:25','-19,6', 'RA03');
execute insertartiradas('RA0342132,9440393519', '24', '08/05/2015 22:39:25','17,3', 'RA03');
execute insertartiradas('RA0342132,9445601852', '8', '08/05/2015 22:40:10','-21', 'RA03');
execute insertartiradas('RA0342132,9453472222', '4', '08/05/2015 22:41:18','19,7', 'RA03');
execute insertartiradas('RA0342132,9458449074', '20', '08/05/2015 22:42:01','-19,6', 'RA03');
execute insertartiradas('RA0342132,9464351852', '1', '08/05/2015 22:42:52','19,3', 'RA03');
execute insertartiradas('RA0342132,947037037', '0', '08/05/2015 22:43:44','-22,4', 'RA03');
execute insertartiradas('RA0342132,9475231481', '17', '08/05/2015 22:44:26','20,9', 'RA03');
execute insertartiradas('RA0342132,9480092593', '24', '08/05/2015 22:45:08','-23,3', 'RA03');
execute insertartiradas('RA0342132,9490393518', '5', '08/05/2015 22:46:37','20,6', 'RA03');
execute insertartiradas('RA0342132,9502777778', '36', '08/05/2015 22:48:24','-21,5', 'RA03');
execute insertartiradas('RA0342132,9511921296', '28', '08/05/2015 22:49:43','23,2', 'RA03');
execute insertartiradas('RA0342132,9521643519', '26', '08/05/2015 22:51:07','-23,4', 'RA03');
execute insertartiradas('RA0342132,9533449074', '10', '08/05/2015 22:52:49','23,2', 'RA03');
execute insertartiradas('RA0342132,954375', '24', '08/05/2015 22:54:18','-19,4', 'RA03');
execute insertartiradas('RA0342132,9563888889', '24', '08/05/2015 22:57:12','22,1', 'RA03');
execute insertartiradas('RA0342132,9589699074', '3', '08/05/2015 23:00:55','-20,9', 'RA03');
execute insertartiradas('RA0342132,960625', '13', '08/05/2015 23:03:18','16,2', 'RA03');
execute insertartiradas('RA0342132,9619675925', '33', '08/05/2015 23:05:14','-15,6', 'RA03');
execute insertartiradas('RA0342132,9629861111', '29', '08/05/2015 23:06:42','16,1', 'RA03');
execute insertartiradas('RA0342132,965', '10', '08/05/2015 23:09:36','-17,6', 'RA03');
execute insertartiradas('RA0342132,96625', '2', '08/05/2015 23:11:24','17', 'RA03');
execute insertartiradas('RA0342132,9669444444', '7', '08/05/2015 23:12:24','-18,2', 'RA03');
execute insertartiradas('RA0342132,9675694444', '15', '08/05/2015 23:13:18','16,6', 'RA03');
execute insertartiradas('RA0342132,968449074', '7', '08/05/2015 23:14:34','-18,6', 'RA03');
execute insertartiradas('RA0342132,9690393519', '25', '08/05/2015 23:15:25','13,7', 'RA03');
execute insertartiradas('RA0342132,9695949074', '3', '08/05/2015 23:16:13','-18', 'RA03');
execute insertartiradas('RA0342132,9701851852', '28', '08/05/2015 23:17:04','16,2', 'RA03');
execute insertartiradas('RA0342132,970787037', '13', '08/05/2015 23:17:56','-17,9', 'RA03');
execute insertartiradas('RA0342132,9718402777', '7', '08/05/2015 23:19:27','14,7', 'RA03');
execute insertartiradas('RA0342132,9726157407', '23', '08/05/2015 23:20:34','-18,3', 'RA03');
execute insertartiradas('RA0342132,9734259259', '20', '08/05/2015 23:21:44','14,8', 'RA03');
execute insertartiradas('RA0342132,9739236111', '9', '08/05/2015 23:22:27','-15,5', 'RA03');
execute insertartiradas('RA0342132,9745601852', '20', '08/05/2015 23:23:22','15,7', 'RA03');
execute insertartiradas('RA0342132,9757638889', '24', '08/05/2015 23:25:06','-20,7', 'RA03');
execute insertartiradas('RA0342132,9771875', '35', '08/05/2015 23:27:09','17,5', 'RA03');
execute insertartiradas('RA0342132,9783101852', '35', '08/05/2015 23:28:46','34,9', 'RA03');
execute insertartiradas('RA0342132,9785648148', '18', '08/05/2015 23:29:08','-20,5', 'RA03');
execute insertartiradas('RA0342132,9798148148', '35', '08/05/2015 23:30:56','15,6', 'RA03');
execute insertartiradas('RA0342132,9809837962', '8', '08/05/2015 23:32:37','-21,2', 'RA03');
execute insertartiradas('RA0342132,9821875', '4', '08/05/2015 23:34:21','20,7', 'RA03');
execute insertartiradas('RA0342132,9833449074', '6', '08/05/2015 23:36:01','-19,9', 'RA03');
execute insertartiradas('RA0342132,9844907407', '15', '08/05/2015 23:37:40','17,7', 'RA03');
execute insertartiradas('RA0342132,9856134259', '29', '08/05/2015 23:39:17','-15,6', 'RA03');
execute insertartiradas('RA0342132,9869212963', '23', '08/05/2015 23:41:10','18,3', 'RA03');
execute insertartiradas('RA0342132,9884606482', '5', '08/05/2015 23:43:23','-18,7', 'RA03');
execute insertartiradas('RA0342132,9901273148', '3', '08/05/2015 23:45:47','15,2', 'RA03');
execute insertartiradas('RA0342132,9913888889', '2', '08/05/2015 23:47:36','-20,4', 'RA03');
execute insertartiradas('RA0342132,992650463', '30', '08/05/2015 23:49:25','16,6', 'RA03');
execute insertartiradas('RA0342132,9936342593', '11', '08/05/2015 23:50:50','-17,6', 'RA03');
execute insertartiradas('RA0342132,9947337963', '12', '08/05/2015 23:52:25','14,6', 'RA03');
execute insertartiradas('RA0342132,9959606481', '6', '08/05/2015 23:54:11','-22,1', 'RA03');
execute insertartiradas('RA0342132,9969444444', '18', '08/05/2015 23:55:36','16,5', 'RA03');
execute insertartiradas('RA0342132,9978125', '8', '08/05/2015 23:56:51','-14,1', 'RA03');
execute insertartiradas('RA0342132,999224537', '12', '08/05/2015 23:58:53','15,2', 'RA03');
execute insertartiradas('RA0342133,0009143519', '27', '09/05/2015 00:01:19','-18,9', 'RA03');
execute insertartiradas('RA0342133,0042708333', '23', '09/05/2015 00:06:09','15,3', 'RA03');
execute insertartiradas('RA0342133,0061689815', '10', '09/05/2015 00:08:53','-21,2', 'RA03');
execute insertartiradas('RA0342133,0082638889', '27', '09/05/2015 00:11:54','15,7', 'RA03');
execute insertartiradas('RA0342133,009537037', '12', '09/05/2015 00:13:44','-17,5', 'RA03');
execute insertartiradas('RA0342133,0104976852', '25', '09/05/2015 00:15:07','15,7', 'RA03');
execute insertartiradas('RA0342133,0114236111', '2', '09/05/2015 00:16:27','-16,4', 'RA03');
execute insertartiradas('RA0342133,0125115741', '9', '09/05/2015 00:18:01','16', 'RA03');
execute insertartiradas('RA0342133,0135648148', '25', '09/05/2015 00:19:32','-20,4', 'RA03');
execute insertartiradas('RA0342133,0153125', '30', '09/05/2015 00:22:03','14,2', 'RA03');
execute insertartiradas('RA0342133,0165509259', '9', '09/05/2015 00:23:50','-16,5', 'RA03');
execute insertartiradas('RA0342133,0173611111', '24', '09/05/2015 00:25:00','18,5', 'RA03');
execute insertartiradas('RA0342133,0189236111', '10', '09/05/2015 00:27:15','-16,9', 'RA03');
execute insertartiradas('RA0342133,0198842593', '7', '09/05/2015 00:28:38','19,4', 'RA03');
execute insertartiradas('RA0342133,0212384259', '33', '09/05/2015 00:30:35','-18,6', 'RA03');
execute insertartiradas('RA0342133,0223032407', '32', '09/05/2015 00:32:07','19', 'RA03');
execute insertartiradas('RA0342133,0239814815', '23', '09/05/2015 00:34:32','-17,2', 'RA03');
execute insertartiradas('RA0342133,0257986111', '33', '09/05/2015 00:37:09','21,3', 'RA03');
execute insertartiradas('RA0342133,0267824074', '30', '09/05/2015 00:38:34','-16,1', 'RA03');
execute insertartiradas('RA0342133,0278703704', '9', '09/05/2015 00:40:08','18,4', 'RA03');
execute insertartiradas('RA0342133,0288194444', '1', '09/05/2015 00:41:30','-19,9', 'RA03');
execute insertartiradas('RA0342133,0298842593', '26', '09/05/2015 00:43:02','16,7', 'RA03');
execute insertartiradas('RA0342133,0313078704', '6', '09/05/2015 00:45:05','-16,2', 'RA03');
execute insertartiradas('RA0342133,0321990741', '27', '09/05/2015 00:46:22','17', 'RA03');
execute insertartiradas('RA0342133,0335763889', '35', '09/05/2015 00:48:21','-18,9', 'RA03');
execute insertartiradas('RA0342133,0344560185', '25', '09/05/2015 00:49:37','15,9', 'RA03');
execute insertartiradas('RA0342133,0353009259', '9', '09/05/2015 00:50:50','-17,3', 'RA03');
execute insertartiradas('RA0342133,0362615741', '25', '09/05/2015 00:52:13','17,3', 'RA03');
execute insertartiradas('RA0342133,0371643519', '8', '09/05/2015 00:53:31','-18,8', 'RA03');
execute insertartiradas('RA0342133,0377430556', '34', '09/05/2015 00:54:21','17', 'RA03');
execute insertartiradas('RA0342133,0383912037', '4', '09/05/2015 00:55:17','-18', 'RA03');
execute insertartiradas('RA0342133,0389699074', '28', '09/05/2015 00:56:07','15,3', 'RA03');
execute insertartiradas('RA0342133,039525463', '28', '09/05/2015 00:56:55','-17,7', 'RA03');
execute insertartiradas('RA0342133,0403703704', '16', '09/05/2015 00:58:08','17,1', 'RA03');
execute insertartiradas('RA0342133,0411226851', '11', '09/05/2015 00:59:13','-21,8', 'RA03');
execute insertartiradas('RA0342133,0416087963', '7', '09/05/2015 00:59:55','19,1', 'RA03');
execute insertartiradas('RA0342133,0420717593', '29', '09/05/2015 01:00:35','-13,9', 'RA03');
execute insertartiradas('RA0342133,0428703704', '24', '09/05/2015 01:01:44','21,5', 'RA03');
execute insertartiradas('RA0342133,0432638889', '24', '09/05/2015 01:02:18','-16', 'RA03');
execute insertartiradas('RA0342133,0436458333', '23', '09/05/2015 01:02:51','17,4', 'RA03');
execute insertartiradas('RA0342133,0444444444', '9', '09/05/2015 01:04:00','-17,2', 'RA03');
execute insertartiradas('RA0342133,045', '7', '09/05/2015 01:04:48','19,5', 'RA03');
execute insertartiradas('RA0342133,0456828704', '36', '09/05/2015 01:05:47','-16,8', 'RA03');
execute insertartiradas('RA0342133,0467013889', '22', '09/05/2015 01:07:15','19', 'RA03');
execute insertartiradas('RA0342133,0474884259', '9', '09/05/2015 01:08:23','-17,3', 'RA03');
execute insertartiradas('RA0342133,0479513889', '21', '09/05/2015 01:09:03','17,1', 'RA03');
execute insertartiradas('RA0342133,0484027778', '23', '09/05/2015 01:09:42','-18,1', 'RA03');
execute insertartiradas('RA0342133,0489236111', '10', '09/05/2015 01:10:27','18,4', 'RA03');
execute insertartiradas('RA0342133,0493171296', '10', '09/05/2015 01:11:01','-17,9', 'RA03');
execute insertartiradas('RA0342133,0569212963', '13', '09/05/2015 01:21:58','22,8', 'RA03');
execute insertartiradas('RA0342133,057337963', '20', '09/05/2015 01:22:34','-22,9', 'RA03');
execute insertartiradas('RA0342133,0577083333', '25', '09/05/2015 01:23:06','19,1', 'RA03');
execute insertartiradas('RA0342133,0581018518', '35', '09/05/2015 01:23:40','-19,2', 'RA03');
execute insertartiradas('RA0342133,0586574074', '19', '09/05/2015 01:24:28','18', 'RA03');
execute insertartiradas('RA0342133,0591782407', '4', '09/05/2015 01:25:13','-20', 'RA03');
execute insertartiradas('RA0342133,0595717593', '22', '09/05/2015 01:25:47','20,5', 'RA03');
execute insertartiradas('RA0342133,0600462963', '29', '09/05/2015 01:26:28','-20,7', 'RA03');
execute insertartiradas('RA0342133,0604282407', '17', '09/05/2015 01:27:01','18,6', 'RA03');
execute insertartiradas('RA0342133,060775463', '14', '09/05/2015 01:27:31','-21,3', 'RA03');
execute insertartiradas('RA0342133,0611689814', '29', '09/05/2015 01:28:05','16,7', 'RA03');
execute insertartiradas('RA0342133,0615625', '27', '09/05/2015 01:28:39','-19,3', 'RA03');
execute insertartiradas('RA0342133,0619675926', '19', '09/05/2015 01:29:14','16,2', 'RA03');
execute insertartiradas('RA0342133,0623958333', '29', '09/05/2015 01:29:51','-19', 'RA03');
execute insertartiradas('RA0342133,0628240741', '21', '09/05/2015 01:30:28','20,6', 'RA03');
execute insertartiradas('RA0342133,0632175926', '19', '09/05/2015 01:31:02','-19,8', 'RA03');
execute insertartiradas('RA0342133,0636226852', '0', '09/05/2015 01:31:37','15,9', 'RA03');
execute insertartiradas('RA0342133,064224537', '33', '09/05/2015 01:32:29','-20,4', 'RA03');
execute insertartiradas('RA0342133,0648958333', '23', '09/05/2015 01:33:27','20,7', 'RA03');
execute insertartiradas('RA0342133,0655208333', '6', '09/05/2015 01:34:21','-20,1', 'RA03');
execute insertartiradas('RA0342133,0660532407', '3', '09/05/2015 01:35:07','17,8', 'RA03');
execute insertartiradas('RA0342133,0667013889', '32', '09/05/2015 01:36:03','-18,7', 'RA03');
execute insertartiradas('RA0342133,0672222222', '10', '09/05/2015 01:36:48','16', 'RA03');
execute insertartiradas('RA0342133,0676736111', '8', '09/05/2015 01:37:27','-20,2', 'RA03');
execute insertartiradas('RA0342133,0681712963', '22', '09/05/2015 01:38:10','18,4', 'RA03');
execute insertartiradas('RA0342133,0687152778', '17', '09/05/2015 01:38:57','-18,8', 'RA03');
execute insertartiradas('RA0342133,069375', '28', '09/05/2015 01:39:54','19', 'RA03');
execute insertartiradas('RA0342133,0697685185', '35', '09/05/2015 01:40:28','-18,7', 'RA03');
execute insertartiradas('RA0342133,0701736111', '1', '09/05/2015 01:41:03','19,5', 'RA03');
execute insertartiradas('RA0342133,0706712963', '6', '09/05/2015 01:41:46','-19,5', 'RA03');
execute insertartiradas('RA0342133,0712268519', '9', '09/05/2015 01:42:34','19,1', 'RA03');
execute insertartiradas('RA0342133,0719212963', '6', '09/05/2015 01:43:34','-20,5', 'RA03');
execute insertartiradas('RA0342133,0724189815', '26', '09/05/2015 01:44:17','23', 'RA03');
execute insertartiradas('RA0342133,0731597222', '12', '09/05/2015 01:45:21','-21,5', 'RA03');
execute insertartiradas('RA0342133,0739467593', '7', '09/05/2015 01:46:29','18,1', 'RA03');
execute insertartiradas('RA0342133,0744907407', '17', '09/05/2015 01:47:16','-20,3', 'RA03');
execute insertartiradas('RA0342133,0750347222', '11', '09/05/2015 01:48:03','18,9', 'RA03');
execute insertartiradas('RA0342133,0754976852', '31', '09/05/2015 01:48:43','-19,4', 'RA03');
execute insertartiradas('RA0342133,0760300926', '10', '09/05/2015 01:49:29','17,2', 'RA03');
execute insertartiradas('RA0342133,0766782407', '14', '09/05/2015 01:50:25','-17,9', 'RA03');
execute insertartiradas('RA0342133,0770949074', '3', '09/05/2015 01:51:01','19,6', 'RA03');
execute insertartiradas('RA0342133,0775925926', '35', '09/05/2015 01:51:44','-18,6', 'RA03');
execute insertartiradas('RA0342133,0780787037', '6', '09/05/2015 01:52:26','19,9', 'RA03');
execute insertartiradas('RA0342133,0785185185', '34', '09/05/2015 01:53:04','-19,3', 'RA03');
execute insertartiradas('RA0342133,0790509259', '15', '09/05/2015 01:53:50','18,7', 'RA03');
execute insertartiradas('RA0342133,0795717593', '19', '09/05/2015 01:54:35','-17,9', 'RA03');
execute insertartiradas('RA0342133,0801388889', '16', '09/05/2015 01:55:24','17,9', 'RA03');
execute insertartiradas('RA0342133,0806134259', '22', '09/05/2015 01:56:05','-19,9', 'RA03');
execute insertartiradas('RA0342133,081412037', '3', '09/05/2015 01:57:14','18,2', 'RA03');
execute insertartiradas('RA0342133,0819097222', '7', '09/05/2015 01:57:57','-21', 'RA03');
execute insertartiradas('RA0342133,0824074074', '26', '09/05/2015 01:58:40','14,3', 'RA03');
execute insertartiradas('RA0342133,0829398148', '27', '09/05/2015 01:59:26','-20,1', 'RA03');
execute insertartiradas('RA0342133,0834606482', '13', '09/05/2015 02:00:11','17,9', 'RA03');
execute insertartiradas('RA0342133,0838657407', '33', '09/05/2015 02:00:46','-19,4', 'RA03');
execute insertartiradas('RA0342133,0844212963', '2', '09/05/2015 02:01:34','20,6', 'RA03');
execute insertartiradas('RA0342133,0849421296', '36', '09/05/2015 02:02:19','-22,2', 'RA03');
execute insertartiradas('RA0342133,0853935185', '32', '09/05/2015 02:02:58','16,7', 'RA03');
execute insertartiradas('RA0342133,0860185185', '20', '09/05/2015 02:03:52','-20,6', 'RA03');
execute insertartiradas('RA0342133,0871643519', '7', '09/05/2015 02:05:31','20', 'RA03');
execute insertartiradas('RA0342133,0881944444', '6', '09/05/2015 02:07:00','-21,7', 'RA03');
execute insertartiradas('RA0342133,0890393518', '31', '09/05/2015 02:08:13','20,5', 'RA03');
execute insertartiradas('RA0342133,0897800926', '6', '09/05/2015 02:09:17','-21,6', 'RA03');
execute insertartiradas('RA0342133,0905092593', '32', '09/05/2015 02:10:20','22,9', 'RA03');
execute insertartiradas('RA0342133,091412037', '20', '09/05/2015 02:11:38','-21,8', 'RA03');
execute insertartiradas('RA0342133,0919212963', '30', '09/05/2015 02:12:22','19,4', 'RA03');
execute insertartiradas('RA0342133,0923958333', '10', '09/05/2015 02:13:03','-19,5', 'RA03');
execute insertartiradas('RA0342133,0928356481', '21', '09/05/2015 02:13:41','19,5', 'RA03');
execute insertartiradas('RA0342133,093287037', '11', '09/05/2015 02:14:20','-21,3', 'RA03');
execute insertartiradas('RA0342133,0936574074', '21', '09/05/2015 02:14:52','16,1', 'RA03');
execute insertartiradas('RA0342133,0939351852', '13', '09/05/2015 02:15:16','-18,7', 'RA03');
execute insertartiradas('RA0342133,700625', '11', '09/05/2015 16:48:54','13,3', 'RA03');
execute insertartiradas('RA0342133,7013194444', '16', '09/05/2015 16:49:54','-14,4', 'RA03');
execute insertartiradas('RA0342133,7018865741', '34', '09/05/2015 16:50:43','10,6', 'RA03');
execute insertartiradas('RA0342133,7024768519', '7', '09/05/2015 16:51:34','-10,3', 'RA03');
execute insertartiradas('RA0342133,7031365741', '14', '09/05/2015 16:52:31','11,3', 'RA03');
execute insertartiradas('RA0342133,7038541666', '4', '09/05/2015 16:53:33','-10', 'RA03');
execute insertartiradas('RA0342133,7044328704', '14', '09/05/2015 16:54:23','13,2', 'RA03');
execute insertartiradas('RA0342133,7050925926', '10', '09/05/2015 16:55:20','-13,1', 'RA03');
execute insertartiradas('RA0342133,7056018518', '13', '09/05/2015 16:56:04','13,2', 'RA03');
execute insertartiradas('RA0342133,7611574074', '17', '09/05/2015 18:16:04','19,2', 'RA03');
execute insertartiradas('RA0342133,7615277778', '26', '09/05/2015 18:16:36','-20,1', 'RA03');
execute insertartiradas('RA0342133,7627314815', '34', '09/05/2015 18:18:20','21,2', 'RA03');
execute insertartiradas('RA0342133,7633101852', '9', '09/05/2015 18:19:10','-23,6', 'RA03');
execute insertartiradas('RA0342133,7639467593', '26', '09/05/2015 18:20:05','20,7', 'RA03');
execute insertartiradas('RA0342133,7646759259', '2', '09/05/2015 18:21:08','-22,7', 'RA03');
execute insertartiradas('RA0342133,765324074', '33', '09/05/2015 18:22:04','17,9', 'RA03');
execute insertartiradas('RA0342133,7658217593', '28', '09/05/2015 18:22:47','-21,9', 'RA03');
execute insertartiradas('RA0342133,7665393519', '16', '09/05/2015 18:23:49','21,2', 'RA03');
execute insertartiradas('RA0342133,7669791667', '9', '09/05/2015 18:24:27','-22,2', 'RA03');
execute insertartiradas('RA0342133,7674189815', '14', '09/05/2015 18:25:05','21,1', 'RA03');
execute insertartiradas('RA0342133,7679398148', '23', '09/05/2015 18:25:50','-23,4', 'RA03');
execute insertartiradas('RA0342133,7684259259', '29', '09/05/2015 18:26:32','22,1', 'RA03');
execute insertartiradas('RA0342133,7688078704', '1', '09/05/2015 18:27:05','-19,5', 'RA03');
execute insertartiradas('RA0342133,7697222222', '33', '09/05/2015 18:28:24','15,9', 'RA03');
execute insertartiradas('RA0342133,7702430556', '33', '09/05/2015 18:29:09','-24', 'RA03');
execute insertartiradas('RA0342133,7705787037', '28', '09/05/2015 18:29:38','17,7', 'RA03');
execute insertartiradas('RA0342133,7715277778', '17', '09/05/2015 18:31:00','-18,2', 'RA03');
execute insertartiradas('RA0342133,7721180556', '22', '09/05/2015 18:31:51','13,4', 'RA03');
execute insertartiradas('RA0342133,7730092593', '33', '09/05/2015 18:33:08','-19,3', 'RA03');
execute insertartiradas('RA0342133,7734606481', '34', '09/05/2015 18:33:47','15,2', 'RA03');
execute insertartiradas('RA0342133,7740277778', '3', '09/05/2015 18:34:36','-18', 'RA03');
execute insertartiradas('RA0342133,7747800926', '22', '09/05/2015 18:35:41','14,1', 'RA03');
execute insertartiradas('RA0342133,775162037', '18', '09/05/2015 18:36:14','-19,1', 'RA03');
execute insertartiradas('RA0342133,7760185185', '24', '09/05/2015 18:37:28','18,4', 'RA03');
execute insertartiradas('RA0342133,777025463', '33', '09/05/2015 18:38:55','-21,8', 'RA03');
execute insertartiradas('RA0342133,7774537037', '36', '09/05/2015 18:39:32','20,3', 'RA03');
execute insertartiradas('RA0342133,7780671296', '20', '09/05/2015 18:40:25','-23,3', 'RA03');
execute insertartiradas('RA0342133,7785416667', '0', '09/05/2015 18:41:06','21,6', 'RA03');
execute insertartiradas('RA0342133,7794907407', '1', '09/05/2015 18:42:28','-17', 'RA03');
execute insertartiradas('RA0342133,780162037', '12', '09/05/2015 18:43:26','16', 'RA03');
execute insertartiradas('RA0342133,780949074', '10', '09/05/2015 18:44:34','-17,8', 'RA03');
execute insertartiradas('RA0342133,7817476852', '5', '09/05/2015 18:45:43','14,3', 'RA03');
execute insertartiradas('RA0342133,782337963', '28', '09/05/2015 18:46:34','-19', 'RA03');
execute insertartiradas('RA0342133,7832060185', '8', '09/05/2015 18:47:49','13,1', 'RA03');
execute insertartiradas('RA0342133,7844791667', '22', '09/05/2015 18:49:39','-19,8', 'RA03');
execute insertartiradas('RA0342133,7853356482', '8', '09/05/2015 18:50:53','14,8', 'RA03');
execute insertartiradas('RA0342133,7859722222', '34', '09/05/2015 18:51:48','-21,1', 'RA03');
execute insertartiradas('RA0342133,7865972222', '15', '09/05/2015 18:52:42','14,1', 'RA03');
execute insertartiradas('RA0342133,7870949074', '14', '09/05/2015 18:53:25','-14,3', 'RA03');
execute insertartiradas('RA0342133,7875694444', '24', '09/05/2015 18:54:06','13,1', 'RA03');
execute insertartiradas('RA0342133,7880092593', '10', '09/05/2015 18:54:44','-16,3', 'RA03');
execute insertartiradas('RA0342133,7885416667', '10', '09/05/2015 18:55:30','13,5', 'RA03');
execute insertartiradas('RA0342133,7890740741', '34', '09/05/2015 18:56:16','-24,7', 'RA03');
execute insertartiradas('RA0342133,7896064815', '35', '09/05/2015 18:57:02','19,3', 'RA03');
execute insertartiradas('RA0342133,7899768519', '15', '09/05/2015 18:57:34','-21', 'RA03');
execute insertartiradas('RA0342133,7906712963', '10', '09/05/2015 18:58:34','16,1', 'RA03');
execute insertartiradas('RA0342133,7910532407', '15', '09/05/2015 18:59:07','-18,9', 'RA03');
execute insertartiradas('RA0342133,7914351852', '28', '09/05/2015 18:59:40','17,2', 'RA03');
execute insertartiradas('RA0342133,7919097222', '31', '09/05/2015 19:00:21','-17,8', 'RA03');
execute insertartiradas('RA0342133,7923726852', '5', '09/05/2015 19:01:01','15,1', 'RA03');
execute insertartiradas('RA0342133,7928819444', '34', '09/05/2015 19:01:45','-18,3', 'RA03');
execute insertartiradas('RA0342133,793275463', '8', '09/05/2015 19:02:19','17,4', 'RA03');
execute insertartiradas('RA0342133,7937268519', '34', '09/05/2015 19:02:58','-19,2', 'RA03');
execute insertartiradas('RA0342133,7941319444', '10', '09/05/2015 19:03:33','15,7', 'RA03');
execute insertartiradas('RA0342133,794525463', '9', '09/05/2015 19:04:07','-18,9', 'RA03');
execute insertartiradas('RA0342133,7949189815', '6', '09/05/2015 19:04:41','17,5', 'RA03');
execute insertartiradas('RA0342133,7952893519', '31', '09/05/2015 19:05:13','-20,5', 'RA03');
execute insertartiradas('RA0342133,7957175926', '29', '09/05/2015 19:05:50','16,6', 'RA03');
execute insertartiradas('RA0342133,796087963', '17', '09/05/2015 19:06:22','-20,4', 'RA03');
execute insertartiradas('RA0342133,796574074', '31', '09/05/2015 19:07:04','18,4', 'RA03');
execute insertartiradas('RA0342133,7969907407', '28', '09/05/2015 19:07:40','-21,1', 'RA03');
execute insertartiradas('RA0342133,7974421296', '10', '09/05/2015 19:08:19','15,5', 'RA03');
execute insertartiradas('RA0342133,7978240741', '12', '09/05/2015 19:08:52','-20,2', 'RA03');
execute insertartiradas('RA0342133,7982523148', '34', '09/05/2015 19:09:29','17,6', 'RA03');
execute insertartiradas('RA0342133,7986111111', '18', '09/05/2015 19:10:00','-20,9', 'RA03');
execute insertartiradas('RA0342133,7990277778', '22', '09/05/2015 19:10:36','19,1', 'RA03');
execute insertartiradas('RA0342133,7994560185', '35', '09/05/2015 19:11:13','-21,5', 'RA03');
execute insertartiradas('RA0342133,7999884259', '27', '09/05/2015 19:11:59','17,8', 'RA03');
execute insertartiradas('RA0342133,8004166667', '9', '09/05/2015 19:12:36','-18,4', 'RA03');
execute insertartiradas('RA0342133,8008101852', '6', '09/05/2015 19:13:10','15,9', 'RA03');
execute insertartiradas('RA0342133,8012268519', '23', '09/05/2015 19:13:46','-19,1', 'RA03');
execute insertartiradas('RA0342133,8017013889', '31', '09/05/2015 19:14:27','16,6', 'RA03');
execute insertartiradas('RA0342133,8021759259', '13', '09/05/2015 19:15:08','-21,6', 'RA03');
execute insertartiradas('RA0342133,8026041667', '15', '09/05/2015 19:15:45','18', 'RA03');
execute insertartiradas('RA0342133,8030555556', '7', '09/05/2015 19:16:24','-19,3', 'RA03');
execute insertartiradas('RA0342133,8041782407', '28', '09/05/2015 19:18:01','15', 'RA03');
execute insertartiradas('RA0342133,8045949074', '4', '09/05/2015 19:18:37','-20,3', 'RA03');
execute insertartiradas('RA0342133,8049768519', '14', '09/05/2015 19:19:10','15,7', 'RA03');
execute insertartiradas('RA0342133,8053587963', '3', '09/05/2015 19:19:43','-19,4', 'RA03');
execute insertartiradas('RA0342133,8058217593', '4', '09/05/2015 19:20:23','16', 'RA03');
execute insertartiradas('RA0342133,8062268519', '7', '09/05/2015 19:20:58','-19,9', 'RA03');
execute insertartiradas('RA0342133,8066666667', '33', '09/05/2015 19:21:36','16', 'RA03');
execute insertartiradas('RA0342133,8070833333', '0', '09/05/2015 19:22:12','-18,6', 'RA03');
execute insertartiradas('RA0342133,8077314815', '24', '09/05/2015 19:23:08','17,6', 'RA03');
execute insertartiradas('RA0342133,8082407407', '35', '09/05/2015 19:23:52','-15,5', 'RA03');
execute insertartiradas('RA0342133,8086689815', '27', '09/05/2015 19:24:29','18,3', 'RA03');
execute insertartiradas('RA0342133,8090856482', '5', '09/05/2015 19:25:05','-18,4', 'RA03');
execute insertartiradas('RA0342133,809525463', '1', '09/05/2015 19:25:43','18,4', 'RA03');
execute insertartiradas('RA0342133,8100231482', '2', '09/05/2015 19:26:26','-18,3', 'RA03');
execute insertartiradas('RA0342133,810474537', '10', '09/05/2015 19:27:05','16', 'RA03');
execute insertartiradas('RA0342133,8108333333', '28', '09/05/2015 19:27:36','-15,3', 'RA03');
execute insertartiradas('RA0342133,8112962963', '12', '09/05/2015 19:28:16','18,3', 'RA03');
execute insertartiradas('RA0342133,8122106481', '14', '09/05/2015 19:29:35','-20,3', 'RA03');
execute insertartiradas('RA0342133,8128009259', '32', '09/05/2015 19:30:26','16,2', 'RA03');
execute insertartiradas('RA0342133,8133564815', '7', '09/05/2015 19:31:14','-20,1', 'RA03');
execute insertartiradas('RA0342133,8139814815', '34', '09/05/2015 19:32:08','15,7', 'RA03');
execute insertartiradas('RA0342133,8144675926', '3', '09/05/2015 19:32:50','-17,4', 'RA03');
execute insertartiradas('RA0342133,815', '8', '09/05/2015 19:33:36','18,6', 'RA03');
execute insertartiradas('RA0342133,8157291667', '18', '09/05/2015 19:34:39','-15,7', 'RA03');
execute insertartiradas('RA0342133,8161921296', '22', '09/05/2015 19:35:19','17,5', 'RA03');
execute insertartiradas('RA0342133,8166203703', '7', '09/05/2015 19:35:56','-16,7', 'RA03');
execute insertartiradas('RA0342133,8171759259', '11', '09/05/2015 19:36:44','18,1', 'RA03');
execute insertartiradas('RA0342133,8175578704', '34', '09/05/2015 19:37:17','-16,9', 'RA03');
execute insertartiradas('RA0342133,817974537', '15', '09/05/2015 19:37:53','10,3', 'RA03');
execute insertartiradas('RA0342133,818275463', '35', '09/05/2015 19:38:19','-18,5', 'RA03');
execute insertartiradas('RA0342133,8190972222', '26', '09/05/2015 19:39:30','17,4', 'RA03');
execute insertartiradas('RA0342133,8196875', '24', '09/05/2015 19:40:21','-17,2', 'RA03');
execute insertartiradas('RA0342133,8201967593', '3', '09/05/2015 19:41:05','17,6', 'RA03');
execute insertartiradas('RA0342133,8206828704', '34', '09/05/2015 19:41:47','-13,6', 'RA03');
execute insertartiradas('RA0342133,8211458333', '26', '09/05/2015 19:42:27','17,6', 'RA03');
execute insertartiradas('RA0342133,8215277778', '8', '09/05/2015 19:43:00','-18,2', 'RA03');
execute insertartiradas('RA0342133,8218865741', '26', '09/05/2015 19:43:31','12,6', 'RA03');
execute insertartiradas('RA0342133,8222685185', '2', '09/05/2015 19:44:04','-18,5', 'RA03');
execute insertartiradas('RA0342133,8226851852', '7', '09/05/2015 19:44:40','15,6', 'RA03');
execute insertartiradas('RA0342133,823125', '26', '09/05/2015 19:45:18','-14,4', 'RA03');
execute insertartiradas('RA0342133,823587963', '34', '09/05/2015 19:45:58','14,2', 'RA03');
execute insertartiradas('RA0342133,8241435185', '33', '09/05/2015 19:46:46','-16,7', 'RA03');
execute insertartiradas('RA0342133,8246180556', '23', '09/05/2015 19:47:27','15,4', 'RA03');
execute insertartiradas('RA0342133,8250462963', '1', '09/05/2015 19:48:04','-17,8', 'RA03');
execute insertartiradas('RA0342133,8254282407', '25', '09/05/2015 19:48:37','18,3', 'RA03');
execute insertartiradas('RA0342133,8258912037', '24', '09/05/2015 19:49:17','-15,5', 'RA03');
execute insertartiradas('RA0342133,8263310185', '5', '09/05/2015 19:49:55','16,9', 'RA03');
execute insertartiradas('RA0342133,826724537', '31', '09/05/2015 19:50:29','-15', 'RA03');
execute insertartiradas('RA0342133,8486689815', '8', '09/05/2015 20:22:05','21,5', 'RA03');
execute insertartiradas('RA0342133,8489814815', '18', '09/05/2015 20:22:32','-12,3', 'RA03');
execute insertartiradas('RA0342133,8522685185', '12', '09/05/2015 20:27:16','16,4', 'RA03');
execute insertartiradas('RA0342133,8528240741', '10', '09/05/2015 20:28:04','-18,3', 'RA03');
execute insertartiradas('RA0342133,8532291667', '26', '09/05/2015 20:28:39','18,2', 'RA03');
execute insertartiradas('RA0342133,8540046296', '36', '09/05/2015 20:29:46','-19,8', 'RA03');
execute insertartiradas('RA0342133,854537037', '24', '09/05/2015 20:30:32','19,9', 'RA03');
execute insertartiradas('RA0342133,8550925926', '15', '09/05/2015 20:31:20','-21,7', 'RA03');
execute insertartiradas('RA0342133,8555439815', '11', '09/05/2015 20:31:59','17,6', 'RA03');
execute insertartiradas('RA0342133,8561111111', '22', '09/05/2015 20:32:48','-18,4', 'RA03');
execute insertartiradas('RA0342133,857037037', '32', '09/05/2015 20:34:08','16', 'RA03');
execute insertartiradas('RA0342133,8577430556', '4', '09/05/2015 20:35:09','-19,7', 'RA03');
execute insertartiradas('RA0342133,8582291667', '36', '09/05/2015 20:35:51','21,1', 'RA03');
execute insertartiradas('RA0342133,8586689815', '22', '09/05/2015 20:36:29','-18,7', 'RA03');
execute insertartiradas('RA0342133,8591666667', '21', '09/05/2015 20:37:12','18,1', 'RA03');
execute insertartiradas('RA0342133,8595601852', '5', '09/05/2015 20:37:46','-17,4', 'RA03');
execute insertartiradas('RA0342133,86', '13', '09/05/2015 20:38:24','15,4', 'RA03');
execute insertartiradas('RA0342133,8603703704', '4', '09/05/2015 20:38:56','-18,1', 'RA03');
execute insertartiradas('RA0342133,8606365741', '31', '09/05/2015 20:39:19','19,2', 'RA03');
execute insertartiradas('RA0342133,8609837963', '14', '09/05/2015 20:39:49','-16,2', 'RA03');
execute insertartiradas('RA0342133,8613541667', '16', '09/05/2015 20:40:21','20,9', 'RA03');
execute insertartiradas('RA0342133,8618518518', '10', '09/05/2015 20:41:04','-19,2', 'RA03');
execute insertartiradas('RA0342133,8621875', '9', '09/05/2015 20:41:33','18,2', 'RA03');
execute insertartiradas('RA0342133,8626388889', '15', '09/05/2015 20:42:12','-18,7', 'RA03');
execute insertartiradas('RA0342133,8630902778', '3', '09/05/2015 20:42:51','18,5', 'RA03');
execute insertartiradas('RA0342133,8634606482', '23', '09/05/2015 20:43:23','-18,6', 'RA03');
execute insertartiradas('RA0342133,8638425926', '25', '09/05/2015 20:43:56','16,7', 'RA03');
execute insertartiradas('RA0342133,864375', '5', '09/05/2015 20:44:42','-14,8', 'RA03');
execute insertartiradas('RA0342133,8647569444', '8', '09/05/2015 20:45:15','15,5', 'RA03');
execute insertartiradas('RA0342133,8651273148', '30', '09/05/2015 20:45:47','-16,3', 'RA03');
execute insertartiradas('RA0342133,865462963', '9', '09/05/2015 20:46:16','18,1', 'RA03');
execute insertartiradas('RA0342133,8658333333', '31', '09/05/2015 20:46:48','-16,1', 'RA03');
execute insertartiradas('RA0342133,8661689815', '9', '09/05/2015 20:47:17','15,8', 'RA03');
execute insertartiradas('RA0342133,8665740741', '8', '09/05/2015 20:47:52','-17,7', 'RA03');
execute insertartiradas('RA0342133,8668518519', '12', '09/05/2015 20:48:16','18,3', 'RA03');
execute insertartiradas('RA0342133,8672685185', '32', '09/05/2015 20:48:52','-17,5', 'RA03');
execute insertartiradas('RA0342133,8676273148', '31', '09/05/2015 20:49:23','18,2', 'RA03');
execute insertartiradas('RA0342133,8679513889', '8', '09/05/2015 20:49:51','-19,4', 'RA03');
execute insertartiradas('RA0342133,8684143519', '13', '09/05/2015 20:50:31','17,1', 'RA03');
execute insertartiradas('RA0342133,8687152778', '24', '09/05/2015 20:50:57','-16,8', 'RA03');
execute insertartiradas('RA0342133,8690856481', '25', '09/05/2015 20:51:29','20,8', 'RA03');
execute insertartiradas('RA0342133,8695023148', '22', '09/05/2015 20:52:05','-14,3', 'RA03');
execute insertartiradas('RA0342133,8699768518', '26', '09/05/2015 20:52:46','17,4', 'RA03');
execute insertartiradas('RA0342133,8704282407', '11', '09/05/2015 20:53:25','-20', 'RA03');
execute insertartiradas('RA0342133,8709259259', '3', '09/05/2015 20:54:08','16,6', 'RA03');
execute insertartiradas('RA0342133,8714583333', '23', '09/05/2015 20:54:54','-16,9', 'RA03');
execute insertartiradas('RA0342133,8718171296', '31', '09/05/2015 20:55:25','18,9', 'RA03');
execute insertartiradas('RA0342133,8723379629', '5', '09/05/2015 20:56:10','-17,4', 'RA03');
execute insertartiradas('RA0342133,8726851852', '6', '09/05/2015 20:56:40','17,4', 'RA03');
execute insertartiradas('RA0342133,8730787037', '17', '09/05/2015 20:57:14','-19,8', 'RA03');
execute insertartiradas('RA0342133,8735300926', '33', '09/05/2015 20:57:53','19,9', 'RA03');
execute insertartiradas('RA0342133,8739467593', '9', '09/05/2015 20:58:29','-20,3', 'RA03');
execute insertartiradas('RA0342133,8744675926', '24', '09/05/2015 20:59:14','19,6', 'RA03');
execute insertartiradas('RA0342133,8750347222', '1', '09/05/2015 21:00:03','-18,9', 'RA03');
execute insertartiradas('RA0342133,8755092593', '32', '09/05/2015 21:00:44','19,8', 'RA03');
execute insertartiradas('RA0342133,8759606481', '34', '09/05/2015 21:01:23','-15,5', 'RA03');
execute insertartiradas('RA0342133,8764467593', '25', '09/05/2015 21:02:05','14,4', 'RA03');
execute insertartiradas('RA0342133,8770486111', '21', '09/05/2015 21:02:57','-14,4', 'RA03');
execute insertartiradas('RA0342133,8775115741', '31', '09/05/2015 21:03:37','16,2', 'RA03');
execute insertartiradas('RA0342133,8779861111', '25', '09/05/2015 21:04:18','-15,2', 'RA03');
execute insertartiradas('RA0342133,8783680556', '1', '09/05/2015 21:04:51','16,4', 'RA03');
execute insertartiradas('RA0342133,8787731481', '8', '09/05/2015 21:05:26','-14,9', 'RA03');
execute insertartiradas('RA0342133,8792361111', '36', '09/05/2015 21:06:06','14', 'RA03');
execute insertartiradas('RA0342133,879849537', '4', '09/05/2015 21:06:59','-16,9', 'RA03');
execute insertartiradas('RA0342133,8802546296', '18', '09/05/2015 21:07:34','15,6', 'RA03');
execute insertartiradas('RA0342133,8806597222', '17', '09/05/2015 21:08:09','-13,4', 'RA03');
execute insertartiradas('RA0342133,8810532407', '19', '09/05/2015 21:08:43','14,3', 'RA03');
execute insertartiradas('RA0342133,8814467593', '33', '09/05/2015 21:09:17','-14,1', 'RA03');
execute insertartiradas('RA0342133,8818634259', '20', '09/05/2015 21:09:53','14,1', 'RA03');
execute insertartiradas('RA0342133,8822569444', '34', '09/05/2015 21:10:27','-13,5', 'RA03');
execute insertartiradas('RA0342133,882662037', '10', '09/05/2015 21:11:02','18', 'RA03');
execute insertartiradas('RA0342133,8831134259', '22', '09/05/2015 21:11:41','-14,8', 'RA03');
execute insertartiradas('RA0342133,883599537', '1', '09/05/2015 21:12:23','15,7', 'RA03');
execute insertartiradas('RA0342133,8840393519', '15', '09/05/2015 21:13:01','-14,1', 'RA03');
execute insertartiradas('RA0342133,8844212963', '31', '09/05/2015 21:13:34','14,6', 'RA03');
execute insertartiradas('RA0342133,8849884259', '27', '09/05/2015 21:14:23','-13,6', 'RA03');
execute insertartiradas('RA0342133,8856134259', '17', '09/05/2015 21:15:17','16,5', 'RA03');
execute insertartiradas('RA0342133,8860185185', '23', '09/05/2015 21:15:52','-13,3', 'RA03');
execute insertartiradas('RA0342133,889849537', '21', '09/05/2015 21:21:23','16,5', 'RA03');
execute insertartiradas('RA0342133,8903009259', '7', '09/05/2015 21:22:02','-16,6', 'RA03');
execute insertartiradas('RA0342133,8906712963', '26', '09/05/2015 21:22:34','15,5', 'RA03');
execute insertartiradas('RA0342133,8911226852', '30', '09/05/2015 21:23:13','-12,5', 'RA03');
execute insertartiradas('RA0342133,8917361111', '2', '09/05/2015 21:24:06','15,9', 'RA03');
execute insertartiradas('RA0342133,8921296296', '14', '09/05/2015 21:24:40','-13,4', 'RA03');
execute insertartiradas('RA0342133,8925115741', '16', '09/05/2015 21:25:13','19', 'RA03');
execute insertartiradas('RA0342133,8929050926', '14', '09/05/2015 21:25:47','-16,1', 'RA03');
execute insertartiradas('RA0342133,8939930556', '30', '09/05/2015 21:27:21','15,7', 'RA03');
execute insertartiradas('RA0342133,8944907407', '6', '09/05/2015 21:28:04','-16,4', 'RA03');
execute insertartiradas('RA0342133,8952662037', '10', '09/05/2015 21:29:11','16,9', 'RA03');
execute insertartiradas('RA0342133,8959375', '28', '09/05/2015 21:30:09','-16,1', 'RA03');
execute insertartiradas('RA0342133,8965046296', '22', '09/05/2015 21:30:58','18,2', 'RA03');
execute insertartiradas('RA0342133,8971064814', '5', '09/05/2015 21:31:50','-17,8', 'RA03');
execute insertartiradas('RA0342133,8977199074', '29', '09/05/2015 21:32:43','16,2', 'RA03');
execute insertartiradas('RA0342133,8983680556', '28', '09/05/2015 21:33:39','-15,5', 'RA03');
execute insertartiradas('RA0342133,8989467593', '6', '09/05/2015 21:34:29','14,6', 'RA03');
execute insertartiradas('RA0342133,8994907407', '25', '09/05/2015 21:35:16','-13,2', 'RA03');
execute insertartiradas('RA0342133,8999768519', '19', '09/05/2015 21:35:58','14,5', 'RA03');
execute insertartiradas('RA0342133,9005787037', '12', '09/05/2015 21:36:50','-15,8', 'RA03');
execute insertartiradas('RA0342133,9013194444', '22', '09/05/2015 21:37:54','16,4', 'RA03');
execute insertartiradas('RA0342133,9023148148', '32', '09/05/2015 21:39:20','-16,6', 'RA03');
execute insertartiradas('RA0342133,9030439815', '7', '09/05/2015 21:40:23','17', 'RA03');
execute insertartiradas('RA0342133,9034490741', '35', '09/05/2015 21:40:58','-15,9', 'RA03');
execute insertartiradas('RA0342133,9040162037', '33', '09/05/2015 21:41:47','15,7', 'RA03');
execute insertartiradas('RA0342133,9046527778', '31', '09/05/2015 21:42:42','-18,3', 'RA03');
execute insertartiradas('RA0342133,9053125', '11', '09/05/2015 21:43:39','18,8', 'RA03');
execute insertartiradas('RA0342133,9062384259', '3', '09/05/2015 21:44:59','-19,2', 'RA03');
execute insertartiradas('RA0342133,9071412037', '29', '09/05/2015 21:46:17','20,1', 'RA03');
execute insertartiradas('RA0342133,9078472222', '16', '09/05/2015 21:47:18','-19,1', 'RA03');
execute insertartiradas('RA0342133,9084490741', '8', '09/05/2015 21:48:10','20,8', 'RA03');
execute insertartiradas('RA0342133,9091087963', '16', '09/05/2015 21:49:07','-20,5', 'RA03');
execute insertartiradas('RA0342133,9096527778', '10', '09/05/2015 21:49:54','20,8', 'RA03');
execute insertartiradas('RA0342133,9103819444', '22', '09/05/2015 21:50:57','-20', 'RA03');
execute insertartiradas('RA0342133,9109837963', '4', '09/05/2015 21:51:49','20,1', 'RA03');
execute insertartiradas('RA0342133,9115972222', '2', '09/05/2015 21:52:42','-20,9', 'RA03');
execute insertartiradas('RA0342133,9121643519', '24', '09/05/2015 21:53:31','19,1', 'RA03');
execute insertartiradas('RA0342133,9130324074', '20', '09/05/2015 21:54:46','-20,1', 'RA03');
execute insertartiradas('RA0342133,9136689815', '1', '09/05/2015 21:55:41','21,6', 'RA03');
execute insertartiradas('RA0342133,9145486111', '27', '09/05/2015 21:56:57','-22,3', 'RA03');
execute insertartiradas('RA0342133,9152893519', '24', '09/05/2015 21:58:01','20', 'RA03');
execute insertartiradas('RA0342133,9160648148', '22', '09/05/2015 21:59:08','-22', 'RA03');
execute insertartiradas('RA0342133,9166898148', '18', '09/05/2015 22:00:02','18,2', 'RA03');
execute insertartiradas('RA0342133,9172337963', '22', '09/05/2015 22:00:49','-19,7', 'RA03');
execute insertartiradas('RA0342133,9177546296', '4', '09/05/2015 22:01:34','19,4', 'RA03');
execute insertartiradas('RA0342133,918287037', '24', '09/05/2015 22:02:20','-21,9', 'RA03');
execute insertartiradas('RA0342133,9190856482', '7', '09/05/2015 22:03:29','19,2', 'RA03');
execute insertartiradas('RA0342133,919837963', '16', '09/05/2015 22:04:34','-20,6', 'RA03');
execute insertartiradas('RA0342133,9206481481', '32', '09/05/2015 22:05:44','18,7', 'RA03');
execute insertartiradas('RA0342133,9215277778', '11', '09/05/2015 22:07:00','-20,8', 'RA03');
execute insertartiradas('RA0342133,9223958333', '36', '09/05/2015 22:08:15','19,7', 'RA03');
execute insertartiradas('RA0342133,9235300926', '4', '09/05/2015 22:09:53','-22,4', 'RA03');
execute insertartiradas('RA0342133,9244560185', '14', '09/05/2015 22:11:13','18,3', 'RA03');
execute insertartiradas('RA0342133,9253125', '0', '09/05/2015 22:12:27','-21,9', 'RA03');
execute insertartiradas('RA0342133,9263888889', '19', '09/05/2015 22:14:00','18,6', 'RA03');
execute insertartiradas('RA0342133,9271064815', '4', '09/05/2015 22:15:02','-19,8', 'RA03');
execute insertartiradas('RA0342133,9278587963', '18', '09/05/2015 22:16:07','22,4', 'RA03');
execute insertartiradas('RA0342133,9287384259', '30', '09/05/2015 22:17:23','-20,9', 'RA03');
execute insertartiradas('RA0342133,9298148148', '36', '09/05/2015 22:18:56','19,7', 'RA03');
execute insertartiradas('RA0342133,9308564815', '2', '09/05/2015 22:20:26','-21,4', 'RA03');
execute insertartiradas('RA0342133,9318402778', '1', '09/05/2015 22:21:51','22,1', 'RA03');
execute insertartiradas('RA0342133,932662037', '5', '09/05/2015 22:23:02','-20,4', 'RA03');
execute insertartiradas('RA0342133,9333333333', '5', '09/05/2015 22:24:00','18,1', 'RA03');
execute insertartiradas('RA0342133,933912037', '11', '09/05/2015 22:24:50','-21,5', 'RA03');
execute insertartiradas('RA0342133,9345023148', '22', '09/05/2015 22:25:41','18', 'RA03');
execute insertartiradas('RA0342133,9352546296', '34', '09/05/2015 22:26:46','-19,5', 'RA03');
execute insertartiradas('RA0342133,935775463', '31', '09/05/2015 22:27:31','20', 'RA03');
execute insertartiradas('RA0342133,9363657407', '26', '09/05/2015 22:28:22','-21,2', 'RA03');
execute insertartiradas('RA0342133,9368981481', '24', '09/05/2015 22:29:08','20', 'RA03');
execute insertartiradas('RA0342133,9376041667', '7', '09/05/2015 22:30:09','-22,2', 'RA03');
execute insertartiradas('RA0342133,9386805556', '6', '09/05/2015 22:31:42','17,3', 'RA03');
execute insertartiradas('RA0342133,9393287037', '0', '09/05/2015 22:32:38','-19,8', 'RA03');
execute insertartiradas('RA0342133,9399537037', '32', '09/05/2015 22:33:32','17,9', 'RA03');
execute insertartiradas('RA0342133,9407523148', '14', '09/05/2015 22:34:41','-21,1', 'RA03');
execute insertartiradas('RA0342133,9415856482', '13', '09/05/2015 22:35:53','16,8', 'RA03');
execute insertartiradas('RA0342133,9421643519', '10', '09/05/2015 22:36:43','-21', 'RA03');
execute insertartiradas('RA0342133,9431828704', '26', '09/05/2015 22:38:11','19,1', 'RA03');
execute insertartiradas('RA0342133,9437731481', '3', '09/05/2015 22:39:02','-21,4', 'RA03');
execute insertartiradas('RA0342133,9444444444', '2', '09/05/2015 22:40:00','18,9', 'RA03');
execute insertartiradas('RA0342133,9450231481', '12', '09/05/2015 22:40:50','-18,7', 'RA03');
execute insertartiradas('RA0342133,9455324074', '9', '09/05/2015 22:41:34','19,4', 'RA03');
execute insertartiradas('RA0342133,9461921296', '30', '09/05/2015 22:42:31','-21,1', 'RA03');
execute insertartiradas('RA0342133,94875', '6', '09/05/2015 22:46:12','18,3', 'RA03');
execute insertartiradas('RA0342133,9493402778', '3', '09/05/2015 22:47:03','-18,4', 'RA03');
execute insertartiradas('RA0342133,9498611111', '11', '09/05/2015 22:47:48','17,5', 'RA03');
execute insertartiradas('RA0342133,9504398148', '11', '09/05/2015 22:48:38','-19,4', 'RA03');
execute insertartiradas('RA0342133,9516782407', '27', '09/05/2015 22:50:25','16,1', 'RA03');
execute insertartiradas('RA0342133,9524884259', '7', '09/05/2015 22:51:35','-21,8', 'RA03');
execute insertartiradas('RA0342133,9532407407', '2', '09/05/2015 22:52:40','17,9', 'RA03');
execute insertartiradas('RA0342133,9544212963', '8', '09/05/2015 22:54:22','-25,5', 'RA03');
execute insertartiradas('RA0342133,9552893518', '10', '09/05/2015 22:55:37','18,4', 'RA03');
execute insertartiradas('RA0342133,956099537', '16', '09/05/2015 22:56:47','-21,2', 'RA03');
execute insertartiradas('RA0342133,9569675926', '25', '09/05/2015 22:58:02','19,4', 'RA03');
execute insertartiradas('RA0342133,9577662037', '9', '09/05/2015 22:59:11','-21,3', 'RA03');
execute insertartiradas('RA0342133,9587037037', '23', '09/05/2015 23:00:32','17', 'RA03');
execute insertartiradas('RA0342133,9596296296', '33', '09/05/2015 23:01:52','-21', 'RA03');
execute insertartiradas('RA0342133,9609027778', '17', '09/05/2015 23:03:42','14,4', 'RA03');
execute insertartiradas('RA0342133,9618981481', '13', '09/05/2015 23:05:08','-27,3', 'RA03');
execute insertartiradas('RA0342133,9628587963', '6', '09/05/2015 23:06:31','14,2', 'RA03');
execute insertartiradas('RA0342133,9636921296', '34', '09/05/2015 23:07:43','-22,4', 'RA03');
execute insertartiradas('RA0342133,9643055556', '14', '09/05/2015 23:08:36','18,1', 'RA03');
execute insertartiradas('RA0342133,9652314815', '1', '09/05/2015 23:09:56','-17,8', 'RA03');
execute insertartiradas('RA0342133,9668171296', '9', '09/05/2015 23:12:13','16', 'RA03');
execute insertartiradas('RA0342133,9677199074', '12', '09/05/2015 23:13:31','-17', 'RA03');
execute insertartiradas('RA0342133,9685069444', '31', '09/05/2015 23:14:39','13', 'RA03');
execute insertartiradas('RA0342133,9693518519', '8', '09/05/2015 23:15:52','-19,7', 'RA03');
execute insertartiradas('RA0342133,97', '17', '09/05/2015 23:16:48','18,9', 'RA03');
execute insertartiradas('RA0342133,9707060185', '29', '09/05/2015 23:17:49','-20,7', 'RA03');
execute insertartiradas('RA0342133,9715740741', '36', '09/05/2015 23:19:04','18,7', 'RA03');
execute insertartiradas('RA0342133,9724074074', '34', '09/05/2015 23:20:16','-18,9', 'RA03');
execute insertartiradas('RA0342133,973275463', '2', '09/05/2015 23:21:31','19,8', 'RA03');
execute insertartiradas('RA0342133,9738310185', '1', '09/05/2015 23:22:19','-17,5', 'RA03');
execute insertartiradas('RA0342133,9743865741', '33', '09/05/2015 23:23:07','16,2', 'RA03');
execute insertartiradas('RA0342133,9749421296', '0', '09/05/2015 23:23:55','-19,7', 'RA03');
execute insertartiradas('RA0342133,9754398148', '9', '09/05/2015 23:24:38','16,6', 'RA03');
execute insertartiradas('RA0342133,9763078704', '20', '09/05/2015 23:25:53','-16,4', 'RA03');
execute insertartiradas('RA0342133,9778240741', '29', '09/05/2015 23:28:04','14,9', 'RA03');
execute insertartiradas('RA0342133,9787731481', '14', '09/05/2015 23:29:26','-18,8', 'RA03');
execute insertartiradas('RA0342133,9803819444', '31', '09/05/2015 23:31:45','18,3', 'RA03');
execute insertartiradas('RA0342133,981875', '30', '09/05/2015 23:33:54','-22,6', 'RA03');
execute insertartiradas('RA0342133,982974537', '6', '09/05/2015 23:35:29','15,3', 'RA03');
execute insertartiradas('RA0342133,9840046296', '28', '09/05/2015 23:36:58','-17,6', 'RA03');
execute insertartiradas('RA0342133,9849537037', '13', '09/05/2015 23:38:20','15,6', 'RA03');
execute insertartiradas('RA0342133,9859953704', '3', '09/05/2015 23:39:50','-18,4', 'RA03');
execute insertartiradas('RA0342133,9870486111', '30', '09/05/2015 23:41:21','17,1', 'RA03');
execute insertartiradas('RA0342133,9879976852', '30', '09/05/2015 23:42:43','-21', 'RA03');
execute insertartiradas('RA0342133,9898958333', '26', '09/05/2015 23:45:27','11,6', 'RA03');
execute insertartiradas('RA0342133,991099537', '8', '09/05/2015 23:47:11','-18,7', 'RA03');
execute insertartiradas('RA0342133,9920949074', '20', '09/05/2015 23:48:37','17,9', 'RA03');
execute insertartiradas('RA0342133,9940162037', '4', '09/05/2015 23:51:23','-19,5', 'RA03');
execute insertartiradas('RA0342133,9949305556', '7', '09/05/2015 23:52:42','15,9', 'RA03');
execute insertartiradas('RA0342133,9961689815', '19', '09/05/2015 23:54:29','-23,5', 'RA03');
execute insertartiradas('RA0342133,9971643519', '4', '09/05/2015 23:55:55','14,9', 'RA03');
execute insertartiradas('RA0342133,9983680556', '6', '09/05/2015 23:57:39','-15,1', 'RA03');
execute insertartiradas('RA0342133,9993402778', '17', '09/05/2015 23:59:03','15', 'RA03');
execute insertartiradas('RA0342134,0015046296', '9', '10/05/2015 00:02:10','-21,8', 'RA03');
execute insertartiradas('RA0342134,0021875', '7', '10/05/2015 00:03:09','19,3', 'RA03');
execute insertartiradas('RA0342134,0027430556', '35', '10/05/2015 00:03:57','-21,3', 'RA03');
execute insertartiradas('RA0342134,0038078704', '5', '10/05/2015 00:05:29','18,5', 'RA03');
execute insertartiradas('RA0342134,0051273148', '3', '10/05/2015 00:07:23','-19,7', 'RA03');
execute insertartiradas('RA0342134,0061226852', '7', '10/05/2015 00:08:49','19,2', 'RA03');
execute insertartiradas('RA0342134,0073611111', '7', '10/05/2015 00:10:36','-18,6', 'RA03');
execute insertartiradas('RA0342134,008275463', '4', '10/05/2015 00:11:55','17,9', 'RA03');
execute insertartiradas('RA0342134,0091550926', '1', '10/05/2015 00:13:11','-19,1', 'RA03');
execute insertartiradas('RA0342134,0102777778', '11', '10/05/2015 00:14:48','19,7', 'RA03');
execute insertartiradas('RA0342134,0116782407', '31', '10/05/2015 00:16:49','-18,1', 'RA03');
execute insertartiradas('RA0342134,0129513889', '0', '10/05/2015 00:18:39','18,8', 'RA03');
execute insertartiradas('RA0342134,0138657407', '34', '10/05/2015 00:19:58','-19,2', 'RA03');
execute insertartiradas('RA0342134,0144907407', '16', '10/05/2015 00:20:52','19,5', 'RA03');
execute insertartiradas('RA0342134,0151388889', '4', '10/05/2015 00:21:48','-19,2', 'RA03');
execute insertartiradas('RA0342134,0155902778', '23', '10/05/2015 00:22:27','19,1', 'RA03');
execute insertartiradas('RA0342134,0163310185', '5', '10/05/2015 00:23:31','-20,8', 'RA03');
execute insertartiradas('RA0342134,0177893518', '32', '10/05/2015 00:25:37','19,4', 'RA03');
execute insertartiradas('RA0342134,018912037', '35', '10/05/2015 00:27:14','-19', 'RA03');
execute insertartiradas('RA0342134,0199074074', '19', '10/05/2015 00:28:40','19,1', 'RA03');
execute insertartiradas('RA0342134,0213425926', '20', '10/05/2015 00:30:44','-18,7', 'RA03');
execute insertartiradas('RA0342134,0226157407', '30', '10/05/2015 00:32:34','20,8', 'RA03');
execute insertartiradas('RA0342134,0247453704', '25', '10/05/2015 00:35:38','-20,2', 'RA03');
execute insertartiradas('RA0342134,0262152778', '10', '10/05/2015 00:37:45','17,5', 'RA03');
execute insertartiradas('RA0342134,0272453704', '6', '10/05/2015 00:39:14','-20,7', 'RA03');
execute insertartiradas('RA0342134,028125', '20', '10/05/2015 00:40:30','18,7', 'RA03');
execute insertartiradas('RA0342134,0297222222', '15', '10/05/2015 00:42:48','-17,2', 'RA03');
execute insertartiradas('RA0342134,0303819444', '31', '10/05/2015 00:43:45','17,9', 'RA03');
execute insertartiradas('RA0342134,0310532407', '10', '10/05/2015 00:44:43','-19,4', 'RA03');
execute insertartiradas('RA0342134,0325115741', '24', '10/05/2015 00:46:49','18', 'RA03');
execute insertartiradas('RA0342134,034224537', '7', '10/05/2015 00:49:17','-20,8', 'RA03');
execute insertartiradas('RA0342134,0366435185', '19', '10/05/2015 00:52:46','19', 'RA03');
execute insertartiradas('RA0342134,0376736111', '1', '10/05/2015 00:54:15','-18,6', 'RA03');
execute insertartiradas('RA0342134,0384606481', '31', '10/05/2015 00:55:23','18,5', 'RA03');
execute insertartiradas('RA0342134,0393287037', '26', '10/05/2015 00:56:38','-18,6', 'RA03');
execute insertartiradas('RA0342134,0410416667', '33', '10/05/2015 00:59:06','18,8', 'RA03');
execute insertartiradas('RA0342134,0420717593', '24', '10/05/2015 01:00:35','-16,9', 'RA03');
execute insertartiradas('RA0342134,0431134259', '10', '10/05/2015 01:02:05','19,7', 'RA03');
execute insertartiradas('RA0342134,0447222222', '0', '10/05/2015 01:04:24','-23,6', 'RA03');
execute insertartiradas('RA0342134,0458333333', '20', '10/05/2015 01:06:00','20,6', 'RA03');
execute insertartiradas('RA0342134,047025463', '36', '10/05/2015 01:07:43','-24,3', 'RA03');
execute insertartiradas('RA0342134,0481481481', '25', '10/05/2015 01:09:20','20,8', 'RA03');
execute insertartiradas('RA0342134,0490740741', '34', '10/05/2015 01:10:40','-16,9', 'RA03');
execute insertartiradas('RA0342134,0499074074', '32', '10/05/2015 01:11:52','21,3', 'RA03');
execute insertartiradas('RA0342134,0513657407', '26', '10/05/2015 01:13:58','-20,1', 'RA03');
execute insertartiradas('RA0342134,0527199074', '10', '10/05/2015 01:15:55','20,3', 'RA03');
execute insertartiradas('RA0342134,053587963', '36', '10/05/2015 01:17:10','-21,2', 'RA03');
execute insertartiradas('RA0342134,0542708333', '4', '10/05/2015 01:18:09','22,5', 'RA03');
execute insertartiradas('RA0342134,0550347222', '33', '10/05/2015 01:19:15','-19,2', 'RA03');
execute insertartiradas('RA0342134,0557175925', '33', '10/05/2015 01:20:14','17,9', 'RA03');
execute insertartiradas('RA0342134,0566898148', '25', '10/05/2015 01:21:38','-20,5', 'RA03');
execute insertartiradas('RA0342134,0577083333', '10', '10/05/2015 01:23:06','17,4', 'RA03');
execute insertartiradas('RA0342134,0588078703', '19', '10/05/2015 01:24:41','-18,8', 'RA03');
execute insertartiradas('RA0342134,0595717593', '22', '10/05/2015 01:25:47','18,7', 'RA03');
execute insertartiradas('RA0342134,0602662037', '29', '10/05/2015 01:26:47','-19,5', 'RA03');
execute insertartiradas('RA0342134,0609722222', '30', '10/05/2015 01:27:48','18,4', 'RA03');
execute insertartiradas('RA0342134,0615856481', '36', '10/05/2015 01:28:41','-19,3', 'RA03');
execute insertartiradas('RA0342134,0622337963', '8', '10/05/2015 01:29:37','19,3', 'RA03');
execute insertartiradas('RA0342134,0628009259', '2', '10/05/2015 01:30:26','-18,2', 'RA03');
execute insertartiradas('RA0342134,0633101852', '18', '10/05/2015 01:31:10','18,1', 'RA03');
execute insertartiradas('RA0342134,0639930556', '24', '10/05/2015 01:32:09','-19,7', 'RA03');
execute insertartiradas('RA0342134,0649537037', '35', '10/05/2015 01:33:32','19,4', 'RA03');
execute insertartiradas('RA0342134,705', '9', '10/05/2015 16:55:12','-10,8', 'RA03');
execute insertartiradas('RA0342134,7055902778', '33', '10/05/2015 16:56:03','13,5', 'RA03');
execute insertartiradas('RA0342134,7272800926', '27', '10/05/2015 17:27:17','-13,5', 'RA03');
execute insertartiradas('RA0342134,7277314815', '5', '10/05/2015 17:27:56','15,8', 'RA03');
execute insertartiradas('RA0342134,728275463', '4', '10/05/2015 17:28:43','-13,4', 'RA03');
execute insertartiradas('RA0342134,7287962963', '27', '10/05/2015 17:29:28','15,1', 'RA03');
execute insertartiradas('RA0342134,7294097222', '31', '10/05/2015 17:30:21','-12', 'RA03');
execute insertartiradas('RA0342134,7298611111', '18', '10/05/2015 17:31:00','18,7', 'RA03');
execute insertartiradas('RA0342134,7303703704', '33', '10/05/2015 17:31:44','-12,4', 'RA03');
execute insertartiradas('RA0342134,7309027778', '2', '10/05/2015 17:32:30','14,7', 'RA03');
execute insertartiradas('RA0342134,7312962963', '33', '10/05/2015 17:33:04','-16,8', 'RA03');
execute insertartiradas('RA0342134,731724537', '34', '10/05/2015 17:33:41','16,3', 'RA03');
execute insertartiradas('RA0342134,7321875', '28', '10/05/2015 17:34:21','-13,7', 'RA03');
execute insertartiradas('RA0342134,7326157407', '4', '10/05/2015 17:34:58','13,8', 'RA03');
execute insertartiradas('RA0342134,7330439814', '0', '10/05/2015 17:35:35','-12,2', 'RA03');
execute insertartiradas('RA0342134,733587963', '25', '10/05/2015 17:36:22','14,6', 'RA03');
execute insertartiradas('RA0342134,7341203704', '2', '10/05/2015 17:37:08','-12,3', 'RA03');
execute insertartiradas('RA0342134,7347106481', '13', '10/05/2015 17:37:59','16', 'RA03');
execute insertartiradas('RA0342134,735150463', '19', '10/05/2015 17:38:37','-13', 'RA03');
execute insertartiradas('RA0342134,7356597222', '17', '10/05/2015 17:39:21','14,9', 'RA03');
execute insertartiradas('RA0342134,7361111111', '14', '10/05/2015 17:40:00','-17,1', 'RA03');
execute insertartiradas('RA0342134,7366666667', '10', '10/05/2015 17:40:48','14,5', 'RA03');
execute insertartiradas('RA0342134,7374421296', '35', '10/05/2015 17:41:55','-12,2', 'RA03');
execute insertartiradas('RA0342134,740150463', '28', '10/05/2015 17:45:49','15,9', 'RA03');
execute insertartiradas('RA0342134,740775463', '1', '10/05/2015 17:46:43','-13,4', 'RA03');
execute insertartiradas('RA0342134,7418518519', '32', '10/05/2015 17:48:16','14,6', 'RA03');
execute insertartiradas('RA0342134,7424074074', '15', '10/05/2015 17:49:04','-16,1', 'RA03');
execute insertartiradas('RA0342134,7431134259', '36', '10/05/2015 17:50:05','18,1', 'RA03');
execute insertartiradas('RA0342134,7438310185', '6', '10/05/2015 17:51:07','-13,2', 'RA03');
execute insertartiradas('RA0342134,7443055556', '23', '10/05/2015 17:51:48','15,7', 'RA03');
execute insertartiradas('RA0342134,7447800926', '5', '10/05/2015 17:52:29','-14,4', 'RA03');
execute insertartiradas('RA0342134,7454050926', '15', '10/05/2015 17:53:23','16,5', 'RA03');
execute insertartiradas('RA0342134,7458449074', '17', '10/05/2015 17:54:01','-15,2', 'RA03');
execute insertartiradas('RA0342134,7464699074', '26', '10/05/2015 17:54:55','14,5', 'RA03');
execute insertartiradas('RA0342134,7470601852', '30', '10/05/2015 17:55:46','-13,7', 'RA03');
execute insertartiradas('RA0342134,7476736111', '24', '10/05/2015 17:56:39','18,6', 'RA03');
execute insertartiradas('RA0342134,7482407407', '32', '10/05/2015 17:57:28','-14,1', 'RA03');
execute insertartiradas('RA0342134,748912037', '33', '10/05/2015 17:58:26','16,2', 'RA03');
execute insertartiradas('RA0342134,7495486111', '31', '10/05/2015 17:59:21','-20,6', 'RA03');
execute insertartiradas('RA0342134,7501388889', '36', '10/05/2015 18:00:12','16,6', 'RA03');
execute insertartiradas('RA0342134,7507523148', '21', '10/05/2015 18:01:05','-13,1', 'RA03');
execute insertartiradas('RA0342134,7515625', '23', '10/05/2015 18:02:15','18,5', 'RA03');
execute insertartiradas('RA0342134,7520717593', '9', '10/05/2015 18:02:59','-19,5', 'RA03');
execute insertartiradas('RA0342134,7527083333', '23', '10/05/2015 18:03:54','16,4', 'RA03');
execute insertartiradas('RA0342134,7531712963', '30', '10/05/2015 18:04:34','-15,2', 'RA03');
execute insertartiradas('RA0342134,7536342593', '21', '10/05/2015 18:05:14','15,2', 'RA03');
execute insertartiradas('RA0342134,7542824074', '11', '10/05/2015 18:06:10','-15,3', 'RA03');
execute insertartiradas('RA0342134,7547569444', '36', '10/05/2015 18:06:51','16,3', 'RA03');
execute insertartiradas('RA0342134,7552314815', '15', '10/05/2015 18:07:32','-19,8', 'RA03');
execute insertartiradas('RA0342134,7557175926', '25', '10/05/2015 18:08:14','15,4', 'RA03');
execute insertartiradas('RA0342134,7562731481', '27', '10/05/2015 18:09:02','-16,2', 'RA03');
execute insertartiradas('RA0342134,7571064815', '15', '10/05/2015 18:10:14','16,2', 'RA03');
execute insertartiradas('RA0342134,7578009259', '5', '10/05/2015 18:11:14','-16,1', 'RA03');
execute insertartiradas('RA0342134,7583680556', '19', '10/05/2015 18:12:03','16,2', 'RA03');
execute insertartiradas('RA0342134,7586805556', '32', '10/05/2015 18:12:30','-15,8', 'RA03');
execute insertartiradas('RA0342134,7591087963', '33', '10/05/2015 18:13:07','15,8', 'RA03');
execute insertartiradas('RA0342134,7649421296', '16', '10/05/2015 18:21:31','-16,6', 'RA03');
execute insertartiradas('RA0342134,7849652778', '6', '10/05/2015 18:50:21','14,1', 'RA03');
execute insertartiradas('RA0342134,7856365741', '32', '10/05/2015 18:51:19','-16,1', 'RA03');
execute insertartiradas('RA0342134,786724537', '8', '10/05/2015 18:52:53','14,5', 'RA03');
execute insertartiradas('RA0342134,7876736111', '0', '10/05/2015 18:54:15','-15,4', 'RA03');
execute insertartiradas('RA0342134,7885069444', '0', '10/05/2015 18:55:27','14,9', 'RA03');
execute insertartiradas('RA0342134,7892361111', '31', '10/05/2015 18:56:30','-15,6', 'RA03');
execute insertartiradas('RA0342134,7908217593', '23', '10/05/2015 18:58:47','15,8', 'RA03');
execute insertartiradas('RA0342134,791099537', '33', '10/05/2015 18:59:11','-14,9', 'RA03');
execute insertartiradas('RA0342134,7915972222', '1', '10/05/2015 18:59:54','13,5', 'RA03');
execute insertartiradas('RA0342134,7920949074', '22', '10/05/2015 19:00:37','-16,5', 'RA03');
execute insertartiradas('RA0342134,7934722222', '6', '10/05/2015 19:02:36','22,1', 'RA03');
execute insertartiradas('RA0342134,794375', '0', '10/05/2015 19:03:54','-21,4', 'RA03');
execute insertartiradas('RA0342134,7951851852', '23', '10/05/2015 19:05:04','17,5', 'RA03');
execute insertartiradas('RA0342134,7955787037', '20', '10/05/2015 19:05:38','-17,3', 'RA03');
execute insertartiradas('RA0342134,7960416667', '8', '10/05/2015 19:06:18','15,5', 'RA03');
execute insertartiradas('RA0342134,7965393519', '14', '10/05/2015 19:07:01','-19,2', 'RA03');
execute insertartiradas('RA0342134,7972685185', '18', '10/05/2015 19:08:04','18,9', 'RA03');
execute insertartiradas('RA0342134,7978240741', '36', '10/05/2015 19:08:52','-18,5', 'RA03');
execute insertartiradas('RA0342134,7983101852', '23', '10/05/2015 19:09:34','18,2', 'RA03');
execute insertartiradas('RA0342134,7986226852', '12', '10/05/2015 19:10:01','-19,3', 'RA03');
execute insertartiradas('RA0342134,7989583333', '23', '10/05/2015 19:10:30','16,5', 'RA03');
execute insertartiradas('RA0342134,7992939815', '30', '10/05/2015 19:10:59','-18,6', 'RA03');
execute insertartiradas('RA0342134,7996527778', '28', '10/05/2015 19:11:30','16,7', 'RA03');
execute insertartiradas('RA0342134,8000694444', '10', '10/05/2015 19:12:06','-18,7', 'RA03');
execute insertartiradas('RA0342134,8004398148', '27', '10/05/2015 19:12:38','18,1', 'RA03');
execute insertartiradas('RA0342134,8008564815', '25', '10/05/2015 19:13:14','-18,7', 'RA03');
execute insertartiradas('RA0342134,8030671296', '0', '10/05/2015 19:16:25','20,7', 'RA03');
execute insertartiradas('RA0342134,8053472222', '0', '10/05/2015 19:19:42','-16,5', 'RA03');
execute insertartiradas('RA0342134,805787037', '31', '10/05/2015 19:20:20','19,3', 'RA03');
execute insertartiradas('RA0342134,8062268519', '23', '10/05/2015 19:20:58','-20,3', 'RA03');
execute insertartiradas('RA0342134,8066319444', '19', '10/05/2015 19:21:33','15,4', 'RA03');
execute insertartiradas('RA0342134,8069791667', '21', '10/05/2015 19:22:03','-16,9', 'RA03');
execute insertartiradas('RA0342134,8073842593', '21', '10/05/2015 19:22:38','16,6', 'RA03');
execute insertartiradas('RA0342134,863287037', '8', '10/05/2015 20:43:08','-16,4', 'RA03');
execute insertartiradas('RA0342134,8640046296', '2', '10/05/2015 20:44:10','16,3', 'RA03');
execute insertartiradas('RA0342134,8646412037', '3', '10/05/2015 20:45:05','-14', 'RA03');
execute insertartiradas('RA0342134,865474537', '7', '10/05/2015 20:46:17','14,2', 'RA03');
execute insertartiradas('RA0342134,8660185185', '26', '10/05/2015 20:47:04','-16', 'RA03');
execute insertartiradas('RA0342134,8669328704', '0', '10/05/2015 20:48:23','16,6', 'RA03');
execute insertartiradas('RA0342134,8679861111', '0', '10/05/2015 20:49:54','-16,6', 'RA03');
execute insertartiradas('RA0342134,8689236111', '36', '10/05/2015 20:51:15','20,1', 'RA03');
execute insertartiradas('RA0342134,8696296296', '31', '10/05/2015 20:52:16','-14,8', 'RA03');
execute insertartiradas('RA0342134,8702777777', '16', '10/05/2015 20:53:12','16,2', 'RA03');
execute insertartiradas('RA0342134,8709027778', '27', '10/05/2015 20:54:06','-16,3', 'RA03');
execute insertartiradas('RA0342134,8714930556', '22', '10/05/2015 20:54:57','16,1', 'RA03');
execute insertartiradas('RA0342134,8723842593', '5', '10/05/2015 20:56:14','-13,8', 'RA03');
execute insertartiradas('RA0342134,8728472222', '15', '10/05/2015 20:56:54','14,2', 'RA03');
execute insertartiradas('RA0342134,8734027778', '31', '10/05/2015 20:57:42','-14,5', 'RA03');
execute insertartiradas('RA0342134,8740625', '12', '10/05/2015 20:58:39','14,8', 'RA03');
execute insertartiradas('RA0342134,8748032407', '19', '10/05/2015 20:59:43','-14,7', 'RA03');
execute insertartiradas('RA0342134,8754398148', '14', '10/05/2015 21:00:38','17,5', 'RA03');
execute insertartiradas('RA0342134,8763194444', '18', '10/05/2015 21:01:54','-18,3', 'RA03');
execute insertartiradas('RA0342134,8768981481', '28', '10/05/2015 21:02:44','19,8', 'RA03');
execute insertartiradas('RA0342134,877349537', '6', '10/05/2015 21:03:23','-21,1', 'RA03');
execute insertartiradas('RA0342134,8779166667', '12', '10/05/2015 21:04:12','19,2', 'RA03');
execute insertartiradas('RA0342134,8784259259', '1', '10/05/2015 21:04:56','-20,6', 'RA03');
execute insertartiradas('RA0342134,8792013889', '15', '10/05/2015 21:06:03','19,4', 'RA03');
execute insertartiradas('RA0342134,8796412037', '13', '10/05/2015 21:06:41','-20,4', 'RA03');
execute insertartiradas('RA0342134,8809259259', '7', '10/05/2015 21:08:32','19,9', 'RA03');
execute insertartiradas('RA0342134,8815625', '35', '10/05/2015 21:09:27','-20,4', 'RA03');
execute insertartiradas('RA0342134,882337963', '14', '10/05/2015 21:10:34','22', 'RA03');
execute insertartiradas('RA0342134,8828587963', '20', '10/05/2015 21:11:19','-20,5', 'RA03');
execute insertartiradas('RA0342134,8842013889', '32', '10/05/2015 21:13:15','16,7', 'RA03');
execute insertartiradas('RA0342134,8848148148', '15', '10/05/2015 21:14:08','-9,7', 'RA03');
execute insertartiradas('RA0342134,8866550926', '13', '10/05/2015 21:16:47','18,8', 'RA03');
execute insertartiradas('RA0342134,8944675926', '33', '10/05/2015 21:28:02','-19,7', 'RA03');
execute insertartiradas('RA0342134,8950925926', '14', '10/05/2015 21:28:56','20', 'RA03');
execute insertartiradas('RA0342134,8955555556', '30', '10/05/2015 21:29:36','-17,1', 'RA03');
execute insertartiradas('RA0342134,8961226852', '10', '10/05/2015 21:30:25','19,1', 'RA03');
execute insertartiradas('RA0342134,8965277778', '0', '10/05/2015 21:31:00','-19,2', 'RA03');
execute insertartiradas('RA0342134,8971180556', '19', '10/05/2015 21:31:51','16,6', 'RA03');
execute insertartiradas('RA0342134,8978240741', '16', '10/05/2015 21:32:52','-11,3', 'RA03');
execute insertartiradas('RA0342134,8982523148', '33', '10/05/2015 21:33:29','19,6', 'RA03');
execute insertartiradas('RA0342134,8991666666', '31', '10/05/2015 21:34:48','-19,6', 'RA03');
execute insertartiradas('RA0342134,899849537', '7', '10/05/2015 21:35:47','21,2', 'RA03');
execute insertartiradas('RA0342134,9005208333', '17', '10/05/2015 21:36:45','-12,9', 'RA03');
execute insertartiradas('RA0342134,901087963', '27', '10/05/2015 21:37:34','17,3', 'RA03');
execute insertartiradas('RA0342134,9022453704', '4', '10/05/2015 21:39:14','-17,1', 'RA03');
execute insertartiradas('RA0342134,9026736111', '14', '10/05/2015 21:39:51','17,1', 'RA03');
execute insertartiradas('RA0342134,9031018519', '34', '10/05/2015 21:40:28','-16,7', 'RA03');
execute insertartiradas('RA0342134,9034837963', '5', '10/05/2015 21:41:01','16,3', 'RA03');
execute insertartiradas('RA0342134,9040162037', '13', '10/05/2015 21:41:47','-20,1', 'RA03');
execute insertartiradas('RA0342134,9044444444', '14', '10/05/2015 21:42:24','18,4', 'RA03');
execute insertartiradas('RA0342134,9048611111', '14', '10/05/2015 21:43:00','-19,1', 'RA03');
execute insertartiradas('RA0342134,9052083333', '14', '10/05/2015 21:43:30','18,3', 'RA03');
execute insertartiradas('RA0342134,9055787037', '22', '10/05/2015 21:44:02','-18,9', 'RA03');
execute insertartiradas('RA0342134,9059837963', '30', '10/05/2015 21:44:37','20,1', 'RA03');
execute insertartiradas('RA0342134,906412037', '9', '10/05/2015 21:45:14','-19,6', 'RA03');
execute insertartiradas('RA0342134,9070601852', '34', '10/05/2015 21:46:10','19', 'RA03');
execute insertartiradas('RA0342134,9074884259', '30', '10/05/2015 21:46:47','-18,9', 'RA03');
execute insertartiradas('RA0342134,9078587963', '24', '10/05/2015 21:47:19','16,1', 'RA03');
execute insertartiradas('RA0342134,9082291667', '22', '10/05/2015 21:47:51','-18,5', 'RA03');
execute insertartiradas('RA0342134,9086342593', '10', '10/05/2015 21:48:26','15,4', 'RA03');
execute insertartiradas('RA0342134,9089930556', '27', '10/05/2015 21:48:57','-17,8', 'RA03');
execute insertartiradas('RA0342134,9094675926', '21', '10/05/2015 21:49:38','16,9', 'RA03');
execute insertartiradas('RA0342134,9097916667', '33', '10/05/2015 21:50:06','-19,4', 'RA03');
execute insertartiradas('RA0342134,9101273148', '17', '10/05/2015 21:50:35','18,7', 'RA03');
execute insertartiradas('RA0342134,9104861111', '28', '10/05/2015 21:51:06','-19,4', 'RA03');
execute insertartiradas('RA0342134,9108796296', '33', '10/05/2015 21:51:40','16,3', 'RA03');
execute insertartiradas('RA0342134,9112731482', '31', '10/05/2015 21:52:14','-18,6', 'RA03');
execute insertartiradas('RA0342134,9116203704', '6', '10/05/2015 21:52:44','19,1', 'RA03');
execute insertartiradas('RA0342134,9120138889', '29', '10/05/2015 21:53:18','-19,5', 'RA03');
execute insertartiradas('RA0342134,9124884259', '0', '10/05/2015 21:53:59','17,7', 'RA03');
execute insertartiradas('RA0342134,9131018519', '20', '10/05/2015 21:54:52','-20,2', 'RA03');
execute insertartiradas('RA0342134,9135532407', '20', '10/05/2015 21:55:31','19,2', 'RA03');
execute insertartiradas('RA0342134,9139467593', '29', '10/05/2015 21:56:05','-21,7', 'RA03');
execute insertartiradas('RA0342134,9143981481', '8', '10/05/2015 21:56:44','20,1', 'RA03');
execute insertartiradas('RA0342134,9148032407', '34', '10/05/2015 21:57:19','-22,3', 'RA03');
execute insertartiradas('RA0342134,9152083333', '16', '10/05/2015 21:57:54','19,4', 'RA03');
execute insertartiradas('RA0342134,9156134259', '9', '10/05/2015 21:58:29','-20', 'RA03');
execute insertartiradas('RA0342134,9159953704', '14', '10/05/2015 21:59:02','17,7', 'RA03');
execute insertartiradas('RA0342134,9163541667', '7', '10/05/2015 21:59:33','-20,5', 'RA03');
execute insertartiradas('RA0342134,9166782407', '13', '10/05/2015 22:00:01','22,8', 'RA03');
execute insertartiradas('RA0342134,9170717593', '16', '10/05/2015 22:00:35','-18,6', 'RA03');
execute insertartiradas('RA0342134,9174768518', '25', '10/05/2015 22:01:10','19,8', 'RA03');
execute insertartiradas('RA0342134,917962963', '0', '10/05/2015 22:01:52','-19,9', 'RA03');
execute insertartiradas('RA0342134,9188310185', '19', '10/05/2015 22:03:07','19,5', 'RA03');
execute insertartiradas('RA0342134,9196412037', '33', '10/05/2015 22:04:17','-10,1', 'RA03');
execute insertartiradas('RA0342134,9200810185', '14', '10/05/2015 22:04:55','16,8', 'RA03');
execute insertartiradas('RA0342134,920462963', '24', '10/05/2015 22:05:28','-17,6', 'RA03');
execute insertartiradas('RA0342134,9211226852', '19', '10/05/2015 22:06:25','19,2', 'RA03');
execute insertartiradas('RA0342134,921574074', '20', '10/05/2015 22:07:04','-16,3', 'RA03');
execute insertartiradas('RA0342134,9221412037', '35', '10/05/2015 22:07:53','18,6', 'RA03');
execute insertartiradas('RA0342134,9225925926', '3', '10/05/2015 22:08:32','-18,4', 'RA03');
execute insertartiradas('RA0342134,9232986111', '4', '10/05/2015 22:09:33','12,7', 'RA03');
execute insertartiradas('RA0342134,9239814815', '26', '10/05/2015 22:10:32','-19,2', 'RA03');
execute insertartiradas('RA0342134,9243981481', '15', '10/05/2015 22:11:08','20', 'RA03');
execute insertartiradas('RA0342134,9247685185', '12', '10/05/2015 22:11:40','-13,7', 'RA03');
execute insertartiradas('RA0342134,9253703704', '12', '10/05/2015 22:12:32','18,2', 'RA03');
execute insertartiradas('RA0342134,9257523148', '10', '10/05/2015 22:13:05','-19,1', 'RA03');
execute insertartiradas('RA0342134,9263773148', '34', '10/05/2015 22:13:59','21,4', 'RA03');
execute insertartiradas('RA0342134,9267361111', '13', '10/05/2015 22:14:30','-19,6', 'RA03');
execute insertartiradas('RA0342134,9270833333', '22', '10/05/2015 22:15:00','19,3', 'RA03');
execute insertartiradas('RA0342134,9277083333', '0', '10/05/2015 22:15:54','-16,9', 'RA03');
execute insertartiradas('RA0342134,9282523148', '13', '10/05/2015 22:16:41','22,2', 'RA03');
execute insertartiradas('RA0342134,92875', '32', '10/05/2015 22:17:24','-22,4', 'RA03');
execute insertartiradas('RA0342134,9290972222', '21', '10/05/2015 22:17:54','22,2', 'RA03');
execute insertartiradas('RA0342134,9296064815', '20', '10/05/2015 22:18:38','-19', 'RA03');
execute insertartiradas('RA0342134,9301736111', '32', '10/05/2015 22:19:27','18,3', 'RA03');
execute insertartiradas('RA0342134,9309143519', '35', '10/05/2015 22:20:31','-21,1', 'RA03');
execute insertartiradas('RA0342134,9321180556', '35', '10/05/2015 22:22:15','15', 'RA03');
execute insertartiradas('RA0342134,9335416667', '9', '10/05/2015 22:24:18','-15,2', 'RA03');
execute insertartiradas('RA0342134,9344212963', '15', '10/05/2015 22:25:34','18', 'RA03');
execute insertartiradas('RA0342134,9349189815', '21', '10/05/2015 22:26:17','-16,3', 'RA03');
execute insertartiradas('RA0342134,9357175926', '17', '10/05/2015 22:27:26','17,1', 'RA03');
execute insertartiradas('RA0342134,9366782407', '2', '10/05/2015 22:28:49','-16,7', 'RA03');
execute insertartiradas('RA0342134,9372453704', '7', '10/05/2015 22:29:38','16,3', 'RA03');
execute insertartiradas('RA0342134,9378009259', '27', '10/05/2015 22:30:26','-16,9', 'RA03');
execute insertartiradas('RA0342134,9383333333', '11', '10/05/2015 22:31:12','21,5', 'RA03');
execute insertartiradas('RA0342134,9388657407', '9', '10/05/2015 22:31:58','-15,3', 'RA03');
execute insertartiradas('RA0342134,939375', '22', '10/05/2015 22:32:42','17,7', 'RA03');
execute insertartiradas('RA0342134,9397800926', '32', '10/05/2015 22:33:17','-15,3', 'RA03');
execute insertartiradas('RA0342134,940150463', '6', '10/05/2015 22:33:49','17,9', 'RA03');
execute insertartiradas('RA0342134,9404861111', '7', '10/05/2015 22:34:18','-18,6', 'RA03');
execute insertartiradas('RA0342134,9408217593', '16', '10/05/2015 22:34:47','18', 'RA03');
execute insertartiradas('RA0342134,9412268518', '7', '10/05/2015 22:35:22','-17,6', 'RA03');
execute insertartiradas('RA0342134,9415625', '29', '10/05/2015 22:35:51','15,8', 'RA03');
execute insertartiradas('RA0342134,9420486111', '22', '10/05/2015 22:36:33','-16', 'RA03');
execute insertartiradas('RA0342134,9428240741', '15', '10/05/2015 22:37:40','19,5', 'RA03');
execute insertartiradas('RA0342134,943599537', '6', '10/05/2015 22:38:47','-14,9', 'RA03');
execute insertartiradas('RA0342134,9442013889', '7', '10/05/2015 22:39:39','16,2', 'RA03');
execute insertartiradas('RA0342134,9447685185', '28', '10/05/2015 22:40:28','-15,8', 'RA03');
execute insertartiradas('RA0342134,9452662037', '31', '10/05/2015 22:41:11','23,1', 'RA03');
execute insertartiradas('RA0342134,9459722222', '25', '10/05/2015 22:42:12','-15,3', 'RA03');
execute insertartiradas('RA0342134,9468055556', '10', '10/05/2015 22:43:24','15,4', 'RA03');
execute insertartiradas('RA0342134,9475', '28', '10/05/2015 22:44:24','-16,9', 'RA03');
execute insertartiradas('RA0342134,9482175926', '20', '10/05/2015 22:45:26','17,2', 'RA03');
execute insertartiradas('RA0342134,948912037', '29', '10/05/2015 22:46:26','-16,4', 'RA03');
execute insertartiradas('RA0342134,9496412037', '24', '10/05/2015 22:47:29','17,9', 'RA03');
execute insertartiradas('RA0342134,9502546296', '20', '10/05/2015 22:48:22','-18', 'RA03');
execute insertartiradas('RA0342134,9515740741', '4', '10/05/2015 22:50:16','17,9', 'RA03');
execute insertartiradas('RA0342134,9525925926', '16', '10/05/2015 22:51:44','-16,3', 'RA03');
execute insertartiradas('RA0342134,9533796296', '24', '10/05/2015 22:52:52','15,3', 'RA03');
execute insertartiradas('RA0342134,9541203704', '12', '10/05/2015 22:53:56','-16,5', 'RA03');
execute insertartiradas('RA0342134,9548958333', '19', '10/05/2015 22:55:03','17,2', 'RA03');
execute insertartiradas('RA0342134,9553472222', '3', '10/05/2015 22:55:42','-15,3', 'RA03');
execute insertartiradas('RA0342134,9559953704', '36', '10/05/2015 22:56:38','16,3', 'RA03');
execute insertartiradas('RA0342134,9565393518', '33', '10/05/2015 22:57:25','-19,4', 'RA03');
execute insertartiradas('RA0342134,9571990741', '31', '10/05/2015 22:58:22','16,2', 'RA03');
execute insertartiradas('RA0342134,9576157407', '15', '10/05/2015 22:58:58','-16,7', 'RA03');
execute insertartiradas('RA0342134,9580555556', '3', '10/05/2015 22:59:36','16,8', 'RA03');
execute insertartiradas('RA0342134,9584953704', '15', '10/05/2015 23:00:14','-15,1', 'RA03');
execute insertartiradas('RA0342134,9590856481', '27', '10/05/2015 23:01:05','18,1', 'RA03');
execute insertartiradas('RA0342134,9596875', '23', '10/05/2015 23:01:57','-14,8', 'RA03');
execute insertartiradas('RA0342134,9603819444', '14', '10/05/2015 23:02:57','14,4', 'RA03');
execute insertartiradas('RA0342134,9608912037', '26', '10/05/2015 23:03:41','-17,8', 'RA03');
execute insertartiradas('RA0342134,9615509259', '19', '10/05/2015 23:04:38','14,6', 'RA03');
execute insertartiradas('RA0342134,962025463', '32', '10/05/2015 23:05:19','-15,8', 'RA03');
execute insertartiradas('RA0342134,962662037', '11', '10/05/2015 23:06:14','15,2', 'RA03');
execute insertartiradas('RA0342134,9631481481', '22', '10/05/2015 23:06:56','-15,5', 'RA03');
execute insertartiradas('RA0342134,9639583333', '19', '10/05/2015 23:08:06','15,8', 'RA03');
execute insertartiradas('RA0342134,9643634259', '26', '10/05/2015 23:08:41','-18,2', 'RA03');
execute insertartiradas('RA0342134,9651967593', '6', '10/05/2015 23:09:53','16,7', 'RA03');
execute insertartiradas('RA0342134,9662152778', '32', '10/05/2015 23:11:21','-16,2', 'RA03');
execute insertartiradas('RA0342134,9669675926', '2', '10/05/2015 23:12:26','17,2', 'RA03');
execute insertartiradas('RA0342134,9678472222', '11', '10/05/2015 23:13:42','-17,2', 'RA03');
execute insertartiradas('RA0342134,9686458333', '28', '10/05/2015 23:14:51','15,9', 'RA03');
execute insertartiradas('RA0342134,9692013889', '21', '10/05/2015 23:15:39','-19,8', 'RA03');
execute insertartiradas('RA0342134,9701041667', '24', '10/05/2015 23:16:57','17,9', 'RA03');
execute insertartiradas('RA0342134,9706597222', '27', '10/05/2015 23:17:45','-18,2', 'RA03');
execute insertartiradas('RA0342134,9721643518', '14', '10/05/2015 23:19:55','16,6', 'RA03');
execute insertartiradas('RA0342134,9731944444', '8', '10/05/2015 23:21:24','-21', 'RA03');
execute insertartiradas('RA0342134,9741435185', '16', '10/05/2015 23:22:46','13,9', 'RA03');
execute insertartiradas('RA0342134,9749189815', '10', '10/05/2015 23:23:53','-15,7', 'RA03');
execute insertartiradas('RA0342134,9757060185', '17', '10/05/2015 23:25:01','14,7', 'RA03');
execute insertartiradas('RA0342134,9764814815', '18', '10/05/2015 23:26:08','-20,9', 'RA03');
execute insertartiradas('RA0342134,9772685185', '4', '10/05/2015 23:27:16','15,1', 'RA03');
execute insertartiradas('RA0342134,9778356481', '4', '10/05/2015 23:28:05','-15,5', 'RA03');
execute insertartiradas('RA0342134,9784606481', '1', '10/05/2015 23:28:59','15,2', 'RA03');
execute insertartiradas('RA0342134,9790393518', '26', '10/05/2015 23:29:49','-16,8', 'RA03');
execute insertartiradas('RA0342134,9800810185', '21', '10/05/2015 23:31:19','14,1', 'RA03');
execute insertartiradas('RA0342134,9805208333', '26', '10/05/2015 23:31:57','-14,7', 'RA03');
execute insertartiradas('RA0342134,9810300926', '11', '10/05/2015 23:32:41','13,9', 'RA03');
execute insertartiradas('RA0342134,981412037', '29', '10/05/2015 23:33:14','-16,6', 'RA03');
execute insertartiradas('RA0342134,9827546296', '20', '10/05/2015 23:35:10','13,8', 'RA03');
execute insertartiradas('RA0342134,9838657407', '26', '10/05/2015 23:36:46','-15,7', 'RA03');
execute insertartiradas('RA0342134,9852430556', '36', '10/05/2015 23:38:45','14', 'RA03');
execute insertartiradas('RA0342134,9864583333', '19', '10/05/2015 23:40:30','-12,2', 'RA03');
execute insertartiradas('RA0342134,9875115741', '8', '10/05/2015 23:42:01','14,1', 'RA03');
execute insertartiradas('RA0342134,9884143519', '17', '10/05/2015 23:43:19','-15,1', 'RA03');
execute insertartiradas('RA0342134,9891203704', '10', '10/05/2015 23:44:20','15,3', 'RA03');
execute insertartiradas('RA0342134,9899652778', '9', '10/05/2015 23:45:33','-14,4', 'RA03');
execute insertartiradas('RA0342134,991412037', '4', '10/05/2015 23:47:38','15,8', 'RA03');
execute insertartiradas('RA0342134,9921875', '18', '10/05/2015 23:48:45','-16,4', 'RA03');
execute insertartiradas('RA0342134,9933217593', '1', '10/05/2015 23:50:23','13,6', 'RA03');
execute insertartiradas('RA0342134,9942592593', '19', '10/05/2015 23:51:44','-13,9', 'RA03');
execute insertartiradas('RA0342134,995462963', '36', '10/05/2015 23:53:28','13', 'RA03');
execute insertartiradas('RA0342134,9968865741', '27', '10/05/2015 23:55:31','-13', 'RA03');
execute insertartiradas('RA0342134,9978240741', '33', '10/05/2015 23:56:52','14', 'RA03');
execute insertartiradas('RA0342134,9983564815', '8', '10/05/2015 23:57:38','-15,2', 'RA03');
execute insertartiradas('RA0342134,998900463', '12', '10/05/2015 23:58:25','14,2', 'RA03');
execute insertartiradas('RA0342134,9994212963', '8', '10/05/2015 23:59:10','-15,3', 'RA03');
execute insertartiradas('RA0342134,9999768519', '31', '10/05/2015 23:59:58','14,4', 'RA03');
execute insertartiradas('RA0342135,0004166667', '27', '11/05/2015 00:00:36','-16', 'RA03');
execute insertartiradas('RA0342135,0009259259', '5', '11/05/2015 00:01:20','12,7', 'RA03');
execute insertartiradas('RA0342135,0013888889', '23', '11/05/2015 00:02:00','-19,6', 'RA03');
execute insertartiradas('RA0342135,0018287037', '16', '11/05/2015 00:02:38','20', 'RA03');
execute insertartiradas('RA0342135,0024305556', '3', '11/05/2015 00:03:30','-20,2', 'RA03');
execute insertartiradas('RA0342135,0028472222', '31', '11/05/2015 00:04:06','17,8', 'RA03');
execute insertartiradas('RA0342135,0032986111', '20', '11/05/2015 00:04:45','-19,9', 'RA03');
execute insertartiradas('RA0342135,00375', '26', '11/05/2015 00:05:24','18,2', 'RA03');
execute insertartiradas('RA0342135,0042361111', '11', '11/05/2015 00:06:06','-19,2', 'RA03');
execute insertartiradas('RA0342135,0046875', '17', '11/05/2015 00:06:45','19,6', 'RA03');
execute insertartiradas('RA0342135,0050925926', '33', '11/05/2015 00:07:20','-20,4', 'RA03');
execute insertartiradas('RA0342135,0055671296', '6', '11/05/2015 00:08:01','21,1', 'RA03');
execute insertartiradas('RA0342135,0059837963', '1', '11/05/2015 00:08:37','-18', 'RA03');
execute insertartiradas('RA0342135,006875', '21', '11/05/2015 00:09:54','20', 'RA03');
execute insertartiradas('RA0342135,0073842593', '9', '11/05/2015 00:10:38','-16,9', 'RA03');
execute insertartiradas('RA0342135,0079513889', '18', '11/05/2015 00:11:27','16,9', 'RA03');
execute insertartiradas('RA0342135,0084375', '6', '11/05/2015 00:12:09','-19,3', 'RA03');
execute insertartiradas('RA0342135,0088773148', '2', '11/05/2015 00:12:47','19,5', 'RA03');
execute insertartiradas('RA0342135,0092476852', '22', '11/05/2015 00:13:19','-19,2', 'RA03');
execute insertartiradas('RA0342135,0096875', '29', '11/05/2015 00:13:57','20,2', 'RA03');
execute insertartiradas('RA0342135,0101273148', '34', '11/05/2015 00:14:35','-17,5', 'RA03');
execute insertartiradas('RA0342135,0105902778', '20', '11/05/2015 00:15:15','19', 'RA03');
execute insertartiradas('RA0342135,0109375', '18', '11/05/2015 00:15:45','-22,1', 'RA03');
execute insertartiradas('RA0342135,0114236111', '36', '11/05/2015 00:16:27','17,4', 'RA03');
execute insertartiradas('RA0342135,0117476852', '11', '11/05/2015 00:16:55','-19', 'RA03');
execute insertartiradas('RA0342135,0122222222', '21', '11/05/2015 00:17:36','17,7', 'RA03');
execute insertartiradas('RA0342135,0126967593', '1', '11/05/2015 00:18:17','-19', 'RA03');
execute insertartiradas('RA0342135,0133333333', '8', '11/05/2015 00:19:12','19,5', 'RA03');
execute insertartiradas('RA0342135,0138541667', '31', '11/05/2015 00:19:57','-19,2', 'RA03');
execute insertartiradas('RA0342135,0143865741', '30', '11/05/2015 00:20:43','20,9', 'RA03');
execute insertartiradas('RA0342135,0150347222', '29', '11/05/2015 00:21:39','-20,1', 'RA03');
execute insertartiradas('RA0342135,015474537', '1', '11/05/2015 00:22:17','20,5', 'RA03');
execute insertartiradas('RA0342135,0159375', '24', '11/05/2015 00:22:57','-18,5', 'RA03');
execute insertartiradas('RA0342135,0168287037', '20', '11/05/2015 00:24:14','19,1', 'RA03');
execute insertartiradas('RA0342135,0175347222', '15', '11/05/2015 00:25:15','-20,8', 'RA03');
execute insertartiradas('RA0342135,0179513889', '27', '11/05/2015 00:25:51','21', 'RA03');
execute insertartiradas('RA0342135,0183912037', '13', '11/05/2015 00:26:29','-21', 'RA03');
execute insertartiradas('RA0342135,018912037', '31', '11/05/2015 00:27:14','17,6', 'RA03');
execute insertartiradas('RA0342135,0193287037', '27', '11/05/2015 00:27:50','-19,4', 'RA03');
execute insertartiradas('RA0342135,0197337963', '7', '11/05/2015 00:28:25','20,1', 'RA03');
execute insertartiradas('RA0342135,0201736111', '14', '11/05/2015 00:29:03','-18,2', 'RA03');
execute insertartiradas('RA0342135,0206481482', '17', '11/05/2015 00:29:44','20,7', 'RA03');
execute insertartiradas('RA0342135,0210532407', '22', '11/05/2015 00:30:19','-19', 'RA03');
execute insertartiradas('RA0342135,0214351852', '18', '11/05/2015 00:30:52','19,7', 'RA03');
execute insertartiradas('RA0342135,0218287037', '19', '11/05/2015 00:31:26','-21', 'RA03');
execute insertartiradas('RA0342135,0222337963', '4', '11/05/2015 00:32:01','19,8', 'RA03');
execute insertartiradas('RA0342135,0226041667', '31', '11/05/2015 00:32:33','-19,7', 'RA03');
execute insertartiradas('RA0342135,023125', '10', '11/05/2015 00:33:18','18,9', 'RA03');
execute insertartiradas('RA0342135,0234837963', '15', '11/05/2015 00:33:49','-19,3', 'RA03');
execute insertartiradas('RA0342135,0238773148', '17', '11/05/2015 00:34:23','21', 'RA03');
execute insertartiradas('RA0342135,0242824074', '21', '11/05/2015 00:34:58','-18,4', 'RA03');
execute insertartiradas('RA0342135,0246759259', '24', '11/05/2015 00:35:32','19,3', 'RA03');
execute insertartiradas('RA0342135,0253703704', '26', '11/05/2015 00:36:32','-19', 'RA03');
execute insertartiradas('RA0342135,0257407407', '27', '11/05/2015 00:37:04','20,1', 'RA03');
execute insertartiradas('RA0342135,026412037', '33', '11/05/2015 00:38:02','-19,5', 'RA03');
execute insertartiradas('RA0342135,0268634259', '34', '11/05/2015 00:38:41','19', 'RA03');
execute insertartiradas('RA0342135,0273958333', '22', '11/05/2015 00:39:27','-19,6', 'RA03');
execute insertartiradas('RA0342135,0283101852', '2', '11/05/2015 00:40:46','21', 'RA03');
execute insertartiradas('RA0342135,0288888888', '9', '11/05/2015 00:41:36','-18,5', 'RA03');
execute insertartiradas('RA0342135,0294791667', '28', '11/05/2015 00:42:27','19,1', 'RA03');
execute insertartiradas('RA0342135,030162037', '7', '11/05/2015 00:43:26','-21,4', 'RA03');
execute insertartiradas('RA0342135,0305208333', '11', '11/05/2015 00:43:57','19,9', 'RA03');
execute insertartiradas('RA0342135,0312037037', '0', '11/05/2015 00:44:56','-20,3', 'RA03');
execute insertartiradas('RA0342135,0318402778', '1', '11/05/2015 00:45:51','21,2', 'RA03');
execute insertartiradas('RA0342135,0322569444', '13', '11/05/2015 00:46:27','-21', 'RA03');
execute insertartiradas('RA0342135,0328356481', '21', '11/05/2015 00:47:17','18,8', 'RA03');
execute insertartiradas('RA0342135,0334837963', '8', '11/05/2015 00:48:13','-23,5', 'RA03');
execute insertartiradas('RA0342135,0338541667', '8', '11/05/2015 00:48:45','19,4', 'RA03');
execute insertartiradas('RA0342135,034525463', '10', '11/05/2015 00:49:43','-20,1', 'RA03');
execute insertartiradas('RA0342135,0350578704', '9', '11/05/2015 00:50:29','19,1', 'RA03');
execute insertartiradas('RA0342135,0354282407', '22', '11/05/2015 00:51:01','-19,9', 'RA03');
execute insertartiradas('RA0342135,0357986111', '19', '11/05/2015 00:51:33','19,3', 'RA03');
execute insertartiradas('RA0342135,0363657407', '8', '11/05/2015 00:52:22','-23,7', 'RA03');
execute insertartiradas('RA0342135,0367476852', '28', '11/05/2015 00:52:55','19,8', 'RA03');
execute insertartiradas('RA0342135,0467476852', '29', '11/05/2015 01:07:19','-15,8', 'RA03');
execute insertartiradas('RA0342135,0473842593', '10', '11/05/2015 01:08:14','18,4', 'RA03');
execute insertartiradas('RA0342135,0477662037', '11', '11/05/2015 01:08:47','-16,6', 'RA03');
execute insertartiradas('RA0342135,0481712963', '8', '11/05/2015 01:09:22','16,5', 'RA03');
execute insertartiradas('RA0342135,0489236111', '3', '11/05/2015 01:10:27','-23,1', 'RA03');
execute insertartiradas('RA0342135,0494097222', '31', '11/05/2015 01:11:09','11,8', 'RA03');
execute insertartiradas('RA0342135,049849537', '11', '11/05/2015 01:11:47','-15,3', 'RA03');
execute insertartiradas('RA0342135,0503356481', '25', '11/05/2015 01:12:29','17,2', 'RA03');
execute insertartiradas('RA0342135,0508101852', '26', '11/05/2015 01:13:10','-14', 'RA03');
execute insertartiradas('RA0342135,0513541667', '4', '11/05/2015 01:13:57','16,2', 'RA03');
execute insertartiradas('RA0342135,0517361111', '29', '11/05/2015 01:14:30','-15,3', 'RA03');
execute insertartiradas('RA0342135,0525810185', '2', '11/05/2015 01:15:43','17,1', 'RA03');
execute insertartiradas('RA0342135,0531134259', '15', '11/05/2015 01:16:29','-15', 'RA03');
execute insertartiradas('RA0342135,0535416667', '20', '11/05/2015 01:17:06','14,8', 'RA03');
execute insertartiradas('RA0342135,0540046296', '32', '11/05/2015 01:17:46','-15,8', 'RA03');
execute insertartiradas('RA0342135,0548148148', '23', '11/05/2015 01:18:56','14,5', 'RA03');
execute insertartiradas('RA0342135,0553356481', '13', '11/05/2015 01:19:41','-14,9', 'RA03');
execute insertartiradas('RA0342135,0559143519', '23', '11/05/2015 01:20:31','14,9', 'RA03');
execute insertartiradas('RA0342135,0565740741', '13', '11/05/2015 01:21:28','-16,1', 'RA03');
execute insertartiradas('RA0342135,0570833333', '6', '11/05/2015 01:22:12','18,4', 'RA03');
execute insertartiradas('RA0342135,0576967593', '33', '11/05/2015 01:23:05','-14,6', 'RA03');
execute insertartiradas('RA0342135,0582986111', '32', '11/05/2015 01:23:57','13,7', 'RA03');
execute insertartiradas('RA0342135,0590509259', '6', '11/05/2015 01:25:02','-18,1', 'RA03');
execute insertartiradas('RA0342135,0596064815', '17', '11/05/2015 01:25:50','15,2', 'RA03');
execute insertartiradas('RA0342135,0601157407', '12', '11/05/2015 01:26:34','-13,4', 'RA03');
execute insertartiradas('RA0342135,0605208333', '22', '11/05/2015 01:27:09','16,1', 'RA03');
execute insertartiradas('RA0342135,0610069444', '13', '11/05/2015 01:27:51','-15,2', 'RA03');
execute insertartiradas('RA0342135,0615277778', '3', '11/05/2015 01:28:36','14,3', 'RA03');
execute insertartiradas('RA0342135,0621875', '24', '11/05/2015 01:29:33','-16,8', 'RA03');
execute insertartiradas('RA0342135,0626388889', '9', '11/05/2015 01:30:12','14,1', 'RA03');
execute insertartiradas('RA0342135,0630671296', '7', '11/05/2015 01:30:49','-16,1', 'RA03');
execute insertartiradas('RA0342135,063587963', '15', '11/05/2015 01:31:34','16,6', 'RA03');
execute insertartiradas('RA0342135,0640972222', '24', '11/05/2015 01:32:18','-15,4', 'RA03');
execute insertartiradas('RA0342135,0646875', '17', '11/05/2015 01:33:09','14,8', 'RA03');
execute insertartiradas('RA0342135,0651736111', '4', '11/05/2015 01:33:51','-15', 'RA03');
execute insertartiradas('RA0342135,0656828704', '25', '11/05/2015 01:34:35','14', 'RA03');
execute insertartiradas('RA0342135,0661226852', '1', '11/05/2015 01:35:13','-13,3', 'RA03');
execute insertartiradas('RA0342135,0666782407', '21', '11/05/2015 01:36:01','14,5', 'RA03');
execute insertartiradas('RA0342135,0674189815', '28', '11/05/2015 01:37:05','-13', 'RA03');
execute insertartiradas('RA0342135,0681365741', '34', '11/05/2015 01:38:07','11,9', 'RA03');
execute insertartiradas('RA0342135,0686342593', '24', '11/05/2015 01:38:50','-15,6', 'RA03');
execute insertartiradas('RA0342135,0690393519', '6', '11/05/2015 01:39:25','13,7', 'RA03');
execute insertartiradas('RA0342135,0700231481', '15', '11/05/2015 01:40:50','-14,4', 'RA03');
execute insertartiradas('RA0342135,0707175926', '14', '11/05/2015 01:41:50','11,8', 'RA03');
execute insertartiradas('RA0342135,0712731481', '1', '11/05/2015 01:42:38','-17,3', 'RA03');
execute insertartiradas('RA0342135,072037037', '27', '11/05/2015 01:43:44','15,2', 'RA03');
execute insertartiradas('RA0342135,0725462963', '10', '11/05/2015 01:44:28','-15,9', 'RA03');
execute insertartiradas('RA0342135,0737731481', '36', '11/05/2015 01:46:14','15,5', 'RA03');
execute insertartiradas('RA0342135,0743402778', '8', '11/05/2015 01:47:03','-14,7', 'RA03');
execute insertartiradas('RA0342135,0751388889', '30', '11/05/2015 01:48:12','16,1', 'RA03');
execute insertartiradas('RA0342135,0758449074', '28', '11/05/2015 01:49:13','-20,2', 'RA03');
execute insertartiradas('RA0342135,0765740741', '13', '11/05/2015 01:50:16','18,2', 'RA03');
execute insertartiradas('RA0342135,0772106481', '28', '11/05/2015 01:51:11','-14,5', 'RA03');
execute insertartiradas('RA0342135,0778009259', '23', '11/05/2015 01:52:02','12', 'RA03');
execute insertartiradas('RA0342135,0787847222', '10', '11/05/2015 01:53:27','-14,7', 'RA03');
execute insertartiradas('RA0342135,0793981481', '34', '11/05/2015 01:54:20','19,6', 'RA03');
execute insertartiradas('RA0342135,0799074074', '34', '11/05/2015 01:55:04','-15,6', 'RA03');
execute insertartiradas('RA0342135,080787037', '33', '11/05/2015 01:56:20','13,5', 'RA03');
execute insertartiradas('RA0342135,0812847222', '2', '11/05/2015 01:57:03','-16', 'RA03');
execute insertartiradas('RA0342135,0820138889', '34', '11/05/2015 01:58:06','15,2', 'RA03');
execute insertartiradas('RA0342135,0825810185', '25', '11/05/2015 01:58:55','-14,4', 'RA03');
execute insertartiradas('RA0342135,0829861111', '30', '11/05/2015 01:59:30','14', 'RA03');
execute insertartiradas('RA0342135,0834953704', '16', '11/05/2015 02:00:14','-14,9', 'RA03');
execute insertartiradas('RA0342135,0838773148', '17', '11/05/2015 02:00:47','14,1', 'RA03');
execute insertartiradas('RA0342135,0841435185', '33', '11/05/2015 02:01:10','-16,3', 'RA03');
execute insertartiradas('RA0342135,0845023148', '0', '11/05/2015 02:01:41','14,5', 'RA03');
execute insertartiradas('RA0342135,0853472222', '18', '11/05/2015 02:02:54','-14,2', 'RA03');
execute insertartiradas('RA0342135,0861689815', '12', '11/05/2015 02:04:05','15,8', 'RA03');
execute insertartiradas('RA0342135,0871180556', '3', '11/05/2015 02:05:27','-14,6', 'RA03');
execute insertartiradas('RA0342135,0876157407', '6', '11/05/2015 02:06:10','17,2', 'RA03');
execute insertartiradas('RA0342135,0880902778', '30', '11/05/2015 02:06:51','-16,9', 'RA03');
execute insertartiradas('RA0342135,0885185185', '18', '11/05/2015 02:07:28','15,9', 'RA03');
execute insertartiradas('RA0342135,0889814815', '12', '11/05/2015 02:08:08','-17,5', 'RA03');
execute insertartiradas('RA0342135,0894444444', '13', '11/05/2015 02:08:48','16,4', 'RA03');
execute insertartiradas('RA0342135,0898842593', '23', '11/05/2015 02:09:26','-14,9', 'RA03');
execute insertartiradas('RA0342135,0902546296', '13', '11/05/2015 02:09:58','12,8', 'RA03');
execute insertartiradas('RA0342135,0907060185', '3', '11/05/2015 02:10:37','-13,8', 'RA03');
execute insertartiradas('RA0342135,0920949074', '12', '11/05/2015 02:12:37','15,6', 'RA03');
execute insertartiradas('RA0342135,0990393519', '32', '11/05/2015 02:22:37','-16,9', 'RA03');
execute insertartiradas('RA0342135,0996527778', '12', '11/05/2015 02:23:30','15,1', 'RA03');
execute insertartiradas('RA0342135,1090393519', '5', '11/05/2015 02:37:01','-15,3', 'RA03');
execute insertartiradas('RA0342135,719525463', '15', '11/05/2015 17:16:07','16,2', 'RA03');
execute insertartiradas('RA0342135,7198726852', '34', '11/05/2015 17:16:37','-19,3', 'RA03');
execute insertartiradas('RA0342135,7202430556', '26', '11/05/2015 17:17:09','14,8', 'RA03');
execute insertartiradas('RA0342135,7205555556', '24', '11/05/2015 17:17:36','-18,3', 'RA03');
execute insertartiradas('RA0342135,7209490741', '30', '11/05/2015 17:18:10','15,9', 'RA03');
execute insertartiradas('RA0342135,7213194444', '31', '11/05/2015 17:18:42','-14,4', 'RA03');
execute insertartiradas('RA0342135,7216435185', '5', '11/05/2015 17:19:10','14,5', 'RA03');
execute insertartiradas('RA0342135,7220023148', '5', '11/05/2015 17:19:41','-16,2', 'RA03');
execute insertartiradas('RA0342135,7224768518', '22', '11/05/2015 17:20:22','13,9', 'RA03');
execute insertartiradas('RA0342135,7228009259', '9', '11/05/2015 17:20:50','-14,5', 'RA03');
execute insertartiradas('RA0342135,7231134259', '22', '11/05/2015 17:21:17','16,1', 'RA03');
execute insertartiradas('RA0342135,7234722222', '5', '11/05/2015 17:21:48','-15', 'RA03');
execute insertartiradas('RA0342135,7237962963', '36', '11/05/2015 17:22:16','14,9', 'RA03');
execute insertartiradas('RA0342135,7240972222', '28', '11/05/2015 17:22:42','-14,1', 'RA03');
execute insertartiradas('RA0342135,7243981482', '33', '11/05/2015 17:23:08','15,6', 'RA03');
execute insertartiradas('RA0342135,7247337963', '20', '11/05/2015 17:23:37','-15,2', 'RA03');
execute insertartiradas('RA0342135,7249884259', '28', '11/05/2015 17:23:59','16,5', 'RA03');
execute insertartiradas('RA0342135,7253009259', '2', '11/05/2015 17:24:26','-15,7', 'RA03');
execute insertartiradas('RA0342135,7255902778', '19', '11/05/2015 17:24:51','14,9', 'RA03');
execute insertartiradas('RA0342135,7258796296', '19', '11/05/2015 17:25:16','-13,5', 'RA03');
execute insertartiradas('RA0342135,726261574', '0', '11/05/2015 17:25:49','15,3', 'RA03');
execute insertartiradas('RA0342135,7265509259', '34', '11/05/2015 17:26:14','-16,4', 'RA03');
execute insertartiradas('RA0342135,7268518519', '19', '11/05/2015 17:26:40','14,4', 'RA03');
execute insertartiradas('RA0342135,7271990741', '16', '11/05/2015 17:27:10','-15,4', 'RA03');
execute insertartiradas('RA0342135,7275810185', '34', '11/05/2015 17:27:43','14,1', 'RA03');
execute insertartiradas('RA0342135,7279050926', '30', '11/05/2015 17:28:11','-15,5', 'RA03');
execute insertartiradas('RA0342135,7282523148', '35', '11/05/2015 17:28:41','11,6', 'RA03');
execute insertartiradas('RA0342135,7285532407', '0', '11/05/2015 17:29:07','-14,6', 'RA03');
execute insertartiradas('RA0342135,7288657407', '4', '11/05/2015 17:29:34','17,6', 'RA03');
execute insertartiradas('RA0342135,7291319444', '13', '11/05/2015 17:29:57','-15,2', 'RA03');
execute insertartiradas('RA0342135,7294328704', '27', '11/05/2015 17:30:23','14,9', 'RA03');
execute insertartiradas('RA0342135,7297106481', '16', '11/05/2015 17:30:47','-15,1', 'RA03');
execute insertartiradas('RA0342135,7302546296', '22', '11/05/2015 17:31:34','15,7', 'RA03');
execute insertartiradas('RA0342135,7307407407', '9', '11/05/2015 17:32:16','-14,8', 'RA03');
execute insertartiradas('RA0342135,7311111111', '11', '11/05/2015 17:32:48','10,7', 'RA03');
execute insertartiradas('RA0342135,7325347222', '5', '11/05/2015 17:34:51','-16,9', 'RA03');
execute insertartiradas('RA0342135,7330208333', '13', '11/05/2015 17:35:33','15,1', 'RA03');
execute insertartiradas('RA0342135,7333564815', '17', '11/05/2015 17:36:02','-15,6', 'RA03');
execute insertartiradas('RA0342135,733900463', '16', '11/05/2015 17:36:49','14,3', 'RA03');
execute insertartiradas('RA0342135,7345833333', '24', '11/05/2015 17:37:48','-14,5', 'RA03');
execute insertartiradas('RA0342135,7352777778', '27', '11/05/2015 17:38:48','16,8', 'RA03');
execute insertartiradas('RA0342135,7358101852', '11', '11/05/2015 17:39:34','-14,9', 'RA03');
execute insertartiradas('RA0342135,7553819444', '18', '11/05/2015 18:07:45','17,5', 'RA03');
execute insertartiradas('RA0342135,7558101852', '32', '11/05/2015 18:08:22','-18,1', 'RA03');
execute insertartiradas('RA0342135,7564467593', '15', '11/05/2015 18:09:17','19', 'RA03');
execute insertartiradas('RA0342135,7569212963', '31', '11/05/2015 18:09:58','-17,6', 'RA03');
execute insertartiradas('RA0342135,7574305556', '29', '11/05/2015 18:10:42','14,4', 'RA03');
execute insertartiradas('RA0342135,7578935185', '17', '11/05/2015 18:11:22','-18,4', 'RA03');
execute insertartiradas('RA0342135,7584143519', '12', '11/05/2015 18:12:07','16,3', 'RA03');
execute insertartiradas('RA0342135,758912037', '18', '11/05/2015 18:12:50','-19,6', 'RA03');
execute insertartiradas('RA0342135,7595717593', '4', '11/05/2015 18:13:47','17,4', 'RA03');
execute insertartiradas('RA0342135,7604398148', '17', '11/05/2015 18:15:02','-17,9', 'RA03');
execute insertartiradas('RA0342135,7611226852', '12', '11/05/2015 18:16:01','18,6', 'RA03');
execute insertartiradas('RA0342135,7618055556', '8', '11/05/2015 18:17:00','-18,2', 'RA03');
execute insertartiradas('RA0342135,7622916667', '28', '11/05/2015 18:17:42','17,8', 'RA03');
execute insertartiradas('RA0342135,7631481482', '2', '11/05/2015 18:18:56','-18,2', 'RA03');
execute insertartiradas('RA0342135,7641666667', '35', '11/05/2015 18:20:24','17', 'RA03');
execute insertartiradas('RA0342135,7646643519', '27', '11/05/2015 18:21:07','-17,8', 'RA03');
execute insertartiradas('RA0342135,7653819444', '3', '11/05/2015 18:22:09','17,9', 'RA03');
execute insertartiradas('RA0342135,7660185185', '13', '11/05/2015 18:23:04','-16,7', 'RA03');
execute insertartiradas('RA0342135,766412037', '2', '11/05/2015 18:23:38','18,2', 'RA03');
execute insertartiradas('RA0342135,7672569444', '3', '11/05/2015 18:24:51','-19,9', 'RA03');
execute insertartiradas('RA0342135,7677314815', '6', '11/05/2015 18:25:32','18,6', 'RA03');
execute insertartiradas('RA0342135,7680902778', '30', '11/05/2015 18:26:03','-18,6', 'RA03');
execute insertartiradas('RA0342135,7685763889', '33', '11/05/2015 18:26:45','18,2', 'RA03');
execute insertartiradas('RA0342135,7691435185', '20', '11/05/2015 18:27:34','-15,7', 'RA03');
execute insertartiradas('RA0342135,769525463', '27', '11/05/2015 18:28:07','18,1', 'RA03');
execute insertartiradas('RA0342135,7698842593', '4', '11/05/2015 18:28:38','-19,5', 'RA03');
execute insertartiradas('RA0342135,7702777778', '29', '11/05/2015 18:29:12','22,4', 'RA03');
execute insertartiradas('RA0342135,7707523148', '24', '11/05/2015 18:29:53','-19,8', 'RA03');
execute insertartiradas('RA0342135,7711111111', '19', '11/05/2015 18:30:24','20,9', 'RA03');
execute insertartiradas('RA0342135,772037037', '15', '11/05/2015 18:31:44','-17,3', 'RA03');
execute insertartiradas('RA0342135,7764699074', '5', '11/05/2015 18:38:07','20,3', 'RA03');
execute insertartiradas('RA0342135,7768402778', '21', '11/05/2015 18:38:39','-17,5', 'RA03');
execute insertartiradas('RA0342135,7946875', '15', '11/05/2015 19:04:21','17,5', 'RA03');
execute insertartiradas('RA0342135,7955092593', '19', '11/05/2015 19:05:32','-16,7', 'RA03');
execute insertartiradas('RA0342135,7959953704', '34', '11/05/2015 19:06:14','17,2', 'RA03');
execute insertartiradas('RA0342135,7966203704', '34', '11/05/2015 19:07:08','-18,1', 'RA03');
execute insertartiradas('RA0342135,7971064815', '33', '11/05/2015 19:07:50','19,6', 'RA03');
execute insertartiradas('RA0342135,7977083333', '0', '11/05/2015 19:08:42','-16,3', 'RA03');
execute insertartiradas('RA0342135,798275463', '2', '11/05/2015 19:09:31','17,1', 'RA03');
execute insertartiradas('RA0342135,7987384259', '15', '11/05/2015 19:10:11','-19,3', 'RA03');
execute insertartiradas('RA0342135,7992476852', '31', '11/05/2015 19:10:55','16,4', 'RA03');
execute insertartiradas('RA0342135,7996527778', '3', '11/05/2015 19:11:30','-18,2', 'RA03');
execute insertartiradas('RA0342135,8001157407', '29', '11/05/2015 19:12:10','18,6', 'RA03');
execute insertartiradas('RA0342135,8007986111', '2', '11/05/2015 19:13:09','-18,2', 'RA03');
execute insertartiradas('RA0342135,8013078704', '13', '11/05/2015 19:13:53','16,1', 'RA03');
execute insertartiradas('RA0342135,8017592593', '33', '11/05/2015 19:14:32','-17,5', 'RA03');
execute insertartiradas('RA0342135,8024305556', '4', '11/05/2015 19:15:30','17,9', 'RA03');
execute insertartiradas('RA0342135,8030092593', '10', '11/05/2015 19:16:20','-17,7', 'RA03');
execute insertartiradas('RA0342135,8036458333', '3', '11/05/2015 19:17:15','21,1', 'RA03');
execute insertartiradas('RA0342135,8042939815', '5', '11/05/2015 19:18:11','-20,1', 'RA03');
execute insertartiradas('RA0342135,804849537', '34', '11/05/2015 19:18:59','17', 'RA03');
execute insertartiradas('RA0342135,8056944444', '31', '11/05/2015 19:20:12','-18,3', 'RA03');
execute insertartiradas('RA0342135,8066319444', '17', '11/05/2015 19:21:33','19,3', 'RA03');
execute insertartiradas('RA0342135,8215162037', '30', '11/05/2015 19:42:59','15', 'RA03');
execute insertartiradas('RA0342135,8235300926', '12', '11/05/2015 19:45:53','-16,5', 'RA03');
execute insertartiradas('RA0342135,8247916667', '4', '11/05/2015 19:47:42','15,4', 'RA03');
execute insertartiradas('RA0342135,8263194444', '28', '11/05/2015 19:49:54','-15,2', 'RA03');
execute insertartiradas('RA0342135,8278472222', '30', '11/05/2015 19:52:06','20,2', 'RA03');
execute insertartiradas('RA0342135,8291898148', '5', '11/05/2015 19:54:02','-20,4', 'RA03');
execute insertartiradas('RA0342135,8308449074', '0', '11/05/2015 19:56:25','10,9', 'RA03');
execute insertartiradas('RA0342135,8316087963', '16', '11/05/2015 19:57:31','-12,5', 'RA03');
execute insertartiradas('RA0342135,8325810185', '28', '11/05/2015 19:58:55','12,5', 'RA03');
execute insertartiradas('RA0342135,8336111111', '31', '11/05/2015 20:00:24','-13,2', 'RA03');
execute insertartiradas('RA0342135,8341435185', '14', '11/05/2015 20:01:10','11,4', 'RA03');
execute insertartiradas('RA0342135,8353472222', '13', '11/05/2015 20:02:54','-14,4', 'RA03');
execute insertartiradas('RA0342135,8364351852', '14', '11/05/2015 20:04:28','13,4', 'RA03');
execute insertartiradas('RA0342135,8372916667', '35', '11/05/2015 20:05:42','-14', 'RA03');
execute insertartiradas('RA0342135,8384722222', '23', '11/05/2015 20:07:24','11,7', 'RA03');
execute insertartiradas('RA0342135,8395138889', '16', '11/05/2015 20:08:54','-15,3', 'RA03');
execute insertartiradas('RA0342135,8402199074', '6', '11/05/2015 20:09:55','11,7', 'RA03');
execute insertartiradas('RA0342135,8409837963', '5', '11/05/2015 20:11:01','-11,5', 'RA03');
execute insertartiradas('RA0342135,8415856482', '14', '11/05/2015 20:11:53','19', 'RA03');
execute insertartiradas('RA0342135,8423726852', '21', '11/05/2015 20:13:01','-23,5', 'RA03');
execute insertartiradas('RA0342135,8430671296', '17', '11/05/2015 20:14:01','13,3', 'RA03');
execute insertartiradas('RA0342135,8436921296', '24', '11/05/2015 20:14:55','-13,3', 'RA03');
execute insertartiradas('RA0342135,8442824074', '35', '11/05/2015 20:15:46','15,3', 'RA03');
execute insertartiradas('RA0342135,8448032407', '25', '11/05/2015 20:16:31','-18,3', 'RA03');
execute insertartiradas('RA0342135,8458217593', '26', '11/05/2015 20:17:59','11,7', 'RA03');
execute insertartiradas('RA0342135,8466782407', '25', '11/05/2015 20:19:13','-15', 'RA03');
execute insertartiradas('RA0342135,8473263889', '12', '11/05/2015 20:20:09','12,2', 'RA03');
execute insertartiradas('RA0342135,8480671296', '2', '11/05/2015 20:21:13','-16,4', 'RA03');
execute insertartiradas('RA0342135,8486689815', '23', '11/05/2015 20:22:05','14,3', 'RA03');
execute insertartiradas('RA0342135,8492939815', '29', '11/05/2015 20:22:59','-16,1', 'RA03');
execute insertartiradas('RA0342135,8499768519', '7', '11/05/2015 20:23:58','13', 'RA03');
execute insertartiradas('RA0342135,8504513889', '35', '11/05/2015 20:24:39','-21', 'RA03');
execute insertartiradas('RA0342135,8513194444', '7', '11/05/2015 20:25:54','13,9', 'RA03');
execute insertartiradas('RA0342135,8521990741', '26', '11/05/2015 20:27:10','-15,2', 'RA03');
execute insertartiradas('RA0342135,8529166667', '34', '11/05/2015 20:28:12','11', 'RA03');
execute insertartiradas('RA0342135,8534490741', '27', '11/05/2015 20:28:58','-12,5', 'RA03');
execute insertartiradas('RA0342135,8540972222', '10', '11/05/2015 20:29:54','12,2', 'RA03');
execute insertartiradas('RA0342135,8546064815', '8', '11/05/2015 20:30:38','-16,3', 'RA03');
execute insertartiradas('RA0342135,8553356481', '11', '11/05/2015 20:31:41','11,5', 'RA03');
execute insertartiradas('RA0342135,8564930556', '27', '11/05/2015 20:33:21','-17', 'RA03');
execute insertartiradas('RA0342135,8576041667', '12', '11/05/2015 20:34:57','22,1', 'RA03');
execute insertartiradas('RA0342135,8587962963', '6', '11/05/2015 20:36:40','-22,2', 'RA03');
execute insertartiradas('RA0342135,859537037', '13', '11/05/2015 20:37:44','20,5', 'RA03');
execute insertartiradas('RA0342135,8603703704', '32', '11/05/2015 20:38:56','-13,9', 'RA03');
execute insertartiradas('RA0342135,8611574074', '13', '11/05/2015 20:40:04','22,9', 'RA03');
execute insertartiradas('RA0342135,8618055556', '24', '11/05/2015 20:41:00','-19', 'RA03');
execute insertartiradas('RA0342135,8625578704', '28', '11/05/2015 20:42:05','14,7', 'RA03');
execute insertartiradas('RA0342135,8633564815', '22', '11/05/2015 20:43:14','-17,9', 'RA03');
execute insertartiradas('RA0342135,863900463', '30', '11/05/2015 20:44:01','13,7', 'RA03');
execute insertartiradas('RA0342135,8643055556', '0', '11/05/2015 20:44:36','-15', 'RA03');
execute insertartiradas('RA0342135,8646296296', '6', '11/05/2015 20:45:04','15,4', 'RA03');
execute insertartiradas('RA0342135,8671180556', '12', '11/05/2015 20:48:39','-15,6', 'RA03');
execute insertartiradas('RA0342135,8755439815', '30', '11/05/2015 21:00:47','14,3', 'RA03');
execute insertartiradas('RA0342135,8761458333', '3', '11/05/2015 21:01:39','-15,7', 'RA03');
execute insertartiradas('RA0342135,877650463', '27', '11/05/2015 21:03:49','12,1', 'RA03');
execute insertartiradas('RA0342135,8868634259', '13', '11/05/2015 21:17:05','-14,4', 'RA03');
execute insertartiradas('RA0342135,8961111111', '9', '11/05/2015 21:30:24','14,4', 'RA03');
execute insertartiradas('RA0342135,8967476852', '33', '11/05/2015 21:31:19','-15,9', 'RA03');
execute insertartiradas('RA0342135,9002430556', '11', '11/05/2015 21:36:21','15,1', 'RA03');
execute insertartiradas('RA0342135,9005902778', '3', '11/05/2015 21:36:51','-16', 'RA03');
execute insertartiradas('RA0342135,9010069444', '11', '11/05/2015 21:37:27','14,9', 'RA03');
execute insertartiradas('RA0342135,9013888889', '34', '11/05/2015 21:38:00','-15', 'RA03');
execute insertartiradas('RA0342135,9021064815', '24', '11/05/2015 21:39:02','15,4', 'RA03');
execute insertartiradas('RA0342135,9025810185', '19', '11/05/2015 21:39:43','-14,9', 'RA03');
execute insertartiradas('RA0342135,9030787037', '5', '11/05/2015 21:40:26','14,8', 'RA03');
execute insertartiradas('RA0342135,9034259259', '33', '11/05/2015 21:40:56','-15,8', 'RA03');
execute insertartiradas('RA0342135,9039930556', '6', '11/05/2015 21:41:45','14,4', 'RA03');
execute insertartiradas('RA0342135,9045833333', '31', '11/05/2015 21:42:36','-15,6', 'RA03');
execute insertartiradas('RA0342135,9050810185', '3', '11/05/2015 21:43:19','16,1', 'RA03');
execute insertartiradas('RA0342135,9055324074', '22', '11/05/2015 21:43:58','-15,7', 'RA03');
execute insertartiradas('RA0342135,9059259259', '13', '11/05/2015 21:44:32','17,9', 'RA03');
execute insertartiradas('RA0342135,9063541667', '25', '11/05/2015 21:45:09','-15', 'RA03');
execute insertartiradas('RA0342135,9067476852', '9', '11/05/2015 21:45:43','16,4', 'RA03');
execute insertartiradas('RA0342135,9071759259', '33', '11/05/2015 21:46:20','-15,3', 'RA03');
execute insertartiradas('RA0342135,9078125', '24', '11/05/2015 21:47:15','21,8', 'RA03');
execute insertartiradas('RA0342135,9084027778', '34', '11/05/2015 21:48:06','-14,1', 'RA03');
execute insertartiradas('RA0342135,9090046296', '20', '11/05/2015 21:48:58','18', 'RA03');
execute insertartiradas('RA0342135,9095949074', '14', '11/05/2015 21:49:49','-12,1', 'RA03');
execute insertartiradas('RA0342135,9104282407', '0', '11/05/2015 21:51:01','23,4', 'RA03');
execute insertartiradas('RA0342135,9120601852', '11', '11/05/2015 21:53:22','-18,3', 'RA03');
execute insertartiradas('RA0342135,9124652778', '32', '11/05/2015 21:53:57','19,2', 'RA03');
execute insertartiradas('RA0342135,9128935185', '18', '11/05/2015 21:54:34','-16,5', 'RA03');
execute insertartiradas('RA0342135,913287037', '12', '11/05/2015 21:55:08','19,2', 'RA03');
execute insertartiradas('RA0342135,9138078704', '2', '11/05/2015 21:55:53','-15', 'RA03');
execute insertartiradas('RA0342135,9141898148', '27', '11/05/2015 21:56:26','14,1', 'RA03');
execute insertartiradas('RA0342135,9246180556', '36', '11/05/2015 22:11:27','-15,8', 'RA03');
execute insertartiradas('RA0342135,9253587963', '8', '11/05/2015 22:12:31','20,7', 'RA03');
execute insertartiradas('RA0342135,926099537', '20', '11/05/2015 22:13:35','-13,8', 'RA03');
execute insertartiradas('RA0342135,9269791667', '8', '11/05/2015 22:14:51','19,1', 'RA03');
execute insertartiradas('RA0342135,9275115741', '24', '11/05/2015 22:15:37','-16,8', 'RA03');
execute insertartiradas('RA0342135,9281828704', '29', '11/05/2015 22:16:35','16,8', 'RA03');
execute insertartiradas('RA0342135,9288888889', '1', '11/05/2015 22:17:36','-17', 'RA03');
execute insertartiradas('RA0342135,9294444444', '1', '11/05/2015 22:18:24','19,9', 'RA03');
execute insertartiradas('RA0342135,9305671296', '16', '11/05/2015 22:20:01','-17,2', 'RA03');
execute insertartiradas('RA0342135,9311574074', '24', '11/05/2015 22:20:52','16', 'RA03');
execute insertartiradas('RA0342135,9318865741', '24', '11/05/2015 22:21:55','-16', 'RA03');
execute insertartiradas('RA0342135,9326967593', '3', '11/05/2015 22:23:05','18,9', 'RA03');
execute insertartiradas('RA0342135,9334953704', '34', '11/05/2015 22:24:14','-16,3', 'RA03');
execute insertartiradas('RA0342135,9341666667', '29', '11/05/2015 22:25:12','17,2', 'RA03');
execute insertartiradas('RA0342135,9353125', '25', '11/05/2015 22:26:51','-17', 'RA03');
execute insertartiradas('RA0342135,9361921296', '34', '11/05/2015 22:28:07','17,8', 'RA03');
execute insertartiradas('RA0342135,9370023148', '19', '11/05/2015 22:29:17','-17,5', 'RA03');
execute insertartiradas('RA0342135,937974537', '3', '11/05/2015 22:30:41','17,3', 'RA03');
execute insertartiradas('RA0342135,9390740741', '24', '11/05/2015 22:32:16','-16,2', 'RA03');
execute insertartiradas('RA0342135,9400231481', '18', '11/05/2015 22:33:38','17,1', 'RA03');
execute insertartiradas('RA0342135,9412037037', '23', '11/05/2015 22:35:20','-18', 'RA03');
execute insertartiradas('RA0342135,9422222222', '30', '11/05/2015 22:36:48','18', 'RA03');
execute insertartiradas('RA0342135,943125', '4', '11/05/2015 22:38:06','-18,5', 'RA03');
execute insertartiradas('RA0342135,9441087963', '13', '11/05/2015 22:39:31','19,8', 'RA03');
execute insertartiradas('RA0342135,9449421296', '24', '11/05/2015 22:40:43','-18,3', 'RA03');
execute insertartiradas('RA0342135,9462037037', '0', '11/05/2015 22:42:32','16,3', 'RA03');
execute insertartiradas('RA0342135,9468171296', '19', '11/05/2015 22:43:25','-17,5', 'RA03');
execute insertartiradas('RA0342135,9474421296', '27', '11/05/2015 22:44:19','18,8', 'RA03');
execute insertartiradas('RA0342135,9480208333', '4', '11/05/2015 22:45:09','-20,2', 'RA03');
execute insertartiradas('RA0342135,948587963', '12', '11/05/2015 22:45:58','20,3', 'RA03');
execute insertartiradas('RA0342135,9493171296', '19', '11/05/2015 22:47:01','-18,8', 'RA03');
execute insertartiradas('RA0342135,9500925926', '1', '11/05/2015 22:48:08','18,5', 'RA03');
execute insertartiradas('RA0342135,9505555556', '26', '11/05/2015 22:48:48','-19,6', 'RA03');
execute insertartiradas('RA0342135,9513773148', '0', '11/05/2015 22:49:59','19,1', 'RA03');
execute insertartiradas('RA0342135,9523726852', '6', '11/05/2015 22:51:25','-17,2', 'RA03');
execute insertartiradas('RA0342135,9530787037', '30', '11/05/2015 22:52:26','18,3', 'RA03');
execute insertartiradas('RA0342135,95375', '12', '11/05/2015 22:53:24','-19,5', 'RA03');
execute insertartiradas('RA0342135,9544212963', '1', '11/05/2015 22:54:22','17,5', 'RA03');
execute insertartiradas('RA0342135,9549768519', '33', '11/05/2015 22:55:10','-17,9', 'RA03');
execute insertartiradas('RA0342135,9556712963', '23', '11/05/2015 22:56:10','16,2', 'RA03');
execute insertartiradas('RA0342135,9568171296', '32', '11/05/2015 22:57:49','-19,8', 'RA03');
execute insertartiradas('RA0342135,9580439815', '34', '11/05/2015 22:59:35','18,2', 'RA03');
execute insertartiradas('RA0342135,9589236111', '2', '11/05/2015 23:00:51','-19,7', 'RA03');
execute insertartiradas('RA0342135,9598611111', '6', '11/05/2015 23:02:12','18', 'RA03');
execute insertartiradas('RA0342135,9605439815', '15', '11/05/2015 23:03:11','-17,1', 'RA03');
execute insertartiradas('RA0342135,9611574074', '24', '11/05/2015 23:04:04','19,8', 'RA03');
execute insertartiradas('RA0342135,9620023148', '0', '11/05/2015 23:05:17','-19,6', 'RA03');
execute insertartiradas('RA0342135,9630208333', '7', '11/05/2015 23:06:45','16,3', 'RA03');
execute insertartiradas('RA0342135,9639814815', '12', '11/05/2015 23:08:08','-19,2', 'RA03');
execute insertartiradas('RA0342135,9646643518', '17', '11/05/2015 23:09:07','17,8', 'RA03');
execute insertartiradas('RA0342135,9657638889', '20', '11/05/2015 23:10:42','-19,4', 'RA03');
execute insertartiradas('RA0342135,9667476852', '7', '11/05/2015 23:12:07','18,7', 'RA03');
execute insertartiradas('RA0342135,9675347222', '27', '11/05/2015 23:13:15','-17,6', 'RA03');
execute insertartiradas('RA0342135,9685300926', '30', '11/05/2015 23:14:41','20,8', 'RA03');
execute insertartiradas('RA0342135,9693287037', '22', '11/05/2015 23:15:50','-20,3', 'RA03');
execute insertartiradas('RA0342135,970150463', '25', '11/05/2015 23:17:01','18,9', 'RA03');
execute insertartiradas('RA0342135,9708912037', '8', '11/05/2015 23:18:05','-19,8', 'RA03');
execute insertartiradas('RA0342135,9720601852', '10', '11/05/2015 23:19:46','19,4', 'RA03');
execute insertartiradas('RA0342135,972662037', '25', '11/05/2015 23:20:38','-21,3', 'RA03');
execute insertartiradas('RA0342135,9733564815', '22', '11/05/2015 23:21:38','18,5', 'RA03');
execute insertartiradas('RA0342135,9742476852', '26', '11/05/2015 23:22:55','-17,8', 'RA03');
execute insertartiradas('RA0342135,974849537', '5', '11/05/2015 23:23:47','16,3', 'RA03');
execute insertartiradas('RA0342135,9756597222', '19', '11/05/2015 23:24:57','-13,6', 'RA03');
execute insertartiradas('RA0342135,9765046296', '18', '11/05/2015 23:26:10','14,4', 'RA03');
execute insertartiradas('RA0342135,9773032407', '35', '11/05/2015 23:27:19','-15', 'RA03');
execute insertartiradas('RA0342135,9781712963', '11', '11/05/2015 23:28:34','12,8', 'RA03');
execute insertartiradas('RA0342135,9787384259', '20', '11/05/2015 23:29:23','-20,7', 'RA03');
execute insertartiradas('RA0342135,9793055556', '34', '11/05/2015 23:30:12','19,8', 'RA03');
execute insertartiradas('RA0342135,9803125', '17', '11/05/2015 23:31:39','-18', 'RA03');
execute insertartiradas('RA0342135,9812152778', '29', '11/05/2015 23:32:57','16,1', 'RA03');
execute insertartiradas('RA0342135,9822222222', '36', '11/05/2015 23:34:24','-13,4', 'RA03');
execute insertartiradas('RA0342135,9831481481', '19', '11/05/2015 23:35:44','13,5', 'RA03');
execute insertartiradas('RA0342135,9838657407', '28', '11/05/2015 23:36:46','-14,8', 'RA03');
execute insertartiradas('RA0342135,9846759259', '7', '11/05/2015 23:37:56','15,5', 'RA03');
execute insertartiradas('RA0342135,9853125', '21', '11/05/2015 23:38:51','-14,2', 'RA03');
execute insertartiradas('RA0342135,9859259259', '36', '11/05/2015 23:39:44','12,8', 'RA03');
execute insertartiradas('RA0342135,9865046296', '28', '11/05/2015 23:40:34','-12,6', 'RA03');
execute insertartiradas('RA0342135,9871296296', '35', '11/05/2015 23:41:28','15,1', 'RA03');
execute insertartiradas('RA0342135,9876041667', '35', '11/05/2015 23:42:09','-13,1', 'RA03');
execute insertartiradas('RA0342135,9882523148', '11', '11/05/2015 23:43:05','12,3', 'RA03');
execute insertartiradas('RA0342135,9891319444', '23', '11/05/2015 23:44:21','-9,1', 'RA03');
execute insertartiradas('RA0342135,9901157407', '27', '11/05/2015 23:45:46','11,3', 'RA03');
execute insertartiradas('RA0342135,9913541667', '24', '11/05/2015 23:47:33','-20', 'RA03');
execute insertartiradas('RA0342135,9922106481', '9', '11/05/2015 23:48:47','12,1', 'RA03');
execute insertartiradas('RA0342135,9928935185', '2', '11/05/2015 23:49:46','-12', 'RA03');
execute insertartiradas('RA0342135,9936574074', '31', '11/05/2015 23:50:52','10,8', 'RA03');
execute insertartiradas('RA0342135,9946296296', '24', '11/05/2015 23:52:16','-15,9', 'RA03');
execute insertartiradas('RA0342135,9953472222', '4', '11/05/2015 23:53:18','14,7', 'RA03');
execute insertartiradas('RA0342135,9964236111', '26', '11/05/2015 23:54:51','-14,6', 'RA03');
execute insertartiradas('RA0342135,9971180556', '34', '11/05/2015 23:55:51','13,8', 'RA03');
execute insertartiradas('RA0342135,9979050926', '2', '11/05/2015 23:56:59','-14,3', 'RA03');
execute insertartiradas('RA0342135,9986226852', '15', '11/05/2015 23:58:01','16,8', 'RA03');
execute insertartiradas('RA0342135,9993865741', '23', '11/05/2015 23:59:07','-14,6', 'RA03');
execute insertartiradas('RA0342136,0003703704', '33', '12/05/2015 00:00:32','13,8', 'RA03');
execute insertartiradas('RA0342136,0015509259', '31', '12/05/2015 00:02:14','-16,6', 'RA03');
execute insertartiradas('RA0342136,0029050926', '26', '12/05/2015 00:04:11','17,2', 'RA03');
execute insertartiradas('RA0342136,0037847222', '36', '12/05/2015 00:05:27','-15,7', 'RA03');
execute insertartiradas('RA0342136,0048611111', '5', '12/05/2015 00:07:00','18,1', 'RA03');
execute insertartiradas('RA0342136,0058912037', '34', '12/05/2015 00:08:29','-14,1', 'RA03');
execute insertartiradas('RA0342136,0068634259', '9', '12/05/2015 00:09:53','17,7', 'RA03');
execute insertartiradas('RA0342136,0076273148', '33', '12/05/2015 00:10:59','-18,2', 'RA03');
execute insertartiradas('RA0342136,0086574074', '3', '12/05/2015 00:12:28','17,7', 'RA03');
execute insertartiradas('RA0342136,0098263889', '30', '12/05/2015 00:14:09','-16,6', 'RA03');
execute insertartiradas('RA0342136,0107060185', '26', '12/05/2015 00:15:25','17,8', 'RA03');
execute insertartiradas('RA0342136,0118055556', '26', '12/05/2015 00:17:00','-14,5', 'RA03');
execute insertartiradas('RA0342136,0127662037', '6', '12/05/2015 00:18:23','15,5', 'RA03');
execute insertartiradas('RA0342136,0139351852', '25', '12/05/2015 00:20:04','-17,7', 'RA03');
execute insertartiradas('RA0342136,0147800926', '8', '12/05/2015 00:21:17','18,9', 'RA03');
execute insertartiradas('RA0342136,0156944444', '29', '12/05/2015 00:22:36','-14,7', 'RA03');
execute insertartiradas('RA0342136,0171643519', '12', '12/05/2015 00:24:43','18', 'RA03');
execute insertartiradas('RA0342136,0178240741', '31', '12/05/2015 00:25:40','-19,2', 'RA03');
execute insertartiradas('RA0342136,018599537', '33', '12/05/2015 00:26:47','22,1', 'RA03');
execute insertartiradas('RA0342136,0196990741', '15', '12/05/2015 00:28:22','-17,3', 'RA03');
execute insertartiradas('RA0342136,0206365741', '6', '12/05/2015 00:29:43','15,6', 'RA03');
execute insertartiradas('RA0342136,0214236111', '2', '12/05/2015 00:30:51','-15,9', 'RA03');
execute insertartiradas('RA0342136,0221412037', '32', '12/05/2015 00:31:53','16,9', 'RA03');
execute insertartiradas('RA0342136,0232175926', '30', '12/05/2015 00:33:26','-15,5', 'RA03');
execute insertartiradas('RA0342136,0244444444', '31', '12/05/2015 00:35:12','17,1', 'RA03');
execute insertartiradas('RA0342136,025462963', '21', '12/05/2015 00:36:40','-15,7', 'RA03');
execute insertartiradas('RA0342136,0268402778', '1', '12/05/2015 00:38:39','17,3', 'RA03');
execute insertartiradas('RA0342136,0280324074', '11', '12/05/2015 00:40:22','-18,4', 'RA03');
execute insertartiradas('RA0342136,0292361111', '16', '12/05/2015 00:42:06','18,8', 'RA03');
execute insertartiradas('RA0342136,030474537', '15', '12/05/2015 00:43:53','-22,7', 'RA03');
execute insertartiradas('RA0342136,0313657407', '1', '12/05/2015 00:45:10','14,9', 'RA03');
execute insertartiradas('RA0342136,0322106481', '6', '12/05/2015 00:46:23','-20,3', 'RA03');
execute insertartiradas('RA0342136,0331944444', '6', '12/05/2015 00:47:48','16,9', 'RA03');
execute insertartiradas('RA0342136,0340856481', '3', '12/05/2015 00:49:05','-20,2', 'RA03');
execute insertartiradas('RA0342136,0349884259', '8', '12/05/2015 00:50:23','17,4', 'RA03');
execute insertartiradas('RA0342136,0362268519', '31', '12/05/2015 00:52:10','-21,6', 'RA03');
execute insertartiradas('RA0342136,0378703704', '27', '12/05/2015 00:54:32','19,1', 'RA03');
execute insertartiradas('RA0342136,0391319444', '13', '12/05/2015 00:56:21','-24,3', 'RA03');
execute insertartiradas('RA0342136,0400347222', '19', '12/05/2015 00:57:39','22', 'RA03');
execute insertartiradas('RA0342136,0408796296', '7', '12/05/2015 00:58:52','-23,8', 'RA03');
execute insertartiradas('RA0342136,0416319444', '26', '12/05/2015 00:59:57','23,2', 'RA03');
execute insertartiradas('RA0342136,0424768518', '16', '12/05/2015 01:01:10','-15,1', 'RA03');
execute insertartiradas('RA0342136,043125', '12', '12/05/2015 01:02:06','20,2', 'RA03');
execute insertartiradas('RA0342136,0439351852', '9', '12/05/2015 01:03:16','-19,3', 'RA03');
execute insertartiradas('RA0342136,044837963', '27', '12/05/2015 01:04:34','18,9', 'RA03');
execute insertartiradas('RA0342136,0458333333', '30', '12/05/2015 01:06:00','-21,9', 'RA03');
execute insertartiradas('RA0342136,0467824074', '23', '12/05/2015 01:07:22','15,7', 'RA03');
execute insertartiradas('RA0342136,047662037', '28', '12/05/2015 01:08:38','-26,7', 'RA03');
execute insertartiradas('RA0342136,0484490741', '1', '12/05/2015 01:09:46','23,3', 'RA03');
execute insertartiradas('RA0342136,0490393518', '2', '12/05/2015 01:10:37','-21,7', 'RA03');
execute insertartiradas('RA0342136,0495486111', '6', '12/05/2015 01:11:21','18,5', 'RA03');
execute insertartiradas('RA0342136,0500231481', '23', '12/05/2015 01:12:02','-22,5', 'RA03');
execute insertartiradas('RA0342136,0506481481', '9', '12/05/2015 01:12:56','20,4', 'RA03');
execute insertartiradas('RA0342136,0511342593', '14', '12/05/2015 01:13:38','-20,3', 'RA03');
execute insertartiradas('RA0342136,0516666667', '34', '12/05/2015 01:14:24','15,8', 'RA03');
execute insertartiradas('RA0342136,0521064815', '18', '12/05/2015 01:15:02','-16,6', 'RA03');
execute insertartiradas('RA0342136,0529398148', '26', '12/05/2015 01:16:14','21,1', 'RA03');
execute insertartiradas('RA0342136,0535763889', '0', '12/05/2015 01:17:09','-20,1', 'RA03');
execute insertartiradas('RA0342136,0542013889', '10', '12/05/2015 01:18:03','21', 'RA03');
execute insertartiradas('RA0342136,054849537', '7', '12/05/2015 01:18:59','-16,9', 'RA03');
execute insertartiradas('RA0342136,055625', '16', '12/05/2015 01:20:06','19,4', 'RA03');
execute insertartiradas('RA0342136,05625', '3', '12/05/2015 01:21:00','-20,5', 'RA03');
execute insertartiradas('RA0342136,0575231481', '2', '12/05/2015 01:22:50','18,5', 'RA03');
execute insertartiradas('RA0342136,0580555556', '0', '12/05/2015 01:23:36','-18,3', 'RA03');
execute insertartiradas('RA0342136,0585532407', '35', '12/05/2015 01:24:19','16,5', 'RA03');
execute insertartiradas('RA0342136,0591782407', '35', '12/05/2015 01:25:13','-18,8', 'RA03');
execute insertartiradas('RA0342136,0597106482', '31', '12/05/2015 01:25:59','18,9', 'RA03');
execute insertartiradas('RA0342136,0606481481', '25', '12/05/2015 01:27:20','-18,8', 'RA03');
execute insertartiradas('RA0342136,0612037037', '15', '12/05/2015 01:28:08','15,2', 'RA03');
execute insertartiradas('RA0342136,0618518519', '34', '12/05/2015 01:29:04','-17,2', 'RA03');
execute insertartiradas('RA0342136,0623958333', '2', '12/05/2015 01:29:51','15,1', 'RA03');
execute insertartiradas('RA0342136,0629050926', '8', '12/05/2015 01:30:35','-17,3', 'RA03');
execute insertartiradas('RA0342136,0633912037', '34', '12/05/2015 01:31:17','17', 'RA03');
execute insertartiradas('RA0342136,0638194444', '8', '12/05/2015 01:31:54','-16,8', 'RA03');
execute insertartiradas('RA0342136,0642939815', '18', '12/05/2015 01:32:35','14,8', 'RA03');
execute insertartiradas('RA0342136,0647569444', '19', '12/05/2015 01:33:15','-20,2', 'RA03');
execute insertartiradas('RA0342136,0651851852', '15', '12/05/2015 01:33:52','18,6', 'RA03');
execute insertartiradas('RA0342136,0655787037', '36', '12/05/2015 01:34:26','-17,1', 'RA03');
execute insertartiradas('RA0342136,0659837963', '31', '12/05/2015 01:35:01','16,9', 'RA03');
execute insertartiradas('RA0342136,0664583333', '16', '12/05/2015 01:35:42','-18,3', 'RA03');
execute insertartiradas('RA0342136,0671180556', '14', '12/05/2015 01:36:39','17', 'RA03');
execute insertartiradas('RA0342136,0675810185', '15', '12/05/2015 01:37:19','-18,1', 'RA03');
execute insertartiradas('RA0342136,0680208333', '16', '12/05/2015 01:37:57','14,6', 'RA03');
execute insertartiradas('RA0342136,0684375', '14', '12/05/2015 01:38:33','-17,8', 'RA03');
execute insertartiradas('RA0342136,0688888889', '6', '12/05/2015 01:39:12','18,1', 'RA03');
execute insertartiradas('RA0342136,0692592593', '21', '12/05/2015 01:39:44','-16,7', 'RA03');
execute insertartiradas('RA0342136,0698726852', '36', '12/05/2015 01:40:37','17,1', 'RA03');
execute insertartiradas('RA0342136,0704513889', '36', '12/05/2015 01:41:27','-17,3', 'RA03');
execute insertartiradas('RA0342136,0710300926', '5', '12/05/2015 01:42:17','17,2', 'RA03');
execute insertartiradas('RA0342136,0719675926', '29', '12/05/2015 01:43:38','-17,6', 'RA03');
execute insertartiradas('RA0342136,0724074074', '31', '12/05/2015 01:44:16','16,8', 'RA03');
execute insertartiradas('RA0342136,0728125', '11', '12/05/2015 01:44:51','-16,5', 'RA03');
execute insertartiradas('RA0342136,0732060185', '3', '12/05/2015 01:45:25','15,1', 'RA03');
execute insertartiradas('RA0342136,0736111111', '5', '12/05/2015 01:46:00','-18,5', 'RA03');
execute insertartiradas('RA0342136,0740046296', '6', '12/05/2015 01:46:34','16,9', 'RA03');
execute insertartiradas('RA0342136,0743865741', '18', '12/05/2015 01:47:07','-17,3', 'RA03');
execute insertartiradas('RA0342136,0747800926', '3', '12/05/2015 01:47:41','16,2', 'RA03');
execute insertartiradas('RA0342136,0752662037', '16', '12/05/2015 01:48:23','-15,3', 'RA03');
execute insertartiradas('RA0342136,0756944444', '21', '12/05/2015 01:49:00','17,8', 'RA03');
execute insertartiradas('RA0342136,0761921296', '15', '12/05/2015 01:49:43','-17,3', 'RA03');
execute insertartiradas('RA0342136,0765509259', '5', '12/05/2015 01:50:14','17,3', 'RA03');
execute insertartiradas('RA0342136,0773032407', '1', '12/05/2015 01:51:19','-16,2', 'RA03');
execute insertartiradas('RA0342136,0782175926', '35', '12/05/2015 01:52:38','18,3', 'RA03');
execute insertartiradas('RA0342136,0795138889', '11', '12/05/2015 01:54:30','-15,8', 'RA03');
execute insertartiradas('RA0342136,0805787037', '35', '12/05/2015 01:56:02','16,1', 'RA03');
execute insertartiradas('RA0342136,0815856481', '5', '12/05/2015 01:57:29','-17,9', 'RA03');
execute insertartiradas('RA0342136,0825347222', '5', '12/05/2015 01:58:51','18,4', 'RA03');
execute insertartiradas('RA0342136,0835532407', '11', '12/05/2015 02:00:19','-18,2', 'RA03');
execute insertartiradas('RA0342136,0841319444', '35', '12/05/2015 02:01:09','17,8', 'RA03');
execute insertartiradas('RA0342136,0848263889', '8', '12/05/2015 02:02:09','-17,1', 'RA03');
execute insertartiradas('RA0342136,0858101852', '23', '12/05/2015 02:03:34','16,5', 'RA03');
execute insertartiradas('RA0342136,0866319444', '22', '12/05/2015 02:04:45','-15,6', 'RA03');
execute insertartiradas('RA0342136,0871412037', '3', '12/05/2015 02:05:29','18,8', 'RA03');
execute insertartiradas('RA0342136,0878009259', '22', '12/05/2015 02:06:26','-15', 'RA03');
execute insertartiradas('RA0342136,0886805556', '15', '12/05/2015 02:07:42','16,5', 'RA03');
execute insertartiradas('RA0342136,0893634259', '2', '12/05/2015 02:08:41','-18,5', 'RA03');
execute insertartiradas('RA0342136,0900231482', '29', '12/05/2015 02:09:38','16,8', 'RA03');
execute insertartiradas('RA0342136,0905324074', '33', '12/05/2015 02:10:22','-12,9', 'RA03');
execute insertartiradas('RA0342136,0909490741', '12', '12/05/2015 02:10:58','16,1', 'RA03');
execute insertartiradas('RA0342136,0914236111', '29', '12/05/2015 02:11:39','-13,5', 'RA03');
execute insertartiradas('RA0342136,0921180556', '35', '12/05/2015 02:12:39','17,7', 'RA03');
execute insertartiradas('RA0342136,0928935185', '5', '12/05/2015 02:13:46','-21,8', 'RA03');
execute insertartiradas('RA0342136,0971412037', '12', '12/05/2015 02:19:53','15,2', 'RA03');
execute insertartiradas('RA0342136,0974884259', '6', '12/05/2015 02:20:23','-15', 'RA03');
execute insertartiradas('RA0342136,0979976852', '24', '12/05/2015 02:21:07','15,1', 'RA03');
execute insertartiradas('RA0342136,0985763889', '8', '12/05/2015 02:21:57','-13,9', 'RA03');
execute insertartiradas('RA0342136,1144560185', '15', '12/05/2015 02:44:49','13,7', 'RA03');
execute insertartiradas('RA0342136,1150810185', '2', '12/05/2015 02:45:43','-15,2', 'RA03');
execute insertartiradas('RA0342136,1189699074', '23', '12/05/2015 02:51:19','14,2', 'RA03');
execute insertartiradas('RA0342136,1219212963', '20', '12/05/2015 02:55:34','-17', 'RA03');
execute insertartiradas('RA0342136,1224189815', '28', '12/05/2015 02:56:17','14,2', 'RA03');
execute insertartiradas('RA0342136,1227777778', '2', '12/05/2015 02:56:48','-13,6', 'RA03');
execute insertartiradas('RA0342136,1232407407', '6', '12/05/2015 02:57:28','13,7', 'RA03');
execute insertartiradas('RA0342136,123599537', '31', '12/05/2015 02:57:59','-13,7', 'RA03');
execute insertartiradas('RA0342136,1239583333', '3', '12/05/2015 02:58:30','13,3', 'RA03');
execute insertartiradas('RA0342136,7059953704', '12', '12/05/2015 16:56:38','14,9', 'RA03');
execute insertartiradas('RA0342136,7149189815', '19', '12/05/2015 17:09:29','-20,3', 'RA03');
execute insertartiradas('RA0342136,7241203704', '6', '12/05/2015 17:22:44','16,6', 'RA03');
execute insertartiradas('RA0342136,724537037', '0', '12/05/2015 17:23:20','-17,7', 'RA03');
execute insertartiradas('RA0342136,7250578704', '36', '12/05/2015 17:24:05','16,3', 'RA03');
execute insertartiradas('RA0342136,7258912037', '13', '12/05/2015 17:25:17','-18,7', 'RA03');
execute insertartiradas('RA0342136,7263773148', '1', '12/05/2015 17:25:59','15,9', 'RA03');
execute insertartiradas('RA0342136,7270601852', '35', '12/05/2015 17:26:58','-18,2', 'RA03');
execute insertartiradas('RA0342136,7275347222', '12', '12/05/2015 17:27:39','17,9', 'RA03');
execute insertartiradas('RA0342136,727962963', '22', '12/05/2015 17:28:16','-19,1', 'RA03');
execute insertartiradas('RA0342136,7284953704', '28', '12/05/2015 17:29:02','16', 'RA03');
execute insertartiradas('RA0342136,7291550926', '29', '12/05/2015 17:29:59','-17,5', 'RA03');
execute insertartiradas('RA0342136,7303819444', '4', '12/05/2015 17:31:45','19,3', 'RA03');
execute insertartiradas('RA0342136,7317129629', '31', '12/05/2015 17:33:40','-18,8', 'RA03');
execute insertartiradas('RA0342136,7324537037', '30', '12/05/2015 17:34:44','17,5', 'RA03');
execute insertartiradas('RA0342136,7333333333', '24', '12/05/2015 17:36:00','-17,7', 'RA03');
execute insertartiradas('RA0342136,7340393519', '33', '12/05/2015 17:37:01','14,8', 'RA03');
execute insertartiradas('RA0342136,7346759259', '3', '12/05/2015 17:37:56','-18,7', 'RA03');
execute insertartiradas('RA0342136,7355787037', '4', '12/05/2015 17:39:14','16', 'RA03');
execute insertartiradas('RA0342136,7365162037', '8', '12/05/2015 17:40:35','-18,4', 'RA03');
execute insertartiradas('RA0342136,7371412037', '36', '12/05/2015 17:41:29','17,2', 'RA03');
execute insertartiradas('RA0342136,7376851852', '34', '12/05/2015 17:42:16','-17', 'RA03');
execute insertartiradas('RA0342136,738275463', '27', '12/05/2015 17:43:07','16,1', 'RA03');
execute insertartiradas('RA0342136,7388194444', '5', '12/05/2015 17:43:54','-22', 'RA03');
execute insertartiradas('RA0342136,7396296296', '7', '12/05/2015 17:45:04','16,2', 'RA03');
execute insertartiradas('RA0342136,7403356481', '10', '12/05/2015 17:46:05','-16,9', 'RA03');
execute insertartiradas('RA0342136,7409953704', '32', '12/05/2015 17:47:02','17,2', 'RA03');
execute insertartiradas('RA0342136,7416087963', '30', '12/05/2015 17:47:55','-18,7', 'RA03');
execute insertartiradas('RA0342136,7421527778', '16', '12/05/2015 17:48:42','14,1', 'RA03');
execute insertartiradas('RA0342136,7425925926', '13', '12/05/2015 17:49:20','-12,7', 'RA03');
execute insertartiradas('RA0342136,743125', '13', '12/05/2015 17:50:06','15,3', 'RA03');
execute insertartiradas('RA0342136,743599537', '15', '12/05/2015 17:50:47','-15,8', 'RA03');
execute insertartiradas('RA0342136,7441203704', '18', '12/05/2015 17:51:32','15,5', 'RA03');
execute insertartiradas('RA0342136,7446990741', '3', '12/05/2015 17:52:22','-14,5', 'RA03');
execute insertartiradas('RA0342136,7455555556', '12', '12/05/2015 17:53:36','15,4', 'RA03');
execute insertartiradas('RA0342136,746412037', '27', '12/05/2015 17:54:50','-16,2', 'RA03');
execute insertartiradas('RA0342136,7471527778', '28', '12/05/2015 17:55:54','16', 'RA03');
execute insertartiradas('RA0342136,7480092593', '27', '12/05/2015 17:57:08','-16,2', 'RA03');
execute insertartiradas('RA0342136,7485416667', '3', '12/05/2015 17:57:54','15,8', 'RA03');
execute insertartiradas('RA0342136,7493287037', '0', '12/05/2015 17:59:02','-12,5', 'RA03');
execute insertartiradas('RA0342136,7501736111', '30', '12/05/2015 18:00:15','19', 'RA03');
execute insertartiradas('RA0342136,7507175926', '16', '12/05/2015 18:01:02','-16,2', 'RA03');
execute insertartiradas('RA0342136,75125', '22', '12/05/2015 18:01:48','14,5', 'RA03');
execute insertartiradas('RA0342136,7517592593', '6', '12/05/2015 18:02:32','-15,1', 'RA03');
execute insertartiradas('RA0342136,7523032407', '34', '12/05/2015 18:03:19','13,7', 'RA03');
execute insertartiradas('RA0342136,7528009259', '0', '12/05/2015 18:04:02','-13,7', 'RA03');
execute insertartiradas('RA0342136,7533564815', '2', '12/05/2015 18:04:50','18', 'RA03');
execute insertartiradas('RA0342136,7540509259', '35', '12/05/2015 18:05:50','-12,5', 'RA03');
execute insertartiradas('RA0342136,7547337963', '14', '12/05/2015 18:06:49','17,5', 'RA03');
execute insertartiradas('RA0342136,7551967593', '12', '12/05/2015 18:07:29','-15,8', 'RA03');
execute insertartiradas('RA0342136,7557986111', '33', '12/05/2015 18:08:21','16,4', 'RA03');
execute insertartiradas('RA0342136,7563194444', '35', '12/05/2015 18:09:06','-11,7', 'RA03');
execute insertartiradas('RA0342136,7568981481', '16', '12/05/2015 18:09:56','11,9', 'RA03');
execute insertartiradas('RA0342136,7574305556', '17', '12/05/2015 18:10:42','-16,6', 'RA03');
execute insertartiradas('RA0342136,7579050926', '7', '12/05/2015 18:11:23','19,7', 'RA03');
execute insertartiradas('RA0342136,7585532407', '30', '12/05/2015 18:12:19','-18,5', 'RA03');
execute insertartiradas('RA0342136,7590277778', '3', '12/05/2015 18:13:00','10,4', 'RA03');
execute insertartiradas('RA0342136,7595023148', '8', '12/05/2015 18:13:41','-15,9', 'RA03');
execute insertartiradas('RA0342136,7598958333', '16', '12/05/2015 18:14:15','12,3', 'RA03');
execute insertartiradas('RA0342136,7602777778', '21', '12/05/2015 18:14:48','-16,9', 'RA03');
execute insertartiradas('RA0342136,760787037', '33', '12/05/2015 18:15:32','13', 'RA03');
execute insertartiradas('RA0342136,7612731481', '25', '12/05/2015 18:16:14','-12,5', 'RA03');
execute insertartiradas('RA0342136,7617476852', '17', '12/05/2015 18:16:55','12,9', 'RA03');
execute insertartiradas('RA0342136,7621759259', '32', '12/05/2015 18:17:32','-14,5', 'RA03');
execute insertartiradas('RA0342136,762662037', '1', '12/05/2015 18:18:14','15,6', 'RA03');
execute insertartiradas('RA0342136,7630439815', '34', '12/05/2015 18:18:47','-16', 'RA03');
execute insertartiradas('RA0342136,7635532407', '27', '12/05/2015 18:19:31','14,9', 'RA03');
execute insertartiradas('RA0342136,7640046296', '24', '12/05/2015 18:20:10','-12,9', 'RA03');
execute insertartiradas('RA0342136,7643518519', '6', '12/05/2015 18:20:40','13,9', 'RA03');
execute insertartiradas('RA0342136,7649189815', '19', '12/05/2015 18:21:29','-15', 'RA03');
execute insertartiradas('RA0342136,7653356481', '26', '12/05/2015 18:22:05','22,5', 'RA03');
execute insertartiradas('RA0342136,7662268519', '24', '12/05/2015 18:23:22','-22,2', 'RA03');
execute insertartiradas('RA0342136,7670601852', '15', '12/05/2015 18:24:34','20,9', 'RA03');
execute insertartiradas('RA0342136,7683217593', '15', '12/05/2015 18:26:23','-20,6', 'RA03');
execute insertartiradas('RA0342136,769375', '19', '12/05/2015 18:27:54','17,9', 'RA03');
execute insertartiradas('RA0342136,7701967593', '28', '12/05/2015 18:29:05','-20', 'RA03');
execute insertartiradas('RA0342136,7712152778', '29', '12/05/2015 18:30:33','20,8', 'RA03');
execute insertartiradas('RA0342136,772974537', '29', '12/05/2015 18:33:05','-18,6', 'RA03');
execute insertartiradas('RA0342136,7743518519', '19', '12/05/2015 18:35:04','18,8', 'RA03');
execute insertartiradas('RA0342136,7756481481', '24', '12/05/2015 18:36:56','-22,4', 'RA03');
execute insertartiradas('RA0342136,7764930556', '9', '12/05/2015 18:38:09','18,1', 'RA03');
execute insertartiradas('RA0342136,7772800926', '35', '12/05/2015 18:39:17','-19,9', 'RA03');
execute insertartiradas('RA0342136,7779282407', '13', '12/05/2015 18:40:13','21,7', 'RA03');
execute insertartiradas('RA0342136,7786458333', '6', '12/05/2015 18:41:15','-19,7', 'RA03');
execute insertartiradas('RA0342136,7793518519', '27', '12/05/2015 18:42:16','20,2', 'RA03');
execute insertartiradas('RA0342136,7800694444', '5', '12/05/2015 18:43:18','-18,1', 'RA03');
execute insertartiradas('RA0342136,7808680556', '5', '12/05/2015 18:44:27','25', 'RA03');
execute insertartiradas('RA0342136,7815162037', '30', '12/05/2015 18:45:23','-18,8', 'RA03');
execute insertartiradas('RA0342136,7822453704', '15', '12/05/2015 18:46:26','25,5', 'RA03');
execute insertartiradas('RA0342136,7828587963', '8', '12/05/2015 18:47:19','-19,9', 'RA03');
execute insertartiradas('RA0342136,7835416667', '0', '12/05/2015 18:48:18','19,7', 'RA03');
execute insertartiradas('RA0342136,7842824074', '12', '12/05/2015 18:49:22','-17,8', 'RA03');
execute insertartiradas('RA0342136,7853472222', '6', '12/05/2015 18:50:54','25,2', 'RA03');
execute insertartiradas('RA0342136,7859953704', '3', '12/05/2015 18:51:50','-17,8', 'RA03');
execute insertartiradas('RA0342136,7870949074', '27', '12/05/2015 18:53:25','26,3', 'RA03');
execute insertartiradas('RA0342136,787662037', '10', '12/05/2015 18:54:14','-20,3', 'RA03');
execute insertartiradas('RA0342136,7883217593', '16', '12/05/2015 18:55:11','22,4', 'RA03');
execute insertartiradas('RA0342136,7890162037', '36', '12/05/2015 18:56:11','-18,5', 'RA03');
execute insertartiradas('RA0342136,7896527778', '16', '12/05/2015 18:57:06','22,4', 'RA03');
execute insertartiradas('RA0342136,7902199074', '17', '12/05/2015 18:57:55','-20,6', 'RA03');
execute insertartiradas('RA0342136,7908796296', '23', '12/05/2015 18:58:52','19,5', 'RA03');
execute insertartiradas('RA0342136,7914583333', '30', '12/05/2015 18:59:42','-21,2', 'RA03');
execute insertartiradas('RA0342136,7921180556', '16', '12/05/2015 19:00:39','25,6', 'RA03');
execute insertartiradas('RA0342136,792974537', '13', '12/05/2015 19:01:53','-18,3', 'RA03');
execute insertartiradas('RA0342136,7936111111', '35', '12/05/2015 19:02:48','21,4', 'RA03');
execute insertartiradas('RA0342136,794537037', '30', '12/05/2015 19:04:08','-19', 'RA03');
execute insertartiradas('RA0342136,7956018519', '14', '12/05/2015 19:05:40','19,1', 'RA03');
execute insertartiradas('RA0342136,79625', '7', '12/05/2015 19:06:36','-19,2', 'RA03');
execute insertartiradas('RA0342136,797037037', '27', '12/05/2015 19:07:44','18', 'RA03');
execute insertartiradas('RA0342136,7978472222', '2', '12/05/2015 19:08:54','-18,5', 'RA03');
execute insertartiradas('RA0342136,7987847222', '21', '12/05/2015 19:10:15','16,7', 'RA03');
execute insertartiradas('RA0342136,7997569444', '2', '12/05/2015 19:11:39','-18,8', 'RA03');
execute insertartiradas('RA0342136,8008333333', '18', '12/05/2015 19:13:12','20,3', 'RA03');
execute insertartiradas('RA0342136,8019328704', '17', '12/05/2015 19:14:47','-18', 'RA03');
execute insertartiradas('RA0342136,8026388889', '16', '12/05/2015 19:15:48','17,2', 'RA03');
execute insertartiradas('RA0342136,803287037', '33', '12/05/2015 19:16:44','-18,6', 'RA03');
execute insertartiradas('RA0342136,8039699074', '17', '12/05/2015 19:17:43','18,8', 'RA03');
execute insertartiradas('RA0342136,8046759259', '13', '12/05/2015 19:18:44','-17,4', 'RA03');
execute insertartiradas('RA0342136,8052314815', '2', '12/05/2015 19:19:32','19,1', 'RA03');
execute insertartiradas('RA0342136,8058680556', '12', '12/05/2015 19:20:27','-19,5', 'RA03');
execute insertartiradas('RA0342136,8067824074', '14', '12/05/2015 19:21:46','20,3', 'RA03');
execute insertartiradas('RA0342136,8076388889', '15', '12/05/2015 19:23:00','-18,5', 'RA03');
execute insertartiradas('RA0342136,8085532407', '6', '12/05/2015 19:24:19','19,4', 'RA03');
execute insertartiradas('RA0342136,8091898148', '6', '12/05/2015 19:25:14','-19,8', 'RA03');
execute insertartiradas('RA0342136,8097569444', '27', '12/05/2015 19:26:03','19,8', 'RA03');
execute insertartiradas('RA0342136,8103472222', '36', '12/05/2015 19:26:54','-18,1', 'RA03');
execute insertartiradas('RA0342136,8110416667', '26', '12/05/2015 19:27:54','18,3', 'RA03');
execute insertartiradas('RA0342136,8117708333', '0', '12/05/2015 19:28:57','-17,9', 'RA03');
execute insertartiradas('RA0342136,8125578704', '11', '12/05/2015 19:30:05','17,2', 'RA03');
execute insertartiradas('RA0342136,8131481481', '34', '12/05/2015 19:30:56','-19,3', 'RA03');
execute insertartiradas('RA0342136,8277777778', '12', '12/05/2015 19:52:00','15,7', 'RA03');
execute insertartiradas('RA0342136,8321527778', '33', '12/05/2015 19:58:18','-20,1', 'RA03');
execute insertartiradas('RA0342136,8342592593', '0', '12/05/2015 20:01:20','14,7', 'RA03');
execute insertartiradas('RA0342136,8348263889', '12', '12/05/2015 20:02:09','-14,5', 'RA03');
execute insertartiradas('RA0342136,8361921296', '13', '12/05/2015 20:04:07','18,3', 'RA03');
execute insertartiradas('RA0342136,8367824074', '25', '12/05/2015 20:04:58','-14,1', 'RA03');
execute insertartiradas('RA0342136,8379050926', '11', '12/05/2015 20:06:35','16,8', 'RA03');
execute insertartiradas('RA0342136,8391319444', '0', '12/05/2015 20:08:21','-15,3', 'RA03');
execute insertartiradas('RA0342136,8398263889', '0', '12/05/2015 20:09:21','13,9', 'RA03');
execute insertartiradas('RA0342136,8411574074', '3', '12/05/2015 20:11:16','-14,5', 'RA03');
execute insertartiradas('RA0342136,8422569444', '35', '12/05/2015 20:12:51','17,1', 'RA03');
execute insertartiradas('RA0342136,8435532407', '33', '12/05/2015 20:14:43','-18,8', 'RA03');
execute insertartiradas('RA0342136,8449652778', '33', '12/05/2015 20:16:45','13,5', 'RA03');
execute insertartiradas('RA0342136,8459606481', '23', '12/05/2015 20:18:11','-17', 'RA03');
execute insertartiradas('RA0342136,8470601852', '31', '12/05/2015 20:19:46','18,1', 'RA03');
execute insertartiradas('RA0342136,8484143519', '20', '12/05/2015 20:21:43','-18,2', 'RA03');
execute insertartiradas('RA0342136,8497685185', '3', '12/05/2015 20:23:40','17,1', 'RA03');
execute insertartiradas('RA0342136,8511574074', '26', '12/05/2015 20:25:40','-18,3', 'RA03');
execute insertartiradas('RA0342136,8525925925', '14', '12/05/2015 20:27:44','16,6', 'RA03');
execute insertartiradas('RA0342136,8538194444', '33', '12/05/2015 20:29:30','-15,5', 'RA03');
execute insertartiradas('RA0342136,8547106481', '8', '12/05/2015 20:30:47','21,6', 'RA03');
execute insertartiradas('RA0342136,8560648148', '2', '12/05/2015 20:32:44','-17,1', 'RA03');
execute insertartiradas('RA0342136,857349537', '33', '12/05/2015 20:34:35','23,6', 'RA03');
execute insertartiradas('RA0342136,8585185185', '6', '12/05/2015 20:36:16','-15,9', 'RA03');
execute insertartiradas('RA0342136,8594097222', '19', '12/05/2015 20:37:33','16,8', 'RA03');
execute insertartiradas('RA0342136,8602546296', '15', '12/05/2015 20:38:46','-15,3', 'RA03');
execute insertartiradas('RA0342136,861412037', '26', '12/05/2015 20:40:26','17,5', 'RA03');
execute insertartiradas('RA0342136,8623032407', '20', '12/05/2015 20:41:43','-15,8', 'RA03');
execute insertartiradas('RA0342136,8635069444', '19', '12/05/2015 20:43:27','15', 'RA03');
execute insertartiradas('RA0342136,8646759259', '11', '12/05/2015 20:45:08','-14,4', 'RA03');
execute insertartiradas('RA0342136,8661458333', '18', '12/05/2015 20:47:15','17,4', 'RA03');
execute insertartiradas('RA0342136,8669212963', '13', '12/05/2015 20:48:22','-15,5', 'RA03');
execute insertartiradas('RA0342136,8686574074', '18', '12/05/2015 20:50:52','15,9', 'RA03');
execute insertartiradas('RA0342136,8698958333', '7', '12/05/2015 20:52:39','-12', 'RA03');
execute insertartiradas('RA0342136,8705439815', '13', '12/05/2015 20:53:35','14,7', 'RA03');
execute insertartiradas('RA0342136,8715972222', '18', '12/05/2015 20:55:06','-18,4', 'RA03');
execute insertartiradas('RA0342136,8728703704', '2', '12/05/2015 20:56:56','17,9', 'RA03');
execute insertartiradas('RA0342136,8736342593', '31', '12/05/2015 20:58:02','-15,8', 'RA03');
execute insertartiradas('RA0342136,8748611111', '31', '12/05/2015 20:59:48','15,2', 'RA03');
execute insertartiradas('RA0342136,8758101852', '24', '12/05/2015 21:01:10','-16,4', 'RA03');
execute insertartiradas('RA0342136,9375462963', '21', '12/05/2015 22:30:04','21', 'RA03');
execute insertartiradas('RA0342136,9381365741', '7', '12/05/2015 22:30:55','-20,5', 'RA03');
execute insertartiradas('RA0342136,9386574074', '34', '12/05/2015 22:31:40','18,1', 'RA03');
execute insertartiradas('RA0342136,9695833333', '0', '12/05/2015 23:16:12','-12,4', 'RA03');
execute insertartiradas('RA0342136,9708101851', '13', '12/05/2015 23:17:58','15,6', 'RA03');
execute insertartiradas('RA0342136,9713194444', '33', '12/05/2015 23:18:42','-14,5', 'RA03');
execute insertartiradas('RA0342136,9718171296', '22', '12/05/2015 23:19:25','14,2', 'RA03');
execute insertartiradas('RA0342136,9723958333', '28', '12/05/2015 23:20:15','-11,8', 'RA03');
execute insertartiradas('RA0342136,9728703703', '2', '12/05/2015 23:20:56','12', 'RA03');
execute insertartiradas('RA0342136,9734027778', '12', '12/05/2015 23:21:42','-12,1', 'RA03');
execute insertartiradas('RA0342136,9738541667', '19', '12/05/2015 23:22:21','13,3', 'RA03');
execute insertartiradas('RA0342136,988275463', '23', '12/05/2015 23:43:07','17,3', 'RA03');
execute insertartiradas('RA0342136,9887615741', '21', '12/05/2015 23:43:49','-17,3', 'RA03');
execute insertartiradas('RA0342136,9892939815', '21', '12/05/2015 23:44:35','16,8', 'RA03');
execute insertartiradas('RA0342136,9898726852', '23', '12/05/2015 23:45:25','-16,6', 'RA03');
execute insertartiradas('RA0342136,9904398148', '10', '12/05/2015 23:46:14','13,7', 'RA03');
execute insertartiradas('RA0342136,9911805556', '6', '12/05/2015 23:47:18','-15,4', 'RA03');
execute insertartiradas('RA0342136,9916319444', '4', '12/05/2015 23:47:57','15,9', 'RA03');
execute insertartiradas('RA0342136,992025463', '21', '12/05/2015 23:48:31','-17,4', 'RA03');
execute insertartiradas('RA0342136,9927083333', '8', '12/05/2015 23:49:30','14,2', 'RA03');
execute insertartiradas('RA0342136,9934143519', '18', '12/05/2015 23:50:31','-15,3', 'RA03');
execute insertartiradas('RA0342136,993900463', '23', '12/05/2015 23:51:13','16,7', 'RA03');
execute insertartiradas('RA0342136,9944560185', '18', '12/05/2015 23:52:01','-15,6', 'RA03');
execute insertartiradas('RA0342136,9952083333', '36', '12/05/2015 23:53:06','14,5', 'RA03');
execute insertartiradas('RA0342136,9956712963', '11', '12/05/2015 23:53:46','-12,2', 'RA03');
execute insertartiradas('RA0342136,9962152778', '4', '12/05/2015 23:54:33','17,2', 'RA03');
execute insertartiradas('RA0342136,9968402778', '13', '12/05/2015 23:55:27','-16', 'RA03');
execute insertartiradas('RA0342136,9973958333', '10', '12/05/2015 23:56:15','15,8', 'RA03');
execute insertartiradas('RA0342136,9979513889', '11', '12/05/2015 23:57:03','-15,5', 'RA03');
execute insertartiradas('RA0342136,9984837963', '8', '12/05/2015 23:57:49','14,1', 'RA03');
execute insertartiradas('RA0342136,9988541667', '3', '12/05/2015 23:58:21','-13,4', 'RA03');
execute insertartiradas('RA0342136,999375', '4', '12/05/2015 23:59:06','13,5', 'RA03');
execute insertartiradas('RA0342136,9997800926', '21', '12/05/2015 23:59:41','-13,7', 'RA03');
execute insertartiradas('RA0342137,0003587963', '8', '13/05/2015 00:00:31','14,4', 'RA03');
execute insertartiradas('RA0342137,0009375', '31', '13/05/2015 00:01:21','-14,5', 'RA03');
execute insertartiradas('RA0342137,0014467593', '17', '13/05/2015 00:02:05','16,8', 'RA03');
execute insertartiradas('RA0342137,0019097222', '19', '13/05/2015 00:02:45','-14,9', 'RA03');
execute insertartiradas('RA0342137,0023958333', '6', '13/05/2015 00:03:27','15,3', 'RA03');
execute insertartiradas('RA0342137,0027777778', '10', '13/05/2015 00:04:00','-15,2', 'RA03');
execute insertartiradas('RA0342137,0032523148', '31', '13/05/2015 00:04:41','17,3', 'RA03');
execute insertartiradas('RA0342137,0035648148', '3', '13/05/2015 00:05:08','-14,8', 'RA03');
execute insertartiradas('RA0342137,0039699074', '19', '13/05/2015 00:05:43','15,2', 'RA03');
execute insertartiradas('RA0342137,0043055556', '6', '13/05/2015 00:06:12','-16,7', 'RA03');
execute insertartiradas('RA0342137,0049074074', '10', '13/05/2015 00:07:04','14,8', 'RA03');
execute insertartiradas('RA0342137,005625', '17', '13/05/2015 00:08:06','-17,8', 'RA03');
execute insertartiradas('RA0342137,0060763889', '33', '13/05/2015 00:08:45','15', 'RA03');
execute insertartiradas('RA0342137,0064814814', '0', '13/05/2015 00:09:20','-16,6', 'RA03');
execute insertartiradas('RA0342137,0073148148', '1', '13/05/2015 00:10:32','15,5', 'RA03');
execute insertartiradas('RA0342137,0078125', '22', '13/05/2015 00:11:15','-15,8', 'RA03');
execute insertartiradas('RA0342137,0082523148', '30', '13/05/2015 00:11:53','14,4', 'RA03');
execute insertartiradas('RA0342137,0086342593', '18', '13/05/2015 00:12:26','-14,1', 'RA03');
execute insertartiradas('RA0342137,0090046296', '28', '13/05/2015 00:12:58','16,2', 'RA03');
execute insertartiradas('RA0342137,0093865741', '30', '13/05/2015 00:13:31','-17,1', 'RA03');
execute insertartiradas('RA0342137,0097685185', '13', '13/05/2015 00:14:04','19', 'RA03');
execute insertartiradas('RA0342137,010162037', '33', '13/05/2015 00:14:38','-15,3', 'RA03');
execute insertartiradas('RA0342137,0105208333', '21', '13/05/2015 00:15:09','20,6', 'RA03');
execute insertartiradas('RA0342137,0108796296', '11', '13/05/2015 00:15:40','-16,7', 'RA03');
execute insertartiradas('RA0342137,0112962963', '15', '13/05/2015 00:16:16','19,4', 'RA03');
execute insertartiradas('RA0342137,0117013889', '29', '13/05/2015 00:16:51','-15,4', 'RA03');
execute insertartiradas('RA0342137,8401967593', '33', '13/05/2015 20:09:53','-21,1', 'RA03');
execute insertartiradas('RA0342137,8411111111', '27', '13/05/2015 20:11:12','22,2', 'RA03');
execute insertartiradas('RA0342137,8420138889', '13', '13/05/2015 20:12:30','-22,2', 'RA03');
execute insertartiradas('RA0342137,843125', '14', '13/05/2015 20:14:06','23', 'RA03');
execute insertartiradas('RA0342137,8440740741', '26', '13/05/2015 20:15:28','-21,8', 'RA03');
execute insertartiradas('RA0342137,8451736111', '9', '13/05/2015 20:17:03','23,9', 'RA03');
execute insertartiradas('RA0342137,8456134259', '14', '13/05/2015 20:17:41','-23,7', 'RA03');
execute insertartiradas('RA0342137,8644444444', '10', '13/05/2015 20:44:48','13,7', 'RA03');
execute insertartiradas('RA0342137,8900578704', '4', '13/05/2015 21:21:41','-13,8', 'RA03');
execute insertartiradas('RA0342137,8905555556', '18', '13/05/2015 21:22:24','15,4', 'RA03');
execute insertartiradas('RA0342137,8909837963', '15', '13/05/2015 21:23:01','-16,5', 'RA03');
execute insertartiradas('RA0342137,891412037', '18', '13/05/2015 21:23:38','14,1', 'RA03');
execute insertartiradas('RA0342137,9011921296', '19', '13/05/2015 21:37:43','-20', 'RA03');
execute insertartiradas('RA0342137,9017361111', '8', '13/05/2015 21:38:30','16,3', 'RA03');
execute insertartiradas('RA0342137,9022569444', '16', '13/05/2015 21:39:15','-19,4', 'RA03');
execute insertartiradas('RA0342137,9027777778', '14', '13/05/2015 21:40:00','15,8', 'RA03');
execute insertartiradas('RA0342137,9031944444', '1', '13/05/2015 21:40:36','-19,4', 'RA03');
execute insertartiradas('RA0342137,9036921296', '33', '13/05/2015 21:41:19','16,4', 'RA03');
execute insertartiradas('RA0342137,9042708333', '2', '13/05/2015 21:42:09','-15,6', 'RA03');
execute insertartiradas('RA0342137,9046064815', '25', '13/05/2015 21:42:38','14', 'RA03');
execute insertartiradas('RA0342137,9130208333', '15', '13/05/2015 21:54:45','-13,7', 'RA03');
execute insertartiradas('RA0342137,9328356481', '23', '13/05/2015 22:23:17','17,1', 'RA03');
execute insertartiradas('RA0342137,9333101852', '8', '13/05/2015 22:23:58','-18', 'RA03');
execute insertartiradas('RA0342137,9337847222', '11', '13/05/2015 22:24:39','17,8', 'RA03');
execute insertartiradas('RA0342137,9344328704', '17', '13/05/2015 22:25:35','-18,2', 'RA03');
execute insertartiradas('RA0342137,9351388888', '19', '13/05/2015 22:26:36','16,2', 'RA03');
execute insertartiradas('RA0342137,9356712963', '33', '13/05/2015 22:27:22','-21,2', 'RA03');
execute insertartiradas('RA0342137,9361921296', '33', '13/05/2015 22:28:07','18,8', 'RA03');
execute insertartiradas('RA0342137,9367824074', '22', '13/05/2015 22:28:58','-21', 'RA03');
execute insertartiradas('RA0342137,9375810185', '35', '13/05/2015 22:30:07','17,2', 'RA03');
execute insertartiradas('RA0342137,9380787037', '27', '13/05/2015 22:30:50','-22,3', 'RA03');
execute insertartiradas('RA0342137,9387037037', '22', '13/05/2015 22:31:44','14,6', 'RA03');
execute insertartiradas('RA0342137,9391782407', '23', '13/05/2015 22:32:25','-20,5', 'RA03');
execute insertartiradas('RA0342137,9396412037', '2', '13/05/2015 22:33:05','16,6', 'RA03');
execute insertartiradas('RA0342137,940162037', '10', '13/05/2015 22:33:50','-20,2', 'RA03');
execute insertartiradas('RA0342137,9407523148', '6', '13/05/2015 22:34:41','17,1', 'RA03');
execute insertartiradas('RA0342137,9411805556', '13', '13/05/2015 22:35:18','-19,3', 'RA03');
execute insertartiradas('RA0342137,9419560185', '13', '13/05/2015 22:36:25','17,3', 'RA03');
execute insertartiradas('RA0342137,9424421296', '7', '13/05/2015 22:37:07','-17,6', 'RA03');
execute insertartiradas('RA0342137,9428819444', '6', '13/05/2015 22:37:45','19,6', 'RA03');
execute insertartiradas('RA0342137,9437731481', '5', '13/05/2015 22:39:02','-18,5', 'RA03');
execute insertartiradas('RA0342137,9441435185', '22', '13/05/2015 22:39:34','16,5', 'RA03');
execute insertartiradas('RA0342137,9446527778', '6', '13/05/2015 22:40:18','-18,6', 'RA03');
execute insertartiradas('RA0342137,9452083333', '6', '13/05/2015 22:41:06','15,1', 'RA03');
execute insertartiradas('RA0342137,9456712963', '11', '13/05/2015 22:41:46','-17,6', 'RA03');
execute insertartiradas('RA0342137,9461689815', '30', '13/05/2015 22:42:29','17,3', 'RA03');
execute insertartiradas('RA0342137,9466435185', '10', '13/05/2015 22:43:10','-17', 'RA03');
execute insertartiradas('RA0342137,9471064815', '15', '13/05/2015 22:43:50','14,2', 'RA03');
execute insertartiradas('RA0342137,947662037', '3', '13/05/2015 22:44:38','-14,1', 'RA03');
execute insertartiradas('RA0342137,948125', '2', '13/05/2015 22:45:18','15,6', 'RA03');
execute insertartiradas('RA0342137,9485763889', '19', '13/05/2015 22:45:57','-17,6', 'RA03');
execute insertartiradas('RA0342137,9491550926', '32', '13/05/2015 22:46:47','16,5', 'RA03');
execute insertartiradas('RA0342137,9497106482', '5', '13/05/2015 22:47:35','-17,4', 'RA03');
execute insertartiradas('RA0342137,9502199074', '29', '13/05/2015 22:48:19','16,7', 'RA03');
execute insertartiradas('RA0342137,9509953704', '31', '13/05/2015 22:49:26','-18,2', 'RA03');
execute insertartiradas('RA0342137,9516550926', '11', '13/05/2015 22:50:23','19,2', 'RA03');
execute insertartiradas('RA0342137,9520138889', '1', '13/05/2015 22:50:54','-13,7', 'RA03');
execute insertartiradas('RA0342137,9541319444', '20', '13/05/2015 22:53:57','15,5', 'RA03');
execute insertartiradas('RA0342137,9551736111', '16', '13/05/2015 22:55:27','-19,3', 'RA03');
execute insertartiradas('RA0342137,9562384259', '18', '13/05/2015 22:56:59','11,5', 'RA03');
execute insertartiradas('RA0342137,9567708333', '10', '13/05/2015 22:57:45','-17,4', 'RA03');
execute insertartiradas('RA0342137,9578125', '27', '13/05/2015 22:59:15','21,7', 'RA03');
execute insertartiradas('RA0342137,9589236111', '23', '13/05/2015 23:00:51','-18,7', 'RA03');
execute insertartiradas('RA0342137,9598842593', '29', '13/05/2015 23:02:14','20,3', 'RA03');
execute insertartiradas('RA0342137,9609027778', '22', '13/05/2015 23:03:42','-18,3', 'RA03');
execute insertartiradas('RA0342137,96125', '10', '13/05/2015 23:04:12','18,5', 'RA03');
execute insertartiradas('RA0342137,9620486111', '4', '13/05/2015 23:05:21','-19,2', 'RA03');
execute insertartiradas('RA0342137,9628240741', '6', '13/05/2015 23:06:28','12,6', 'RA03');
execute insertartiradas('RA0342137,963587963', '14', '13/05/2015 23:07:34','-16,9', 'RA03');
execute insertartiradas('RA0342137,9641898148', '12', '13/05/2015 23:08:26','17,9', 'RA03');
execute insertartiradas('RA0342137,9649074074', '25', '13/05/2015 23:09:28','-18,5', 'RA03');
execute insertartiradas('RA0342137,9654976852', '30', '13/05/2015 23:10:19','16,3', 'RA03');
execute insertartiradas('RA0342137,9666319444', '12', '13/05/2015 23:11:57','-20,2', 'RA03');
execute insertartiradas('RA0342137,9673263889', '27', '13/05/2015 23:12:57','14,1', 'RA03');
execute insertartiradas('RA0342137,9680208333', '12', '13/05/2015 23:13:57','-15,3', 'RA03');
execute insertartiradas('RA0342137,9687152778', '8', '13/05/2015 23:14:57','16,4', 'RA03');
execute insertartiradas('RA0342137,9703356481', '35', '13/05/2015 23:17:17','-19,2', 'RA03');
execute insertartiradas('RA0342137,9717361111', '8', '13/05/2015 23:19:18','12,6', 'RA03');
execute insertartiradas('RA0342137,9730439815', '23', '13/05/2015 23:21:11','-19,3', 'RA03');
execute insertartiradas('RA0342137,974212963', '14', '13/05/2015 23:22:52','21,2', 'RA03');
execute insertartiradas('RA0342137,9749305556', '7', '13/05/2015 23:23:54','-17,5', 'RA03');
execute insertartiradas('RA0342137,9759027778', '5', '13/05/2015 23:25:18','16,1', 'RA03');
execute insertartiradas('RA0342137,9769328704', '19', '13/05/2015 23:26:47','-16', 'RA03');
execute insertartiradas('RA0342137,9783449074', '19', '13/05/2015 23:28:49','20,1', 'RA03');
execute insertartiradas('RA0342137,9799884259', '3', '13/05/2015 23:31:11','-11,3', 'RA03');
execute insertartiradas('RA0342137,981087963', '10', '13/05/2015 23:32:46','17,7', 'RA03');
execute insertartiradas('RA0342137,9825578704', '4', '13/05/2015 23:34:53','-19,1', 'RA03');
execute insertartiradas('RA0342137,9838194444', '36', '13/05/2015 23:36:42','17,5', 'RA03');
execute insertartiradas('RA0342137,984837963', '35', '13/05/2015 23:38:10','-19,6', 'RA03');
execute insertartiradas('RA0342137,9872106481', '11', '13/05/2015 23:41:35','19,2', 'RA03');
execute insertartiradas('RA0342137,9887152778', '36', '13/05/2015 23:43:45','-20,1', 'RA03');
execute insertartiradas('RA0342137,9897453704', '31', '13/05/2015 23:45:14','21,8', 'RA03');
execute insertartiradas('RA0342137,9907060185', '10', '13/05/2015 23:46:37','-17,3', 'RA03');
execute insertartiradas('RA0342137,9918634259', '34', '13/05/2015 23:48:17','15', 'RA03');
execute insertartiradas('RA0342137,9927893519', '18', '13/05/2015 23:49:37','-18,1', 'RA03');
execute insertartiradas('RA0342137,9935069444', '30', '13/05/2015 23:50:39','13,3', 'RA03');
execute insertartiradas('RA0342137,9943518518', '0', '13/05/2015 23:51:52','-23,1', 'RA03');
execute insertartiradas('RA0342137,9952777777', '8', '13/05/2015 23:53:12','16,5', 'RA03');
execute insertartiradas('RA0342137,9959722222', '29', '13/05/2015 23:54:12','-26,7', 'RA03');
execute insertartiradas('RA0342137,9969791667', '24', '13/05/2015 23:55:39','17,2', 'RA03');
execute insertartiradas('RA0342137,9979282407', '32', '13/05/2015 23:57:01','-15,4', 'RA03');
execute insertartiradas('RA0342137,9992361111', '19', '13/05/2015 23:58:54','12', 'RA03');
execute insertartiradas('RA0342138,0001273148', '8', '14/05/2015 00:00:11','-18,6', 'RA03');
execute insertartiradas('RA0342138,0011458333', '3', '14/05/2015 00:01:39','14,9', 'RA03');
execute insertartiradas('RA0342138,0023958333', '33', '14/05/2015 00:03:27','-21,4', 'RA03');
execute insertartiradas('RA0342138,0038310185', '3', '14/05/2015 00:05:31','17,4', 'RA03');
execute insertartiradas('RA0342138,0049884259', '25', '14/05/2015 00:07:11','-20,5', 'RA03');
execute insertartiradas('RA0342138,0060416667', '29', '14/05/2015 00:08:42','16,8', 'RA03');
execute insertartiradas('RA0342138,0072106481', '4', '14/05/2015 00:10:23','-20', 'RA03');
execute insertartiradas('RA0342138,0080671296', '2', '14/05/2015 00:11:37','17,7', 'RA03');
execute insertartiradas('RA0342138,0091319444', '20', '14/05/2015 00:13:09','-20,4', 'RA03');
execute insertartiradas('RA0342138,010162037', '3', '14/05/2015 00:14:38','19,3', 'RA03');
execute insertartiradas('RA0342138,0109837963', '6', '14/05/2015 00:15:49','-20,8', 'RA03');
execute insertartiradas('RA0342138,0120949074', '22', '14/05/2015 00:17:25','19,2', 'RA03');
execute insertartiradas('RA0342138,0130787037', '18', '14/05/2015 00:18:50','-20,5', 'RA03');
execute insertartiradas('RA0342138,0141435185', '9', '14/05/2015 00:20:22','15,6', 'RA03');
execute insertartiradas('RA0342138,0151041667', '14', '14/05/2015 00:21:45','-18,9', 'RA03');
execute insertartiradas('RA0342138,0162615741', '33', '14/05/2015 00:23:25','19,3', 'RA03');
execute insertartiradas('RA0342138,0173263889', '9', '14/05/2015 00:24:57','-20', 'RA03');
execute insertartiradas('RA0342138,0179976852', '1', '14/05/2015 00:25:55','18,9', 'RA03');
execute insertartiradas('RA0342138,0190162037', '27', '14/05/2015 00:27:23','-18,2', 'RA03');
execute insertartiradas('RA0342138,0196643519', '29', '14/05/2015 00:28:19','18,8', 'RA03');
execute insertartiradas('RA0342138,0202662037', '17', '14/05/2015 00:29:11','-19,3', 'RA03');
execute insertartiradas('RA0342138,0209837963', '13', '14/05/2015 00:30:13','20,7', 'RA03');
execute insertartiradas('RA0342138,0218518519', '25', '14/05/2015 00:31:28','-21', 'RA03');
execute insertartiradas('RA0342138,0229861111', '32', '14/05/2015 00:33:06','19,4', 'RA03');
execute insertartiradas('RA0342138,024212963', '13', '14/05/2015 00:34:52','-20,3', 'RA03');
execute insertartiradas('RA0342138,0252662037', '9', '14/05/2015 00:36:23','18,3', 'RA03');
execute insertartiradas('RA0342138,0261689815', '35', '14/05/2015 00:37:41','-21,7', 'RA03');
execute insertartiradas('RA0342138,0268865741', '10', '14/05/2015 00:38:43','18,7', 'RA03');
execute insertartiradas('RA0342138,0278009259', '25', '14/05/2015 00:40:02','-18,3', 'RA03');
execute insertartiradas('RA0342138,0291666667', '17', '14/05/2015 00:42:00','18,2', 'RA03');
execute insertartiradas('RA0342138,029849537', '19', '14/05/2015 00:42:59','-19,1', 'RA03');
execute insertartiradas('RA0342138,03125', '36', '14/05/2015 00:45:00','15,2', 'RA03');
execute insertartiradas('RA0342138,0325347222', '9', '14/05/2015 00:46:51','-17,3', 'RA03');
execute insertartiradas('RA0342138,0334953704', '19', '14/05/2015 00:48:14','16,2', 'RA03');
execute insertartiradas('RA0342138,034525463', '8', '14/05/2015 00:49:43','-16,9', 'RA03');
execute insertartiradas('RA0342138,0359143519', '0', '14/05/2015 00:51:43','16,2', 'RA03');
execute insertartiradas('RA0342138,0366550926', '33', '14/05/2015 00:52:47','-16,6', 'RA03');
execute insertartiradas('RA0342138,037650463', '30', '14/05/2015 00:54:13','17,9', 'RA03');
execute insertartiradas('RA0342138,0388657407', '8', '14/05/2015 00:55:58','-19', 'RA03');
execute insertartiradas('RA0342138,0398032407', '34', '14/05/2015 00:57:19','19,2', 'RA03');
execute insertartiradas('RA0342138,0404282407', '6', '14/05/2015 00:58:13','-17,3', 'RA03');
execute insertartiradas('RA0342138,0410185185', '34', '14/05/2015 00:59:04','14,8', 'RA03');
execute insertartiradas('RA0342138,0416435185', '2', '14/05/2015 00:59:58','-18,6', 'RA03');
execute insertartiradas('RA0342138,0425694444', '15', '14/05/2015 01:01:18','17,5', 'RA03');
execute insertartiradas('RA0342138,043587963', '16', '14/05/2015 01:02:46','-14,7', 'RA03');
execute insertartiradas('RA0342138,044375', '1', '14/05/2015 01:03:54','18,3', 'RA03');
execute insertartiradas('RA0342138,044849537', '32', '14/05/2015 01:04:35','-14', 'RA03');
execute insertartiradas('RA0342138,0453703704', '8', '14/05/2015 01:05:20','16,3', 'RA03');
execute insertartiradas('RA0342138,0459606481', '26', '14/05/2015 01:06:11','-16,2', 'RA03');
execute insertartiradas('RA0342138,0465509259', '11', '14/05/2015 01:07:02','17', 'RA03');
execute insertartiradas('RA0342138,0472106481', '8', '14/05/2015 01:07:59','-14', 'RA03');
execute insertartiradas('RA0342138,0480671296', '2', '14/05/2015 01:09:13','12,5', 'RA03');
execute insertartiradas('RA0342138,048912037', '5', '14/05/2015 01:10:26','-15,3', 'RA03');
execute insertartiradas('RA0342138,0498148148', '18', '14/05/2015 01:11:44','22', 'RA03');
execute insertartiradas('RA0342138,0505787037', '29', '14/05/2015 01:12:50','-16,9', 'RA03');
execute insertartiradas('RA0342138,0511458333', '25', '14/05/2015 01:13:39','14,1', 'RA03');
execute insertartiradas('RA0342138,0517013889', '21', '14/05/2015 01:14:27','-17,1', 'RA03');
execute insertartiradas('RA0342138,0525462963', '31', '14/05/2015 01:15:40','15,5', 'RA03');
execute insertartiradas('RA0342138,0532291667', '20', '14/05/2015 01:16:39','-17,1', 'RA03');
execute insertartiradas('RA0342138,0538425926', '16', '14/05/2015 01:17:32','18,3', 'RA03');
execute insertartiradas('RA0342138,0545717593', '34', '14/05/2015 01:18:35','-16,9', 'RA03');
execute insertartiradas('RA0342138,0551273148', '16', '14/05/2015 01:19:23','18', 'RA03');
execute insertartiradas('RA0342138,0558101852', '4', '14/05/2015 01:20:22','-15,7', 'RA03');
execute insertartiradas('RA0342138,0563657407', '22', '14/05/2015 01:21:10','17,1', 'RA03');
execute insertartiradas('RA0342138,0568402778', '14', '14/05/2015 01:21:51','-17,3', 'RA03');
execute insertartiradas('RA0342138,0572916667', '5', '14/05/2015 01:22:30','17,5', 'RA03');
execute insertartiradas('RA0342138,0581481481', '31', '14/05/2015 01:23:44','-17,8', 'RA03');
execute insertartiradas('RA0342138,0588541667', '22', '14/05/2015 01:24:45','17,2', 'RA03');
execute insertartiradas('RA0342138,0594328704', '14', '14/05/2015 01:25:35','-19,2', 'RA03');
execute insertartiradas('RA0342138,0601851852', '22', '14/05/2015 01:26:40','17,3', 'RA03');
execute insertartiradas('RA0342138,0610069444', '19', '14/05/2015 01:27:51','-16,7', 'RA03');
execute insertartiradas('RA0342138,0618055556', '7', '14/05/2015 01:29:00','17,9', 'RA03');
execute insertartiradas('RA0342138,0624884259', '6', '14/05/2015 01:29:59','-17,7', 'RA03');
execute insertartiradas('RA0342138,0633680556', '16', '14/05/2015 01:31:15','15,3', 'RA03');
execute insertartiradas('RA0342138,0638888889', '25', '14/05/2015 01:32:00','-17,2', 'RA03');
execute insertartiradas('RA0342138,0645138889', '21', '14/05/2015 01:32:54','16,4', 'RA03');
execute insertartiradas('RA0342138,0651273148', '30', '14/05/2015 01:33:47','-16,8', 'RA03');
execute insertartiradas('RA0342138,065775463', '4', '14/05/2015 01:34:43','16,1', 'RA03');
execute insertartiradas('RA0342138,0666782407', '8', '14/05/2015 01:36:01','-16,8', 'RA03');
execute insertartiradas('RA0342138,0674421296', '1', '14/05/2015 01:37:07','16,3', 'RA03');
execute insertartiradas('RA0342138,0680439815', '17', '14/05/2015 01:37:59','-16,8', 'RA03');
execute insertartiradas('RA0342138,0689814814', '16', '14/05/2015 01:39:20','16,3', 'RA03');
execute insertartiradas('RA0342138,0697800926', '18', '14/05/2015 01:40:29','-16,9', 'RA03');
execute insertartiradas('RA0342138,0704166667', '12', '14/05/2015 01:41:24','15,1', 'RA03');
execute insertartiradas('RA0342138,0709259259', '34', '14/05/2015 01:42:08','-15,1', 'RA03');
execute insertartiradas('RA0342138,0713657407', '26', '14/05/2015 01:42:46','13,6', 'RA03');
execute insertartiradas('RA0342138,0719675926', '10', '14/05/2015 01:43:38','-13,6', 'RA03');
execute insertartiradas('RA0342138,0725', '12', '14/05/2015 01:44:24','13,7', 'RA03');
execute insertartiradas('RA0342138,0730671296', '17', '14/05/2015 01:45:13','-11,7', 'RA03');
execute insertartiradas('RA0342138,073587963', '12', '14/05/2015 01:45:58','12,1', 'RA03');
execute insertartiradas('RA0342138,0742939815', '17', '14/05/2015 01:46:59','-12,8', 'RA03');
execute insertartiradas('RA0342138,075', '16', '14/05/2015 01:48:00','12,4', 'RA03');
execute insertartiradas('RA0342138,075775463', '20', '14/05/2015 01:49:07','-13,3', 'RA03');
execute insertartiradas('RA0342138,0763541667', '23', '14/05/2015 01:49:57','13,4', 'RA03');
execute insertartiradas('RA0342138,077025463', '21', '14/05/2015 01:50:55','-13,6', 'RA03');
execute insertartiradas('RA0342138,0777083333', '35', '14/05/2015 01:51:54','11,4', 'RA03');
execute insertartiradas('RA0342138,0781134259', '0', '14/05/2015 01:52:29','-12,4', 'RA03');
execute insertartiradas('RA0342138,0786921296', '13', '14/05/2015 01:53:19','12,1', 'RA03');
execute insertartiradas('RA0342138,0792476852', '9', '14/05/2015 01:54:07','-12,7', 'RA03');
execute insertartiradas('RA0342138,0797569444', '24', '14/05/2015 01:54:51','13,6', 'RA03');
execute insertartiradas('RA0342138,0804513889', '4', '14/05/2015 01:55:51','-12', 'RA03');
execute insertartiradas('RA0342138,0810185185', '16', '14/05/2015 01:56:40','12,6', 'RA03');
execute insertartiradas('RA0342138,0815046296', '36', '14/05/2015 01:57:22','-13,5', 'RA03');
execute insertartiradas('RA0342138,082037037', '6', '14/05/2015 01:58:08','13,9', 'RA03');
execute insertartiradas('RA0342138,0825115741', '33', '14/05/2015 01:58:49','-12,1', 'RA03');
execute insertartiradas('RA0342138,0829282407', '0', '14/05/2015 01:59:25','10,9', 'RA03');
execute insertartiradas('RA0342138,0834722222', '10', '14/05/2015 02:00:12','-15', 'RA03');
execute insertartiradas('RA0342138,083912037', '5', '14/05/2015 02:00:50','12,1', 'RA03');
execute insertartiradas('RA0342138,0844444444', '25', '14/05/2015 02:01:36','-11,7', 'RA03');
execute insertartiradas('RA0342138,0849421296', '22', '14/05/2015 02:02:19','13', 'RA03');
execute insertartiradas('RA0342138,0865972222', '31', '14/05/2015 02:04:42','-13,5', 'RA03');
execute insertartiradas('RA0342138,1039236111', '32', '14/05/2015 02:29:39','17,3', 'RA03');
execute insertartiradas('RA0342138,1044097222', '11', '14/05/2015 02:30:21','-17,6', 'RA03');
execute insertartiradas('RA0342138,1047800926', '18', '14/05/2015 02:30:53','17,6', 'RA03');
execute insertartiradas('RA0342138,1052893518', '22', '14/05/2015 02:31:37','-18,7', 'RA03');
execute insertartiradas('RA0342138,1056828703', '6', '14/05/2015 02:32:11','17,9', 'RA03');
execute insertartiradas('RA0342138,1061111111', '15', '14/05/2015 02:32:48','-15,6', 'RA03');
execute insertartiradas('RA0342138,1066087963', '2', '14/05/2015 02:33:31','14,6', 'RA03');
execute insertartiradas('RA0342138,1070023148', '6', '14/05/2015 02:34:05','-18,5', 'RA03');
execute insertartiradas('RA0342138,1081712963', '12', '14/05/2015 02:35:46','17,7', 'RA03');
execute insertartiradas('RA0342138,108900463', '25', '14/05/2015 02:36:49','-18,7', 'RA03');
execute insertartiradas('RA0342138,1097337963', '32', '14/05/2015 02:38:01','17,7', 'RA03');
execute insertartiradas('RA0342138,1106944444', '6', '14/05/2015 02:39:24','-19', 'RA03');
execute insertartiradas('RA0342138,1125347222', '12', '14/05/2015 02:42:03','17,9', 'RA03');
execute insertartiradas('RA0342138,1132407407', '33', '14/05/2015 02:43:04','-17,8', 'RA03');
execute insertartiradas('RA0342138,1138078704', '3', '14/05/2015 02:43:53','20,6', 'RA03');
execute insertartiradas('RA0342138,1143055556', '12', '14/05/2015 02:44:36','-19,4', 'RA03');
execute insertartiradas('RA0342138,1147916667', '6', '14/05/2015 02:45:18','18,6', 'RA03');
execute insertartiradas('RA0342138,1152314815', '23', '14/05/2015 02:45:56','-18,6', 'RA03');
execute insertartiradas('RA0342138,1157986111', '26', '14/05/2015 02:46:45','17,4', 'RA03');
execute insertartiradas('RA0342138,1162847222', '19', '14/05/2015 02:47:27','-18,6', 'RA03');
execute insertartiradas('RA0342138,120462963', '6', '14/05/2015 02:53:28','19,8', 'RA03');
execute insertartiradas('RA0342138,1208564815', '5', '14/05/2015 02:54:02','-16,6', 'RA03');
execute insertartiradas('RA0342138,1212962963', '2', '14/05/2015 02:54:40','12,6', 'RA03');
execute insertartiradas('RA0342138,121875', '18', '14/05/2015 02:55:30','-21,9', 'RA03');
execute insertartiradas('RA0342138,1223726852', '21', '14/05/2015 02:56:13','14,4', 'RA03');
execute insertartiradas('RA0342138,1228935185', '27', '14/05/2015 02:56:58','-15', 'RA03');
execute insertartiradas('RA0342138,1233796296', '20', '14/05/2015 02:57:40','15,1', 'RA03');
execute insertartiradas('RA0342138,1238194444', '6', '14/05/2015 02:58:18','-15,4', 'RA03');
execute insertartiradas('RA0342138,1242592593', '10', '14/05/2015 02:58:56','18,9', 'RA03');
execute insertartiradas('RA0342138,1246527778', '12', '14/05/2015 02:59:30','-19,6', 'RA03');
execute insertartiradas('RA0342138,7046412037', '32', '14/05/2015 16:54:41','18,6', 'RA03');
execute insertartiradas('RA0342138,7049537037', '9', '14/05/2015 16:55:08','-27', 'RA03');
execute insertartiradas('RA0342138,7052777778', '15', '14/05/2015 16:55:36','23,6', 'RA03');
execute insertartiradas('RA0342138,7056018518', '11', '14/05/2015 16:56:04','-20,1', 'RA03');
execute insertartiradas('RA0342138,7586342593', '33', '14/05/2015 18:12:26','18,4', 'RA03');
execute insertartiradas('RA0342138,759375', '2', '14/05/2015 18:13:30','-18,3', 'RA03');
execute insertartiradas('RA0342138,7600694444', '22', '14/05/2015 18:14:30','17,7', 'RA03');
execute insertartiradas('RA0342138,7606481481', '12', '14/05/2015 18:15:20','-19,5', 'RA03');
execute insertartiradas('RA0342138,7612847222', '1', '14/05/2015 18:16:15','20,5', 'RA03');
execute insertartiradas('RA0342138,7618865741', '17', '14/05/2015 18:17:07','-17,2', 'RA03');
execute insertartiradas('RA0342138,7625231482', '29', '14/05/2015 18:18:02','18,3', 'RA03');
execute insertartiradas('RA0342138,7631828704', '6', '14/05/2015 18:18:59','-19,1', 'RA03');
execute insertartiradas('RA0342138,763912037', '6', '14/05/2015 18:20:02','16,8', 'RA03');
execute insertartiradas('RA0342138,7644560185', '15', '14/05/2015 18:20:49','-19,5', 'RA03');
execute insertartiradas('RA0342138,7652199074', '4', '14/05/2015 18:21:55','20,9', 'RA03');
execute insertartiradas('RA0342138,7658449074', '1', '14/05/2015 18:22:49','-19,8', 'RA03');
execute insertartiradas('RA0342138,7664467593', '27', '14/05/2015 18:23:41','18,7', 'RA03');
execute insertartiradas('RA0342138,7670138889', '21', '14/05/2015 18:24:30','-18,5', 'RA03');
execute insertartiradas('RA0342138,7675462963', '36', '14/05/2015 18:25:16','18,3', 'RA03');
execute insertartiradas('RA0342138,7680902778', '33', '14/05/2015 18:26:03','-20,3', 'RA03');
execute insertartiradas('RA0342138,7686689815', '6', '14/05/2015 18:26:53','16,4', 'RA03');
execute insertartiradas('RA0342138,7692939815', '5', '14/05/2015 18:27:47','-17,8', 'RA03');
execute insertartiradas('RA0342138,7700578704', '24', '14/05/2015 18:28:53','16,9', 'RA03');
execute insertartiradas('RA0342138,7707291667', '9', '14/05/2015 18:29:51','-17,7', 'RA03');
execute insertartiradas('RA0342138,7718171296', '34', '14/05/2015 18:31:25','16,5', 'RA03');
execute insertartiradas('RA0342138,772662037', '18', '14/05/2015 18:32:38','-18,2', 'RA03');
execute insertartiradas('RA0342138,7734259259', '32', '14/05/2015 18:33:44','16,9', 'RA03');
execute insertartiradas('RA0342138,7739467593', '5', '14/05/2015 18:34:29','-17,5', 'RA03');
execute insertartiradas('RA0342138,7744907407', '19', '14/05/2015 18:35:16','20,1', 'RA03');
execute insertartiradas('RA0342138,7751041667', '2', '14/05/2015 18:36:09','-18,5', 'RA03');
execute insertartiradas('RA0342138,7756944444', '15', '14/05/2015 18:37:00','18,4', 'RA03');
execute insertartiradas('RA0342138,7762962963', '29', '14/05/2015 18:37:52','-19', 'RA03');
execute insertartiradas('RA0342138,7771180556', '18', '14/05/2015 18:39:03','18', 'RA03');
execute insertartiradas('RA0342138,7778240741', '33', '14/05/2015 18:40:04','-19,2', 'RA03');
execute insertartiradas('RA0342138,7784953704', '8', '14/05/2015 18:41:02','17,7', 'RA03');
execute insertartiradas('RA0342138,7794675926', '7', '14/05/2015 18:42:26','-18,3', 'RA03');
execute insertartiradas('RA0342138,7802777778', '32', '14/05/2015 18:43:36','18,2', 'RA03');
execute insertartiradas('RA0342138,7809953704', '3', '14/05/2015 18:44:38','-20,2', 'RA03');
execute insertartiradas('RA0342138,7818981481', '17', '14/05/2015 18:45:56','20,3', 'RA03');
execute insertartiradas('RA0342138,7824305556', '19', '14/05/2015 18:46:42','-17,9', 'RA03');
execute insertartiradas('RA0342138,7829976852', '9', '14/05/2015 18:47:31','17,5', 'RA03');
execute insertartiradas('RA0342138,7838194444', '8', '14/05/2015 18:48:42','-18,3', 'RA03');
execute insertartiradas('RA0342138,7844907407', '30', '14/05/2015 18:49:40','16,8', 'RA03');
execute insertartiradas('RA0342138,7853356482', '8', '14/05/2015 18:50:53','-17,3', 'RA03');
execute insertartiradas('RA0342138,7861342593', '36', '14/05/2015 18:52:02','18,4', 'RA03');
execute insertartiradas('RA0342138,7865972222', '34', '14/05/2015 18:52:42','-18,4', 'RA03');
execute insertartiradas('RA0342138,7873842593', '6', '14/05/2015 18:53:50','16,2', 'RA03');
execute insertartiradas('RA0342138,7888078704', '28', '14/05/2015 18:55:53','-17', 'RA03');
execute insertartiradas('RA0342138,7896875', '8', '14/05/2015 18:57:09','18', 'RA03');
execute insertartiradas('RA0342138,7905671296', '34', '14/05/2015 18:58:25','-17,5', 'RA03');
execute insertartiradas('RA0342138,7912731481', '9', '14/05/2015 18:59:26','16,7', 'RA03');
execute insertartiradas('RA0342138,7922916667', '28', '14/05/2015 19:00:54','-19,5', 'RA03');
execute insertartiradas('RA0342138,7932523148', '3', '14/05/2015 19:02:17','15,8', 'RA03');
execute insertartiradas('RA0342138,7940393519', '21', '14/05/2015 19:03:25','-17,7', 'RA03');
execute insertartiradas('RA0342138,7946180556', '5', '14/05/2015 19:04:15','17,3', 'RA03');
execute insertartiradas('RA0342138,7952083333', '14', '14/05/2015 19:05:06','-17,9', 'RA03');
execute insertartiradas('RA0342138,7958449074', '20', '14/05/2015 19:06:01','17,6', 'RA03');
execute insertartiradas('RA0342138,7965509259', '26', '14/05/2015 19:07:02','-19,4', 'RA03');
execute insertartiradas('RA0342138,7972569444', '31', '14/05/2015 19:08:03','17,2', 'RA03');
execute insertartiradas('RA0342138,80375', '22', '14/05/2015 19:17:24','-18,6', 'RA03');
execute insertartiradas('RA0342138,8044097222', '13', '14/05/2015 19:18:21','15,8', 'RA03');
execute insertartiradas('RA0342138,8050462963', '21', '14/05/2015 19:19:16','-17,4', 'RA03');
execute insertartiradas('RA0342138,8056481481', '1', '14/05/2015 19:20:08','14,7', 'RA03');
execute insertartiradas('RA0342138,8061805556', '6', '14/05/2015 19:20:54','-15,3', 'RA03');
execute insertartiradas('RA0342138,8067476851', '36', '14/05/2015 19:21:43','15,1', 'RA03');
execute insertartiradas('RA0342138,8073958333', '8', '14/05/2015 19:22:39','-18,4', 'RA03');
execute insertartiradas('RA0342138,8079513889', '24', '14/05/2015 19:23:27','15,7', 'RA03');
execute insertartiradas('RA0342138,8085300926', '34', '14/05/2015 19:24:17','-19,7', 'RA03');
execute insertartiradas('RA0342138,8091203704', '29', '14/05/2015 19:25:08','8,8', 'RA03');
execute insertartiradas('RA0342138,8096296296', '20', '14/05/2015 19:25:52','-11,6', 'RA03');
execute insertartiradas('RA0342138,8101157407', '30', '14/05/2015 19:26:34','15,6', 'RA03');
execute insertartiradas('RA0342138,8109606481', '17', '14/05/2015 19:27:47','-14', 'RA03');
execute insertartiradas('RA0342138,8114699074', '21', '14/05/2015 19:28:31','16', 'RA03');
execute insertartiradas('RA0342138,812199074', '19', '14/05/2015 19:29:34','-16,3', 'RA03');
execute insertartiradas('RA0342138,8127893519', '32', '14/05/2015 19:30:25','16,8', 'RA03');
execute insertartiradas('RA0342138,8133449074', '28', '14/05/2015 19:31:13','-15,9', 'RA03');
execute insertartiradas('RA0342138,8182986111', '1', '14/05/2015 19:38:21','14,3', 'RA03');
execute insertartiradas('RA0342138,8191203704', '1', '14/05/2015 19:39:32','-16,6', 'RA03');
execute insertartiradas('RA0342138,8196527778', '10', '14/05/2015 19:40:18','15,7', 'RA03');
execute insertartiradas('RA0342138,8207175926', '13', '14/05/2015 19:41:50','-17', 'RA03');
execute insertartiradas('RA0342138,8215393519', '7', '14/05/2015 19:43:01','14,6', 'RA03');
execute insertartiradas('RA0342138,8219444444', '29', '14/05/2015 19:43:36','-17', 'RA03');
execute insertartiradas('RA0342138,8224768518', '12', '14/05/2015 19:44:22','17,5', 'RA03');
execute insertartiradas('RA0342138,8228125', '30', '14/05/2015 19:44:51','-18,3', 'RA03');
execute insertartiradas('RA0342138,8234837963', '21', '14/05/2015 19:45:49','19,4', 'RA03');
execute insertartiradas('RA0342138,8240972222', '29', '14/05/2015 19:46:42','-18,6', 'RA03');
execute insertartiradas('RA0342138,8247106482', '29', '14/05/2015 19:47:35','18,3', 'RA03');
execute insertartiradas('RA0342138,8250810185', '20', '14/05/2015 19:48:07','-18,7', 'RA03');
execute insertartiradas('RA0342138,83875', '22', '14/05/2015 20:07:48','17,4', 'RA03');
execute insertartiradas('RA0342138,840625', '7', '14/05/2015 20:10:30','-18,7', 'RA03');
execute insertartiradas('RA0342138,8409953704', '23', '14/05/2015 20:11:02','18,5', 'RA03');
execute insertartiradas('RA0342138,8415046296', '7', '14/05/2015 20:11:46','-17', 'RA03');
execute insertartiradas('RA0342138,8417939815', '26', '14/05/2015 20:12:11','15,4', 'RA03');
execute insertartiradas('RA0342138,845625', '13', '14/05/2015 20:17:42','-16', 'RA03');
execute insertartiradas('RA0342138,8459259259', '3', '14/05/2015 20:18:08','17,6', 'RA03');
execute insertartiradas('RA0342138,8540740741', '9', '14/05/2015 20:29:52','-16', 'RA03');
execute insertartiradas('RA0342138,8580324074', '0', '14/05/2015 20:35:34','15,7', 'RA03');
execute insertartiradas('RA0342138,8615740741', '35', '14/05/2015 20:40:40','-16,9', 'RA03');
execute insertartiradas('RA0342138,8621875', '6', '14/05/2015 20:41:33','18,1', 'RA03');
execute insertartiradas('RA0342138,8629398148', '8', '14/05/2015 20:42:38','-18,6', 'RA03');
execute insertartiradas('RA0342138,8652546296', '31', '14/05/2015 20:45:58','11,7', 'RA03');
execute insertartiradas('RA0342138,8661574074', '0', '14/05/2015 20:47:16','-13,5', 'RA03');
execute insertartiradas('RA0342138,8667013889', '8', '14/05/2015 20:48:03','13', 'RA03');
execute insertartiradas('RA0342138,8670949074', '25', '14/05/2015 20:48:37','-14,6', 'RA03');
execute insertartiradas('RA0342138,869224537', '25', '14/05/2015 20:51:41','10,1', 'RA03');
execute insertartiradas('RA0342138,8699305556', '1', '14/05/2015 20:52:42','-12,8', 'RA03');
execute insertartiradas('RA0342138,8708333333', '6', '14/05/2015 20:54:00','12,8', 'RA03');
execute insertartiradas('RA0342138,8719444444', '6', '14/05/2015 20:55:36','-15,2', 'RA03');
execute insertartiradas('RA0342138,8725115741', '24', '14/05/2015 20:56:25','8,4', 'RA03');
execute insertartiradas('RA0342138,873287037', '21', '14/05/2015 20:57:32','-9,8', 'RA03');
execute insertartiradas('RA0342138,8811458333', '26', '14/05/2015 21:08:51','17,4', 'RA03');
execute insertartiradas('RA0342138,8818287037', '25', '14/05/2015 21:09:50','-12,9', 'RA03');
execute insertartiradas('RA0342138,8823611111', '26', '14/05/2015 21:10:36','13,1', 'RA03');
execute insertartiradas('RA0342138,8828240741', '8', '14/05/2015 21:11:16','-13,8', 'RA03');
execute insertartiradas('RA0342138,8832175926', '26', '14/05/2015 21:11:50','14,4', 'RA03');
execute insertartiradas('RA0342138,8837268519', '30', '14/05/2015 21:12:34','-11,4', 'RA03');
execute insertartiradas('RA0342138,9029398148', '18', '14/05/2015 21:40:14','11,8', 'RA03');
execute insertartiradas('RA0342138,9037268519', '26', '14/05/2015 21:41:22','-14', 'RA03');
execute insertartiradas('RA0342138,9041898148', '4', '14/05/2015 21:42:02','12,7', 'RA03');
execute insertartiradas('RA0342138,9046875', '4', '14/05/2015 21:42:45','-15,8', 'RA03');
execute insertartiradas('RA0342138,9050925926', '10', '14/05/2015 21:43:20','14,4', 'RA03');
execute insertartiradas('RA0342138,9070833333', '19', '14/05/2015 21:46:12','-13,6', 'RA03');
execute insertartiradas('RA0342138,9076273148', '18', '14/05/2015 21:46:59','14,4', 'RA03');
execute insertartiradas('RA0342138,9080208333', '11', '14/05/2015 21:47:33','-16,5', 'RA03');
execute insertartiradas('RA0342138,9083796296', '27', '14/05/2015 21:48:04','15,4', 'RA03');
execute insertartiradas('RA0342138,9094212963', '32', '14/05/2015 21:49:34','-16,3', 'RA03');
execute insertartiradas('RA0342138,9101388889', '4', '14/05/2015 21:50:36','15,6', 'RA03');
execute insertartiradas('RA0342138,9105092593', '2', '14/05/2015 21:51:08','-17,6', 'RA03');
execute insertartiradas('RA0342138,9109490741', '22', '14/05/2015 21:51:46','15,2', 'RA03');
execute insertartiradas('RA0342138,9119328704', '35', '14/05/2015 21:53:11','-19', 'RA03');
execute insertartiradas('RA0342138,9123148148', '27', '14/05/2015 21:53:44','14,6', 'RA03');
execute insertartiradas('RA0342138,9128472222', '3', '14/05/2015 21:54:30','-18,2', 'RA03');
execute insertartiradas('RA0342138,9132638889', '26', '14/05/2015 21:55:06','16,3', 'RA03');
execute insertartiradas('RA0342138,9137847222', '15', '14/05/2015 21:55:51','-19,4', 'RA03');
execute insertartiradas('RA0342138,9145486111', '16', '14/05/2015 21:56:57','15,4', 'RA03');
execute insertartiradas('RA0342138,915625', '18', '14/05/2015 21:58:30','-18,9', 'RA03');
execute insertartiradas('RA0342138,9162847222', '17', '14/05/2015 21:59:27','14,8', 'RA03');
execute insertartiradas('RA0342138,9167939815', '10', '14/05/2015 22:00:11','-18,9', 'RA03');
execute insertartiradas('RA0342138,9172916667', '31', '14/05/2015 22:00:54','17', 'RA03');
execute insertartiradas('RA0342138,9177893518', '2', '14/05/2015 22:01:37','-14,6', 'RA03');
execute insertartiradas('RA0342138,9182291667', '2', '14/05/2015 22:02:15','15,6', 'RA03');
execute insertartiradas('RA0342138,9187268519', '26', '14/05/2015 22:02:58','-17,1', 'RA03');
execute insertartiradas('RA0342138,9193634259', '4', '14/05/2015 22:03:53','16,1', 'RA03');
execute insertartiradas('RA0342138,9198611111', '5', '14/05/2015 22:04:36','-15,4', 'RA03');
execute insertartiradas('RA0342138,9206712963', '33', '14/05/2015 22:05:46','18,5', 'RA03');
execute insertartiradas('RA0342138,9215162037', '21', '14/05/2015 22:06:59','-22,7', 'RA03');
execute insertartiradas('RA0342138,9224189815', '30', '14/05/2015 22:08:17','17,5', 'RA03');
execute insertartiradas('RA0342138,9228240741', '31', '14/05/2015 22:08:52','-17', 'RA03');
execute insertartiradas('RA0342138,923275463', '0', '14/05/2015 22:09:31','13,9', 'RA03');
execute insertartiradas('RA0342138,9243518518', '5', '14/05/2015 22:11:04','-20', 'RA03');
execute insertartiradas('RA0342138,9250694444', '15', '14/05/2015 22:12:06','13,6', 'RA03');
execute insertartiradas('RA0342138,9255324074', '27', '14/05/2015 22:12:46','-14,2', 'RA03');
execute insertartiradas('RA0342138,9262384259', '0', '14/05/2015 22:13:47','14,5', 'RA03');
execute insertartiradas('RA0342138,9269097222', '4', '14/05/2015 22:14:45','-21,1', 'RA03');
execute insertartiradas('RA0342138,9274074074', '17', '14/05/2015 22:15:28','16,7', 'RA03');
execute insertartiradas('RA0342138,9280671296', '18', '14/05/2015 22:16:25','-18,5', 'RA03');
execute insertartiradas('RA0342138,9285648148', '11', '14/05/2015 22:17:08','13,8', 'RA03');
execute insertartiradas('RA0342138,9291898148', '15', '14/05/2015 22:18:02','-15,6', 'RA03');
execute insertartiradas('RA0342138,9297916667', '14', '14/05/2015 22:18:54','14,1', 'RA03');
execute insertartiradas('RA0342138,9305324074', '26', '14/05/2015 22:19:58','-19,6', 'RA03');
execute insertartiradas('RA0342138,9312847222', '17', '14/05/2015 22:21:03','14,1', 'RA03');
execute insertartiradas('RA0342138,9317592593', '4', '14/05/2015 22:21:44','-18,4', 'RA03');
execute insertartiradas('RA0342138,9324074074', '34', '14/05/2015 22:22:40','18,5', 'RA03');
execute insertartiradas('RA0342138,9327893518', '26', '14/05/2015 22:23:13','-17,7', 'RA03');
execute insertartiradas('RA0342138,9332175926', '11', '14/05/2015 22:23:50','16,9', 'RA03');
execute insertartiradas('RA0342138,9339930556', '0', '14/05/2015 22:24:57','-17', 'RA03');
execute insertartiradas('RA0342138,9343634259', '3', '14/05/2015 22:25:29','15,1', 'RA03');
execute insertartiradas('RA0342138,9372916667', '19', '14/05/2015 22:29:42','-19,4', 'RA03');
execute insertartiradas('RA0342138,9375925926', '24', '14/05/2015 22:30:08','17,5', 'RA03');
execute insertartiradas('RA0342138,9378703704', '19', '14/05/2015 22:30:32','-15,8', 'RA03');
execute insertartiradas('RA0342138,938125', '26', '14/05/2015 22:30:54','15,5', 'RA03');
execute insertartiradas('RA0342138,9399768518', '36', '14/05/2015 22:33:34','-16', 'RA03');
execute insertartiradas('RA0342138,9404398148', '36', '14/05/2015 22:34:14','19,5', 'RA03');
execute insertartiradas('RA0342138,9407407407', '5', '14/05/2015 22:34:40','-18,1', 'RA03');
execute insertartiradas('RA0342138,9409953704', '2', '14/05/2015 22:35:02','17,6', 'RA03');
execute insertartiradas('RA0342138,943287037', '29', '14/05/2015 22:38:20','-16,9', 'RA03');
execute insertartiradas('RA0342138,943587963', '7', '14/05/2015 22:38:46','18,6', 'RA03');
execute insertartiradas('RA0342138,9443055556', '30', '14/05/2015 22:39:48','-18,6', 'RA03');
execute insertartiradas('RA0342138,9447685185', '27', '14/05/2015 22:40:28','17,4', 'RA03');
execute insertartiradas('RA0342138,9450578704', '33', '14/05/2015 22:40:53','-18', 'RA03');
execute insertartiradas('RA0342138,9454513889', '20', '14/05/2015 22:41:27','18,3', 'RA03');
execute insertartiradas('RA0342138,9457523148', '33', '14/05/2015 22:41:53','-17,6', 'RA03');
execute insertartiradas('RA0342138,9558680556', '3', '14/05/2015 22:56:27','19,3', 'RA03');
execute insertartiradas('RA0342138,9567013889', '18', '14/05/2015 22:57:39','-17,3', 'RA03');
execute insertartiradas('RA0342138,9571759259', '13', '14/05/2015 22:58:20','19,3', 'RA03');
execute insertartiradas('RA0342138,9577777778', '24', '14/05/2015 22:59:12','-18,9', 'RA03');
execute insertartiradas('RA0342138,9583912037', '3', '14/05/2015 23:00:05','16,6', 'RA03');
execute insertartiradas('RA0342138,9591087963', '18', '14/05/2015 23:01:07','-17,5', 'RA03');
execute insertartiradas('RA0342138,9597337963', '13', '14/05/2015 23:02:01','16,6', 'RA03');
execute insertartiradas('RA0342138,9606828704', '5', '14/05/2015 23:03:23','-19,1', 'RA03');
execute insertartiradas('RA0342138,9621875', '2', '14/05/2015 23:05:33','17', 'RA03');
execute insertartiradas('RA0342138,9633333333', '15', '14/05/2015 23:07:12','-14,9', 'RA03');
execute insertartiradas('RA0342138,9640509259', '30', '14/05/2015 23:08:14','16,9', 'RA03');
execute insertartiradas('RA0342138,9649074074', '9', '14/05/2015 23:09:28','-15,9', 'RA03');
execute insertartiradas('RA0342138,965462963', '5', '14/05/2015 23:10:16','16,1', 'RA03');
execute insertartiradas('RA0342138,9659375', '21', '14/05/2015 23:10:57','-15,6', 'RA03');
execute insertartiradas('RA0342138,9666087963', '19', '14/05/2015 23:11:55','15,4', 'RA03');
execute insertartiradas('RA0342138,9671643519', '20', '14/05/2015 23:12:43','-14,8', 'RA03');
execute insertartiradas('RA0342138,9676388889', '7', '14/05/2015 23:13:24','18,1', 'RA03');
execute insertartiradas('RA0342138,9681944444', '7', '14/05/2015 23:14:12','-16,6', 'RA03');
execute insertartiradas('RA0342138,9687962963', '13', '14/05/2015 23:15:04','16,5', 'RA03');
execute insertartiradas('RA0342138,9694328704', '25', '14/05/2015 23:15:59','-17,4', 'RA03');
execute insertartiradas('RA0342138,9699884259', '26', '14/05/2015 23:16:47','16,6', 'RA03');
execute insertartiradas('RA0342138,9709259259', '14', '14/05/2015 23:18:08','-16,3', 'RA03');
execute insertartiradas('RA0342138,9720601852', '19', '14/05/2015 23:19:46','16,7', 'RA03');
execute insertartiradas('RA0342138,9730208333', '17', '14/05/2015 23:21:09','-16,1', 'RA03');
execute insertartiradas('RA0342138,9739930556', '10', '14/05/2015 23:22:33','15,6', 'RA03');
execute insertartiradas('RA0342138,9747106481', '22', '14/05/2015 23:23:35','-16,5', 'RA03');
execute insertartiradas('RA0342138,9752662037', '26', '14/05/2015 23:24:23','16,5', 'RA03');
execute insertartiradas('RA0342138,9763194444', '30', '14/05/2015 23:25:54','-15,9', 'RA03');
execute insertartiradas('RA0342138,9770601852', '10', '14/05/2015 23:26:58','17,4', 'RA03');
execute insertartiradas('RA0342138,9778472222', '15', '14/05/2015 23:28:06','-14,3', 'RA03');
execute insertartiradas('RA0342138,9787037037', '4', '14/05/2015 23:29:20','17,1', 'RA03');
execute insertartiradas('RA0342138,9795023148', '7', '14/05/2015 23:30:29','-16,9', 'RA03');
execute insertartiradas('RA0342138,9803240741', '11', '14/05/2015 23:31:40','17,1', 'RA03');
execute insertartiradas('RA0342138,9809953704', '3', '14/05/2015 23:32:38','-17,4', 'RA03');
execute insertartiradas('RA0342138,9816203704', '35', '14/05/2015 23:33:32','17', 'RA03');
execute insertartiradas('RA0342138,9825115741', '30', '14/05/2015 23:34:49','-18,2', 'RA03');
execute insertartiradas('RA0342138,9832407407', '5', '14/05/2015 23:35:52','16', 'RA03');
execute insertartiradas('RA0342138,9838425926', '17', '14/05/2015 23:36:44','-16,2', 'RA03');
execute insertartiradas('RA0342138,9844212963', '20', '14/05/2015 23:37:34','16,7', 'RA03');
execute insertartiradas('RA0342138,9852430556', '3', '14/05/2015 23:38:45','-16,6', 'RA03');
execute insertartiradas('RA0342138,9857175926', '17', '14/05/2015 23:39:26','15,1', 'RA03');
execute insertartiradas('RA0342138,9864930556', '21', '14/05/2015 23:40:33','-15,8', 'RA03');
execute insertartiradas('RA0342138,9871412037', '24', '14/05/2015 23:41:29','16,2', 'RA03');
execute insertartiradas('RA0342138,9877546296', '14', '14/05/2015 23:42:22','-16,3', 'RA03');
execute insertartiradas('RA0342138,9886111111', '25', '14/05/2015 23:43:36','17,4', 'RA03');
execute insertartiradas('RA0342138,9895023148', '35', '14/05/2015 23:44:53','-16,7', 'RA03');
execute insertartiradas('RA0342138,9906597222', '5', '14/05/2015 23:46:33','17,5', 'RA03');
execute insertartiradas('RA0342138,9916087963', '4', '14/05/2015 23:47:55','-17,5', 'RA03');
execute insertartiradas('RA0342138,9925462963', '33', '14/05/2015 23:49:16','15,2', 'RA03');
execute insertartiradas('RA0342138,9932175925', '6', '14/05/2015 23:50:14','-16', 'RA03');
execute insertartiradas('RA0342138,993912037', '14', '14/05/2015 23:51:14','15', 'RA03');
execute insertartiradas('RA0342138,9946990741', '1', '14/05/2015 23:52:22','-18,3', 'RA03');
execute insertartiradas('RA0342138,9955787037', '8', '14/05/2015 23:53:38','16,8', 'RA03');
execute insertartiradas('RA0342138,99625', '8', '14/05/2015 23:54:36','-18,6', 'RA03');
execute insertartiradas('RA0342138,9969097222', '1', '14/05/2015 23:55:33','15,6', 'RA03');
execute insertartiradas('RA0342138,9977199074', '7', '14/05/2015 23:56:43','-18', 'RA03');
execute insertartiradas('RA0342138,9985069444', '11', '14/05/2015 23:57:51','15,8', 'RA03');
execute insertartiradas('RA0342138,9994907407', '22', '14/05/2015 23:59:16','-18,3', 'RA03');
execute insertartiradas('RA0342139,0004513889', '2', '15/05/2015 00:00:39','16,5', 'RA03');
execute insertartiradas('RA0342139,0017476852', '6', '15/05/2015 00:02:31','-17,1', 'RA03');
execute insertartiradas('RA0342139,00375', '20', '15/05/2015 00:05:24','16,4', 'RA03');
execute insertartiradas('RA0342139,0050347222', '0', '15/05/2015 00:07:15','-14,9', 'RA03');
execute insertartiradas('RA0342139,0059027778', '30', '15/05/2015 00:08:30','14,1', 'RA03');
execute insertartiradas('RA0342139,0065625', '0', '15/05/2015 00:09:27','-15,4', 'RA03');
execute insertartiradas('RA0342139,0075694444', '25', '15/05/2015 00:10:54','13,9', 'RA03');
execute insertartiradas('RA0342139,0083101852', '35', '15/05/2015 00:11:58','-13,1', 'RA03');
execute insertartiradas('RA0342139,0090046296', '8', '15/05/2015 00:12:58','17,6', 'RA03');
execute insertartiradas('RA0342139,0096643519', '1', '15/05/2015 00:13:55','-15,7', 'RA03');
execute insertartiradas('RA0342139,0102083333', '30', '15/05/2015 00:14:42','12,2', 'RA03');
execute insertartiradas('RA0342139,0110532407', '17', '15/05/2015 00:15:55','-17,4', 'RA03');
execute insertartiradas('RA0342139,0118634259', '6', '15/05/2015 00:17:05','14,2', 'RA03');
execute insertartiradas('RA0342139,0123726852', '29', '15/05/2015 00:17:49','-16', 'RA03');
execute insertartiradas('RA0342139,0133912037', '25', '15/05/2015 00:19:17','10,5', 'RA03');
execute insertartiradas('RA0342139,0140972222', '29', '15/05/2015 00:20:18','-12,9', 'RA03');
execute insertartiradas('RA0342139,0151388889', '19', '15/05/2015 00:21:48','16,9', 'RA03');
execute insertartiradas('RA0342139,0159027778', '17', '15/05/2015 00:22:54','-12,9', 'RA03');
execute insertartiradas('RA0342139,0168055556', '1', '15/05/2015 00:24:12','16,6', 'RA03');
execute insertartiradas('RA0342139,0176736111', '14', '15/05/2015 00:25:27','-13,9', 'RA03');
execute insertartiradas('RA0342139,0186458333', '7', '15/05/2015 00:26:51','15,2', 'RA03');
execute insertartiradas('RA0342139,0194444444', '0', '15/05/2015 00:28:00','-17,6', 'RA03');
execute insertartiradas('RA0342139,0206018519', '2', '15/05/2015 00:29:40','16,9', 'RA03');
execute insertartiradas('RA0342139,021400463', '5', '15/05/2015 00:30:49','-14,9', 'RA03');
execute insertartiradas('RA0342139,0221296296', '10', '15/05/2015 00:31:52','12,5', 'RA03');
execute insertartiradas('RA0342139,0232291667', '5', '15/05/2015 00:33:27','-19,7', 'RA03');
execute insertartiradas('RA0342139,0244907407', '8', '15/05/2015 00:35:16','13,3', 'RA03');
execute insertartiradas('RA0342139,0267592593', '18', '15/05/2015 00:38:32','-14,3', 'RA03');
execute insertartiradas('RA0342139,0279166667', '13', '15/05/2015 00:40:12','13,6', 'RA03');
execute insertartiradas('RA0342139,0289351852', '17', '15/05/2015 00:41:40','-11,2', 'RA03');
execute insertartiradas('RA0342139,0301157407', '12', '15/05/2015 00:43:22','14', 'RA03');
execute insertartiradas('RA0342139,0312731481', '13', '15/05/2015 00:45:02','-20,2', 'RA03');
execute insertartiradas('RA0342139,0324189815', '28', '15/05/2015 00:46:41','19,6', 'RA03');
execute insertartiradas('RA0342139,0332638889', '33', '15/05/2015 00:47:54','-17,6', 'RA03');
execute insertartiradas('RA0342139,035150463', '13', '15/05/2015 00:50:37','17,4', 'RA03');
execute insertartiradas('RA0342139,036412037', '26', '15/05/2015 00:52:26','-13,5', 'RA03');
execute insertartiradas('RA0342139,0374884259', '24', '15/05/2015 00:53:59','12,3', 'RA03');
execute insertartiradas('RA0342139,0388888889', '13', '15/05/2015 00:56:00','-18,3', 'RA03');
execute insertartiradas('RA0342139,0400925925', '30', '15/05/2015 00:57:44','19,7', 'RA03');
execute insertartiradas('RA0342139,0411458333', '33', '15/05/2015 00:59:15','-14', 'RA03');
execute insertartiradas('RA0342139,0429398148', '15', '15/05/2015 01:01:50','19,1', 'RA03');
execute insertartiradas('RA0342139,0440740741', '31', '15/05/2015 01:03:28','-17,2', 'RA03');
execute insertartiradas('RA0342139,0449305556', '0', '15/05/2015 01:04:42','13,6', 'RA03');
execute insertartiradas('RA0342139,0459375', '23', '15/05/2015 01:06:09','-16,9', 'RA03');
execute insertartiradas('RA0342139,0468402778', '28', '15/05/2015 01:07:27','14,3', 'RA03');
execute insertartiradas('RA0342139,0475231481', '27', '15/05/2015 01:08:26','-17,6', 'RA03');
execute insertartiradas('RA0342139,0483449074', '1', '15/05/2015 01:09:37','13,2', 'RA03');
execute insertartiradas('RA0342139,048912037', '0', '15/05/2015 01:10:26','-17,8', 'RA03');
execute insertartiradas('RA0342139,0495601852', '5', '15/05/2015 01:11:22','13,4', 'RA03');
execute insertartiradas('RA0342139,0500694444', '4', '15/05/2015 01:12:06','-18,3', 'RA03');
execute insertartiradas('RA0342139,0506365741', '24', '15/05/2015 01:12:55','15,9', 'RA03');
execute insertartiradas('RA0342139,051400463', '32', '15/05/2015 01:14:01','-16', 'RA03');
execute insertartiradas('RA0342139,0520949074', '35', '15/05/2015 01:15:01','13,6', 'RA03');
execute insertartiradas('RA0342139,0527314815', '4', '15/05/2015 01:15:56','-17,7', 'RA03');
execute insertartiradas('RA0342139,0532175926', '29', '15/05/2015 01:16:38','15,5', 'RA03');
execute insertartiradas('RA0342139,0539467593', '31', '15/05/2015 01:17:41','-14,9', 'RA03');
execute insertartiradas('RA0342139,0546759259', '1', '15/05/2015 01:18:44','18,6', 'RA03');
execute insertartiradas('RA0342139,0556134259', '19', '15/05/2015 01:20:05','-15,8', 'RA03');
execute insertartiradas('RA0342139,0561226852', '20', '15/05/2015 01:20:49','16,3', 'RA03');
execute insertartiradas('RA0342139,0567361111', '30', '15/05/2015 01:21:42','-15,3', 'RA03');
execute insertartiradas('RA0342139,0572337963', '21', '15/05/2015 01:22:25','14,3', 'RA03');
execute insertartiradas('RA0342139,0578356481', '10', '15/05/2015 01:23:17','-15,4', 'RA03');
execute insertartiradas('RA0342139,0583796296', '21', '15/05/2015 01:24:04','14,9', 'RA03');
execute insertartiradas('RA0342139,0591666667', '7', '15/05/2015 01:25:12','-17,9', 'RA03');
execute insertartiradas('RA0342139,0597222222', '32', '15/05/2015 01:26:00','15,3', 'RA03');
execute insertartiradas('RA0342139,0603240741', '27', '15/05/2015 01:26:52','-18,7', 'RA03');
execute insertartiradas('RA0342139,0608333333', '34', '15/05/2015 01:27:36','13,5', 'RA03');
execute insertartiradas('RA0342139,0615856481', '9', '15/05/2015 01:28:41','-16,4', 'RA03');
execute insertartiradas('RA0342139,0620833333', '23', '15/05/2015 01:29:24','15,9', 'RA03');
execute insertartiradas('RA0342139,0626967593', '12', '15/05/2015 01:30:17','-19,4', 'RA03');
execute insertartiradas('RA0342139,0633101852', '11', '15/05/2015 01:31:10','16,3', 'RA03');
execute insertartiradas('RA0342139,0639351852', '4', '15/05/2015 01:32:04','-17,8', 'RA03');
execute insertartiradas('RA0342139,0648263889', '23', '15/05/2015 01:33:21','16,4', 'RA03');
execute insertartiradas('RA0342139,0653240741', '21', '15/05/2015 01:34:04','-18,2', 'RA03');
execute insertartiradas('RA0342139,0658101852', '11', '15/05/2015 01:34:46','16,3', 'RA03');
execute insertartiradas('RA0342139,0663194444', '32', '15/05/2015 01:35:30','-18,1', 'RA03');
execute insertartiradas('RA0342139,0670486111', '2', '15/05/2015 01:36:33','18,7', 'RA03');
execute insertartiradas('RA0342139,0679166667', '16', '15/05/2015 01:37:48','-16,4', 'RA03');
execute insertartiradas('RA0342139,0684490741', '9', '15/05/2015 01:38:34','16,5', 'RA03');
execute insertartiradas('RA0342139,068912037', '31', '15/05/2015 01:39:14','-15,1', 'RA03');
execute insertartiradas('RA0342139,0695833333', '19', '15/05/2015 01:40:12','16,4', 'RA03');
execute insertartiradas('RA0342139,0701851852', '12', '15/05/2015 01:41:04','-15,8', 'RA03');
execute insertartiradas('RA0342139,070775463', '36', '15/05/2015 01:41:55','14,8', 'RA03');
execute insertartiradas('RA0342139,0712152778', '31', '15/05/2015 01:42:33','-15,1', 'RA03');
execute insertartiradas('RA0342139,0717708333', '13', '15/05/2015 01:43:21','14,6', 'RA03');
execute insertartiradas('RA0342139,0722337963', '30', '15/05/2015 01:44:01','-15,2', 'RA03');
execute insertartiradas('RA0342139,0727893518', '12', '15/05/2015 01:44:49','16,2', 'RA03');
execute insertartiradas('RA0342139,0735532407', '17', '15/05/2015 01:45:55','-16,5', 'RA03');
execute insertartiradas('RA0342139,0743634259', '20', '15/05/2015 01:47:05','16,8', 'RA03');
execute insertartiradas('RA0342139,0753472222', '35', '15/05/2015 01:48:30','-17,3', 'RA03');
execute insertartiradas('RA0342139,0761805556', '4', '15/05/2015 01:49:42','17,3', 'RA03');
execute insertartiradas('RA0342139,0767592593', '11', '15/05/2015 01:50:32','-15,9', 'RA03');
execute insertartiradas('RA0342139,0774768519', '5', '15/05/2015 01:51:34','16,1', 'RA03');
execute insertartiradas('RA0342139,0782175926', '24', '15/05/2015 01:52:38','-16', 'RA03');
execute insertartiradas('RA0342139,0790509259', '36', '15/05/2015 01:53:50','15,1', 'RA03');
execute insertartiradas('RA0342139,0797222222', '25', '15/05/2015 01:54:48','-13,7', 'RA03');
execute insertartiradas('RA0342139,0805555556', '31', '15/05/2015 01:56:00','15,6', 'RA03');
execute insertartiradas('RA0342139,0812962963', '29', '15/05/2015 01:57:04','-15,9', 'RA03');
execute insertartiradas('RA0342139,0824305556', '25', '15/05/2015 01:58:42','16,6', 'RA03');
execute insertartiradas('RA0342139,0833217593', '7', '15/05/2015 01:59:59','-15,6', 'RA03');
execute insertartiradas('RA0342139,0842708333', '4', '15/05/2015 02:01:21','15,7', 'RA03');
execute insertartiradas('RA0342139,0851967593', '32', '15/05/2015 02:02:41','-18', 'RA03');
execute insertartiradas('RA0342139,0861226852', '27', '15/05/2015 02:04:01','16,8', 'RA03');
execute insertartiradas('RA0342139,0867476852', '17', '15/05/2015 02:04:55','-16,2', 'RA03');
execute insertartiradas('RA0342139,0875', '23', '15/05/2015 02:06:00','16,9', 'RA03');
execute insertartiradas('RA0342139,0882638889', '16', '15/05/2015 02:07:06','-17,4', 'RA03');
execute insertartiradas('RA0342139,0891319444', '23', '15/05/2015 02:08:21','15,5', 'RA03');
execute insertartiradas('RA0342139,090150463', '6', '15/05/2015 02:09:49','-15,3', 'RA03');
execute insertartiradas('RA0342139,0911805556', '9', '15/05/2015 02:11:18','15,4', 'RA03');
execute insertartiradas('RA0342139,0921296296', '24', '15/05/2015 02:12:40','-16,4', 'RA03');
execute insertartiradas('RA0342139,0932986111', '33', '15/05/2015 02:14:21','17', 'RA03');
execute insertartiradas('RA0342139,0944444444', '29', '15/05/2015 02:16:00','-17,2', 'RA03');
execute insertartiradas('RA0342139,0963541667', '35', '15/05/2015 02:18:45','18,1', 'RA03');
execute insertartiradas('RA0342139,0977546296', '6', '15/05/2015 02:20:46','-16,2', 'RA03');
execute insertartiradas('RA0342139,0985069444', '10', '15/05/2015 02:21:51','18,1', 'RA03');
execute insertartiradas('RA0342139,0989930556', '25', '15/05/2015 02:22:33','-17,2', 'RA03');
execute insertartiradas('RA0342139,0996527778', '34', '15/05/2015 02:23:30','15,9', 'RA03');
execute insertartiradas('RA0342139,1006365741', '19', '15/05/2015 02:24:55','-17,5', 'RA03');
execute insertartiradas('RA0342139,1013773148', '2', '15/05/2015 02:25:59','16,3', 'RA03');
execute insertartiradas('RA0342139,1019097222', '34', '15/05/2015 02:26:45','-18,1', 'RA03');
execute insertartiradas('RA0342139,1025694444', '35', '15/05/2015 02:27:42','17,3', 'RA03');
execute insertartiradas('RA0342139,1034143519', '27', '15/05/2015 02:28:55','-18', 'RA03');
execute insertartiradas('RA0342139,1043518518', '29', '15/05/2015 02:30:16','16,2', 'RA03');
execute insertartiradas('RA0342139,1053703704', '5', '15/05/2015 02:31:44','-14,6', 'RA03');
execute insertartiradas('RA0342139,1060185185', '9', '15/05/2015 02:32:40','15,7', 'RA03');
execute insertartiradas('RA0342139,1068171296', '26', '15/05/2015 02:33:49','-11', 'RA03');
execute insertartiradas('RA0342139,1076157407', '10', '15/05/2015 02:34:58','18,4', 'RA03');
execute insertartiradas('RA0342139,1084375', '15', '15/05/2015 02:36:09','-18,2', 'RA03');
execute insertartiradas('RA0342139,1089930556', '22', '15/05/2015 02:36:57','16,7', 'RA03');
execute insertartiradas('RA0342139,1096759259', '31', '15/05/2015 02:37:56','-18,1', 'RA03');
execute insertartiradas('RA0342139,1103356481', '8', '15/05/2015 02:38:53','11,4', 'RA03');
execute insertartiradas('RA0342139,1108449074', '23', '15/05/2015 02:39:37','-16,3', 'RA03');
execute insertartiradas('RA0342139,1115277778', '7', '15/05/2015 02:40:36','18,5', 'RA03');
execute insertartiradas('RA0342139,1121180556', '25', '15/05/2015 02:41:27','-18,2', 'RA03');
execute insertartiradas('RA0342139,113287037', '8', '15/05/2015 02:43:08','20,9', 'RA03');
execute insertartiradas('RA0342139,1141435185', '24', '15/05/2015 02:44:22','-18,6', 'RA03');
execute insertartiradas('RA0342139,1149768519', '3', '15/05/2015 02:45:34','17,9', 'RA03');
execute insertartiradas('RA0342139,1155324074', '11', '15/05/2015 02:46:22','-16,7', 'RA03');
execute insertartiradas('RA0342139,1164467593', '7', '15/05/2015 02:47:41','18,4', 'RA03');
execute insertartiradas('RA0342139,1172222222', '31', '15/05/2015 02:48:48','-17,4', 'RA03');
execute insertartiradas('RA0342139,1176967593', '3', '15/05/2015 02:49:29','15,4', 'RA03');
execute insertartiradas('RA0342139,1202199074', '2', '15/05/2015 02:53:07','-17,3', 'RA03');
execute insertartiradas('RA0342139,1205787037', '23', '15/05/2015 02:53:38','17,7', 'RA03');
execute insertartiradas('RA0342139,1211226852', '15', '15/05/2015 02:54:25','-19,3', 'RA03');
execute insertartiradas('RA0342139,1214583333', '23', '15/05/2015 02:54:54','17,1', 'RA03');
execute insertartiradas('RA0342139,1219097222', '35', '15/05/2015 02:55:33','-17,7', 'RA03');
execute insertartiradas('RA0342139,1225231482', '0', '15/05/2015 02:56:26','18,3', 'RA03');
execute insertartiradas('RA0342139,1231018519', '20', '15/05/2015 02:57:16','-18,1', 'RA03');
execute insertartiradas('RA0342139,1236111111', '17', '15/05/2015 02:58:00','16,2', 'RA03');
execute insertartiradas('RA0342139,1241203704', '1', '15/05/2015 02:58:44','-11,5', 'RA03');
execute INSERTARWINS('151264', 'RA03', '01/01/2015', '-300');
execute INSERTARWINS('19112', 'RA03', '01/01/2015', '-1100');
execute INSERTARWINS('75024', 'RA03', '01/01/2015', '800');
execute INSERTARWINS('81712', 'RA03', '01/01/2015', '-500');
execute INSERTARWINS('7270', 'RA03', '01/01/2015', '-100');
execute INSERTARWINS('3036', 'RA02', '01/01/2015', '-2000');
execute INSERTARWINS('53724', 'RA03', '01/01/2015', '-300');
execute INSERTARWINS('143708', 'RA02', '01/01/2015', '-1100');
execute INSERTARWINS('151284', 'RA02', '01/01/2015', '2000');
execute INSERTARWINS('151289', 'RA02', '01/01/2015', '-2000');
execute INSERTARWINS('151290', 'RA02', '01/01/2015', '-900');
execute INSERTARWINS('150363', 'RA03', '01/01/2015', '-1600');
execute INSERTARWINS('8018', 'RA03', '02/01/2015', '-1500');
execute INSERTARWINS('925', 'RA03', '02/01/2015', '300');
execute INSERTARWINS('21469', 'RA02', '02/01/2015', '500');
execute INSERTARWINS('7270', 'RA02', '02/01/2015', '-2300');
execute INSERTARWINS('147146', 'RA02', '02/01/2015', '-3000');
execute INSERTARWINS('28908', 'RA02', '02/01/2015', '-300');
execute INSERTARWINS('107123', 'RA03', '02/01/2015', '-1300');
execute INSERTARWINS('74665', 'RA03', '02/01/2015', '-2000');
execute INSERTARWINS('53724', 'RA03', '02/01/2015', '2200');
execute INSERTARWINS('23995', 'RA02', '02/01/2015', '500');
execute INSERTARWINS('86172', 'RA03', '03/01/2015', '800');
execute INSERTARWINS('143708', 'RA03', '03/01/2015', '8700');
execute INSERTARWINS('7270', 'RA03', '03/01/2015', '1500');
execute INSERTARWINS('846', 'RA03', '03/01/2015', '-4300');
execute INSERTARWINS('75024', 'RA02', '03/01/2015', '-1400');
execute INSERTARWINS('6343', 'RA02', '03/01/2015', '1000');
execute INSERTARWINS('53724', 'RA02', '03/01/2015', '-500');
execute INSERTARWINS('150603', 'RA02', '03/01/2015', '-1900');
execute INSERTARWINS('963', 'RA02', '04/01/2015', '800');
execute INSERTARWINS('3292', 'RA02', '04/01/2015', '-400');
execute INSERTARWINS('4542', 'RA02', '04/01/2015', '-600');
execute INSERTARWINS('7609', 'RA02', '04/01/2015', '300');
execute INSERTARWINS('112577', 'RA02', '04/01/2015', '200');
execute INSERTARWINS('143708', 'RA03', '04/01/2015', '-2000');
execute INSERTARWINS('151387', 'RA03', '04/01/2015', '400');
execute INSERTARWINS('447', 'RA02', '04/01/2015', '1000');
execute INSERTARWINS('19112', 'RA03', '04/01/2015', '-1300');
execute INSERTARWINS('8018', 'RA03', '04/01/2015', '-600');
execute INSERTARWINS('55914', 'RA02', '04/01/2015', '7500');
execute INSERTARWINS('28908', 'RA03', '04/01/2015', '-1000');
execute INSERTARWINS('103328', 'RA03', '04/01/2015', '-700');
execute INSERTARWINS('132055', 'RA02', '04/01/2015', '-500');
execute INSERTARWINS('53724', 'RA03', '04/01/2015', '-900');
execute INSERTARWINS('121576', 'RA03', '04/01/2015', '1200');
execute INSERTARWINS('40995', 'RA02', '04/01/2015', '500');
execute INSERTARWINS('7270', 'RA02', '04/01/2015', '500');
execute INSERTARWINS('123330', 'RA03', '04/01/2015', '500');
execute INSERTARWINS('28908', 'RA03', '05/01/2015', '-5500');
execute INSERTARWINS('14172', 'RA03', '05/01/2015', '5600');
execute INSERTARWINS('108677', 'RA03', '05/01/2015', '1000');
execute INSERTARWINS('56787', 'RA03', '05/01/2015', '-900');
execute INSERTARWINS('33494', 'RA03', '05/01/2015', '-900');
execute INSERTARWINS('112577', 'RA02', '05/01/2015', '-2100');
execute INSERTARWINS('21553', 'RA03', '05/01/2015', '-900');
execute INSERTARWINS('7270', 'RA02', '05/01/2015', '-1800');
execute INSERTARWINS('123252', 'RA03', '05/01/2015', '400');
execute INSERTARWINS('53724', 'RA03', '05/01/2015', '-400');
execute INSERTARWINS('7270', 'RA03', '06/01/2015', '-500');
execute INSERTARWINS('8018', 'RA03', '06/01/2015', '-500');
execute INSERTARWINS('1319', 'RA03', '06/01/2015', '200');
execute INSERTARWINS('40995', 'RA03', '06/01/2015', '-1400');
execute INSERTARWINS('5355', 'RA03', '06/01/2015', '1000');
execute INSERTARWINS('143708', 'RA03', '06/01/2015', '-1000');
execute INSERTARWINS('53724', 'RA03', '06/01/2015', '-7300');
execute INSERTARWINS('121576', 'RA03', '06/01/2015', '800');
execute INSERTARWINS('88209', 'RA03', '07/01/2015', '-400');
execute INSERTARWINS('120929', 'RA03', '07/01/2015', '-1200');
execute INSERTARWINS('8018', 'RA03', '07/01/2015', '-1800');
execute INSERTARWINS('6794', 'RA03', '07/01/2015', '-3400');
execute INSERTARWINS('143708', 'RA02', '07/01/2015', '3300');
execute INSERTARWINS('1287', 'RA03', '07/01/2015', '1100');
execute INSERTARWINS('925', 'RA03', '07/01/2015', '-900');
execute INSERTARWINS('12252', 'RA03', '07/01/2015', '1000');
execute INSERTARWINS('122372', 'RA02', '07/01/2015', '1700');
execute INSERTARWINS('33494', 'RA03', '08/01/2015', '-3000');
execute INSERTARWINS('5329', 'RA03', '08/01/2015', '500');
execute INSERTARWINS('23124', 'RA02', '08/01/2015', '400');
execute INSERTARWINS('425', 'RA02', '08/01/2015', '1200');
execute INSERTARWINS('183', 'RA02', '08/01/2015', '1900');
execute INSERTARWINS('143708', 'RA02', '08/01/2015', '4300');
execute INSERTARWINS('107633', 'RA03', '08/01/2015', '1500');
execute INSERTARWINS('882', 'RA02', '08/01/2015', '800');
execute INSERTARWINS('120264', 'RA03', '09/01/2015', '-2500');
execute INSERTARWINS('107123', 'RA03', '09/01/2015', '-1200');
execute INSERTARWINS('108677', 'RA02', '09/01/2015', '800');
execute INSERTARWINS('143708', 'RA02', '09/01/2015', '2500');
execute INSERTARWINS('81838', 'RA03', '09/01/2015', '-700');
execute INSERTARWINS('7270', 'RA03', '09/01/2015', '500');
execute INSERTARWINS('122372', 'RA03', '09/01/2015', '-1000');
execute INSERTARWINS('1287', 'RA03', '09/01/2015', '4500');
execute INSERTARWINS('101580', 'RA02', '09/01/2015', '-1000');
execute INSERTARWINS('109612', 'RA02', '09/01/2015', '-1000');
execute INSERTARWINS('704', 'RA03', '10/01/2015', '500');
execute INSERTARWINS('7270', 'RA03', '10/01/2015', '-1700');
execute INSERTARWINS('24649', 'RA03', '10/01/2015', '900');
execute INSERTARWINS('963', 'RA03', '10/01/2015', '-3300');
execute INSERTARWINS('101580', 'RA02', '10/01/2015', '1700');
execute INSERTARWINS('143708', 'RA03', '10/01/2015', '-4800');
execute INSERTARWINS('146438', 'RA03', '10/01/2015', '2500');
execute INSERTARWINS('76865', 'RA02', '10/01/2015', '700');
execute INSERTARWINS('1287', 'RA02', '10/01/2015', '-2400');
execute INSERTARWINS('76237', 'RA02', '10/01/2015', '-3700');
execute INSERTARWINS('6343', 'RA03', '10/01/2015', '-300');
execute INSERTARWINS('53724', 'RA03', '10/01/2015', '-1200');
execute INSERTARWINS('53724', 'RA03', '11/01/2015', '-3500');
execute INSERTARWINS('148346', 'RA03', '11/01/2015', '-1900');
execute INSERTARWINS('81129', 'RA03', '11/01/2015', '2000');
execute INSERTARWINS('55914', 'RA03', '11/01/2015', '1500');
execute INSERTARWINS('21843', 'RA03', '11/01/2015', '600');
execute INSERTARWINS('118634', 'RA02', '11/01/2015', '-1500');
execute INSERTARWINS('8018', 'RA03', '11/01/2015', '-1000');
execute INSERTARWINS('143708', 'RA03', '11/01/2015', '-700');
execute INSERTARWINS('24649', 'RA03', '11/01/2015', '500');
execute INSERTARWINS('13104', 'RA02', '11/01/2015', '-700');
execute INSERTARWINS('112577', 'RA02', '11/01/2015', '1500');
execute INSERTARWINS('75024', 'RA03', '11/01/2015', '800');
execute INSERTARWINS('846', 'RA03', '11/01/2015', '1600');
execute INSERTARWINS('112577', 'RA03', '12/01/2015', '1500');
execute INSERTARWINS('28908', 'RA03', '12/01/2015', '-7600');
execute INSERTARWINS('120264', 'RA03', '12/01/2015', '2500');
execute INSERTARWINS('147146', 'RA03', '12/01/2015', '-2500');
execute INSERTARWINS('31194', 'RA02', '12/01/2015', '-2000');
execute INSERTARWINS('146434', 'RA03', '12/01/2015', '3500');
execute INSERTARWINS('151564', 'RA03', '12/01/2015', '1000');
execute INSERTARWINS('24649', 'RA03', '12/01/2015', '300');
execute INSERTARWINS('143708', 'RA02', '12/01/2015', '-4000');
execute INSERTARWINS('70533', 'RA02', '12/01/2015', '100');
execute INSERTARWINS('151567', 'RA03', '12/01/2015', '-1500');
execute INSERTARWINS('846', 'RA02', '12/01/2015', '-1100');
execute INSERTARWINS('1674', 'RA03', '13/01/2015', '-800');
execute INSERTARWINS('3036', 'RA03', '13/01/2015', '900');
execute INSERTARWINS('59528', 'RA03', '13/01/2015', '1700');
execute INSERTARWINS('2906', 'RA03', '13/01/2015', '400');
execute INSERTARWINS('118634', 'RA02', '13/01/2015', '-1400');
execute INSERTARWINS('21843', 'RA02', '13/01/2015', '-800');
execute INSERTARWINS('143708', 'RA02', '13/01/2015', '900');
execute INSERTARWINS('53724', 'RA02', '13/01/2015', '1400');
execute INSERTARWINS('123330', 'RA02', '13/01/2015', '1600');
execute INSERTARWINS('21469', 'RA03', '14/01/2015', '-800');
execute INSERTARWINS('59528', 'RA03', '14/01/2015', '-900');
execute INSERTARWINS('120264', 'RA02', '14/01/2015', '-1800');
execute INSERTARWINS('925', 'RA02', '14/01/2015', '-2600');
execute INSERTARWINS('143708', 'RA02', '14/01/2015', '1000');
execute INSERTARWINS('122372', 'RA03', '14/01/2015', '-1400');
execute INSERTARWINS('112577', 'RA03', '14/01/2015', '700');
execute INSERTARWINS('53724', 'RA03', '14/01/2015', '-1100');
execute INSERTARWINS('69103', 'RA02', '14/01/2015', '1100');
execute INSERTARWINS('13348', 'RA03', '15/01/2015', '2500');
execute INSERTARWINS('151574', 'RA03', '15/01/2015', '1600');
execute INSERTARWINS('8018', 'RA03', '15/01/2015', '-1900');
execute INSERTARWINS('143708', 'RA02', '15/01/2015', '-7800');
execute INSERTARWINS('882', 'RA02', '15/01/2015', '1100');
execute INSERTARWINS('846', 'RA03', '15/01/2015', '200');
execute INSERTARWINS('1674', 'RA03', '16/01/2015', '-500');
execute INSERTARWINS('33494', 'RA03', '16/01/2015', '-500');
execute INSERTARWINS('5329', 'RA03', '16/01/2015', '-200');
execute INSERTARWINS('19499', 'RA03', '16/01/2015', '-500');
execute INSERTARWINS('150447', 'RA03', '16/01/2015', '1000');
execute INSERTARWINS('70533', 'RA02', '16/01/2015', '1500');
execute INSERTARWINS('882', 'RA02', '16/01/2015', '1000');
execute INSERTARWINS('101580', 'RA02', '16/01/2015', '1000');
execute INSERTARWINS('846', 'RA02', '16/01/2015', '-2200');
execute INSERTARWINS('143708', 'RA03', '17/01/2015', '-3500');
execute INSERTARWINS('136258', 'RA03', '17/01/2015', '-1000');
execute INSERTARWINS('28908', 'RA03', '17/01/2015', '-3300');
execute INSERTARWINS('150638', 'RA03', '17/01/2015', '-1800');
execute INSERTARWINS('150447', 'RA02', '17/01/2015', '-500');
execute INSERTARWINS('76865', 'RA02', '17/01/2015', '200');
execute INSERTARWINS('6343', 'RA02', '17/01/2015', '-200');
execute INSERTARWINS('882', 'RA03', '17/01/2015', '1000');
execute INSERTARWINS('109612', 'RA03', '17/01/2015', '-500');
execute INSERTARWINS('150603', 'RA03', '17/01/2015', '500');
execute INSERTARWINS('572', 'RA03', '18/01/2015', '-1300');
execute INSERTARWINS('8018', 'RA03', '18/01/2015', '11500');
execute INSERTARWINS('143708', 'RA03', '18/01/2015', '3000');
execute INSERTARWINS('150826', 'RA02', '18/01/2015', '1500');
execute INSERTARWINS('84691', 'RA03', '18/01/2015', '-100');
execute INSERTARWINS('76865', 'RA03', '18/01/2015', '2900');
execute INSERTARWINS('151685', 'RA02', '18/01/2015', '6300');
execute INSERTARWINS('146154', 'RA03', '18/01/2015', '-3000');
execute INSERTARWINS('3292', 'RA03', '19/01/2015', '-4000');
execute INSERTARWINS('38', 'RA03', '19/01/2015', '-1500');
execute INSERTARWINS('704', 'RA03', '19/01/2015', '-1400');
execute INSERTARWINS('2906', 'RA02', '19/01/2015', '600');
execute INSERTARWINS('8018', 'RA02', '19/01/2015', '-700');
execute INSERTARWINS('143708', 'RA03', '19/01/2015', '-4000');
execute INSERTARWINS('1319', 'RA02', '19/01/2015', '1400');
execute INSERTARWINS('69103', 'RA03', '19/01/2015', '3500');
execute INSERTARWINS('183', 'RA02', '19/01/2015', '2000');
execute INSERTARWINS('53724', 'RA03', '19/01/2015', '1500');
execute INSERTARWINS('40995', 'RA02', '19/01/2015', '1800');
execute INSERTARWINS('109612', 'RA03', '19/01/2015', '-300');
execute INSERTARWINS('67545', 'RA03', '19/01/2015', '-4100');
execute INSERTARWINS('112577', 'RA03', '19/01/2015', '-200');
execute INSERTARWINS('28908', 'RA03', '20/01/2015', '-200');
execute INSERTARWINS('120264', 'RA03', '20/01/2015', '-1800');
execute INSERTARWINS('23995', 'RA02', '20/01/2015', '300');
execute INSERTARWINS('48473', 'RA02', '20/01/2015', '200');
execute INSERTARWINS('151685', 'RA02', '20/01/2015', '2500');
execute INSERTARWINS('4542', 'RA03', '20/01/2015', '-400');
execute INSERTARWINS('53724', 'RA02', '20/01/2015', '-3400');
execute INSERTARWINS('183', 'RA02', '20/01/2015', '-600');
execute INSERTARWINS('126335', 'RA02', '20/01/2015', '-900');
execute INSERTARWINS('109612', 'RA03', '20/01/2015', '-500');
execute INSERTARWINS('8018', 'RA03', '21/01/2015', '-1100');
execute INSERTARWINS('768', 'RA03', '21/01/2015', '36000');
execute INSERTARWINS('59528', 'RA03', '21/01/2015', '1700');
execute INSERTARWINS('69103', 'RA03', '21/01/2015', '-500');
execute INSERTARWINS('17969', 'RA02', '21/01/2015', '3000');
execute INSERTARWINS('63968', 'RA03', '21/01/2015', '3300');
execute INSERTARWINS('40995', 'RA03', '21/01/2015', '-1500');
execute INSERTARWINS('108677', 'RA03', '22/01/2015', '1000');
execute INSERTARWINS('970', 'RA03', '22/01/2015', '600');
execute INSERTARWINS('357', 'RA02', '22/01/2015', '-300');
execute INSERTARWINS('963', 'RA03', '22/01/2015', '-300');
execute INSERTARWINS('78899', 'RA03', '22/01/2015', '-1500');
execute INSERTARWINS('23995', 'RA02', '22/01/2015', '2000');
execute INSERTARWINS('122372', 'RA03', '22/01/2015', '-500');
execute INSERTARWINS('144139', 'RA02', '22/01/2015', '-400');
execute INSERTARWINS('132609', 'RA02', '22/01/2015', '-1000');
execute INSERTARWINS('144795', 'RA02', '22/01/2015', '-12300');
execute INSERTARWINS('118634', 'RA02', '22/01/2015', '-200');
execute INSERTARWINS('84691', 'RA03', '22/01/2015', '-1800');
execute INSERTARWINS('76865', 'RA03', '22/01/2015', '-5000');
execute INSERTARWINS('101580', 'RA03', '22/01/2015', '-600');
execute INSERTARWINS('882', 'RA03', '22/01/2015', '2000');
execute INSERTARWINS('122685', 'RA02', '22/01/2015', '-2600');
execute INSERTARWINS('144795', 'RA03', '23/01/2015', '-10500');
execute INSERTARWINS('33494', 'RA03', '23/01/2015', '1300');
execute INSERTARWINS('118634', 'RA03', '23/01/2015', '-1100');
execute INSERTARWINS('56787', 'RA03', '23/01/2015', '-300');
execute INSERTARWINS('21843', 'RA03', '23/01/2015', '-1300');
execute INSERTARWINS('112730', 'RA03', '23/01/2015', '-1000');
execute INSERTARWINS('108677', 'RA02', '23/01/2015', '400');
execute INSERTARWINS('2906', 'RA03', '23/01/2015', '500');
execute INSERTARWINS('357', 'RA02', '23/01/2015', '2000');
execute INSERTARWINS('146434', 'RA02', '23/01/2015', '-1000');
execute INSERTARWINS('3036', 'RA03', '23/01/2015', '-500');
execute INSERTARWINS('7270', 'RA02', '23/01/2015', '500');
execute INSERTARWINS('81838', 'RA02', '23/01/2015', '1000');
execute INSERTARWINS('73143', 'RA02', '23/01/2015', '-1700');
execute INSERTARWINS('75024', 'RA02', '23/01/2015', '-1600');
execute INSERTARWINS('105113', 'RA03', '23/01/2015', '-500');
execute INSERTARWINS('81712', 'RA03', '23/01/2015', '-2000');
execute INSERTARWINS('6343', 'RA03', '23/01/2015', '1000');
execute INSERTARWINS('1792', 'RA03', '23/01/2015', '500');
execute INSERTARWINS('143708', 'RA02', '23/01/2015', '-6800');
execute INSERTARWINS('882', 'RA02', '23/01/2015', '-500');
execute INSERTARWINS('846', 'RA02', '23/01/2015', '-900');
execute INSERTARWINS('73143', 'RA03', '24/01/2015', '700');
execute INSERTARWINS('7270', 'RA03', '24/01/2015', '-700');
execute INSERTARWINS('146434', 'RA03', '24/01/2015', '-1000');
execute INSERTARWINS('918', 'RA03', '24/01/2015', '-500');
execute INSERTARWINS('76865', 'RA03', '24/01/2015', '3500');
execute INSERTARWINS('3036', 'RA03', '24/01/2015', '-500');
execute INSERTARWINS('16795', 'RA02', '24/01/2015', '4000');
execute INSERTARWINS('53724', 'RA03', '24/01/2015', '2800');
execute INSERTARWINS('81129', 'RA03', '25/01/2015', '-1100');
execute INSERTARWINS('8018', 'RA03', '25/01/2015', '-1800');
execute INSERTARWINS('143708', 'RA03', '25/01/2015', '-1700');
execute INSERTARWINS('150222', 'RA02', '25/01/2015', '1000');
execute INSERTARWINS('15469', 'RA03', '25/01/2015', '1100');
execute INSERTARWINS('846', 'RA02', '25/01/2015', '-500');
execute INSERTARWINS('33494', 'RA03', '26/01/2015', '-2700');
execute INSERTARWINS('108677', 'RA03', '26/01/2015', '-5000');
execute INSERTARWINS('6794', 'RA03', '26/01/2015', '-9000');
execute INSERTARWINS('142168', 'RA03', '26/01/2015', '3500');
execute INSERTARWINS('144793', 'RA03', '26/01/2015', '-1600');
execute INSERTARWINS('138371', 'RA02', '26/01/2015', '-1000');
execute INSERTARWINS('8327', 'RA02', '26/01/2015', '400');
execute INSERTARWINS('146434', 'RA02', '26/01/2015', '2000');
execute INSERTARWINS('59528', 'RA02', '26/01/2015', '1500');
execute INSERTARWINS('8018', 'RA03', '26/01/2015', '3500');
execute INSERTARWINS('73143', 'RA02', '26/01/2015', '-1600');
execute INSERTARWINS('1792', 'RA02', '26/01/2015', '-500');
execute INSERTARWINS('17271', 'RA02', '26/01/2015', '500');
execute INSERTARWINS('183', 'RA03', '26/01/2015', '-900');
execute INSERTARWINS('53724', 'RA03', '26/01/2015', '-700');
execute INSERTARWINS('1287', 'RA03', '26/01/2015', '-300');
execute INSERTARWINS('8018', 'RA03', '27/01/2015', '-2700');
execute INSERTARWINS('59528', 'RA03', '27/01/2015', '-400');
execute INSERTARWINS('38', 'RA03', '27/01/2015', '1500');
execute INSERTARWINS('3036', 'RA03', '27/01/2015', '300');
execute INSERTARWINS('81124', 'RA02', '27/01/2015', '1200');
execute INSERTARWINS('1287', 'RA02', '27/01/2015', '1100');
execute INSERTARWINS('84691', 'RA02', '27/01/2015', '-1000');
execute INSERTARWINS('76865', 'RA02', '27/01/2015', '1500');
execute INSERTARWINS('70533', 'RA02', '27/01/2015', '-700');
execute INSERTARWINS('846', 'RA03', '27/01/2015', '-700');
execute INSERTARWINS('151821', 'RA03', '27/01/2015', '-1700');
execute INSERTARWINS('106398', 'RA03', '28/01/2015', '-3500');
execute INSERTARWINS('53724', 'RA03', '28/01/2015', '-1900');
execute INSERTARWINS('144795', 'RA03', '28/01/2015', '-4500');
execute INSERTARWINS('925', 'RA02', '28/01/2015', '-700');
execute INSERTARWINS('151812', 'RA02', '28/01/2015', '-2000');
execute INSERTARWINS('73143', 'RA02', '28/01/2015', '-4600');
execute INSERTARWINS('1287', 'RA03', '28/01/2015', '600');
execute INSERTARWINS('144139', 'RA03', '28/01/2015', '-500');
execute INSERTARWINS('150469', 'RA03', '28/01/2015', '1000');
execute INSERTARWINS('846', 'RA02', '28/01/2015', '-1700');
execute INSERTARWINS('132609', 'RA03', '29/01/2015', '-500');
execute INSERTARWINS('17969', 'RA03', '29/01/2015', '3500');
execute INSERTARWINS('24876', 'RA03', '29/01/2015', '-300');
execute INSERTARWINS('183', 'RA02', '29/01/2015', '-1000');
execute INSERTARWINS('151812', 'RA02', '29/01/2015', '700');
execute INSERTARWINS('23995', 'RA02', '29/01/2015', '-2700');
execute INSERTARWINS('75024', 'RA02', '29/01/2015', '700');
execute INSERTARWINS('73143', 'RA02', '29/01/2015', '5100');
execute INSERTARWINS('53724', 'RA02', '29/01/2015', '-4000');
execute INSERTARWINS('70533', 'RA02', '29/01/2015', '-400');
execute INSERTARWINS('136976', 'RA02', '29/01/2015', '2400');
execute INSERTARWINS('148178', 'RA02', '29/01/2015', '1000');
execute INSERTARWINS('33494', 'RA03', '30/01/2015', '-700');
execute INSERTARWINS('120264', 'RA03', '30/01/2015', '-1200');
execute INSERTARWINS('26058', 'RA02', '30/01/2015', '-500');
execute INSERTARWINS('81124', 'RA03', '30/01/2015', '-8200');
execute INSERTARWINS('143708', 'RA02', '30/01/2015', '-1100');
execute INSERTARWINS('8018', 'RA03', '30/01/2015', '1100');
execute INSERTARWINS('66032', 'RA02', '30/01/2015', '20600');
execute INSERTARWINS('151812', 'RA03', '30/01/2015', '5000');
execute INSERTARWINS('53724', 'RA03', '30/01/2015', '-200');
execute INSERTARWINS('70533', 'RA03', '30/01/2015', '800');
execute INSERTARWINS('882', 'RA02', '30/01/2015', '1500');
execute INSERTARWINS('147815', 'RA03', '31/01/2015', '1200');
execute INSERTARWINS('151812', 'RA03', '31/01/2015', '-1100');
execute INSERTARWINS('108677', 'RA03', '31/01/2015', '2000');
execute INSERTARWINS('207', 'RA03', '31/01/2015', '-500');
execute INSERTARWINS('69103', 'RA02', '31/01/2015', '300');
execute INSERTARWINS('963', 'RA02', '31/01/2015', '-100');
execute INSERTARWINS('120264', 'RA02', '31/01/2015', '-2000');
execute INSERTARWINS('7270', 'RA02', '31/01/2015', '700');
execute INSERTARWINS('76237', 'RA03', '31/01/2015', '-3800');
execute INSERTARWINS('1287', 'RA03', '31/01/2015', '500');
execute INSERTARWINS('53724', 'RA02', '31/01/2015', '-1800');
execute INSERTARWINS('84691', 'RA02', '31/01/2015', '-600');
execute INSERTARWINS('76865', 'RA03', '31/01/2015', '1500');
execute INSERTARWINS('882', 'RA03', '31/01/2015', '-500');
execute INSERTARWINS('53724', 'RA03', '01/02/2015', '-7900');
execute INSERTARWINS('3036', 'RA03', '01/02/2015', '700');
execute INSERTARWINS('694', 'RA03', '01/02/2015', '500');
execute INSERTARWINS('8018', 'RA03', '01/02/2015', '-2400');
execute INSERTARWINS('151812', 'RA02', '01/02/2015', '-600');
execute INSERTARWINS('15469', 'RA03', '01/02/2015', '-2300');
execute INSERTARWINS('73143', 'RA03', '01/02/2015', '-2700');
execute INSERTARWINS('75024', 'RA03', '01/02/2015', '-200');
execute INSERTARWINS('81124', 'RA02', '01/02/2015', '100');
execute INSERTARWINS('1287', 'RA03', '01/02/2015', '-500');
execute INSERTARWINS('120929', 'RA03', '02/02/2015', '-600');
execute INSERTARWINS('14172', 'RA03', '02/02/2015', '-600');
execute INSERTARWINS('12180', 'RA03', '02/02/2015', '3000');
execute INSERTARWINS('108677', 'RA03', '02/02/2015', '300');
execute INSERTARWINS('94544', 'RA03', '02/02/2015', '1000');
execute INSERTARWINS('3036', 'RA03', '02/02/2015', '-2300');
execute INSERTARWINS('81124', 'RA02', '02/02/2015', '-3800');
execute INSERTARWINS('694', 'RA03', '02/02/2015', '2000');
execute INSERTARWINS('17271', 'RA03', '02/02/2015', '-300');
execute INSERTARWINS('17969', 'RA03', '02/02/2015', '4000');
execute INSERTARWINS('81124', 'RA03', '03/02/2015', '-2500');
execute INSERTARWINS('694', 'RA03', '03/02/2015', '1000');
execute INSERTARWINS('2906', 'RA03', '03/02/2015', '-400');
execute INSERTARWINS('3036', 'RA03', '03/02/2015', '3500');
execute INSERTARWINS('59528', 'RA03', '03/02/2015', '-500');
execute INSERTARWINS('148178', 'RA02', '03/02/2015', '-2500');
execute INSERTARWINS('15192', 'RA02', '03/02/2015', '1000');
execute INSERTARWINS('38', 'RA03', '04/02/2015', '1000');
execute INSERTARWINS('14172', 'RA03', '04/02/2015', '-5000');
execute INSERTARWINS('694', 'RA03', '04/02/2015', '500');
execute INSERTARWINS('28908', 'RA03', '04/02/2015', '-300');
execute INSERTARWINS('2906', 'RA03', '04/02/2015', '300');
execute INSERTARWINS('120364', 'RA03', '04/02/2015', '-3700');
execute INSERTARWINS('8018', 'RA02', '04/02/2015', '1000');
execute INSERTARWINS('151821', 'RA02', '04/02/2015', '-800');
execute INSERTARWINS('21468', 'RA02', '04/02/2015', '500');
execute INSERTARWINS('69103', 'RA02', '04/02/2015', '-200');
execute INSERTARWINS('24876', 'RA02', '04/02/2015', '2200');
execute INSERTARWINS('150826', 'RA02', '04/02/2015', '500');
execute INSERTARWINS('101580', 'RA03', '04/02/2015', '-2000');
execute INSERTARWINS('846', 'RA03', '04/02/2015', '-600');
execute INSERTARWINS('17969', 'RA03', '05/02/2015', '-3300');
execute INSERTARWINS('28908', 'RA03', '05/02/2015', '-4800');
execute INSERTARWINS('120264', 'RA02', '05/02/2015', '300');
execute INSERTARWINS('23995', 'RA03', '05/02/2015', '2100');
execute INSERTARWINS('24876', 'RA03', '05/02/2015', '-2800');
execute INSERTARWINS('152050', 'RA02', '05/02/2015', '-1200');
execute INSERTARWINS('183', 'RA03', '05/02/2015', '-600');
execute INSERTARWINS('101580', 'RA02', '05/02/2015', '4500');
execute INSERTARWINS('8286', 'RA03', '05/02/2015', '-20000');
execute INSERTARWINS('882', 'RA02', '05/02/2015', '2000');
execute INSERTARWINS('3036', 'RA03', '06/02/2015', '-3200');
execute INSERTARWINS('2906', 'RA03', '06/02/2015', '-1000');
execute INSERTARWINS('23124', 'RA03', '06/02/2015', '-1000');
execute INSERTARWINS('24876', 'RA03', '06/02/2015', '-2200');
execute INSERTARWINS('5678', 'RA03', '06/02/2015', '-3300');
execute INSERTARWINS('108677', 'RA02', '06/02/2015', '-25400');
execute INSERTARWINS('146434', 'RA02', '06/02/2015', '1000');
execute INSERTARWINS('143708', 'RA02', '06/02/2015', '800');
execute INSERTARWINS('107123', 'RA03', '06/02/2015', '500');
execute INSERTARWINS('11976', 'RA02', '06/02/2015', '1500');
execute INSERTARWINS('970', 'RA03', '06/02/2015', '-500');
execute INSERTARWINS('76865', 'RA02', '06/02/2015', '1500');
execute INSERTARWINS('101580', 'RA02', '06/02/2015', '4000');
execute INSERTARWINS('694', 'RA02', '06/02/2015', '-2500');
execute INSERTARWINS('125597', 'RA03', '07/02/2015', '2300');
execute INSERTARWINS('146434', 'RA03', '07/02/2015', '-1000');
execute INSERTARWINS('1183', 'RA03', '07/02/2015', '1000');
execute INSERTARWINS('101580', 'RA02', '07/02/2015', '1000');
execute INSERTARWINS('8018', 'RA03', '07/02/2015', '100');
execute INSERTARWINS('152058', 'RA02', '07/02/2015', '800');
execute INSERTARWINS('76237', 'RA02', '07/02/2015', '-2600');
execute INSERTARWINS('109612', 'RA02', '07/02/2015', '1800');
execute INSERTARWINS('3036', 'RA02', '07/02/2015', '300');
execute INSERTARWINS('846', 'RA03', '07/02/2015', '500');
execute INSERTARWINS('21552', 'RA03', '07/02/2015', '700');
execute INSERTARWINS('120264', 'RA03', '08/02/2015', '-2000');
execute INSERTARWINS('8018', 'RA03', '08/02/2015', '-700');
execute INSERTARWINS('124653', 'RA02', '08/02/2015', '1000');
execute INSERTARWINS('5355', 'RA02', '08/02/2015', '500');
execute INSERTARWINS('143708', 'RA02', '08/02/2015', '4000');
execute INSERTARWINS('152174', 'RA03', '08/02/2015', '-1500');
execute INSERTARWINS('846', 'RA02', '08/02/2015', '-1500');
execute INSERTARWINS('4542', 'RA03', '09/02/2015', '-300');
execute INSERTARWINS('1130', 'RA03', '09/02/2015', '600');
execute INSERTARWINS('108677', 'RA03', '09/02/2015', '300');
execute INSERTARWINS('38', 'RA03', '09/02/2015', '600');
execute INSERTARWINS('8018', 'RA02', '09/02/2015', '-500');
execute INSERTARWINS('143708', 'RA02', '09/02/2015', '600');
execute INSERTARWINS('20006', 'RA03', '09/02/2015', '-500');
execute INSERTARWINS('1319', 'RA02', '09/02/2015', '1500');
execute INSERTARWINS('17969', 'RA02', '09/02/2015', '1000');
execute INSERTARWINS('53724', 'RA02', '09/02/2015', '-500');
execute INSERTARWINS('75024', 'RA02', '09/02/2015', '-2500');
execute INSERTARWINS('183', 'RA03', '09/02/2015', '-2300');
execute INSERTARWINS('15192', 'RA03', '10/02/2015', '1000');
execute INSERTARWINS('3036', 'RA03', '10/02/2015', '1300');
execute INSERTARWINS('3372', 'RA03', '10/02/2015', '-1400');
execute INSERTARWINS('1130', 'RA03', '10/02/2015', '200');
execute INSERTARWINS('59528', 'RA03', '10/02/2015', '1500');
execute INSERTARWINS('2906', 'RA03', '10/02/2015', '300');
execute INSERTARWINS('86172', 'RA02', '10/02/2015', '-1700');
execute INSERTARWINS('143708', 'RA02', '10/02/2015', '3500');
execute INSERTARWINS('3292', 'RA02', '10/02/2015', '1400');
execute INSERTARWINS('1319', 'RA03', '10/02/2015', '100');
execute INSERTARWINS('53724', 'RA02', '10/02/2015', '-2000');
execute INSERTARWINS('846', 'RA02', '10/02/2015', '1000');
execute INSERTARWINS('8018', 'RA03', '11/02/2015', '8000');
execute INSERTARWINS('3292', 'RA03', '11/02/2015', '1500');
execute INSERTARWINS('9997', 'RA03', '11/02/2015', '-3000');
execute INSERTARWINS('1130', 'RA03', '11/02/2015', '-500');
execute INSERTARWINS('59528', 'RA02', '11/02/2015', '-600');
execute INSERTARWINS('2906', 'RA03', '11/02/2015', '-500');
execute INSERTARWINS('152208', 'RA03', '11/02/2015', '-1500');
execute INSERTARWINS('136590', 'RA02', '11/02/2015', '700');
execute INSERTARWINS('143708', 'RA03', '11/02/2015', '2000');
execute INSERTARWINS('73143', 'RA03', '11/02/2015', '-1600');
execute INSERTARWINS('151812', 'RA03', '11/02/2015', '-300');
execute INSERTARWINS('17969', 'RA02', '11/02/2015', '1200');
execute INSERTARWINS('109612', 'RA03', '11/02/2015', '-500');
execute INSERTARWINS('101580', 'RA03', '11/02/2015', '700');
execute INSERTARWINS('1287', 'RA03', '11/02/2015', '-500');
execute INSERTARWINS('846', 'RA02', '11/02/2015', '-900');
execute INSERTARWINS('17969', 'RA03', '12/02/2015', '-5800');
execute INSERTARWINS('66032', 'RA03', '12/02/2015', '-4000');
execute INSERTARWINS('8018', 'RA03', '12/02/2015', '-600');
execute INSERTARWINS('97357', 'RA03', '12/02/2015', '1500');
execute INSERTARWINS('55914', 'RA03', '12/02/2015', '2500');
execute INSERTARWINS('3292', 'RA02', '12/02/2015', '1100');
execute INSERTARWINS('76865', 'RA03', '12/02/2015', '1500');
execute INSERTARWINS('143708', 'RA03', '12/02/2015', '-11300');
execute INSERTARWINS('86172', 'RA03', '12/02/2015', '-500');
execute INSERTARWINS('846', 'RA02', '12/02/2015', '-1300');
execute INSERTARWINS('101580', 'RA02', '12/02/2015', '600');
execute INSERTARWINS('65789', 'RA02', '12/02/2015', '-200');
execute INSERTARWINS('23995', 'RA03', '12/02/2015', '-200');
execute INSERTARWINS('19423', 'RA02', '12/02/2015', '900');
execute INSERTARWINS('882', 'RA02', '12/02/2015', '-600');
execute INSERTARWINS('2906', 'RA03', '13/02/2015', '800');
execute INSERTARWINS('137888', 'RA03', '13/02/2015', '1000');
execute INSERTARWINS('6595', 'RA03', '13/02/2015', '2000');
execute INSERTARWINS('143708', 'RA03', '13/02/2015', '-3500');
execute INSERTARWINS('116226', 'RA03', '13/02/2015', '2500');
execute INSERTARWINS('107123', 'RA03', '13/02/2015', '400');
execute INSERTARWINS('963', 'RA03', '13/02/2015', '300');
execute INSERTARWINS('3036', 'RA02', '13/02/2015', '1800');
execute INSERTARWINS('125597', 'RA03', '13/02/2015', '2400');
execute INSERTARWINS('146434', 'RA02', '13/02/2015', '500');
execute INSERTARWINS('73143', 'RA02', '13/02/2015', '2000');
execute INSERTARWINS('7270', 'RA02', '13/02/2015', '500');
execute INSERTARWINS('6343', 'RA03', '13/02/2015', '2900');
execute INSERTARWINS('101580', 'RA03', '13/02/2015', '500');
execute INSERTARWINS('75326', 'RA02', '13/02/2015', '-400');
execute INSERTARWINS('7270', 'RA03', '14/02/2015', '-600');
execute INSERTARWINS('69103', 'RA03', '14/02/2015', '2100');
execute INSERTARWINS('1183', 'RA03', '14/02/2015', '500');
execute INSERTARWINS('150826', 'RA02', '14/02/2015', '-500');
execute INSERTARWINS('109612', 'RA03', '14/02/2015', '1400');
execute INSERTARWINS('846', 'RA03', '14/02/2015', '-3000');
execute INSERTARWINS('101580', 'RA03', '14/02/2015', '-500');
execute INSERTARWINS('19423', 'RA03', '14/02/2015', '2700');
execute INSERTARWINS('152378', 'RA03', '14/02/2015', '-2100');
execute INSERTARWINS('73143', 'RA03', '15/02/2015', '-1800');
execute INSERTARWINS('125597', 'RA03', '15/02/2015', '-500');
execute INSERTARWINS('21843', 'RA03', '15/02/2015', '-1300');
execute INSERTARWINS('8018', 'RA02', '15/02/2015', '200');
execute INSERTARWINS('19423', 'RA02', '15/02/2015', '-6800');
execute INSERTARWINS('107123', 'RA03', '15/02/2015', '-1100');
execute INSERTARWINS('694', 'RA03', '16/02/2015', '-2100');
execute INSERTARWINS('8018', 'RA03', '16/02/2015', '-600');
execute INSERTARWINS('116226', 'RA03', '16/02/2015', '-4500');
execute INSERTARWINS('120264', 'RA02', '16/02/2015', '-3300');
execute INSERTARWINS('3036', 'RA02', '16/02/2015', '-2200');
execute INSERTARWINS('59406', 'RA02', '16/02/2015', '17000');
execute INSERTARWINS('1163', 'RA02', '16/02/2015', '1200');
execute INSERTARWINS('53724', 'RA02', '16/02/2015', '-300');
execute INSERTARWINS('116226', 'RA03', '17/02/2015', '-1700');
execute INSERTARWINS('60337', 'RA03', '17/02/2015', '2700');
execute INSERTARWINS('963', 'RA03', '17/02/2015', '600');
execute INSERTARWINS('59406', 'RA03', '17/02/2015', '-9800');
execute INSERTARWINS('447', 'RA02', '17/02/2015', '100');
execute INSERTARWINS('152377', 'RA02', '17/02/2015', '2800');
execute INSERTARWINS('55914', 'RA03', '18/02/2015', '3500');
execute INSERTARWINS('120264', 'RA03', '18/02/2015', '-1400');
execute INSERTARWINS('59528', 'RA03', '18/02/2015', '-700');
execute INSERTARWINS('59406', 'RA03', '18/02/2015', '-6200');
execute INSERTARWINS('116226', 'RA02', '18/02/2015', '3500');
execute INSERTARWINS('15192', 'RA02', '18/02/2015', '-700');
execute INSERTARWINS('52367', 'RA02', '18/02/2015', '-2700');
execute INSERTARWINS('120264', 'RA03', '19/02/2015', '-200');
execute INSERTARWINS('76865', 'RA03', '19/02/2015', '1500');
execute INSERTARWINS('59528', 'RA03', '19/02/2015', '300');
execute INSERTARWINS('108677', 'RA03', '19/02/2015', '1000');
execute INSERTARWINS('6595', 'RA02', '19/02/2015', '-400');
execute INSERTARWINS('143708', 'RA03', '19/02/2015', '-1800');
execute INSERTARWINS('122372', 'RA03', '19/02/2015', '1100');
execute INSERTARWINS('101580', 'RA03', '19/02/2015', '3000');
execute INSERTARWINS('152378', 'RA03', '20/02/2015', '1000');
execute INSERTARWINS('120264', 'RA03', '20/02/2015', '1500');
execute INSERTARWINS('2906', 'RA03', '20/02/2015', '-600');
execute INSERTARWINS('963', 'RA02', '20/02/2015', '800');
execute INSERTARWINS('116226', 'RA03', '20/02/2015', '1000');
execute INSERTARWINS('132609', 'RA03', '20/02/2015', '-1500');
execute INSERTARWINS('152377', 'RA03', '20/02/2015', '2200');
execute INSERTARWINS('116226', 'RA03', '21/02/2015', '-4700');
execute INSERTARWINS('13348', 'RA03', '21/02/2015', '-1800');
execute INSERTARWINS('122372', 'RA02', '21/02/2015', '-600');
execute INSERTARWINS('1287', 'RA03', '21/02/2015', '-900');
execute INSERTARWINS('918', 'RA02', '21/02/2015', '1300');
execute INSERTARWINS('76865', 'RA02', '21/02/2015', '2000');
execute INSERTARWINS('152377', 'RA03', '21/02/2015', '1000');
execute INSERTARWINS('99216', 'RA03', '21/02/2015', '1000');
execute INSERTARWINS('846', 'RA03', '21/02/2015', '1800');
execute INSERTARWINS('123330', 'RA02', '21/02/2015', '-200');
execute INSERTARWINS('120264', 'RA03', '22/02/2015', '-3300');
execute INSERTARWINS('116226', 'RA03', '22/02/2015', '-2900');
execute INSERTARWINS('918', 'RA03', '22/02/2015', '-3100');
execute INSERTARWINS('101580', 'RA03', '22/02/2015', '-600');
execute INSERTARWINS('846', 'RA03', '22/02/2015', '-700');
execute INSERTARWINS('22684', 'RA02', '22/02/2015', '-800');
execute INSERTARWINS('150425', 'RA03', '23/02/2015', '-800');
execute INSERTARWINS('120264', 'RA03', '23/02/2015', '7000');
execute INSERTARWINS('146434', 'RA02', '23/02/2015', '-1000');
execute INSERTARWINS('108677', 'RA02', '23/02/2015', '1000');
execute INSERTARWINS('8018', 'RA03', '23/02/2015', '-1000');
execute INSERTARWINS('136590', 'RA02', '23/02/2015', '-1000');
execute INSERTARWINS('130195', 'RA02', '23/02/2015', '1000');
execute INSERTARWINS('45859', 'RA03', '23/02/2015', '1000');
execute INSERTARWINS('6794', 'RA03', '24/02/2015', '-3500');
execute INSERTARWINS('1674', 'RA03', '24/02/2015', '-900');
execute INSERTARWINS('120929', 'RA03', '24/02/2015', '200');
execute INSERTARWINS('3292', 'RA03', '24/02/2015', '-3200');
execute INSERTARWINS('2906', 'RA03', '24/02/2015', '-200');
execute INSERTARWINS('120264', 'RA03', '24/02/2015', '-2100');
execute INSERTARWINS('5355', 'RA03', '24/02/2015', '300');
execute INSERTARWINS('19423', 'RA03', '24/02/2015', '-700');
execute INSERTARWINS('114108', 'RA03', '24/02/2015', '-2000');
execute INSERTARWINS('1674', 'RA03', '25/02/2015', '-900');
execute INSERTARWINS('120929', 'RA03', '25/02/2015', '-700');
execute INSERTARWINS('1130', 'RA03', '25/02/2015', '-600');
execute INSERTARWINS('116226', 'RA03', '25/02/2015', '3600');
execute INSERTARWINS('120264', 'RA03', '25/02/2015', '-300');
execute INSERTARWINS('86172', 'RA03', '25/02/2015', '-500');
execute INSERTARWINS('143708', 'RA03', '25/02/2015', '1400');
execute INSERTARWINS('3292', 'RA03', '25/02/2015', '1000');
execute INSERTARWINS('2589', 'RA03', '25/02/2015', '-1800');
execute INSERTARWINS('149014', 'RA03', '25/02/2015', '1000');
execute INSERTARWINS('124652', 'RA03', '25/02/2015', '1400');
execute INSERTARWINS('126930', 'RA03', '25/02/2015', '-2500');
execute INSERTARWINS('126928', 'RA03', '25/02/2015', '-2000');
execute INSERTARWINS('152660', 'RA03', '25/02/2015', '1300');
execute INSERTARWINS('447', 'RA03', '25/02/2015', '1000');
execute INSERTARWINS('1287', 'RA03', '25/02/2015', '-500');
execute INSERTARWINS('66032', 'RA03', '26/02/2015', '-7000');
execute INSERTARWINS('6595', 'RA03', '26/02/2015', '300');
execute INSERTARWINS('38', 'RA03', '26/02/2015', '-1600');
execute INSERTARWINS('7270', 'RA03', '26/02/2015', '-500');
execute INSERTARWINS('963', 'RA03', '26/02/2015', '300');
execute INSERTARWINS('76865', 'RA03', '26/02/2015', '11500');
execute INSERTARWINS('143708', 'RA03', '26/02/2015', '5200');
execute INSERTARWINS('120264', 'RA03', '26/02/2015', '700');
execute INSERTARWINS('8018', 'RA03', '26/02/2015', '-700');
execute INSERTARWINS('3292', 'RA02', '26/02/2015', '100');
execute INSERTARWINS('69103', 'RA03', '26/02/2015', '-1700');
execute INSERTARWINS('75024', 'RA03', '26/02/2015', '-1500');
execute INSERTARWINS('24876', 'RA03', '26/02/2015', '-1500');
execute INSERTARWINS('53724', 'RA03', '26/02/2015', '100');
execute INSERTARWINS('447', 'RA03', '26/02/2015', '-3300');
execute INSERTARWINS('84691', 'RA03', '26/02/2015', '1000');
execute INSERTARWINS('109612', 'RA02', '26/02/2015', '400');
execute INSERTARWINS('19242', 'RA02', '26/02/2015', '-3500');
execute INSERTARWINS('882', 'RA02', '26/02/2015', '2000');
execute INSERTARWINS('35295', 'RA03', '27/02/2015', '-1500');
execute INSERTARWINS('120929', 'RA03', '27/02/2015', '-1300');
execute INSERTARWINS('425', 'RA03', '27/02/2015', '-800');
execute INSERTARWINS('21967', 'RA03', '27/02/2015', '1000');
execute INSERTARWINS('8018', 'RA02', '27/02/2015', '-1000');
execute INSERTARWINS('60337', 'RA02', '27/02/2015', '-200');
execute INSERTARWINS('120264', 'RA03', '27/02/2015', '500');
execute INSERTARWINS('116226', 'RA03', '27/02/2015', '-3400');
execute INSERTARWINS('143708', 'RA03', '27/02/2015', '1400');
execute INSERTARWINS('7270', 'RA02', '27/02/2015', '800');
execute INSERTARWINS('53724', 'RA02', '27/02/2015', '-600');
execute INSERTARWINS('1287', 'RA02', '27/02/2015', '-600');
execute INSERTARWINS('101580', 'RA02', '27/02/2015', '-500');
execute INSERTARWINS('21774', 'RA03', '27/02/2015', '1000');
execute INSERTARWINS('116226', 'RA03', '28/02/2015', '2500');
execute INSERTARWINS('963', 'RA03', '28/02/2015', '-3100');
execute INSERTARWINS('143708', 'RA03', '28/02/2015', '-2200');
execute INSERTARWINS('23124', 'RA03', '28/02/2015', '500');
execute INSERTARWINS('77220', 'RA03', '28/02/2015', '1000');
execute INSERTARWINS('7270', 'RA02', '28/02/2015', '-200');
execute INSERTARWINS('108677', 'RA03', '28/02/2015', '-500');
execute INSERTARWINS('6649', 'RA03', '28/02/2015', '-700');
execute INSERTARWINS('1213', 'RA02', '28/02/2015', '1100');
execute INSERTARWINS('8018', 'RA03', '28/02/2015', '-1100');
execute INSERTARWINS('56558', 'RA02', '28/02/2015', '3500');
execute INSERTARWINS('76865', 'RA02', '28/02/2015', '4000');
execute INSERTARWINS('3142', 'RA03', '28/02/2015', '500');
execute INSERTARWINS('152781', 'RA02', '28/02/2015', '1000');
execute INSERTARWINS('148178', 'RA02', '28/02/2015', '-300');
execute INSERTARWINS('846', 'RA03', '28/02/2015', '300');
execute INSERTARWINS('75024', 'RA03', '28/02/2015', '-1000');
execute INSERTARWINS('116226', 'RA03', '01/03/2015', '-4400');
execute INSERTARWINS('75024', 'RA03', '01/03/2015', '-1000');
execute INSERTARWINS('138371', 'RA03', '01/03/2015', '1000');
execute INSERTARWINS('143708', 'RA03', '01/03/2015', '6200');
execute INSERTARWINS('120264', 'RA03', '01/03/2015', '-1100');
execute INSERTARWINS('113751', 'RA03', '01/03/2015', '-600');
execute INSERTARWINS('150826', 'RA03', '01/03/2015', '-300');
execute INSERTARWINS('107123', 'RA03', '01/03/2015', '-1700');
execute INSERTARWINS('846', 'RA03', '01/03/2015', '1600');
execute INSERTARWINS('19843', 'RA03', '01/03/2015', '-2000');
execute INSERTARWINS('116226', 'RA03', '02/03/2015', '1500');
execute INSERTARWINS('143708', 'RA03', '02/03/2015', '1100');
execute INSERTARWINS('425', 'RA03', '02/03/2015', '500');
execute INSERTARWINS('108677', 'RA03', '02/03/2015', '500');
execute INSERTARWINS('2906', 'RA02', '02/03/2015', '-600');
execute INSERTARWINS('3292', 'RA02', '02/03/2015', '700');
execute INSERTARWINS('59528', 'RA03', '02/03/2015', '-600');
execute INSERTARWINS('113751', 'RA03', '02/03/2015', '-300');
execute INSERTARWINS('32676', 'RA03', '02/03/2015', '400');
execute INSERTARWINS('101580', 'RA03', '02/03/2015', '1000');
execute INSERTARWINS('152856', 'RA02', '02/03/2015', '-100');
execute INSERTARWINS('846', 'RA02', '02/03/2015', '-1500');
execute INSERTARWINS('69103', 'RA03', '03/03/2015', '-1300');
execute INSERTARWINS('4542', 'RA03', '03/03/2015', '500');
execute INSERTARWINS('120264', 'RA03', '03/03/2015', '-3000');
execute INSERTARWINS('8018', 'RA02', '03/03/2015', '1500');
execute INSERTARWINS('357', 'RA03', '03/03/2015', '-5000');
execute INSERTARWINS('53711', 'RA02', '03/03/2015', '-3000');
execute INSERTARWINS('152856', 'RA03', '03/03/2015', '-300');
execute INSERTARWINS('447', 'RA03', '03/03/2015', '-1300');
execute INSERTARWINS('101580', 'RA03', '03/03/2015', '-500');
execute INSERTARWINS('103328', 'RA03', '03/03/2015', '-700');
execute INSERTARWINS('846', 'RA02', '03/03/2015', '-1100');
execute INSERTARWINS('6595', 'RA03', '04/03/2015', '200');
execute INSERTARWINS('5329', 'RA03', '04/03/2015', '1900');
execute INSERTARWINS('21553', 'RA03', '04/03/2015', '-400');
execute INSERTARWINS('7270', 'RA02', '04/03/2015', '-1100');
execute INSERTARWINS('59528', 'RA02', '04/03/2015', '-500');
execute INSERTARWINS('122372', 'RA02', '04/03/2015', '-300');
execute INSERTARWINS('8018', 'RA02', '04/03/2015', '-1000');
execute INSERTARWINS('1183', 'RA02', '04/03/2015', '1000');
execute INSERTARWINS('116226', 'RA03', '04/03/2015', '-4700');
execute INSERTARWINS('32676', 'RA02', '04/03/2015', '500');
execute INSERTARWINS('53724', 'RA03', '04/03/2015', '4300');
execute INSERTARWINS('17969', 'RA03', '05/03/2015', '-500');
execute INSERTARWINS('38', 'RA03', '05/03/2015', '1300');
execute INSERTARWINS('120264', 'RA03', '05/03/2015', '-1800');
execute INSERTARWINS('425', 'RA03', '05/03/2015', '-500');
execute INSERTARWINS('1674', 'RA03', '05/03/2015', '-400');
execute INSERTARWINS('7270', 'RA03', '05/03/2015', '-300');
execute INSERTARWINS('963', 'RA03', '05/03/2015', '600');
execute INSERTARWINS('108677', 'RA03', '05/03/2015', '600');
execute INSERTARWINS('8018', 'RA03', '05/03/2015', '11100');
execute INSERTARWINS('143708', 'RA03', '05/03/2015', '3500');
execute INSERTARWINS('112399', 'RA03', '05/03/2015', '2600');
execute INSERTARWINS('1183', 'RA02', '05/03/2015', '500');
execute INSERTARWINS('23995', 'RA03', '05/03/2015', '-1500');
execute INSERTARWINS('882', 'RA03', '05/03/2015', '-1000');
execute INSERTARWINS('143708', 'RA03', '06/03/2015', '-13000');
execute INSERTARWINS('86172', 'RA03', '06/03/2015', '-2900');
execute INSERTARWINS('8018', 'RA03', '06/03/2015', '-1000');
execute INSERTARWINS('76865', 'RA03', '06/03/2015', '1000');
execute INSERTARWINS('2906', 'RA03', '06/03/2015', '500');
execute INSERTARWINS('108677', 'RA03', '06/03/2015', '-1600');
execute INSERTARWINS('23995', 'RA03', '06/03/2015', '-900');
execute INSERTARWINS('1183', 'RA03', '06/03/2015', '-1100');
execute INSERTARWINS('694', 'RA03', '06/03/2015', '100');
execute INSERTARWINS('963', 'RA02', '06/03/2015', '500');
execute INSERTARWINS('143708', 'RA03', '07/03/2015', '6000');
execute INSERTARWINS('7626', 'RA03', '07/03/2015', '1000');
execute INSERTARWINS('968', 'RA03', '07/03/2015', '1500');
execute INSERTARWINS('124652', 'RA03', '07/03/2015', '1500');
execute INSERTARWINS('8018', 'RA03', '07/03/2015', '-1100');
execute INSERTARWINS('3292', 'RA03', '07/03/2015', '-1900');
execute INSERTARWINS('1183', 'RA02', '07/03/2015', '-400');
execute INSERTARWINS('1287', 'RA02', '07/03/2015', '-500');
execute INSERTARWINS('152165', 'RA03', '07/03/2015', '1000');
execute INSERTARWINS('53724', 'RA03', '07/03/2015', '700');
execute INSERTARWINS('101580', 'RA02', '07/03/2015', '7000');
execute INSERTARWINS('150603', 'RA02', '07/03/2015', '400');
execute INSERTARWINS('150222', 'RA03', '08/03/2015', '1800');
execute INSERTARWINS('143708', 'RA02', '08/03/2015', '-9400');
execute INSERTARWINS('32676', 'RA02', '08/03/2015', '400');
execute INSERTARWINS('53724', 'RA02', '08/03/2015', '-600');
execute INSERTARWINS('138371', 'RA03', '08/03/2015', '1300');
execute INSERTARWINS('6920', 'RA03', '09/03/2015', '300');
execute INSERTARWINS('24876', 'RA03', '09/03/2015', '-300');
execute INSERTARWINS('425', 'RA03', '09/03/2015', '1000');
execute INSERTARWINS('2906', 'RA02', '09/03/2015', '500');
execute INSERTARWINS('68435', 'RA03', '09/03/2015', '500');
execute INSERTARWINS('108677', 'RA03', '09/03/2015', '-100');
execute INSERTARWINS('3292', 'RA03', '09/03/2015', '500');
execute INSERTARWINS('59528', 'RA02', '09/03/2015', '-300');
execute INSERTARWINS('8018', 'RA02', '09/03/2015', '2000');
execute INSERTARWINS('138371', 'RA03', '09/03/2015', '2000');
execute INSERTARWINS('53724', 'RA03', '09/03/2015', '1500');
execute INSERTARWINS('183', 'RA03', '09/03/2015', '-100');
execute INSERTARWINS('8018', 'RA03', '10/03/2015', '-1500');
execute INSERTARWINS('6595', 'RA03', '10/03/2015', '-900');
execute INSERTARWINS('963', 'RA03', '10/03/2015', '400');
execute INSERTARWINS('20064', 'RA03', '10/03/2015', '700');
execute INSERTARWINS('59528', 'RA03', '10/03/2015', '2000');
execute INSERTARWINS('17748', 'RA03', '10/03/2015', '2500');
execute INSERTARWINS('138371', 'RA02', '10/03/2015', '-1700');
execute INSERTARWINS('53724', 'RA02', '10/03/2015', '3500');
execute INSERTARWINS('5678', 'RA03', '10/03/2015', '1900');
execute INSERTARWINS('17748', 'RA03', '11/03/2015', '1500');
execute INSERTARWINS('5329', 'RA03', '11/03/2015', '-800');
execute INSERTARWINS('69103', 'RA02', '11/03/2015', '-1000');
execute INSERTARWINS('2906', 'RA02', '11/03/2015', '800');
execute INSERTARWINS('357', 'RA02', '11/03/2015', '800');
execute INSERTARWINS('53724', 'RA02', '11/03/2015', '-2900');
execute INSERTARWINS('68435', 'RA02', '11/03/2015', '-700');
execute INSERTARWINS('846', 'RA03', '11/03/2015', '-800');
execute INSERTARWINS('17969', 'RA03', '12/03/2015', '2700');
execute INSERTARWINS('8018', 'RA03', '12/03/2015', '-1100');
execute INSERTARWINS('1182', 'RA03', '12/03/2015', '-1800');
execute INSERTARWINS('2906', 'RA03', '12/03/2015', '500');
execute INSERTARWINS('963', 'RA03', '12/03/2015', '-2200');
execute INSERTARWINS('17748', 'RA03', '12/03/2015', '-8700');
execute INSERTARWINS('108677', 'RA03', '12/03/2015', '200');
execute INSERTARWINS('694', 'RA03', '12/03/2015', '6000');
execute INSERTARWINS('120264', 'RA02', '12/03/2015', '4200');
execute INSERTARWINS('55914', 'RA02', '12/03/2015', '4500');
execute INSERTARWINS('148178', 'RA02', '12/03/2015', '-400');
execute INSERTARWINS('109612', 'RA02', '12/03/2015', '6000');
execute INSERTARWINS('53724', 'RA02', '12/03/2015', '6200');
execute INSERTARWINS('101580', 'RA03', '12/03/2015', '1000');
execute INSERTARWINS('882', 'RA02', '12/03/2015', '1800');
execute INSERTARWINS('3292', 'RA03', '12/03/2015', '1000');
execute INSERTARWINS('17748', 'RA03', '13/03/2015', '4000');
execute INSERTARWINS('2906', 'RA03', '13/03/2015', '1200');
execute INSERTARWINS('108677', 'RA03', '13/03/2015', '500');
execute INSERTARWINS('68435', 'RA02', '13/03/2015', '600');
execute INSERTARWINS('1674', 'RA02', '13/03/2015', '900');
execute INSERTARWINS('7270', 'RA02', '13/03/2015', '200');
execute INSERTARWINS('4542', 'RA02', '13/03/2015', '-500');
execute INSERTARWINS('1183', 'RA02', '13/03/2015', '1100');
execute INSERTARWINS('109612', 'RA03', '13/03/2015', '-400');
execute INSERTARWINS('153091', 'RA02', '13/03/2015', '1200');
execute INSERTARWINS('76865', 'RA02', '13/03/2015', '-5800');
execute INSERTARWINS('84405', 'RA03', '13/03/2015', '4300');
execute INSERTARWINS('846', 'RA02', '13/03/2015', '-500');
execute INSERTARWINS('17748', 'RA03', '14/03/2015', '-5000');
execute INSERTARWINS('357', 'RA03', '14/03/2015', '1000');
execute INSERTARWINS('1287', 'RA02', '14/03/2015', '-500');
execute INSERTARWINS('55914', 'RA03', '14/03/2015', '3500');
execute INSERTARWINS('963', 'RA03', '14/03/2015', '900');
execute INSERTARWINS('8018', 'RA02', '14/03/2015', '-1600');
execute INSERTARWINS('970', 'RA02', '14/03/2015', '2000');
execute INSERTARWINS('1183', 'RA03', '14/03/2015', '-600');
execute INSERTARWINS('32676', 'RA03', '14/03/2015', '500');
execute INSERTARWINS('138371', 'RA02', '14/03/2015', '1000');
execute INSERTARWINS('109612', 'RA02', '14/03/2015', '-500');
execute INSERTARWINS('110598', 'RA02', '14/03/2015', '2500');
execute INSERTARWINS('120264', 'RA03', '15/03/2015', '-5300');
execute INSERTARWINS('694', 'RA03', '15/03/2015', '-2500');
execute INSERTARWINS('17748', 'RA03', '15/03/2015', '-2000');
execute INSERTARWINS('357', 'RA02', '15/03/2015', '1300');
execute INSERTARWINS('38', 'RA03', '15/03/2015', '-2000');
execute INSERTARWINS('15469', 'RA02', '15/03/2015', '700');
execute INSERTARWINS('140491', 'RA02', '15/03/2015', '-500');
execute INSERTARWINS('1183', 'RA02', '15/03/2015', '1000');
execute INSERTARWINS('81178', 'RA02', '15/03/2015', '-2300');
execute INSERTARWINS('101580', 'RA02', '15/03/2015', '-4000');
execute INSERTARWINS('107123', 'RA03', '15/03/2015', '-500');
execute INSERTARWINS('53724', 'RA03', '15/03/2015', '-1400');
execute INSERTARWINS('149824', 'RA03', '15/03/2015', '-1000');
execute INSERTARWINS('97334', 'RA02', '15/03/2015', '-500');
execute INSERTARWINS('135581', 'RA03', '16/03/2015', '1500');
execute INSERTARWINS('3292', 'RA03', '16/03/2015', '1300');
execute INSERTARWINS('1674', 'RA03', '16/03/2015', '-1200');
execute INSERTARWINS('357', 'RA03', '16/03/2015', '1200');
execute INSERTARWINS('6794', 'RA03', '16/03/2015', '1500');
execute INSERTARWINS('76865', 'RA03', '16/03/2015', '2200');
execute INSERTARWINS('2906', 'RA02', '16/03/2015', '-900');
execute INSERTARWINS('8018', 'RA03', '16/03/2015', '2100');
execute INSERTARWINS('32676', 'RA03', '16/03/2015', '-2200');
execute INSERTARWINS('59528', 'RA03', '16/03/2015', '2400');
execute INSERTARWINS('938', 'RA02', '16/03/2015', '2500');
execute INSERTARWINS('138371', 'RA03', '16/03/2015', '-800');
execute INSERTARWINS('2701', 'RA02', '16/03/2015', '-7000');
execute INSERTARWINS('53724', 'RA02', '16/03/2015', '2300');
execute INSERTARWINS('183', 'RA03', '16/03/2015', '-900');
execute INSERTARWINS('4709', 'RA03', '16/03/2015', '1600');
execute INSERTARWINS('846', 'RA03', '16/03/2015', '-2400');
execute INSERTARWINS('17748', 'RA03', '17/03/2015', '-2300');
execute INSERTARWINS('60337', 'RA03', '17/03/2015', '-100');
execute INSERTARWINS('7270', 'RA03', '17/03/2015', '-1000');
execute INSERTARWINS('69103', 'RA03', '17/03/2015', '-1000');
execute INSERTARWINS('120264', 'RA03', '17/03/2015', '-2500');
execute INSERTARWINS('59528', 'RA03', '17/03/2015', '2000');
execute INSERTARWINS('2906', 'RA03', '17/03/2015', '-700');
execute INSERTARWINS('963', 'RA02', '17/03/2015', '2700');
execute INSERTARWINS('49669', 'RA02', '17/03/2015', '-300');
execute INSERTARWINS('6706', 'RA02', '17/03/2015', '1200');
execute INSERTARWINS('149824', 'RA02', '17/03/2015', '1000');
execute INSERTARWINS('53724', 'RA03', '17/03/2015', '1500');
execute INSERTARWINS('54498', 'RA03', '17/03/2015', '400');
execute INSERTARWINS('153227', 'RA02', '17/03/2015', '-6700');
execute INSERTARWINS('148178', 'RA02', '17/03/2015', '3800');
execute INSERTARWINS('6794', 'RA03', '18/03/2015', '-4100');
execute INSERTARWINS('3292', 'RA03', '18/03/2015', '1000');
execute INSERTARWINS('69103', 'RA03', '18/03/2015', '-1900');
execute INSERTARWINS('120264', 'RA03', '18/03/2015', '-700');
execute INSERTARWINS('357', 'RA03', '18/03/2015', '-5500');
execute INSERTARWINS('59528', 'RA03', '18/03/2015', '-200');
execute INSERTARWINS('1287', 'RA03', '18/03/2015', '500');
execute INSERTARWINS('53724', 'RA03', '18/03/2015', '-2200');
execute INSERTARWINS('109612', 'RA03', '18/03/2015', '-500');
execute INSERTARWINS('6706', 'RA03', '18/03/2015', '600');
execute INSERTARWINS('153222', 'RA02', '18/03/2015', '-1700');
execute INSERTARWINS('17969', 'RA03', '19/03/2015', '1500');
execute INSERTARWINS('425', 'RA03', '19/03/2015', '-500');
execute INSERTARWINS('8018', 'RA03', '19/03/2015', '-600');
execute INSERTARWINS('49669', 'RA03', '19/03/2015', '300');
execute INSERTARWINS('108677', 'RA02', '19/03/2015', '300');
execute INSERTARWINS('2906', 'RA02', '19/03/2015', '1000');
execute INSERTARWINS('1183', 'RA03', '19/03/2015', '-600');
execute INSERTARWINS('62393', 'RA03', '19/03/2015', '2000');
execute INSERTARWINS('132609', 'RA03', '19/03/2015', '-4000');
execute INSERTARWINS('109612', 'RA02', '19/03/2015', '-300');
execute INSERTARWINS('53724', 'RA02', '19/03/2015', '2200');
execute INSERTARWINS('121576', 'RA02', '19/03/2015', '1200');
execute INSERTARWINS('101580', 'RA02', '19/03/2015', '-1000');
execute INSERTARWINS('153222', 'RA03', '19/03/2015', '-800');
execute INSERTARWINS('882', 'RA03', '19/03/2015', '1500');
execute INSERTARWINS('2906', 'RA03', '20/03/2015', '-1500');
execute INSERTARWINS('24876', 'RA03', '20/03/2015', '-1000');
execute INSERTARWINS('81124', 'RA03', '20/03/2015', '-1700');
execute INSERTARWINS('694', 'RA02', '20/03/2015', '1500');
execute INSERTARWINS('183', 'RA02', '20/03/2015', '100');
execute INSERTARWINS('53724', 'RA03', '20/03/2015', '-600');
execute INSERTARWINS('121576', 'RA02', '20/03/2015', '800');
execute INSERTARWINS('109612', 'RA03', '20/03/2015', '-1100');
execute INSERTARWINS('3292', 'RA02', '20/03/2015', '1900');
execute INSERTARWINS('14172', 'RA03', '21/03/2015', '-900');
execute INSERTARWINS('108677', 'RA03', '21/03/2015', '200');
execute INSERTARWINS('1287', 'RA03', '21/03/2015', '1500');
execute INSERTARWINS('143708', 'RA02', '21/03/2015', '-2500');
execute INSERTARWINS('938', 'RA02', '21/03/2015', '-1000');
execute INSERTARWINS('116226', 'RA03', '21/03/2015', '-700');
execute INSERTARWINS('963', 'RA02', '21/03/2015', '400');
execute INSERTARWINS('846', 'RA02', '21/03/2015', '-1100');
execute INSERTARWINS('694', 'RA03', '22/03/2015', '-1500');
execute INSERTARWINS('14172', 'RA03', '22/03/2015', '-2400');
execute INSERTARWINS('6595', 'RA02', '22/03/2015', '1500');
execute INSERTARWINS('150222', 'RA02', '22/03/2015', '8000');
execute INSERTARWINS('183', 'RA03', '22/03/2015', '-1600');
execute INSERTARWINS('153309', 'RA02', '22/03/2015', '-400');
execute INSERTARWINS('938', 'RA02', '22/03/2015', '2000');
execute INSERTARWINS('1287', 'RA02', '22/03/2015', '1900');
execute INSERTARWINS('121576', 'RA03', '22/03/2015', '-1700');
execute INSERTARWINS('109612', 'RA03', '22/03/2015', '2800');
execute INSERTARWINS('846', 'RA03', '22/03/2015', '-1000');
execute INSERTARWINS('694', 'RA03', '23/03/2015', '-2700');
execute INSERTARWINS('84402', 'RA03', '23/03/2015', '-7200');
execute INSERTARWINS('108677', 'RA03', '23/03/2015', '-600');
execute INSERTARWINS('122372', 'RA03', '23/03/2015', '-1200');
execute INSERTARWINS('69103', 'RA03', '23/03/2015', '-1000');
execute INSERTARWINS('8018', 'RA02', '23/03/2015', '1000');
execute INSERTARWINS('17969', 'RA03', '23/03/2015', '5000');
execute INSERTARWINS('183', 'RA03', '23/03/2015', '-1200');
execute INSERTARWINS('153366', 'RA03', '23/03/2015', '-6500');
execute INSERTARWINS('53724', 'RA03', '23/03/2015', '-1800');
execute INSERTARWINS('1287', 'RA02', '23/03/2015', '-200');
execute INSERTARWINS('19423', 'RA02', '23/03/2015', '1700');
execute INSERTARWINS('135369', 'RA03', '24/03/2015', '-1200');
execute INSERTARWINS('146', 'RA03', '24/03/2015', '-1900');
execute INSERTARWINS('120264', 'RA03', '24/03/2015', '4000');
execute INSERTARWINS('8018', 'RA03', '24/03/2015', '-1100');
execute INSERTARWINS('6706', 'RA03', '24/03/2015', '-700');
execute INSERTARWINS('2906', 'RA03', '24/03/2015', '-500');
execute INSERTARWINS('141286', 'RA03', '24/03/2015', '-500');
execute INSERTARWINS('357', 'RA03', '24/03/2015', '-500');
execute INSERTARWINS('1182', 'RA03', '24/03/2015', '1700');
execute INSERTARWINS('147146', 'RA03', '24/03/2015', '1500');
execute INSERTARWINS('153383', 'RA03', '24/03/2015', '1000');
execute INSERTARWINS('768', 'RA02', '24/03/2015', '-26000');
execute INSERTARWINS('153394', 'RA02', '24/03/2015', '-5500');
execute INSERTARWINS('109612', 'RA02', '24/03/2015', '-1000');
execute INSERTARWINS('3292', 'RA02', '24/03/2015', '-1400');
execute INSERTARWINS('143708', 'RA03', '24/03/2015', '1000');
execute INSERTARWINS('153381', 'RA03', '24/03/2015', '-600');
execute INSERTARWINS('63968', 'RA02', '24/03/2015', '700');
execute INSERTARWINS('122685', 'RA03', '24/03/2015', '-1200');
execute INSERTARWINS('17748', 'RA03', '25/03/2015', '-1300');
execute INSERTARWINS('6794', 'RA03', '25/03/2015', '6000');
execute INSERTARWINS('8018', 'RA03', '25/03/2015', '2900');
execute INSERTARWINS('2906', 'RA03', '25/03/2015', '-200');
execute INSERTARWINS('55901', 'RA03', '25/03/2015', '-700');
execute INSERTARWINS('49669', 'RA03', '25/03/2015', '-200');
execute INSERTARWINS('128977', 'RA02', '25/03/2015', '1400');
execute INSERTARWINS('183', 'RA02', '25/03/2015', '-2400');
execute INSERTARWINS('138371', 'RA03', '25/03/2015', '-3300');
execute INSERTARWINS('53724', 'RA03', '25/03/2015', '5500');
execute INSERTARWINS('1287', 'RA02', '25/03/2015', '-1500');
execute INSERTARWINS('107633', 'RA02', '25/03/2015', '1500');
execute INSERTARWINS('17969', 'RA03', '26/03/2015', '-2800');
execute INSERTARWINS('23995', 'RA03', '26/03/2015', '-7600');
execute INSERTARWINS('108677', 'RA03', '26/03/2015', '200');
execute INSERTARWINS('8018', 'RA03', '26/03/2015', '1000');
execute INSERTARWINS('2906', 'RA03', '26/03/2015', '300');
execute INSERTARWINS('1181', 'RA03', '26/03/2015', '3000');
execute INSERTARWINS('122299', 'RA03', '26/03/2015', '1000');
execute INSERTARWINS('3292', 'RA03', '26/03/2015', '1500');
execute INSERTARWINS('6343', 'RA03', '26/03/2015', '-500');
execute INSERTARWINS('138371', 'RA02', '26/03/2015', '-2400');
execute INSERTARWINS('141342', 'RA02', '26/03/2015', '1000');
execute INSERTARWINS('109612', 'RA03', '26/03/2015', '500');
execute INSERTARWINS('76865', 'RA03', '26/03/2015', '1000');
execute INSERTARWINS('19423', 'RA02', '26/03/2015', '14000');
execute INSERTARWINS('107633', 'RA03', '26/03/2015', '-400');
execute INSERTARWINS('882', 'RA02', '26/03/2015', '800');
execute INSERTARWINS('70533', 'RA02', '26/03/2015', '-1000');
execute INSERTARWINS('17748', 'RA03', '27/03/2015', '1600');
execute INSERTARWINS('1181', 'RA03', '27/03/2015', '-1500');
execute INSERTARWINS('6794', 'RA03', '27/03/2015', '-1400');
execute INSERTARWINS('2906', 'RA03', '27/03/2015', '-1000');
execute INSERTARWINS('6595', 'RA03', '27/03/2015', '-500');
execute INSERTARWINS('84402', 'RA03', '27/03/2015', '-800');
execute INSERTARWINS('153434', 'RA03', '27/03/2015', '-1100');
execute INSERTARWINS('938', 'RA03', '27/03/2015', '1300');
execute INSERTARWINS('108677', 'RA03', '27/03/2015', '100');
execute INSERTARWINS('120264', 'RA02', '27/03/2015', '-300');
execute INSERTARWINS('3292', 'RA03', '27/03/2015', '100');
execute INSERTARWINS('116226', 'RA02', '27/03/2015', '-5800');
execute INSERTARWINS('143708', 'RA03', '27/03/2015', '-4700');
execute INSERTARWINS('1183', 'RA03', '27/03/2015', '-1300');
execute INSERTARWINS('109612', 'RA03', '27/03/2015', '-900');
execute INSERTARWINS('357', 'RA03', '27/03/2015', '-2500');
execute INSERTARWINS('1287', 'RA03', '27/03/2015', '-200');
execute INSERTARWINS('19423', 'RA03', '27/03/2015', '-2300');
execute INSERTARWINS('963', 'RA03', '27/03/2015', '-6400');
execute INSERTARWINS('116226', 'RA03', '28/03/2015', '500');
execute INSERTARWINS('108677', 'RA03', '28/03/2015', '400');
execute INSERTARWINS('69101', 'RA03', '28/03/2015', '700');
execute INSERTARWINS('101580', 'RA02', '28/03/2015', '-1000');
execute INSERTARWINS('128195', 'RA02', '28/03/2015', '-1900');
execute INSERTARWINS('109612', 'RA03', '28/03/2015', '-600');
execute INSERTARWINS('6343', 'RA03', '28/03/2015', '500');
execute INSERTARWINS('1287', 'RA02', '28/03/2015', '-300');
execute INSERTARWINS('4542', 'RA03', '28/03/2015', '-500');
execute INSERTARWINS('53724', 'RA02', '28/03/2015', '-3500');
execute INSERTARWINS('882', 'RA02', '28/03/2015', '1500');
execute INSERTARWINS('60337', 'RA03', '29/03/2015', '1000');
execute INSERTARWINS('149175', 'RA03', '29/03/2015', '1000');
execute INSERTARWINS('3142', 'RA03', '29/03/2015', '-4700');
execute INSERTARWINS('17748', 'RA03', '29/03/2015', '3100');
execute INSERTARWINS('150222', 'RA02', '29/03/2015', '-3400');
execute INSERTARWINS('120264', 'RA02', '29/03/2015', '-1300');
execute INSERTARWINS('108677', 'RA02', '29/03/2015', '500');
execute INSERTARWINS('8018', 'RA03', '29/03/2015', '-600');
execute INSERTARWINS('69103', 'RA03', '29/03/2015', '-1000');
execute INSERTARWINS('6794', 'RA03', '30/03/2015', '5600');
execute INSERTARWINS('60337', 'RA02', '30/03/2015', '-1500');
execute INSERTARWINS('108677', 'RA03', '30/03/2015', '800');
execute INSERTARWINS('19423', 'RA03', '30/03/2015', '-2000');
execute INSERTARWINS('138371', 'RA02', '30/03/2015', '-1500');
execute INSERTARWINS('70533', 'RA02', '30/03/2015', '-500');
execute INSERTARWINS('17748', 'RA03', '31/03/2015', '-3100');
execute INSERTARWINS('8018', 'RA03', '31/03/2015', '-1200');
execute INSERTARWINS('120929', 'RA03', '31/03/2015', '-1000');
execute INSERTARWINS('2906', 'RA03', '31/03/2015', '-400');
execute INSERTARWINS('143708', 'RA02', '31/03/2015', '1000');
execute INSERTARWINS('86172', 'RA03', '31/03/2015', '600');
execute INSERTARWINS('599', 'RA03', '31/03/2015', '1200');
execute INSERTARWINS('108677', 'RA03', '31/03/2015', '200');
execute INSERTARWINS('1319', 'RA03', '31/03/2015', '-300');
execute INSERTARWINS('53724', 'RA03', '31/03/2015', '400');
execute INSERTARWINS('76865', 'RA03', '31/03/2015', '1000');
execute INSERTARWINS('70533', 'RA03', '31/03/2015', '1200');
execute INSERTARWINS('153570', 'RA02', '31/03/2015', '-3000');
execute INSERTARWINS('44425', 'RA03', '31/03/2015', '-500');
execute INSERTARWINS('17748', 'RA03', '01/04/2015', '-2200');
execute INSERTARWINS('8018', 'RA03', '01/04/2015', '-1900');
execute INSERTARWINS('14172', 'RA03', '01/04/2015', '-2000');
execute INSERTARWINS('939', 'RA02', '01/04/2015', '1500');
execute INSERTARWINS('108677', 'RA03', '01/04/2015', '200');
execute INSERTARWINS('357', 'RA03', '01/04/2015', '700');
execute INSERTARWINS('53724', 'RA03', '01/04/2015', '-1100');
execute INSERTARWINS('109612', 'RA02', '01/04/2015', '-300');
execute INSERTARWINS('6459', 'RA02', '01/04/2015', '-2300');
execute INSERTARWINS('5943', 'RA03', '02/04/2015', '500');
execute INSERTARWINS('108677', 'RA03', '02/04/2015', '800');
execute INSERTARWINS('152165', 'RA03', '02/04/2015', '2000');
execute INSERTARWINS('143708', 'RA03', '02/04/2015', '-2000');
execute INSERTARWINS('6459', 'RA02', '02/04/2015', '1500');
execute INSERTARWINS('109612', 'RA03', '02/04/2015', '300');
execute INSERTARWINS('963', 'RA02', '02/04/2015', '-2200');
execute INSERTARWINS('15469', 'RA03', '02/04/2015', '-700');
execute INSERTARWINS('108677', 'RA03', '03/04/2015', '400');
execute INSERTARWINS('76865', 'RA02', '03/04/2015', '700');
execute INSERTARWINS('92735', 'RA03', '03/04/2015', '1000');
execute INSERTARWINS('145703', 'RA03', '03/04/2015', '1700');
execute INSERTARWINS('1183', 'RA02', '03/04/2015', '-1800');
execute INSERTARWINS('147146', 'RA03', '03/04/2015', '-5000');
execute INSERTARWINS('143708', 'RA03', '03/04/2015', '500');
execute INSERTARWINS('153624', 'RA03', '03/04/2015', '-1100');
execute INSERTARWINS('64850', 'RA03', '03/04/2015', '400');
execute INSERTARWINS('6706', 'RA02', '03/04/2015', '1500');
execute INSERTARWINS('882', 'RA03', '03/04/2015', '-800');
execute INSERTARWINS('15469', 'RA03', '03/04/2015', '-200');
execute INSERTARWINS('153639', 'RA03', '03/04/2015', '1000');
execute INSERTARWINS('101580', 'RA03', '03/04/2015', '-1000');
execute INSERTARWINS('704', 'RA03', '04/04/2015', '-1700');
execute INSERTARWINS('143708', 'RA02', '04/04/2015', '3000');
execute INSERTARWINS('86172', 'RA03', '04/04/2015', '1000');
execute INSERTARWINS('120264', 'RA02', '04/04/2015', '3500');
execute INSERTARWINS('970', 'RA02', '04/04/2015', '700');
execute INSERTARWINS('83453', 'RA02', '04/04/2015', '-800');
execute INSERTARWINS('76865', 'RA02', '04/04/2015', '1900');
execute INSERTARWINS('357', 'RA03', '04/04/2015', '-4000');
execute INSERTARWINS('152165', 'RA02', '04/04/2015', '1300');
execute INSERTARWINS('153639', 'RA03', '04/04/2015', '2700');
execute INSERTARWINS('129793', 'RA03', '05/04/2015', '-3000');
execute INSERTARWINS('38', 'RA03', '05/04/2015', '-600');
execute INSERTARWINS('153681', 'RA03', '05/04/2015', '2500');
execute INSERTARWINS('150222', 'RA03', '05/04/2015', '-4500');
execute INSERTARWINS('93172', 'RA03', '05/04/2015', '2500');
execute INSERTARWINS('108677', 'RA02', '05/04/2015', '200');
execute INSERTARWINS('15469', 'RA03', '05/04/2015', '1500');
execute INSERTARWINS('148387', 'RA03', '05/04/2015', '600');
execute INSERTARWINS('153639', 'RA02', '05/04/2015', '-16300');
execute INSERTARWINS('153641', 'RA02', '05/04/2015', '1000');
execute INSERTARWINS('108677', 'RA03', '06/04/2015', '2100');
execute INSERTARWINS('143708', 'RA03', '06/04/2015', '500');
execute INSERTARWINS('86172', 'RA03', '06/04/2015', '3300');
execute INSERTARWINS('6794', 'RA03', '06/04/2015', '-8300');
execute INSERTARWINS('8018', 'RA02', '06/04/2015', '10200');
execute INSERTARWINS('357', 'RA03', '06/04/2015', '-2600');
execute INSERTARWINS('95482', 'RA03', '06/04/2015', '2700');
execute INSERTARWINS('146024', 'RA03', '07/04/2015', '-800');
execute INSERTARWINS('149671', 'RA03', '07/04/2015', '3000');
execute INSERTARWINS('6794', 'RA03', '07/04/2015', '-2500');
execute INSERTARWINS('2406', 'RA02', '07/04/2015', '900');
execute INSERTARWINS('8018', 'RA02', '07/04/2015', '1000');
execute INSERTARWINS('143708', 'RA02', '07/04/2015', '1700');
execute INSERTARWINS('86172', 'RA03', '07/04/2015', '-700');
execute INSERTARWINS('59528', 'RA02', '07/04/2015', '-500');
execute INSERTARWINS('3292', 'RA02', '07/04/2015', '-900');
execute INSERTARWINS('69101', 'RA03', '07/04/2015', '1000');
execute INSERTARWINS('53724', 'RA02', '07/04/2015', '600');
execute INSERTARWINS('138371', 'RA03', '08/04/2015', '-1200');
execute INSERTARWINS('1674', 'RA03', '08/04/2015', '500');
execute INSERTARWINS('120264', 'RA03', '08/04/2015', '-1700');
execute INSERTARWINS('86172', 'RA02', '08/04/2015', '-800');
execute INSERTARWINS('81838', 'RA03', '08/04/2015', '1500');
execute INSERTARWINS('6706', 'RA03', '08/04/2015', '-800');
execute INSERTARWINS('59528', 'RA02', '08/04/2015', '-500');
execute INSERTARWINS('108677', 'RA02', '08/04/2015', '500');
execute INSERTARWINS('92735', 'RA02', '08/04/2015', '1300');
execute INSERTARWINS('150826', 'RA03', '08/04/2015', '1000');
execute INSERTARWINS('7626', 'RA03', '08/04/2015', '-1300');
execute INSERTARWINS('768', 'RA03', '08/04/2015', '-23000');
execute INSERTARWINS('53724', 'RA03', '08/04/2015', '-300');
execute INSERTARWINS('53828', 'RA03', '08/04/2015', '-200');
execute INSERTARWINS('70533', 'RA03', '08/04/2015', '-700');
execute INSERTARWINS('129895', 'RA02', '08/04/2015', '-7000');
execute INSERTARWINS('425', 'RA03', '09/04/2015', '500');
execute INSERTARWINS('17748', 'RA03', '09/04/2015', '-600');
execute INSERTARWINS('66032', 'RA03', '09/04/2015', '-1700');
execute INSERTARWINS('24876', 'RA03', '09/04/2015', '-500');
execute INSERTARWINS('108677', 'RA02', '09/04/2015', '-1800');
execute INSERTARWINS('120209', 'RA03', '09/04/2015', '500');
execute INSERTARWINS('86172', 'RA03', '09/04/2015', '-300');
execute INSERTARWINS('143708', 'RA02', '09/04/2015', '1000');
execute INSERTARWINS('120264', 'RA03', '09/04/2015', '-1100');
execute INSERTARWINS('23995', 'RA03', '09/04/2015', '-200');
execute INSERTARWINS('84691', 'RA02', '09/04/2015', '-500');
execute INSERTARWINS('963', 'RA03', '09/04/2015', '400');
execute INSERTARWINS('53724', 'RA03', '09/04/2015', '-4500');
execute INSERTARWINS('153744', 'RA02', '09/04/2015', '-1000');
execute INSERTARWINS('183', 'RA03', '09/04/2015', '200');
execute INSERTARWINS('970', 'RA03', '09/04/2015', '500');
execute INSERTARWINS('138371', 'RA02', '09/04/2015', '6000');
execute INSERTARWINS('75024', 'RA02', '09/04/2015', '-2300');
execute INSERTARWINS('63940', 'RA03', '09/04/2015', '-200');
execute INSERTARWINS('882', 'RA03', '09/04/2015', '1400');
execute INSERTARWINS('21552', 'RA03', '09/04/2015', '-1000');
execute INSERTARWINS('43024', 'RA02', '09/04/2015', '-2500');
execute INSERTARWINS('4965', 'RA03', '09/04/2015', '1000');
execute INSERTARWINS('1722', 'RA03', '09/04/2015', '-200');
execute INSERTARWINS('86172', 'RA03', '10/04/2015', '1300');
execute INSERTARWINS('143708', 'RA03', '10/04/2015', '8500');
execute INSERTARWINS('23995', 'RA02', '10/04/2015', '1300');
execute INSERTARWINS('5329', 'RA03', '10/04/2015', '200');
execute INSERTARWINS('8018', 'RA02', '10/04/2015', '3100');
execute INSERTARWINS('2906', 'RA02', '10/04/2015', '500');
execute INSERTARWINS('968', 'RA03', '10/04/2015', '-11200');
execute INSERTARWINS('76865', 'RA03', '10/04/2015', '1100');
execute INSERTARWINS('970', 'RA03', '10/04/2015', '3000');
execute INSERTARWINS('925', 'RA03', '10/04/2015', '-2700');
execute INSERTARWINS('70533', 'RA02', '10/04/2015', '-900');
execute INSERTARWINS('75024', 'RA03', '10/04/2015', '-4000');
execute INSERTARWINS('7626', 'RA02', '10/04/2015', '-400');
execute INSERTARWINS('32676', 'RA03', '10/04/2015', '-1400');
execute INSERTARWINS('109612', 'RA03', '10/04/2015', '-500');
execute INSERTARWINS('21469', 'RA03', '11/04/2015', '500');
execute INSERTARWINS('86172', 'RA03', '11/04/2015', '-2000');
execute INSERTARWINS('143708', 'RA03', '11/04/2015', '3000');
execute INSERTARWINS('918', 'RA02', '11/04/2015', '-2000');
execute INSERTARWINS('23995', 'RA03', '11/04/2015', '8000');
execute INSERTARWINS('107981', 'RA02', '11/04/2015', '400');
execute INSERTARWINS('6459', 'RA02', '11/04/2015', '200');
execute INSERTARWINS('78176', 'RA02', '11/04/2015', '200');
execute INSERTARWINS('138371', 'RA03', '11/04/2015', '-500');
execute INSERTARWINS('15469', 'RA03', '11/04/2015', '-2300');
execute INSERTARWINS('963', 'RA02', '11/04/2015', '1000');
execute INSERTARWINS('8018', 'RA03', '12/04/2015', '-700');
execute INSERTARWINS('135214', 'RA03', '12/04/2015', '-1200');
execute INSERTARWINS('27939', 'RA02', '12/04/2015', '-2000');
execute INSERTARWINS('6595', 'RA03', '12/04/2015', '-2000');
execute INSERTARWINS('108677', 'RA03', '12/04/2015', '400');
execute INSERTARWINS('126938', 'RA03', '12/04/2015', '2000');
execute INSERTARWINS('69103', 'RA02', '12/04/2015', '2300');
execute INSERTARWINS('143708', 'RA02', '12/04/2015', '2900');
execute INSERTARWINS('3142', 'RA02', '12/04/2015', '1300');
execute INSERTARWINS('918', 'RA02', '12/04/2015', '-1400');
execute INSERTARWINS('86172', 'RA02', '12/04/2015', '1000');
execute INSERTARWINS('150826', 'RA03', '12/04/2015', '-1000');
execute INSERTARWINS('53724', 'RA03', '12/04/2015', '-4300');
execute INSERTARWINS('75024', 'RA02', '12/04/2015', '-2000');
execute INSERTARWINS('72594', 'RA02', '13/04/2015', '-500');
execute INSERTARWINS('8018', 'RA03', '13/04/2015', '11500');
execute INSERTARWINS('108677', 'RA03', '13/04/2015', '500');
execute INSERTARWINS('137244', 'RA02', '13/04/2015', '800');
execute INSERTARWINS('59528', 'RA02', '13/04/2015', '-1000');
execute INSERTARWINS('143708', 'RA02', '13/04/2015', '3000');
execute INSERTARWINS('425', 'RA02', '13/04/2015', '-500');
execute INSERTARWINS('122372', 'RA02', '13/04/2015', '-300');
execute INSERTARWINS('447', 'RA02', '13/04/2015', '-500');
execute INSERTARWINS('768', 'RA03', '13/04/2015', '-20700');
execute INSERTARWINS('153943', 'RA03', '13/04/2015', '-3500');
execute INSERTARWINS('153945', 'RA03', '13/04/2015', '-2500');
execute INSERTARWINS('143708', 'RA03', '14/04/2015', '1900');
execute INSERTARWINS('86172', 'RA02', '14/04/2015', '-8500');
execute INSERTARWINS('8018', 'RA02', '14/04/2015', '-2200');
execute INSERTARWINS('6794', 'RA03', '14/04/2015', '-4100');
execute INSERTARWINS('2906', 'RA03', '14/04/2015', '-300');
execute INSERTARWINS('108677', 'RA03', '14/04/2015', '1700');
execute INSERTARWINS('3292', 'RA03', '14/04/2015', '-3300');
execute INSERTARWINS('59528', 'RA02', '14/04/2015', '-400');
execute INSERTARWINS('938', 'RA03', '14/04/2015', '1000');
execute INSERTARWINS('183', 'RA03', '14/04/2015', '3000');
execute INSERTARWINS('153952', 'RA02', '14/04/2015', '700');
execute INSERTARWINS('53724', 'RA03', '14/04/2015', '-600');
execute INSERTARWINS('1287', 'RA03', '14/04/2015', '3400');
execute INSERTARWINS('153958', 'RA02', '14/04/2015', '-1000');
execute INSERTARWINS('38', 'RA03', '15/04/2015', '1900');
execute INSERTARWINS('2734', 'RA03', '15/04/2015', '-1000');
execute INSERTARWINS('8018', 'RA03', '15/04/2015', '-2100');
execute INSERTARWINS('59528', 'RA02', '15/04/2015', '-600');
execute INSERTARWINS('21468', 'RA02', '15/04/2015', '2100');
execute INSERTARWINS('108677', 'RA03', '15/04/2015', '200');
execute INSERTARWINS('143708', 'RA03', '15/04/2015', '4000');
execute INSERTARWINS('183', 'RA02', '15/04/2015', '-300');
execute INSERTARWINS('1287', 'RA02', '15/04/2015', '400');
execute INSERTARWINS('153969', 'RA03', '15/04/2015', '2500');
execute INSERTARWINS('153970', 'RA03', '15/04/2015', '2700');
execute INSERTARWINS('153972', 'RA02', '15/04/2015', '-2700');
execute INSERTARWINS('918', 'RA03', '16/04/2015', '-600');
execute INSERTARWINS('106633', 'RA03', '16/04/2015', '-200');
execute INSERTARWINS('107463', 'RA02', '16/04/2015', '500');
execute INSERTARWINS('95457', 'RA02', '16/04/2015', '-28700');
execute INSERTARWINS('108677', 'RA03', '16/04/2015', '500');
execute INSERTARWINS('353', 'RA02', '16/04/2015', '1000');
execute INSERTARWINS('143708', 'RA02', '16/04/2015', '2000');
execute INSERTARWINS('59528', 'RA02', '16/04/2015', '-600');
execute INSERTARWINS('139557', 'RA02', '16/04/2015', '1000');
execute INSERTARWINS('120264', 'RA02', '16/04/2015', '-200');
execute INSERTARWINS('24876', 'RA03', '16/04/2015', '-700');
execute INSERTARWINS('124606', 'RA03', '16/04/2015', '1000');
execute INSERTARWINS('963', 'RA03', '16/04/2015', '300');
execute INSERTARWINS('70376', 'RA02', '16/04/2015', '1300');
execute INSERTARWINS('868', 'RA02', '16/04/2015', '7300');
execute INSERTARWINS('149671', 'RA02', '16/04/2015', '2500');
execute INSERTARWINS('124732', 'RA02', '16/04/2015', '-600');
execute INSERTARWINS('21469', 'RA03', '16/04/2015', '-1100');
execute INSERTARWINS('21468', 'RA03', '16/04/2015', '700');
execute INSERTARWINS('109612', 'RA03', '16/04/2015', '3000');
execute INSERTARWINS('882', 'RA02', '16/04/2015', '-600');
execute INSERTARWINS('23995', 'RA02', '16/04/2015', '-1200');
execute INSERTARWINS('143708', 'RA02', '17/04/2015', '2000');
execute INSERTARWINS('86172', 'RA02', '17/04/2015', '3500');
execute INSERTARWINS('5329', 'RA03', '17/04/2015', '-500');
execute INSERTARWINS('59528', 'RA02', '17/04/2015', '-500');
execute INSERTARWINS('6794', 'RA02', '17/04/2015', '3600');
execute INSERTARWINS('108677', 'RA02', '17/04/2015', '1500');
execute INSERTARWINS('120209', 'RA03', '17/04/2015', '1000');
execute INSERTARWINS('183', 'RA03', '17/04/2015', '-700');
execute INSERTARWINS('7270', 'RA03', '17/04/2015', '600');
execute INSERTARWINS('50825', 'RA02', '17/04/2015', '-500');
execute INSERTARWINS('130214', 'RA03', '17/04/2015', '-1500');
execute INSERTARWINS('154019', 'RA03', '17/04/2015', '-1000');
execute INSERTARWINS('118354', 'RA03', '17/04/2015', '3800');
execute INSERTARWINS('136951', 'RA02', '17/04/2015', '3500');
execute INSERTARWINS('694', 'RA03', '17/04/2015', '2000');
execute INSERTARWINS('153970', 'RA03', '17/04/2015', '1100');
execute INSERTARWINS('153969', 'RA03', '17/04/2015', '-2000');
execute INSERTARWINS('21469', 'RA03', '18/04/2015', '-1600');
execute INSERTARWINS('21468', 'RA03', '18/04/2015', '-1000');
execute INSERTARWINS('108677', 'RA02', '18/04/2015', '500');
execute INSERTARWINS('5943', 'RA03', '18/04/2015', '500');
execute INSERTARWINS('79572', 'RA03', '18/04/2015', '500');
execute INSERTARWINS('970', 'RA02', '18/04/2015', '-1000');
execute INSERTARWINS('938', 'RA03', '18/04/2015', '500');
execute INSERTARWINS('23995', 'RA02', '18/04/2015', '400');
execute INSERTARWINS('3292', 'RA02', '18/04/2015', '-800');
execute INSERTARWINS('152165', 'RA02', '18/04/2015', '-200');
execute INSERTARWINS('110598', 'RA03', '18/04/2015', '-100');
execute INSERTARWINS('138371', 'RA03', '18/04/2015', '-300');
execute INSERTARWINS('140491', 'RA02', '18/04/2015', '1500');
execute INSERTARWINS('1287', 'RA03', '18/04/2015', '-300');
execute INSERTARWINS('3093', 'RA03', '19/04/2015', '-1000');
execute INSERTARWINS('143708', 'RA02', '19/04/2015', '1700');
execute INSERTARWINS('124652', 'RA03', '19/04/2015', '1000');
execute INSERTARWINS('128977', 'RA02', '19/04/2015', '1200');
execute INSERTARWINS('963', 'RA03', '19/04/2015', '300');
execute INSERTARWINS('938', 'RA03', '19/04/2015', '500');
execute INSERTARWINS('15469', 'RA03', '19/04/2015', '900');
execute INSERTARWINS('109612', 'RA02', '19/04/2015', '3000');
execute INSERTARWINS('1287', 'RA02', '19/04/2015', '-500');
execute INSERTARWINS('53724', 'RA03', '19/04/2015', '-300');
execute INSERTARWINS('135581', 'RA02', '20/04/2015', '-1000');
execute INSERTARWINS('108677', 'RA02', '20/04/2015', '400');
execute INSERTARWINS('107981', 'RA03', '20/04/2015', '11000');
execute INSERTARWINS('153064', 'RA02', '20/04/2015', '-500');
execute INSERTARWINS('768', 'RA02', '20/04/2015', '17000');
execute INSERTARWINS('8018', 'RA02', '20/04/2015', '900');
execute INSERTARWINS('149014', 'RA02', '20/04/2015', '1500');
execute INSERTARWINS('86172', 'RA02', '20/04/2015', '1000');
execute INSERTARWINS('694', 'RA03', '20/04/2015', '500');
execute INSERTARWINS('120264', 'RA02', '20/04/2015', '-600');
execute INSERTARWINS('183', 'RA03', '20/04/2015', '-1500');
execute INSERTARWINS('1287', 'RA03', '20/04/2015', '-200');
execute INSERTARWINS('154085', 'RA02', '20/04/2015', '400');
execute INSERTARWINS('8018', 'RA03', '21/04/2015', '-500');
execute INSERTARWINS('6794', 'RA03', '21/04/2015', '3800');
execute INSERTARWINS('23995', 'RA02', '21/04/2015', '1400');
execute INSERTARWINS('59528', 'RA02', '21/04/2015', '-500');
execute INSERTARWINS('60337', 'RA02', '21/04/2015', '-1500');
execute INSERTARWINS('6706', 'RA03', '21/04/2015', '-3100');
execute INSERTARWINS('447', 'RA03', '21/04/2015', '300');
execute INSERTARWINS('154102', 'RA02', '21/04/2015', '-2000');
execute INSERTARWINS('154103', 'RA03', '21/04/2015', '-2700');
execute INSERTARWINS('56558', 'RA03', '21/04/2015', '-2500');
execute INSERTARWINS('75024', 'RA03', '21/04/2015', '-2100');
execute INSERTARWINS('154104', 'RA02', '21/04/2015', '-1300');
execute INSERTARWINS('146', 'RA03', '21/04/2015', '300');
execute INSERTARWINS('154106', 'RA02', '21/04/2015', '-700');
execute INSERTARWINS('109612', 'RA02', '21/04/2015', '2100');
execute INSERTARWINS('108677', 'RA02', '22/04/2015', '600');
execute INSERTARWINS('59528', 'RA03', '22/04/2015', '-500');
execute INSERTARWINS('154102', 'RA03', '22/04/2015', '900');
execute INSERTARWINS('17969', 'RA03', '22/04/2015', '-11100');
execute INSERTARWINS('76865', 'RA02', '22/04/2015', '2500');
execute INSERTARWINS('109612', 'RA02', '22/04/2015', '300');
execute INSERTARWINS('1287', 'RA02', '22/04/2015', '-1200');
execute INSERTARWINS('45855', 'RA02', '22/04/2015', '-4500');
execute INSERTARWINS('6794', 'RA03', '23/04/2015', '-2500');
execute INSERTARWINS('143708', 'RA03', '23/04/2015', '-18000');
execute INSERTARWINS('86172', 'RA03', '23/04/2015', '300');
execute INSERTARWINS('149014', 'RA02', '23/04/2015', '-1500');
execute INSERTARWINS('149671', 'RA02', '23/04/2015', '200');
execute INSERTARWINS('694', 'RA02', '23/04/2015', '1000');
execute INSERTARWINS('120264', 'RA02', '23/04/2015', '-1500');
execute INSERTARWINS('963', 'RA03', '23/04/2015', '700');
execute INSERTARWINS('21506', 'RA02', '23/04/2015', '-800');
execute INSERTARWINS('154132', 'RA03', '23/04/2015', '200');
execute INSERTARWINS('109612', 'RA02', '23/04/2015', '1000');
execute INSERTARWINS('23633', 'RA03', '23/04/2015', '-3600');
execute INSERTARWINS('154133', 'RA03', '23/04/2015', '-25500');
execute INSERTARWINS('882', 'RA03', '23/04/2015', '-500');
execute INSERTARWINS('447', 'RA02', '23/04/2015', '2300');
execute INSERTARWINS('21468', 'RA03', '24/04/2015', '-1200');
execute INSERTARWINS('938', 'RA03', '24/04/2015', '500');
execute INSERTARWINS('357', 'RA03', '24/04/2015', '500');
execute INSERTARWINS('21843', 'RA03', '24/04/2015', '-1100');
execute INSERTARWINS('118634', 'RA03', '24/04/2015', '-800');
execute INSERTARWINS('154102', 'RA03', '24/04/2015', '-2600');
execute INSERTARWINS('165', 'RA03', '24/04/2015', '1000');
execute INSERTARWINS('53724', 'RA03', '24/04/2015', '-4200');
execute INSERTARWINS('1287', 'RA02', '24/04/2015', '-1000');
execute INSERTARWINS('2734', 'RA03', '24/04/2015', '500');
execute INSERTARWINS('109612', 'RA03', '24/04/2015', '-800');
execute INSERTARWINS('868', 'RA02', '24/04/2015', '4000');
execute INSERTARWINS('694', 'RA03', '24/04/2015', '1300');
execute INSERTARWINS('38', 'RA03', '25/04/2015', '-1200');
execute INSERTARWINS('86172', 'RA03', '25/04/2015', '-3200');
execute INSERTARWINS('154102', 'RA03', '25/04/2015', '-4800');
execute INSERTARWINS('357', 'RA02', '25/04/2015', '-2500');
execute INSERTARWINS('694', 'RA03', '25/04/2015', '-3500');
execute INSERTARWINS('60337', 'RA03', '25/04/2015', '-1700');
execute INSERTARWINS('970', 'RA03', '25/04/2015', '-500');
execute INSERTARWINS('167', 'RA02', '25/04/2015', '-600');
execute INSERTARWINS('72273', 'RA03', '25/04/2015', '-700');
execute INSERTARWINS('137314', 'RA02', '25/04/2015', '-2000');
execute INSERTARWINS('963', 'RA02', '25/04/2015', '-400');
execute INSERTARWINS('154221', 'RA03', '25/04/2015', '1500');
execute INSERTARWINS('141785', 'RA02', '26/04/2015', '1000');
execute INSERTARWINS('28908', 'RA03', '26/04/2015', '1500');
execute INSERTARWINS('1163', 'RA02', '26/04/2015', '-600');
execute INSERTARWINS('938', 'RA02', '26/04/2015', '-300');
execute INSERTARWINS('69103', 'RA02', '26/04/2015', '2900');
execute INSERTARWINS('153043', 'RA03', '26/04/2015', '2000');
execute INSERTARWINS('116870', 'RA02', '26/04/2015', '1000');
execute INSERTARWINS('138371', 'RA02', '26/04/2015', '-500');
execute INSERTARWINS('150666', 'RA02', '26/04/2015', '2300');
execute INSERTARWINS('868', 'RA03', '26/04/2015', '1400');
execute INSERTARWINS('131398', 'RA02', '26/04/2015', '4300');
execute INSERTARWINS('17748', 'RA03', '27/04/2015', '-1200');
execute INSERTARWINS('357', 'RA03', '27/04/2015', '-600');
execute INSERTARWINS('143708', 'RA03', '27/04/2015', '5000');
execute INSERTARWINS('154102', 'RA03', '27/04/2015', '-21700');
execute INSERTARWINS('8018', 'RA02', '27/04/2015', '-3000');
execute INSERTARWINS('153043', 'RA03', '27/04/2015', '-1500');
execute INSERTARWINS('154247', 'RA02', '27/04/2015', '-500');
execute INSERTARWINS('868', 'RA03', '27/04/2015', '-200');
execute INSERTARWINS('938', 'RA03', '27/04/2015', '1000');
execute INSERTARWINS('143708', 'RA03', '28/04/2015', '1000');
execute INSERTARWINS('12180', 'RA03', '28/04/2015', '-1000');
execute INSERTARWINS('6794', 'RA02', '28/04/2015', '2800');
execute INSERTARWINS('23995', 'RA02', '28/04/2015', '400');
execute INSERTARWINS('15469', 'RA03', '28/04/2015', '1000');
execute INSERTARWINS('38', 'RA03', '29/04/2015', '500');
execute INSERTARWINS('138371', 'RA02', '29/04/2015', '200');
execute INSERTARWINS('143708', 'RA02', '29/04/2015', '10000');
execute INSERTARWINS('28908', 'RA02', '29/04/2015', '-2200');
execute INSERTARWINS('108677', 'RA03', '29/04/2015', '700');
execute INSERTARWINS('8018', 'RA02', '29/04/2015', '-1600');
execute INSERTARWINS('938', 'RA02', '29/04/2015', '1300');
execute INSERTARWINS('92194', 'RA02', '29/04/2015', '-1000');
execute INSERTARWINS('108677', 'RA03', '30/04/2015', '-12500');
execute INSERTARWINS('425', 'RA03', '30/04/2015', '1000');
execute INSERTARWINS('963', 'RA02', '30/04/2015', '-1800');
execute INSERTARWINS('23995', 'RA03', '30/04/2015', '3200');
execute INSERTARWINS('938', 'RA02', '30/04/2015', '-1100');
execute INSERTARWINS('24876', 'RA02', '30/04/2015', '200');
execute INSERTARWINS('153043', 'RA02', '30/04/2015', '-2800');
execute INSERTARWINS('143708', 'RA02', '30/04/2015', '-23500');
execute INSERTARWINS('1287', 'RA02', '30/04/2015', '1000');
execute INSERTARWINS('19112', 'RA02', '30/04/2015', '-600');
execute INSERTARWINS('76865', 'RA03', '30/04/2015', '-1300');
execute INSERTARWINS('15469', 'RA02', '30/04/2015', '1500');
execute INSERTARWINS('92194', 'RA02', '01/05/2015', '1400');
execute INSERTARWINS('108677', 'RA03', '01/05/2015', '2700');
execute INSERTARWINS('154310', 'RA02', '01/05/2015', '-10000');
execute INSERTARWINS('73143', 'RA03', '01/05/2015', '-700');
execute INSERTARWINS('19112', 'RA03', '01/05/2015', '-3000');
execute INSERTARWINS('92194', 'RA03', '02/05/2015', '1500');
execute INSERTARWINS('143708', 'RA02', '02/05/2015', '-6200');
execute INSERTARWINS('43848', 'RA02', '02/05/2015', '1000');
execute INSERTARWINS('108677', 'RA02', '02/05/2015', '3000');
execute INSERTARWINS('963', 'RA03', '02/05/2015', '700');
execute INSERTARWINS('15469', 'RA02', '02/05/2015', '-800');
execute INSERTARWINS('140491', 'RA02', '02/05/2015', '1500');
execute INSERTARWINS('137899', 'RA03', '02/05/2015', '-300');
execute INSERTARWINS('154374', 'RA03', '03/05/2015', '-3500');
execute INSERTARWINS('938', 'RA03', '03/05/2015', '500');
execute INSERTARWINS('3142', 'RA03', '03/05/2015', '400');
execute INSERTARWINS('69103', 'RA02', '03/05/2015', '-1700');
execute INSERTARWINS('124652', 'RA02', '03/05/2015', '-700');
execute INSERTARWINS('94544', 'RA02', '03/05/2015', '500');
execute INSERTARWINS('124011', 'RA02', '03/05/2015', '-1600');
execute INSERTARWINS('6649', 'RA02', '03/05/2015', '-200');
execute INSERTARWINS('53724', 'RA03', '03/05/2015', '6000');
execute INSERTARWINS('123556', 'RA02', '03/05/2015', '3500');
execute INSERTARWINS('154374', 'RA03', '04/05/2015', '-800');
execute INSERTARWINS('81838', 'RA02', '04/05/2015', '-300');
execute INSERTARWINS('26228', 'RA03', '04/05/2015', '-700');
execute INSERTARWINS('149014', 'RA02', '04/05/2015', '1400');
execute INSERTARWINS('108677', 'RA02', '04/05/2015', '1100');
execute INSERTARWINS('28908', 'RA02', '04/05/2015', '-600');
execute INSERTARWINS('38', 'RA03', '04/05/2015', '2600');
execute INSERTARWINS('86205', 'RA03', '04/05/2015', '500');
execute INSERTARWINS('8018', 'RA03', '04/05/2015', '15000');
execute INSERTARWINS('2364', 'RA03', '04/05/2015', '800');
execute INSERTARWINS('154399', 'RA03', '04/05/2015', '2900');
execute INSERTARWINS('938', 'RA03', '04/05/2015', '-700');
execute INSERTARWINS('70533', 'RA03', '04/05/2015', '200');
execute INSERTARWINS('53724', 'RA02', '04/05/2015', '-300');
execute INSERTARWINS('154402', 'RA02', '04/05/2015', '1300');
execute INSERTARWINS('17748', 'RA03', '05/05/2015', '800');
execute INSERTARWINS('135369', 'RA03', '05/05/2015', '2800');
execute INSERTARWINS('81838', 'RA03', '05/05/2015', '-100');
execute INSERTARWINS('6794', 'RA03', '05/05/2015', '3200');
execute INSERTARWINS('8018', 'RA02', '05/05/2015', '6200');
execute INSERTARWINS('760', 'RA03', '05/05/2015', '400');
execute INSERTARWINS('938', 'RA02', '05/05/2015', '-1000');
execute INSERTARWINS('138371', 'RA02', '05/05/2015', '1500');
execute INSERTARWINS('154402', 'RA03', '05/05/2015', '-4800');
execute INSERTARWINS('53724', 'RA02', '05/05/2015', '-1900');
execute INSERTARWINS('78977', 'RA02', '05/05/2015', '1400');
execute INSERTARWINS('131398', 'RA02', '05/05/2015', '-300');
execute INSERTARWINS('70533', 'RA03', '05/05/2015', '100');
execute INSERTARWINS('150447', 'RA02', '05/05/2015', '1000');
execute INSERTARWINS('151568', 'RA02', '05/05/2015', '-1200');
execute INSERTARWINS('73143', 'RA03', '05/05/2015', '-800');
execute INSERTARWINS('938', 'RA03', '06/05/2015', '-4000');
execute INSERTARWINS('6794', 'RA02', '06/05/2015', '-1500');
execute INSERTARWINS('92194', 'RA02', '06/05/2015', '1000');
execute INSERTARWINS('8018', 'RA02', '06/05/2015', '-900');
execute INSERTARWINS('28908', 'RA03', '06/05/2015', '600');
execute INSERTARWINS('23995', 'RA02', '06/05/2015', '-1900');
execute INSERTARWINS('143708', 'RA03', '06/05/2015', '8000');
execute INSERTARWINS('69103', 'RA03', '06/05/2015', '-500');
execute INSERTARWINS('154435', 'RA03', '06/05/2015', '6200');
execute INSERTARWINS('109612', 'RA02', '06/05/2015', '2500');
execute INSERTARWINS('144793', 'RA03', '06/05/2015', '-1000');
execute INSERTARWINS('147146', 'RA03', '06/05/2015', '2000');
execute INSERTARWINS('129895', 'RA02', '06/05/2015', '-7500');
execute INSERTARWINS('24876', 'RA03', '07/05/2015', '-800');
execute INSERTARWINS('149014', 'RA03', '07/05/2015', '-1600');
execute INSERTARWINS('963', 'RA03', '07/05/2015', '900');
execute INSERTARWINS('23995', 'RA03', '07/05/2015', '500');
execute INSERTARWINS('143708', 'RA03', '07/05/2015', '-23700');
execute INSERTARWINS('6741', 'RA03', '07/05/2015', '1000');
execute INSERTARWINS('108677', 'RA03', '07/05/2015', '1400');
execute INSERTARWINS('6794', 'RA03', '07/05/2015', '600');
execute INSERTARWINS('760', 'RA03', '07/05/2015', '1200');
execute INSERTARWINS('183', 'RA03', '07/05/2015', '400');
execute INSERTARWINS('154461', 'RA02', '07/05/2015', '900');
execute INSERTARWINS('938', 'RA02', '07/05/2015', '-1400');
execute INSERTARWINS('970', 'RA02', '07/05/2015', '500');
execute INSERTARWINS('28908', 'RA02', '07/05/2015', '-3200');
execute INSERTARWINS('109612', 'RA02', '07/05/2015', '1400');
execute INSERTARWINS('694', 'RA03', '07/05/2015', '-3000');
execute INSERTARWINS('17748', 'RA03', '08/05/2015', '600');
execute INSERTARWINS('1674', 'RA02', '08/05/2015', '-1500');
execute INSERTARWINS('108677', 'RA02', '08/05/2015', '500');
execute INSERTARWINS('154429', 'RA02', '08/05/2015', '-1500');
execute INSERTARWINS('8018', 'RA03', '08/05/2015', '2600');
execute INSERTARWINS('81838', 'RA03', '08/05/2015', '-200');
execute INSERTARWINS('23995', 'RA02', '08/05/2015', '-3500');
execute INSERTARWINS('69103', 'RA03', '08/05/2015', '4600');
execute INSERTARWINS('116870', 'RA03', '08/05/2015', '1000');
execute INSERTARWINS('103394', 'RA03', '08/05/2015', '3800');
execute INSERTARWINS('6706', 'RA03', '08/05/2015', '-3500');
execute INSERTARWINS('109612', 'RA03', '08/05/2015', '-300');
execute INSERTARWINS('17748', 'RA03', '09/05/2015', '-900');
execute INSERTARWINS('760', 'RA02', '09/05/2015', '-300');
execute INSERTARWINS('23995', 'RA02', '09/05/2015', '2500');
execute INSERTARWINS('109612', 'RA02', '09/05/2015', '-2300');
execute INSERTARWINS('53724', 'RA03', '09/05/2015', '1100');
execute INSERTARWINS('103394', 'RA02', '09/05/2015', '-1500');
execute INSERTARWINS('963', 'RA03', '10/05/2015', '400');
execute INSERTARWINS('938', 'RA03', '10/05/2015', '-1400');
execute INSERTARWINS('17748', 'RA03', '10/05/2015', '-1200');
execute INSERTARWINS('3292', 'RA02', '10/05/2015', '-1500');
execute INSERTARWINS('2967', 'RA03', '10/05/2015', '1000');
execute INSERTARWINS('3142', 'RA03', '10/05/2015', '3000');
execute INSERTARWINS('918', 'RA03', '10/05/2015', '-800');
execute INSERTARWINS('53724', 'RA03', '10/05/2015', '-900');
execute INSERTARWINS('154582', 'RA03', '10/05/2015', '-1000');
execute INSERTARWINS('148178', 'RA03', '10/05/2015', '-700');
execute INSERTARWINS('128148', 'RA03', '11/05/2015', '1400');
execute INSERTARWINS('38', 'RA02', '11/05/2015', '-3000');
execute INSERTARWINS('911', 'RA03', '11/05/2015', '1600');
execute INSERTARWINS('8018', 'RA02', '11/05/2015', '-1200');
execute INSERTARWINS('108677', 'RA02', '11/05/2015', '-1500');
execute INSERTARWINS('154429', 'RA03', '11/05/2015', '-5400');
execute INSERTARWINS('6794', 'RA03', '11/05/2015', '-5100');
execute INSERTARWINS('138849', 'RA03', '11/05/2015', '3700');
execute INSERTARWINS('447', 'RA03', '11/05/2015', '-100');
execute INSERTARWINS('86172', 'RA02', '11/05/2015', '-2500');
execute INSERTARWINS('143708', 'RA03', '11/05/2015', '-8600');
execute INSERTARWINS('150292', 'RA03', '11/05/2015', '2000');
execute INSERTARWINS('154595', 'RA03', '11/05/2015', '4000');
execute INSERTARWINS('8018', 'RA02', '12/05/2015', '-1000');
execute INSERTARWINS('918', 'RA02', '12/05/2015', '-700');
execute INSERTARWINS('142027', 'RA02', '12/05/2015', '-700');
execute INSERTARWINS('183', 'RA02', '12/05/2015', '1300');
execute INSERTARWINS('150447', 'RA02', '12/05/2015', '400');
execute INSERTARWINS('138849', 'RA02', '12/05/2015', '2800');
execute INSERTARWINS('8139', 'RA02', '12/05/2015', '-500');
execute INSERTARWINS('154606', 'RA02', '12/05/2015', '-2500');
execute INSERTARWINS('6794', 'RA02', '13/05/2015', '-3100');
execute INSERTARWINS('142027', 'RA02', '13/05/2015', '-1800');
execute INSERTARWINS('17748', 'RA02', '13/05/2015', '-500');
execute INSERTARWINS('8018', 'RA03', '13/05/2015', '-1000');
execute INSERTARWINS('938', 'RA03', '13/05/2015', '300');
execute INSERTARWINS('43024', 'RA03', '13/05/2015', '-100');
execute INSERTARWINS('154595', 'RA03', '13/05/2015', '1000');
execute INSERTARWINS('70533', 'RA03', '13/05/2015', '-800');
execute INSERTARWINS('1287', 'RA03', '13/05/2015', '-200');
execute INSERTARWINS('1722', 'RA03', '13/05/2015', '-400');
execute INSERTARDROPS('151264', 'RA03', '01/01/2015', '1500');
execute INSERTARDROPS('75024', 'RA03', '01/01/2015', '700');
execute INSERTARDROPS('81712', 'RA03', '01/01/2015', '900');
execute INSERTARDROPS('7270', 'RA03', '01/01/2015', '1900');
execute INSERTARDROPS('53724', 'RA03', '01/01/2015', '300');
execute INSERTARDROPS('143708', 'RA02', '01/01/2015', '1100');
execute INSERTARDROPS('151290', 'RA02', '01/01/2015', '900');
execute INSERTARDROPS('150363', 'RA03', '01/01/2015', '1200');
execute INSERTARDROPS('8018', 'RA03', '02/01/2015', '1500');
execute INSERTARDROPS('925', 'RA03', '02/01/2015', '1000');
execute INSERTARDROPS('21469', 'RA02', '02/01/2015', '800');
execute INSERTARDROPS('7270', 'RA02', '02/01/2015', '2300');
execute INSERTARDROPS('28908', 'RA02', '02/01/2015', '300');
execute INSERTARDROPS('107123', 'RA03', '02/01/2015', '1300');
execute INSERTARDROPS('74665', 'RA03', '02/01/2015', '2000');
execute INSERTARDROPS('53724', 'RA03', '02/01/2015', '300');
execute INSERTARDROPS('23995', 'RA02', '02/01/2015', '1000');
execute INSERTARDROPS('86172', 'RA03', '03/01/2015', '1200');
execute INSERTARDROPS('143708', 'RA03', '03/01/2015', '7800');
execute INSERTARDROPS('7270', 'RA03', '03/01/2015', '1600');
execute INSERTARDROPS('846', 'RA03', '03/01/2015', '5800');
execute INSERTARDROPS('75024', 'RA02', '03/01/2015', '2200');
execute INSERTARDROPS('6343', 'RA02', '03/01/2015', '800');
execute INSERTARDROPS('150603', 'RA02', '03/01/2015', '1900');
execute INSERTARDROPS('963', 'RA02', '04/01/2015', '200');
execute INSERTARDROPS('3292', 'RA02', '04/01/2015', '400');
execute INSERTARDROPS('4542', 'RA02', '04/01/2015', '600');
execute INSERTARDROPS('7609', 'RA02', '04/01/2015', '200');
execute INSERTARDROPS('112577', 'RA02', '04/01/2015', '800');
execute INSERTARDROPS('143708', 'RA03', '04/01/2015', '2000');
execute INSERTARDROPS('151387', 'RA03', '04/01/2015', '600');
execute INSERTARDROPS('19112', 'RA03', '04/01/2015', '600');
execute INSERTARDROPS('8018', 'RA03', '04/01/2015', '100');
execute INSERTARDROPS('55914', 'RA02', '04/01/2015', '2000');
execute INSERTARDROPS('28908', 'RA03', '04/01/2015', '1000');
execute INSERTARDROPS('103328', 'RA03', '04/01/2015', '700');
execute INSERTARDROPS('132055', 'RA02', '04/01/2015', '1000');
execute INSERTARDROPS('121576', 'RA03', '04/01/2015', '300');
execute INSERTARDROPS('40995', 'RA02', '04/01/2015', '800');
execute INSERTARDROPS('7270', 'RA02', '04/01/2015', '200');
execute INSERTARDROPS('123330', 'RA03', '04/01/2015', '100');
execute INSERTARDROPS('28908', 'RA03', '05/01/2015', '5500');
execute INSERTARDROPS('14172', 'RA03', '05/01/2015', '1400');
execute INSERTARDROPS('56787', 'RA03', '05/01/2015', '900');
execute INSERTARDROPS('33494', 'RA03', '05/01/2015', '900');
execute INSERTARDROPS('112577', 'RA02', '05/01/2015', '1600');
execute INSERTARDROPS('21553', 'RA03', '05/01/2015', '900');
execute INSERTARDROPS('7270', 'RA02', '05/01/2015', '2200');
execute INSERTARDROPS('123252', 'RA03', '05/01/2015', '2700');
execute INSERTARDROPS('53724', 'RA03', '05/01/2015', '400');
execute INSERTARDROPS('7270', 'RA03', '06/01/2015', '500');
execute INSERTARDROPS('8018', 'RA03', '06/01/2015', '500');
execute INSERTARDROPS('1319', 'RA03', '06/01/2015', '300');
execute INSERTARDROPS('40995', 'RA03', '06/01/2015', '1400');
execute INSERTARDROPS('143708', 'RA03', '06/01/2015', '1000');
execute INSERTARDROPS('53724', 'RA03', '06/01/2015', '2300');
execute INSERTARDROPS('121576', 'RA03', '06/01/2015', '200');
execute INSERTARDROPS('88209', 'RA03', '07/01/2015', '2000');
execute INSERTARDROPS('120929', 'RA03', '07/01/2015', '1200');
execute INSERTARDROPS('8018', 'RA03', '07/01/2015', '800');
execute INSERTARDROPS('6794', 'RA03', '07/01/2015', '3400');
execute INSERTARDROPS('143708', 'RA02', '07/01/2015', '7700');
execute INSERTARDROPS('1287', 'RA03', '07/01/2015', '400');
execute INSERTARDROPS('925', 'RA03', '07/01/2015', '900');
execute INSERTARDROPS('122372', 'RA02', '07/01/2015', '800');
execute INSERTARDROPS('33494', 'RA03', '08/01/2015', '3000');
execute INSERTARDROPS('5329', 'RA03', '08/01/2015', '500');
execute INSERTARDROPS('23124', 'RA02', '08/01/2015', '600');
execute INSERTARDROPS('425', 'RA02', '08/01/2015', '2300');
execute INSERTARDROPS('183', 'RA02', '08/01/2015', '100');
execute INSERTARDROPS('143708', 'RA02', '08/01/2015', '1200');
execute INSERTARDROPS('882', 'RA02', '08/01/2015', '1200');
execute INSERTARDROPS('107123', 'RA03', '09/01/2015', '1200');
execute INSERTARDROPS('143708', 'RA02', '09/01/2015', '4800');
execute INSERTARDROPS('81838', 'RA03', '09/01/2015', '700');
execute INSERTARDROPS('7270', 'RA03', '09/01/2015', '300');
execute INSERTARDROPS('122372', 'RA03', '09/01/2015', '1000');
execute INSERTARDROPS('109612', 'RA02', '09/01/2015', '2400');
execute INSERTARDROPS('7270', 'RA03', '10/01/2015', '1700');
execute INSERTARDROPS('24649', 'RA03', '10/01/2015', '600');
execute INSERTARDROPS('963', 'RA03', '10/01/2015', '1300');
execute INSERTARDROPS('101580', 'RA02', '10/01/2015', '300');
execute INSERTARDROPS('143708', 'RA03', '10/01/2015', '19300');
execute INSERTARDROPS('3036', 'RA02', '10/01/2015', '1000');
execute INSERTARDROPS('76865', 'RA02', '10/01/2015', '1000');
execute INSERTARDROPS('1287', 'RA02', '10/01/2015', '2400');
execute INSERTARDROPS('76237', 'RA02', '10/01/2015', '700');
execute INSERTARDROPS('6343', 'RA03', '10/01/2015', '300');
execute INSERTARDROPS('53724', 'RA03', '10/01/2015', '1200');
execute INSERTARDROPS('112577', 'RA03', '10/01/2015', '1000');
execute INSERTARDROPS('53724', 'RA03', '11/01/2015', '2000');
execute INSERTARDROPS('148346', 'RA03', '11/01/2015', '900');
execute INSERTARDROPS('81129', 'RA03', '11/01/2015', '1000');
execute INSERTARDROPS('55914', 'RA03', '11/01/2015', '3000');
execute INSERTARDROPS('21843', 'RA03', '11/01/2015', '400');
execute INSERTARDROPS('118634', 'RA02', '11/01/2015', '1400');
execute INSERTARDROPS('8018', 'RA03', '11/01/2015', '1000');
execute INSERTARDROPS('143708', 'RA03', '11/01/2015', '9200');
execute INSERTARDROPS('24649', 'RA03', '11/01/2015', '3000');
execute INSERTARDROPS('13104', 'RA02', '11/01/2015', '700');
execute INSERTARDROPS('75024', 'RA03', '11/01/2015', '1200');
execute INSERTARDROPS('846', 'RA03', '11/01/2015', '600');
execute INSERTARDROPS('112577', 'RA03', '12/01/2015', '1900');
execute INSERTARDROPS('28908', 'RA03', '12/01/2015', '7600');
execute INSERTARDROPS('31194', 'RA02', '12/01/2015', '2000');
execute INSERTARDROPS('144795', 'RA02', '12/01/2015', '11300');
execute INSERTARDROPS('151564', 'RA03', '12/01/2015', '500');
execute INSERTARDROPS('24649', 'RA03', '12/01/2015', '1700');
execute INSERTARDROPS('143708', 'RA02', '12/01/2015', '5000');
execute INSERTARDROPS('70533', 'RA02', '12/01/2015', '900');
execute INSERTARDROPS('846', 'RA02', '12/01/2015', '1100');
execute INSERTARDROPS('1674', 'RA03', '13/01/2015', '800');
execute INSERTARDROPS('3036', 'RA03', '13/01/2015', '600');
execute INSERTARDROPS('59528', 'RA03', '13/01/2015', '300');
execute INSERTARDROPS('2906', 'RA03', '13/01/2015', '100');
execute INSERTARDROPS('21843', 'RA02', '13/01/2015', '800');
execute INSERTARDROPS('118634', 'RA02', '13/01/2015', '1400');
execute INSERTARDROPS('143708', 'RA02', '13/01/2015', '300');
execute INSERTARDROPS('53724', 'RA02', '13/01/2015', '600');
execute INSERTARDROPS('123330', 'RA02', '13/01/2015', '1400');
execute INSERTARDROPS('21469', 'RA03', '14/01/2015', '800');
execute INSERTARDROPS('59528', 'RA03', '14/01/2015', '900');
execute INSERTARDROPS('120264', 'RA02', '14/01/2015', '800');
execute INSERTARDROPS('925', 'RA02', '14/01/2015', '1000');
execute INSERTARDROPS('143708', 'RA02', '14/01/2015', '900');
execute INSERTARDROPS('122372', 'RA03', '14/01/2015', '1400');
execute INSERTARDROPS('112577', 'RA03', '14/01/2015', '500');
execute INSERTARDROPS('53724', 'RA03', '14/01/2015', '2100');
execute INSERTARDROPS('69103', 'RA02', '14/01/2015', '1400');
execute INSERTARDROPS('151574', 'RA03', '15/01/2015', '400');
execute INSERTARDROPS('143708', 'RA02', '15/01/2015', '5800');
execute INSERTARDROPS('846', 'RA03', '15/01/2015', '4100');
execute INSERTARDROPS('1674', 'RA03', '16/01/2015', '500');
execute INSERTARDROPS('33494', 'RA03', '16/01/2015', '1100');
execute INSERTARDROPS('108677', 'RA03', '16/01/2015', '500');
execute INSERTARDROPS('5329', 'RA03', '16/01/2015', '200');
execute INSERTARDROPS('19499', 'RA03', '16/01/2015', '500');
execute INSERTARDROPS('143708', 'RA03', '16/01/2015', '3000');
execute INSERTARDROPS('882', 'RA02', '16/01/2015', '500');
execute INSERTARDROPS('846', 'RA02', '16/01/2015', '2200');
execute INSERTARDROPS('143708', 'RA03', '17/01/2015', '500');
execute INSERTARDROPS('28908', 'RA03', '17/01/2015', '3300');
execute INSERTARDROPS('150638', 'RA03', '17/01/2015', '1800');
execute INSERTARDROPS('572', 'RA02', '17/01/2015', '900');
execute INSERTARDROPS('150447', 'RA02', '17/01/2015', '800');
execute INSERTARDROPS('76865', 'RA02', '17/01/2015', '1000');
execute INSERTARDROPS('6343', 'RA02', '17/01/2015', '1200');
execute INSERTARDROPS('882', 'RA03', '17/01/2015', '1100');
execute INSERTARDROPS('109612', 'RA03', '17/01/2015', '500');
execute INSERTARDROPS('150603', 'RA03', '17/01/2015', '500');
execute INSERTARDROPS('572', 'RA03', '18/01/2015', '3100');
execute INSERTARDROPS('8018', 'RA03', '18/01/2015', '500');
execute INSERTARDROPS('143708', 'RA03', '18/01/2015', '6000');
execute INSERTARDROPS('84691', 'RA03', '18/01/2015', '2100');
execute INSERTARDROPS('76865', 'RA03', '18/01/2015', '2500');
execute INSERTARDROPS('151685', 'RA02', '18/01/2015', '2200');
execute INSERTARDROPS('146154', 'RA03', '18/01/2015', '3000');
execute INSERTARDROPS('704', 'RA03', '19/01/2015', '900');
execute INSERTARDROPS('3292', 'RA03', '19/01/2015', '4000');
execute INSERTARDROPS('3036', 'RA03', '19/01/2015', '2000');
execute INSERTARDROPS('2906', 'RA02', '19/01/2015', '400');
execute INSERTARDROPS('8018', 'RA02', '19/01/2015', '700');
execute INSERTARDROPS('143708', 'RA03', '19/01/2015', '4000');
execute INSERTARDROPS('69103', 'RA03', '19/01/2015', '1400');
execute INSERTARDROPS('183', 'RA02', '19/01/2015', '500');
execute INSERTARDROPS('53724', 'RA03', '19/01/2015', '1000');
execute INSERTARDROPS('109612', 'RA03', '19/01/2015', '300');
execute INSERTARDROPS('67545', 'RA03', '19/01/2015', '3200');
execute INSERTARDROPS('112577', 'RA03', '19/01/2015', '700');
execute INSERTARDROPS('28908', 'RA03', '20/01/2015', '200');
execute INSERTARDROPS('120264', 'RA03', '20/01/2015', '600');
execute INSERTARDROPS('23995', 'RA02', '20/01/2015', '300');
execute INSERTARDROPS('48473', 'RA02', '20/01/2015', '800');
execute INSERTARDROPS('151685', 'RA02', '20/01/2015', '500');
execute INSERTARDROPS('4542', 'RA03', '20/01/2015', '400');
execute INSERTARDROPS('53724', 'RA02', '20/01/2015', '400');
execute INSERTARDROPS('183', 'RA02', '20/01/2015', '600');
execute INSERTARDROPS('40995', 'RA02', '20/01/2015', '600');
execute INSERTARDROPS('126335', 'RA02', '20/01/2015', '900');
execute INSERTARDROPS('109612', 'RA03', '20/01/2015', '500');
execute INSERTARDROPS('8018', 'RA03', '21/01/2015', '1100');
execute INSERTARDROPS('768', 'RA03', '21/01/2015', '2000');
execute INSERTARDROPS('59528', 'RA03', '21/01/2015', '200');
execute INSERTARDROPS('69103', 'RA03', '21/01/2015', '500');
execute INSERTARDROPS('17969', 'RA02', '21/01/2015', '1200');
execute INSERTARDROPS('40995', 'RA03', '21/01/2015', '1500');
execute INSERTARDROPS('108677', 'RA03', '22/01/2015', '100');
execute INSERTARDROPS('970', 'RA03', '22/01/2015', '200');
execute INSERTARDROPS('357', 'RA02', '22/01/2015', '300');
execute INSERTARDROPS('963', 'RA03', '22/01/2015', '300');
execute INSERTARDROPS('78899', 'RA03', '22/01/2015', '1500');
execute INSERTARDROPS('122372', 'RA03', '22/01/2015', '500');
execute INSERTARDROPS('144139', 'RA02', '22/01/2015', '400');
execute INSERTARDROPS('144795', 'RA02', '22/01/2015', '8300');
execute INSERTARDROPS('118634', 'RA02', '22/01/2015', '200');
execute INSERTARDROPS('84691', 'RA03', '22/01/2015', '500');
execute INSERTARDROPS('76865', 'RA03', '22/01/2015', '3500');
execute INSERTARDROPS('882', 'RA03', '22/01/2015', '200');
execute INSERTARDROPS('122685', 'RA02', '22/01/2015', '2600');
execute INSERTARDROPS('33494', 'RA03', '23/01/2015', '200');
execute INSERTARDROPS('144795', 'RA03', '23/01/2015', '18500');
execute INSERTARDROPS('56787', 'RA03', '23/01/2015', '300');
execute INSERTARDROPS('118634', 'RA03', '23/01/2015', '1100');
execute INSERTARDROPS('21843', 'RA03', '23/01/2015', '1300');
execute INSERTARDROPS('2906', 'RA03', '23/01/2015', '300');
execute INSERTARDROPS('3036', 'RA03', '23/01/2015', '2000');
execute INSERTARDROPS('81838', 'RA02', '23/01/2015', '300');
execute INSERTARDROPS('75024', 'RA02', '23/01/2015', '600');
execute INSERTARDROPS('73143', 'RA02', '23/01/2015', '1700');
execute INSERTARDROPS('81712', 'RA03', '23/01/2015', '2000');
execute INSERTARDROPS('6343', 'RA03', '23/01/2015', '200');
execute INSERTARDROPS('143708', 'RA02', '23/01/2015', '800');
execute INSERTARDROPS('882', 'RA02', '23/01/2015', '500');
execute INSERTARDROPS('846', 'RA02', '23/01/2015', '1900');
execute INSERTARDROPS('73143', 'RA03', '24/01/2015', '1300');
execute INSERTARDROPS('7270', 'RA03', '24/01/2015', '700');
execute INSERTARDROPS('918', 'RA03', '24/01/2015', '500');
execute INSERTARDROPS('76865', 'RA03', '24/01/2015', '2000');
execute INSERTARDROPS('3036', 'RA03', '24/01/2015', '2000');
execute INSERTARDROPS('53724', 'RA03', '24/01/2015', '200');
execute INSERTARDROPS('81129', 'RA03', '25/01/2015', '1100');
execute INSERTARDROPS('8018', 'RA03', '25/01/2015', '800');
execute INSERTARDROPS('143708', 'RA03', '25/01/2015', '700');
execute INSERTARDROPS('150222', 'RA02', '25/01/2015', '1500');
execute INSERTARDROPS('15469', 'RA03', '25/01/2015', '100');
execute INSERTARDROPS('846', 'RA02', '25/01/2015', '500');
execute INSERTARDROPS('33494', 'RA03', '26/01/2015', '2700');
execute INSERTARDROPS('142168', 'RA03', '26/01/2015', '500');
execute INSERTARDROPS('6794', 'RA03', '26/01/2015', '1500');
execute INSERTARDROPS('144793', 'RA03', '26/01/2015', '2600');
execute INSERTARDROPS('138371', 'RA02', '26/01/2015', '1000');
execute INSERTARDROPS('8327', 'RA02', '26/01/2015', '1100');
execute INSERTARDROPS('8018', 'RA03', '26/01/2015', '900');
execute INSERTARDROPS('73143', 'RA02', '26/01/2015', '800');
execute INSERTARDROPS('17271', 'RA02', '26/01/2015', '300');
execute INSERTARDROPS('183', 'RA03', '26/01/2015', '700');
execute INSERTARDROPS('53724', 'RA03', '26/01/2015', '700');
execute INSERTARDROPS('1287', 'RA03', '26/01/2015', '300');
execute INSERTARDROPS('59528', 'RA03', '27/01/2015', '400');
execute INSERTARDROPS('38', 'RA03', '27/01/2015', '1000');
execute INSERTARDROPS('8018', 'RA03', '27/01/2015', '2700');
execute INSERTARDROPS('3036', 'RA03', '27/01/2015', '1200');
execute INSERTARDROPS('81124', 'RA02', '27/01/2015', '800');
execute INSERTARDROPS('1287', 'RA02', '27/01/2015', '400');
execute INSERTARDROPS('84691', 'RA02', '27/01/2015', '1000');
execute INSERTARDROPS('76865', 'RA02', '27/01/2015', '3000');
execute INSERTARDROPS('70533', 'RA02', '27/01/2015', '700');
execute INSERTARDROPS('846', 'RA03', '27/01/2015', '200');
execute INSERTARDROPS('151821', 'RA03', '27/01/2015', '4300');
execute INSERTARDROPS('106398', 'RA03', '28/01/2015', '700');
execute INSERTARDROPS('53724', 'RA03', '28/01/2015', '1900');
execute INSERTARDROPS('144795', 'RA03', '28/01/2015', '2500');
execute INSERTARDROPS('925', 'RA02', '28/01/2015', '700');
execute INSERTARDROPS('151812', 'RA02', '28/01/2015', '1500');
execute INSERTARDROPS('73143', 'RA02', '28/01/2015', '5100');
execute INSERTARDROPS('1287', 'RA03', '28/01/2015', '400');
execute INSERTARDROPS('144139', 'RA03', '28/01/2015', '500');
execute INSERTARDROPS('846', 'RA02', '28/01/2015', '1200');
execute INSERTARDROPS('17969', 'RA03', '29/01/2015', '2900');
execute INSERTARDROPS('24876', 'RA03', '29/01/2015', '300');
execute INSERTARDROPS('108677', 'RA03', '29/01/2015', '500');
execute INSERTARDROPS('151812', 'RA02', '29/01/2015', '2200');
execute INSERTARDROPS('23995', 'RA02', '29/01/2015', '2700');
execute INSERTARDROPS('73143', 'RA02', '29/01/2015', '1400');
execute INSERTARDROPS('75024', 'RA02', '29/01/2015', '2200');
execute INSERTARDROPS('70533', 'RA02', '29/01/2015', '400');
execute INSERTARDROPS('136976', 'RA02', '29/01/2015', '1600');
execute INSERTARDROPS('148178', 'RA02', '29/01/2015', '500');
execute INSERTARDROPS('33494', 'RA03', '30/01/2015', '1100');
execute INSERTARDROPS('120264', 'RA03', '30/01/2015', '200');
execute INSERTARDROPS('81124', 'RA03', '30/01/2015', '8200');
execute INSERTARDROPS('143708', 'RA02', '30/01/2015', '600');
execute INSERTARDROPS('8018', 'RA03', '30/01/2015', '900');
execute INSERTARDROPS('66032', 'RA02', '30/01/2015', '900');
execute INSERTARDROPS('151812', 'RA03', '30/01/2015', '6000');
execute INSERTARDROPS('53724', 'RA03', '30/01/2015', '200');
execute INSERTARDROPS('70533', 'RA03', '30/01/2015', '1300');
execute INSERTARDROPS('882', 'RA02', '30/01/2015', '200');
execute INSERTARDROPS('147815', 'RA03', '31/01/2015', '300');
execute INSERTARDROPS('108677', 'RA03', '31/01/2015', '200');
execute INSERTARDROPS('151812', 'RA03', '31/01/2015', '2600');
execute INSERTARDROPS('69103', 'RA02', '31/01/2015', '200');
execute INSERTARDROPS('963', 'RA02', '31/01/2015', '2200');
execute INSERTARDROPS('120264', 'RA02', '31/01/2015', '900');
execute INSERTARDROPS('76237', 'RA03', '31/01/2015', '800');
execute INSERTARDROPS('1287', 'RA03', '31/01/2015', '500');
execute INSERTARDROPS('53724', 'RA02', '31/01/2015', '1300');
execute INSERTARDROPS('84691', 'RA02', '31/01/2015', '600');
execute INSERTARDROPS('76865', 'RA03', '31/01/2015', '5000');
execute INSERTARDROPS('882', 'RA03', '31/01/2015', '700');
execute INSERTARDROPS('53724', 'RA03', '01/02/2015', '1400');
execute INSERTARDROPS('3036', 'RA03', '01/02/2015', '300');
execute INSERTARDROPS('694', 'RA03', '01/02/2015', '1000');
execute INSERTARDROPS('8018', 'RA03', '01/02/2015', '500');
execute INSERTARDROPS('151812', 'RA02', '01/02/2015', '600');
execute INSERTARDROPS('15469', 'RA03', '01/02/2015', '2800');
execute INSERTARDROPS('75024', 'RA03', '01/02/2015', '700');
execute INSERTARDROPS('73143', 'RA03', '01/02/2015', '4200');
execute INSERTARDROPS('81124', 'RA02', '01/02/2015', '2900');
execute INSERTARDROPS('1287', 'RA03', '01/02/2015', '500');
execute INSERTARDROPS('120929', 'RA03', '02/02/2015', '600');
execute INSERTARDROPS('12180', 'RA03', '02/02/2015', '300');
execute INSERTARDROPS('14172', 'RA03', '02/02/2015', '600');
execute INSERTARDROPS('108677', 'RA03', '02/02/2015', '1300');
execute INSERTARDROPS('3036', 'RA03', '02/02/2015', '2300');
execute INSERTARDROPS('81124', 'RA02', '02/02/2015', '3800');
execute INSERTARDROPS('694', 'RA03', '02/02/2015', '1100');
execute INSERTARDROPS('17271', 'RA03', '02/02/2015', '2100');
execute INSERTARDROPS('17969', 'RA03', '02/02/2015', '500');
execute INSERTARDROPS('81124', 'RA03', '03/02/2015', '500');
execute INSERTARDROPS('694', 'RA03', '03/02/2015', '500');
execute INSERTARDROPS('2906', 'RA03', '03/02/2015', '400');
execute INSERTARDROPS('3036', 'RA03', '03/02/2015', '2000');
execute INSERTARDROPS('59528', 'RA03', '03/02/2015', '500');
execute INSERTARDROPS('148178', 'RA02', '03/02/2015', '300');
execute INSERTARDROPS('14172', 'RA03', '04/02/2015', '2000');
execute INSERTARDROPS('694', 'RA03', '04/02/2015', '900');
execute INSERTARDROPS('28908', 'RA03', '04/02/2015', '300');
execute INSERTARDROPS('2906', 'RA03', '04/02/2015', '200');
execute INSERTARDROPS('120364', 'RA03', '04/02/2015', '2900');
execute INSERTARDROPS('8018', 'RA02', '04/02/2015', '1500');
execute INSERTARDROPS('151821', 'RA02', '04/02/2015', '800');
execute INSERTARDROPS('69103', 'RA02', '04/02/2015', '200');
execute INSERTARDROPS('24876', 'RA02', '04/02/2015', '1300');
execute INSERTARDROPS('101580', 'RA03', '04/02/2015', '500');
execute INSERTARDROPS('846', 'RA03', '04/02/2015', '600');
execute INSERTARDROPS('17969', 'RA03', '05/02/2015', '4300');
execute INSERTARDROPS('28908', 'RA03', '05/02/2015', '4800');
execute INSERTARDROPS('8018', 'RA03', '05/02/2015', '1500');
execute INSERTARDROPS('120264', 'RA02', '05/02/2015', '200');
execute INSERTARDROPS('23995', 'RA03', '05/02/2015', '1900');
execute INSERTARDROPS('24876', 'RA03', '05/02/2015', '1800');
execute INSERTARDROPS('152050', 'RA02', '05/02/2015', '1200');
execute INSERTARDROPS('183', 'RA03', '05/02/2015', '100');
execute INSERTARDROPS('108677', 'RA03', '05/02/2015', '500');
execute INSERTARDROPS('2906', 'RA03', '06/02/2015', '1000');
execute INSERTARDROPS('3036', 'RA03', '06/02/2015', '15200');
execute INSERTARDROPS('24876', 'RA03', '06/02/2015', '2200');
execute INSERTARDROPS('5678', 'RA03', '06/02/2015', '3300');
execute INSERTARDROPS('108677', 'RA02', '06/02/2015', '5400');
execute INSERTARDROPS('425', 'RA03', '06/02/2015', '600');
execute INSERTARDROPS('143708', 'RA02', '06/02/2015', '700');
execute INSERTARDROPS('107123', 'RA03', '06/02/2015', '400');
execute INSERTARDROPS('970', 'RA03', '06/02/2015', '500');
execute INSERTARDROPS('84691', 'RA03', '06/02/2015', '1100');
execute INSERTARDROPS('694', 'RA02', '06/02/2015', '3000');
execute INSERTARDROPS('125597', 'RA03', '07/02/2015', '1200');
execute INSERTARDROPS('101580', 'RA02', '07/02/2015', '300');
execute INSERTARDROPS('8018', 'RA03', '07/02/2015', '1400');
execute INSERTARDROPS('76237', 'RA02', '07/02/2015', '1100');
execute INSERTARDROPS('109612', 'RA02', '07/02/2015', '200');
execute INSERTARDROPS('3036', 'RA02', '07/02/2015', '200');
execute INSERTARDROPS('846', 'RA03', '07/02/2015', '1300');
execute INSERTARDROPS('21552', 'RA03', '07/02/2015', '300');
execute INSERTARDROPS('120264', 'RA03', '08/02/2015', '1000');
execute INSERTARDROPS('8018', 'RA03', '08/02/2015', '700');
execute INSERTARDROPS('143708', 'RA02', '08/02/2015', '2500');
execute INSERTARDROPS('152174', 'RA03', '08/02/2015', '500');
execute INSERTARDROPS('846', 'RA02', '08/02/2015', '1500');
execute INSERTARDROPS('4542', 'RA03', '09/02/2015', '300');
execute INSERTARDROPS('1130', 'RA03', '09/02/2015', '400');
execute INSERTARDROPS('143708', 'RA02', '09/02/2015', '900');
execute INSERTARDROPS('17969', 'RA02', '09/02/2015', '1000');
execute INSERTARDROPS('53724', 'RA02', '09/02/2015', '2000');
execute INSERTARDROPS('75024', 'RA02', '09/02/2015', '1500');
execute INSERTARDROPS('183', 'RA03', '09/02/2015', '1800');
execute INSERTARDROPS('3036', 'RA03', '10/02/2015', '1200');
execute INSERTARDROPS('3372', 'RA03', '10/02/2015', '900');
execute INSERTARDROPS('1130', 'RA03', '10/02/2015', '300');
execute INSERTARDROPS('2906', 'RA03', '10/02/2015', '500');
execute INSERTARDROPS('86172', 'RA02', '10/02/2015', '1700');
execute INSERTARDROPS('143708', 'RA02', '10/02/2015', '7000');
execute INSERTARDROPS('3292', 'RA02', '10/02/2015', '660');
execute INSERTARDROPS('53724', 'RA02', '10/02/2015', '2000');
execute INSERTARDROPS('8018', 'RA03', '11/02/2015', '1300');
execute INSERTARDROPS('3292', 'RA03', '11/02/2015', '300');
execute INSERTARDROPS('9997', 'RA03', '11/02/2015', '3000');
execute INSERTARDROPS('1130', 'RA03', '11/02/2015', '500');
execute INSERTARDROPS('32676', 'RA03', '11/02/2015', '500');
execute INSERTARDROPS('59528', 'RA02', '11/02/2015', '600');
execute INSERTARDROPS('2906', 'RA03', '11/02/2015', '500');
execute INSERTARDROPS('152208', 'RA03', '11/02/2015', '1500');
execute INSERTARDROPS('136590', 'RA02', '11/02/2015', '500');
execute INSERTARDROPS('143708', 'RA03', '11/02/2015', '3400');
execute INSERTARDROPS('73143', 'RA03', '11/02/2015', '2600');
execute INSERTARDROPS('151812', 'RA03', '11/02/2015', '300');
execute INSERTARDROPS('17969', 'RA02', '11/02/2015', '300');
execute INSERTARDROPS('109612', 'RA03', '11/02/2015', '500');
execute INSERTARDROPS('101580', 'RA03', '11/02/2015', '300');
execute INSERTARDROPS('1287', 'RA03', '11/02/2015', '500');
execute INSERTARDROPS('28908', 'RA03', '11/02/2015', '600');
execute INSERTARDROPS('846', 'RA02', '11/02/2015', '900');
execute INSERTARDROPS('17969', 'RA03', '12/02/2015', '6300');
execute INSERTARDROPS('8018', 'RA03', '12/02/2015', '600');
execute INSERTARDROPS('66032', 'RA03', '12/02/2015', '4000');
execute INSERTARDROPS('38', 'RA03', '12/02/2015', '800');
execute INSERTARDROPS('3292', 'RA02', '12/02/2015', '2400');
execute INSERTARDROPS('76865', 'RA03', '12/02/2015', '1000');
execute INSERTARDROPS('2906', 'RA03', '12/02/2015', '400');
execute INSERTARDROPS('86172', 'RA03', '12/02/2015', '500');
execute INSERTARDROPS('143708', 'RA03', '12/02/2015', '1300');
execute INSERTARDROPS('846', 'RA02', '12/02/2015', '1300');
execute INSERTARDROPS('101580', 'RA02', '12/02/2015', '600');
execute INSERTARDROPS('65789', 'RA02', '12/02/2015', '200');
execute INSERTARDROPS('23995', 'RA03', '12/02/2015', '200');
execute INSERTARDROPS('19423', 'RA02', '12/02/2015', '800');
execute INSERTARDROPS('882', 'RA02', '12/02/2015', '600');
execute INSERTARDROPS('2906', 'RA03', '13/02/2015', '700');
execute INSERTARDROPS('143708', 'RA03', '13/02/2015', '3500');
execute INSERTARDROPS('116226', 'RA03', '13/02/2015', '500');
execute INSERTARDROPS('107123', 'RA03', '13/02/2015', '600');
execute INSERTARDROPS('963', 'RA03', '13/02/2015', '700');
execute INSERTARDROPS('3036', 'RA02', '13/02/2015', '2200');
execute INSERTARDROPS('125597', 'RA03', '13/02/2015', '1600');
execute INSERTARDROPS('73143', 'RA02', '13/02/2015', '500');
execute INSERTARDROPS('7270', 'RA02', '13/02/2015', '300');
execute INSERTARDROPS('6343', 'RA03', '13/02/2015', '1300');
execute INSERTARDROPS('75326', 'RA02', '13/02/2015', '400');
execute INSERTARDROPS('7270', 'RA03', '14/02/2015', '600');
execute INSERTARDROPS('69103', 'RA03', '14/02/2015', '900');
execute INSERTARDROPS('109612', 'RA03', '14/02/2015', '100');
execute INSERTARDROPS('846', 'RA03', '14/02/2015', '3000');
execute INSERTARDROPS('19423', 'RA03', '14/02/2015', '1800');
execute INSERTARDROPS('152378', 'RA03', '14/02/2015', '1500');
execute INSERTARDROPS('73143', 'RA03', '15/02/2015', '2400');
execute INSERTARDROPS('125597', 'RA03', '15/02/2015', '500');
execute INSERTARDROPS('21843', 'RA03', '15/02/2015', '1300');
execute INSERTARDROPS('8018', 'RA02', '15/02/2015', '1300');
execute INSERTARDROPS('19423', 'RA02', '15/02/2015', '6800');
execute INSERTARDROPS('107123', 'RA03', '15/02/2015', '1100');
execute INSERTARDROPS('8018', 'RA03', '16/02/2015', '100');
execute INSERTARDROPS('694', 'RA03', '16/02/2015', '2100');
execute INSERTARDROPS('60337', 'RA03', '16/02/2015', '600');
execute INSERTARDROPS('425', 'RA03', '16/02/2015', '500');
execute INSERTARDROPS('116226', 'RA03', '16/02/2015', '5500');
execute INSERTARDROPS('120264', 'RA02', '16/02/2015', '3300');
execute INSERTARDROPS('3036', 'RA02', '16/02/2015', '2200');
execute INSERTARDROPS('59406', 'RA02', '16/02/2015', '9500');
execute INSERTARDROPS('1163', 'RA02', '16/02/2015', '300');
execute INSERTARDROPS('116226', 'RA03', '17/02/2015', '5200');
execute INSERTARDROPS('60337', 'RA03', '17/02/2015', '300');
execute INSERTARDROPS('963', 'RA03', '17/02/2015', '900');
execute INSERTARDROPS('15085', 'RA03', '17/02/2015', '1000');
execute INSERTARDROPS('59406', 'RA03', '17/02/2015', '5800');
execute INSERTARDROPS('447', 'RA02', '17/02/2015', '3700');
execute INSERTARDROPS('152377', 'RA02', '17/02/2015', '200');
execute INSERTARDROPS('55914', 'RA03', '18/02/2015', '5000');
execute INSERTARDROPS('60337', 'RA03', '18/02/2015', '200');
execute INSERTARDROPS('120264', 'RA03', '18/02/2015', '900');
execute INSERTARDROPS('59528', 'RA03', '18/02/2015', '700');
execute INSERTARDROPS('59406', 'RA03', '18/02/2015', '4700');
execute INSERTARDROPS('116226', 'RA02', '18/02/2015', '1000');
execute INSERTARDROPS('15192', 'RA02', '18/02/2015', '700');
execute INSERTARDROPS('52367', 'RA02', '18/02/2015', '1700');
execute INSERTARDROPS('120264', 'RA03', '19/02/2015', '2000');
execute INSERTARDROPS('59528', 'RA03', '19/02/2015', '200');
execute INSERTARDROPS('6595', 'RA02', '19/02/2015', '1400');
execute INSERTARDROPS('143708', 'RA03', '19/02/2015', '1200');
execute INSERTARDROPS('122372', 'RA03', '19/02/2015', '600');
execute INSERTARDROPS('101580', 'RA03', '19/02/2015', '500');
execute INSERTARDROPS('152378', 'RA03', '20/02/2015', '3100');
execute INSERTARDROPS('120264', 'RA03', '20/02/2015', '1400');
execute INSERTARDROPS('2906', 'RA03', '20/02/2015', '600');
execute INSERTARDROPS('963', 'RA02', '20/02/2015', '700');
execute INSERTARDROPS('116226', 'RA03', '20/02/2015', '2100');
execute INSERTARDROPS('132609', 'RA03', '20/02/2015', '500');
execute INSERTARDROPS('152377', 'RA03', '20/02/2015', '300');
execute INSERTARDROPS('116226', 'RA03', '21/02/2015', '6000');
execute INSERTARDROPS('13348', 'RA03', '21/02/2015', '1500');
execute INSERTARDROPS('425', 'RA03', '21/02/2015', '1500');
execute INSERTARDROPS('99221', 'RA03', '21/02/2015', '400');
execute INSERTARDROPS('122372', 'RA02', '21/02/2015', '600');
execute INSERTARDROPS('1287', 'RA03', '21/02/2015', '900');
execute INSERTARDROPS('145259', 'RA03', '21/02/2015', '500');
execute INSERTARDROPS('918', 'RA02', '21/02/2015', '200');
execute INSERTARDROPS('152377', 'RA03', '21/02/2015', '1500');
execute INSERTARDROPS('152378', 'RA03', '21/02/2015', '3500');
execute INSERTARDROPS('123330', 'RA02', '21/02/2015', '200');
execute INSERTARDROPS('150603', 'RA02', '21/02/2015', '1000');
execute INSERTARDROPS('120264', 'RA03', '22/02/2015', '800');
execute INSERTARDROPS('116226', 'RA03', '22/02/2015', '1900');
execute INSERTARDROPS('918', 'RA03', '22/02/2015', '6600');
execute INSERTARDROPS('123330', 'RA02', '22/02/2015', '1400');
execute INSERTARDROPS('846', 'RA03', '22/02/2015', '700');
execute INSERTARDROPS('22684', 'RA02', '22/02/2015', '800');
execute INSERTARDROPS('150425', 'RA03', '23/02/2015', '800');
execute INSERTARDROPS('108677', 'RA02', '23/02/2015', '2100');
execute INSERTARDROPS('8018', 'RA03', '23/02/2015', '1000');
execute INSERTARDROPS('136590', 'RA02', '23/02/2015', '1000');
execute INSERTARDROPS('152639', 'RA02', '23/02/2015', '600');
execute INSERTARDROPS('1674', 'RA03', '24/02/2015', '100');
execute INSERTARDROPS('120929', 'RA03', '24/02/2015', '200');
execute INSERTARDROPS('6794', 'RA03', '24/02/2015', '2000');
execute INSERTARDROPS('3292', 'RA03', '24/02/2015', '3200');
execute INSERTARDROPS('2906', 'RA03', '24/02/2015', '200');
execute INSERTARDROPS('120264', 'RA03', '24/02/2015', '1100');
execute INSERTARDROPS('5355', 'RA03', '24/02/2015', '200');
execute INSERTARDROPS('19423', 'RA03', '24/02/2015', '700');
execute INSERTARDROPS('114108', 'RA03', '24/02/2015', '2000');
execute INSERTARDROPS('120929', 'RA03', '25/02/2015', '100');
execute INSERTARDROPS('1130', 'RA03', '25/02/2015', '600');
execute INSERTARDROPS('1674', 'RA03', '25/02/2015', '900');
execute INSERTARDROPS('116226', 'RA03', '25/02/2015', '5400');
execute INSERTARDROPS('120264', 'RA03', '25/02/2015', '300');
execute INSERTARDROPS('86172', 'RA03', '25/02/2015', '500');
execute INSERTARDROPS('143708', 'RA03', '25/02/2015', '2600');
execute INSERTARDROPS('3292', 'RA03', '25/02/2015', '2500');
execute INSERTARDROPS('2589', 'RA03', '25/02/2015', '200');
execute INSERTARDROPS('149014', 'RA03', '25/02/2015', '500');
execute INSERTARDROPS('124652', 'RA03', '25/02/2015', '200');
execute INSERTARDROPS('56558', 'RA02', '25/02/2015', '1000');
execute INSERTARDROPS('152660', 'RA03', '25/02/2015', '600');
execute INSERTARDROPS('126930', 'RA03', '25/02/2015', '1000');
execute INSERTARDROPS('126928', 'RA03', '25/02/2015', '1400');
execute INSERTARDROPS('1287', 'RA03', '25/02/2015', '500');
execute INSERTARDROPS('66032', 'RA03', '26/02/2015', '4000');
execute INSERTARDROPS('6595', 'RA03', '26/02/2015', '200');
execute INSERTARDROPS('7270', 'RA03', '26/02/2015', '500');
execute INSERTARDROPS('38', 'RA03', '26/02/2015', '600');
execute INSERTARDROPS('963', 'RA03', '26/02/2015', '500');
execute INSERTARDROPS('76865', 'RA03', '26/02/2015', '9500');
execute INSERTARDROPS('143708', 'RA03', '26/02/2015', '3300');
execute INSERTARDROPS('120264', 'RA03', '26/02/2015', '800');
execute INSERTARDROPS('8018', 'RA03', '26/02/2015', '700');
execute INSERTARDROPS('3292', 'RA02', '26/02/2015', '1500');
execute INSERTARDROPS('23995', 'RA02', '26/02/2015', '2000');
execute INSERTARDROPS('69103', 'RA03', '26/02/2015', '1700');
execute INSERTARDROPS('75024', 'RA03', '26/02/2015', '1500');
execute INSERTARDROPS('24876', 'RA03', '26/02/2015', '500');
execute INSERTARDROPS('53724', 'RA03', '26/02/2015', '400');
execute INSERTARDROPS('447', 'RA03', '26/02/2015', '300');
execute INSERTARDROPS('109612', 'RA02', '26/02/2015', '100');
execute INSERTARDROPS('19242', 'RA02', '26/02/2015', '1300');
execute INSERTARDROPS('35295', 'RA03', '27/02/2015', '1500');
execute INSERTARDROPS('120929', 'RA03', '27/02/2015', '300');
execute INSERTARDROPS('425', 'RA03', '27/02/2015', '1000');
execute INSERTARDROPS('107123', 'RA02', '27/02/2015', '500');
execute INSERTARDROPS('8018', 'RA02', '27/02/2015', '1000');
execute INSERTARDROPS('60337', 'RA02', '27/02/2015', '200');
execute INSERTARDROPS('120264', 'RA03', '27/02/2015', '400');
execute INSERTARDROPS('116226', 'RA03', '27/02/2015', '3400');
execute INSERTARDROPS('143708', 'RA03', '27/02/2015', '11100');
execute INSERTARDROPS('7270', 'RA02', '27/02/2015', '200');
execute INSERTARDROPS('53724', 'RA02', '27/02/2015', '600');
execute INSERTARDROPS('1287', 'RA02', '27/02/2015', '600');
execute INSERTARDROPS('75326', 'RA03', '27/02/2015', '500');
execute INSERTARDROPS('116226', 'RA03', '28/02/2015', '500');
execute INSERTARDROPS('963', 'RA03', '28/02/2015', '600');
execute INSERTARDROPS('143708', 'RA03', '28/02/2015', '5700');
execute INSERTARDROPS('7270', 'RA02', '28/02/2015', '1000');
execute INSERTARDROPS('108677', 'RA03', '28/02/2015', '1000');
execute INSERTARDROPS('6649', 'RA03', '28/02/2015', '700');
execute INSERTARDROPS('124011', 'RA03', '28/02/2015', '1000');
execute INSERTARDROPS('1213', 'RA02', '28/02/2015', '400');
execute INSERTARDROPS('8018', 'RA03', '28/02/2015', '1100');
execute INSERTARDROPS('56558', 'RA02', '28/02/2015', '1000');
execute INSERTARDROPS('148178', 'RA02', '28/02/2015', '300');
execute INSERTARDROPS('846', 'RA03', '28/02/2015', '600');
execute INSERTARDROPS('75024', 'RA03', '28/02/2015', '1000');
execute INSERTARDROPS('116226', 'RA03', '01/03/2015', '3400');
execute INSERTARDROPS('75024', 'RA03', '01/03/2015', '1000');
execute INSERTARDROPS('143708', 'RA03', '01/03/2015', '5800');
execute INSERTARDROPS('120264', 'RA03', '01/03/2015', '1100');
execute INSERTARDROPS('113751', 'RA03', '01/03/2015', '600');
execute INSERTARDROPS('150826', 'RA03', '01/03/2015', '300');
execute INSERTARDROPS('107123', 'RA03', '01/03/2015', '3200');
execute INSERTARDROPS('846', 'RA03', '01/03/2015', '900');
execute INSERTARDROPS('19843', 'RA03', '01/03/2015', '2000');
execute INSERTARDROPS('116226', 'RA03', '02/03/2015', '7500');
execute INSERTARDROPS('143708', 'RA03', '02/03/2015', '1900');
execute INSERTARDROPS('425', 'RA03', '02/03/2015', '500');
execute INSERTARDROPS('108677', 'RA03', '02/03/2015', '2500');
execute INSERTARDROPS('2906', 'RA02', '02/03/2015', '600');
execute INSERTARDROPS('3292', 'RA02', '02/03/2015', '600');
execute INSERTARDROPS('59528', 'RA03', '02/03/2015', '600');
execute INSERTARDROPS('113751', 'RA03', '02/03/2015', '800');
execute INSERTARDROPS('32676', 'RA03', '02/03/2015', '300');
execute INSERTARDROPS('152856', 'RA02', '02/03/2015', '600');
execute INSERTARDROPS('846', 'RA02', '02/03/2015', '1500');
execute INSERTARDROPS('69103', 'RA03', '03/03/2015', '800');
execute INSERTARDROPS('4542', 'RA03', '03/03/2015', '100');
execute INSERTARDROPS('120264', 'RA03', '03/03/2015', '1200');
execute INSERTARDROPS('8018', 'RA02', '03/03/2015', '2000');
execute INSERTARDROPS('53711', 'RA02', '03/03/2015', '1200');
execute INSERTARDROPS('152856', 'RA03', '03/03/2015', '300');
execute INSERTARDROPS('447', 'RA03', '03/03/2015', '1800');
execute INSERTARDROPS('101580', 'RA03', '03/03/2015', '500');
execute INSERTARDROPS('103328', 'RA03', '03/03/2015', '700');
execute INSERTARDROPS('846', 'RA02', '03/03/2015', '1100');
execute INSERTARDROPS('6595', 'RA03', '04/03/2015', '300');
execute INSERTARDROPS('5329', 'RA03', '04/03/2015', '100');
execute INSERTARDROPS('21553', 'RA03', '04/03/2015', '400');
execute INSERTARDROPS('7270', 'RA02', '04/03/2015', '1100');
execute INSERTARDROPS('59528', 'RA02', '04/03/2015', '500');
execute INSERTARDROPS('122372', 'RA02', '04/03/2015', '1200');
execute INSERTARDROPS('8018', 'RA02', '04/03/2015', '1000');
execute INSERTARDROPS('116226', 'RA03', '04/03/2015', '7700');
execute INSERTARDROPS('32676', 'RA02', '04/03/2015', '700');
execute INSERTARDROPS('53724', 'RA03', '04/03/2015', '900');
execute INSERTARDROPS('17969', 'RA03', '05/03/2015', '2800');
execute INSERTARDROPS('120264', 'RA03', '05/03/2015', '300');
execute INSERTARDROPS('1674', 'RA03', '05/03/2015', '400');
execute INSERTARDROPS('425', 'RA03', '05/03/2015', '1000');
execute INSERTARDROPS('7270', 'RA03', '05/03/2015', '300');
execute INSERTARDROPS('108677', 'RA03', '05/03/2015', '2300');
execute INSERTARDROPS('8018', 'RA03', '05/03/2015', '1400');
execute INSERTARDROPS('143708', 'RA03', '05/03/2015', '3500');
execute INSERTARDROPS('112399', 'RA03', '05/03/2015', '1400');
execute INSERTARDROPS('23995', 'RA03', '05/03/2015', '1500');
execute INSERTARDROPS('101580', 'RA03', '05/03/2015', '500');
execute INSERTARDROPS('882', 'RA03', '05/03/2015', '1000');
execute INSERTARDROPS('86172', 'RA03', '06/03/2015', '3400');
execute INSERTARDROPS('143708', 'RA03', '06/03/2015', '14500');
execute INSERTARDROPS('8018', 'RA03', '06/03/2015', '1000');
execute INSERTARDROPS('425', 'RA03', '06/03/2015', '500');
execute INSERTARDROPS('76865', 'RA03', '06/03/2015', '1000');
execute INSERTARDROPS('2906', 'RA03', '06/03/2015', '500');
execute INSERTARDROPS('108677', 'RA03', '06/03/2015', '4000');
execute INSERTARDROPS('23995', 'RA03', '06/03/2015', '900');
execute INSERTARDROPS('1183', 'RA03', '06/03/2015', '1100');
execute INSERTARDROPS('694', 'RA03', '06/03/2015', '1900');
execute INSERTARDROPS('963', 'RA02', '06/03/2015', '1000');
execute INSERTARDROPS('143708', 'RA03', '07/03/2015', '1500');
execute INSERTARDROPS('968', 'RA03', '07/03/2015', '2500');
execute INSERTARDROPS('8018', 'RA03', '07/03/2015', '3100');
execute INSERTARDROPS('3292', 'RA03', '07/03/2015', '1900');
execute INSERTARDROPS('1183', 'RA02', '07/03/2015', '400');
execute INSERTARDROPS('1287', 'RA02', '07/03/2015', '500');
execute INSERTARDROPS('53724', 'RA03', '07/03/2015', '2300');
execute INSERTARDROPS('143708', 'RA02', '08/03/2015', '400');
execute INSERTARDROPS('32676', 'RA02', '08/03/2015', '1100');
execute INSERTARDROPS('53724', 'RA02', '08/03/2015', '600');
execute INSERTARDROPS('138371', 'RA03', '08/03/2015', '200');
execute INSERTARDROPS('6920', 'RA03', '09/03/2015', '200');
execute INSERTARDROPS('24876', 'RA03', '09/03/2015', '300');
execute INSERTARDROPS('425', 'RA03', '09/03/2015', '2000');
execute INSERTARDROPS('2906', 'RA02', '09/03/2015', '200');
execute INSERTARDROPS('68435', 'RA03', '09/03/2015', '500');
execute INSERTARDROPS('3292', 'RA03', '09/03/2015', '1100');
execute INSERTARDROPS('108677', 'RA03', '09/03/2015', '1200');
execute INSERTARDROPS('59528', 'RA02', '09/03/2015', '300');
execute INSERTARDROPS('8018', 'RA02', '09/03/2015', '2400');
execute INSERTARDROPS('183', 'RA03', '09/03/2015', '100');
execute INSERTARDROPS('8018', 'RA03', '10/03/2015', '1000');
execute INSERTARDROPS('6595', 'RA03', '10/03/2015', '900');
execute INSERTARDROPS('963', 'RA03', '10/03/2015', '1100');
execute INSERTARDROPS('20064', 'RA03', '10/03/2015', '1800');
execute INSERTARDROPS('17748', 'RA03', '10/03/2015', '1500');
execute INSERTARDROPS('107981', 'RA03', '10/03/2015', '500');
execute INSERTARDROPS('138371', 'RA02', '10/03/2015', '1700');
execute INSERTARDROPS('5678', 'RA03', '10/03/2015', '600');
execute INSERTARDROPS('17748', 'RA03', '11/03/2015', '1500');
execute INSERTARDROPS('5329', 'RA03', '11/03/2015', '800');
execute INSERTARDROPS('69103', 'RA02', '11/03/2015', '1000');
execute INSERTARDROPS('2906', 'RA02', '11/03/2015', '100');
execute INSERTARDROPS('357', 'RA02', '11/03/2015', '200');
execute INSERTARDROPS('53724', 'RA02', '11/03/2015', '2400');
execute INSERTARDROPS('68435', 'RA02', '11/03/2015', '700');
execute INSERTARDROPS('846', 'RA03', '11/03/2015', '800');
execute INSERTARDROPS('17969', 'RA03', '12/03/2015', '3300');
execute INSERTARDROPS('8018', 'RA03', '12/03/2015', '1100');
execute INSERTARDROPS('1182', 'RA03', '12/03/2015', '1800');
execute INSERTARDROPS('2906', 'RA03', '12/03/2015', '200');
execute INSERTARDROPS('963', 'RA03', '12/03/2015', '1400');
execute INSERTARDROPS('17748', 'RA03', '12/03/2015', '5700');
execute INSERTARDROPS('108677', 'RA03', '12/03/2015', '800');
execute INSERTARDROPS('694', 'RA03', '12/03/2015', '1000');
execute INSERTARDROPS('120264', 'RA02', '12/03/2015', '300');
execute INSERTARDROPS('148178', 'RA02', '12/03/2015', '3400');
execute INSERTARDROPS('53724', 'RA02', '12/03/2015', '800');
execute INSERTARDROPS('882', 'RA02', '12/03/2015', '200');
execute INSERTARDROPS('3292', 'RA03', '12/03/2015', '700');
execute INSERTARDROPS('17748', 'RA03', '13/03/2015', '3500');
execute INSERTARDROPS('2906', 'RA03', '13/03/2015', '200');
execute INSERTARDROPS('108677', 'RA03', '13/03/2015', '500');
execute INSERTARDROPS('68435', 'RA02', '13/03/2015', '200');
execute INSERTARDROPS('1674', 'RA02', '13/03/2015', '100');
execute INSERTARDROPS('7270', 'RA02', '13/03/2015', '1000');
execute INSERTARDROPS('4542', 'RA02', '13/03/2015', '500');
execute INSERTARDROPS('1183', 'RA02', '13/03/2015', '400');
execute INSERTARDROPS('109612', 'RA03', '13/03/2015', '400');
execute INSERTARDROPS('153091', 'RA02', '13/03/2015', '3400');
execute INSERTARDROPS('101580', 'RA02', '13/03/2015', '1000');
execute INSERTARDROPS('76865', 'RA02', '13/03/2015', '1300');
execute INSERTARDROPS('84405', 'RA03', '13/03/2015', '200');
execute INSERTARDROPS('846', 'RA02', '13/03/2015', '1000');
execute INSERTARDROPS('17748', 'RA03', '14/03/2015', '4000');
execute INSERTARDROPS('1287', 'RA02', '14/03/2015', '500');
execute INSERTARDROPS('55914', 'RA03', '14/03/2015', '4000');
execute INSERTARDROPS('963', 'RA03', '14/03/2015', '600');
execute INSERTARDROPS('8018', 'RA02', '14/03/2015', '600');
execute INSERTARDROPS('1183', 'RA03', '14/03/2015', '600');
execute INSERTARDROPS('32676', 'RA03', '14/03/2015', '600');
execute INSERTARDROPS('109612', 'RA02', '14/03/2015', '500');
execute INSERTARDROPS('120264', 'RA03', '15/03/2015', '1300');
execute INSERTARDROPS('17748', 'RA03', '15/03/2015', '2000');
execute INSERTARDROPS('694', 'RA03', '15/03/2015', '2800');
execute INSERTARDROPS('38', 'RA03', '15/03/2015', '100');
execute INSERTARDROPS('81178', 'RA02', '15/03/2015', '2300');
execute INSERTARDROPS('107123', 'RA03', '15/03/2015', '500');
execute INSERTARDROPS('53724', 'RA03', '15/03/2015', '400');
execute INSERTARDROPS('149824', 'RA03', '15/03/2015', '1000');
execute INSERTARDROPS('97334', 'RA02', '15/03/2015', '500');
execute INSERTARDROPS('135581', 'RA03', '16/03/2015', '800');
execute INSERTARDROPS('3292', 'RA03', '16/03/2015', '500');
execute INSERTARDROPS('1674', 'RA03', '16/03/2015', '1200');
execute INSERTARDROPS('357', 'RA03', '16/03/2015', '800');
execute INSERTARDROPS('6794', 'RA03', '16/03/2015', '2000');
execute INSERTARDROPS('76865', 'RA03', '16/03/2015', '9800');
execute INSERTARDROPS('2906', 'RA02', '16/03/2015', '900');
execute INSERTARDROPS('8018', 'RA03', '16/03/2015', '900');
execute INSERTARDROPS('32676', 'RA03', '16/03/2015', '1200');
execute INSERTARDROPS('59528', 'RA03', '16/03/2015', '600');
execute INSERTARDROPS('108677', 'RA02', '16/03/2015', '400');
execute INSERTARDROPS('938', 'RA02', '16/03/2015', '1000');
execute INSERTARDROPS('138371', 'RA03', '16/03/2015', '800');
execute INSERTARDROPS('53724', 'RA02', '16/03/2015', '700');
execute INSERTARDROPS('183', 'RA03', '16/03/2015', '1400');
execute INSERTARDROPS('4709', 'RA03', '16/03/2015', '400');
execute INSERTARDROPS('846', 'RA03', '16/03/2015', '2400');
execute INSERTARDROPS('17748', 'RA03', '17/03/2015', '2300');
execute INSERTARDROPS('60337', 'RA03', '17/03/2015', '600');
execute INSERTARDROPS('7270', 'RA03', '17/03/2015', '1000');
execute INSERTARDROPS('69103', 'RA03', '17/03/2015', '1000');
execute INSERTARDROPS('120264', 'RA03', '17/03/2015', '500');
execute INSERTARDROPS('8018', 'RA02', '17/03/2015', '500');
execute INSERTARDROPS('2906', 'RA03', '17/03/2015', '700');
execute INSERTARDROPS('963', 'RA02', '17/03/2015', '1300');
execute INSERTARDROPS('49669', 'RA02', '17/03/2015', '300');
execute INSERTARDROPS('6706', 'RA02', '17/03/2015', '300');
execute INSERTARDROPS('53724', 'RA03', '17/03/2015', '300');
execute INSERTARDROPS('54498', 'RA03', '17/03/2015', '600');
execute INSERTARDROPS('153227', 'RA02', '17/03/2015', '4000');
execute INSERTARDROPS('148178', 'RA02', '17/03/2015', '500');
execute INSERTARDROPS('3292', 'RA03', '18/03/2015', '1100');
execute INSERTARDROPS('6794', 'RA03', '18/03/2015', '2600');
execute INSERTARDROPS('69103', 'RA03', '18/03/2015', '1400');
execute INSERTARDROPS('120264', 'RA03', '18/03/2015', '700');
execute INSERTARDROPS('59528', 'RA03', '18/03/2015', '200');
execute INSERTARDROPS('1287', 'RA03', '18/03/2015', '600');
execute INSERTARDROPS('53724', 'RA03', '18/03/2015', '1200');
execute INSERTARDROPS('153222', 'RA02', '18/03/2015', '1700');
execute INSERTARDROPS('108677', 'RA03', '18/03/2015', '400');
execute INSERTARDROPS('17969', 'RA03', '19/03/2015', '1200');
execute INSERTARDROPS('8018', 'RA03', '19/03/2015', '600');
execute INSERTARDROPS('49669', 'RA03', '19/03/2015', '400');
execute INSERTARDROPS('108677', 'RA02', '19/03/2015', '3200');
execute INSERTARDROPS('2906', 'RA02', '19/03/2015', '1000');
execute INSERTARDROPS('62393', 'RA03', '19/03/2015', '200');
execute INSERTARDROPS('1183', 'RA03', '19/03/2015', '600');
execute INSERTARDROPS('132609', 'RA03', '19/03/2015', '1000');
execute INSERTARDROPS('109612', 'RA02', '19/03/2015', '300');
execute INSERTARDROPS('53724', 'RA02', '19/03/2015', '800');
execute INSERTARDROPS('121576', 'RA02', '19/03/2015', '300');
execute INSERTARDROPS('153222', 'RA03', '19/03/2015', '800');
execute INSERTARDROPS('882', 'RA03', '19/03/2015', '300');
execute INSERTARDROPS('2906', 'RA03', '20/03/2015', '1500');
execute INSERTARDROPS('24876', 'RA03', '20/03/2015', '1000');
execute INSERTARDROPS('81124', 'RA03', '20/03/2015', '1900');
execute INSERTARDROPS('694', 'RA02', '20/03/2015', '1500');
execute INSERTARDROPS('183', 'RA02', '20/03/2015', '900');
execute INSERTARDROPS('53724', 'RA03', '20/03/2015', '600');
execute INSERTARDROPS('121576', 'RA02', '20/03/2015', '200');
execute INSERTARDROPS('109612', 'RA03', '20/03/2015', '1100');
execute INSERTARDROPS('3292', 'RA02', '20/03/2015', '2100');
execute INSERTARDROPS('14172', 'RA03', '21/03/2015', '2900');
execute INSERTARDROPS('1287', 'RA03', '21/03/2015', '300');
execute INSERTARDROPS('938', 'RA02', '21/03/2015', '1000');
execute INSERTARDROPS('116226', 'RA03', '21/03/2015', '700');
execute INSERTARDROPS('963', 'RA02', '21/03/2015', '1100');
execute INSERTARDROPS('846', 'RA02', '21/03/2015', '1100');
execute INSERTARDROPS('694', 'RA03', '22/03/2015', '2000');
execute INSERTARDROPS('14172', 'RA03', '22/03/2015', '400');
execute INSERTARDROPS('6595', 'RA02', '22/03/2015', '1000');
execute INSERTARDROPS('183', 'RA03', '22/03/2015', '1600');
execute INSERTARDROPS('153309', 'RA02', '22/03/2015', '700');
execute INSERTARDROPS('938', 'RA02', '22/03/2015', '1000');
execute INSERTARDROPS('1287', 'RA02', '22/03/2015', '600');
execute INSERTARDROPS('121576', 'RA03', '22/03/2015', '1700');
execute INSERTARDROPS('109612', 'RA03', '22/03/2015', '200');
execute INSERTARDROPS('846', 'RA03', '22/03/2015', '2500');
execute INSERTARDROPS('694', 'RA03', '23/03/2015', '3700');
execute INSERTARDROPS('84402', 'RA03', '23/03/2015', '2200');
execute INSERTARDROPS('108677', 'RA03', '23/03/2015', '2400');
execute INSERTARDROPS('122372', 'RA03', '23/03/2015', '1200');
execute INSERTARDROPS('69103', 'RA03', '23/03/2015', '1000');
execute INSERTARDROPS('8018', 'RA02', '23/03/2015', '500');
execute INSERTARDROPS('17969', 'RA03', '23/03/2015', '3300');
execute INSERTARDROPS('183', 'RA03', '23/03/2015', '200');
execute INSERTARDROPS('153366', 'RA03', '23/03/2015', '13000');
execute INSERTARDROPS('53724', 'RA03', '23/03/2015', '600');
execute INSERTARDROPS('1287', 'RA02', '23/03/2015', '200');
execute INSERTARDROPS('19423', 'RA02', '23/03/2015', '2800');
execute INSERTARDROPS('135369', 'RA03', '24/03/2015', '1200');
execute INSERTARDROPS('146', 'RA03', '24/03/2015', '900');
execute INSERTARDROPS('84402', 'RA03', '24/03/2015', '4400');
execute INSERTARDROPS('120264', 'RA03', '24/03/2015', '1000');
execute INSERTARDROPS('8018', 'RA03', '24/03/2015', '1100');
execute INSERTARDROPS('6706', 'RA03', '24/03/2015', '700');
execute INSERTARDROPS('2906', 'RA03', '24/03/2015', '500');
execute INSERTARDROPS('141286', 'RA03', '24/03/2015', '700');
execute INSERTARDROPS('153383', 'RA03', '24/03/2015', '1000');
execute INSERTARDROPS('768', 'RA02', '24/03/2015', '6000');
execute INSERTARDROPS('153394', 'RA02', '24/03/2015', '5500');
execute INSERTARDROPS('109612', 'RA02', '24/03/2015', '1000');
execute INSERTARDROPS('3292', 'RA02', '24/03/2015', '1900');
execute INSERTARDROPS('143708', 'RA03', '24/03/2015', '2000');
execute INSERTARDROPS('153381', 'RA03', '24/03/2015', '2000');
execute INSERTARDROPS('63968', 'RA02', '24/03/2015', '300');
execute INSERTARDROPS('122685', 'RA03', '24/03/2015', '1200');
execute INSERTARDROPS('17748', 'RA03', '25/03/2015', '1300');
execute INSERTARDROPS('6794', 'RA03', '25/03/2015', '300');
execute INSERTARDROPS('8018', 'RA03', '25/03/2015', '1100');
execute INSERTARDROPS('2906', 'RA03', '25/03/2015', '200');
execute INSERTARDROPS('55901', 'RA03', '25/03/2015', '700');
execute INSERTARDROPS('49669', 'RA03', '25/03/2015', '200');
execute INSERTARDROPS('128977', 'RA02', '25/03/2015', '100');
execute INSERTARDROPS('183', 'RA02', '25/03/2015', '900');
execute INSERTARDROPS('138371', 'RA03', '25/03/2015', '200');
execute INSERTARDROPS('53724', 'RA03', '25/03/2015', '2500');
execute INSERTARDROPS('1287', 'RA02', '25/03/2015', '1500');
execute INSERTARDROPS('17969', 'RA03', '26/03/2015', '10800');
execute INSERTARDROPS('23995', 'RA03', '26/03/2015', '7600');
execute INSERTARDROPS('108677', 'RA03', '26/03/2015', '1300');
execute INSERTARDROPS('2906', 'RA03', '26/03/2015', '500');
execute INSERTARDROPS('3292', 'RA03', '26/03/2015', '1000');
execute INSERTARDROPS('6343', 'RA03', '26/03/2015', '500');
execute INSERTARDROPS('138371', 'RA02', '26/03/2015', '3400');
execute INSERTARDROPS('109612', 'RA03', '26/03/2015', '300');
execute INSERTARDROPS('19423', 'RA02', '26/03/2015', '25700');
execute INSERTARDROPS('107633', 'RA03', '26/03/2015', '400');
execute INSERTARDROPS('882', 'RA02', '26/03/2015', '200');
execute INSERTARDROPS('70533', 'RA02', '26/03/2015', '2200');
execute INSERTARDROPS('17748', 'RA03', '27/03/2015', '800');
execute INSERTARDROPS('1181', 'RA03', '27/03/2015', '1500');
execute INSERTARDROPS('6794', 'RA03', '27/03/2015', '3700');
execute INSERTARDROPS('2906', 'RA03', '27/03/2015', '1000');
execute INSERTARDROPS('6595', 'RA03', '27/03/2015', '500');
execute INSERTARDROPS('84402', 'RA03', '27/03/2015', '1800');
execute INSERTARDROPS('153434', 'RA03', '27/03/2015', '2100');
execute INSERTARDROPS('938', 'RA03', '27/03/2015', '2200');
execute INSERTARDROPS('108677', 'RA03', '27/03/2015', '400');
execute INSERTARDROPS('120264', 'RA02', '27/03/2015', '300');
execute INSERTARDROPS('3292', 'RA03', '27/03/2015', '2600');
execute INSERTARDROPS('116226', 'RA02', '27/03/2015', '4100');
execute INSERTARDROPS('143708', 'RA03', '27/03/2015', '1200');
execute INSERTARDROPS('1183', 'RA03', '27/03/2015', '800');
execute INSERTARDROPS('109612', 'RA03', '27/03/2015', '900');
execute INSERTARDROPS('1287', 'RA03', '27/03/2015', '200');
execute INSERTARDROPS('19423', 'RA03', '27/03/2015', '1800');
execute INSERTARDROPS('963', 'RA03', '27/03/2015', '2000');
execute INSERTARDROPS('116226', 'RA03', '28/03/2015', '4500');
execute INSERTARDROPS('108677', 'RA03', '28/03/2015', '2400');
execute INSERTARDROPS('69101', 'RA03', '28/03/2015', '300');
execute INSERTARDROPS('128195', 'RA02', '28/03/2015', '1900');
execute INSERTARDROPS('109612', 'RA03', '28/03/2015', '600');
execute INSERTARDROPS('6343', 'RA03', '28/03/2015', '1000');
execute INSERTARDROPS('1287', 'RA02', '28/03/2015', '300');
execute INSERTARDROPS('4542', 'RA03', '28/03/2015', '500');
execute INSERTARDROPS('53724', 'RA02', '28/03/2015', '3000');
execute INSERTARDROPS('882', 'RA02', '28/03/2015', '500');
execute INSERTARDROPS('60337', 'RA03', '29/03/2015', '1600');
execute INSERTARDROPS('149175', 'RA03', '29/03/2015', '300');
execute INSERTARDROPS('3142', 'RA03', '29/03/2015', '4700');
execute INSERTARDROPS('17748', 'RA03', '29/03/2015', '4400');
execute INSERTARDROPS('150222', 'RA02', '29/03/2015', '400');
execute INSERTARDROPS('120264', 'RA02', '29/03/2015', '1300');
execute INSERTARDROPS('108677', 'RA02', '29/03/2015', '1300');
execute INSERTARDROPS('8018', 'RA03', '29/03/2015', '600');
execute INSERTARDROPS('69103', 'RA03', '29/03/2015', '1000');
execute INSERTARDROPS('6794', 'RA03', '30/03/2015', '2400');
execute INSERTARDROPS('17748', 'RA03', '30/03/2015', '2500');
execute INSERTARDROPS('60337', 'RA02', '30/03/2015', '1500');
execute INSERTARDROPS('108677', 'RA03', '30/03/2015', '500');
execute INSERTARDROPS('19423', 'RA03', '30/03/2015', '11500');
execute INSERTARDROPS('53724', 'RA03', '30/03/2015', '1000');
execute INSERTARDROPS('138371', 'RA02', '30/03/2015', '1700');
execute INSERTARDROPS('70533', 'RA02', '30/03/2015', '1200');
execute INSERTARDROPS('17748', 'RA03', '31/03/2015', '3100');
execute INSERTARDROPS('120929', 'RA03', '31/03/2015', '1000');
execute INSERTARDROPS('8018', 'RA03', '31/03/2015', '1200');
execute INSERTARDROPS('2906', 'RA03', '31/03/2015', '400');
execute INSERTARDROPS('86172', 'RA03', '31/03/2015', '400');
execute INSERTARDROPS('599', 'RA03', '31/03/2015', '300');
execute INSERTARDROPS('108677', 'RA03', '31/03/2015', '500');
execute INSERTARDROPS('1319', 'RA03', '31/03/2015', '300');
execute INSERTARDROPS('53724', 'RA03', '31/03/2015', '600');
execute INSERTARDROPS('70533', 'RA03', '31/03/2015', '300');
execute INSERTARDROPS('153570', 'RA02', '31/03/2015', '1000');
execute INSERTARDROPS('44425', 'RA03', '31/03/2015', '1000');
execute INSERTARDROPS('17748', 'RA03', '01/04/2015', '2200');
execute INSERTARDROPS('8018', 'RA03', '01/04/2015', '1900');
execute INSERTARDROPS('14172', 'RA03', '01/04/2015', '2000');
execute INSERTARDROPS('93172', 'RA03', '01/04/2015', '500');
execute INSERTARDROPS('149014', 'RA03', '01/04/2015', '500');
execute INSERTARDROPS('108677', 'RA03', '01/04/2015', '800');
execute INSERTARDROPS('357', 'RA03', '01/04/2015', '800');
execute INSERTARDROPS('53724', 'RA03', '01/04/2015', '600');
execute INSERTARDROPS('109612', 'RA02', '01/04/2015', '300');
execute INSERTARDROPS('6459', 'RA02', '01/04/2015', '3300');
execute INSERTARDROPS('108677', 'RA03', '02/04/2015', '7500');
execute INSERTARDROPS('143708', 'RA03', '02/04/2015', '1000');
execute INSERTARDROPS('6459', 'RA02', '02/04/2015', '2000');
execute INSERTARDROPS('109612', 'RA03', '02/04/2015', '700');
execute INSERTARDROPS('15469', 'RA03', '02/04/2015', '700');
execute INSERTARDROPS('61282', 'RA03', '03/04/2015', '500');
execute INSERTARDROPS('108677', 'RA03', '03/04/2015', '5100');
execute INSERTARDROPS('1183', 'RA02', '03/04/2015', '800');
execute INSERTARDROPS('143708', 'RA03', '03/04/2015', '2000');
execute INSERTARDROPS('153624', 'RA03', '03/04/2015', '1100');
execute INSERTARDROPS('64850', 'RA03', '03/04/2015', '600');
execute INSERTARDROPS('6706', 'RA02', '03/04/2015', '1000');
execute INSERTARDROPS('882', 'RA03', '03/04/2015', '800');
execute INSERTARDROPS('15469', 'RA03', '03/04/2015', '200');
execute INSERTARDROPS('153639', 'RA03', '03/04/2015', '1500');
execute INSERTARDROPS('704', 'RA03', '04/04/2015', '1200');
execute INSERTARDROPS('143708', 'RA02', '04/04/2015', '5500');
execute INSERTARDROPS('108677', 'RA03', '04/04/2015', '1900');
execute INSERTARDROPS('970', 'RA02', '04/04/2015', '1300');
execute INSERTARDROPS('83453', 'RA02', '04/04/2015', '800');
execute INSERTARDROPS('76865', 'RA02', '04/04/2015', '900');
execute INSERTARDROPS('152165', 'RA02', '04/04/2015', '1700');
execute INSERTARDROPS('153639', 'RA03', '04/04/2015', '1800');
execute INSERTARDROPS('129793', 'RA03', '05/04/2015', '3000');
execute INSERTARDROPS('153681', 'RA03', '05/04/2015', '1000');
execute INSERTARDROPS('150222', 'RA03', '05/04/2015', '2000');
execute INSERTARDROPS('108677', 'RA02', '05/04/2015', '1500');
execute INSERTARDROPS('15469', 'RA03', '05/04/2015', '200');
execute INSERTARDROPS('148387', 'RA03', '05/04/2015', '1000');
execute INSERTARDROPS('153639', 'RA02', '05/04/2015', '3300');
execute INSERTARDROPS('108677', 'RA03', '06/04/2015', '1900');
execute INSERTARDROPS('86172', 'RA03', '06/04/2015', '1700');
execute INSERTARDROPS('143708', 'RA03', '06/04/2015', '8300');
execute INSERTARDROPS('6794', 'RA03', '06/04/2015', '2000');
execute INSERTARDROPS('59528', 'RA03', '06/04/2015', '500');
execute INSERTARDROPS('8018', 'RA02', '06/04/2015', '1400');
execute INSERTARDROPS('357', 'RA03', '06/04/2015', '600');
execute INSERTARDROPS('95482', 'RA03', '06/04/2015', '100');
execute INSERTARDROPS('146024', 'RA03', '07/04/2015', '800');
execute INSERTARDROPS('149671', 'RA03', '07/04/2015', '1000');
execute INSERTARDROPS('6794', 'RA03', '07/04/2015', '2000');
execute INSERTARDROPS('8018', 'RA02', '07/04/2015', '2500');
execute INSERTARDROPS('143708', 'RA02', '07/04/2015', '300');
execute INSERTARDROPS('86172', 'RA03', '07/04/2015', '700');
execute INSERTARDROPS('59528', 'RA02', '07/04/2015', '500');
execute INSERTARDROPS('3292', 'RA02', '07/04/2015', '1200');
execute INSERTARDROPS('69101', 'RA03', '07/04/2015', '100');
execute INSERTARDROPS('53724', 'RA02', '07/04/2015', '1300');
execute INSERTARDROPS('1674', 'RA03', '08/04/2015', '100');
execute INSERTARDROPS('120264', 'RA03', '08/04/2015', '500');
execute INSERTARDROPS('143708', 'RA02', '08/04/2015', '6000');
execute INSERTARDROPS('6706', 'RA03', '08/04/2015', '800');
execute INSERTARDROPS('59528', 'RA02', '08/04/2015', '500');
execute INSERTARDROPS('92735', 'RA02', '08/04/2015', '500');
execute INSERTARDROPS('7626', 'RA03', '08/04/2015', '1300');
execute INSERTARDROPS('768', 'RA03', '08/04/2015', '1000');
execute INSERTARDROPS('53724', 'RA03', '08/04/2015', '300');
execute INSERTARDROPS('53828', 'RA03', '08/04/2015', '600');
execute INSERTARDROPS('70533', 'RA03', '08/04/2015', '200');
execute INSERTARDROPS('17748', 'RA03', '09/04/2015', '600');
execute INSERTARDROPS('66032', 'RA03', '09/04/2015', '1700');
execute INSERTARDROPS('108677', 'RA02', '09/04/2015', '12200');
execute INSERTARDROPS('86172', 'RA03', '09/04/2015', '300');
execute INSERTARDROPS('143708', 'RA02', '09/04/2015', '1000');
execute INSERTARDROPS('120264', 'RA03', '09/04/2015', '500');
execute INSERTARDROPS('23995', 'RA03', '09/04/2015', '2200');
execute INSERTARDROPS('84691', 'RA02', '09/04/2015', '500');
execute INSERTARDROPS('59528', 'RA02', '09/04/2015', '400');
execute INSERTARDROPS('963', 'RA03', '09/04/2015', '600');
execute INSERTARDROPS('357', 'RA02', '09/04/2015', '5000');
execute INSERTARDROPS('53724', 'RA03', '09/04/2015', '9000');
execute INSERTARDROPS('153744', 'RA02', '09/04/2015', '1000');
execute INSERTARDROPS('183', 'RA03', '09/04/2015', '300');
execute INSERTARDROPS('970', 'RA03', '09/04/2015', '300');
execute INSERTARDROPS('138371', 'RA02', '09/04/2015', '500');
execute INSERTARDROPS('75024', 'RA02', '09/04/2015', '2300');
execute INSERTARDROPS('63940', 'RA03', '09/04/2015', '700');
execute INSERTARDROPS('882', 'RA03', '09/04/2015', '100');
execute INSERTARDROPS('21552', 'RA03', '09/04/2015', '1000');
execute INSERTARDROPS('43024', 'RA02', '09/04/2015', '2200');
execute INSERTARDROPS('4965', 'RA03', '09/04/2015', '1100');
execute INSERTARDROPS('1722', 'RA03', '09/04/2015', '200');
execute INSERTARDROPS('86172', 'RA03', '10/04/2015', '1900');
execute INSERTARDROPS('143708', 'RA03', '10/04/2015', '11000');
execute INSERTARDROPS('23995', 'RA02', '10/04/2015', '700');
execute INSERTARDROPS('5329', 'RA03', '10/04/2015', '500');
execute INSERTARDROPS('8018', 'RA02', '10/04/2015', '1400');
execute INSERTARDROPS('2906', 'RA02', '10/04/2015', '200');
execute INSERTARDROPS('968', 'RA03', '10/04/2015', '4700');
execute INSERTARDROPS('76865', 'RA03', '10/04/2015', '1400');
execute INSERTARDROPS('970', 'RA03', '10/04/2015', '600');
execute INSERTARDROPS('925', 'RA03', '10/04/2015', '700');
execute INSERTARDROPS('70533', 'RA02', '10/04/2015', '900');
execute INSERTARDROPS('75024', 'RA03', '10/04/2015', '3000');
execute INSERTARDROPS('81712', 'RA02', '10/04/2015', '900');
execute INSERTARDROPS('7626', 'RA02', '10/04/2015', '400');
execute INSERTARDROPS('32676', 'RA03', '10/04/2015', '600');
execute INSERTARDROPS('109612', 'RA03', '10/04/2015', '500');
execute INSERTARDROPS('86172', 'RA03', '11/04/2015', '1000');
execute INSERTARDROPS('143708', 'RA03', '11/04/2015', '3000');
execute INSERTARDROPS('918', 'RA02', '11/04/2015', '4000');
execute INSERTARDROPS('23995', 'RA03', '11/04/2015', '1000');
execute INSERTARDROPS('107981', 'RA02', '11/04/2015', '700');
execute INSERTARDROPS('6459', 'RA02', '11/04/2015', '1900');
execute INSERTARDROPS('78176', 'RA02', '11/04/2015', '800');
execute INSERTARDROPS('138371', 'RA03', '11/04/2015', '500');
execute INSERTARDROPS('15469', 'RA03', '11/04/2015', '2800');
execute INSERTARDROPS('963', 'RA02', '11/04/2015', '400');
execute INSERTARDROPS('103328', 'RA03', '12/04/2015', '300');
execute INSERTARDROPS('8018', 'RA03', '12/04/2015', '700');
execute INSERTARDROPS('135214', 'RA03', '12/04/2015', '1200');
execute INSERTARDROPS('6595', 'RA03', '12/04/2015', '2000');
execute INSERTARDROPS('108677', 'RA03', '12/04/2015', '3100');
execute INSERTARDROPS('69103', 'RA02', '12/04/2015', '1200');
execute INSERTARDROPS('143708', 'RA02', '12/04/2015', '7600');
execute INSERTARDROPS('3142', 'RA02', '12/04/2015', '700');
execute INSERTARDROPS('918', 'RA02', '12/04/2015', '1400');
execute INSERTARDROPS('53724', 'RA03', '12/04/2015', '4300');
execute INSERTARDROPS('75024', 'RA02', '12/04/2015', '2000');
execute INSERTARDROPS('8018', 'RA03', '13/04/2015', '500');
execute INSERTARDROPS('108677', 'RA03', '13/04/2015', '4000');
execute INSERTARDROPS('137244', 'RA02', '13/04/2015', '200');
execute INSERTARDROPS('59528', 'RA02', '13/04/2015', '1000');
execute INSERTARDROPS('143708', 'RA02', '13/04/2015', '3500');
execute INSERTARDROPS('122372', 'RA02', '13/04/2015', '300');
execute INSERTARDROPS('447', 'RA02', '13/04/2015', '500');
execute INSERTARDROPS('768', 'RA03', '13/04/2015', '3200');
execute INSERTARDROPS('153943', 'RA03', '13/04/2015', '2500');
execute INSERTARDROPS('153945', 'RA03', '13/04/2015', '3000');
execute INSERTARDROPS('143708', 'RA03', '14/04/2015', '3100');
execute INSERTARDROPS('8018', 'RA02', '14/04/2015', '2200');
execute INSERTARDROPS('86172', 'RA02', '14/04/2015', '6500');
execute INSERTARDROPS('6794', 'RA03', '14/04/2015', '1600');
execute INSERTARDROPS('2906', 'RA03', '14/04/2015', '300');
execute INSERTARDROPS('108677', 'RA03', '14/04/2015', '500');
execute INSERTARDROPS('3292', 'RA03', '14/04/2015', '2300');
execute INSERTARDROPS('59528', 'RA02', '14/04/2015', '400');
execute INSERTARDROPS('183', 'RA03', '14/04/2015', '300');
execute INSERTARDROPS('153952', 'RA02', '14/04/2015', '200');
execute INSERTARDROPS('53724', 'RA03', '14/04/2015', '600');
execute INSERTARDROPS('1287', 'RA03', '14/04/2015', '600');
execute INSERTARDROPS('153958', 'RA02', '14/04/2015', '1000');
execute INSERTARDROPS('38', 'RA03', '15/04/2015', '900');
execute INSERTARDROPS('2734', 'RA03', '15/04/2015', '3000');
execute INSERTARDROPS('8018', 'RA03', '15/04/2015', '1100');
execute INSERTARDROPS('59528', 'RA02', '15/04/2015', '600');
execute INSERTARDROPS('21843', 'RA03', '15/04/2015', '400');
execute INSERTARDROPS('21468', 'RA02', '15/04/2015', '200');
execute INSERTARDROPS('108677', 'RA03', '15/04/2015', '800');
execute INSERTARDROPS('143708', 'RA03', '15/04/2015', '2000');
execute INSERTARDROPS('183', 'RA02', '15/04/2015', '300');
execute INSERTARDROPS('1287', 'RA02', '15/04/2015', '200');
execute INSERTARDROPS('153969', 'RA03', '15/04/2015', '700');
execute INSERTARDROPS('153970', 'RA03', '15/04/2015', '800');
execute INSERTARDROPS('918', 'RA03', '16/04/2015', '600');
execute INSERTARDROPS('106633', 'RA03', '16/04/2015', '200');
execute INSERTARDROPS('95457', 'RA02', '16/04/2015', '26700');
execute INSERTARDROPS('26058', 'RA03', '16/04/2015', '600');
execute INSERTARDROPS('108677', 'RA03', '16/04/2015', '4500');
execute INSERTARDROPS('353', 'RA02', '16/04/2015', '50');
execute INSERTARDROPS('143708', 'RA02', '16/04/2015', '1500');
execute INSERTARDROPS('59528', 'RA02', '16/04/2015', '600');
execute INSERTARDROPS('120264', 'RA02', '16/04/2015', '1100');
execute INSERTARDROPS('24876', 'RA03', '16/04/2015', '700');
execute INSERTARDROPS('963', 'RA03', '16/04/2015', '1700');
execute INSERTARDROPS('70376', 'RA02', '16/04/2015', '200');
execute INSERTARDROPS('868', 'RA02', '16/04/2015', '200');
execute INSERTARDROPS('124732', 'RA02', '16/04/2015', '1100');
execute INSERTARDROPS('21468', 'RA03', '16/04/2015', '300');
execute INSERTARDROPS('21469', 'RA03', '16/04/2015', '1100');
execute INSERTARDROPS('109612', 'RA03', '16/04/2015', '300');
execute INSERTARDROPS('882', 'RA02', '16/04/2015', '600');
execute INSERTARDROPS('23995', 'RA02', '16/04/2015', '800');
execute INSERTARDROPS('21468', 'RA03', '17/04/2015', '400');
execute INSERTARDROPS('143708', 'RA02', '17/04/2015', '500');
execute INSERTARDROPS('86172', 'RA02', '17/04/2015', '2000');
execute INSERTARDROPS('5329', 'RA03', '17/04/2015', '500');
execute INSERTARDROPS('59528', 'RA02', '17/04/2015', '500');
execute INSERTARDROPS('147546', 'RA02', '17/04/2015', '500');
execute INSERTARDROPS('6794', 'RA02', '17/04/2015', '2100');
execute INSERTARDROPS('23995', 'RA02', '17/04/2015', '600');
execute INSERTARDROPS('183', 'RA03', '17/04/2015', '700');
execute INSERTARDROPS('7270', 'RA03', '17/04/2015', '400');
execute INSERTARDROPS('50825', 'RA02', '17/04/2015', '500');
execute INSERTARDROPS('868', 'RA03', '17/04/2015', '300');
execute INSERTARDROPS('130214', 'RA03', '17/04/2015', '1000');
execute INSERTARDROPS('118354', 'RA03', '17/04/2015', '700');
execute INSERTARDROPS('136951', 'RA02', '17/04/2015', '1500');
execute INSERTARDROPS('694', 'RA03', '17/04/2015', '2000');
execute INSERTARDROPS('153970', 'RA03', '17/04/2015', '900');
execute INSERTARDROPS('153969', 'RA03', '17/04/2015', '2000');
execute INSERTARDROPS('21469', 'RA03', '18/04/2015', '3100');
execute INSERTARDROPS('21468', 'RA03', '18/04/2015', '2600');
execute INSERTARDROPS('970', 'RA02', '18/04/2015', '1000');
execute INSERTARDROPS('23995', 'RA02', '18/04/2015', '600');
execute INSERTARDROPS('3292', 'RA02', '18/04/2015', '800');
execute INSERTARDROPS('152165', 'RA02', '18/04/2015', '200');
execute INSERTARDROPS('110598', 'RA03', '18/04/2015', '100');
execute INSERTARDROPS('138371', 'RA03', '18/04/2015', '300');
execute INSERTARDROPS('1287', 'RA03', '18/04/2015', '300');
execute INSERTARDROPS('6459', 'RA03', '19/04/2015', '1500');
execute INSERTARDROPS('7626', 'RA03', '19/04/2015', '900');
execute INSERTARDROPS('143708', 'RA02', '19/04/2015', '800');
execute INSERTARDROPS('128977', 'RA02', '19/04/2015', '300');
execute INSERTARDROPS('963', 'RA03', '19/04/2015', '200');
execute INSERTARDROPS('15469', 'RA03', '19/04/2015', '600');
execute INSERTARDROPS('109612', 'RA02', '19/04/2015', '500');
execute INSERTARDROPS('1287', 'RA02', '19/04/2015', '500');
execute INSERTARDROPS('53724', 'RA03', '19/04/2015', '300');
execute INSERTARDROPS('135581', 'RA02', '20/04/2015', '1000');
execute INSERTARDROPS('108677', 'RA02', '20/04/2015', '600');
execute INSERTARDROPS('107981', 'RA03', '20/04/2015', '500');
execute INSERTARDROPS('768', 'RA02', '20/04/2015', '5000');
execute INSERTARDROPS('8018', 'RA02', '20/04/2015', '1100');
execute INSERTARDROPS('86172', 'RA02', '20/04/2015', '1500');
execute INSERTARDROPS('694', 'RA03', '20/04/2015', '1000');
execute INSERTARDROPS('120264', 'RA02', '20/04/2015', '600');
execute INSERTARDROPS('183', 'RA03', '20/04/2015', '500');
execute INSERTARDROPS('1287', 'RA03', '20/04/2015', '1000');
execute INSERTARDROPS('154085', 'RA02', '20/04/2015', '800');
execute INSERTARDROPS('6794', 'RA03', '21/04/2015', '1000');
execute INSERTARDROPS('23995', 'RA02', '21/04/2015', '600');
execute INSERTARDROPS('59528', 'RA02', '21/04/2015', '500');
execute INSERTARDROPS('60337', 'RA02', '21/04/2015', '1500');
execute INSERTARDROPS('6706', 'RA03', '21/04/2015', '3100');
execute INSERTARDROPS('447', 'RA03', '21/04/2015', '200');
execute INSERTARDROPS('154103', 'RA03', '21/04/2015', '2700');
execute INSERTARDROPS('56558', 'RA03', '21/04/2015', '4000');
execute INSERTARDROPS('75024', 'RA03', '21/04/2015', '2100');
execute INSERTARDROPS('154104', 'RA02', '21/04/2015', '1300');
execute INSERTARDROPS('146', 'RA03', '21/04/2015', '700');
execute INSERTARDROPS('154106', 'RA02', '21/04/2015', '1700');
execute INSERTARDROPS('109612', 'RA02', '21/04/2015', '400');
execute INSERTARDROPS('1287', 'RA02', '21/04/2015', '500');
execute INSERTARDROPS('108677', 'RA02', '22/04/2015', '4900');
execute INSERTARDROPS('59528', 'RA03', '22/04/2015', '500');
execute INSERTARDROPS('17969', 'RA03', '22/04/2015', '3200');
execute INSERTARDROPS('76865', 'RA02', '22/04/2015', '9000');
execute INSERTARDROPS('109612', 'RA02', '22/04/2015', '300');
execute INSERTARDROPS('1287', 'RA02', '22/04/2015', '1200');
execute INSERTARDROPS('6794', 'RA03', '23/04/2015', '2000');
execute INSERTARDROPS('86172', 'RA03', '23/04/2015', '200');
execute INSERTARDROPS('143708', 'RA03', '23/04/2015', '1500');
execute INSERTARDROPS('149014', 'RA02', '23/04/2015', '1500');
execute INSERTARDROPS('149671', 'RA02', '23/04/2015', '4300');
execute INSERTARDROPS('694', 'RA02', '23/04/2015', '1800');
execute INSERTARDROPS('963', 'RA03', '23/04/2015', '800');
execute INSERTARDROPS('21506', 'RA02', '23/04/2015', '3800');
execute INSERTARDROPS('154132', 'RA03', '23/04/2015', '800');
execute INSERTARDROPS('23633', 'RA03', '23/04/2015', '3600');
execute INSERTARDROPS('154133', 'RA03', '23/04/2015', '2500');
execute INSERTARDROPS('882', 'RA03', '23/04/2015', '500');
execute INSERTARDROPS('447', 'RA02', '23/04/2015', '1100');
execute INSERTARDROPS('21468', 'RA03', '24/04/2015', '1200');
execute INSERTARDROPS('21843', 'RA03', '24/04/2015', '1100');
execute INSERTARDROPS('118634', 'RA03', '24/04/2015', '1800');
execute INSERTARDROPS('154102', 'RA03', '24/04/2015', '3000');
execute INSERTARDROPS('53724', 'RA03', '24/04/2015', '4200');
execute INSERTARDROPS('1287', 'RA02', '24/04/2015', '1000');
execute INSERTARDROPS('2734', 'RA03', '24/04/2015', '1000');
execute INSERTARDROPS('109612', 'RA03', '24/04/2015', '800');
execute INSERTARDROPS('694', 'RA03', '24/04/2015', '3000');
execute INSERTARDROPS('86172', 'RA03', '25/04/2015', '700');
execute INSERTARDROPS('154102', 'RA03', '25/04/2015', '800');
execute INSERTARDROPS('357', 'RA02', '25/04/2015', '500');
execute INSERTARDROPS('694', 'RA03', '25/04/2015', '3500');
execute INSERTARDROPS('60337', 'RA03', '25/04/2015', '1700');
execute INSERTARDROPS('970', 'RA03', '25/04/2015', '1500');
execute INSERTARDROPS('167', 'RA02', '25/04/2015', '600');
execute INSERTARDROPS('72273', 'RA03', '25/04/2015', '700');
execute INSERTARDROPS('137314', 'RA02', '25/04/2015', '3000');
execute INSERTARDROPS('963', 'RA02', '25/04/2015', '900');
execute INSERTARDROPS('141785', 'RA02', '26/04/2015', '1700');
execute INSERTARDROPS('28908', 'RA03', '26/04/2015', '1000');
execute INSERTARDROPS('1163', 'RA02', '26/04/2015', '600');
execute INSERTARDROPS('938', 'RA02', '26/04/2015', '300');
execute INSERTARDROPS('69103', 'RA02', '26/04/2015', '600');
execute INSERTARDROPS('153043', 'RA03', '26/04/2015', '8400');
execute INSERTARDROPS('138371', 'RA02', '26/04/2015', '500');
execute INSERTARDROPS('150666', 'RA02', '26/04/2015', '1300');
execute INSERTARDROPS('868', 'RA03', '26/04/2015', '700');
execute INSERTARDROPS('17748', 'RA03', '27/04/2015', '1200');
execute INSERTARDROPS('357', 'RA03', '27/04/2015', '600');
execute INSERTARDROPS('143708', 'RA03', '27/04/2015', '1000');
execute INSERTARDROPS('8018', 'RA02', '27/04/2015', '1500');
execute INSERTARDROPS('153043', 'RA03', '27/04/2015', '1500');
execute INSERTARDROPS('154247', 'RA02', '27/04/2015', '400');
execute INSERTARDROPS('868', 'RA03', '27/04/2015', '800');
execute INSERTARDROPS('938', 'RA03', '27/04/2015', '1000');
execute INSERTARDROPS('143708', 'RA03', '28/04/2015', '4000');
execute INSERTARDROPS('6794', 'RA02', '28/04/2015', '700');
execute INSERTARDROPS('23995', 'RA02', '28/04/2015', '1600');
execute INSERTARDROPS('15469', 'RA03', '28/04/2015', '600');
execute INSERTARDROPS('138371', 'RA02', '29/04/2015', '600');
execute INSERTARDROPS('143708', 'RA02', '29/04/2015', '3000');
execute INSERTARDROPS('28908', 'RA02', '29/04/2015', '2200');
execute INSERTARDROPS('108677', 'RA03', '29/04/2015', '1300');
execute INSERTARDROPS('8018', 'RA02', '29/04/2015', '1600');
execute INSERTARDROPS('938', 'RA02', '29/04/2015', '200');
execute INSERTARDROPS('92194', 'RA02', '29/04/2015', '2000');
execute INSERTARDROPS('108677', 'RA03', '30/04/2015', '15000');
execute INSERTARDROPS('963', 'RA02', '30/04/2015', '1300');
execute INSERTARDROPS('23995', 'RA03', '30/04/2015', '1200');
execute INSERTARDROPS('24876', 'RA02', '30/04/2015', '800');
execute INSERTARDROPS('938', 'RA02', '30/04/2015', '1100');
execute INSERTARDROPS('153043', 'RA02', '30/04/2015', '2200');
execute INSERTARDROPS('143708', 'RA02', '30/04/2015', '6000');
execute INSERTARDROPS('1287', 'RA02', '30/04/2015', '700');
execute INSERTARDROPS('19112', 'RA02', '30/04/2015', '600');
execute INSERTARDROPS('76865', 'RA03', '30/04/2015', '1300');
execute INSERTARDROPS('15469', 'RA02', '30/04/2015', '500');
execute INSERTARDROPS('92194', 'RA02', '01/05/2015', '600');
execute INSERTARDROPS('154310', 'RA02', '01/05/2015', '4200');
execute INSERTARDROPS('73143', 'RA03', '01/05/2015', '700');
execute INSERTARDROPS('19112', 'RA03', '01/05/2015', '200');
execute INSERTARDROPS('43848', 'RA02', '02/05/2015', '300');
execute INSERTARDROPS('143708', 'RA02', '02/05/2015', '700');
execute INSERTARDROPS('963', 'RA03', '02/05/2015', '300');
execute INSERTARDROPS('15469', 'RA02', '02/05/2015', '800');
execute INSERTARDROPS('137899', 'RA03', '02/05/2015', '800');
execute INSERTARDROPS('154374', 'RA03', '03/05/2015', '4000');
execute INSERTARDROPS('938', 'RA03', '03/05/2015', '7000');
execute INSERTARDROPS('3142', 'RA03', '03/05/2015', '400');
execute INSERTARDROPS('69103', 'RA02', '03/05/2015', '1200');
execute INSERTARDROPS('124652', 'RA02', '03/05/2015', '700');
execute INSERTARDROPS('6649', 'RA02', '03/05/2015', '200');
execute INSERTARDROPS('124011', 'RA02', '03/05/2015', '1600');
execute INSERTARDROPS('53724', 'RA03', '03/05/2015', '500');
execute INSERTARDROPS('123556', 'RA02', '03/05/2015', '500');
execute INSERTARDROPS('154374', 'RA03', '04/05/2015', '3800');
execute INSERTARDROPS('81838', 'RA02', '04/05/2015', '300');
execute INSERTARDROPS('17748', 'RA02', '04/05/2015', '1100');
execute INSERTARDROPS('26228', 'RA03', '04/05/2015', '700');
execute INSERTARDROPS('149014', 'RA02', '04/05/2015', '100');
execute INSERTARDROPS('108677', 'RA02', '04/05/2015', '100');
execute INSERTARDROPS('28908', 'RA02', '04/05/2015', '600');
execute INSERTARDROPS('154399', 'RA03', '04/05/2015', '1600');
execute INSERTARDROPS('938', 'RA03', '04/05/2015', '700');
execute INSERTARDROPS('70533', 'RA03', '04/05/2015', '1300');
execute INSERTARDROPS('53724', 'RA02', '04/05/2015', '300');
execute INSERTARDROPS('154402', 'RA02', '04/05/2015', '1000');
execute INSERTARDROPS('17748', 'RA03', '05/05/2015', '1200');
execute INSERTARDROPS('135369', 'RA03', '05/05/2015', '3200');
execute INSERTARDROPS('81838', 'RA03', '05/05/2015', '100');
execute INSERTARDROPS('6794', 'RA03', '05/05/2015', '300');
execute INSERTARDROPS('8018', 'RA02', '05/05/2015', '300');
execute INSERTARDROPS('760', 'RA03', '05/05/2015', '200');
execute INSERTARDROPS('938', 'RA02', '05/05/2015', '1000');
execute INSERTARDROPS('154402', 'RA03', '05/05/2015', '4800');
execute INSERTARDROPS('53724', 'RA02', '05/05/2015', '400');
execute INSERTARDROPS('78977', 'RA02', '05/05/2015', '600');
execute INSERTARDROPS('131398', 'RA02', '05/05/2015', '300');
execute INSERTARDROPS('70533', 'RA03', '05/05/2015', '1600');
execute INSERTARDROPS('150447', 'RA02', '05/05/2015', '1000');
execute INSERTARDROPS('151568', 'RA02', '05/05/2015', '1200');
execute INSERTARDROPS('73143', 'RA03', '05/05/2015', '800');
execute INSERTARDROPS('6706', 'RA03', '06/05/2015', '1000');
execute INSERTARDROPS('938', 'RA03', '06/05/2015', '4000');
execute INSERTARDROPS('6794', 'RA02', '06/05/2015', '2400');
execute INSERTARDROPS('28908', 'RA03', '06/05/2015', '900');
execute INSERTARDROPS('23995', 'RA02', '06/05/2015', '1900');
execute INSERTARDROPS('143708', 'RA03', '06/05/2015', '1000');
execute INSERTARDROPS('69103', 'RA03', '06/05/2015', '3500');
execute INSERTARDROPS('154435', 'RA03', '06/05/2015', '300');
execute INSERTARDROPS('144793', 'RA03', '06/05/2015', '2500');
execute INSERTARDROPS('147146', 'RA03', '06/05/2015', '2300');
execute INSERTARDROPS('24876', 'RA03', '07/05/2015', '800');
execute INSERTARDROPS('149014', 'RA03', '07/05/2015', '1600');
execute INSERTARDROPS('963', 'RA03', '07/05/2015', '300');
execute INSERTARDROPS('23995', 'RA03', '07/05/2015', '4000');
execute INSERTARDROPS('143708', 'RA03', '07/05/2015', '4200');
execute INSERTARDROPS('6794', 'RA03', '07/05/2015', '2900');
execute INSERTARDROPS('760', 'RA03', '07/05/2015', '800');
execute INSERTARDROPS('183', 'RA03', '07/05/2015', '100');
execute INSERTARDROPS('154461', 'RA02', '07/05/2015', '600');
execute INSERTARDROPS('938', 'RA02', '07/05/2015', '1400');
execute INSERTARDROPS('28908', 'RA02', '07/05/2015', '3200');
execute INSERTARDROPS('109612', 'RA02', '07/05/2015', '200');
execute INSERTARDROPS('694', 'RA03', '07/05/2015', '3000');
execute INSERTARDROPS('17748', 'RA03', '08/05/2015', '1200');
execute INSERTARDROPS('1674', 'RA02', '08/05/2015', '1500');
execute INSERTARDROPS('154429', 'RA02', '08/05/2015', '1500');
execute INSERTARDROPS('8018', 'RA03', '08/05/2015', '600');
execute INSERTARDROPS('81838', 'RA03', '08/05/2015', '200');
execute INSERTARDROPS('23995', 'RA02', '08/05/2015', '3500');
execute INSERTARDROPS('425', 'RA03', '08/05/2015', '500');
execute INSERTARDROPS('69103', 'RA03', '08/05/2015', '3900');
execute INSERTARDROPS('103394', 'RA03', '08/05/2015', '200');
execute INSERTARDROPS('6706', 'RA03', '08/05/2015', '3500');
execute INSERTARDROPS('109612', 'RA03', '08/05/2015', '300');
execute INSERTARDROPS('17748', 'RA03', '09/05/2015', '1200');
execute INSERTARDROPS('760', 'RA02', '09/05/2015', '800');
execute INSERTARDROPS('23995', 'RA02', '09/05/2015', '1500');
execute INSERTARDROPS('109612', 'RA02', '09/05/2015', '2300');
execute INSERTARDROPS('53724', 'RA03', '09/05/2015', '400');
execute INSERTARDROPS('103394', 'RA02', '09/05/2015', '1500');
execute INSERTARDROPS('963', 'RA03', '10/05/2015', '600');
execute INSERTARDROPS('938', 'RA03', '10/05/2015', '1400');
execute INSERTARDROPS('17748', 'RA03', '10/05/2015', '1200');
execute INSERTARDROPS('3292', 'RA02', '10/05/2015', '1500');
execute INSERTARDROPS('2967', 'RA03', '10/05/2015', '50');
execute INSERTARDROPS('3142', 'RA03', '10/05/2015', '200');
execute INSERTARDROPS('918', 'RA03', '10/05/2015', '800');
execute INSERTARDROPS('53724', 'RA03', '10/05/2015', '900');
execute INSERTARDROPS('154582', 'RA03', '10/05/2015', '1000');
execute INSERTARDROPS('148178', 'RA03', '10/05/2015', '700');
execute INSERTARDROPS('128148', 'RA03', '11/05/2015', '1900');
execute INSERTARDROPS('38', 'RA02', '11/05/2015', '800');
execute INSERTARDROPS('911', 'RA03', '11/05/2015', '400');
execute INSERTARDROPS('8018', 'RA02', '11/05/2015', '1200');
execute INSERTARDROPS('154429', 'RA03', '11/05/2015', '5400');
execute INSERTARDROPS('6794', 'RA03', '11/05/2015', '1600');
execute INSERTARDROPS('138849', 'RA03', '11/05/2015', '200');
execute INSERTARDROPS('447', 'RA03', '11/05/2015', '600');
execute INSERTARDROPS('70533', 'RA03', '11/05/2015', '1200');
execute INSERTARDROPS('86172', 'RA02', '11/05/2015', '500');
execute INSERTARDROPS('143708', 'RA03', '11/05/2015', '1600');
execute INSERTARDROPS('154595', 'RA03', '11/05/2015', '1500');
execute INSERTARDROPS('918', 'RA02', '12/05/2015', '700');
execute INSERTARDROPS('142027', 'RA02', '12/05/2015', '2200');
execute INSERTARDROPS('183', 'RA02', '12/05/2015', '200');
execute INSERTARDROPS('150447', 'RA02', '12/05/2015', '600');
execute INSERTARDROPS('138849', 'RA02', '12/05/2015', '700');
execute INSERTARDROPS('8139', 'RA02', '12/05/2015', '500');
execute INSERTARDROPS('154606', 'RA02', '12/05/2015', '2100');
execute INSERTARDROPS('17748', 'RA02', '13/05/2015', '700');
execute INSERTARDROPS('6794', 'RA02', '13/05/2015', '1900');
execute INSERTARDROPS('142027', 'RA02', '13/05/2015', '2200');
execute INSERTARDROPS('8018', 'RA03', '13/05/2015', '1000');
execute INSERTARDROPS('938', 'RA03', '13/05/2015', '200');
execute INSERTARDROPS('43024', 'RA03', '13/05/2015', '2100');
execute INSERTARDROPS('154595', 'RA03', '13/05/2015', '1000');
execute INSERTARDROPS('70533', 'RA03', '13/05/2015', '800');
execute INSERTARDROPS('1287', 'RA03', '13/05/2015', '200');
execute INSERTARDROPS('1722', 'RA03', '13/05/2015', '400');
execute INSERTARRESULTADOSTIRADAS('846', 'RA0242046,092650463','1000', '0');
execute INSERTARRESULTADOSTIRADAS('1183', 'RA0242068,8757986111','500', '0');
execute INSERTARRESULTADOSTIRADAS('3292', 'RA0342072,8330208333','500', '1100');
execute INSERTARRESULTADOSTIRADAS('8018', 'RA0342040,7979861111','0', '1500');
execute INSERTARRESULTADOSTIRADAS('19423', 'RA0342059,928912037','-700', '700');
execute INSERTARRESULTADOSTIRADAS('19423', 'RA0242087,1015162037','1700', '2800');
execute INSERTARRESULTADOSTIRADAS('19423', 'RA0242089,9958333333','14000', '25700');
execute INSERTARRESULTADOSTIRADAS('19423', 'RA0342090,9851851852','-2300', '1800');
execute INSERTARRESULTADOSTIRADAS('19423', 'RA0342093,9717361111','-2000', '11500');
execute INSERTARRESULTADOSTIRADAS('19499', 'RA0342020,8683564815','-500', '500');
execute INSERTARRESULTADOSTIRADAS('19843', 'RA0342065,0028935185','-2000', '2000');
execute INSERTARRESULTADOSTIRADAS('20006', 'RA0342044,8796875','-500', '0');
execute INSERTARRESULTADOSTIRADAS('20064', 'RA0342073,8486805556','700', '1800');
execute INSERTARRESULTADOSTIRADAS('21468', 'RA0242039,9540740741','500', '0');
execute INSERTARRESULTADOSTIRADAS('21468', 'RA0242109,8808333333','2100', '200');
execute INSERTARRESULTADOSTIRADAS('21468', 'RA0342110,9674074074','700', '300');
execute INSERTARRESULTADOSTIRADAS('21468', 'RA0342111,7698842593','0', '400');
execute INSERTARRESULTADOSTIRADAS('21468', 'RA0342112,776099537','-1000', '2600');
execute INSERTARRESULTADOSTIRADAS('21468', 'RA0342118,7541319444','-1200', '1200');
execute INSERTARRESULTADOSTIRADAS('21469', 'RA0242006,8031828704','500', '800');
execute INSERTARRESULTADOSTIRADAS('21469', 'RA0342018,7664930556','-800', '800');
execute INSERTARRESULTADOSTIRADAS('21469', 'RA0342105,772349537','500', '0');
execute INSERTARRESULTADOSTIRADAS('21469', 'RA0342110,9674074074','-1100', '1100');
execute INSERTARRESULTADOSTIRADAS('21469', 'RA0342112,7752083333','-1600', '3100');
execute INSERTARRESULTADOSTIRADAS('21506', 'RA0242117,9296412037','-800', '3800');
execute INSERTARRESULTADOSTIRADAS('21552', 'RA0342043,1406481481','700', '300');
execute INSERTARRESULTADOSTIRADAS('21552', 'RA0342104,0592361111','-1000', '1000');
execute INSERTARRESULTADOSTIRADAS('21553', 'RA0342009,8301388889','-900', '900');
execute INSERTARRESULTADOSTIRADAS('21553', 'RA0342067,8023726852','-400', '400');
execute INSERTARRESULTADOSTIRADAS('21774', 'RA0342063,087974537','1000', '0');
execute INSERTARRESULTADOSTIRADAS('21843', 'RA0342015,8312731481','600', '400');
execute INSERTARRESULTADOSTIRADAS('21843', 'RA0242017,9224537037','-800', '800');
execute INSERTARRESULTADOSTIRADAS('21843', 'RA0342027,780462963','-1300', '1300');
execute INSERTARRESULTADOSTIRADAS('21843', 'RA0342050,8118634259','-1300', '1300');
execute INSERTARRESULTADOSTIRADAS('21843', 'RA0342109,8459722222','0', '400');
execute INSERTARRESULTADOSTIRADAS('21843', 'RA0342118,8288425926','-1100', '1100');
execute INSERTARRESULTADOSTIRADAS('21967', 'RA0342062,7792361111','1000', '0');
execute INSERTARRESULTADOSTIRADAS('22684', 'RA0242058,1310763889','-800', '800');
execute INSERTARRESULTADOSTIRADAS('23124', 'RA0242012,810150463','400', '600');
execute INSERTARRESULTADOSTIRADAS('23124', 'RA0342041,7878587963','-1000', '0');
execute INSERTARRESULTADOSTIRADAS('23124', 'RA0342063,793287037','500', '0');
execute INSERTARRESULTADOSTIRADAS('23633', 'RA0342118,0090625','-3600', '3600');
execute INSERTARRESULTADOSTIRADAS('23995', 'RA0242007,1039236111','500', '1000');
execute INSERTARRESULTADOSTIRADAS('23995', 'RA0242024,8359375','300', '300');
execute INSERTARRESULTADOSTIRADAS('23995', 'RA0242026,8640393519','2000', '0');
execute INSERTARRESULTADOSTIRADAS('23995', 'RA0242033,9086111111','-2700', '2700');
execute INSERTARRESULTADOSTIRADAS('23995', 'RA0342040,8990856481','2100', '1900');
execute INSERTARRESULTADOSTIRADAS('23995', 'RA0342048,0226041667','-200', '200');
execute INSERTARRESULTADOSTIRADAS('23995', 'RA0242061,8783333333','0', '2000');
execute INSERTARRESULTADOSTIRADAS('23995', 'RA0342068,8802083333','-1500', '1500');
execute INSERTARRESULTADOSTIRADAS('23995', 'RA0342069,8348842593','-900', '900');
execute INSERTARRESULTADOSTIRADAS('23995', 'RA0342089,7728472222','-7600', '7600');
execute INSERTARRESULTADOSTIRADAS('23995', 'RA0342103,8176736111','-200', '2200');
execute INSERTARRESULTADOSTIRADAS('23995', 'RA0242104,7989467593','1300', '700');
execute INSERTARRESULTADOSTIRADAS('23995', 'RA0342105,8312152777','8000', '1000');
execute INSERTARRESULTADOSTIRADAS('23995', 'RA0242111,0433680556','-1200', '800');
execute INSERTARRESULTADOSTIRADAS('23995', 'RA0242111,8663194444','0', '600');
execute INSERTARRESULTADOSTIRADAS('23995', 'RA0242112,9510416667','400', '600');
execute INSERTARRESULTADOSTIRADAS('23995', 'RA0242115,8018634259','1400', '600');
execute INSERTARRESULTADOSTIRADAS('23995', 'RA0242122,864837963','400', '1600');
execute INSERTARRESULTADOSTIRADAS('23995', 'RA0342124,8764814815','3200', '1200');
execute INSERTARRESULTADOSTIRADAS('23995', 'RA0242130,874525463','-1900', '1900');
execute INSERTARRESULTADOSTIRADAS('23995', 'RA0342131,8063541667','500', '4000');
execute INSERTARRESULTADOSTIRADAS('23995', 'RA0242132,8316435185','-3500', '3500');
execute INSERTARRESULTADOSTIRADAS('23995', 'RA0242133,9302662037','2500', '1500');
execute INSERTARRESULTADOSTIRADAS('24649', 'RA0342014,8293518519','900', '600');
execute INSERTARRESULTADOSTIRADAS('24649', 'RA0342015,8863425926','500', '3000');
execute INSERTARRESULTADOSTIRADAS('24649', 'RA0342016,8579166667','300', '1700');
execute INSERTARRESULTADOSTIRADAS('24876', 'RA0342033,7757986111','-300', '300');
execute INSERTARRESULTADOSTIRADAS('24876', 'RA0242039,9623842593','2200', '1300');
execute INSERTARRESULTADOSTIRADAS('24876', 'RA0342040,9075925926','-2800', '1800');
execute INSERTARRESULTADOSTIRADAS('24876', 'RA0342041,7914351852','-2200', '2200');
execute INSERTARRESULTADOSTIRADAS('24876', 'RA0342061,9467476852','-1500', '500');
execute INSERTARRESULTADOSTIRADAS('24876', 'RA0342072,7877083333','-300', '300');
execute INSERTARRESULTADOSTIRADAS('24876', 'RA0342083,7875115741','-1000', '1000');
execute INSERTARRESULTADOSTIRADAS('24876', 'RA0342103,7789467593','-500', '0');
execute INSERTARRESULTADOSTIRADAS('24876', 'RA0342110,9073958333','-700', '700');
execute INSERTARRESULTADOSTIRADAS('24876', 'RA0242124,9258449074','200', '800');
execute INSERTARRESULTADOSTIRADAS('24876', 'RA0342131,7601041667','-800', '800');
execute INSERTARRESULTADOSTIRADAS('26058', 'RA0242034,8073726852','-500', '0');
execute INSERTARRESULTADOSTIRADAS('26058', 'RA0342110,7925810185','0', '600');
execute INSERTARRESULTADOSTIRADAS('26228', 'RA0342128,7693055556','-700', '700');
execute INSERTARRESULTADOSTIRADAS('27939', 'RA0242106,8150347222','-2000', '0');
execute INSERTARRESULTADOSTIRADAS('28908', 'RA0242006,8484259259','-300', '300');
execute INSERTARRESULTADOSTIRADAS('28908', 'RA0342008,9469907407','-1000', '1000');
execute INSERTARRESULTADOSTIRADAS('28908', 'RA0342009,7545717593','-5500', '5500');
execute INSERTARRESULTADOSTIRADAS('28908', 'RA0342016,7719675926','-7600', '7600');
execute INSERTARRESULTADOSTIRADAS('28908', 'RA0342021,8374652778','-3300', '3300');
execute INSERTARRESULTADOSTIRADAS('28908', 'RA0342024,8009375','-200', '200');
execute INSERTARRESULTADOSTIRADAS('28908', 'RA0342039,8131018519','-300', '300');
execute INSERTARRESULTADOSTIRADAS('28908', 'RA0342040,7887962963','-4800', '4800');
execute INSERTARRESULTADOSTIRADAS('28908', 'RA0342047,0241435185','0', '600');
execute INSERTARRESULTADOSTIRADAS('28908', 'RA0342120,8089699074','1500', '1000');
execute INSERTARRESULTADOSTIRADAS('28908', 'RA0242123,8055902778','-2200', '2200');
execute INSERTARRESULTADOSTIRADAS('28908', 'RA0242128,8116550926','-600', '600');
execute INSERTARRESULTADOSTIRADAS('28908', 'RA0342130,8527893519','600', '900');
execute INSERTARRESULTADOSTIRADAS('28908', 'RA0242132,005','-3200', '3200');
execute INSERTARRESULTADOSTIRADAS('31194', 'RA0242016,822025463','-2000', '2000');
execute INSERTARRESULTADOSTIRADAS('32676', 'RA0342046,8380324074','0', '500');
execute INSERTARRESULTADOSTIRADAS('32676', 'RA0342065,9513194444','400', '300');
execute INSERTARRESULTADOSTIRADAS('32676', 'RA0242067,8843981481','500', '700');
execute INSERTARRESULTADOSTIRADAS('32676', 'RA0242071,9136226852','400', '1100');
execute INSERTARRESULTADOSTIRADAS('32676', 'RA0342077,9372916667','500', '600');
execute INSERTARRESULTADOSTIRADAS('32676', 'RA0342079,8321296296','-2200', '1200');
execute INSERTARRESULTADOSTIRADAS('32676', 'RA0342104,9611689815','-1400', '600');
execute INSERTARRESULTADOSTIRADAS('33494', 'RA0342009,7848842593','-900', '900');
execute INSERTARRESULTADOSTIRADAS('33494', 'RA0342012,7917013889','-3000', '3000');
execute INSERTARRESULTADOSTIRADAS('33494', 'RA0342020,771412037','-500', '1100');
execute INSERTARRESULTADOSTIRADAS('33494', 'RA0342027,7653587963','1300', '200');
execute INSERTARRESULTADOSTIRADAS('33494', 'RA0342030,7909375','-2700', '2700');
execute INSERTARRESULTADOSTIRADAS('33494', 'RA0342034,7693287037','-700', '1100');
execute INSERTARRESULTADOSTIRADAS('35295', 'RA0342062,7563310185','-1500', '1500');
execute INSERTARRESULTADOSTIRADAS('40995', 'RA0242008,9963773148','500', '800');
execute INSERTARRESULTADOSTIRADAS('40995', 'RA0342010,9115162037','-1400', '1400');
execute INSERTARRESULTADOSTIRADAS('40995', 'RA0242023,9524884259','1800', '0');
execute INSERTARRESULTADOSTIRADAS('40995', 'RA0242024,9938773148','0', '600');
execute INSERTARRESULTADOSTIRADAS('40995', 'RA0342026,0519791667','-1500', '1500');
execute INSERTARRESULTADOSTIRADAS('43024', 'RA0242104,0707638889','-2500', '2200');
execute INSERTARRESULTADOSTIRADAS('43024', 'RA0342137,9680208333','-100', '2100');
execute INSERTARRESULTADOSTIRADAS('43848', 'RA0242126,860787037','1000', '300');
execute INSERTARRESULTADOSTIRADAS('44425', 'RA0342095,0790856481','-500', '1000');
execute INSERTARRESULTADOSTIRADAS('45855', 'RA0242117,1201388889','-4500', '0');
execute INSERTARRESULTADOSTIRADAS('45859', 'RA0342058,9413657407','1000', '0');
execute INSERTARRESULTADOSTIRADAS('48473', 'RA0242024,8430902778','200', '800');
execute INSERTARRESULTADOSTIRADAS('49669', 'RA0242080,9562731481','-300', '300');
execute INSERTARRESULTADOSTIRADAS('1183', 'RA0342069,8963657407','-1100', '1100');
execute INSERTARRESULTADOSTIRADAS('1183', 'RA0242070,9340393519','-400', '400');
execute INSERTARRESULTADOSTIRADAS('1183', 'RA0242076,890324074','1100', '400');
execute INSERTARRESULTADOSTIRADAS('1183', 'RA0342077,8939814815','-600', '600');
execute INSERTARRESULTADOSTIRADAS('1183', 'RA0242078,8884837963','1000', '0');
execute INSERTARRESULTADOSTIRADAS('1183', 'RA0342082,8736342593','-600', '600');
execute INSERTARRESULTADOSTIRADAS('1183', 'RA0342090,8890046296','-1300', '800');
execute INSERTARRESULTADOSTIRADAS('1183', 'RA0242097,8953009259','-1800', '800');
execute INSERTARRESULTADOSTIRADAS('1213', 'RA0242063,8589467593','1100', '400');
execute INSERTARRESULTADOSTIRADAS('1287', 'RA0342011,8613194444','1100', '400');
execute INSERTARRESULTADOSTIRADAS('1287', 'RA0342013,9551736111','4500', '0');
execute INSERTARRESULTADOSTIRADAS('1287', 'RA0242014,9370717593','-2400', '2400');
execute INSERTARRESULTADOSTIRADAS('1287', 'RA0342031,041712963','-300', '300');
execute INSERTARRESULTADOSTIRADAS('1287', 'RA0242031,9673611111','1100', '400');
execute INSERTARRESULTADOSTIRADAS('1287', 'RA0342032,9508333333','600', '400');
execute INSERTARRESULTADOSTIRADAS('1287', 'RA0342035,9348379629','500', '500');
execute INSERTARRESULTADOSTIRADAS('1287', 'RA0342037,0148842593','-500', '500');
execute INSERTARRESULTADOSTIRADAS('1287', 'RA0342047,0140162037','-500', '500');
execute INSERTARRESULTADOSTIRADAS('1287', 'RA0342056,857337963','-900', '900');
execute INSERTARRESULTADOSTIRADAS('1287', 'RA0342061,0263078704','-500', '500');
execute INSERTARRESULTADOSTIRADAS('1287', 'RA0242062,9495717593','-600', '600');
execute INSERTARRESULTADOSTIRADAS('1287', 'RA0242070,9352546296','-500', '500');
execute INSERTARRESULTADOSTIRADAS('1287', 'RA0242077,8524189815','-500', '500');
execute INSERTARRESULTADOSTIRADAS('1287', 'RA0342081,9284837963','500', '600');
execute INSERTARRESULTADOSTIRADAS('1287', 'RA0342084,8218055556','1500', '300');
execute INSERTARRESULTADOSTIRADAS('1287', 'RA0242085,9675347222','1900', '600');
execute INSERTARRESULTADOSTIRADAS('1287', 'RA0242087,0119097222','-200', '200');
execute INSERTARRESULTADOSTIRADAS('1287', 'RA0242088,9429050926','-1500', '1500');
execute INSERTARRESULTADOSTIRADAS('1287', 'RA0342090,9796527777','-200', '200');
execute INSERTARRESULTADOSTIRADAS('1287', 'RA0242091,9425578704','-300', '300');
execute INSERTARRESULTADOSTIRADAS('1287', 'RA0342109,0206134259','3400', '600');
execute INSERTARRESULTADOSTIRADAS('1287', 'RA0242109,9828240741','400', '200');
execute INSERTARRESULTADOSTIRADAS('1287', 'RA0342113,0790740741','-300', '300');
execute INSERTARRESULTADOSTIRADAS('1287', 'RA0242114,0155324074','-500', '500');
execute INSERTARRESULTADOSTIRADAS('1287', 'RA0342114,9154166667','-200', '1000');
execute INSERTARRESULTADOSTIRADAS('1287', 'RA0242116,0923148148','0', '500');
execute INSERTARRESULTADOSTIRADAS('1287', 'RA0242116,9851157407','-1200', '1200');
execute INSERTARRESULTADOSTIRADAS('1287', 'RA0242118,8714351852','-1000', '1000');
execute INSERTARRESULTADOSTIRADAS('1287', 'RA0242124,9569560185','1000', '700');
execute INSERTARRESULTADOSTIRADAS('1287', 'RA0342137,9952777777','-200', '200');
execute INSERTARRESULTADOSTIRADAS('1319', 'RA0342010,8820833333','200', '300');
execute INSERTARRESULTADOSTIRADAS('1319', 'RA0242023,8904398148','1400', '0');
execute INSERTARRESULTADOSTIRADAS('1319', 'RA0242044,8845486111','1500', '0');
execute INSERTARRESULTADOSTIRADAS('1319', 'RA0342045,9046412037','100', '0');
execute INSERTARRESULTADOSTIRADAS('1319', 'RA0342094,9251967593','-300', '300');
execute INSERTARRESULTADOSTIRADAS('1674', 'RA0342017,7726157407','-800', '800');
execute INSERTARRESULTADOSTIRADAS('1674', 'RA0342020,7589930556','-500', '500');
execute INSERTARRESULTADOSTIRADAS('1674', 'RA0342059,7848148148','-900', '100');
execute INSERTARRESULTADOSTIRADAS('1674', 'RA0342060,7828125','-900', '900');
execute INSERTARRESULTADOSTIRADAS('1674', 'RA0342068,7833449074','-400', '400');
execute INSERTARRESULTADOSTIRADAS('1674', 'RA0242076,8373032407','900', '100');
execute INSERTARRESULTADOSTIRADAS('1674', 'RA0342079,7795601852','-1200', '1200');
execute INSERTARRESULTADOSTIRADAS('1674', 'RA0342102,78875','500', '100');
execute INSERTARRESULTADOSTIRADAS('1674', 'RA0242132,7668171296','-1500', '1500');
execute INSERTARRESULTADOSTIRADAS('1722', 'RA0342104,1245717593','-200', '200');
execute INSERTARRESULTADOSTIRADAS('1722', 'RA0342138,1039236111','-400', '400');
execute INSERTARRESULTADOSTIRADAS('1792', 'RA0342027,9922916667','500', '0');
execute INSERTARRESULTADOSTIRADAS('1792', 'RA0242030,8980439815','-500', '0');
execute INSERTARRESULTADOSTIRADAS('2364', 'RA0342128,8797916667','800', '0');
execute INSERTARRESULTADOSTIRADAS('2406', 'RA0242101,7891898148','900', '0');
execute INSERTARRESULTADOSTIRADAS('2589', 'RA0342060,8178587963','-1800', '200');
execute INSERTARRESULTADOSTIRADAS('2701', 'RA0242079,9381365741','-7000', '0');
execute INSERTARRESULTADOSTIRADAS('2734', 'RA0342109,7948032407','-1000', '3000');
execute INSERTARRESULTADOSTIRADAS('2734', 'RA0342118,8776851852','500', '1000');
execute INSERTARRESULTADOSTIRADAS('2906', 'RA0342017,8211226852','400', '100');
execute INSERTARRESULTADOSTIRADAS('2906', 'RA0242023,8149305556','600', '400');
execute INSERTARRESULTADOSTIRADAS('2906', 'RA0342027,8146875','500', '300');
execute INSERTARRESULTADOSTIRADAS('2906', 'RA0342038,8088310185','-400', '400');
execute INSERTARRESULTADOSTIRADAS('2906', 'RA0342039,8606712963','300', '200');
execute INSERTARRESULTADOSTIRADAS('2906', 'RA0342041,7818287037','-1000', '1000');
execute INSERTARRESULTADOSTIRADAS('2906', 'RA0342045,8394907407','300', '500');
execute INSERTARRESULTADOSTIRADAS('2906', 'RA0342046,8561458333','-500', '500');
execute INSERTARRESULTADOSTIRADAS('2906', 'RA0342047,8456828704','0', '400');
execute INSERTARRESULTADOSTIRADAS('2906', 'RA0342048,7918287037','800', '700');
execute INSERTARRESULTADOSTIRADAS('2906', 'RA0342055,7754282407','-600', '600');
execute INSERTARRESULTADOSTIRADAS('2906', 'RA0342059,8318518518','-200', '200');
execute INSERTARRESULTADOSTIRADAS('2906', 'RA0242065,8196527778','-600', '600');
execute INSERTARRESULTADOSTIRADAS('2906', 'RA0342069,7988657407','500', '500');
execute INSERTARRESULTADOSTIRADAS('2906', 'RA0242072,8110648148','500', '200');
execute INSERTARRESULTADOSTIRADAS('2906', 'RA0242074,8536458333','800', '100');
execute INSERTARRESULTADOSTIRADAS('2906', 'RA0342075,7833449074','500', '200');
execute INSERTARRESULTADOSTIRADAS('2906', 'RA0342076,7869675926','1200', '200');
execute INSERTARRESULTADOSTIRADAS('2906', 'RA0242079,8075462963','-900', '900');
execute INSERTARRESULTADOSTIRADAS('2906', 'RA0342080,8427430556','-700', '700');
execute INSERTARRESULTADOSTIRADAS('2906', 'RA0242082,8513657407','1000', '1000');
execute INSERTARRESULTADOSTIRADAS('2906', 'RA0342083,7846412037','-1500', '1500');
execute INSERTARRESULTADOSTIRADAS('2906', 'RA0342087,7950810185','-500', '500');
execute INSERTARRESULTADOSTIRADAS('2906', 'RA0342088,8512847222','-200', '200');
execute INSERTARRESULTADOSTIRADAS('2906', 'RA0342089,8141435185','300', '500');
execute INSERTARRESULTADOSTIRADAS('2906', 'RA0342090,776875','-1000', '1000');
execute INSERTARRESULTADOSTIRADAS('2906', 'RA0342094,8237037037','-400', '400');
execute INSERTARRESULTADOSTIRADAS('2906', 'RA0242104,8412268519','500', '200');
execute INSERTARRESULTADOSTIRADAS('2906', 'RA0342108,8113310185','-300', '300');
execute INSERTARRESULTADOSTIRADAS('2967', 'RA0342134,8660185185','1000', '50');
execute INSERTARRESULTADOSTIRADAS('3036', 'RA0242005,8264583333','-2000', '0');
execute INSERTARRESULTADOSTIRADAS('3036', 'RA0242014,9249652777','0', '1000');
execute INSERTARRESULTADOSTIRADAS('3036', 'RA0342017,7933796296','900', '600');
execute INSERTARRESULTADOSTIRADAS('3036', 'RA0342023,7961574074','0', '2000');
execute INSERTARRESULTADOSTIRADAS('3036', 'RA0342027,8426388889','-500', '2000');
execute INSERTARRESULTADOSTIRADAS('3036', 'RA0342028,8932291667','-500', '2000');
execute INSERTARRESULTADOSTIRADAS('3036', 'RA0342031,8337152778','300', '1200');
execute INSERTARRESULTADOSTIRADAS('3036', 'RA0342036,8330324074','700', '300');
execute INSERTARRESULTADOSTIRADAS('3036', 'RA0342037,8275694444','-2300', '2300');
execute INSERTARRESULTADOSTIRADAS('3036', 'RA0342038,8123148148','3500', '2000');
execute INSERTARRESULTADOSTIRADAS('3036', 'RA0342041,7818287037','-3200', '15200');
execute INSERTARRESULTADOSTIRADAS('3036', 'RA0242043,0573958333','300', '200');
execute INSERTARRESULTADOSTIRADAS('3036', 'RA0342045,8062037037','1300', '1200');
execute INSERTARRESULTADOSTIRADAS('3036', 'RA0242048,8584953704','1800', '2200');
execute INSERTARRESULTADOSTIRADAS('3036', 'RA0242051,819375','-2200', '2200');
execute INSERTARRESULTADOSTIRADAS('3093', 'RA0342113,7809259259','-1000', '0');
execute INSERTARRESULTADOSTIRADAS('3142', 'RA0342063,9637847222','500', '0');
execute INSERTARRESULTADOSTIRADAS('3142', 'RA0342092,7547337963','-4700', '4700');
execute INSERTARRESULTADOSTIRADAS('3142', 'RA0242106,8755092593','1300', '700');
execute INSERTARRESULTADOSTIRADAS('3142', 'RA0342127,9196875','400', '400');
execute INSERTARRESULTADOSTIRADAS('3142', 'RA0342134,9344212963','3000', '200');
execute INSERTARRESULTADOSTIRADAS('3292', 'RA0242008,8413657407','-400', '400');
execute INSERTARRESULTADOSTIRADAS('3292', 'RA0342023,7919328704','-4000', '4000');
execute INSERTARRESULTADOSTIRADAS('3292', 'RA0242045,877974537','1400', '660');
execute INSERTARRESULTADOSTIRADAS('3292', 'RA0342046,8074421296','1500', '300');
execute INSERTARRESULTADOSTIRADAS('3292', 'RA0242047,8204976852','1100', '2400');
execute INSERTARRESULTADOSTIRADAS('3292', 'RA0342059,8075','-3200', '3200');
execute INSERTARRESULTADOSTIRADAS('3292', 'RA0342060,8092824074','1000', '2500');
execute INSERTARRESULTADOSTIRADAS('3292', 'RA0242061,8679513889','100', '1500');
execute INSERTARRESULTADOSTIRADAS('3292', 'RA0242065,8535416667','700', '600');
execute INSERTARRESULTADOSTIRADAS('3292', 'RA0342070,9163657407','-1900', '1900');
execute INSERTARRESULTADOSTIRADAS('38', 'RA0342023,7919328704','-1500', '0');
execute INSERTARRESULTADOSTIRADAS('38', 'RA0342030,7991666667','0', '0');
execute INSERTARRESULTADOSTIRADAS('38', 'RA0342031,8260069444','1500', '1000');
execute INSERTARRESULTADOSTIRADAS('38', 'RA0342039,760462963','1000', '0');
execute INSERTARRESULTADOSTIRADAS('38', 'RA0342044,8030208333','600', '0');
execute INSERTARRESULTADOSTIRADAS('38', 'RA0342047,8146759259','0', '800');
execute INSERTARRESULTADOSTIRADAS('38', 'RA0342061,7876041667','-1600', '600');
execute INSERTARRESULTADOSTIRADAS('38', 'RA0342068,7589814815','1300', '0');
execute INSERTARRESULTADOSTIRADAS('38', 'RA0342078,8320138889','-2000', '100');
execute INSERTARRESULTADOSTIRADAS('38', 'RA0342099,7640740741','-600', '0');
execute INSERTARRESULTADOSTIRADAS('38', 'RA0342109,7622916667','1900', '900');
execute INSERTARRESULTADOSTIRADAS('38', 'RA0342119,7736226852','-1200', '0');
execute INSERTARRESULTADOSTIRADAS('38', 'RA0342123,7565856481','500', '0');
execute INSERTARRESULTADOSTIRADAS('38', 'RA0342128,8126041667','2600', '0');
execute INSERTARRESULTADOSTIRADAS('38', 'RA0242135,7927893518','-3000', '800');
execute INSERTARRESULTADOSTIRADAS('146', 'RA0342087,7645023148','-1900', '900');
execute INSERTARRESULTADOSTIRADAS('146', 'RA0342115,9621296296','300', '700');
execute INSERTARRESULTADOSTIRADAS('165', 'RA0342118,8511458333','1000', '0');
execute INSERTARRESULTADOSTIRADAS('167', 'RA0242119,8526157407','-600', '600');
execute INSERTARRESULTADOSTIRADAS('183', 'RA0242012,9779050926','1900', '100');
execute INSERTARRESULTADOSTIRADAS('183', 'RA0242023,9153587963','2000', '500');
execute INSERTARRESULTADOSTIRADAS('183', 'RA0242024,9428009259','-600', '600');
execute INSERTARRESULTADOSTIRADAS('183', 'RA0342030,9520717593','-900', '700');
execute INSERTARRESULTADOSTIRADAS('183', 'RA0242033,9013425926','-1000', '0');
execute INSERTARRESULTADOSTIRADAS('183', 'RA0342040,9584837963','-600', '100');
execute INSERTARRESULTADOSTIRADAS('183', 'RA0342044,9706365741','-2300', '1800');
execute INSERTARRESULTADOSTIRADAS('183', 'RA0342072,9523842593','-100', '100');
execute INSERTARRESULTADOSTIRADAS('183', 'RA0342080,0109027777','-900', '1400');
execute INSERTARRESULTADOSTIRADAS('183', 'RA0242083,9098842593','100', '900');
execute INSERTARRESULTADOSTIRADAS('183', 'RA0342085,8651388889','-1600', '1600');
execute INSERTARRESULTADOSTIRADAS('183', 'RA0342086,9308449074','-1200', '200');
execute INSERTARRESULTADOSTIRADAS('183', 'RA0242088,8914699074','-2400', '900');
execute INSERTARRESULTADOSTIRADAS('183', 'RA0342103,9326157407','200', '300');
execute INSERTARRESULTADOSTIRADAS('183', 'RA0342108,9151736111','3000', '300');
execute INSERTARRESULTADOSTIRADAS('183', 'RA0242109,9607523148','-300', '300');
execute INSERTARRESULTADOSTIRADAS('183', 'RA0342111,9482523148','-700', '700');
execute INSERTARRESULTADOSTIRADAS('183', 'RA0342114,910775463','-1500', '500');
execute INSERTARRESULTADOSTIRADAS('183', 'RA0342131,9011111111','400', '100');
execute INSERTARRESULTADOSTIRADAS('183', 'RA0242136,9071064815','1300', '200');
execute INSERTARRESULTADOSTIRADAS('207', 'RA0342035,7979513889','-500', '0');
execute INSERTARRESULTADOSTIRADAS('353', 'RA0242110,8080208333','1000', '50');
execute INSERTARRESULTADOSTIRADAS('357', 'RA0242026,8375810185','-300', '300');
execute INSERTARRESULTADOSTIRADAS('357', 'RA0242027,8365393519','2000', '0');
execute INSERTARRESULTADOSTIRADAS('357', 'RA0342066,8600694444','-5000', '0');
execute INSERTARRESULTADOSTIRADAS('357', 'RA0242074,8564814815','800', '200');
execute INSERTARRESULTADOSTIRADAS('357', 'RA0342077,7895023148','1000', '0');
execute INSERTARRESULTADOSTIRADAS('357', 'RA0242078,8237037037','1300', '0');
execute INSERTARRESULTADOSTIRADAS('357', 'RA0342079,7853125','1200', '800');
execute INSERTARRESULTADOSTIRADAS('357', 'RA0342081,8303703704','-5500', '0');
execute INSERTARRESULTADOSTIRADAS('357', 'RA0342087,7974421296','-500', '0');
execute INSERTARRESULTADOSTIRADAS('357', 'RA0342090,9409027778','-2500', '0');
execute INSERTARRESULTADOSTIRADAS('357', 'RA0342095,9375347222','700', '800');
execute INSERTARRESULTADOSTIRADAS('357', 'RA0342098,9148842593','-4000', '0');
execute INSERTARRESULTADOSTIRADAS('357', 'RA0342100,8907291667','-2600', '600');
execute INSERTARRESULTADOSTIRADAS('357', 'RA0242103,8404976852','0', '5000');
execute INSERTARRESULTADOSTIRADAS('357', 'RA0342118,8107638889','500', '0');
execute INSERTARRESULTADOSTIRADAS('357', 'RA0242119,8143287037','-2500', '500');
execute INSERTARRESULTADOSTIRADAS('357', 'RA0342121,808125','-600', '600');
execute INSERTARRESULTADOSTIRADAS('425', 'RA0242012,8441782407','1200', '2300');
execute INSERTARRESULTADOSTIRADAS('425', 'RA0342041,828125','0', '600');
execute INSERTARRESULTADOSTIRADAS('425', 'RA0342051,7962152778','0', '500');
execute INSERTARRESULTADOSTIRADAS('425', 'RA0342056,8062384259','0', '1500');
execute INSERTARRESULTADOSTIRADAS('425', 'RA0342062,7725115741','-800', '1000');
execute INSERTARRESULTADOSTIRADAS('425', 'RA0342065,8022453704','500', '500');
execute INSERTARRESULTADOSTIRADAS('425', 'RA0342068,7833449074','-500', '1000');
execute INSERTARRESULTADOSTIRADAS('425', 'RA0342069,7823263889','0', '500');
execute INSERTARRESULTADOSTIRADAS('425', 'RA0342072,7991550926','1000', '2000');
execute INSERTARRESULTADOSTIRADAS('425', 'RA0342082,7586574074','-500', '0');
execute INSERTARRESULTADOSTIRADAS('425', 'RA0342103,7541435185','500', '0');
execute INSERTARRESULTADOSTIRADAS('425', 'RA0242107,8306018518','-500', '0');
execute INSERTARRESULTADOSTIRADAS('425', 'RA0342124,7830787037','1000', '0');
execute INSERTARRESULTADOSTIRADAS('425', 'RA0342132,8372685185','0', '500');
execute INSERTARRESULTADOSTIRADAS('447', 'RA0242008,8722453704','1000', '0');
execute INSERTARRESULTADOSTIRADAS('447', 'RA0242053,0143055556','100', '3700');
execute INSERTARRESULTADOSTIRADAS('447', 'RA0342060,9505787037','1000', '0');
execute INSERTARRESULTADOSTIRADAS('447', 'RA0342061,9630208333','-3300', '300');
execute INSERTARRESULTADOSTIRADAS('447', 'RA0342066,9637268518','-1300', '1800');
execute INSERTARRESULTADOSTIRADAS('447', 'RA0242107,934212963','-500', '500');
execute INSERTARRESULTADOSTIRADAS('447', 'RA0342115,8439583333','300', '200');
execute INSERTARRESULTADOSTIRADAS('447', 'RA0242118,0657407407','2300', '1100');
execute INSERTARRESULTADOSTIRADAS('447', 'RA0342135,9326967593','-100', '600');
execute INSERTARRESULTADOSTIRADAS('572', 'RA0242021,9095486111','0', '900');
execute INSERTARRESULTADOSTIRADAS('572', 'RA0342022,7950925926','-1300', '3100');
execute INSERTARRESULTADOSTIRADAS('599', 'RA0342094,8829166667','1200', '300');
execute INSERTARRESULTADOSTIRADAS('694', 'RA0342036,833900463','500', '1000');
execute INSERTARRESULTADOSTIRADAS('694', 'RA0342037,8353703704','2000', '1100');
execute INSERTARRESULTADOSTIRADAS('694', 'RA0342038,7945138888','1000', '500');
execute INSERTARRESULTADOSTIRADAS('694', 'RA0342039,7760069444','500', '900');
execute INSERTARRESULTADOSTIRADAS('694', 'RA0242042,0791435185','-2500', '3000');
execute INSERTARRESULTADOSTIRADAS('694', 'RA0342051,7836458333','-2100', '2100');
execute INSERTARRESULTADOSTIRADAS('694', 'RA0342069,9707523148','100', '1900');
execute INSERTARRESULTADOSTIRADAS('694', 'RA0342075,8333101852','6000', '1000');
execute INSERTARRESULTADOSTIRADAS('694', 'RA0342078,7971990741','-2500', '2800');
execute INSERTARRESULTADOSTIRADAS('694', 'RA0242083,8491550926','1500', '1500');
execute INSERTARRESULTADOSTIRADAS('694', 'RA0342085,7712384259','-1500', '2000');
execute INSERTARRESULTADOSTIRADAS('694', 'RA0342086,7833680556','-2700', '3700');
execute INSERTARRESULTADOSTIRADAS('694', 'RA0342112,0605324074','2000', '2000');
execute INSERTARRESULTADOSTIRADAS('694', 'RA0342114,8329166667','500', '1000');
execute INSERTARRESULTADOSTIRADAS('694', 'RA0242117,8481712962','1000', '1800');
execute INSERTARRESULTADOSTIRADAS('694', 'RA0342119,0717708333','1300', '3000');
execute INSERTARRESULTADOSTIRADAS('694', 'RA0342119,8213657407','-3500', '3500');
execute INSERTARRESULTADOSTIRADAS('694', 'RA0342132,0318171296','-3000', '3000');
execute INSERTARRESULTADOSTIRADAS('704', 'RA0342014,7690972222','500', '0');
execute INSERTARRESULTADOSTIRADAS('704', 'RA0342023,7919328704','-1400', '900');
execute INSERTARRESULTADOSTIRADAS('704', 'RA0342098,752337963','-1700', '1200');
execute INSERTARRESULTADOSTIRADAS('760', 'RA0342129,8455671296','400', '200');
execute INSERTARRESULTADOSTIRADAS('760', 'RA0342131,8486805556','1200', '800');
execute INSERTARRESULTADOSTIRADAS('760', 'RA0242133,8450115741','-300', '800');
execute INSERTARRESULTADOSTIRADAS('768', 'RA0342025,7857291667','36000', '2000');
execute INSERTARRESULTADOSTIRADAS('768', 'RA0242087,9258333333','-26000', '6000');
execute INSERTARRESULTADOSTIRADAS('768', 'RA0342102,9413888889','-23000', '1000');
execute INSERTARRESULTADOSTIRADAS('768', 'RA0342107,9469444444','-20700', '3200');
execute INSERTARRESULTADOSTIRADAS('768', 'RA0242114,7899537037','17000', '5000');
execute INSERTARRESULTADOSTIRADAS('846', 'RA0342007,9133449074','-4300', '5800');
execute INSERTARRESULTADOSTIRADAS('846', 'RA0342016,046574074','1600', '600');
execute INSERTARRESULTADOSTIRADAS('846', 'RA0242017,1049537037','-1100', '1100');
execute INSERTARRESULTADOSTIRADAS('846', 'RA0342020,0701967593','200', '4100');
execute INSERTARRESULTADOSTIRADAS('846', 'RA0242021,1210185185','-2200', '2200');
execute INSERTARRESULTADOSTIRADAS('846', 'RA0242028,0730902778','-900', '1900');
execute INSERTARRESULTADOSTIRADAS('846', 'RA0242030,0194675926','-500', '500');
execute INSERTARRESULTADOSTIRADAS('846', 'RA0342032,0721180556','-700', '200');
execute INSERTARRESULTADOSTIRADAS('846', 'RA0242033,0522569444','-1700', '1200');
execute INSERTARRESULTADOSTIRADAS('846', 'RA0342040,050150463','-600', '600');
execute INSERTARRESULTADOSTIRADAS('846', 'RA0342043,072662037','500', '1300');
execute INSERTARRESULTADOSTIRADAS('846', 'RA0242044,1147222222','-1500', '1500');
execute INSERTARRESULTADOSTIRADAS('8018', 'RA0342042,8957754629','100', '1400');
execute INSERTARRESULTADOSTIRADAS('8018', 'RA0342043,8685532407','-700', '700');
execute INSERTARRESULTADOSTIRADAS('8018', 'RA0242044,8357523148','-500', '0');
execute INSERTARRESULTADOSTIRADAS('8018', 'RA0342046,7725694444','8000', '1300');
execute INSERTARRESULTADOSTIRADAS('8018', 'RA0342047,7744791667','-600', '600');
execute INSERTARRESULTADOSTIRADAS('8018', 'RA0242050,8889467593','200', '1300');
execute INSERTARRESULTADOSTIRADAS('8018', 'RA0342051,7836458333','-600', '100');
execute INSERTARRESULTADOSTIRADAS('8018', 'RA0342058,8347569444','-1000', '1000');
execute INSERTARRESULTADOSTIRADAS('8018', 'RA0342061,8266666667','-700', '700');
execute INSERTARRESULTADOSTIRADAS('8018', 'RA0242062,8370833333','-1000', '1000');
execute INSERTARRESULTADOSTIRADAS('8018', 'RA0342063,8658796296','-1100', '1100');
execute INSERTARRESULTADOSTIRADAS('8018', 'RA0242066,8566666667','1500', '2000');
execute INSERTARRESULTADOSTIRADAS('8018', 'RA0242067,8350925926','-1000', '1000');
execute INSERTARRESULTADOSTIRADAS('8018', 'RA0342068,8150925926','11100', '1400');
execute INSERTARRESULTADOSTIRADAS('8018', 'RA0342069,7680208333','-1000', '1000');
execute INSERTARRESULTADOSTIRADAS('8018', 'RA0342070,9039699074','-1100', '3100');
execute INSERTARRESULTADOSTIRADAS('8018', 'RA0242072,8731018519','2000', '2400');
execute INSERTARRESULTADOSTIRADAS('8018', 'RA0342073,7967592593','-1500', '1000');
execute INSERTARRESULTADOSTIRADAS('8018', 'RA0342075,7741782407','-1100', '1100');
execute INSERTARRESULTADOSTIRADAS('8018', 'RA0242077,8698726852','-1600', '600');
execute INSERTARRESULTADOSTIRADAS('8018', 'RA0342079,8129398148','2100', '900');
execute INSERTARRESULTADOSTIRADAS('8018', 'RA0242080,8338194444','0', '500');
execute INSERTARRESULTADOSTIRADAS('8018', 'RA0342082,8102199074','-600', '600');
execute INSERTARRESULTADOSTIRADAS('8018', 'RA0242086,8414467593','1000', '500');
execute INSERTARRESULTADOSTIRADAS('8018', 'RA0342087,7738888889','-1100', '1100');
execute INSERTARRESULTADOSTIRADAS('8018', 'RA0342088,8259490741','2900', '1100');
execute INSERTARRESULTADOSTIRADAS('8018', 'RA0342089,8004282407','1000', '0');
execute INSERTARRESULTADOSTIRADAS('8018', 'RA0342092,8823032407','-600', '600');
execute INSERTARRESULTADOSTIRADAS('8018', 'RA0342094,8061805556','-1200', '1200');
execute INSERTARRESULTADOSTIRADAS('8018', 'RA0342095,7756944444','-1900', '1900');
execute INSERTARRESULTADOSTIRADAS('8018', 'RA0242100,8552546296','10200', '1400');
execute INSERTARRESULTADOSTIRADAS('8018', 'RA0242101,8050231481','1000', '2500');
execute INSERTARRESULTADOSTIRADAS('8018', 'RA0242104,8148032407','3100', '1400');
execute INSERTARRESULTADOSTIRADAS('8018', 'RA0342106,7686111111','-700', '700');
execute INSERTARRESULTADOSTIRADAS('8018', 'RA0342107,779837963','11500', '500');
execute INSERTARRESULTADOSTIRADAS('8018', 'RA0242108,7930902778','-2200', '2200');
execute INSERTARRESULTADOSTIRADAS('8018', 'RA0342109,8099884259','-2100', '1100');
execute INSERTARRESULTADOSTIRADAS('8018', 'RA0242114,8138425926','900', '1100');
execute INSERTARRESULTADOSTIRADAS('8018', 'RA0342115,7722569444','-500', '0');
execute INSERTARRESULTADOSTIRADAS('8018', 'RA0242121,8171759259','-3000', '1500');
execute INSERTARRESULTADOSTIRADAS('8018', 'RA0242123,8465393518','-1600', '1600');
execute INSERTARRESULTADOSTIRADAS('8018', 'RA0342128,8698842593','15000', '0');
execute INSERTARRESULTADOSTIRADAS('8018', 'RA0242129,8281018519','6200', '300');
execute INSERTARRESULTADOSTIRADAS('8018', 'RA0242130,8404513889','-900', '0');
execute INSERTARRESULTADOSTIRADAS('8018', 'RA0342132,8037268519','2600', '600');
execute INSERTARRESULTADOSTIRADAS('8018', 'RA0242135,8210300926','-1200', '1200');
execute INSERTARRESULTADOSTIRADAS('8018', 'RA0242136,8483680556','-1000', '0');
execute INSERTARRESULTADOSTIRADAS('8018', 'RA0342137,8456134259','-1000', '1000');
execute INSERTARRESULTADOSTIRADAS('8139', 'RA0242137,0569444444','-500', '500');
execute INSERTARRESULTADOSTIRADAS('8286', 'RA0342041,0256712963','-20000', '0');
execute INSERTARRESULTADOSTIRADAS('8327', 'RA0242030,8184837963','400', '1100');
execute INSERTARRESULTADOSTIRADAS('9997', 'RA0342046,8136921296','-3000', '3000');
execute INSERTARRESULTADOSTIRADAS('11976', 'RA0242041,8945486111','1500', '0');
execute INSERTARRESULTADOSTIRADAS('12180', 'RA0342037,7811921296','3000', '300');
execute INSERTARRESULTADOSTIRADAS('12180', 'RA0342122,7978356481','-1000', '0');
execute INSERTARRESULTADOSTIRADAS('12252', 'RA0342011,8855439815','1000', '0');
execute INSERTARRESULTADOSTIRADAS('13104', 'RA0242015,9302546296','-700', '700');
execute INSERTARRESULTADOSTIRADAS('13348', 'RA0342019,7578587963','2500', '0');
execute INSERTARRESULTADOSTIRADAS('13348', 'RA0342056,7744097222','-1800', '1500');
execute INSERTARRESULTADOSTIRADAS('14172', 'RA0342009,7585416666','5600', '1400');
execute INSERTARRESULTADOSTIRADAS('14172', 'RA0342037,7811921296','-600', '600');
execute INSERTARRESULTADOSTIRADAS('14172', 'RA0342039,7628356482','-5000', '2000');
execute INSERTARRESULTADOSTIRADAS('14172', 'RA0342084,7683449074','-900', '2900');
execute INSERTARRESULTADOSTIRADAS('14172', 'RA0342085,7931944444','-2400', '400');
execute INSERTARRESULTADOSTIRADAS('14172', 'RA0342095,8012384259','-2000', '2000');
execute INSERTARRESULTADOSTIRADAS('15085', 'RA0342052,8544791667','0', '1000');
execute INSERTARRESULTADOSTIRADAS('15192', 'RA0242039,0561111111','1000', '0');
execute INSERTARRESULTADOSTIRADAS('15192', 'RA0342045,7951157407','1000', '0');
execute INSERTARRESULTADOSTIRADAS('15192', 'RA0242053,9064930556','-700', '700');
execute INSERTARRESULTADOSTIRADAS('15469', 'RA0342029,9835416667','1100', '100');
execute INSERTARRESULTADOSTIRADAS('15469', 'RA0342036,9079166667','-2300', '2800');
execute INSERTARRESULTADOSTIRADAS('15469', 'RA0242078,8636226852','700', '0');
execute INSERTARRESULTADOSTIRADAS('15469', 'RA0342097,0947453704','-700', '700');
execute INSERTARRESULTADOSTIRADAS('15469', 'RA0342098,0613425926','-200', '200');
execute INSERTARRESULTADOSTIRADAS('15469', 'RA0342099,8866087963','1500', '200');
execute INSERTARRESULTADOSTIRADAS('15469', 'RA0342106,0121875','-2300', '2800');
execute INSERTARRESULTADOSTIRADAS('15469', 'RA0342113,9966319444','900', '600');
execute INSERTARRESULTADOSTIRADAS('15469', 'RA0342123,0427662037','1000', '600');
execute INSERTARRESULTADOSTIRADAS('15469', 'RA0242125,0776157407','1500', '500');
execute INSERTARRESULTADOSTIRADAS('15469', 'RA0242127,0444675926','-800', '800');
execute INSERTARRESULTADOSTIRADAS('16795', 'RA0242029,0543634259','4000', '0');
execute INSERTARRESULTADOSTIRADAS('17271', 'RA0242030,9013541667','500', '300');
execute INSERTARRESULTADOSTIRADAS('17271', 'RA0342037,8893634259','-300', '2100');
execute INSERTARRESULTADOSTIRADAS('17748', 'RA0342073,8522453704','2500', '1500');
execute INSERTARRESULTADOSTIRADAS('17748', 'RA0342074,7826273148','1500', '1500');
execute INSERTARRESULTADOSTIRADAS('17748', 'RA0342075,8128009259','-8700', '5700');
execute INSERTARRESULTADOSTIRADAS('17748', 'RA0342076,7751851852','4000', '3500');
execute INSERTARRESULTADOSTIRADAS('17748', 'RA0342077,7850925926','-5000', '4000');
execute INSERTARRESULTADOSTIRADAS('17748', 'RA0342078,7971990741','-2000', '2000');
execute INSERTARRESULTADOSTIRADAS('17748', 'RA0342080,7556712963','-2300', '2300');
execute INSERTARRESULTADOSTIRADAS('17748', 'RA0342088,7616898148','-1300', '1300');
execute INSERTARRESULTADOSTIRADAS('17748', 'RA0342090,7611689815','1600', '800');
execute INSERTARRESULTADOSTIRADAS('17748', 'RA0342092,7664699074','3100', '4400');
execute INSERTARRESULTADOSTIRADAS('17748', 'RA0342093,7617824074','0', '2500');
execute INSERTARRESULTADOSTIRADAS('17748', 'RA0342094,7582638889','-3100', '3100');
execute INSERTARRESULTADOSTIRADAS('17748', 'RA0342095,7653587963','-2200', '2200');
execute INSERTARRESULTADOSTIRADAS('17748', 'RA0342103,762337963','-600', '600');
execute INSERTARRESULTADOSTIRADAS('17748', 'RA0342121,7562962963','-1200', '1200');
execute INSERTARRESULTADOSTIRADAS('17748', 'RA0242128,7582291667','0', '1100');
execute INSERTARRESULTADOSTIRADAS('17748', 'RA0342129,7516550926','800', '1200');
execute INSERTARRESULTADOSTIRADAS('17748', 'RA0342132,7510763889','600', '1200');
execute INSERTARRESULTADOSTIRADAS('17748', 'RA0342133,7611574074','-900', '1200');
execute INSERTARRESULTADOSTIRADAS('17748', 'RA0342134,7849652778','-1200', '1200');
execute INSERTARRESULTADOSTIRADAS('17748', 'RA0242137,8397685185','-500', '700');
execute INSERTARRESULTADOSTIRADAS('17969', 'RA0242025,994525463','3000', '1200');
execute INSERTARRESULTADOSTIRADAS('17969', 'RA0342033,7566203704','3500', '2900');
execute INSERTARRESULTADOSTIRADAS('17969', 'RA0342037,9210069444','4000', '500');
execute INSERTARRESULTADOSTIRADAS('17969', 'RA0342040,7672222222','-3300', '4300');
execute INSERTARRESULTADOSTIRADAS('17969', 'RA0242044,8957986111','1000', '1000');
execute INSERTARRESULTADOSTIRADAS('17969', 'RA0242046,9326041667','1200', '300');
execute INSERTARRESULTADOSTIRADAS('17969', 'RA0342047,7593518519','-5800', '6300');
execute INSERTARRESULTADOSTIRADAS('17969', 'RA0342068,7532523148','-500', '2800');
execute INSERTARRESULTADOSTIRADAS('17969', 'RA0342075,7606712963','2700', '3300');
execute INSERTARRESULTADOSTIRADAS('17969', 'RA0342082,7563078704','1500', '1200');
execute INSERTARRESULTADOSTIRADAS('17969', 'RA0342086,9070486111','5000', '3300');
execute INSERTARRESULTADOSTIRADAS('17969', 'RA0342089,7515972222','-2800', '10800');
execute INSERTARRESULTADOSTIRADAS('17969', 'RA0342116,9453703704','-11100', '3200');
execute INSERTARRESULTADOSTIRADAS('19112', 'RA0342005,7712268519','-1100', '0');
execute INSERTARRESULTADOSTIRADAS('19112', 'RA0342008,8733333333','-1300', '600');
execute INSERTARRESULTADOSTIRADAS('19112', 'RA0242124,9776041667','-600', '600');
execute INSERTARRESULTADOSTIRADAS('19112', 'RA0342126,0007523148','-3000', '200');
execute INSERTARRESULTADOSTIRADAS('19242', 'RA0242062,0194212963','-3500', '1300');
execute INSERTARRESULTADOSTIRADAS('19423', 'RA0242048,0247800926','900', '800');
execute INSERTARRESULTADOSTIRADAS('19423', 'RA0342049,9969097222','2700', '1800');
execute INSERTARRESULTADOSTIRADAS('19423', 'RA0242050,9878587963','-6800', '6800');
execute INSERTARRESULTADOSTIRADAS('49669', 'RA0342082,8180324074','300', '400');
execute INSERTARRESULTADOSTIRADAS('846', 'RA0242047,0528125','-900', '900');
execute INSERTARRESULTADOSTIRADAS('846', 'RA0242047,9365162037','-1300', '1300');
execute INSERTARRESULTADOSTIRADAS('846', 'RA0342049,9867013889','-3000', '3000');
execute INSERTARRESULTADOSTIRADAS('846', 'RA0342057,0396990741','1800', '0');
execute INSERTARRESULTADOSTIRADAS('846', 'RA0342058,0616319444','-700', '700');
execute INSERTARRESULTADOSTIRADAS('846', 'RA0342064,0878009259','300', '600');
execute INSERTARRESULTADOSTIRADAS('846', 'RA0342064,9724421296','1600', '900');
execute INSERTARRESULTADOSTIRADAS('846', 'RA0242066,096875','-1500', '1500');
execute INSERTARRESULTADOSTIRADAS('846', 'RA0242067,0975694444','-1100', '1100');
execute INSERTARRESULTADOSTIRADAS('846', 'RA0342075,1026851852','-800', '800');
execute INSERTARRESULTADOSTIRADAS('846', 'RA0242077,0790856481','-500', '1000');
execute INSERTARRESULTADOSTIRADAS('846', 'RA0342080,0824537037','-2400', '2400');
execute INSERTARRESULTADOSTIRADAS('846', 'RA0242085,1031365741','-1100', '1100');
execute INSERTARRESULTADOSTIRADAS('846', 'RA0342086,064849537','-1000', '2500');
execute INSERTARRESULTADOSTIRADAS('868', 'RA0242110,9285185185','7300', '200');
execute INSERTARRESULTADOSTIRADAS('868', 'RA0342112,0051736111','0', '300');
execute INSERTARRESULTADOSTIRADAS('868', 'RA0242119,0430787037','4000', '0');
execute INSERTARRESULTADOSTIRADAS('868', 'RA0342120,9477893518','1400', '700');
execute INSERTARRESULTADOSTIRADAS('868', 'RA0342121,9417824074','-200', '800');
execute INSERTARRESULTADOSTIRADAS('882', 'RA0242013,0215509259','800', '1200');
execute INSERTARRESULTADOSTIRADAS('882', 'RA0242020,0340509259','1100', '0');
execute INSERTARRESULTADOSTIRADAS('882', 'RA0242021,0292824074','1000', '500');
execute INSERTARRESULTADOSTIRADAS('882', 'RA0342022,0354513889','1000', '1100');
execute INSERTARRESULTADOSTIRADAS('882', 'RA0342027,0272106481','2000', '200');
execute INSERTARRESULTADOSTIRADAS('882', 'RA0242028,040775463','-500', '500');
execute INSERTARRESULTADOSTIRADAS('882', 'RA0242035,0258217593','1500', '200');
execute INSERTARRESULTADOSTIRADAS('882', 'RA0342036,0296990741','-500', '700');
execute INSERTARRESULTADOSTIRADAS('882', 'RA0242041,0395138889','2000', '0');
execute INSERTARRESULTADOSTIRADAS('882', 'RA0242048,0413888889','-600', '600');
execute INSERTARRESULTADOSTIRADAS('882', 'RA0242062,0473148148','2000', '0');
execute INSERTARRESULTADOSTIRADAS('882', 'RA0342069,0306944444','-1000', '1000');
execute INSERTARRESULTADOSTIRADAS('882', 'RA0242076,0387037037','1800', '200');
execute INSERTARRESULTADOSTIRADAS('882', 'RA0342083,0556712963','1500', '300');
execute INSERTARRESULTADOSTIRADAS('882', 'RA0242090,0400694444','800', '200');
execute INSERTARRESULTADOSTIRADAS('882', 'RA0242092,0408912037','1500', '500');
execute INSERTARRESULTADOSTIRADAS('882', 'RA0342098,0438078704','-800', '800');
execute INSERTARRESULTADOSTIRADAS('882', 'RA0342104,0465162037','1400', '100');
execute INSERTARRESULTADOSTIRADAS('882', 'RA0242111,0255439815','-600', '600');
execute INSERTARRESULTADOSTIRADAS('882', 'RA0342118,0380787037','-500', '500');
execute INSERTARRESULTADOSTIRADAS('918', 'RA0342028,873599537','-500', '500');
execute INSERTARRESULTADOSTIRADAS('918', 'RA0242056,8782638889','1300', '200');
execute INSERTARRESULTADOSTIRADAS('918', 'RA0342057,8010185185','-3100', '6600');
execute INSERTARRESULTADOSTIRADAS('918', 'RA0242105,8253703704','-2000', '4000');
execute INSERTARRESULTADOSTIRADAS('918', 'RA0242106,8788888889','-1400', '1400');
execute INSERTARRESULTADOSTIRADAS('918', 'RA0342110,763599537','-600', '600');
execute INSERTARRESULTADOSTIRADAS('918', 'RA0342134,9692013889','-800', '800');
execute INSERTARRESULTADOSTIRADAS('918', 'RA0242136,8578472222','-700', '700');
execute INSERTARRESULTADOSTIRADAS('925', 'RA0342006,7646296296','300', '1000');
execute INSERTARRESULTADOSTIRADAS('925', 'RA0342011,8661689815','-900', '900');
execute INSERTARRESULTADOSTIRADAS('925', 'RA0242018,8454861111','-2600', '1000');
execute INSERTARRESULTADOSTIRADAS('925', 'RA0242032,8807407407','-700', '700');
execute INSERTARRESULTADOSTIRADAS('925', 'RA0342104,874849537','-2700', '700');
execute INSERTARRESULTADOSTIRADAS('938', 'RA0242079,8482986111','2500', '1000');
execute INSERTARRESULTADOSTIRADAS('938', 'RA0242084,8523032407','-1000', '1000');
execute INSERTARRESULTADOSTIRADAS('938', 'RA0242085,9662847222','2000', '1000');
execute INSERTARRESULTADOSTIRADAS('938', 'RA0342090,8187847222','1300', '2200');
execute INSERTARRESULTADOSTIRADAS('938', 'RA0342108,9146527778','1000', '0');
execute INSERTARRESULTADOSTIRADAS('938', 'RA0342112,9490972222','500', '0');
execute INSERTARRESULTADOSTIRADAS('938', 'RA0342113,9563078704','500', '0');
execute INSERTARRESULTADOSTIRADAS('938', 'RA0342118,7696527778','500', '0');
execute INSERTARRESULTADOSTIRADAS('938', 'RA0242120,8846180556','-300', '300');
execute INSERTARRESULTADOSTIRADAS('938', 'RA0342121,9682407407','1000', '1000');
execute INSERTARRESULTADOSTIRADAS('938', 'RA0242123,8870833333','1300', '200');
execute INSERTARRESULTADOSTIRADAS('938', 'RA0242124,9258449074','-1100', '1100');
execute INSERTARRESULTADOSTIRADAS('938', 'RA0342127,7606828704','500', '7000');
execute INSERTARRESULTADOSTIRADAS('938', 'RA0342128,9551851851','-700', '700');
execute INSERTARRESULTADOSTIRADAS('938', 'RA0242129,8642708333','-1000', '1000');
execute INSERTARRESULTADOSTIRADAS('938', 'RA0342130,8114467593','-4000', '4000');
execute INSERTARRESULTADOSTIRADAS('938', 'RA0242131,9673611111','-1400', '1400');
execute INSERTARRESULTADOSTIRADAS('938', 'RA0342134,7649421296','-1400', '1400');
execute INSERTARRESULTADOSTIRADAS('938', 'RA0342137,9130208333','300', '200');
execute INSERTARRESULTADOSTIRADAS('939', 'RA0242095,8726041667','1500', '0');
execute INSERTARRESULTADOSTIRADAS('963', 'RA0242008,8392824074','800', '200');
execute INSERTARRESULTADOSTIRADAS('963', 'RA0342014,8599305556','-3300', '1300');
execute INSERTARRESULTADOSTIRADAS('963', 'RA0342026,8405092593','-300', '300');
execute INSERTARRESULTADOSTIRADAS('963', 'RA0242035,8478819444','-100', '2200');
execute INSERTARRESULTADOSTIRADAS('963', 'RA0342048,8222453704','300', '700');
execute INSERTARRESULTADOSTIRADAS('963', 'RA0342052,7768402778','600', '900');
execute INSERTARRESULTADOSTIRADAS('963', 'RA0242055,8418634259','800', '700');
execute INSERTARRESULTADOSTIRADAS('963', 'RA0342061,7915046296','300', '500');
execute INSERTARRESULTADOSTIRADAS('963', 'RA0342063,7755092593','-3100', '600');
execute INSERTARRESULTADOSTIRADAS('963', 'RA0342068,8045949074','600', '0');
execute INSERTARRESULTADOSTIRADAS('963', 'RA0242070,0991782407','500', '1000');
execute INSERTARRESULTADOSTIRADAS('963', 'RA0342073,8227430556','400', '1100');
execute INSERTARRESULTADOSTIRADAS('963', 'RA0342075,7933912037','-2200', '1400');
execute INSERTARRESULTADOSTIRADAS('963', 'RA0342077,8657407407','900', '600');
execute INSERTARRESULTADOSTIRADAS('963', 'RA0242080,8496064815','2700', '1300');
execute INSERTARRESULTADOSTIRADAS('963', 'RA0242085,029224537','400', '1100');
execute INSERTARRESULTADOSTIRADAS('963', 'RA0342091,0248148148','-6400', '2000');
execute INSERTARRESULTADOSTIRADAS('963', 'RA0242097,0541666667','-2200', '0');
execute INSERTARRESULTADOSTIRADAS('963', 'RA0342103,8258449074','400', '600');
execute INSERTARRESULTADOSTIRADAS('963', 'RA0242106,0870601852','1000', '400');
execute INSERTARRESULTADOSTIRADAS('963', 'RA0342110,9175810185','300', '1700');
execute INSERTARRESULTADOSTIRADAS('963', 'RA0342113,9448263889','300', '200');
execute INSERTARRESULTADOSTIRADAS('963', 'RA0342117,8800578704','700', '800');
execute INSERTARRESULTADOSTIRADAS('963', 'RA0242120,0803356481','-400', '900');
execute INSERTARRESULTADOSTIRADAS('963', 'RA0242124,8132638889','-1800', '1300');
execute INSERTARRESULTADOSTIRADAS('963', 'RA0342126,8831481481','700', '300');
execute INSERTARRESULTADOSTIRADAS('963', 'RA0342131,8004976852','900', '300');
execute INSERTARRESULTADOSTIRADAS('963', 'RA0342134,7562731481','400', '600');
execute INSERTARRESULTADOSTIRADAS('968', 'RA0342070,8462152778','1500', '2500');
execute INSERTARRESULTADOSTIRADAS('968', 'RA0342104,8438310185','-11200', '4700');
execute INSERTARRESULTADOSTIRADAS('970', 'RA0342026,7921527777','600', '200');
execute INSERTARRESULTADOSTIRADAS('970', 'RA0342041,9553125','-500', '500');
execute INSERTARRESULTADOSTIRADAS('970', 'RA0242077,8698726852','2000', '0');
execute INSERTARRESULTADOSTIRADAS('970', 'RA0242098,8338425926','700', '1300');
execute INSERTARRESULTADOSTIRADAS('970', 'RA0342103,9380787037','500', '300');
execute INSERTARRESULTADOSTIRADAS('970', 'RA0342104,8540393518','3000', '600');
execute INSERTARRESULTADOSTIRADAS('970', 'RA0242112,9174652778','-1000', '1000');
execute INSERTARRESULTADOSTIRADAS('970', 'RA0342119,8299189815','-500', '1500');
execute INSERTARRESULTADOSTIRADAS('970', 'RA0242131,9916203704','500', '0');
execute INSERTARRESULTADOSTIRADAS('1130', 'RA0342044,7693981481','600', '400');
execute INSERTARRESULTADOSTIRADAS('1130', 'RA0342045,8151388889','200', '300');
execute INSERTARRESULTADOSTIRADAS('1130', 'RA0342046,8281134259','-500', '500');
execute INSERTARRESULTADOSTIRADAS('1130', 'RA0342060,7828125','-600', '600');
execute INSERTARRESULTADOSTIRADAS('1163', 'RA0242051,9012152778','1200', '300');
execute INSERTARRESULTADOSTIRADAS('1163', 'RA0242120,8247916667','-600', '600');
execute INSERTARRESULTADOSTIRADAS('1181', 'RA0342089,8173958333','3000', '0');
execute INSERTARRESULTADOSTIRADAS('1181', 'RA0342090,7678472222','-1500', '1500');
execute INSERTARRESULTADOSTIRADAS('1182', 'RA0342075,7823148148','-1800', '1800');
execute INSERTARRESULTADOSTIRADAS('1182', 'RA0342087,7982986111','1700', '0');
execute INSERTARRESULTADOSTIRADAS('1183', 'RA0342042,8702314815','1000', '0');
execute INSERTARRESULTADOSTIRADAS('1183', 'RA0342049,8811226852','500', '0');
execute INSERTARRESULTADOSTIRADAS('1183', 'RA0242067,8562152778','1000', '0');
execute INSERTARRESULTADOSTIRADAS('3292', 'RA0342076,0458449074','1000', '700');
execute INSERTARRESULTADOSTIRADAS('3292', 'RA0342079,7664467593','1300', '500');
execute INSERTARRESULTADOSTIRADAS('3292', 'RA0342081,7644560185','1000', '1100');
execute INSERTARRESULTADOSTIRADAS('3292', 'RA0242084,0153125','1900', '2100');
execute INSERTARRESULTADOSTIRADAS('3292', 'RA0242087,948912037','-1400', '1900');
execute INSERTARRESULTADOSTIRADAS('3292', 'RA0342089,8618634259','1500', '1000');
execute INSERTARRESULTADOSTIRADAS('3292', 'RA0342090,861099537','100', '2600');
execute INSERTARRESULTADOSTIRADAS('3292', 'RA0242101,8750347222','-900', '1200');
execute INSERTARRESULTADOSTIRADAS('3292', 'RA0342108,8248611111','-3300', '2300');
execute INSERTARRESULTADOSTIRADAS('3292', 'RA0242112,9685648148','-800', '800');
execute INSERTARRESULTADOSTIRADAS('3292', 'RA0242134,8257638888','-1500', '1500');
execute INSERTARRESULTADOSTIRADAS('3372', 'RA0342045,8109837963','-1400', '900');
execute INSERTARRESULTADOSTIRADAS('4542', 'RA0242008,8454050926','-600', '600');
execute INSERTARRESULTADOSTIRADAS('4542', 'RA0342024,8752314815','-400', '400');
execute INSERTARRESULTADOSTIRADAS('4542', 'RA0342044,7542592593','-300', '300');
execute INSERTARRESULTADOSTIRADAS('4542', 'RA0342066,7666203704','500', '100');
execute INSERTARRESULTADOSTIRADAS('4542', 'RA0242076,8787615741','-500', '500');
execute INSERTARRESULTADOSTIRADAS('4542', 'RA0342092,0069560185','-500', '500');
execute INSERTARRESULTADOSTIRADAS('4709', 'RA0342080,0443055556','1600', '400');
execute INSERTARRESULTADOSTIRADAS('4965', 'RA0342104,1138078704','1000', '1100');
execute INSERTARRESULTADOSTIRADAS('5329', 'RA0342012,7984953704','500', '500');
execute INSERTARRESULTADOSTIRADAS('5329', 'RA0342020,789837963','-200', '200');
execute INSERTARRESULTADOSTIRADAS('5329', 'RA0342067,793912037','1900', '100');
execute INSERTARRESULTADOSTIRADAS('5329', 'RA0342074,7956481481','-800', '800');
execute INSERTARRESULTADOSTIRADAS('5329', 'RA0342104,8102083333','200', '500');
execute INSERTARRESULTADOSTIRADAS('5329', 'RA0342111,7839814815','-500', '500');
execute INSERTARRESULTADOSTIRADAS('5355', 'RA0342010,915787037','1000', '0');
execute INSERTARRESULTADOSTIRADAS('5355', 'RA0242043,871724537','500', '0');
execute INSERTARRESULTADOSTIRADAS('5355', 'RA0342059,8659953704','300', '200');
execute INSERTARRESULTADOSTIRADAS('5678', 'RA0342041,8023263888','-3300', '3300');
execute INSERTARRESULTADOSTIRADAS('5678', 'RA0342074,0523958333','1900', '600');
execute INSERTARRESULTADOSTIRADAS('5943', 'RA0342096,7628472222','500', '0');
execute INSERTARRESULTADOSTIRADAS('5943', 'RA0342112,845462963','500', '0');
execute INSERTARRESULTADOSTIRADAS('6343', 'RA0242007,9553935185','1000', '800');
execute INSERTARRESULTADOSTIRADAS('6343', 'RA0342015,0161226852','-300', '300');
execute INSERTARRESULTADOSTIRADAS('6343', 'RA0242021,9956828704','-200', '1200');
execute INSERTARRESULTADOSTIRADAS('6343', 'RA0342027,9826157407','1000', '200');
execute INSERTARRESULTADOSTIRADAS('6343', 'RA0342048,9848726852','2900', '1300');
execute INSERTARRESULTADOSTIRADAS('6343', 'RA0342089,8639236111','-500', '500');
execute INSERTARRESULTADOSTIRADAS('6343', 'RA0342091,9422337963','500', '1000');
execute INSERTARRESULTADOSTIRADAS('6459', 'RA0242096,0291203704','-2300', '3300');
execute INSERTARRESULTADOSTIRADAS('6459', 'RA0242096,9932407407','1500', '2000');
execute INSERTARRESULTADOSTIRADAS('6459', 'RA0242105,9057175926','200', '1900');
execute INSERTARRESULTADOSTIRADAS('6459', 'RA0342113,783599537','0', '1500');
execute INSERTARRESULTADOSTIRADAS('6595', 'RA0342048,7918287037','2000', '0');
execute INSERTARRESULTADOSTIRADAS('6595', 'RA0242054,8618634259','-400', '1400');
execute INSERTARRESULTADOSTIRADAS('6595', 'RA0342061,7654976852','300', '200');
execute INSERTARRESULTADOSTIRADAS('6595', 'RA0342067,7701273148','200', '300');
execute INSERTARRESULTADOSTIRADAS('6595', 'RA0342073,8150231481','-900', '900');
execute INSERTARRESULTADOSTIRADAS('6595', 'RA0242085,822962963','1500', '1000');
execute INSERTARRESULTADOSTIRADAS('6595', 'RA0342090,7787268519','-500', '500');
execute INSERTARRESULTADOSTIRADAS('6595', 'RA0342106,820011574','-2000', '2000');
execute INSERTARRESULTADOSTIRADAS('6649', 'RA0342063,8562847222','-700', '700');
execute INSERTARRESULTADOSTIRADAS('6649', 'RA0242127,9680092593','-200', '200');
execute INSERTARRESULTADOSTIRADAS('6706', 'RA0242080,9635185185','1200', '300');
execute INSERTARRESULTADOSTIRADAS('6706', 'RA0342081,9535300926','600', '0');
execute INSERTARRESULTADOSTIRADAS('6706', 'RA0342087,7858217593','-700', '700');
execute INSERTARRESULTADOSTIRADAS('6706', 'RA0242098,040462963','1500', '1000');
execute INSERTARRESULTADOSTIRADAS('6706', 'RA0342102,827824074','-800', '800');
execute INSERTARRESULTADOSTIRADAS('6706', 'RA0342115,8391898148','-3100', '3100');
execute INSERTARRESULTADOSTIRADAS('6706', 'RA0342130,7661226852','0', '1000');
execute INSERTARRESULTADOSTIRADAS('6706', 'RA0342132,9511921296','-3500', '3500');
execute INSERTARRESULTADOSTIRADAS('6741', 'RA0342131,8376041667','1000', '0');
execute INSERTARRESULTADOSTIRADAS('6794', 'RA0342011,8134027778','-3400', '3400');
execute INSERTARRESULTADOSTIRADAS('6794', 'RA0342030,8117013889','-9000', '1500');
execute INSERTARRESULTADOSTIRADAS('6794', 'RA0342059,7848148148','-3500', '2000');
execute INSERTARRESULTADOSTIRADAS('6794', 'RA0342079,7970833333','1500', '2000');
execute INSERTARRESULTADOSTIRADAS('6794', 'RA0342081,7644560185','-4100', '2600');
execute INSERTARRESULTADOSTIRADAS('6794', 'RA0342088,8193981481','6000', '300');
execute INSERTARRESULTADOSTIRADAS('6794', 'RA0342090,7678472222','-1400', '3700');
execute INSERTARRESULTADOSTIRADAS('6794', 'RA0342093,7617824074','5600', '2400');
execute INSERTARRESULTADOSTIRADAS('6794', 'RA0342100,8004166667','-8300', '2000');
execute INSERTARRESULTADOSTIRADAS('6794', 'RA0342101,7720833333','-2500', '2000');
execute INSERTARRESULTADOSTIRADAS('6794', 'RA0342108,8003240741','-4100', '1600');
execute INSERTARRESULTADOSTIRADAS('6794', 'RA0242111,810787037','3600', '2100');
execute INSERTARRESULTADOSTIRADAS('6794', 'RA0342115,7782523148','3800', '1000');
execute INSERTARRESULTADOSTIRADAS('6794', 'RA0342117,7575578704','-2500', '2000');
execute INSERTARRESULTADOSTIRADAS('6794', 'RA0242122,8265162037','2800', '700');
execute INSERTARRESULTADOSTIRADAS('6794', 'RA0342129,7876736111','3200', '300');
execute INSERTARRESULTADOSTIRADAS('6794', 'RA0242130,8128240741','-1500', '2400');
execute INSERTARRESULTADOSTIRADAS('6794', 'RA0342131,8402430556','600', '2900');
execute INSERTARRESULTADOSTIRADAS('6794', 'RA0342135,8364351852','-5100', '1600');
execute INSERTARRESULTADOSTIRADAS('6794', 'RA0242137,8397685185','-3100', '1900');
execute INSERTARRESULTADOSTIRADAS('6920', 'RA0342072,7672106481','300', '200');
execute INSERTARRESULTADOSTIRADAS('7270', 'RA0342005,8112615741','-100', '1900');
execute INSERTARRESULTADOSTIRADAS('7270', 'RA0242006,8052199074','-2300', '2300');
execute INSERTARRESULTADOSTIRADAS('7270', 'RA0342007,8601388889','1500', '1600');
execute INSERTARRESULTADOSTIRADAS('7270', 'RA0242009,0754861111','500', '200');
execute INSERTARRESULTADOSTIRADAS('7270', 'RA0242009,8593634259','-1800', '2200');
execute INSERTARRESULTADOSTIRADAS('7270', 'RA0342010,8271990741','-500', '500');
execute INSERTARRESULTADOSTIRADAS('7270', 'RA0342013,9201041667','500', '300');
execute INSERTARRESULTADOSTIRADAS('7270', 'RA0342014,7967476852','-1700', '1700');
execute INSERTARRESULTADOSTIRADAS('7270', 'RA0242027,9254976852','500', '0');
execute INSERTARRESULTADOSTIRADAS('7270', 'RA0342028,8492361111','-700', '700');
execute INSERTARRESULTADOSTIRADAS('7270', 'RA0242035,9143634259','700', '0');
execute INSERTARRESULTADOSTIRADAS('7270', 'RA0242048,9455555556','500', '300');
execute INSERTARRESULTADOSTIRADAS('7270', 'RA0342049,8540972222','-600', '600');
execute INSERTARRESULTADOSTIRADAS('7270', 'RA0342061,7876041667','-500', '500');
execute INSERTARRESULTADOSTIRADAS('7270', 'RA0242062,9209606481','800', '200');
execute INSERTARRESULTADOSTIRADAS('7270', 'RA0242063,8197685185','-200', '1000');
execute INSERTARRESULTADOSTIRADAS('7270', 'RA0242067,8111921296','-1100', '1100');
execute INSERTARRESULTADOSTIRADAS('7270', 'RA0342068,7924074074','-300', '300');
execute INSERTARRESULTADOSTIRADAS('7270', 'RA0242076,8739583333','200', '1000');
execute INSERTARRESULTADOSTIRADAS('7270', 'RA0342080,7866435185','-1000', '1000');
execute INSERTARRESULTADOSTIRADAS('7270', 'RA0342111,9754398148','600', '400');
execute INSERTARRESULTADOSTIRADAS('7609', 'RA0242008,8523032407','300', '200');
execute INSERTARRESULTADOSTIRADAS('7626', 'RA0342070,8171759259','1000', '0');
execute INSERTARRESULTADOSTIRADAS('7626', 'RA0342102,9091435185','-1300', '1300');
execute INSERTARRESULTADOSTIRADAS('7626', 'RA0242104,9405787037','-400', '400');
execute INSERTARRESULTADOSTIRADAS('7626', 'RA0342113,8764930556','0', '900');
execute INSERTARRESULTADOSTIRADAS('8018', 'RA0342006,7616898148','-1500', '1500');
execute INSERTARRESULTADOSTIRADAS('8018', 'RA0342008,8915393519','-600', '100');
execute INSERTARRESULTADOSTIRADAS('8018', 'RA0342010,8424652778','-500', '500');
execute INSERTARRESULTADOSTIRADAS('8018', 'RA0342011,8052777778','-1800', '800');
execute INSERTARRESULTADOSTIRADAS('8018', 'RA0342015,8685532407','-1000', '1000');
execute INSERTARRESULTADOSTIRADAS('8018', 'RA0342019,8293171296','-1900', '0');
execute INSERTARRESULTADOSTIRADAS('8018', 'RA0342022,8317708333','11500', '500');
execute INSERTARRESULTADOSTIRADAS('8018', 'RA0242023,8347337963','-700', '700');
execute INSERTARRESULTADOSTIRADAS('8018', 'RA0342025,7857291667','-1100', '1100');
execute INSERTARRESULTADOSTIRADAS('8018', 'RA0342029,8665625','-1800', '800');
execute INSERTARRESULTADOSTIRADAS('8018', 'RA0342030,8591203704','3500', '900');
execute INSERTARRESULTADOSTIRADAS('8018', 'RA0342031,8260069444','-2700', '2700');
execute INSERTARRESULTADOSTIRADAS('8018', 'RA0342034,8621527778','1100', '900');
execute INSERTARRESULTADOSTIRADAS('8018', 'RA0342036,8467939815','-2400', '500');
execute INSERTARRESULTADOSTIRADAS('8018', 'RA0242039,8964699074','1000', '1500');
execute INSERTARRESULTADOSTIRADAS('49669', 'RA0342088,8732175926','-200', '200');
execute INSERTARRESULTADOSTIRADAS('50825', 'RA0242111,9856018519','-500', '500');
execute INSERTARRESULTADOSTIRADAS('52367', 'RA0242054,0238425926','-2700', '1700');
execute INSERTARRESULTADOSTIRADAS('53711', 'RA0242066,8660648148','-3000', '1200');
execute INSERTARRESULTADOSTIRADAS('53724', 'RA0342005,903125','-300', '300');
execute INSERTARRESULTADOSTIRADAS('53724', 'RA0342006,9511805556','2200', '300');
execute INSERTARRESULTADOSTIRADAS('53724', 'RA0242007,9608449074','-500', '0');
execute INSERTARRESULTADOSTIRADAS('53724', 'RA0342008,9905324074','-900', '0');
execute INSERTARRESULTADOSTIRADAS('53724', 'RA0342009,9281944444','-400', '400');
execute INSERTARRESULTADOSTIRADAS('53724', 'RA0342010,9874305556','-7300', '2300');
execute INSERTARRESULTADOSTIRADAS('53724', 'RA0342015,017349537','-1200', '1200');
execute INSERTARRESULTADOSTIRADAS('53724', 'RA0342015,7786689815','-3500', '2000');
execute INSERTARRESULTADOSTIRADAS('53724', 'RA0242017,9387847222','1400', '600');
execute INSERTARRESULTADOSTIRADAS('53724', 'RA0342018,9300925926','-1100', '2100');
execute INSERTARRESULTADOSTIRADAS('53724', 'RA0342023,9472453704','1500', '1000');
execute INSERTARRESULTADOSTIRADAS('53724', 'RA0242024,9409722222','-3400', '400');
execute INSERTARRESULTADOSTIRADAS('53724', 'RA0342029,0597916667','2800', '200');
execute INSERTARRESULTADOSTIRADAS('53724', 'RA0342030,9758564815','-700', '700');
execute INSERTARRESULTADOSTIRADAS('53724', 'RA0342032,8036689815','-1900', '1900');
execute INSERTARRESULTADOSTIRADAS('53724', 'RA0242033,9737962963','-4000', '0');
execute INSERTARRESULTADOSTIRADAS('53724', 'RA0342034,9553125','-200', '200');
execute INSERTARRESULTADOSTIRADAS('53724', 'RA0242035,953900463','-1800', '1300');
execute INSERTARRESULTADOSTIRADAS('53724', 'RA0342036,8038541667','-7900', '1400');
execute INSERTARRESULTADOSTIRADAS('53724', 'RA0242044,9393865741','-500', '2000');
execute INSERTARRESULTADOSTIRADAS('53724', 'RA0242045,9526273148','-2000', '2000');
execute INSERTARRESULTADOSTIRADAS('53724', 'RA0242051,9490393518','-300', '0');
execute INSERTARRESULTADOSTIRADAS('53724', 'RA0342061,9614351852','100', '400');
execute INSERTARRESULTADOSTIRADAS('53724', 'RA0242062,9446875','-600', '600');
execute INSERTARRESULTADOSTIRADAS('53724', 'RA0342067,9684606481','4300', '900');
execute INSERTARRESULTADOSTIRADAS('53724', 'RA0342071,0225925926','700', '2300');
execute INSERTARRESULTADOSTIRADAS('53724', 'RA0242071,9416087963','-600', '600');
execute INSERTARRESULTADOSTIRADAS('53724', 'RA0342072,9437152778','1500', '0');
execute INSERTARRESULTADOSTIRADAS('53724', 'RA0242073,937662037','3500', '0');
execute INSERTARRESULTADOSTIRADAS('53724', 'RA0242074,9691782407','-2900', '2400');
execute INSERTARRESULTADOSTIRADAS('53724', 'RA0242075,9945601852','6200', '800');
execute INSERTARRESULTADOSTIRADAS('53724', 'RA0342079,0245949074','-1400', '400');
execute INSERTARRESULTADOSTIRADAS('53724', 'RA0242079,9601851852','2300', '700');
execute INSERTARRESULTADOSTIRADAS('53724', 'RA0342080,9708796296','1500', '300');
execute INSERTARRESULTADOSTIRADAS('53724', 'RA0342081,9358796296','-2200', '1200');
execute INSERTARRESULTADOSTIRADAS('53724', 'RA0242082,9734606482','2200', '800');
execute INSERTARRESULTADOSTIRADAS('53724', 'RA0342083,9496643519','-600', '600');
execute INSERTARRESULTADOSTIRADAS('53724', 'RA0342086,9745717593','-1800', '600');
execute INSERTARRESULTADOSTIRADAS('53724', 'RA0342088,9145949074','5500', '2500');
execute INSERTARRESULTADOSTIRADAS('53724', 'RA0242092,0126388889','-3500', '3000');
execute INSERTARRESULTADOSTIRADAS('53724', 'RA0342093,9868981481','0', '1000');
execute INSERTARRESULTADOSTIRADAS('53724', 'RA0342094,9842013889','400', '600');
execute INSERTARRESULTADOSTIRADAS('53724', 'RA0342095,9745601852','-1100', '600');
execute INSERTARRESULTADOSTIRADAS('53724', 'RA0242101,9823842593','600', '1300');
execute INSERTARRESULTADOSTIRADAS('53724', 'RA0342102,9559143518','-300', '300');
execute INSERTARRESULTADOSTIRADAS('53724', 'RA0342103,847337963','-4500', '9000');
execute INSERTARRESULTADOSTIRADAS('53724', 'RA0342106,9322222222','-4300', '4300');
execute INSERTARRESULTADOSTIRADAS('53724', 'RA0342108,9958333333','-600', '600');
execute INSERTARRESULTADOSTIRADAS('53724', 'RA0342114,0249074074','-300', '300');
execute INSERTARRESULTADOSTIRADAS('53724', 'RA0342118,8605787037','-4200', '4200');
execute INSERTARRESULTADOSTIRADAS('53724', 'RA0342127,9812731482','6000', '500');
execute INSERTARRESULTADOSTIRADAS('53724', 'RA0242128,9770717593','-300', '300');
execute INSERTARRESULTADOSTIRADAS('53724', 'RA0242129,9681828704','-1900', '400');
execute INSERTARRESULTADOSTIRADAS('53724', 'RA0342133,9940162037','1100', '400');
execute INSERTARRESULTADOSTIRADAS('53724', 'RA0342134,9875115741','-900', '900');
execute INSERTARRESULTADOSTIRADAS('53828', 'RA0342102,9635300926','-200', '600');
execute INSERTARRESULTADOSTIRADAS('54498', 'RA0342081,0214699074','400', '600');
execute INSERTARRESULTADOSTIRADAS('55901', 'RA0342088,8587847222','-700', '700');
execute INSERTARRESULTADOSTIRADAS('55914', 'RA0242008,9300925926','7500', '2000');
execute INSERTARRESULTADOSTIRADAS('55914', 'RA0342015,8201967593','1500', '3000');
execute INSERTARRESULTADOSTIRADAS('55914', 'RA0342047,7850925926','2500', '0');
execute INSERTARRESULTADOSTIRADAS('55914', 'RA0342053,7675347222','3500', '5000');
execute INSERTARRESULTADOSTIRADAS('55914', 'RA0242075,8833912037','4500', '0');
execute INSERTARRESULTADOSTIRADAS('55914', 'RA0342077,8644444444','3500', '4000');
execute INSERTARRESULTADOSTIRADAS('56558', 'RA0242060,8681481481','0', '1000');
execute INSERTARRESULTADOSTIRADAS('56558', 'RA0242063,901712963','3500', '1000');
execute INSERTARRESULTADOSTIRADAS('56558', 'RA0342115,9240856481','-2500', '4000');
execute INSERTARRESULTADOSTIRADAS('56787', 'RA0342009,7787268519','-900', '900');
execute INSERTARRESULTADOSTIRADAS('56787', 'RA0342027,7789583333','-300', '300');
execute INSERTARRESULTADOSTIRADAS('59406', 'RA0242051,8534837963','17000', '9500');
execute INSERTARRESULTADOSTIRADAS('59406', 'RA0342052,9225','-9800', '5800');
execute INSERTARRESULTADOSTIRADAS('59406', 'RA0342053,8512037037','-6200', '4700');
execute INSERTARRESULTADOSTIRADAS('59528', 'RA0342017,8173842593','1700', '300');
execute INSERTARRESULTADOSTIRADAS('59528', 'RA0342018,8171412037','-900', '900');
execute INSERTARRESULTADOSTIRADAS('59528', 'RA0342025,8161574074','1700', '200');
execute INSERTARRESULTADOSTIRADAS('59528', 'RA0242030,8420833333','1500', '0');
execute INSERTARRESULTADOSTIRADAS('59528', 'RA0342031,8260069444','-400', '400');
execute INSERTARRESULTADOSTIRADAS('59528', 'RA0342038,8675115741','-500', '500');
execute INSERTARRESULTADOSTIRADAS('59528', 'RA0342045,8335763888','1500', '0');
execute INSERTARRESULTADOSTIRADAS('59528', 'RA0242046,8444675926','-600', '600');
execute INSERTARRESULTADOSTIRADAS('59528', 'RA0342053,7993055556','-700', '700');
execute INSERTARRESULTADOSTIRADAS('59528', 'RA0342054,8018171296','300', '200');
execute INSERTARRESULTADOSTIRADAS('59528', 'RA0342065,8664351852','-600', '600');
execute INSERTARRESULTADOSTIRADAS('59528', 'RA0242067,8310300926','-500', '500');
execute INSERTARRESULTADOSTIRADAS('59528', 'RA0242072,8422337963','-300', '300');
execute INSERTARRESULTADOSTIRADAS('59528', 'RA0342073,8486805556','2000', '0');
execute INSERTARRESULTADOSTIRADAS('59528', 'RA0342079,8410300926','2400', '600');
execute INSERTARRESULTADOSTIRADAS('59528', 'RA0342080,8396643518','2000', '0');
execute INSERTARRESULTADOSTIRADAS('59528', 'RA0342081,8360532407','-200', '200');
execute INSERTARRESULTADOSTIRADAS('59528', 'RA0342100,8148032407','0', '500');
execute INSERTARRESULTADOSTIRADAS('59528', 'RA0242101,8375578704','-500', '500');
execute INSERTARRESULTADOSTIRADAS('59528', 'RA0242102,8340046296','-500', '500');
execute INSERTARRESULTADOSTIRADAS('59528', 'RA0242103,8242013889','0', '400');
execute INSERTARRESULTADOSTIRADAS('59528', 'RA0242107,8131134259','-1000', '1000');
execute INSERTARRESULTADOSTIRADAS('59528', 'RA0242108,8760069444','-400', '400');
execute INSERTARRESULTADOSTIRADAS('59528', 'RA0242109,8261111111','-600', '600');
execute INSERTARRESULTADOSTIRADAS('59528', 'RA0242110,8366898148','-600', '600');
execute INSERTARRESULTADOSTIRADAS('59528', 'RA0242111,7890856481','-500', '500');
execute INSERTARRESULTADOSTIRADAS('59528', 'RA0242115,8256712963','-500', '500');
execute INSERTARRESULTADOSTIRADAS('59528', 'RA0342116,8392592593','-500', '500');
execute INSERTARRESULTADOSTIRADAS('60337', 'RA0342051,7891203704','0', '600');
execute INSERTARRESULTADOSTIRADAS('60337', 'RA0342052,7735532407','2700', '300');
execute INSERTARRESULTADOSTIRADAS('60337', 'RA0342053,7717708333','0', '200');
execute INSERTARRESULTADOSTIRADAS('60337', 'RA0242062,8413194444','-200', '200');
execute INSERTARRESULTADOSTIRADAS('60337', 'RA0342080,7615740741','-100', '600');
execute INSERTARRESULTADOSTIRADAS('60337', 'RA0342092,75125','1000', '1600');
execute INSERTARRESULTADOSTIRADAS('60337', 'RA0242093,7902662037','-1500', '1500');
execute INSERTARRESULTADOSTIRADAS('60337', 'RA0242115,832650463','-1500', '1500');
execute INSERTARRESULTADOSTIRADAS('60337', 'RA0342119,8232407407','-1700', '1700');
execute INSERTARRESULTADOSTIRADAS('61282', 'RA0342097,7681828704','0', '500');
execute INSERTARRESULTADOSTIRADAS('62393', 'RA0342082,8736342593','2000', '200');
execute INSERTARRESULTADOSTIRADAS('63940', 'RA0342104,0057986111','-200', '700');
execute INSERTARRESULTADOSTIRADAS('63968', 'RA0342026,0137268519','3300', '0');
execute INSERTARRESULTADOSTIRADAS('63968', 'RA0242088,0138425926','700', '300');
execute INSERTARRESULTADOSTIRADAS('64850', 'RA0342098,0154166667','400', '600');
execute INSERTARRESULTADOSTIRADAS('65789', 'RA0242047,9750462963','-200', '200');
execute INSERTARRESULTADOSTIRADAS('66032', 'RA0242034,9163773148','20600', '900');
execute INSERTARRESULTADOSTIRADAS('66032', 'RA0342047,7744791667','-4000', '4000');
execute INSERTARRESULTADOSTIRADAS('66032', 'RA0342061,7561111111','-7000', '4000');
execute INSERTARRESULTADOSTIRADAS('66032', 'RA0342103,763287037','-1700', '1700');
execute INSERTARRESULTADOSTIRADAS('67545', 'RA0342023,9957407407','-4100', '3200');
execute INSERTARRESULTADOSTIRADAS('68435', 'RA0342072,8246296296','500', '500');
execute INSERTARRESULTADOSTIRADAS('68435', 'RA0242075,0313425926','-700', '700');
execute INSERTARRESULTADOSTIRADAS('68435', 'RA0242076,8335300926','600', '200');
execute INSERTARRESULTADOSTIRADAS('69101', 'RA0342091,9208796296','700', '300');
execute INSERTARRESULTADOSTIRADAS('69101', 'RA0342101,9134722222','1000', '100');
execute INSERTARRESULTADOSTIRADAS('69103', 'RA0242019,0138078704','1100', '1400');
execute INSERTARRESULTADOSTIRADAS('69103', 'RA0342023,9071064815','3500', '1400');
execute INSERTARRESULTADOSTIRADAS('69103', 'RA0342025,8303240741','-500', '500');
execute INSERTARRESULTADOSTIRADAS('69103', 'RA0242035,806099537','300', '200');
execute INSERTARRESULTADOSTIRADAS('69103', 'RA0242039,9556712963','-200', '200');
execute INSERTARRESULTADOSTIRADAS('69103', 'RA0342049,8642361111','2100', '900');
execute INSERTARRESULTADOSTIRADAS('69103', 'RA0342061,9051273148','-1700', '1700');
execute INSERTARRESULTADOSTIRADAS('69103', 'RA0342066,7605324074','-1300', '800');
execute INSERTARRESULTADOSTIRADAS('69103', 'RA0242074,848275463','-1000', '1000');
execute INSERTARRESULTADOSTIRADAS('69103', 'RA0342080,7876736111','-1000', '1000');
execute INSERTARRESULTADOSTIRADAS('69103', 'RA0342081,7794560185','-1900', '1400');
execute INSERTARRESULTADOSTIRADAS('69103', 'RA0342086,8301736111','-1000', '1000');
execute INSERTARRESULTADOSTIRADAS('69103', 'RA0342092,9548611111','-1000', '1000');
execute INSERTARRESULTADOSTIRADAS('69103', 'RA0242106,8492708333','2300', '1200');
execute INSERTARRESULTADOSTIRADAS('69103', 'RA0242120,8865972222','2900', '600');
execute INSERTARRESULTADOSTIRADAS('69103', 'RA0242127,928125','-1700', '1200');
execute INSERTARRESULTADOSTIRADAS('69103', 'RA0342130,904837963','-500', '3500');
execute INSERTARRESULTADOSTIRADAS('69103', 'RA0342132,9244791667','4600', '3900');
execute INSERTARRESULTADOSTIRADAS('70376', 'RA0242110,9276388889','1300', '200');
execute INSERTARRESULTADOSTIRADAS('70533', 'RA0242016,8800115741','100', '900');
execute INSERTARRESULTADOSTIRADAS('70533', 'RA0242020,9900115741','1500', '0');
execute INSERTARRESULTADOSTIRADAS('70533', 'RA0242031,9939814815','-700', '700');
execute INSERTARRESULTADOSTIRADAS('70533', 'RA0242033,9737962963','-400', '400');
execute INSERTARRESULTADOSTIRADAS('70533', 'RA0342034,9923263889','800', '1300');
execute INSERTARRESULTADOSTIRADAS('70533', 'RA0242090,0554282407','-1000', '2200');
execute INSERTARRESULTADOSTIRADAS('70533', 'RA0242094,0981597222','-500', '1200');
execute INSERTARRESULTADOSTIRADAS('70533', 'RA0342095,0134490741','1200', '300');
execute INSERTARRESULTADOSTIRADAS('70533', 'RA0342103,0005092593','-700', '200');
execute INSERTARRESULTADOSTIRADAS('70533', 'RA0242104,9065856481','-900', '900');
execute INSERTARRESULTADOSTIRADAS('70533', 'RA0342128,9659953704','200', '1300');
execute INSERTARRESULTADOSTIRADAS('70533', 'RA0342130,0267476852','100', '1600');
execute INSERTARRESULTADOSTIRADAS('70533', 'RA0342135,9605439815','0', '1200');
execute INSERTARRESULTADOSTIRADAS('70533', 'RA0342137,9918634259','-800', '800');
execute INSERTARRESULTADOSTIRADAS('72273', 'RA0342119,9572453703','-700', '700');
execute INSERTARRESULTADOSTIRADAS('72594', 'RA0242107,7672800926','-500', '0');
execute INSERTARRESULTADOSTIRADAS('73143', 'RA0242027,9751273148','-1700', '1700');
execute INSERTARRESULTADOSTIRADAS('73143', 'RA0342028,7848611111','700', '1300');
execute INSERTARRESULTADOSTIRADAS('73143', 'RA0242030,8956597222','-1600', '800');
execute INSERTARRESULTADOSTIRADAS('73143', 'RA0242032,9227314815','-4600', '5100');
execute INSERTARRESULTADOSTIRADAS('73143', 'RA0242033,9471875','5100', '1400');
execute INSERTARRESULTADOSTIRADAS('73143', 'RA0342036,9495833333','-2700', '4200');
execute INSERTARRESULTADOSTIRADAS('73143', 'RA0342046,9234606481','-1600', '2600');
execute INSERTARRESULTADOSTIRADAS('73143', 'RA0242048,9407638889','2000', '500');
execute INSERTARRESULTADOSTIRADAS('73143', 'RA0342050,7705555556','-1800', '2400');
execute INSERTARRESULTADOSTIRADAS('73143', 'RA0342125,9440277778','-700', '700');
execute INSERTARRESULTADOSTIRADAS('74665', 'RA0342006,9362962963','-2000', '2000');
execute INSERTARRESULTADOSTIRADAS('75024', 'RA0342005,7824074074','800', '700');
execute INSERTARRESULTADOSTIRADAS('75024', 'RA0242007,9371643519','-1400', '2200');
execute INSERTARRESULTADOSTIRADAS('75024', 'RA0342016,0447106482','800', '1200');
execute INSERTARRESULTADOSTIRADAS('75024', 'RA0242027,9751273148','-1600', '600');
execute INSERTARRESULTADOSTIRADAS('75024', 'RA0242033,9471875','700', '2200');
execute INSERTARRESULTADOSTIRADAS('75024', 'RA0342036,9495833333','-200', '700');
execute INSERTARRESULTADOSTIRADAS('75024', 'RA0242044,9511574074','-2500', '1500');
execute INSERTARRESULTADOSTIRADAS('75024', 'RA0342061,9401157407','-1500', '1500');
execute INSERTARRESULTADOSTIRADAS('75024', 'RA0342064,1093171296','-1000', '1000');
execute INSERTARRESULTADOSTIRADAS('75024', 'RA0342064,8160300926','-1000', '1000');
execute INSERTARRESULTADOSTIRADAS('75024', 'RA0242103,9732060185','-2300', '2300');
execute INSERTARRESULTADOSTIRADAS('75024', 'RA0342104,9324537037','-4000', '3000');
execute INSERTARRESULTADOSTIRADAS('75024', 'RA0242107,0510300926','-2000', '2000');
execute INSERTARRESULTADOSTIRADAS('75024', 'RA0342115,926724537','-2100', '2100');
execute INSERTARRESULTADOSTIRADAS('75326', 'RA0242049,0828240741','-400', '400');
execute INSERTARRESULTADOSTIRADAS('75326', 'RA0342062,9745601852','0', '500');
execute INSERTARRESULTADOSTIRADAS('76237', 'RA0242014,9450925926','-3700', '700');
execute INSERTARRESULTADOSTIRADAS('76237', 'RA0342035,9212037037','-3800', '800');
execute INSERTARRESULTADOSTIRADAS('76237', 'RA0242042,9304050926','-2600', '1100');
execute INSERTARRESULTADOSTIRADAS('76865', 'RA0242014,934537037','700', '1000');
execute INSERTARRESULTADOSTIRADAS('76865', 'RA0242021,9580439815','200', '1000');
execute INSERTARRESULTADOSTIRADAS('76865', 'RA0342022,8713310185','2900', '2500');
execute INSERTARRESULTADOSTIRADAS('76865', 'RA0342027,0022916667','-5000', '3500');
execute INSERTARRESULTADOSTIRADAS('76865', 'RA0342028,8923726852','3500', '2000');
execute INSERTARRESULTADOSTIRADAS('76865', 'RA0242031,983900463','1500', '3000');
execute INSERTARRESULTADOSTIRADAS('76865', 'RA0342035,9947453704','1500', '5000');
execute INSERTARRESULTADOSTIRADAS('76865', 'RA0242042,017662037','1500', '0');
execute INSERTARRESULTADOSTIRADAS('76865', 'RA0342047,8293981481','1500', '1000');
execute INSERTARRESULTADOSTIRADAS('76865', 'RA0342054,7954513889','1500', '0');
execute INSERTARRESULTADOSTIRADAS('76865', 'RA0242056,9539351852','2000', '0');
execute INSERTARRESULTADOSTIRADAS('76865', 'RA0342061,7964930556','11500', '9500');
execute INSERTARRESULTADOSTIRADAS('76865', 'RA0242063,901712963','4000', '0');
execute INSERTARRESULTADOSTIRADAS('76865', 'RA0342069,7849189815','1000', '1000');
execute INSERTARRESULTADOSTIRADAS('76865', 'RA0242077,0003819444','-5800', '1300');
execute INSERTARRESULTADOSTIRADAS('76865', 'RA0342079,7978240741','2200', '9800');
execute INSERTARRESULTADOSTIRADAS('76865', 'RA0342089,9831828704','1000', '0');
execute INSERTARRESULTADOSTIRADAS('76865', 'RA0342095,0069907407','1000', '0');
execute INSERTARRESULTADOSTIRADAS('76865', 'RA0242097,8401157407','700', '0');
execute INSERTARRESULTADOSTIRADAS('76865', 'RA0242098,8554861111','1900', '900');
execute INSERTARRESULTADOSTIRADAS('76865', 'RA0342104,8453703704','1100', '1400');
execute INSERTARRESULTADOSTIRADAS('76865', 'RA0242116,9557523148','2500', '9000');
execute INSERTARRESULTADOSTIRADAS('76865', 'RA0342125,0009027778','-1300', '1300');
execute INSERTARRESULTADOSTIRADAS('77220', 'RA0342063,8112384259','1000', '0');
execute INSERTARRESULTADOSTIRADAS('78176', 'RA0242105,953125','200', '800');
execute INSERTARRESULTADOSTIRADAS('78899', 'RA0342026,8503240741','-1500', '1500');
execute INSERTARRESULTADOSTIRADAS('78977', 'RA0242129,9749537037','1400', '600');
execute INSERTARRESULTADOSTIRADAS('79572', 'RA0342112,8861921296','500', '0');
execute INSERTARRESULTADOSTIRADAS('81124', 'RA0242031,8622453704','1200', '800');
execute INSERTARRESULTADOSTIRADAS('81124', 'RA0342034,8127893519','-8200', '8200');
execute INSERTARRESULTADOSTIRADAS('81124', 'RA0242036,9821180556','100', '2900');
execute INSERTARRESULTADOSTIRADAS('81124', 'RA0242037,832037037','-3800', '3800');
execute INSERTARRESULTADOSTIRADAS('81124', 'RA0342038,792962963','-2500', '500');
execute INSERTARRESULTADOSTIRADAS('81124', 'RA0342083,839224537','-1700', '1900');
execute INSERTARRESULTADOSTIRADAS('81129', 'RA0342015,7979050925','2000', '1000');
execute INSERTARRESULTADOSTIRADAS('81129', 'RA0342029,7950578704','-1100', '1100');
execute INSERTARRESULTADOSTIRADAS('81178', 'RA0242078,9867592593','-2300', '2300');
execute INSERTARRESULTADOSTIRADAS('81712', 'RA0342005,7904861111','-500', '900');
execute INSERTARRESULTADOSTIRADAS('81712', 'RA0342027,9814814815','-2000', '2000');
execute INSERTARRESULTADOSTIRADAS('81712', 'RA0242104,9332986111','0', '900');
execute INSERTARRESULTADOSTIRADAS('81838', 'RA0342013,8725231482','-700', '700');
execute INSERTARRESULTADOSTIRADAS('81838', 'RA0242027,9517476852','1000', '300');
execute INSERTARRESULTADOSTIRADAS('81838', 'RA0342102,8113657407','1500', '0');
execute INSERTARRESULTADOSTIRADAS('81838', 'RA0242128,7577430556','-300', '300');
execute INSERTARRESULTADOSTIRADAS('81838', 'RA0342129,7838194444','-100', '100');
execute INSERTARRESULTADOSTIRADAS('81838', 'RA0342132,8093981482','-200', '200');
execute INSERTARRESULTADOSTIRADAS('83453', 'RA0242098,8497685185','-800', '800');
execute INSERTARRESULTADOSTIRADAS('84402', 'RA0342086,8041435185','-7200', '2200');
execute INSERTARRESULTADOSTIRADAS('84402', 'RA0342087,7681018518','0', '4400');
execute INSERTARRESULTADOSTIRADAS('84402', 'RA0342090,7910763889','-800', '1800');
execute INSERTARRESULTADOSTIRADAS('84405', 'RA0342077,0501157407','4300', '200');
execute INSERTARRESULTADOSTIRADAS('84691', 'RA0342022,8665856481','-100', '2100');
execute INSERTARRESULTADOSTIRADAS('84691', 'RA0342027,0003819444','-1800', '500');
execute INSERTARRESULTADOSTIRADAS('84691', 'RA0242031,983900463','-1000', '1000');
execute INSERTARRESULTADOSTIRADAS('84691', 'RA0242035,9786342593','-600', '600');
execute INSERTARRESULTADOSTIRADAS('84691', 'RA0342042,0173958333','0', '1100');
execute INSERTARRESULTADOSTIRADAS('84691', 'RA0342061,9981597222','1000', '0');
execute INSERTARRESULTADOSTIRADAS('84691', 'RA0242103,8196412037','-500', '500');
execute INSERTARRESULTADOSTIRADAS('86172', 'RA0342007,8142361111','800', '1200');
execute INSERTARRESULTADOSTIRADAS('86172', 'RA0242045,8447685185','-1700', '1700');
execute INSERTARRESULTADOSTIRADAS('86172', 'RA0342047,8790277778','-500', '500');
execute INSERTARRESULTADOSTIRADAS('86172', 'RA0342060,8055439815','-500', '500');
execute INSERTARRESULTADOSTIRADAS('86172', 'RA0342069,7593865741','-2900', '3400');
execute INSERTARRESULTADOSTIRADAS('86172', 'RA0342094,8548958333','600', '400');
execute INSERTARRESULTADOSTIRADAS('86172', 'RA0342098,7773958333','1000', '0');
execute INSERTARRESULTADOSTIRADAS('86172', 'RA0342100,7932638889','3300', '1700');
execute INSERTARRESULTADOSTIRADAS('86172', 'RA0342101,8099537037','-700', '700');
execute INSERTARRESULTADOSTIRADAS('86172', 'RA0242102,8074768518','-800', '0');
execute INSERTARRESULTADOSTIRADAS('86172', 'RA0342103,8110185185','-300', '300');
execute INSERTARRESULTADOSTIRADAS('86172', 'RA0342104,7981597222','1300', '1900');
execute INSERTARRESULTADOSTIRADAS('86172', 'RA0342105,7834722222','-2000', '1000');
execute INSERTARRESULTADOSTIRADAS('86172', 'RA0242106,8973032407','1000', '0');
execute INSERTARRESULTADOSTIRADAS('86172', 'RA0242108,7930902778','-8500', '6500');
execute INSERTARRESULTADOSTIRADAS('86172', 'RA0242111,7790509259','3500', '2000');
execute INSERTARRESULTADOSTIRADAS('86172', 'RA0242114,8220717593','1000', '1500');
execute INSERTARRESULTADOSTIRADAS('86172', 'RA0342117,8009375','300', '200');
execute INSERTARRESULTADOSTIRADAS('86172', 'RA0342119,7943402778','-3200', '700');
execute INSERTARRESULTADOSTIRADAS('86172', 'RA0242135,9627546296','-2500', '500');
execute INSERTARRESULTADOSTIRADAS('86205', 'RA0342128,8429861111','500', '0');
execute INSERTARRESULTADOSTIRADAS('88209', 'RA0342011,756724537','-400', '2000');
execute INSERTARRESULTADOSTIRADAS('92194', 'RA0242123,9666087963','-1000', '2000');
execute INSERTARRESULTADOSTIRADAS('92194', 'RA0342126,8346064814','1500', '0');
execute INSERTARRESULTADOSTIRADAS('92194', 'RA0242130,8373148148','1000', '0');
execute INSERTARRESULTADOSTIRADAS('92735', 'RA0342097,8455671296','1000', '0');
execute INSERTARRESULTADOSTIRADAS('92735', 'RA0242102,8910648148','1300', '500');
execute INSERTARRESULTADOSTIRADAS('93172', 'RA0342095,8321412037','0', '500');
execute INSERTARRESULTADOSTIRADAS('93172', 'RA0342099,8624884259','2500', '0');
execute INSERTARRESULTADOSTIRADAS('94544', 'RA0342037,8183101852','1000', '0');
execute INSERTARRESULTADOSTIRADAS('94544', 'RA0242127,950787037','500', '0');
execute INSERTARRESULTADOSTIRADAS('95457', 'RA0242110,7883912037','-28700', '26700');
execute INSERTARRESULTADOSTIRADAS('95482', 'RA0342101,0424189815','2700', '100');
execute INSERTARRESULTADOSTIRADAS('97334', 'RA0242079,0585648148','-500', '500');
execute INSERTARRESULTADOSTIRADAS('97357', 'RA0342047,776712963','1500', '0');
execute INSERTARRESULTADOSTIRADAS('99216', 'RA0342056,9926851852','1000', '0');
execute INSERTARRESULTADOSTIRADAS('99221', 'RA0342056,8357638889','0', '400');
execute INSERTARRESULTADOSTIRADAS('101580', 'RA0242014,0440972222','-1000', '0');
execute INSERTARRESULTADOSTIRADAS('101580', 'RA0242014,8727893519','1700', '300');
execute INSERTARRESULTADOSTIRADAS('101580', 'RA0242021,0796990741','1000', '0');
execute INSERTARRESULTADOSTIRADAS('101580', 'RA0342027,024224537','-600', '0');
execute INSERTARRESULTADOSTIRADAS('101580', 'RA0342039,9691550926','-2000', '500');
execute INSERTARRESULTADOSTIRADAS('101580', 'RA0242040,9632523148','4500', '0');
execute INSERTARRESULTADOSTIRADAS('101580', 'RA0242042,0297337963','4000', '0');
execute INSERTARRESULTADOSTIRADAS('101580', 'RA0242042,8912037037','1000', '300');
execute INSERTARRESULTADOSTIRADAS('101580', 'RA0342046,9874652777','700', '300');
execute INSERTARRESULTADOSTIRADAS('101580', 'RA0242047,9586921296','600', '600');
execute INSERTARRESULTADOSTIRADAS('101580', 'RA0342049,0025462963','500', '0');
execute INSERTARRESULTADOSTIRADAS('101580', 'RA0342049,9947800926','-500', '0');
execute INSERTARRESULTADOSTIRADAS('101580', 'RA0342054,9751157407','3000', '500');
execute INSERTARRESULTADOSTIRADAS('101580', 'RA0342057,9397800926','-600', '0');
execute INSERTARRESULTADOSTIRADAS('101580', 'RA0242062,9578125','-500', '0');
execute INSERTARRESULTADOSTIRADAS('101580', 'RA0342065,952974537','1000', '0');
execute INSERTARRESULTADOSTIRADAS('101580', 'RA0342066,9682291667','-500', '500');
execute INSERTARRESULTADOSTIRADAS('101580', 'RA0342068,9519675926','0', '500');
execute INSERTARRESULTADOSTIRADAS('101580', 'RA0242071,0436574074','7000', '0');
execute INSERTARRESULTADOSTIRADAS('101580', 'RA0342076,0359490741','1000', '0');
execute INSERTARRESULTADOSTIRADAS('101580', 'RA0242076,9993171296','0', '1000');
execute INSERTARRESULTADOSTIRADAS('101580', 'RA0242078,9909259259','-4000', '0');
execute INSERTARRESULTADOSTIRADAS('101580', 'RA0242083,0243865741','-1000', '0');
execute INSERTARRESULTADOSTIRADAS('101580', 'RA0242091,9278587963','-1000', '0');
execute INSERTARRESULTADOSTIRADAS('101580', 'RA0342098,084525463','-1000', '0');
execute INSERTARRESULTADOSTIRADAS('103328', 'RA0342008,9651736111','-700', '700');
execute INSERTARRESULTADOSTIRADAS('103328', 'RA0342067,0693402778','-700', '700');
execute INSERTARRESULTADOSTIRADAS('103328', 'RA0342106,7580324074','0', '300');
execute INSERTARRESULTADOSTIRADAS('103394', 'RA0342132,9502777778','3800', '200');
execute INSERTARRESULTADOSTIRADAS('103394', 'RA0242134,0051157407','-1500', '1500');
execute INSERTARRESULTADOSTIRADAS('105113', 'RA0342027,9758564815','-500', '0');
execute INSERTARRESULTADOSTIRADAS('106398', 'RA0342032,7775810185','-3500', '700');
execute INSERTARRESULTADOSTIRADAS('106633', 'RA0342110,7801273148','-200', '200');
execute INSERTARRESULTADOSTIRADAS('107123', 'RA0342006,8504050926','-1300', '1300');
execute INSERTARRESULTADOSTIRADAS('107123', 'RA0342013,8027430556','-1200', '1200');
execute INSERTARRESULTADOSTIRADAS('107123', 'RA0342041,8787384259','500', '400');
execute INSERTARRESULTADOSTIRADAS('107123', 'RA0342048,8115972222','400', '600');
execute INSERTARRESULTADOSTIRADAS('107123', 'RA0342050,9922916667','-1100', '1100');
execute INSERTARRESULTADOSTIRADAS('107123', 'RA0242062,8159490741','0', '500');
execute INSERTARRESULTADOSTIRADAS('107123', 'RA0342064,9696296296','-1700', '3200');
execute INSERTARRESULTADOSTIRADAS('107123', 'RA0342078,9928819444','-500', '500');
execute INSERTARRESULTADOSTIRADAS('107463', 'RA0242110,7828935185','500', '0');
execute INSERTARRESULTADOSTIRADAS('107633', 'RA0342013,0005555556','1500', '0');
execute INSERTARRESULTADOSTIRADAS('107633', 'RA0242089,0585532407','1500', '0');
execute INSERTARRESULTADOSTIRADAS('107633', 'RA0342090,0217708333','-400', '400');
execute INSERTARRESULTADOSTIRADAS('107981', 'RA0342073,8534953704','0', '500');
execute INSERTARRESULTADOSTIRADAS('107981', 'RA0242105,8907175926','400', '700');
execute INSERTARRESULTADOSTIRADAS('107981', 'RA0342114,7886458333','11000', '500');
execute INSERTARRESULTADOSTIRADAS('108677', 'RA0342009,7769097222','1000', '0');
execute INSERTARRESULTADOSTIRADAS('108677', 'RA0242013,8389699074','800', '0');
execute INSERTARRESULTADOSTIRADAS('108677', 'RA0342020,7754050926','0', '500');
execute INSERTARRESULTADOSTIRADAS('108677', 'RA0342026,7781828704','1000', '100');
execute INSERTARRESULTADOSTIRADAS('108677', 'RA0242027,8021875','400', '0');
execute INSERTARRESULTADOSTIRADAS('108677', 'RA0342030,8080555556','-5000', '0');
execute INSERTARRESULTADOSTIRADAS('108677', 'RA0342033,7927893518','0', '500');
execute INSERTARRESULTADOSTIRADAS('108677', 'RA0342035,7901736111','2000', '200');
execute INSERTARRESULTADOSTIRADAS('108677', 'RA0342037,8114930556','300', '1300');
execute INSERTARRESULTADOSTIRADAS('108677', 'RA0342041,1153703704','0', '500');
execute INSERTARRESULTADOSTIRADAS('108677', 'RA0242041,8273148148','-25400', '5400');
execute INSERTARRESULTADOSTIRADAS('108677', 'RA0342044,7711458333','300', '0');
execute INSERTARRESULTADOSTIRADAS('108677', 'RA0342054,8055555556','1000', '0');
execute INSERTARRESULTADOSTIRADAS('108677', 'RA0242058,8280092593','1000', '2100');
execute INSERTARRESULTADOSTIRADAS('108677', 'RA0342063,8290625','-500', '1000');
execute INSERTARRESULTADOSTIRADAS('108677', 'RA0342065,8083333333','500', '2500');
execute INSERTARRESULTADOSTIRADAS('108677', 'RA0342068,8133217593','600', '2300');
execute INSERTARRESULTADOSTIRADAS('108677', 'RA0342069,818599537','-1600', '4000');
execute INSERTARRESULTADOSTIRADAS('108677', 'RA0342072,8330208333','-100', '1200');
execute INSERTARRESULTADOSTIRADAS('108677', 'RA0342075,8318518518','200', '800');
execute INSERTARRESULTADOSTIRADAS('108677', 'RA0342076,8093171296','500', '500');
execute INSERTARRESULTADOSTIRADAS('108677', 'RA0242079,8457986111','0', '400');
execute INSERTARRESULTADOSTIRADAS('108677', 'RA0342081,9744097222','0', '400');
execute INSERTARRESULTADOSTIRADAS('108677', 'RA0242082,8289236111','300', '3200');
execute INSERTARRESULTADOSTIRADAS('108677', 'RA0342084,8000810185','200', '0');
execute INSERTARRESULTADOSTIRADAS('108677', 'RA0342086,8094791667','-600', '2400');
execute INSERTARRESULTADOSTIRADAS('108677', 'RA0342089,7946180556','200', '1300');
execute INSERTARRESULTADOSTIRADAS('108677', 'RA0342090,8199421296','100', '400');
execute INSERTARRESULTADOSTIRADAS('108677', 'RA0342091,8404050926','400', '2400');
execute INSERTARRESULTADOSTIRADAS('108677', 'RA0242092,8670601852','500', '1300');
execute INSERTARRESULTADOSTIRADAS('108677', 'RA0342093,8351157407','800', '500');
execute INSERTARRESULTADOSTIRADAS('108677', 'RA0342094,9121064815','200', '500');
execute INSERTARRESULTADOSTIRADAS('108677', 'RA0342095,8933796296','200', '800');
execute INSERTARRESULTADOSTIRADAS('108677', 'RA0342096,7853125','800', '7500');
execute INSERTARRESULTADOSTIRADAS('108677', 'RA0342097,7894212963','400', '5100');
execute INSERTARRESULTADOSTIRADAS('108677', 'RA0342098,8327546296','0', '1900');
execute INSERTARRESULTADOSTIRADAS('108677', 'RA0242099,8819328704','200', '1500');
execute INSERTARRESULTADOSTIRADAS('108677', 'RA0342100,7841435185','2100', '1900');
execute INSERTARRESULTADOSTIRADAS('108677', 'RA0242102,8665277778','500', '0');
execute INSERTARRESULTADOSTIRADAS('108677', 'RA0242103,7922222222','-1800', '12200');
execute INSERTARRESULTADOSTIRADAS('108677', 'RA0342106,8214236111','400', '3100');
execute INSERTARRESULTADOSTIRADAS('108677', 'RA0342107,7858796296','500', '4000');
execute INSERTARRESULTADOSTIRADAS('108677', 'RA0342108,8207291667','1700', '500');
execute INSERTARRESULTADOSTIRADAS('108677', 'RA0342109,886087963','200', '800');
execute INSERTARRESULTADOSTIRADAS('108677', 'RA0342110,7986226852','500', '4500');
execute INSERTARRESULTADOSTIRADAS('108677', 'RA0242111,8154050926','1500', '0');
execute INSERTARRESULTADOSTIRADAS('108677', 'RA0242112,8061458333','500', '0');
execute INSERTARRESULTADOSTIRADAS('108677', 'RA0242114,7782291667','400', '600');
execute INSERTARRESULTADOSTIRADAS('108677', 'RA0242116,8030439815','600', '4900');
execute INSERTARRESULTADOSTIRADAS('108677', 'RA0342123,8220023148','700', '1300');
execute INSERTARRESULTADOSTIRADAS('108677', 'RA0342124,7830787037','-12500', '15000');
execute INSERTARRESULTADOSTIRADAS('108677', 'RA0342125,7993518518','2700', '0');
execute INSERTARRESULTADOSTIRADAS('108677', 'RA0242126,860787037','3000', '0');
execute INSERTARRESULTADOSTIRADAS('108677', 'RA0242128,7955555556','1100', '100');
execute INSERTARRESULTADOSTIRADAS('108677', 'RA0342131,8390972222','1400', '0');
execute INSERTARRESULTADOSTIRADAS('108677', 'RA0242132,7699652778','500', '0');
execute INSERTARRESULTADOSTIRADAS('108677', 'RA0242135,8242824074','-1500', '0');
execute INSERTARRESULTADOSTIRADAS('109612', 'RA0242014,0587615741','-1000', '2400');
execute INSERTARRESULTADOSTIRADAS('109612', 'RA0342022,04','-500', '500');
execute INSERTARRESULTADOSTIRADAS('109612', 'RA0342023,9898842593','-300', '300');
execute INSERTARRESULTADOSTIRADAS('109612', 'RA0342025,1083449074','-500', '500');
execute INSERTARRESULTADOSTIRADAS('109612', 'RA0242042,9375347222','1800', '200');
execute INSERTARRESULTADOSTIRADAS('109612', 'RA0342046,9782523148','-500', '500');
execute INSERTARRESULTADOSTIRADAS('109612', 'RA0342049,9415162037','1400', '100');
execute INSERTARRESULTADOSTIRADAS('109612', 'RA0242062,0086574074','400', '100');
execute INSERTARRESULTADOSTIRADAS('109612', 'RA0242075,9927546296','6000', '0');
execute INSERTARRESULTADOSTIRADAS('109612', 'RA0342076,9402546296','-400', '400');
execute INSERTARRESULTADOSTIRADAS('109612', 'RA0242077,9877083333','-500', '500');
execute INSERTARRESULTADOSTIRADAS('109612', 'RA0342081,9358796296','-500', '0');
execute INSERTARRESULTADOSTIRADAS('109612', 'RA0242082,9344560185','-300', '300');
execute INSERTARRESULTADOSTIRADAS('109612', 'RA0342084,0002893519','-1100', '1100');
execute INSERTARRESULTADOSTIRADAS('109612', 'RA0342086,0221527778','2800', '200');
execute INSERTARRESULTADOSTIRADAS('109612', 'RA0242087,9348958333','-1000', '1000');
execute INSERTARRESULTADOSTIRADAS('109612', 'RA0342089,9733796296','500', '300');
execute INSERTARRESULTADOSTIRADAS('109612', 'RA0342090,9388194444','-900', '900');
execute INSERTARRESULTADOSTIRADAS('109612', 'RA0342091,9383912037','-600', '600');
execute INSERTARRESULTADOSTIRADAS('109612', 'RA0242095,9870949074','-300', '300');
execute INSERTARRESULTADOSTIRADAS('109612', 'RA0342097,0006597222','300', '700');
execute INSERTARRESULTADOSTIRADAS('109612', 'RA0342104,9660532407','-500', '500');
execute INSERTARRESULTADOSTIRADAS('109612', 'RA0342110,9798263889','3000', '300');
execute INSERTARRESULTADOSTIRADAS('109612', 'RA0242114,0070949074','3000', '500');
execute INSERTARRESULTADOSTIRADAS('109612', 'RA0242115,996412037','2100', '400');
execute INSERTARRESULTADOSTIRADAS('109612', 'RA0242116,9627893519','300', '300');
execute INSERTARRESULTADOSTIRADAS('109612', 'RA0242117,9881944444','1000', '0');
execute INSERTARRESULTADOSTIRADAS('109612', 'RA0342118,9906712963','-800', '800');
execute INSERTARRESULTADOSTIRADAS('109612', 'RA0242131,0550810185','2500', '0');
execute INSERTARRESULTADOSTIRADAS('109612', 'RA0242132,0272685185','1400', '200');
execute INSERTARRESULTADOSTIRADAS('109612', 'RA0342133,0104976852','-300', '300');
execute INSERTARRESULTADOSTIRADAS('109612', 'RA0242133,9908449074','-2300', '2300');
execute INSERTARRESULTADOSTIRADAS('110598', 'RA0242077,9902199074','2500', '0');
execute INSERTARRESULTADOSTIRADAS('110598', 'RA0342112,9887268519','-100', '100');
execute INSERTARRESULTADOSTIRADAS('112399', 'RA0342068,8746296296','2600', '1400');
execute INSERTARRESULTADOSTIRADAS('112577', 'RA0242008,8527777778','200', '800');
execute INSERTARRESULTADOSTIRADAS('112577', 'RA0242009,8150925926','-2100', '1600');
execute INSERTARRESULTADOSTIRADAS('112577', 'RA0342015,0753240741','0', '1000');
execute INSERTARRESULTADOSTIRADAS('112577', 'RA0242015,9439699074','1500', '0');
execute INSERTARRESULTADOSTIRADAS('112577', 'RA0342016,7621412037','1500', '1900');
execute INSERTARRESULTADOSTIRADAS('112577', 'RA0342018,9213425926','700', '500');
execute INSERTARRESULTADOSTIRADAS('112577', 'RA0342024,0030787037','-200', '700');
execute INSERTARRESULTADOSTIRADAS('112730', 'RA0342027,7948842593','-1000', '0');
execute INSERTARRESULTADOSTIRADAS('113751', 'RA0342064,8304050926','-600', '600');
execute INSERTARRESULTADOSTIRADAS('113751', 'RA0342065,9190972222','-300', '800');
execute INSERTARRESULTADOSTIRADAS('114108', 'RA0342060,0190856481','-2000', '2000');
execute INSERTARRESULTADOSTIRADAS('116226', 'RA0342048,8058564815','2500', '500');
execute INSERTARRESULTADOSTIRADAS('116226', 'RA0342051,7983912037','-4500', '5500');
execute INSERTARRESULTADOSTIRADAS('116226', 'RA0342052,7542476852','-1700', '5200');
execute INSERTARRESULTADOSTIRADAS('116226', 'RA0242053,9032175926','3500', '1000');
execute INSERTARRESULTADOSTIRADAS('116226', 'RA0342055,8575810185','1000', '2100');
execute INSERTARRESULTADOSTIRADAS('116226', 'RA0342056,7647916667','-4700', '6000');
execute INSERTARRESULTADOSTIRADAS('116226', 'RA0342057,7609259259','-2900', '1900');
execute INSERTARRESULTADOSTIRADAS('116226', 'RA0342060,7828125','3600', '5400');
execute INSERTARRESULTADOSTIRADAS('116226', 'RA0342062,8554861111','-3400', '3400');
execute INSERTARRESULTADOSTIRADAS('116226', 'RA0342063,7561226852','2500', '500');
execute INSERTARRESULTADOSTIRADAS('116226', 'RA0342064,7706018519','-4400', '3400');
execute INSERTARRESULTADOSTIRADAS('116226', 'RA0342065,7957407407','1500', '7500');
execute INSERTARRESULTADOSTIRADAS('116226', 'RA0342067,8592592593','-4700', '7700');
execute INSERTARRESULTADOSTIRADAS('116226', 'RA0342084,9599884259','-700', '700');
execute INSERTARRESULTADOSTIRADAS('116226', 'RA0242090,8681134259','-5800', '4100');
execute INSERTARRESULTADOSTIRADAS('116226', 'RA0342091,7599537037','500', '4500');
execute INSERTARRESULTADOSTIRADAS('116870', 'RA0242120,9099421296','1000', '0');
execute INSERTARRESULTADOSTIRADAS('116870', 'RA0342132,9445601852','1000', '0');
execute INSERTARRESULTADOSTIRADAS('118354', 'RA0342112,0172569444','3800', '700');
execute INSERTARRESULTADOSTIRADAS('118634', 'RA0242015,8314930556','-1500', '1400');
execute INSERTARRESULTADOSTIRADAS('118634', 'RA0242017,9224537037','-1400', '1400');
execute INSERTARRESULTADOSTIRADAS('118634', 'RA0242026,9677546296','-200', '200');
execute INSERTARRESULTADOSTIRADAS('118634', 'RA0342027,7789583333','-1100', '1100');
execute INSERTARRESULTADOSTIRADAS('118634', 'RA0342118,8288425926','-800', '1800');
execute INSERTARRESULTADOSTIRADAS('120209', 'RA0342103,808900463','500', '0');
execute INSERTARRESULTADOSTIRADAS('120209', 'RA0342111,8632291667','1000', '0');
execute INSERTARRESULTADOSTIRADAS('120264', 'RA0342013,7874305556','-2500', '0');
execute INSERTARRESULTADOSTIRADAS('120264', 'RA0342016,7776273148','2500', '0');
execute INSERTARRESULTADOSTIRADAS('120264', 'RA0242018,8236689815','-1800', '800');
execute INSERTARRESULTADOSTIRADAS('120264', 'RA0342024,811724537','-1800', '600');
execute INSERTARRESULTADOSTIRADAS('120264', 'RA0342034,7936921296','-1200', '200');
execute INSERTARRESULTADOSTIRADAS('120264', 'RA0242035,9110763889','-2000', '900');
execute INSERTARRESULTADOSTIRADAS('120264', 'RA0242040,8598726852','300', '200');
execute INSERTARRESULTADOSTIRADAS('120264', 'RA0342043,7755787037','-2000', '1000');
execute INSERTARRESULTADOSTIRADAS('120264', 'RA0242051,8140509259','-3300', '3300');
execute INSERTARRESULTADOSTIRADAS('120264', 'RA0342053,7950347222','-1400', '900');
execute INSERTARRESULTADOSTIRADAS('120264', 'RA0342054,78375','-200', '2000');
execute INSERTARRESULTADOSTIRADAS('120264', 'RA0342055,7739351852','1500', '1400');
execute INSERTARRESULTADOSTIRADAS('120264', 'RA0342057,7609259259','-3300', '800');
execute INSERTARRESULTADOSTIRADAS('120264', 'RA0342058,7862962963','7000', '0');
execute INSERTARRESULTADOSTIRADAS('120264', 'RA0342059,8398842593','-2100', '1100');
execute INSERTARRESULTADOSTIRADAS('120264', 'RA0342060,7896412037','-300', '300');
execute INSERTARRESULTADOSTIRADAS('120264', 'RA0342061,8130092593','700', '800');
execute INSERTARRESULTADOSTIRADAS('120264', 'RA0342062,8435648148','500', '400');
execute INSERTARRESULTADOSTIRADAS('120264', 'RA0342064,8165509259','-1100', '1100');
execute INSERTARRESULTADOSTIRADAS('120264', 'RA0342066,7739930556','-3000', '1200');
execute INSERTARRESULTADOSTIRADAS('120264', 'RA0342068,7833449074','-1800', '300');
execute INSERTARRESULTADOSTIRADAS('120264', 'RA0242075,8445717593','4200', '300');
execute INSERTARRESULTADOSTIRADAS('120264', 'RA0342078,7580902778','-5300', '1300');
execute INSERTARRESULTADOSTIRADAS('120264', 'RA0342080,7920486111','-2500', '500');
execute INSERTARRESULTADOSTIRADAS('120264', 'RA0342081,8028935185','-700', '700');
execute INSERTARRESULTADOSTIRADAS('120264', 'RA0342087,7704861111','4000', '1000');
execute INSERTARRESULTADOSTIRADAS('120264', 'RA0242090,8564583333','-300', '300');
execute INSERTARRESULTADOSTIRADAS('120264', 'RA0242092,8476157407','-1300', '1300');
execute INSERTARRESULTADOSTIRADAS('120264', 'RA0242098,794537037','3500', '0');
execute INSERTARRESULTADOSTIRADAS('120264', 'RA0342102,7907523148','-1700', '500');
execute INSERTARRESULTADOSTIRADAS('120264', 'RA0342103,8166435185','-1100', '500');
execute INSERTARRESULTADOSTIRADAS('120264', 'RA0242110,8680671296','-200', '1100');
execute INSERTARRESULTADOSTIRADAS('120264', 'RA0242114,8449305556','-600', '600');
execute INSERTARRESULTADOSTIRADAS('120264', 'RA0242117,8506481481','-1500', '0');
execute INSERTARRESULTADOSTIRADAS('120364', 'RA0342039,8726967593','-3700', '2900');
execute INSERTARRESULTADOSTIRADAS('120929', 'RA0342011,7635069444','-1200', '1200');
execute INSERTARRESULTADOSTIRADAS('120929', 'RA0342037,7609953704','-600', '600');
execute INSERTARRESULTADOSTIRADAS('120929', 'RA0342059,7848148148','200', '200');
execute INSERTARRESULTADOSTIRADAS('120929', 'RA0342060,7828125','-700', '100');
execute INSERTARRESULTADOSTIRADAS('120929', 'RA0342062,7725115741','-1300', '300');
execute INSERTARRESULTADOSTIRADAS('120929', 'RA0342094,8061805556','-1000', '1000');
execute INSERTARRESULTADOSTIRADAS('121576', 'RA0342008,9958101852','1200', '300');
execute INSERTARRESULTADOSTIRADAS('121576', 'RA0342011,0356944444','800', '200');
execute INSERTARRESULTADOSTIRADAS('121576', 'RA0242082,9851273148','1200', '300');
execute INSERTARRESULTADOSTIRADAS('121576', 'RA0242083,9869328704','800', '200');
execute INSERTARRESULTADOSTIRADAS('121576', 'RA0342086,0137268519','-1700', '1700');
execute INSERTARRESULTADOSTIRADAS('122299', 'RA0342089,8333449074','1000', '0');
execute INSERTARRESULTADOSTIRADAS('122372', 'RA0242011,9341898148','1700', '800');
execute INSERTARRESULTADOSTIRADAS('122372', 'RA0342013,9488194444','-1000', '1000');
execute INSERTARRESULTADOSTIRADAS('122372', 'RA0342018,8893518519','-1400', '1400');
execute INSERTARRESULTADOSTIRADAS('122372', 'RA0342026,8708912037','-500', '500');
execute INSERTARRESULTADOSTIRADAS('122372', 'RA0342054,9391898148','1100', '600');
execute INSERTARRESULTADOSTIRADAS('122372', 'RA0242056,8556944444','-600', '600');
execute INSERTARRESULTADOSTIRADAS('122372', 'RA0242067,8320486111','-300', '1200');
execute INSERTARRESULTADOSTIRADAS('122372', 'RA0342086,8230555556','-1200', '1200');
execute INSERTARRESULTADOSTIRADAS('122372', 'RA0242107,8412731482','-300', '300');
execute INSERTARRESULTADOSTIRADAS('122685', 'RA0242027,0939236111','-2600', '2600');
execute INSERTARRESULTADOSTIRADAS('122685', 'RA0342088,0918287037','-1200', '1200');
execute INSERTARRESULTADOSTIRADAS('123252', 'RA0342009,9250694444','400', '2700');
execute INSERTARRESULTADOSTIRADAS('123330', 'RA0342009,0963310185','500', '100');
execute INSERTARRESULTADOSTIRADAS('123330', 'RA0242018,0519675926','1600', '1400');
execute INSERTARRESULTADOSTIRADAS('123330', 'RA0242057,0565162037','-200', '200');
execute INSERTARRESULTADOSTIRADAS('123330', 'RA0242058,0401388889','0', '1400');
execute INSERTARRESULTADOSTIRADAS('123556', 'RA0242127,9963541667','3500', '500');
execute INSERTARRESULTADOSTIRADAS('124011', 'RA0342063,8562847222','0', '1000');
execute INSERTARRESULTADOSTIRADAS('124011', 'RA0242127,9680092593','-1600', '1600');
execute INSERTARRESULTADOSTIRADAS('124509', 'RA0342029,1101736111','0', '0');
execute INSERTARRESULTADOSTIRADAS('124606', 'RA0342110,9168981481','1000', '0');
execute INSERTARRESULTADOSTIRADAS('124652', 'RA0342060,8665277778','1400', '200');
execute INSERTARRESULTADOSTIRADAS('124652', 'RA0342070,8664236111','1500', '0');
execute INSERTARRESULTADOSTIRADAS('124652', 'RA0342113,9234722222','1000', '0');
execute INSERTARRESULTADOSTIRADAS('124652', 'RA0242127,9296412037','-700', '700');
execute INSERTARRESULTADOSTIRADAS('124653', 'RA0242043,8708564815','1000', '0');
execute INSERTARRESULTADOSTIRADAS('124732', 'RA0242110,9619328704','-600', '1100');
execute INSERTARRESULTADOSTIRADAS('125597', 'RA0342042,7741203704','2300', '1200');
execute INSERTARRESULTADOSTIRADAS('125597', 'RA0342048,8708217593','2400', '1600');
execute INSERTARRESULTADOSTIRADAS('125597', 'RA0342050,7709606482','-500', '500');
execute INSERTARRESULTADOSTIRADAS('126335', 'RA0242024,9954398148','-900', '900');
execute INSERTARRESULTADOSTIRADAS('126928', 'RA0342060,9338773148','-2000', '1400');
execute INSERTARRESULTADOSTIRADAS('126930', 'RA0342060,9338773148','-2500', '1000');
execute INSERTARRESULTADOSTIRADAS('126938', 'RA0342106,838912037','2000', '0');
execute INSERTARRESULTADOSTIRADAS('128148', 'RA0342135,7553819444','1400', '1900');
execute INSERTARRESULTADOSTIRADAS('128195', 'RA0242091,9297453704','-1900', '1900');
execute INSERTARRESULTADOSTIRADAS('128977', 'RA0242088,8788657407','1400', '100');
execute INSERTARRESULTADOSTIRADAS('128977', 'RA0242113,9414583333','1200', '300');
execute INSERTARRESULTADOSTIRADAS('129793', 'RA0342099,7608796296','-3000', '3000');
execute INSERTARRESULTADOSTIRADAS('129895', 'RA0242103,1187037037','-7000', '0');
execute INSERTARRESULTADOSTIRADAS('129895', 'RA0242131,1110185185','-7500', '0');
execute INSERTARRESULTADOSTIRADAS('130195', 'RA0242058,8882638888','1000', '0');
execute INSERTARRESULTADOSTIRADAS('130214', 'RA0342112,0161111111','-1500', '1000');
execute INSERTARRESULTADOSTIRADAS('131398', 'RA0242120,9871527778','4300', '0');
execute INSERTARRESULTADOSTIRADAS('131398', 'RA0242130,0194328704','-300', '300');
execute INSERTARRESULTADOSTIRADAS('132055', 'RA0242008,9656481482','-500', '1000');
execute INSERTARRESULTADOSTIRADAS('132609', 'RA0242026,9362037037','-1000', '0');
execute INSERTARRESULTADOSTIRADAS('132609', 'RA0342033,7566203704','-500', '0');
execute INSERTARRESULTADOSTIRADAS('132609', 'RA0342055,9292592593','-1500', '500');
execute INSERTARRESULTADOSTIRADAS('132609', 'RA0342082,9129166667','-4000', '1000');
execute INSERTARRESULTADOSTIRADAS('135214', 'RA0342106,7867708333','-1200', '1200');
execute INSERTARRESULTADOSTIRADAS('135369', 'RA0342087,7636226852','-1200', '1200');
execute INSERTARRESULTADOSTIRADAS('135369', 'RA0342129,7824884259','2800', '3200');
execute INSERTARRESULTADOSTIRADAS('135581', 'RA0342079,7581597222','1500', '800');
execute INSERTARRESULTADOSTIRADAS('135581', 'RA0242114,7661342593','-1000', '1000');
execute INSERTARRESULTADOSTIRADAS('136258', 'RA0342021,7966666667','-1000', '0');
execute INSERTARRESULTADOSTIRADAS('136590', 'RA0242046,8738310185','700', '500');
execute INSERTARRESULTADOSTIRADAS('136590', 'RA0242058,8423958333','-1000', '1000');
execute INSERTARRESULTADOSTIRADAS('136951', 'RA0242112,0376273148','3500', '1500');
execute INSERTARRESULTADOSTIRADAS('136976', 'RA0242033,9757175926','2400', '1600');
execute INSERTARRESULTADOSTIRADAS('137244', 'RA0242107,7972453704','800', '200');
execute INSERTARRESULTADOSTIRADAS('137314', 'RA0242120,0627777778','-2000', '3000');
execute INSERTARRESULTADOSTIRADAS('137888', 'RA0342048,7918287037','1000', '0');
execute INSERTARRESULTADOSTIRADAS('137899', 'RA0342127,1024537037','-300', '800');
execute INSERTARRESULTADOSTIRADAS('138371', 'RA0242030,8181018519','-1000', '1000');
execute INSERTARRESULTADOSTIRADAS('138371', 'RA0342064,8160300926','1000', '0');
execute INSERTARRESULTADOSTIRADAS('138371', 'RA0342071,997349537','1300', '200');
execute INSERTARRESULTADOSTIRADAS('138371', 'RA0342072,9160069444','2000', '0');
execute INSERTARRESULTADOSTIRADAS('138371', 'RA0242073,9314699074','-1700', '1700');
execute INSERTARRESULTADOSTIRADAS('138371', 'RA0242077,9808449074','1000', '0');
execute INSERTARRESULTADOSTIRADAS('138371', 'RA0342079,9147685185','-800', '800');
execute INSERTARRESULTADOSTIRADAS('138371', 'RA0342088,9145949074','-3300', '200');
execute INSERTARRESULTADOSTIRADAS('138371', 'RA0242089,9136111111','-2400', '3400');
execute INSERTARRESULTADOSTIRADAS('138371', 'RA0242094,0934606481','-1500', '1700');
execute INSERTARRESULTADOSTIRADAS('138371', 'RA0342102,7561111111','-1200', '0');
execute INSERTARRESULTADOSTIRADAS('138371', 'RA0242103,9724305556','6000', '500');
execute INSERTARRESULTADOSTIRADAS('138371', 'RA0342105,9587731482','-500', '500');
execute INSERTARRESULTADOSTIRADAS('138371', 'RA0342112,9993981481','-300', '300');
execute INSERTARRESULTADOSTIRADAS('138371', 'RA0242120,931712963','-500', '500');
execute INSERTARRESULTADOSTIRADAS('138371', 'RA0242123,7881134259','200', '600');
execute INSERTARRESULTADOSTIRADAS('138371', 'RA0242129,951099537','1500', '0');
execute INSERTARRESULTADOSTIRADAS('138849', 'RA0342135,9246180556','3700', '200');
execute INSERTARRESULTADOSTIRADAS('138849', 'RA0242136,9649768519','2800', '700');
execute INSERTARRESULTADOSTIRADAS('139557', 'RA0242110,8485185185','1000', '0');
execute INSERTARRESULTADOSTIRADAS('140491', 'RA0242078,8705555556','-500', '0');
execute INSERTARRESULTADOSTIRADAS('140491', 'RA0242113,0243171296','1500', '0');
execute INSERTARRESULTADOSTIRADAS('140491', 'RA0242127,0577199074','1500', '0');
execute INSERTARRESULTADOSTIRADAS('141286', 'RA0342087,7950810185','-500', '700');
execute INSERTARRESULTADOSTIRADAS('141342', 'RA0242089,9136111111','1000', '0');
execute INSERTARRESULTADOSTIRADAS('141785', 'RA0242120,7791087963','1000', '1700');
execute INSERTARRESULTADOSTIRADAS('142027', 'RA0242136,8833796296','-700', '2200');
execute INSERTARRESULTADOSTIRADAS('142027', 'RA0242137,8397685185','-1800', '2200');
execute INSERTARRESULTADOSTIRADAS('142168', 'RA0342030,8117013889','3500', '500');
execute INSERTARRESULTADOSTIRADAS('143708', 'RA0242005,9205671296','-1100', '1100');
execute INSERTARRESULTADOSTIRADAS('143708', 'RA0342007,8142361111','8700', '7800');
execute INSERTARRESULTADOSTIRADAS('143708', 'RA0342008,8634027778','-2000', '2000');
execute INSERTARRESULTADOSTIRADAS('143708', 'RA0342010,9398958333','-1000', '1000');
execute INSERTARRESULTADOSTIRADAS('143708', 'RA0242011,8540046296','3300', '7700');
execute INSERTARRESULTADOSTIRADAS('143708', 'RA0242012,9779050926','4300', '1200');
execute INSERTARRESULTADOSTIRADAS('143708', 'RA0242013,8569907407','2500', '4800');
execute INSERTARRESULTADOSTIRADAS('143708', 'RA0342014,8813078704','-4800', '19300');
execute INSERTARRESULTADOSTIRADAS('143708', 'RA0342015,8747222222','-700', '9200');
execute INSERTARRESULTADOSTIRADAS('143708', 'RA0242016,8598263889','-4000', '5000');
execute INSERTARRESULTADOSTIRADAS('143708', 'RA0242017,934849537','900', '300');
execute INSERTARRESULTADOSTIRADAS('143708', 'RA0242018,8461111111','1000', '900');
execute INSERTARRESULTADOSTIRADAS('143708', 'RA0242019,9586805556','-7800', '5800');
execute INSERTARRESULTADOSTIRADAS('143708', 'RA0342020,9228356481','0', '3000');
execute INSERTARRESULTADOSTIRADAS('143708', 'RA0342021,7966666667','-3500', '500');
execute INSERTARRESULTADOSTIRADAS('143708', 'RA0342022,8339814815','3000', '6000');
execute INSERTARRESULTADOSTIRADAS('143708', 'RA0342023,8589467593','-4000', '4000');
execute INSERTARRESULTADOSTIRADAS('143708', 'RA0242028,0100578704','-6800', '800');
execute INSERTARRESULTADOSTIRADAS('143708', 'RA0342029,8713078703','-1700', '700');
execute INSERTARRESULTADOSTIRADAS('143708', 'RA0242034,8427430556','-1100', '600');
execute INSERTARRESULTADOSTIRADAS('143708', 'RA0242041,8528819444','800', '700');
execute INSERTARRESULTADOSTIRADAS('143708', 'RA0242043,8734143519','4000', '2500');
execute INSERTARRESULTADOSTIRADAS('143708', 'RA0242044,8509837963','600', '900');
execute INSERTARRESULTADOSTIRADAS('143708', 'RA0242045,8447685185','3500', '7000');
execute INSERTARRESULTADOSTIRADAS('143708', 'RA0342046,8929398148','2000', '3400');
execute INSERTARRESULTADOSTIRADAS('143708', 'RA0342047,8790277778','-11300', '1300');
execute INSERTARRESULTADOSTIRADAS('143708', 'RA0342048,7998032407','-3500', '3500');
execute INSERTARRESULTADOSTIRADAS('143708', 'RA0342054,874525463','-1800', '1200');
execute INSERTARRESULTADOSTIRADAS('143708', 'RA0342060,8055439815','1400', '2600');
execute INSERTARRESULTADOSTIRADAS('143708', 'RA0342061,7985532407','5200', '3300');
execute INSERTARRESULTADOSTIRADAS('143708', 'RA0342062,8554861111','1400', '11100');
execute INSERTARRESULTADOSTIRADAS('143708', 'RA0342063,7808564815','-2200', '5700');
execute INSERTARRESULTADOSTIRADAS('143708', 'RA0342064,8160300926','6200', '5800');
execute INSERTARRESULTADOSTIRADAS('143708', 'RA0342065,8008217593','1100', '1900');
execute INSERTARRESULTADOSTIRADAS('143708', 'RA0342068,8213310185','3500', '3500');
execute INSERTARRESULTADOSTIRADAS('143708', 'RA0342069,7593865741','-13000', '14500');
execute INSERTARRESULTADOSTIRADAS('143708', 'RA0342070,7801736111','6000', '1500');
execute INSERTARRESULTADOSTIRADAS('143708', 'RA0242071,9009722222','-9400', '400');
execute INSERTARRESULTADOSTIRADAS('143708', 'RA0242084,8509953704','-2500', '0');
execute INSERTARRESULTADOSTIRADAS('143708', 'RA0342087,9591550926','1000', '2000');
execute INSERTARRESULTADOSTIRADAS('143708', 'RA0342090,873912037','-4700', '1200');
execute INSERTARRESULTADOSTIRADAS('143708', 'RA0242094,8545949074','1000', '0');
execute INSERTARRESULTADOSTIRADAS('143708', 'RA0342096,9058101852','-2000', '1000');
execute INSERTARRESULTADOSTIRADAS('143708', 'RA0342097,9128703704','500', '2000');
execute INSERTARRESULTADOSTIRADAS('143708', 'RA0242098,7773263889','3000', '5500');
execute INSERTARRESULTADOSTIRADAS('143708', 'RA0342100,7932638889','500', '8300');
execute INSERTARRESULTADOSTIRADAS('143708', 'RA0242101,808900463','1700', '300');
execute INSERTARRESULTADOSTIRADAS('143708', 'RA0242102,8074768518','0', '6000');
execute INSERTARRESULTADOSTIRADAS('143708', 'RA0242103,8119097222','1000', '1000');
execute INSERTARRESULTADOSTIRADAS('143708', 'RA0342104,7981597222','8500', '11000');
execute INSERTARRESULTADOSTIRADAS('143708', 'RA0342105,7834722222','3000', '3000');
execute INSERTARRESULTADOSTIRADAS('143708', 'RA0242106,8531365741','2900', '7600');
execute INSERTARRESULTADOSTIRADAS('143708', 'RA0242107,8200462963','3000', '3500');
execute INSERTARRESULTADOSTIRADAS('143708', 'RA0342108,7920023148','1900', '3100');
execute INSERTARRESULTADOSTIRADAS('143708', 'RA0342109,8997106481','4000', '2000');
execute INSERTARRESULTADOSTIRADAS('143708', 'RA0242110,816087963','2000', '1500');
execute INSERTARRESULTADOSTIRADAS('143708', 'RA0242111,7790509259','2000', '500');
execute INSERTARRESULTADOSTIRADAS('143708', 'RA0242113,9174884259','1700', '800');
execute INSERTARRESULTADOSTIRADAS('143708', 'RA0342117,8009375','-18000', '1500');
execute INSERTARRESULTADOSTIRADAS('143708', 'RA0342121,8087615741','5000', '1000');
execute INSERTARRESULTADOSTIRADAS('143708', 'RA0342122,787349537','1000', '4000');
execute INSERTARRESULTADOSTIRADAS('143708', 'RA0242123,7986921296','10000', '3000');
execute INSERTARRESULTADOSTIRADAS('143708', 'RA0242124,9425231482','-23500', '6000');
execute INSERTARRESULTADOSTIRADAS('143708', 'RA0242126,860787037','-6200', '700');
execute INSERTARRESULTADOSTIRADAS('143708', 'RA0342130,8767013889','8000', '1000');
execute INSERTARRESULTADOSTIRADAS('143708', 'RA0342131,8209490741','-23700', '4200');
execute INSERTARRESULTADOSTIRADAS('143708', 'RA0342135,9630208333','-8600', '1600');
execute INSERTARRESULTADOSTIRADAS('144139', 'RA0242026,9147569444','-400', '400');
execute INSERTARRESULTADOSTIRADAS('144139', 'RA0342032,9882986111','-500', '500');
execute INSERTARRESULTADOSTIRADAS('144793', 'RA0342030,8128240741','-1600', '2600');
execute INSERTARRESULTADOSTIRADAS('144793', 'RA0342131,0722222222','-1000', '2500');
execute INSERTARRESULTADOSTIRADAS('144795', 'RA0242016,8394097222','0', '11300');
execute INSERTARRESULTADOSTIRADAS('144795', 'RA0242026,9469212963','-12300', '8300');
execute INSERTARRESULTADOSTIRADAS('144795', 'RA0342027,7653587963','-10500', '18500');
execute INSERTARRESULTADOSTIRADAS('144795', 'RA0342032,8167592593','-4500', '2500');
execute INSERTARRESULTADOSTIRADAS('145259', 'RA0342056,8617939815','0', '500');
execute INSERTARRESULTADOSTIRADAS('145703', 'RA0342097,8820138889','1700', '0');
execute INSERTARRESULTADOSTIRADAS('146024', 'RA0342101,7553935185','-800', '800');
execute INSERTARRESULTADOSTIRADAS('146154', 'RA0342022,9692476852','-3000', '3000');
execute INSERTARRESULTADOSTIRADAS('146434', 'RA0342016,8445833333','3500', '0');
execute INSERTARRESULTADOSTIRADAS('146434', 'RA0242027,8406134259','-1000', '0');
execute INSERTARRESULTADOSTIRADAS('146434', 'RA0342028,8597222222','-1000', '0');
execute INSERTARRESULTADOSTIRADAS('146434', 'RA0242030,8309722222','2000', '0');
execute INSERTARRESULTADOSTIRADAS('146434', 'RA0242041,8509490741','1000', '0');
execute INSERTARRESULTADOSTIRADAS('146434', 'RA0342042,8436458333','-1000', '0');
execute INSERTARRESULTADOSTIRADAS('146434', 'RA0242048,9083912037','500', '0');
execute INSERTARRESULTADOSTIRADAS('146434', 'RA0242058,8197800926','-1000', '0');
execute INSERTARRESULTADOSTIRADAS('146438', 'RA0342014,8974421296','2500', '0');
execute INSERTARRESULTADOSTIRADAS('147146', 'RA0242006,8158796296','-3000', '0');
execute INSERTARRESULTADOSTIRADAS('147146', 'RA0342016,7886458333','-2500', '0');
execute INSERTARRESULTADOSTIRADAS('147146', 'RA0342087,8502893519','1500', '0');
execute INSERTARRESULTADOSTIRADAS('147146', 'RA0342097,9056481481','-5000', '0');
execute INSERTARRESULTADOSTIRADAS('147146', 'RA0342131,0729398148','2000', '2300');
execute INSERTARRESULTADOSTIRADAS('147546', 'RA0242111,7901388889','0', '500');
execute INSERTARRESULTADOSTIRADAS('147549', 'RA0242137,8397685185','0', '0');
execute INSERTARRESULTADOSTIRADAS('147815', 'RA0342035,774837963','1200', '300');
execute INSERTARRESULTADOSTIRADAS('148178', 'RA0242034,0843287037','1000', '500');
execute INSERTARRESULTADOSTIRADAS('148178', 'RA0242038,9542824074','-2500', '300');
execute INSERTARRESULTADOSTIRADAS('148178', 'RA0242064,0791319444','-300', '300');
execute INSERTARRESULTADOSTIRADAS('148178', 'RA0242075,9476388889','-400', '3400');
execute INSERTARRESULTADOSTIRADAS('148178', 'RA0242081,0396412037','3800', '500');
execute INSERTARRESULTADOSTIRADAS('148178', 'RA0342135,0825810185','-700', '700');
execute INSERTARRESULTADOSTIRADAS('148346', 'RA0342015,782650463','-1900', '900');
execute INSERTARRESULTADOSTIRADAS('148387', 'RA0342099,9683912037','600', '1000');
execute INSERTARRESULTADOSTIRADAS('149014', 'RA0342060,8223958333','1000', '500');
execute INSERTARRESULTADOSTIRADAS('149014', 'RA0342095,845474537','0', '500');
execute INSERTARRESULTADOSTIRADAS('149014', 'RA0242114,8195717593','1500', '0');
execute INSERTARRESULTADOSTIRADAS('149014', 'RA0242117,8325','-1500', '1500');
execute INSERTARRESULTADOSTIRADAS('149014', 'RA0242128,7693518518','1400', '100');
execute INSERTARRESULTADOSTIRADAS('149014', 'RA0342131,787974537','-1600', '1600');
execute INSERTARRESULTADOSTIRADAS('149175', 'RA0342092,7521180556','1000', '300');
execute INSERTARRESULTADOSTIRADAS('149671', 'RA0342101,7647222222','3000', '1000');
execute INSERTARRESULTADOSTIRADAS('149671', 'RA0242110,9358217593','2500', '0');
execute INSERTARRESULTADOSTIRADAS('149671', 'RA0242117,8431018519','200', '4300');
execute INSERTARRESULTADOSTIRADAS('149824', 'RA0342079,0245949074','-1000', '1000');
execute INSERTARRESULTADOSTIRADAS('149824', 'RA0242080,9707291667','1000', '0');
execute INSERTARRESULTADOSTIRADAS('150222', 'RA0242029,9103125','1000', '1500');
execute INSERTARRESULTADOSTIRADAS('150222', 'RA0342071,8308217593','1800', '0');
execute INSERTARRESULTADOSTIRADAS('150222', 'RA0242085,8582407407','8000', '0');
execute INSERTARRESULTADOSTIRADAS('150222', 'RA0242092,8423032407','-3400', '400');
execute INSERTARRESULTADOSTIRADAS('150222', 'RA0342099,8447106481','-4500', '2000');
execute INSERTARRESULTADOSTIRADAS('150292', 'RA0342136,0743865741','2000', '0');
execute INSERTARRESULTADOSTIRADAS('150363', 'RA0342006,077662037','-1600', '1200');
execute INSERTARRESULTADOSTIRADAS('150425', 'RA0342058,779224537','-800', '800');
execute INSERTARRESULTADOSTIRADAS('150447', 'RA0342020,9212731481','1000', '0');
execute INSERTARRESULTADOSTIRADAS('150447', 'RA0242021,9523958333','-500', '800');
execute INSERTARRESULTADOSTIRADAS('150447', 'RA0242130,0474305556','1000', '1000');
execute INSERTARRESULTADOSTIRADAS('150447', 'RA0242136,9499768519','400', '600');
execute INSERTARRESULTADOSTIRADAS('150469', 'RA0342032,9882986111','1000', '0');
execute INSERTARRESULTADOSTIRADAS('150603', 'RA0242008,097650463','-1900', '1900');
execute INSERTARRESULTADOSTIRADAS('150603', 'RA0342022,0872800926','500', '500');
execute INSERTARRESULTADOSTIRADAS('150603', 'RA0242057,134375','0', '1000');
execute INSERTARRESULTADOSTIRADAS('150603', 'RA0242071,0798032407','400', '0');
execute INSERTARRESULTADOSTIRADAS('150638', 'RA0342021,8445949074','-1800', '1800');
execute INSERTARRESULTADOSTIRADAS('150666', 'RA0242120,931712963','2300', '1300');
execute INSERTARRESULTADOSTIRADAS('150826', 'RA0242022,8479282407','1500', '0');
execute INSERTARRESULTADOSTIRADAS('150826', 'RA0242039,9646990741','500', '0');
execute INSERTARRESULTADOSTIRADAS('150826', 'RA0242049,8960069444','-500', '0');
execute INSERTARRESULTADOSTIRADAS('150826', 'RA0342064,8596759259','-300', '300');
execute INSERTARRESULTADOSTIRADAS('150826', 'RA0342102,9083333333','1000', '0');
execute INSERTARRESULTADOSTIRADAS('150826', 'RA0342106,9267592593','-1000', '0');
execute INSERTARRESULTADOSTIRADAS('151183', 'RA0342047,0345486111','0', '0');
execute INSERTARRESULTADOSTIRADAS('151264', 'RA0342005,7575347222','-300', '1500');
execute INSERTARRESULTADOSTIRADAS('151284', 'RA0242005,9475694444','2000', '0');
execute INSERTARRESULTADOSTIRADAS('151289', 'RA0242006,0005324074','-2000', '0');
execute INSERTARRESULTADOSTIRADAS('151290', 'RA0242006,0017013889','-900', '900');
execute INSERTARRESULTADOSTIRADAS('151387', 'RA0342008,8693634259','400', '600');
execute INSERTARRESULTADOSTIRADAS('151564', 'RA0342016,8536111111','1000', '500');
execute INSERTARRESULTADOSTIRADAS('151567', 'RA0342017,0100231481','-1500', '0');
execute INSERTARRESULTADOSTIRADAS('151568', 'RA0242130,0676273148','-1200', '1200');
execute INSERTARRESULTADOSTIRADAS('151574', 'RA0342019,795150463','1600', '400');
execute INSERTARRESULTADOSTIRADAS('151685', 'RA0242022,9307523148','6300', '2200');
execute INSERTARRESULTADOSTIRADAS('151685', 'RA0242024,8609259259','2500', '500');
execute INSERTARRESULTADOSTIRADAS('151812', 'RA0242032,9194907407','-2000', '1500');
execute INSERTARRESULTADOSTIRADAS('151812', 'RA0242033,9077430556','700', '2200');
execute INSERTARRESULTADOSTIRADAS('151812', 'RA0342034,9428703704','5000', '6000');
execute INSERTARRESULTADOSTIRADAS('151812', 'RA0342035,7901736111','-1100', '2600');
execute INSERTARRESULTADOSTIRADAS('151812', 'RA0242036,8979861111','-600', '600');
execute INSERTARRESULTADOSTIRADAS('151812', 'RA0342046,932349537','-300', '300');
execute INSERTARRESULTADOSTIRADAS('151821', 'RA0342032,0892013889','-1700', '4300');
execute INSERTARRESULTADOSTIRADAS('151821', 'RA0242039,9213657407','-800', '800');
execute INSERTARRESULTADOSTIRADAS('152050', 'RA0242040,9230439815','-1200', '1200');
execute INSERTARRESULTADOSTIRADAS('152058', 'RA0242042,917650463','800', '0');
execute INSERTARRESULTADOSTIRADAS('152165', 'RA0342070,9552662037','1000', '0');
execute INSERTARRESULTADOSTIRADAS('152165', 'RA0342096,8722569444','2000', '0');
execute INSERTARRESULTADOSTIRADAS('152165', 'RA0242098,9619560185','1300', '1700');
execute INSERTARRESULTADOSTIRADAS('152165', 'RA0242112,9796296296','-200', '200');
execute INSERTARRESULTADOSTIRADAS('152174', 'RA0342043,9642476852','-1500', '500');
execute INSERTARRESULTADOSTIRADAS('152208', 'RA0342046,8636574074','-1500', '1500');
execute INSERTARRESULTADOSTIRADAS('152377', 'RA0242053,0256018518','2800', '200');
execute INSERTARRESULTADOSTIRADAS('152377', 'RA0342055,9450578704','2200', '300');
execute INSERTARRESULTADOSTIRADAS('152377', 'RA0342056,9920486111','1000', '1500');
execute INSERTARRESULTADOSTIRADAS('152378', 'RA0342050,0265277777','-2100', '1500');
execute INSERTARRESULTADOSTIRADAS('152378', 'RA0342055,7657291667','1000', '3100');
execute INSERTARRESULTADOSTIRADAS('152378', 'RA0342056,9920486111','0', '3500');
execute INSERTARRESULTADOSTIRADAS('152639', 'RA0242058,8527546296','0', '600');
execute INSERTARRESULTADOSTIRADAS('152660', 'RA0342060,9338773148','1300', '600');
execute INSERTARRESULTADOSTIRADAS('152781', 'RA0242063,9736921296','1000', '0');
execute INSERTARRESULTADOSTIRADAS('152856', 'RA0242065,9809953704','-100', '600');
execute INSERTARRESULTADOSTIRADAS('152856', 'RA0342066,8758333333','-300', '300');
execute INSERTARRESULTADOSTIRADAS('153043', 'RA0342120,8899421296','2000', '8400');
execute INSERTARRESULTADOSTIRADAS('153043', 'RA0342121,8380208333','-1500', '1500');
execute INSERTARRESULTADOSTIRADAS('153043', 'RA0242124,9386805556','-2800', '2200');
execute INSERTARRESULTADOSTIRADAS('153046', 'RA0342072,793912037','0', '0');
execute INSERTARRESULTADOSTIRADAS('153064', 'RA0242114,7892476852','-500', '0');
execute INSERTARRESULTADOSTIRADAS('153091', 'RA0242076,970787037','1200', '3400');
execute INSERTARRESULTADOSTIRADAS('153222', 'RA0242081,9693287037','-1700', '1700');
execute INSERTARRESULTADOSTIRADAS('153222', 'RA0342083,0266203704','-800', '800');
execute INSERTARRESULTADOSTIRADAS('153227', 'RA0242081,0366550926','-6700', '4000');
execute INSERTARRESULTADOSTIRADAS('153309', 'RA0242085,920775463','-400', '700');
execute INSERTARRESULTADOSTIRADAS('153366', 'RA0342086,9471759259','-6500', '13000');
execute INSERTARRESULTADOSTIRADAS('153381', 'RA0342088,0129861111','-600', '2000');
execute INSERTARRESULTADOSTIRADAS('153383', 'RA0342087,8747800926','1000', '1000');
execute INSERTARRESULTADOSTIRADAS('153394', 'RA0242087,9307060185','-5500', '5500');
execute INSERTARRESULTADOSTIRADAS('153434', 'RA0342090,7941666667','-1100', '2100');
execute INSERTARRESULTADOSTIRADAS('153570', 'RA0242095,0529166667','-3000', '1000');
execute INSERTARRESULTADOSTIRADAS('153624', 'RA0342097,9934259259','-1100', '1100');
execute INSERTARRESULTADOSTIRADAS('153639', 'RA0342098,0744212963','1000', '1500');
execute INSERTARRESULTADOSTIRADAS('153639', 'RA0342099,0381018519','2700', '1800');
execute INSERTARRESULTADOSTIRADAS('153639', 'RA0242100,0561921296','-16300', '3300');
execute INSERTARRESULTADOSTIRADAS('153641', 'RA0242100,0572685185','1000', '0');
execute INSERTARRESULTADOSTIRADAS('153681', 'RA0342099,8297337963','2500', '1000');
execute INSERTARRESULTADOSTIRADAS('153744', 'RA0242103,8876967593','-1000', '1000');
execute INSERTARRESULTADOSTIRADAS('153943', 'RA0342108,0884375','-3500', '2500');
execute INSERTARRESULTADOSTIRADAS('153945', 'RA0342108,0884375','-2500', '3000');
execute INSERTARRESULTADOSTIRADAS('153952', 'RA0242108,9699652778','700', '200');
execute INSERTARRESULTADOSTIRADAS('153958', 'RA0242109,0537731481','-1000', '1000');
execute INSERTARRESULTADOSTIRADAS('153969', 'RA0342110,019849537','2500', '700');
execute INSERTARRESULTADOSTIRADAS('153969', 'RA0342112,0798726852','-2000', '2000');
execute INSERTARRESULTADOSTIRADAS('153970', 'RA0342110,019849537','2700', '800');
execute INSERTARRESULTADOSTIRADAS('153970', 'RA0342112,078900463','1100', '900');
execute INSERTARRESULTADOSTIRADAS('153972', 'RA0242110,0553009259','-2700', '0');
execute INSERTARRESULTADOSTIRADAS('154019', 'RA0342112,0161111111','-1000', '0');
execute INSERTARRESULTADOSTIRADAS('154085', 'RA0242114,9213310185','400', '800');
execute INSERTARRESULTADOSTIRADAS('154102', 'RA0242115,8998842593','-2000', '0');
execute INSERTARRESULTADOSTIRADAS('154102', 'RA0342116,860787037','900', '0');
execute INSERTARRESULTADOSTIRADAS('154102', 'RA0342118,847025463','-2600', '3000');
execute INSERTARRESULTADOSTIRADAS('154102', 'RA0342119,797025463','-4800', '800');
execute INSERTARRESULTADOSTIRADAS('154102', 'RA0342121,8135648148','-21700', '0');
execute INSERTARRESULTADOSTIRADAS('154103', 'RA0342115,9185648148','-2700', '2700');
execute INSERTARRESULTADOSTIRADAS('154104', 'RA0242115,9499652778','-1300', '1300');
execute INSERTARRESULTADOSTIRADAS('154106', 'RA0242115,9874884259','-700', '1700');
execute INSERTARRESULTADOSTIRADAS('154132', 'RA0342117,9725810185','200', '800');
execute INSERTARRESULTADOSTIRADAS('154133', 'RA0342118,0102893518','-25500', '2500');
execute INSERTARRESULTADOSTIRADAS('154221', 'RA0342120,7284953704','1500', '0');
execute INSERTARRESULTADOSTIRADAS('154247', 'RA0242121,9327893518','-500', '400');
execute INSERTARRESULTADOSTIRADAS('154310', 'RA0242125,8247453704','-10000', '4200');
execute INSERTARRESULTADOSTIRADAS('154374', 'RA0342127,7606828704','-3500', '4000');
execute INSERTARRESULTADOSTIRADAS('154374', 'RA0342128,7569444444','-800', '3800');
execute INSERTARRESULTADOSTIRADAS('154399', 'RA0342128,912349537','2900', '1600');
execute INSERTARRESULTADOSTIRADAS('154402', 'RA0242129,0350925926','1300', '1000');
execute INSERTARRESULTADOSTIRADAS('154402', 'RA0342129,9572800926','-4800', '4800');
execute INSERTARRESULTADOSTIRADAS('154429', 'RA0242132,791712963','-1500', '1500');
execute INSERTARRESULTADOSTIRADAS('154429', 'RA0342135,8325810185','-5400', '5400');
execute INSERTARRESULTADOSTIRADAS('154435', 'RA0342130,9985532407','6200', '300');
execute INSERTARRESULTADOSTIRADAS('154461', 'RA0242131,9105439815','900', '600');
execute INSERTARRESULTADOSTIRADAS('154582', 'RA0342135,0334837963','-1000', '1000');
execute INSERTARRESULTADOSTIRADAS('154595', 'RA0342136,0928935185','4000', '1500');
execute INSERTARRESULTADOSTIRADAS('154595', 'RA0342137,9730439815','1000', '1000');
execute INSERTARRESULTADOSTIRADAS('154606', 'RA0242137,0654513889','-2500', '2100');
|
DROP DATABASE IF EXISTS chat;
CREATE DATABASE chat;
USE chat;
CREATE TABLE users (
id int not null auto_increment,
username varchar(20) character set utf8 collate utf8_bin unique,
primary key(id)
);
CREATE TABLE rooms (
id int not null auto_increment,
roomname varchar(20) character set utf8 collate utf8_bin unique,
primary key(id)
);
CREATE TABLE friend (
id int not null auto_increment,
user int,
friend int,
primary key (id),
foreign key (user) references users(id),
foreign key (friend) references users(id)
);
CREATE TABLE messages (
/* Describe your table here.*/
id int not null auto_increment,
userid int,
roomid int,
msg varchar(140),
createAt timestamp,
primary key (id),
FOREIGN KEY (userid) REFERENCES users(id),
FOREIGN KEY (roomid) REFERENCES rooms(id)
);
/* Create other tables and define schemas for them here! */
/* Execute this file from the command line by typing:
* mysql -u root < server/schema.sql
* to create the database and the tables.*/
|
CREATE DATABASE pwcidb;
USE pwcidb;
CREATE TABLE usuarios(
id_Usuario int auto_increment,
nombre_Usuario varchar(20) not null,
correo_Usuario varchar(50) not null,
password_Usuario varchar(15) not null,
imagen_Avatar mediumblob,
estado bit DEFAULT(1),
tipo_Cuenta enum('private','public') default 'private',
primary key(id_Usuario)
);
CREATE TABLE lista(
id_Lista int auto_increment,
nombre_Lista varchar(30) not null,
descrip_Lista varchar(100),
tipo_Lista enum('private','public') default 'private',
usuario_Dueno int not null,
/*image longblob NOT NULL,
imageType varchar(5) NOT NULL,*/
primary key(id_Lista),
foreign key(usuario_Dueno) references usuarios(id_Usuario)
);
CREATE TABLE objeto(
id_Objeto int auto_increment,
nombre_Objeto varchar(30) not null,
descrip_Objeto varchar(100) not null,
estado_Objeto enum('busca','tiene') not null default 'busca',
precio_Objeto int,
lista_Duena int not null,
primary key(id_Objeto),
foreign key(lista_Duena) references lista(id_Lista)
);
|
SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0;
SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0;
SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='TRADITIONAL';
-- CREATE SCHEMA IF NOT EXISTS `mapping` DEFAULT CHARACTER SET utf8 ;
-- USE `mapping`;
-- -----------------------------------------------------
-- Table `Customer`
-- -----------------------------------------------------
CREATE TABLE IF NOT EXISTS `Customer` (
`customerKey` VARCHAR(8) NOT NULL ,
`customerName` VARCHAR(255) NULL DEFAULT NULL ,
PRIMARY KEY (`customerKey`) )
ENGINE = InnoDB
DEFAULT CHARACTER SET = utf8;
-- -----------------------------------------------------
-- Table `VehicleType`
-- -----------------------------------------------------
CREATE TABLE IF NOT EXISTS `VehicleType` (
`id` VARCHAR(2) NOT NULL ,
`description` VARCHAR(30) NULL DEFAULT NULL ,
`icon` VARCHAR(255) NULL DEFAULT NULL ,
PRIMARY KEY (`id`) )
ENGINE = InnoDB
DEFAULT CHARACTER SET = utf8;
-- -----------------------------------------------------
-- Table `Device`
-- -----------------------------------------------------
CREATE TABLE IF NOT EXISTS `Device` (
`id` VARCHAR(20) NOT NULL ,
`vehicleTypeId` VARCHAR(2) NOT NULL,
`type` ENUM('Driver','Vehicle') NOT NULL DEFAULT 'Vehicle',
`timeStamp` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP ,
`location` POINT,
`datetime` TIMESTAMP NOT NULL ,
`heading` DECIMAL(12,2) NULL DEFAULT '0.00' ,
`speed` DECIMAL(9,6) NULL DEFAULT '0.000000' ,
`street` VARCHAR(100) NULL DEFAULT NULL ,
`town` VARCHAR(100) NULL DEFAULT NULL ,
`postCode` VARCHAR(20) NULL DEFAULT NULL ,
`stopId` SMALLINT(3) UNSIGNED DEFAULT NULL,
`plotType` ENUM('plot', 'arrived', 'pickup', 'completed', 'delivered', 'panic' ) DEFAULT NULL,
`jobNumber` INT(10) UNSIGNED DEFAULT NULL ,
`odometer` INTEGER(11) UNSIGNED DEFAULT NULL,
`vehicleTemperature` FLOAT DEFAULT NULL,
`panic` BOOLEAN NOT NULL DEFAULT FALSE,
PRIMARY KEY (`id`) ,
INDEX `Fk_D_VehicleTypeId` (`vehicleTypeId` ASC) ,
CONSTRAINT `Fk_D_VehicleTypeId`
FOREIGN KEY (`vehicleTypeId` )
REFERENCES `VehicleType` (`id` )
ON DELETE RESTRICT ON UPDATE CASCADE)
ENGINE = InnoDB
DEFAULT CHARACTER SET = utf8;
-- -----------------------------------------------------
-- Table `Driver`
-- -----------------------------------------------------
CREATE TABLE IF NOT EXISTS `Driver` (
`id` varchar(4) NOT NULL,
`name` varchar(30) DEFAULT NULL,
`fleet` VARCHAR(10) DEFAULT NULL,
`region` VARCHAR(10) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- -----------------------------------------------------
-- Table `DeviceAssign`
-- -----------------------------------------------------
CREATE TABLE IF NOT EXISTS `DeviceAssign` (
`id` INT(11) UNSIGNED NOT NULL AUTO_INCREMENT ,
`deviceId` VARCHAR(20) NOT NULL ,
`dateTime` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ,
`driverId` VARCHAR(4) NOT NULL ,
`endDate` DATETIME DEFAULT NULL ,
PRIMARY KEY (`id`) ,
INDEX `DeviceTmeStmp` (`deviceId` ASC, `dateTime` ASC) ,
INDEX `Fk_DA_DriverId` (`driverId` ASC) ,
INDEX `Fk_DA_DeviceId` (`deviceId` ASC) ,
CONSTRAINT `Fk_DA_DeviceId`
FOREIGN KEY (`deviceId` )
REFERENCES `Device` (`id` )
ON DELETE RESTRICT ON UPDATE RESTRICT,
CONSTRAINT `Fk_DA_DriverId`
FOREIGN KEY (`driverId` )
REFERENCES `Driver` (`id` )
ON DELETE RESTRICT ON UPDATE CASCADE)
ENGINE = InnoDB
DEFAULT CHARACTER SET = utf8;
-- -----------------------------------------------------
-- Table `History`
-- -----------------------------------------------------
CREATE TABLE IF NOT EXISTS `History` (
`id` INT(11) UNSIGNED NOT NULL AUTO_INCREMENT ,
`deviceId` VARCHAR(20) NOT NULL ,
`latitude` VARCHAR(20) NULL DEFAULT NULL ,
`longitude` VARCHAR(20) NULL DEFAULT NULL ,
`speed` DECIMAL(9,6) NULL DEFAULT '0.000000' ,
`heading` DECIMAL(12,2) NULL DEFAULT '0.00' ,
`street` VARCHAR(100) NULL DEFAULT NULL ,
`town` VARCHAR(100) NULL DEFAULT NULL ,
`postCode` VARCHAR(20) NULL DEFAULT NULL ,
`durationofstop` DOUBLE NULL DEFAULT '0' ,
`timeStamp` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP ,
`dateTime` TIMESTAMP NOT NULL ,
`stopId` SMALLINT(3) UNSIGNED DEFAULT NULL,
`plotType` ENUM('plot', 'arrived', 'pickup', 'completed', 'delivered', 'panic' ) NOT NULL DEFAULT 'plot' ,
`jobNumber` INT(10) UNSIGNED DEFAULT NULL ,
`driverId` VARCHAR(4) NOT NULL ,
`odometer` INTEGER(11) UNSIGNED DEFAULT NULL,
`vehicleTemperature` FLOAT DEFAULT NULL,
PRIMARY KEY (`id`) ,
INDEX `Fk_H_VehicleId` (`deviceId` ASC) ,
INDEX `Idx_Drv_DateTime` (`deviceId` ASC, `dateTime` ASC) ,
INDEX `Fk_History_Driver` (`driverId` ASC),
CONSTRAINT `Fk_H_VehicleId`
FOREIGN KEY (`deviceId` )
REFERENCES `Device` (`id` )
ON DELETE RESTRICT ON UPDATE RESTRICT,
CONSTRAINT `Fk_History_Driver`
FOREIGN KEY (`driverId` )
REFERENCES `Driver` (`id` )
ON DELETE RESTRICT ON UPDATE CASCADE)
ENGINE = InnoDB
DEFAULT CHARACTER SET = utf8;
-- -----------------------------------------------------
-- Table `Role`
-- -----------------------------------------------------
CREATE TABLE IF NOT EXISTS `Role` (
`id` int(10) unsigned NOT NULL auto_increment,
`roleName` varchar(45) NOT NULL,
`permissions` bigint(20) unsigned NOT NULL,
`deviceFilterId` varchar(255) default NULL,
PRIMARY KEY (`id`),
KEY `FK_Role_deviceFilterId` (`deviceFilterId`),
CONSTRAINT `FK_Role_deviceFilterId` FOREIGN KEY (`deviceFilterId`) REFERENCES `DeviceFilter` (`id`) ON DELETE SET NULL ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- -----------------------------------------------------
-- Table `User`
-- -----------------------------------------------------
CREATE TABLE IF NOT EXISTS `User` (
`id` int(10) unsigned NOT NULL auto_increment,
`userName` varchar(30) NOT NULL,
`passWord` varchar(128) NOT NULL,
`realName` varchar(64) NOT NULL,
`active` tinyint(3) unsigned NOT NULL,
`roleId` int(10) unsigned NOT NULL,
`deviceFilterId` varchar(255) default NULL,
PRIMARY KEY (`id`),
KEY `Fk_R_RoleId` (`roleId`),
KEY `FK_User_deviceFilterId` (`deviceFilterId`),
CONSTRAINT `FK_User_deviceFilterId` FOREIGN KEY (`deviceFilterId`) REFERENCES `DeviceFilter` (`id`) ON DELETE SET NULL ON UPDATE CASCADE,
CONSTRAINT `Fk_R_RoleId` FOREIGN KEY (`roleId`) REFERENCES `Role` (`id`) ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- -----------------------------------------------------
-- Table `UsersCustomers`
-- -----------------------------------------------------
CREATE TABLE IF NOT EXISTS `UsersCustomers` (
`userId` INT(10) UNSIGNED NOT NULL ,
`customerKey` VARCHAR(8) NULL DEFAULT NULL ,
INDEX `Fk_UC_CustomerKey` (`customerKey` ASC) ,
INDEX `idx_userId` (`userId`),
CONSTRAINT `FK_UC_userId`
FOREIGN KEY (`userId`)
REFERENCES `user` (`id`)
ON DELETE CASCADE ON UPDATE CASCADE)
ENGINE = InnoDB
DEFAULT CHARACTER SET = utf8;
/*Table structure for table `settings` */
CREATE TABLE IF NOT EXISTS `Settings` (
`id` int(10) unsigned NOT NULL auto_increment,
`variable_name` varchar(255) NOT NULL,
`value` text NOT NULL,
`display_name` varchar(255) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `VarNameIdx` (`variable_name`)
) ENGINE=InnoDB DEFAULT CHARSET = utf8;
CREATE TABLE IF NOT EXISTS `DeviceFilter` (
`id` varchar(255) NOT NULL,
`driverId` text,
`vehicleTypeId` text,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET = utf8;
SET SQL_MODE=@OLD_SQL_MODE;
SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS;
SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS;
|
-- from csv data to kafka
create table csv( user_name VARCHAR, is_new BOOLEAN, content VARCHAR) with ( 'connector.type' = 'filesystem',
'connector.path' = '/Users/bang/sourcecode/project/flink-sql-etl/data-generator/src/main/resources/user.csv',
'format.type' = 'csv')
CREATE TABLE csvData (
user_name STRING,
is_new BOOLEAN,
content STRING) WITH (
'connector.type' = 'kafka',
'connector.version' = '0.10',
'connector.topic' = 'csv_data',
'connector.properties.zookeeper.connect' = 'localhost:2181',
'connector.properties.bootstrap.servers' = 'localhost:9092',
'connector.properties.group.id' = 'testGroup3',
'connector.startup-mode' = 'earliest-offset',
'format.type' = 'csv')
insert into csvData
select user_name, is_new, content from
csv
-- from kafka to csv
CREATE TABLE csvData (
user_name STRING,
is_new BOOLEAN,
content STRING) WITH (
'connector.type' = 'kafka',
'connector.version' = '0.10',
'connector.topic' = 'csv_data',
'connector.properties.zookeeper.connect' = 'localhost:2181',
'connector.properties.bootstrap.servers' = 'localhost:9092',
'connector.properties.group.id' = 'testGroup4',
'connector.startup-mode' = 'earliest-offset',
'format.type' = 'csv')
create table csvTest( user_name VARCHAR, is_new BOOLEAN, content VARCHAR) with ( 'connector.type' = 'filesystem',
'connector.path' = '/Users/bang/sourcecode/project/flink-sql-etl/data-generator/src/main/resources/test.csv',
'format.type' = 'csv',
'update-mode' = 'append',
'format.fields.0.name' = 'user_name',
'format.fields.0.data-type' = 'STRING',
'format.fields.1.name' = 'is_new',
'format.fields.1.data-type' = 'BOOLEAN',
'format.fields.2.name' = 'content',
'format.fields.2.data-type' = 'STRING')
insert into csvTest select user_name, is_new, content from csvData
|
#
# Table structure for table 'oai_records'
#
# Copyright (c) 2003 Heinrich Stamerjohanns
# stamer@uni-oldenburg.de
#
# $Id: oai_records_mysql.sql,v 1.2 2012-01-05 20:58:01 vf Exp $
#
#
CREATE TABLE oai_records (
serial int(11) DEFAULT '0' NOT NULL auto_increment,
provider varchar(255),
url varchar(255),
enterdate datetime,
oai_identifier varchar(255),
oai_set varchar(255),
datestamp datetime,
deleted enum('false', 'true') NOT NULL,
dc_title varchar(255),
dc_creator text,
dc_subject varchar(255),
dc_description text,
dc_contributor varchar(255),
dc_publisher varchar(255),
dc_date date,
dc_type varchar(255),
dc_format varchar(255),
dc_identifier varchar(255),
dc_source varchar(255),
dc_language varchar(255),
dc_relation varchar(255),
dc_coverage varchar(255),
dc_rights varchar(255),
PRIMARY KEY (serial)
);
|
-- a few starter burgers
INSERT INTO burgers (burger_name, devoured) VALUES ("Chicken Burger", FALSE);
INSERT INTO burgers (burger_name, devoured) VALUES ("Turkey Burger", FALSE);
INSERT INTO burgers (burger_name, devoured) VALUES ("Soy Burger", FALSE); |
-- Autor: Letícia Ferreira da Silva
-- Data: 26/10/2021
-- Atividade 3
/*Crie um banco de dados para um serviço de farmácia de uma empresa, o nome do banco deverá ter
o seguinte nome db_farmacia_do_bem, onde o sistema trabalhará com as informações dos produtos desta empresa.
O sistema trabalhará com 2 tabelas tb_produto e tb_categoria.*/
create database db_farmacia_do_bem;
/*Crie uma tabela de categorias utilizando a habilidade de abstração e determine 3 atributos relevantes
do tb_categoria para se trabalhar com o serviço desta farmacia.*/
create table tb_categoria(
id bigint(40) auto_increment,
preço bigint(40) not null,
nome varchar(40) not null,
primary key (id)
);
/*Crie uma tabela de tb_produto e utilizando a habilidade de abstração e determine 5 atributos relevantes
dos tb_produto para se trabalhar com o serviço deste farmacia
(não esqueça de criar a foreign key de tb_categoria nesta tabela).*/
create table tb_produto(
id_produto bigint(40) auto_increment,
tipo varchar(40) not null,
marca varchar(40) not null,
bebês varchar(40) not null,
fk_produto bigint(40) not null,
primary key(id_produto),
foreign key (fk_produto) references tb_categoria(id)
);
select*from tb_categoria;
select*from tb_produto;
-- Popule esta tabela Categoria com até 5 dados.
select* from tb_categoria;
insert into tb_categoria( preço, nome)
values ( 30, "beleza"),
( 3, "remédio"),
(20, "suplementos"),
(10, "balas"),
(55, " objetos");
-- Popule esta tabela Produto com até 8 dados.
select* from tb_produto;
insert into tb_produto ( tipo, marca, bebês, fk_produto)
values ("dipirona", "dipirona", "dipironaBB", 2),
("shampoo", "dove", "diveBB", 1),
("creme de pele", "la roche", "johnson e johnson", 1),
("para cabelo", "cabelex", "cabelinho", 3),
("para o corpo", "corpex", "fotinho", 3),
("termometro", "termex", "termex", 5),
("medidor de preção", "medidex", "medidinho", 5),
("referscante", "halls", "não possui", 4);
-- Faça um select que retorne os Produtos com o valor maior do que 50 reais.
select * from tb_categoria where preço > 50;
-- Faça um select trazendo os Produtos com valor entre 3 e 60 reais.
select * from tb_categoria where preço between 3 and 60;
-- Faça um select utilizando LIKE buscando os Produtos com a letra B.
select * from tb_produto where tipo like "%b%";
-- Faça um um select com Inner join entre tabela categoria e produto.
select * from tb_categoria inner join tb_produto
on tb_categoria.id = tb_produto.fk_produto;
-- Faça um select onde traga todos os Produtos de uma categoria específica (exemplo todos os produtos que são cosméticos).
select * from tb_categoria where nome like "%beleza%";
|
-- CREAMOS LA TABLA TIPOS DE MOVIMIENTOS DE INVENTARIOS
-- Tabla en la cual se almacenara los tipos de movimientos de inventarios
--DROP TABLE IF EXISTS IN_TMVIN;
CREATE TABLE IN_TPROV(
PROV_PROV SERIAL ,
PROV_NOMBRE VARCHAR(50) NOT NULL ,
PROV_NIT VARCHAR(40) NOT NULL ,
PROV_RAZON_SOCIAL VARCHAR(50) NOT NULL ,
PROV_REPRESENTANTE VARCHAR(50) NOT NULL ,
PROV_TELEFONO VARCHAR(10) NOT NULL ,
PROV_DIRECCION VARCHAR(50) NOT NULL ,
PROV_CELULAR VARCHAR(15) NOT NULL ,
PROV_ESTADO VARCHAR(2) DEFAULT ('A'),
PRIMARY KEY (PROV_PROV)
); |
-- View
SELECT first_name,last_name,email,address,phone
FROM customer
JOIN address ON customer.address_id = address.address_id;
-- How to save above as a view?
CREATE VIEW customer_info AS
SELECT first_name,last_name,email,address,phone
FROM customer
JOIN address ON customer.address_id = address.address_id;
-- -- So from now on it's much less work, makes the join a new view (table)
SELECT *
FROM customer_info;
-- Rename a view
ALTER VIEW customer_info RENAME TO customer_master_list;
SELECT *
FROM customer_master_list;
-- drop view
DROP VIEW IF EXISTS customer_master_list;
|
/*
Navicat MySQL Data Transfer
Source Server : localhost
Source Server Version : 50527
Source Host : localhost:3306
Source Database : law_case
Target Server Type : MYSQL
Target Server Version : 50527
File Encoding : 65001
Date: 2016-07-08 14:18:53
*/
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for `zui_ming`
-- ----------------------------
DROP TABLE IF EXISTS `zui_ming`;
CREATE TABLE `zui_ming` (
`bh` char(6) NOT NULL DEFAULT '' COMMENT '编码',
`mc` varchar(200) DEFAULT NULL COMMENT '名称',
`parent_bh` varchar(10) DEFAULT NULL COMMENT '父级编号,顶级为000000',
PRIMARY KEY (`bh`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='罪名表';
-- ----------------------------
-- Records of zui_ming
-- ----------------------------
INSERT INTO `zui_ming` VALUES ('001000', '背叛国家罪', '001000');
INSERT INTO `zui_ming` VALUES ('001001', '分裂国家罪', '001000');
INSERT INTO `zui_ming` VALUES ('001002', '煽动分裂国家罪', '001000');
INSERT INTO `zui_ming` VALUES ('001003', '武装叛乱、暴乱罪', '001000');
INSERT INTO `zui_ming` VALUES ('001004', '颠覆国家政权罪', '001000');
INSERT INTO `zui_ming` VALUES ('001005', '煽动颠覆国家政权罪', '001000');
INSERT INTO `zui_ming` VALUES ('001006', '资助危害国家安全犯罪活动罪', '001000');
INSERT INTO `zui_ming` VALUES ('001007', '投敌叛变罪', '001000');
INSERT INTO `zui_ming` VALUES ('001008', '叛逃罪', '001000');
INSERT INTO `zui_ming` VALUES ('001009', '间谍罪', '001000');
INSERT INTO `zui_ming` VALUES ('001010', '为境外窃取、刺探、收买、非法提供国家秘密、情报罪', '001000');
INSERT INTO `zui_ming` VALUES ('001011', '资敌罪', '001000');
INSERT INTO `zui_ming` VALUES ('001012', '非法制造、买卖、运输、储存危险物质罪', '001000');
INSERT INTO `zui_ming` VALUES ('001013', '擅自出卖、转让国有档案罪', '001000');
INSERT INTO `zui_ming` VALUES ('002000', '放火罪', '002000');
INSERT INTO `zui_ming` VALUES ('002001', '决水罪', '002000');
INSERT INTO `zui_ming` VALUES ('002002', '爆炸罪', '002000');
INSERT INTO `zui_ming` VALUES ('002003', '投放危险物质罪', '002000');
INSERT INTO `zui_ming` VALUES ('002004', '以危险方法危害公共安全罪', '002000');
INSERT INTO `zui_ming` VALUES ('002005', '失火罪', '002000');
INSERT INTO `zui_ming` VALUES ('002006', '过失决水罪', '002000');
INSERT INTO `zui_ming` VALUES ('002007', '破坏交通工具罪', '002000');
INSERT INTO `zui_ming` VALUES ('002008', '破坏交通设施罪', '002000');
INSERT INTO `zui_ming` VALUES ('002009', '破坏电力设备罪', '002000');
INSERT INTO `zui_ming` VALUES ('002010', '破坏易燃易爆设备罪', '002000');
INSERT INTO `zui_ming` VALUES ('002011', '过失损坏交通工具罪', '002000');
INSERT INTO `zui_ming` VALUES ('002012', '过失爆炸罪', '002000');
INSERT INTO `zui_ming` VALUES ('002013', '过失投放危险物质罪', '002000');
INSERT INTO `zui_ming` VALUES ('002014', '过失以危险方法危害公共安全罪', '002000');
INSERT INTO `zui_ming` VALUES ('002015', '过失损坏交通设施罪', '002000');
INSERT INTO `zui_ming` VALUES ('002016', '过失损坏电力设备罪', '002000');
INSERT INTO `zui_ming` VALUES ('002017', '过失损坏易燃易爆设备罪', '002000');
INSERT INTO `zui_ming` VALUES ('002018', '组织、领导、参加恐怖组织罪', '002000');
INSERT INTO `zui_ming` VALUES ('002019', '资助恐怖活动罪', '002000');
INSERT INTO `zui_ming` VALUES ('002020', '劫持航空器罪', '002000');
INSERT INTO `zui_ming` VALUES ('002021', '劫持船只、汽车罪', '002000');
INSERT INTO `zui_ming` VALUES ('002022', '暴力危及飞行安全罪', '002000');
INSERT INTO `zui_ming` VALUES ('002023', '破坏广播电视设施、公用电信设施罪', '002000');
INSERT INTO `zui_ming` VALUES ('002024', '过失损坏广播电视设施、公用电信设施罪', '002000');
INSERT INTO `zui_ming` VALUES ('002025', '非法制造、买卖、运输、邮寄、储存枪支、弹药、爆炸物罪', '002000');
INSERT INTO `zui_ming` VALUES ('002026', '违规制造、销售枪支罪', '002000');
INSERT INTO `zui_ming` VALUES ('002027', '盗窃、抢夺枪支、弹药、爆炸物、危险物质罪', '002000');
INSERT INTO `zui_ming` VALUES ('002028', '抢劫枪支、弹药、爆炸物、危险物质罪', '002000');
INSERT INTO `zui_ming` VALUES ('002029', '非法持有、私藏枪支、弹药罪', '002000');
INSERT INTO `zui_ming` VALUES ('002030', '非法出租、出借枪支罪', '002000');
INSERT INTO `zui_ming` VALUES ('002031', '丢失枪支不报罪', '002000');
INSERT INTO `zui_ming` VALUES ('002032', '非法携带枪支弹药管制刀具、危险物品危及公共安全罪', '002000');
INSERT INTO `zui_ming` VALUES ('002033', '重大飞行事故罪', '002000');
INSERT INTO `zui_ming` VALUES ('002034', '铁路运营安全事故罪', '002000');
INSERT INTO `zui_ming` VALUES ('002035', '交通肇事罪', '002000');
INSERT INTO `zui_ming` VALUES ('002036', '重大责任事故罪', '002000');
INSERT INTO `zui_ming` VALUES ('002037', '强令违章冒险作业罪', '002000');
INSERT INTO `zui_ming` VALUES ('002038', '重大劳动安全事故罪', '002000');
INSERT INTO `zui_ming` VALUES ('002039', '大型群众性活动重大安全事故罪', '002000');
INSERT INTO `zui_ming` VALUES ('002040', '危险物品肇事罪', '002000');
INSERT INTO `zui_ming` VALUES ('002041', '工程重大安全事故罪', '002000');
INSERT INTO `zui_ming` VALUES ('002042', '教育设施重大安全事故罪', '002000');
INSERT INTO `zui_ming` VALUES ('002043', '消防责任事故罪', '002000');
INSERT INTO `zui_ming` VALUES ('002044', '不报、谎报安全事故罪', '002000');
INSERT INTO `zui_ming` VALUES ('003000', '生产、销售伪劣产品罪', '003000');
INSERT INTO `zui_ming` VALUES ('003001', '生产、销售假药罪', '003000');
INSERT INTO `zui_ming` VALUES ('003002', '生产、销售劣药罪', '003000');
INSERT INTO `zui_ming` VALUES ('003003', '生产、销售不符合卫生标准的食品罪', '003000');
INSERT INTO `zui_ming` VALUES ('003004', '生产、销售有毒、有害食品罪', '003000');
INSERT INTO `zui_ming` VALUES ('003005', '生产、销售不符合标准的医用器材罪', '003000');
INSERT INTO `zui_ming` VALUES ('003006', '生产、销售不符合安全标准的产品罪', '003000');
INSERT INTO `zui_ming` VALUES ('003007', '生产、销售伪劣农药、兽药、化肥、种子罪', '003000');
INSERT INTO `zui_ming` VALUES ('003008', '生产、销售不符合卫生标准的化妆品罪', '003000');
INSERT INTO `zui_ming` VALUES ('004000', '走私武器、弹药罪', '004000');
INSERT INTO `zui_ming` VALUES ('004001', '走私核材料罪', '004000');
INSERT INTO `zui_ming` VALUES ('004002', '走私假币罪', '004000');
INSERT INTO `zui_ming` VALUES ('004003', '走私文物罪', '004000');
INSERT INTO `zui_ming` VALUES ('004004', '走私贵重金属罪', '004000');
INSERT INTO `zui_ming` VALUES ('004005', '走私珍贵动物、珍贵动物制品罪', '004000');
INSERT INTO `zui_ming` VALUES ('004006', '走私珍稀植物、珍稀植物制品罪', '004000');
INSERT INTO `zui_ming` VALUES ('004007', '走私淫秽物品罪', '004000');
INSERT INTO `zui_ming` VALUES ('004008', '走私废物罪', '004000');
INSERT INTO `zui_ming` VALUES ('004009', '走私普通货物、物品罪', '004000');
INSERT INTO `zui_ming` VALUES ('005000', '虚报注册资本罪', '005000');
INSERT INTO `zui_ming` VALUES ('005001', '虚假出资、抽逃出资罪', '005000');
INSERT INTO `zui_ming` VALUES ('005002', '欺诈发行股票、债券罪', '005000');
INSERT INTO `zui_ming` VALUES ('005003', '妨害清算罪', '005000');
INSERT INTO `zui_ming` VALUES ('005004', '为亲友非法牟利罪', '005000');
INSERT INTO `zui_ming` VALUES ('005005', '签订履行合同失职被骗罪', '005000');
INSERT INTO `zui_ming` VALUES ('005006', '违规披露、不披露重要信息罪', '005000');
INSERT INTO `zui_ming` VALUES ('005007', '隐匿、故意销毁会计凭证、会计账簿、财务会计报告罪', '005000');
INSERT INTO `zui_ming` VALUES ('005008', '虚假破产罪', '005000');
INSERT INTO `zui_ming` VALUES ('005009', '非国家工作人员受贿罪', '005000');
INSERT INTO `zui_ming` VALUES ('005010', '对非国家工作人员行贿罪', '005000');
INSERT INTO `zui_ming` VALUES ('005011', '非法经营同类营业罪', '005000');
INSERT INTO `zui_ming` VALUES ('005012', '国有公司、企业、事业单位人员失职罪', '005000');
INSERT INTO `zui_ming` VALUES ('005013', '国有公司、企业、事业单位人员滥用职权罪', '005000');
INSERT INTO `zui_ming` VALUES ('005014', '徇私舞弊低价折股、出售国有资产罪', '005000');
INSERT INTO `zui_ming` VALUES ('005015', '背信损害上市公司利益罪', '005000');
INSERT INTO `zui_ming` VALUES ('006000', '伪造货币罪', '006000');
INSERT INTO `zui_ming` VALUES ('006001', '出售、购买、运输假币罪', '006000');
INSERT INTO `zui_ming` VALUES ('006002', '金融工作人员购买假币、以假币换取货币罪', '006000');
INSERT INTO `zui_ming` VALUES ('006003', '持有、使用假币罪', '006000');
INSERT INTO `zui_ming` VALUES ('006004', '变造货币罪', '006000');
INSERT INTO `zui_ming` VALUES ('006005', '擅自设立金融机构罪', '006000');
INSERT INTO `zui_ming` VALUES ('006006', '伪造、变造、转让金融机构经营许可证、批准文件罪', '006000');
INSERT INTO `zui_ming` VALUES ('006007', '高利转贷罪', '006000');
INSERT INTO `zui_ming` VALUES ('006008', '骗取贷款、票据承兑、金融票证罪', '006000');
INSERT INTO `zui_ming` VALUES ('006009', '非法吸收公众存款罪', '006000');
INSERT INTO `zui_ming` VALUES ('006010', '伪造、变造金融票证罪', '006000');
INSERT INTO `zui_ming` VALUES ('006011', '妨害信用卡管理罪', '006000');
INSERT INTO `zui_ming` VALUES ('006012', '窃取、收买、非法提供信用卡信息罪', '006000');
INSERT INTO `zui_ming` VALUES ('006013', '伪造、变造国家有价证券罪', '006000');
INSERT INTO `zui_ming` VALUES ('006014', '伪造、变造股票、公司、企业债券罪', '006000');
INSERT INTO `zui_ming` VALUES ('006015', '擅自发行股票、公司、企业债券罪', '006000');
INSERT INTO `zui_ming` VALUES ('006016', '内幕交易、泄露内幕信息罪', '006000');
INSERT INTO `zui_ming` VALUES ('006017', '编造并传播证券、期货交易虚假信息罪', '006000');
INSERT INTO `zui_ming` VALUES ('006018', '、诱骗投资者买卖证券、期货合约罪', '006000');
INSERT INTO `zui_ming` VALUES ('006019', '操纵证券、期货市场罪', '006000');
INSERT INTO `zui_ming` VALUES ('006020', '背信运用受托财产罪', '006000');
INSERT INTO `zui_ming` VALUES ('006021', '违法运用资金罪', '006000');
INSERT INTO `zui_ming` VALUES ('006022', '违法发放贷款罪', '006000');
INSERT INTO `zui_ming` VALUES ('006023', '吸收客户资金不入账罪', '006000');
INSERT INTO `zui_ming` VALUES ('006024', '违规出具金融票证罪', '006000');
INSERT INTO `zui_ming` VALUES ('006025', '对违法票据承兑、付款、保证罪', '006000');
INSERT INTO `zui_ming` VALUES ('006026', '逃汇罪', '006000');
INSERT INTO `zui_ming` VALUES ('006027', '洗钱罪', '006000');
INSERT INTO `zui_ming` VALUES ('006028', '骗购外汇罪', '006000');
INSERT INTO `zui_ming` VALUES ('007000', '集资诈骗罪', '007000');
INSERT INTO `zui_ming` VALUES ('007001', '贷款诈骗罪', '007000');
INSERT INTO `zui_ming` VALUES ('007002', '票据诈骗罪', '007000');
INSERT INTO `zui_ming` VALUES ('007003', '金融凭证诈骗罪', '007000');
INSERT INTO `zui_ming` VALUES ('007004', '信用证诈骗罪', '007000');
INSERT INTO `zui_ming` VALUES ('007005', '信用卡诈骗罪', '007000');
INSERT INTO `zui_ming` VALUES ('007006', '有价证券诈骗罪', '007000');
INSERT INTO `zui_ming` VALUES ('007007', '保险诈骗罪', '007000');
INSERT INTO `zui_ming` VALUES ('008000', '偷税罪', '008000');
INSERT INTO `zui_ming` VALUES ('008001', '抗税罪', '008000');
INSERT INTO `zui_ming` VALUES ('008002', '逃避追缴欠税罪', '008000');
INSERT INTO `zui_ming` VALUES ('008003', '骗取出口退税罪', '008000');
INSERT INTO `zui_ming` VALUES ('008004', '虚开增值税发票用于骗取出口退税、抵扣税款发票罪', '008000');
INSERT INTO `zui_ming` VALUES ('008005', '伪造、出售伪造的增值税专用发票罪', '008000');
INSERT INTO `zui_ming` VALUES ('008006', '非法出售增值税专用发票罪', '008000');
INSERT INTO `zui_ming` VALUES ('008007', '非法购买增值税专用发票、购买伪造的增值税专用发票罪', '008000');
INSERT INTO `zui_ming` VALUES ('008008', '非法制造、出售非法制造的用于骗取出口退税、抵扣税款发票罪', '008000');
INSERT INTO `zui_ming` VALUES ('008009', '非法制造、出售非法制造的发票罪', '008000');
INSERT INTO `zui_ming` VALUES ('008010', '非法出售用于骗取出口退税、抵扣税款发票罪', '008000');
INSERT INTO `zui_ming` VALUES ('008011', '非法出售发票罪', '008000');
INSERT INTO `zui_ming` VALUES ('009000', '假冒注册商标罪', '009000');
INSERT INTO `zui_ming` VALUES ('009001', '销售假冒注册商标的商品罪', '009000');
INSERT INTO `zui_ming` VALUES ('009002', '非法制造、销售非法制造的注册商标标识罪', '009000');
INSERT INTO `zui_ming` VALUES ('009003', '假冒专利罪', '009000');
INSERT INTO `zui_ming` VALUES ('009004', '销售侵权复制品罪', '009000');
INSERT INTO `zui_ming` VALUES ('009005', '侵犯商业秘密罪', '009000');
INSERT INTO `zui_ming` VALUES ('010000', '损害商业信誉、商品声誉罪', '010000');
INSERT INTO `zui_ming` VALUES ('010001', '虚假广告罪', '010000');
INSERT INTO `zui_ming` VALUES ('010002', '串通投标罪', '010000');
INSERT INTO `zui_ming` VALUES ('010003', '合同诈骗罪', '010000');
INSERT INTO `zui_ming` VALUES ('010004', '非法经营罪', '010000');
INSERT INTO `zui_ming` VALUES ('010005', '强迫交易罪', '010000');
INSERT INTO `zui_ming` VALUES ('010006', '伪造、倒卖伪造的有价票证罪', '010000');
INSERT INTO `zui_ming` VALUES ('010007', '倒卖车票、船票罪', '010000');
INSERT INTO `zui_ming` VALUES ('010008', '非法转让、倒卖土地使用权罪', '010000');
INSERT INTO `zui_ming` VALUES ('010009', '提供虚假证明文件罪', '010000');
INSERT INTO `zui_ming` VALUES ('010010', '出具证明文件重大失实罪', '010000');
INSERT INTO `zui_ming` VALUES ('010011', '逃避商检罪', '010000');
INSERT INTO `zui_ming` VALUES ('011000', '故意杀人罪', '011000');
INSERT INTO `zui_ming` VALUES ('011001', '暴力取证罪', '011000');
INSERT INTO `zui_ming` VALUES ('011002', '侵犯通信自由罪', '011000');
INSERT INTO `zui_ming` VALUES ('011003', '过失致人死亡罪', '011000');
INSERT INTO `zui_ming` VALUES ('011004', '故意伤害罪', '011000');
INSERT INTO `zui_ming` VALUES ('011005', '过失致人重伤罪', '011000');
INSERT INTO `zui_ming` VALUES ('011006', '强奸罪', '011000');
INSERT INTO `zui_ming` VALUES ('011007', '强制猥亵、侮辱妇女罪', '011000');
INSERT INTO `zui_ming` VALUES ('011008', '猥亵儿童罪', '011000');
INSERT INTO `zui_ming` VALUES ('011009', '非法拘禁罪', '011000');
INSERT INTO `zui_ming` VALUES ('011010', '绑架罪', '011000');
INSERT INTO `zui_ming` VALUES ('011011', '拐卖妇女、儿童罪', '011000');
INSERT INTO `zui_ming` VALUES ('011012', '收买被拐卖的妇女、儿童罪', '011000');
INSERT INTO `zui_ming` VALUES ('011013', '聚众阻碍解救被收买的妇女、儿童罪', '011000');
INSERT INTO `zui_ming` VALUES ('011014', '诬告陷害罪', '011000');
INSERT INTO `zui_ming` VALUES ('011015', '强迫职工劳动罪', '011000');
INSERT INTO `zui_ming` VALUES ('011016', '雇用童工从事危重劳动罪', '011000');
INSERT INTO `zui_ming` VALUES ('011017', '非法搜查罪', '011000');
INSERT INTO `zui_ming` VALUES ('011018', '非法侵入住宅罪', '011000');
INSERT INTO `zui_ming` VALUES ('011019', '侮辱罪', '011000');
INSERT INTO `zui_ming` VALUES ('011020', '诽谤罪', '011000');
INSERT INTO `zui_ming` VALUES ('011021', '刑讯逼供罪', '011000');
INSERT INTO `zui_ming` VALUES ('011022', '虐待被监管人罪', '011000');
INSERT INTO `zui_ming` VALUES ('011023', '煽动民族仇恨、民族歧视罪', '011000');
INSERT INTO `zui_ming` VALUES ('011024', '出版歧视、侮辱少数民族作品罪', '011000');
INSERT INTO `zui_ming` VALUES ('011025', '非法剥夺公民宗教信仰自由罪', '011000');
INSERT INTO `zui_ming` VALUES ('011026', '侵犯少数民族风俗习惯罪', '011000');
INSERT INTO `zui_ming` VALUES ('011027', '私自开拆、隐匿、毁弃邮件、电报罪', '011000');
INSERT INTO `zui_ming` VALUES ('011028', '报复陷害罪', '011000');
INSERT INTO `zui_ming` VALUES ('011029', '打击报复会计、统计人员罪', '011000');
INSERT INTO `zui_ming` VALUES ('011030', '破坏选举罪', '011000');
INSERT INTO `zui_ming` VALUES ('011031', '暴力干涉婚姻自由罪', '011000');
INSERT INTO `zui_ming` VALUES ('011032', '重婚罪', '011000');
INSERT INTO `zui_ming` VALUES ('011033', '破坏军婚罪', '011000');
INSERT INTO `zui_ming` VALUES ('011034', '虐待罪', '011000');
INSERT INTO `zui_ming` VALUES ('011035', '遗弃罪', '011000');
INSERT INTO `zui_ming` VALUES ('011036', '拐骗儿童罪', '011000');
INSERT INTO `zui_ming` VALUES ('011037', '组织残疾人、儿童乞讨罪', '011000');
INSERT INTO `zui_ming` VALUES ('012000', '抢劫罪', '012000');
INSERT INTO `zui_ming` VALUES ('012001', '盗窃罪', '012000');
INSERT INTO `zui_ming` VALUES ('012002', '诈骗罪', '012000');
INSERT INTO `zui_ming` VALUES ('012003', '抢夺罪', '012000');
INSERT INTO `zui_ming` VALUES ('012004', '聚众哄抢罪', '012000');
INSERT INTO `zui_ming` VALUES ('012005', '侵占罪', '012000');
INSERT INTO `zui_ming` VALUES ('012006', '职务侵占罪', '012000');
INSERT INTO `zui_ming` VALUES ('012007', '挪用资金罪', '012000');
INSERT INTO `zui_ming` VALUES ('012008', '挪用特定款物罪', '012000');
INSERT INTO `zui_ming` VALUES ('012009', '敲诈勒索罪', '012000');
INSERT INTO `zui_ming` VALUES ('012010', '故意毁坏财物罪', '012000');
INSERT INTO `zui_ming` VALUES ('012011', '破坏生产经营罪', '012000');
INSERT INTO `zui_ming` VALUES ('013000', '妨害公务罪', '013000');
INSERT INTO `zui_ming` VALUES ('013001', '煽动暴力抗拒法律实施罪', '013000');
INSERT INTO `zui_ming` VALUES ('013002', '招摇撞骗罪', '013000');
INSERT INTO `zui_ming` VALUES ('013003', '伪造、变造、买卖国家机关公文、证件、印章罪', '013000');
INSERT INTO `zui_ming` VALUES ('013004', '盗窃、抢夺、毁灭国家机关公文、证件、印章罪', '013000');
INSERT INTO `zui_ming` VALUES ('013005', '伪造公司、企业、事业单位、人民团体印章罪', '013000');
INSERT INTO `zui_ming` VALUES ('013006', '伪造、变造居民身份证罪', '013000');
INSERT INTO `zui_ming` VALUES ('013007', '非法生产、买卖警用装备罪', '013000');
INSERT INTO `zui_ming` VALUES ('013008', '非法获取国家秘密罪', '013000');
INSERT INTO `zui_ming` VALUES ('013009', '非法持有国家绝密、机密文件、资料、物品罪', '013000');
INSERT INTO `zui_ming` VALUES ('013010', '非法生产、销售间谍专用器材罪', '013000');
INSERT INTO `zui_ming` VALUES ('013011', '非法使用窃听、窃照专用器材罪', '013000');
INSERT INTO `zui_ming` VALUES ('013012', '非法侵入计算机信息系统罪', '013000');
INSERT INTO `zui_ming` VALUES ('013013', '破坏计算机信息系统罪', '013000');
INSERT INTO `zui_ming` VALUES ('013014', '扰乱无线电通讯管理秩序罪', '013000');
INSERT INTO `zui_ming` VALUES ('013015', '聚众扰乱社会秩序罪', '013000');
INSERT INTO `zui_ming` VALUES ('013016', '聚众冲击国家机关罪', '013000');
INSERT INTO `zui_ming` VALUES ('013017', '聚众扰乱公共场所秩序、交通秩序罪', '013000');
INSERT INTO `zui_ming` VALUES ('013018', '投放虚假危险物质罪', '013000');
INSERT INTO `zui_ming` VALUES ('013019', '编造、故意传播虚假恐怖信息罪', '013000');
INSERT INTO `zui_ming` VALUES ('013020', '聚众斗殴罪', '013000');
INSERT INTO `zui_ming` VALUES ('013021', '寻衅滋事罪', '013000');
INSERT INTO `zui_ming` VALUES ('013022', '组织、领导、参加黑社会性质组织罪', '013000');
INSERT INTO `zui_ming` VALUES ('013023', '入境发展黑社会组织罪', '013000');
INSERT INTO `zui_ming` VALUES ('013024', '包庇、纵容黑社会性质组织罪', '013000');
INSERT INTO `zui_ming` VALUES ('013025', '传授犯罪方法罪', '013000');
INSERT INTO `zui_ming` VALUES ('013026', '非法集会、游行、示威罪', '013000');
INSERT INTO `zui_ming` VALUES ('013027', '非法携带武器、管制刀具、爆炸物参加集会、游行、示威罪', '013000');
INSERT INTO `zui_ming` VALUES ('013028', '破坏集会、游行、示威罪', '013000');
INSERT INTO `zui_ming` VALUES ('013029', '侮辱国旗、国徽罪', '013000');
INSERT INTO `zui_ming` VALUES ('013030', '组织、利用会道门、邪教组织、利用迷信破坏法律实施罪', '013000');
INSERT INTO `zui_ming` VALUES ('013031', '组织、利用会道门、邪教组织、利用迷信致人死亡罪', '013000');
INSERT INTO `zui_ming` VALUES ('013032', '聚众淫乱罪', '013000');
INSERT INTO `zui_ming` VALUES ('013033', '引诱未成年人聚众淫乱罪', '013000');
INSERT INTO `zui_ming` VALUES ('013034', '盗窃、侮辱尸体罪', '013000');
INSERT INTO `zui_ming` VALUES ('013035', '赌博罪', '013000');
INSERT INTO `zui_ming` VALUES ('013036', '开设赌场罪', '013000');
INSERT INTO `zui_ming` VALUES ('013037', '故意延误投递邮件罪', '013000');
INSERT INTO `zui_ming` VALUES ('014000', '聚众持械劫狱罪', '014000');
INSERT INTO `zui_ming` VALUES ('014001', '暴动越狱罪', '014000');
INSERT INTO `zui_ming` VALUES ('014002', '组织越狱罪', '014000');
INSERT INTO `zui_ming` VALUES ('014003', '劫夺被押解人员罪', '014000');
INSERT INTO `zui_ming` VALUES ('014004', '脱逃罪', '014000');
INSERT INTO `zui_ming` VALUES ('014005', '破坏监管秩序罪', '014000');
INSERT INTO `zui_ming` VALUES ('014006', '非法处置查封、扣押、冻结的财产罪', '014000');
INSERT INTO `zui_ming` VALUES ('014007', '拒不执行判决、裁定罪', '014000');
INSERT INTO `zui_ming` VALUES ('014008', '掩饰、隐瞒犯罪所得、犯罪所得收益罪', '014000');
INSERT INTO `zui_ming` VALUES ('014009', '拒绝提供间谍犯罪证据罪', '014000');
INSERT INTO `zui_ming` VALUES ('014010', '伪证罪', '014000');
INSERT INTO `zui_ming` VALUES ('014011', '辩护人诉讼代理人毁灭证据伪造证据妨害作证罪', '014000');
INSERT INTO `zui_ming` VALUES ('014012', '妨害作证罪', '014000');
INSERT INTO `zui_ming` VALUES ('014013', '帮助毁灭、伪造证据罪', '014000');
INSERT INTO `zui_ming` VALUES ('014014', '打击报复证人罪', '014000');
INSERT INTO `zui_ming` VALUES ('014015', '扰乱法庭秩序罪', '014000');
INSERT INTO `zui_ming` VALUES ('014016', '窝藏、包庇罪', '014000');
INSERT INTO `zui_ming` VALUES ('015000', '破坏永久性测量标志罪', '015000');
INSERT INTO `zui_ming` VALUES ('015001', '破坏界碑、界桩罪', '015000');
INSERT INTO `zui_ming` VALUES ('015002', '偷越国(边)境罪', '015000');
INSERT INTO `zui_ming` VALUES ('015003', '运送他人偷越国(边)境罪', '015000');
INSERT INTO `zui_ming` VALUES ('015004', '出售出入境证件罪', '015000');
INSERT INTO `zui_ming` VALUES ('015005', '提供伪造、变造的出入境证件罪', '015000');
INSERT INTO `zui_ming` VALUES ('015006', '骗取出境证件罪', '015000');
INSERT INTO `zui_ming` VALUES ('015007', '组织他人偷越国(边)境罪', '015000');
INSERT INTO `zui_ming` VALUES ('016000', '妨害传染病防治罪', '016000');
INSERT INTO `zui_ming` VALUES ('016001', '传染病菌种、毒种扩散罪', '016000');
INSERT INTO `zui_ming` VALUES ('016002', '妨害国境卫生检疫罪', '016000');
INSERT INTO `zui_ming` VALUES ('016003', '非法组织卖血罪', '016000');
INSERT INTO `zui_ming` VALUES ('016004', '强迫卖血罪', '016000');
INSERT INTO `zui_ming` VALUES ('016005', '非法采集、供应血液、制作、供应血液制品罪', '016000');
INSERT INTO `zui_ming` VALUES ('016006', '采集、供应血液、制作、供应血液制品事故罪', '016000');
INSERT INTO `zui_ming` VALUES ('016007', '医疗事故罪', '016000');
INSERT INTO `zui_ming` VALUES ('016008', '非法行医罪', '016000');
INSERT INTO `zui_ming` VALUES ('016009', '非法进行节育手术罪', '016000');
INSERT INTO `zui_ming` VALUES ('016010', '逃避动植物检疫罪', '016000');
INSERT INTO `zui_ming` VALUES ('017000', '重大环境污染事故罪', '017000');
INSERT INTO `zui_ming` VALUES ('017001', '非法处置进口的固体废物罪', '017000');
INSERT INTO `zui_ming` VALUES ('017002', '擅自进口固体废物罪', '017000');
INSERT INTO `zui_ming` VALUES ('017003', '非法捕捞水产品罪', '017000');
INSERT INTO `zui_ming` VALUES ('017004', '非法猎捕、杀害珍贵、濒危野生动物罪', '017000');
INSERT INTO `zui_ming` VALUES ('017005', '非法收购、运输、出售珍贵、濒危野生动物及其制品罪', '017000');
INSERT INTO `zui_ming` VALUES ('017006', '非法狩猎罪', '017000');
INSERT INTO `zui_ming` VALUES ('017007', '非法占用农用地罪', '017000');
INSERT INTO `zui_ming` VALUES ('017008', '非法采矿罪', '017000');
INSERT INTO `zui_ming` VALUES ('017009', '破坏性采矿罪', '017000');
INSERT INTO `zui_ming` VALUES ('017010', '非法采伐、毁坏国家重点保护植物罪', '017000');
INSERT INTO `zui_ming` VALUES ('017011', '非法收购运输加工出售国家重点保护植物及其制品罪', '017000');
INSERT INTO `zui_ming` VALUES ('017012', '盗伐林木罪', '017000');
INSERT INTO `zui_ming` VALUES ('017013', '滥伐林木罪', '017000');
INSERT INTO `zui_ming` VALUES ('017014', '非法收购、运输盗伐、滥伐的林木罪', '017000');
INSERT INTO `zui_ming` VALUES ('018000', '走私、贩卖、运输、制造毒品罪', '018000');
INSERT INTO `zui_ming` VALUES ('018001', '非法持有毒品罪', '018000');
INSERT INTO `zui_ming` VALUES ('018002', '包庇毒品犯罪分子罪', '018000');
INSERT INTO `zui_ming` VALUES ('018003', '窝藏、转移、隐瞒毒品、毒赃罪', '018000');
INSERT INTO `zui_ming` VALUES ('018004', '走私制毒物品罪', '018000');
INSERT INTO `zui_ming` VALUES ('018005', '非法买卖制毒物品罪', '018000');
INSERT INTO `zui_ming` VALUES ('018006', '非法种植毒品原植物罪', '018000');
INSERT INTO `zui_ming` VALUES ('018007', '非法买卖、运输、携带、持有毒品原植物种子、幼苗罪', '018000');
INSERT INTO `zui_ming` VALUES ('018008', '引诱、教唆、欺骗他人吸毒罪', '018000');
INSERT INTO `zui_ming` VALUES ('018009', '强迫他人吸毒罪', '018000');
INSERT INTO `zui_ming` VALUES ('018010', '容留他人吸毒罪', '018000');
INSERT INTO `zui_ming` VALUES ('018011', '非法提供麻醉药品、精神药品罪', '018000');
INSERT INTO `zui_ming` VALUES ('019000', '组织卖淫罪', '019000');
INSERT INTO `zui_ming` VALUES ('019001', '强迫卖淫罪', '019000');
INSERT INTO `zui_ming` VALUES ('019002', '协助组织卖淫罪', '019000');
INSERT INTO `zui_ming` VALUES ('019003', '引诱、容留、介绍卖淫罪', '019000');
INSERT INTO `zui_ming` VALUES ('019004', '引诱幼女卖淫罪', '019000');
INSERT INTO `zui_ming` VALUES ('019005', '传播性病罪', '019000');
INSERT INTO `zui_ming` VALUES ('019006', '嫖宿幼女罪', '019000');
INSERT INTO `zui_ming` VALUES ('020000', '制作、复制、出版、贩卖、传播淫秽物品牟利罪', '020000');
INSERT INTO `zui_ming` VALUES ('020001', '为他人提供书号出版淫秽书刊罪', '020000');
INSERT INTO `zui_ming` VALUES ('020002', '传播淫秽物品罪', '020000');
INSERT INTO `zui_ming` VALUES ('020003', '组织播放淫秽音像制品罪', '020000');
INSERT INTO `zui_ming` VALUES ('020004', '组织淫秽表演罪', '020000');
INSERT INTO `zui_ming` VALUES ('021000', '阻碍军人执行职务罪', '021000');
INSERT INTO `zui_ming` VALUES ('021001', '阻碍军事行动罪', '021000');
INSERT INTO `zui_ming` VALUES ('021002', '破坏武器装备、军事设施、军事通信罪', '021000');
INSERT INTO `zui_ming` VALUES ('021003', '过失损坏武器装备、军事设施、军事通信罪', '021000');
INSERT INTO `zui_ming` VALUES ('021004', '故意提供不合格武器装备、军事设施罪', '021000');
INSERT INTO `zui_ming` VALUES ('021005', '过失提供不合格武器装备、军事设施罪', '021000');
INSERT INTO `zui_ming` VALUES ('021006', '聚众冲击军事禁区罪', '021000');
INSERT INTO `zui_ming` VALUES ('021007', '聚众扰乱军事管理区秩序罪', '021000');
INSERT INTO `zui_ming` VALUES ('021008', '冒充军人招摇撞骗罪', '021000');
INSERT INTO `zui_ming` VALUES ('021009', '煽动军人逃离部队罪', '021000');
INSERT INTO `zui_ming` VALUES ('021010', '雇用逃离部队军人罪', '021000');
INSERT INTO `zui_ming` VALUES ('021011', '接送不合格兵员罪', '021000');
INSERT INTO `zui_ming` VALUES ('021012', '伪造、变造、买卖武装部队公文、证件、印章罪', '021000');
INSERT INTO `zui_ming` VALUES ('021013', '盗窃、抢夺武装部队公文、证件、印章罪', '021000');
INSERT INTO `zui_ming` VALUES ('021014', '非法生产、买卖军用标志罪', '021000');
INSERT INTO `zui_ming` VALUES ('021015', '战时拒绝、逃避征召、军事训练罪', '021000');
INSERT INTO `zui_ming` VALUES ('021016', '战时拒绝、逃避服役罪', '021000');
INSERT INTO `zui_ming` VALUES ('021017', '战时故意提供虚假敌情罪', '021000');
INSERT INTO `zui_ming` VALUES ('021018', '战时造谣扰乱军心罪', '021000');
INSERT INTO `zui_ming` VALUES ('021019', '战时窝藏逃离部队军人罪', '021000');
INSERT INTO `zui_ming` VALUES ('021020', '战时拒绝、故意延误军事订货罪', '021000');
INSERT INTO `zui_ming` VALUES ('021021', '战时拒绝军事征用罪', '021000');
INSERT INTO `zui_ming` VALUES ('022000', '贪污罪', '022000');
INSERT INTO `zui_ming` VALUES ('022001', '挪用公款罪', '022000');
INSERT INTO `zui_ming` VALUES ('022002', '受贿罪', '022000');
INSERT INTO `zui_ming` VALUES ('022003', '单位受贿罪', '022000');
INSERT INTO `zui_ming` VALUES ('022004', '行贿罪', '022000');
INSERT INTO `zui_ming` VALUES ('022005', '对单位行贿罪', '022000');
INSERT INTO `zui_ming` VALUES ('022006', '介绍贿赂罪', '022000');
INSERT INTO `zui_ming` VALUES ('022007', '单位行贿罪', '022000');
INSERT INTO `zui_ming` VALUES ('022008', '巨额财产来源不明罪', '022000');
INSERT INTO `zui_ming` VALUES ('022009', '隐瞒境外存款罪', '022000');
INSERT INTO `zui_ming` VALUES ('022010', '私分国有资产罪', '022000');
INSERT INTO `zui_ming` VALUES ('022011', '私分罚没财物罪', '022000');
INSERT INTO `zui_ming` VALUES ('022012', '利用影响力受贿罪', '022000');
INSERT INTO `zui_ming` VALUES ('023000', '故意泄露国家秘密罪', '023000');
INSERT INTO `zui_ming` VALUES ('023001', '滥用职权罪', '023000');
INSERT INTO `zui_ming` VALUES ('023002', '玩忽职守罪', '023000');
INSERT INTO `zui_ming` VALUES ('023003', '过失泄露国家秘密罪', '023000');
INSERT INTO `zui_ming` VALUES ('023004', '徇私枉法罪', '023000');
INSERT INTO `zui_ming` VALUES ('023005', '民事、行政枉法裁判罪', '023000');
INSERT INTO `zui_ming` VALUES ('023006', '执行判决、裁定失职罪', '023000');
INSERT INTO `zui_ming` VALUES ('023007', '执行判决、裁定滥用职权罪', '023000');
INSERT INTO `zui_ming` VALUES ('023008', '枉法仲裁罪', '023000');
INSERT INTO `zui_ming` VALUES ('023009', '私放在押人员罪', '023000');
INSERT INTO `zui_ming` VALUES ('023010', '失职致使在押人员脱逃罪', '023000');
INSERT INTO `zui_ming` VALUES ('023011', '徇私舞弊减刑、假释、暂予监外执行罪', '023000');
INSERT INTO `zui_ming` VALUES ('023012', '徇私舞弊不移交刑事案件罪', '023000');
INSERT INTO `zui_ming` VALUES ('023013', '滥用管理公司、证券职权罪', '023000');
INSERT INTO `zui_ming` VALUES ('023014', '徇私舞弊不征、少征税款罪', '023000');
INSERT INTO `zui_ming` VALUES ('023015', '徇私舞弊发售发票、抵扣税款、出口退税罪', '023000');
INSERT INTO `zui_ming` VALUES ('023016', '违法提供出口退税凭证罪', '023000');
INSERT INTO `zui_ming` VALUES ('023017', '国家机关工作人员签订、履行合同失职被骗罪', '023000');
INSERT INTO `zui_ming` VALUES ('023018', '违法发放林木采伐许可证罪', '023000');
INSERT INTO `zui_ming` VALUES ('023019', '环境监管失职罪', '023000');
INSERT INTO `zui_ming` VALUES ('023020', '传染病防治失职罪', '023000');
INSERT INTO `zui_ming` VALUES ('023021', '非法批准征用、占用土地罪', '023000');
INSERT INTO `zui_ming` VALUES ('023022', '非法低价出让国有土地使用权罪', '023000');
INSERT INTO `zui_ming` VALUES ('023023', '放纵走私罪', '023000');
INSERT INTO `zui_ming` VALUES ('023024', '商检徇私舞弊罪', '023000');
INSERT INTO `zui_ming` VALUES ('023025', '商检失职罪', '023000');
INSERT INTO `zui_ming` VALUES ('023026', '动植物检疫徇私舞弊罪', '023000');
INSERT INTO `zui_ming` VALUES ('023027', '动植物检疫失职罪', '023000');
INSERT INTO `zui_ming` VALUES ('023028', '放纵制售伪劣商品犯罪行为罪', '023000');
INSERT INTO `zui_ming` VALUES ('023029', '办理偷越国(边)境人员出入境证件罪', '023000');
INSERT INTO `zui_ming` VALUES ('023030', '放行偷越国(边)境人员罪', '023000');
INSERT INTO `zui_ming` VALUES ('023031', '不解救被拐卖、绑架妇女、儿童罪', '023000');
INSERT INTO `zui_ming` VALUES ('023032', '阻碍解救被拐卖、绑架妇女、儿童罪', '023000');
INSERT INTO `zui_ming` VALUES ('023033', '帮助犯罪分子逃避处罚罪', '023000');
INSERT INTO `zui_ming` VALUES ('023034', '招收公务员、学生徇私舞弊罪', '023000');
INSERT INTO `zui_ming` VALUES ('023035', '失职造成珍贵文物损毁、流失罪', '023000');
INSERT INTO `zui_ming` VALUES ('024000', '虐待俘虏罪', '024000');
INSERT INTO `zui_ming` VALUES ('024001', '私放俘虏罪', '024000');
INSERT INTO `zui_ming` VALUES ('024002', '战时残害居民、掠夺居民财物罪', '024000');
INSERT INTO `zui_ming` VALUES ('024003', '战时拒不救治伤病军人罪', '024000');
INSERT INTO `zui_ming` VALUES ('024004', '遗弃伤病军人罪', '024000');
INSERT INTO `zui_ming` VALUES ('024005', '虐待部属罪', '024000');
INSERT INTO `zui_ming` VALUES ('024006', '擅自出卖、转让军队房地产罪', '024000');
INSERT INTO `zui_ming` VALUES ('024007', '遗失武器装备罪', '024000');
INSERT INTO `zui_ming` VALUES ('024008', '遗弃武器装备罪', '024000');
INSERT INTO `zui_ming` VALUES ('024009', '非法出卖、转让武器装备罪', '024000');
INSERT INTO `zui_ming` VALUES ('024010', '盗窃、抢夺武器装备、军用物资罪', '024000');
INSERT INTO `zui_ming` VALUES ('024011', '擅自改变武器装备编配用途罪', '024000');
INSERT INTO `zui_ming` VALUES ('024012', '武器装备肇事罪', '024000');
INSERT INTO `zui_ming` VALUES ('024013', '逃离部队罪', '024000');
INSERT INTO `zui_ming` VALUES ('024014', '战时自伤罪', '024000');
INSERT INTO `zui_ming` VALUES ('024015', '故意泄露军事秘密罪', '024000');
INSERT INTO `zui_ming` VALUES ('024016', '战时造谣惑众罪', '024000');
INSERT INTO `zui_ming` VALUES ('024017', '过失泄露军事秘密罪', '024000');
INSERT INTO `zui_ming` VALUES ('024018', '为境外窃取、刺探、收买、非法提供军事秘密罪', '024000');
INSERT INTO `zui_ming` VALUES ('024019', '非法获取军事秘密罪', '024000');
INSERT INTO `zui_ming` VALUES ('024020', '军人叛逃罪', '024000');
INSERT INTO `zui_ming` VALUES ('024021', '拒不救援友邻部队罪', '024000');
INSERT INTO `zui_ming` VALUES ('024022', '违令作战消极罪', '024000');
INSERT INTO `zui_ming` VALUES ('024023', '指使部属违反职责罪', '024000');
INSERT INTO `zui_ming` VALUES ('024024', '阻碍执行军事职务罪', '024000');
INSERT INTO `zui_ming` VALUES ('024025', '擅离、玩忽军事职守罪', '024000');
INSERT INTO `zui_ming` VALUES ('024026', '战时临阵脱逃罪', '024000');
INSERT INTO `zui_ming` VALUES ('024027', '投降罪', '024000');
INSERT INTO `zui_ming` VALUES ('024028', '拒传、假传军令罪', '024000');
INSERT INTO `zui_ming` VALUES ('024029', '隐瞒、谎报军情罪', '024000');
INSERT INTO `zui_ming` VALUES ('024030', '战时违抗命令罪', '024000');
INSERT INTO `zui_ming` VALUES ('025000', '故意损毁文物罪', '025000');
INSERT INTO `zui_ming` VALUES ('025001', '故意损毁名胜古迹罪', '025000');
INSERT INTO `zui_ming` VALUES ('025002', '过失损毁文物罪', '025000');
INSERT INTO `zui_ming` VALUES ('025003', '非法向外国人出售、赠送珍贵文物罪', '025000');
INSERT INTO `zui_ming` VALUES ('025004', '倒卖文物罪', '025000');
INSERT INTO `zui_ming` VALUES ('025005', '非法出售、私赠文物藏品罪', '025000');
INSERT INTO `zui_ming` VALUES ('025006', '盗掘古文化遗址、古墓葬罪', '025000');
INSERT INTO `zui_ming` VALUES ('025007', '盗掘古人类化石、古脊椎动物化石罪', '025000');
INSERT INTO `zui_ming` VALUES ('025008', '抢夺、窃取国有档案罪', '025000');
|
-- phpMyAdmin SQL Dump
-- version 4.9.3
-- https://www.phpmyadmin.net/
--
-- Hôte : localhost:8889
-- Généré le : lun. 13 avr. 2020 à 13:55
-- Version du serveur : 5.7.26
-- Version de PHP : 7.4.1
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
--
-- Base de données : `laravel`
--
-- --------------------------------------------------------
--
-- Structure de la table `failed_jobs`
--
CREATE TABLE `failed_jobs` (
`id` bigint(20) UNSIGNED NOT NULL,
`connection` text NOT NULL,
`queue` text NOT NULL,
`payload` longtext NOT NULL,
`exception` longtext NOT NULL,
`failed_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- Structure de la table `password_resets`
--
CREATE TABLE `password_resets` (
`email` varchar(255) NOT NULL,
`token` varchar(255) NOT NULL,
`created_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- Structure de la table `rates`
--
CREATE TABLE `rates` (
`id` bigint(20) UNSIGNED NOT NULL,
`title` varchar(255) NOT NULL,
`artist` varchar(255) NOT NULL,
`rate` int(11) NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Déchargement des données de la table `rates`
--
INSERT INTO `rates` (`id`, `title`, `artist`, `rate`, `created_at`, `updated_at`) VALUES
(30, 'Happy', 'Pharell William', 10, '2020-04-03 10:39:14', '2020-04-03 10:39:14');
-- --------------------------------------------------------
--
-- Structure de la table `users`
--
CREATE TABLE `users` (
`id` bigint(20) UNSIGNED NOT NULL,
`name` varchar(255) NOT NULL,
`email` varchar(255) NOT NULL,
`email_verified_at` timestamp NULL DEFAULT NULL,
`password` varchar(255) NOT NULL,
`remember_token` varchar(100) DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Index pour les tables déchargées
--
--
-- Index pour la table `failed_jobs`
--
ALTER TABLE `failed_jobs`
ADD PRIMARY KEY (`id`);
--
-- Index pour la table `password_resets`
--
ALTER TABLE `password_resets`
ADD KEY `password_resets_email_index` (`email`);
--
-- Index pour la table `rates`
--
ALTER TABLE `rates`
ADD PRIMARY KEY (`id`);
--
-- Index pour la table `users`
--
ALTER TABLE `users`
ADD PRIMARY KEY (`id`),
ADD UNIQUE KEY `users_email_unique` (`email`);
--
-- AUTO_INCREMENT pour les tables déchargées
--
--
-- AUTO_INCREMENT pour la table `failed_jobs`
--
ALTER TABLE `failed_jobs`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT pour la table `rates`
--
ALTER TABLE `rates`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=31;
--
-- AUTO_INCREMENT pour la table `users`
--
ALTER TABLE `users`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;
/*!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 */;
|
/**
* SQL for searching shisetsu information
* @author TuyenVHA
* @version $Id: ShisetsuSearchService_getShisetsuList_Sel_01.sql 29051 2014-09-29 07:42:01Z p__toen $
*/
SELECT
SHISETSU.SHISETSU_CD
,SHISETSU.SHISETSU_TANTO_NAME
,SHISETSU.SHISETSU_TANTO_DELETE_FLG
,SHISETSU.SHISETSU_NAME
,SHISETSU.SHISETSU_NAME_KISS
,SHISETSU.SHISETSU_JUDGE_KBN
,SHISETSU.SHISETSU_KISS_UPDATE_YMD
,SHISETSU.SHISETSU_LAST_UPDATE_DATE
,SHISETSU.SHISETSU_LAST_KEISAI_DATE
,SHISETSU.WARN_FLG
,SHISETSU.CAUTION_FLG
,SHISETSU.BATCH_WARN_FLG
,SHISETSU.SHISETSU_KEISAI_STS_KBN
FROM
(SELECT
BSK.SHISETSU_CD
,BSK.SHISETSU_TANTO_NAME
,BSK.SHISETSU_TANTO_DELETE_FLG
,BSK.SHISETSU_NAME
,BSK.SHISETSU_NAME_KISS
,BSK.SHISETSU_JUDGE_KBN
,BSK.SHISETSU_KISS_UPDATE_YMD
,BSK.SHISETSU_LAST_UPDATE_DATE
,BSK.SHISETSU_LAST_KEISAI_DATE
,CASE
WHEN EXISTS (SELECT 'X' FROM BY_SHISETSU_NYUKO_ERROR BSNE1
WHERE
BSNE1.WARN_FLG = '1'
AND BSNE1.SHISETSU_CD = BSK.SHISETSU_CD) THEN '1'
WHEN EXISTS (SELECT 'X' FROM BY_SHISETSU_NYUKO_ERROR BSNE2
WHERE
BSNE2.WARN_FLG = '0'
AND BSNE2.SHISETSU_CD = BSK.SHISETSU_CD) THEN '0'
ELSE NULL
END AS WARN_FLG
,CASE
WHEN EXISTS (SELECT 'X' FROM BY_SHISETSU_NYUKO_ERROR BSNE3
WHERE
BSNE3.CAUTION_FLG = '1'
AND BSNE3.SHISETSU_CD = BSK.SHISETSU_CD) THEN '1'
WHEN EXISTS (SELECT 'X' FROM BY_SHISETSU_NYUKO_ERROR BSNE4
WHERE
BSNE4.CAUTION_FLG = '0'
AND BSNE4.SHISETSU_CD = BSK.SHISETSU_CD) THEN '0'
ELSE NULL
END AS CAUTION_FLG
,CASE
WHEN EXISTS (SELECT 'X' FROM BY_SHISETSU_NYUKO_ERROR BSNE5
WHERE
BSNE5.BATCH_WARN_FLG = '1'
AND BSNE5.SHISETSU_CD = BSK.SHISETSU_CD) THEN '1'
WHEN EXISTS ( SELECT 'X' FROM BY_SHISETSU_NYUKO_ERROR BSNE5
WHERE
BSNE5.BATCH_WARN_FLG = '0'
AND BSNE5.SHISETSU_CD = BSK.SHISETSU_CD) THEN '0'
ELSE NULL
END AS BATCH_WARN_FLG
,BSK.SHISETSU_KEISAI_STS_KBN
FROM
BY_KAISHA_KIHON BKK
INNER JOIN BY_SHISETSU_KIHON BSK
ON BKK.KAISHA_CD = BSK.KAISHA_CD
WHERE
BKK.DELETE_FLG = '0'
AND BSK.DELETE_FLG = '0'
/*IF kaishaCd != null && kaishaCd != ""*/
AND TO_SINGLE_BYTE(UPPER(BSK.KAISHA_CD)) = TO_SINGLE_BYTE(UPPER(/*kaishaCd*/'111111111'))
/*END*/
/*IF shisetsuCd != null && shisetsuCd != ""*/
AND TO_SINGLE_BYTE(UPPER(BSK.SHISETSU_CD)) = TO_SINGLE_BYTE(UPPER(/*shisetsuCd*/'111111111'))
/*END*/
/*IF shisetsuTantoCd != null && shisetsuTantoCd != ""*/
AND TO_SINGLE_BYTE(UPPER(BSK.SHISETSU_TANTO_CD)) = TO_SINGLE_BYTE(UPPER(/*shisetsuTantoCd*/'1111111111'))
/*END*/
/*IF shisetsuTantoName != null && shisetsuTantoName != ""*/
AND TO_SINGLE_BYTE(UPPER(BSK.SHISETSU_TANTO_NAME)) LIKE TO_SINGLE_BYTE(UPPER(/*shisetsuTantoName*/'%a%')) escape /*escChar*/'$'
/*END*/
/*IF shisetsuName != null && shisetsuName != ""*/
AND (
TO_SINGLE_BYTE(UPPER(BSK.SHISETSU_NAME)) LIKE TO_SINGLE_BYTE(UPPER(/*shisetsuName*/'%a%')) escape /*escChar*/'$'
OR TO_SINGLE_BYTE(UPPER(BSK.SHISETSU_NAME_KISS)) LIKE TO_SINGLE_BYTE(UPPER(/*shisetsuName*/'%a%')) escape /*escChar*/'$'
)
/*END*/
/*IF shisetsuNameKana != null && shisetsuNameKana != ""*/
AND (
TO_SINGLE_BYTE(UPPER(BSK.SHISETSU_NAME_KANA)) LIKE TO_SINGLE_BYTE(UPPER(/*shisetsuNameKana*/'%a%')) escape /*escChar*/'$'
OR TO_SINGLE_BYTE(UPPER(BSK.SHISETSU_NAME_KISS_KANA)) LIKE TO_SINGLE_BYTE(UPPER(/*shisetsuNameKana*/'%a%')) escape /*escChar*/'$'
)
/*END*/
/*IF genkoTantoMailToCc != null && genkoTantoMailToCc != ""*/
AND (
TO_SINGLE_BYTE(UPPER(BSK.GENKO_TANTO_MAIL_TO)) LIKE TO_SINGLE_BYTE(UPPER(/*genkoTantoMailToCc*/'%a%')) escape /*escChar*/'$'
OR TO_SINGLE_BYTE(UPPER(BSK.GENKO_TANTO_MAIL_CC)) LIKE TO_SINGLE_BYTE(UPPER(/*genkoTantoMailToCc*/'%a%')) escape /*escChar*/'$'
)
/*END*/
/*IF seiyakuTantoMailToCc != null && seiyakuTantoMailToCc != ""*/
AND (
TO_SINGLE_BYTE(UPPER(BSK.SEIYAKU_TANTO_MAIL_TO)) LIKE TO_SINGLE_BYTE(UPPER(/*seiyakuTantoMailToCc*/'%a%')) escape /*escChar*/'$'
OR TO_SINGLE_BYTE(UPPER(BSK.SEIYAKU_TANTO_MAIL_CC)) LIKE TO_SINGLE_BYTE(UPPER(/*seiyakuTantoMailToCc*/'%a%')) escape /*escChar*/'$'
)
/*END*/
/*IF shisetsuJudgeKbn != null*/
AND BSK.SHISETSU_JUDGE_KBN IN /*shisetsuJudgeKbn*/('A')
/*END*/
/*IF shisetsuKeisaiStsKbn != null*/
AND BSK.SHISETSU_KEISAI_STS_KBN IN /*shisetsuKeisaiStsKbn*/('1')
/*END*/
) SHISETSU
/*IF inputCheckStatusKbn != null*/
WHERE
/*BEGIN*/
/*IF warnCautionFlgOn != null && warnCautionFlgOn != ""*/
(
(
SHISETSU.WARN_FLG = /*warnCautionFlgOn*/'1'
OR SHISETSU.BATCH_WARN_FLG = /*warnCautionFlgOn*/'1'
)
AND SHISETSU.CAUTION_FLG = /*warnCautionFlgOn*/'1'
)
/*END*/
/*IF warnFlgOn != null && warnFlgOn != ""*/
OR (
(
SHISETSU.WARN_FLG = /*warnFlgOn*/'1'
OR SHISETSU.BATCH_WARN_FLG = /*warnFlgOn*/'1'
)
AND SHISETSU.CAUTION_FLG = '0'
)
/*END*/
/*IF cautionFlgOn != null && cautionFlgOn != ""*/
OR (
SHISETSU.CAUTION_FLG = /*cautionFlgOn*/'1'
AND SHISETSU.WARN_FLG = '0'
AND SHISETSU.BATCH_WARN_FLG = '0'
)
/*END*/
/*IF warnCautionFlgOff != null && warnCautionFlgOff != ""*/
OR (
(
SHISETSU.WARN_FLG = /*warnCautionFlgOff*/'0'
OR SHISETSU.WARN_FLG IS NULL
)
AND (
SHISETSU.BATCH_WARN_FLG = /*warnCautionFlgOff*/'0'
OR SHISETSU.BATCH_WARN_FLG IS NULL
)
AND (
SHISETSU.CAUTION_FLG = /*warnCautionFlgOff*/'0'
OR SHISETSU.CAUTION_FLG IS NULL
)
)
/*END*/
/*END*/
/*END*/
ORDER BY
/*$orderBy*/'SHISETSU.SHISETSU_CD' |
drop sequence if exists user_id_seq cascade;
CREATE SEQUENCE user_id_seq;
drop table if exists users cascade;
CREATE TABLE users (
id INTEGER default nextval('user_id_seq') NOT NULL,
name varchar(100) NOT NULL,
email varchar(100) NOT NULL,
password varchar(100) NOT NULL,
PRIMARY KEY(id)
);
drop sequence if exists movie_id_seq cascade;
CREATE SEQUENCE movie_id_seq;
drop table if exists movie cascade;
CREATE TABLE movie (
id INTEGER default nextval('movie_id_seq') NOT NULL,
length_in_minutes INTEGER NOT NULL,
name varchar(100) NOT NULL UNIQUE,
release_date varchar(100) NOT NULL,
PRIMARY KEY(id)
);
drop sequence if exists cinema_id_seq cascade;
CREATE SEQUENCE cinema_id_seq;
drop table if exists cinema cascade;
CREATE TABLE cinema (
id INTEGER default nextval('cinema_id_seq') NOT NULL,
name varchar(100) NOT NULL,
location varchar(100) NOT NULL,
PRIMARY KEY(id)
);
drop sequence if exists customer_id_seq cascade;
CREATE SEQUENCE customer_id_seq;
drop table if exists customer cascade;
CREATE TABLE customer(
id INTEGER default nextval('customer_id_seq') NOT NULL,
name varchar(100) NOT NULL,
email varchar(100) NOT NULL,
telephone_number varchar(100) NOT NULL,
password varchar(100) NOT NULL,
PRIMARY KEY(id)
);
drop sequence if exists room_id_seq cascade;
CREATE SEQUENCE room_id_seq;
drop table if exists room cascade;
CREATE TABLE room (
id INTEGER default nextval('room_id_seq') NOT NULL,
number varchar(100) NOT NULL UNIQUE,
cinema_id INTEGER REFERENCES cinema(id) ON DELETE CASCADE,
PRIMARY KEY(id)
);
drop sequence if exists seat_id_seq cascade;
CREATE SEQUENCE seat_id_seq;
drop table if exists seat cascade;
CREATE TABLE seat (
id INTEGER default nextval('seat_id_seq') NOT NULL,
seat_number INTEGER NOT NULL,
seat_row INTEGER NOT NULL,
room_id INTEGER REFERENCES room(id) ON DELETE CASCADE,
PRIMARY KEY(id),
UNIQUE (seat_number, seat_row)
);
drop sequence if exists screening_id_seq cascade;
CREATE SEQUENCE screening_id_seq;
drop table if exists screening cascade;
CREATE TABLE screening (
id INTEGER default nextval('screening_id_seq') NOT NULL,
screening_time TIMESTAMP NOT NULL,
room_id INTEGER REFERENCES room(id) ON DELETE CASCADE,
movie_id INTEGER REFERENCES movie(id) ON DELETE CASCADE,
PRIMARY KEY(id),
UNIQUE (screening_time, room_id)
);
drop sequence if exists booking_id_seq cascade;
CREATE SEQUENCE booking_id_seq;
drop sequence if exists booking_reference_seq cascade;
CREATE SEQUENCE booking_reference_seq;
drop table if exists booking cascade;
CREATE TABLE booking (
id INTEGER default nextval('booking_id_seq') NOT NULL,
screening_id INTEGER REFERENCES screening(id) ON DELETE CASCADE,
customer_id INTEGER REFERENCES customer(id) ON DELETE CASCADE,
booking_reference varchar(10) default nextval('booking_reference_seq') NOT NULL,
PRIMARY KEY(id)
);
drop sequence if exists ticket_id_seq cascade;
CREATE SEQUENCE ticket_id_seq;
drop table if exists ticket cascade;
CREATE TABLE ticket (
id INTEGER default nextval('ticket_id_seq') NOT NULL,
seat_id INTEGER REFERENCES seat(id) ON DELETE CASCADE,
booking_id INTEGER REFERENCES booking(id) ON DELETE CASCADE,
PRIMARY KEY(id),
UNIQUE (seat_id,booking_id)
);
|
-- phpMyAdmin SQL Dump
-- version 4.9.4
-- https://www.phpmyadmin.net/
--
-- Host: localhost:3306
-- Tempo de geração: 03-Jun-2020 às 17:13
-- Versão do servidor: 5.6.41-84.1
-- versão do PHP: 7.3.6
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 */;
--
-- Banco de dados: `lojas453_loja`
--
-- --------------------------------------------------------
--
-- Estrutura da tabela `compra`
--
CREATE TABLE `compra` (
`idcompra` int(11) NOT NULL,
`endereco` varchar(500) DEFAULT NULL,
`total` decimal(10,2) DEFAULT NULL,
`loja` varchar(45) DEFAULT NULL,
`pedido` mediumtext
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Estrutura da tabela `loja`
--
CREATE TABLE `loja` (
`dono` varchar(45) NOT NULL,
`senha` varchar(45) NOT NULL,
`nome` varchar(45) NOT NULL,
`id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Extraindo dados da tabela `loja`
--
INSERT INTO `loja` (`dono`, `senha`, `nome`, `id`) VALUES
('thiago', '123', 'espetinho', 1),
('fulano', '123', 'quitanda', 2),
('dimas', '123', 'dimas hortifruti', 3);
-- --------------------------------------------------------
--
-- Estrutura da tabela `produto`
--
CREATE TABLE `produto` (
`idproduto` int(11) NOT NULL,
`descricao` varchar(80) DEFAULT NULL,
`preco` decimal(10,2) DEFAULT NULL,
`loja` varchar(45) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Extraindo dados da tabela `produto`
--
INSERT INTO `produto` (`idproduto`, `descricao`, `preco`, `loja`) VALUES
(7, 'Espetinho de Frango', 2.00, '1'),
(10, 'Espetinho de Linguiça', 1.50, '1'),
(12, 'Maçã', 3.50, '2'),
(13, 'Espetinho de coração', 2.00, '1'),
(15, 'Pera', 4.00, '2'),
(16, 'Maçãs fugi ', 3.00, '3');
--
-- Índices para tabelas despejadas
--
--
-- Índices para tabela `compra`
--
ALTER TABLE `compra`
ADD PRIMARY KEY (`idcompra`);
--
-- Índices para tabela `loja`
--
ALTER TABLE `loja`
ADD PRIMARY KEY (`id`);
--
-- Índices para tabela `produto`
--
ALTER TABLE `produto`
ADD PRIMARY KEY (`idproduto`);
--
-- AUTO_INCREMENT de tabelas despejadas
--
--
-- AUTO_INCREMENT de tabela `compra`
--
ALTER TABLE `compra`
MODIFY `idcompra` int(11) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT de tabela `loja`
--
ALTER TABLE `loja`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;
--
-- AUTO_INCREMENT de tabela `produto`
--
ALTER TABLE `produto`
MODIFY `idproduto` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=17;
COMMIT;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
-- phpMyAdmin SQL Dump
-- version 3.5.7
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: May 18, 2013 at 02:02 PM
-- Server version: 5.5.29
-- PHP Version: 5.4.10
SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";
--
-- Table structure for table `order_items`
--
CREATE TABLE IF NOT EXISTS `order_items` (
`Id` varchar(10) NOT NULL,
`OrderId` varchar(10) NOT NULL,
`ProductId` varchar(10) NOT NULL,
`SubscriptionPlanId` varchar(10) NOT NULL,
`ItemName` text NOT NULL,
`Qty` varchar(10) NOT NULL,
`CostPerItem` varchar(10) NOT NULL,
`PricePerItem` varchar(10) NOT NULL,
`ItemDescription` text NOT NULL,
`ItemDescription2` text NOT NULL,
`ItemDescription3` text NOT NULL,
`ItemDescription4` text NOT NULL,
`ItemType` varchar(100) NOT NULL,
`Notes` text NOT NULL,
`dID` int(10) NOT NULL,
`ActiveRecordYN` int(1) NOT NULL DEFAULT '1',
PRIMARY KEY (`Id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
|
-- 3.2 Combining related rows --
-- To return rows from multiple tables by joining on a known common column or joining on columns that share common values.
-- Display the names of all employees om department 10 along with the location of each employee's department.
-- Data is stored in 2 separate tables then must use the "join" clause.
select e."ENAME" AS Employee, d."LOC"
from emp AS e
INNER JOIN dept AS d
on e."DEPTNO" = d."DEPTNO"
WHERE e."DEPTNO" =10;
|
/* Formatted on 21/07/2014 18:30:43 (QP5 v5.227.12220.39754) */
CREATE OR REPLACE FORCE VIEW MCRE_OWN.QZV_ST_MIS_RT
(
COD_SRC,
ID_DPER,
DTA_COMPETENZA,
COD_STATO_RISCHIO,
DES_STATO_RISCHIO,
COD_ABI,
COD_NDG,
FLG_NDG,
FLG_PORTAFOGLIO,
FLG_NUOVO_INGRESSO,
FLG_CMP_DRC,
VAL_RIP_MORA,
VAL_PER_CE,
VAL_QUOTA_SVAL,
VAL_QUOTA_ATT,
VAL_RETT_SVAL,
VAL_RIP_SVAL,
VAL_RETT_ATT,
VAL_RIP_ATT,
VAL_ATTUALIZZAZIONE
)
AS
SELECT 'RT' COD_SRC,
SUBSTR (ID_DPER, 1, 4) || '03' ID_DPER,
SUBSTR (ID_DPER, 1, 4) || '0331' DTA_COMPETENZA,
COD_STATO_RISCHIO,
des_stato_rischio, --cod_presidio,
COD_ABI,
COD_NDG,
CASE WHEN COD_NDG != '#' AND COD_NDG != '0' THEN 0 ELSE 1 END
flg_ndg,
flg_portafoglio,
CASE
WHEN TO_CHAR (DTA_INIZIO_STATO, 'YYYY') = SUBSTR (ID_DPER, 1, 4)
THEN
1
ELSE
0
END
flg_nuovo_ingresso,
flg_cmp_drc,
SUM (VAL_RIP_MORA) VAL_RIP_MORA,
SUM (VAL_PER_CE) VAL_PER_CE,
SUM (VAL_QUOTA_SVAL) VAL_QUOTA_SVAL,
SUM (VAL_QUOTA_ATT) VAL_QUOTA_ATT,
SUM (VAL_RETT_SVAL) VAL_RETT_SVAL,
SUM (VAL_RIP_SVAL) VAL_RIP_SVAL,
SUM (VAL_RETT_ATT) VAL_RETT_ATT,
SUM (VAL_RIP_ATT) VAL_RIP_ATT,
SUM (VAL_ATTUALIZZAZIONE) VAL_ATTUALIZZAZIONE
FROM QZT_FT_MIS_MON_INC_SOF x
WHERE cod_src = 'RM'
AND x.id_dper BETWEEN SUBSTR (ID_DPER, 1, 4) || '01'
AND SUBSTR (ID_DPER, 1, 4) || '03'
GROUP BY SUBSTR (ID_DPER, 1, 4),
COD_STATO_RISCHIO,
des_stato_rischio,
COD_ABI,
COD_NDG,
CASE WHEN COD_NDG != '#' AND COD_NDG != '0' THEN 0 ELSE 1 END,
flg_portafoglio,
CASE
WHEN TO_CHAR (DTA_INIZIO_STATO, 'YYYY') =
SUBSTR (ID_DPER, 1, 4)
THEN
1
ELSE
0
END,
flg_cmp_drc
UNION ALL
SELECT 'RT' COD_SRC,
SUBSTR (ID_DPER, 1, 4) || '06' ID_DPER,
SUBSTR (ID_DPER, 1, 4) || '0630' DTA_COMPETENZA,
COD_STATO_RISCHIO,
des_stato_rischio, --cod_presidio,
COD_ABI,
COD_NDG,
CASE WHEN COD_NDG != '#' AND COD_NDG != '0' THEN 0 ELSE 1 END
flg_ndg,
flg_portafoglio,
CASE
WHEN TO_CHAR (DTA_INIZIO_STATO, 'YYYY') = SUBSTR (ID_DPER, 1, 4)
THEN
1
ELSE
0
END
flg_nuovo_ingresso,
flg_cmp_drc,
SUM (VAL_RIP_MORA) VAL_RIP_MORA,
SUM (VAL_PER_CE) VAL_PER_CE,
SUM (VAL_QUOTA_SVAL) VAL_QUOTA_SVAL,
SUM (VAL_QUOTA_ATT) VAL_QUOTA_ATT,
SUM (VAL_RETT_SVAL) VAL_RETT_SVAL,
SUM (VAL_RIP_SVAL) VAL_RIP_SVAL,
SUM (VAL_RETT_ATT) VAL_RETT_ATT,
SUM (VAL_RIP_ATT) VAL_RIP_ATT,
SUM (VAL_ATTUALIZZAZIONE) VAL_ATTUALIZZAZIONE
FROM QZT_FT_MIS_MON_INC_SOF x
WHERE cod_src = 'RM'
AND x.id_dper BETWEEN SUBSTR (ID_DPER, 1, 4) || '04'
AND SUBSTR (ID_DPER, 1, 4) || '06'
GROUP BY SUBSTR (ID_DPER, 1, 4),
COD_STATO_RISCHIO,
des_stato_rischio,
COD_ABI,
COD_NDG,
CASE WHEN COD_NDG != '#' AND COD_NDG != '0' THEN 0 ELSE 1 END,
flg_portafoglio,
CASE
WHEN TO_CHAR (DTA_INIZIO_STATO, 'YYYY') =
SUBSTR (ID_DPER, 1, 4)
THEN
1
ELSE
0
END,
flg_cmp_drc
UNION ALL
SELECT 'RT' COD_SRC,
SUBSTR (ID_DPER, 1, 4) || '09' ID_DPER,
SUBSTR (ID_DPER, 1, 4) || '0930' DTA_COMPETENZA,
COD_STATO_RISCHIO,
des_stato_rischio, --cod_presidio,
COD_ABI,
COD_NDG,
CASE WHEN COD_NDG != '#' AND COD_NDG != '0' THEN 0 ELSE 1 END
flg_ndg,
flg_portafoglio,
CASE
WHEN TO_CHAR (DTA_INIZIO_STATO, 'YYYY') = SUBSTR (ID_DPER, 1, 4)
THEN
1
ELSE
0
END
flg_nuovo_ingresso,
flg_cmp_drc,
SUM (VAL_RIP_MORA) VAL_RIP_MORA,
SUM (VAL_PER_CE) VAL_PER_CE,
SUM (VAL_QUOTA_SVAL) VAL_QUOTA_SVAL,
SUM (VAL_QUOTA_ATT) VAL_QUOTA_ATT,
SUM (VAL_RETT_SVAL) VAL_RETT_SVAL,
SUM (VAL_RIP_SVAL) VAL_RIP_SVAL,
SUM (VAL_RETT_ATT) VAL_RETT_ATT,
SUM (VAL_RIP_ATT) VAL_RIP_ATT,
SUM (VAL_ATTUALIZZAZIONE) VAL_ATTUALIZZAZIONE
FROM QZT_FT_MIS_MON_INC_SOF x
WHERE cod_src = 'RM'
AND x.id_dper BETWEEN SUBSTR (ID_DPER, 1, 4) || '07'
AND SUBSTR (ID_DPER, 1, 4) || '09'
GROUP BY SUBSTR (ID_DPER, 1, 4),
COD_STATO_RISCHIO,
des_stato_rischio,
COD_ABI,
COD_NDG,
CASE WHEN COD_NDG != '#' AND COD_NDG != '0' THEN 0 ELSE 1 END,
flg_portafoglio,
CASE
WHEN TO_CHAR (DTA_INIZIO_STATO, 'YYYY') =
SUBSTR (ID_DPER, 1, 4)
THEN
1
ELSE
0
END,
flg_cmp_drc
UNION ALL
SELECT 'RT' COD_SRC,
SUBSTR (ID_DPER, 1, 4) || '12' ID_DPER,
SUBSTR (ID_DPER, 1, 4) || '1231' DTA_COMPETENZA,
COD_STATO_RISCHIO,
des_stato_rischio, --cod_presidio,
COD_ABI,
COD_NDG,
CASE WHEN COD_NDG != '#' AND COD_NDG != '0' THEN 0 ELSE 1 END
flg_ndg,
flg_portafoglio,
CASE
WHEN TO_CHAR (DTA_INIZIO_STATO, 'YYYY') = SUBSTR (ID_DPER, 1, 4)
THEN
1
ELSE
0
END
flg_nuovo_ingresso,
flg_cmp_drc,
SUM (VAL_RIP_MORA) VAL_RIP_MORA,
SUM (VAL_PER_CE) VAL_PER_CE,
SUM (VAL_QUOTA_SVAL) VAL_QUOTA_SVAL,
SUM (VAL_QUOTA_ATT) VAL_QUOTA_ATT,
SUM (VAL_RETT_SVAL) VAL_RETT_SVAL,
SUM (VAL_RIP_SVAL) VAL_RIP_SVAL,
SUM (VAL_RETT_ATT) VAL_RETT_ATT,
SUM (VAL_RIP_ATT) VAL_RIP_ATT,
SUM (VAL_ATTUALIZZAZIONE) VAL_ATTUALIZZAZIONE
FROM QZT_FT_MIS_MON_INC_SOF x
WHERE cod_src = 'RM'
AND x.id_dper BETWEEN SUBSTR (ID_DPER, 1, 4) || '10'
AND SUBSTR (ID_DPER, 1, 4) || '12'
GROUP BY SUBSTR (ID_DPER, 1, 4),
COD_STATO_RISCHIO,
des_stato_rischio,
COD_ABI,
COD_NDG,
CASE WHEN COD_NDG != '#' AND COD_NDG != '0' THEN 0 ELSE 1 END,
flg_portafoglio,
CASE
WHEN TO_CHAR (DTA_INIZIO_STATO, 'YYYY') =
SUBSTR (ID_DPER, 1, 4)
THEN
1
ELSE
0
END,
flg_cmp_drc;
|
DELIMITER $$
CREATE DEFINER=`root`@`localhost` PROCEDURE `uspBookDelete`(
IN i_BookCode varchar(100) ,
IN i_BookName varchar(1000),
IN i_BookAvailability int,
IN i_AdminID int
)
BEGIN
declare i_BookID int;
set i_BookID=(Select BookID from tblBookDetails where BookCode=i_BookCode);
Update tblBookDetails
set IsActive=0,
UpdatedUserID=i_AdminID,
UpdatedDate=current_timestamp()
where BookID=i_BookID;
END$$
DELIMITER ;
|
CREATE FUNCTION dbo.GetClientReservations
(@ClientID int)
RETURNS @ClientReservation TABLE
(
ClientID INT NOT NULL,
ClientName TEXT NOT NULL,
ReservationDateIn DATETIME NOT NULL,
ReservationDateOut DATETIME NOT NULL
)
AS
BEGIN
INSERT @ClientReservation
SELECT a.ClientID, a.ClientName, b.ReservationDateIn, b.ReservationDateOut
FROM Client a
INNER JOIN Reservation b
ON a.ClientID = b.ReservationClientID
WHERE ClientID = @ClientID
RETURN
END |
SELECT
'Inventario' AS clas,
IEAN AS EAN,
ICOD AS MODELO,
IDESCR AS DESCRIPCION,
FAM2.FAMDESCR AS DEPARTAMENTO,
(ALMCANT-ALMASIGNADO) AS pzas,
IF(CATMULTICIA = 1, ILISTA8,IF(CATMULTICIA=2, ILISTA5,IF (CATMULTICIA=3,ILISTA3, IF (CATMULTICIA=4,ILISTA2,ILISTA2)))) AS COSTO,
IF(CATMULTICIA = 1, ILISTA8*ALMCANT,IF(CATMULTICIA=2, ILISTA5*ALMCANT,IF (CATMULTICIA=3,ILISTA3*ALMCANT, IF (CATMULTICIA=4,ILISTA2*ALMCANT,ILISTA2*ALMCANT))))AS COSTO_TOTAL,
ILISTA1 / 1.16 AS PRECIO,
ILISTA1 AS 'Precio con IVA',
(ILISTA1 / 1.16)*ALMCANT AS PRECIO_TOTAL,
ILISTA1 * ALMCANT AS 'Precio Total con iva',
FAM1.FAMDESCR AS PROVEEDOR,
FAM3.FAMDESCR AS TIPO,
FAM4.FAMDESCR AS SUBTIPO,
FAM5.FAMDESCR AS PERSONAJE,
FAM6.FAMDESCR AS TRIMESTRE,
FAM7.FAMDESCR AS DISEÑADOR,
FAM8.FAMDESCR AS LICENCIA,
FAM9.FAMDESCR AS TIPO_DE_LICENCIA,
IF(CATDESCR='IBUSHAK/MERCADO LIBRE','MERCADO LIBRE',
IF(CATDESCR='MERCADO LIBRE TOXIC','MERCADO LIBRE',
IF(CATDESCR='MERCADO LIBRE FULL','MERCADO LIBRE',
IF(CATDESCR='AMAZON COMER','AMAZON',
IF(CATDESCR='AMAZON EN CEDIS','AMAZON',
IF(CATDESCR='ALMACEN B2B LEKRASH','SHOPIFY',
CATDESCR
)))))) AS TIENDA,
CURDATE() AS FECHA,
CATCONTACTO AS CLASIFICA_ALMACEN,
IF(ALMNUM < 100, "BOUTIQUES", IF(ALMNUM <303,"MAYOREO" ,IF(ALMNUM <503,"FRANQUICIAS", IF(ALMNUM =909,"B2C",IF(ALMNUM =905,"B2B",IF(ALMNUM =925,"B2B",IF(ALMNUM =919,"AMAZON",'VENTA BODEGAS'))))))) AS 'Canal de venta',
SUBSTRING(ICOD,1,9)AS MODELO_PADRE,
FAM2.FAMDESCR AS 'NUEVO DEPTO',
FAM3.FAMDESCR AS 'NUEVO TIPO',
FAMA.FAMDESCR AS OFERTA,
IF(FAMA.FAMDESCR='SIN OFERTA','Linea','Rebaja') as 'Tabla de acción'
from FINV
LEFT JOIN FALM ON FALM.ISEQ = FINV.ISEQ
LEFT JOIN FALMCAT ON FALMCAT.CATALM = FALM.ALMNUM
LEFT JOIN FFAM AS FAM1 ON FAM1.FAMTNUM=FINV.IFAM1
LEFT JOIN FFAM AS FAM2 ON FAM2.FAMTNUM=FINV.IFAM2
LEFT JOIN FFAM AS FAM3 ON FAM3.FAMTNUM=FINV.IFAM3
LEFT JOIN FFAM AS FAM4 ON FAM4.FAMTNUM=FINV.IFAM4
LEFT JOIN FFAM AS FAM5 ON FAM5.FAMTNUM=FINV.IFAM5
LEFT JOIN FFAM AS FAM6 ON FAM6.FAMTNUM=FINV.IFAM6
LEFT JOIN FFAM AS FAM7 ON FAM7.FAMTNUM=FINV.IFAM7
LEFT JOIN FFAM AS FAM8 ON FAM8.FAMTNUM=FINV.IFAM8
LEFT JOIN FFAM AS FAM9 ON FAM9.FAMTNUM=FINV.IFAM9
LEFT JOIN FFAM AS FAMA ON FAMA.FAMTNUM=FINV.IFAMA
WHERE ALMCANT <> 0
AND (ALMNUM<> 501 AND ALMNUM<> 0 AND ALMNUM <> 910 AND ALMNUM<> 911 AND ALMNUM<> 912 AND ALMNUM<> 913 AND ALMNUM<> 914 AND ALMNUM<> 915 AND ALMNUM< 928)
AND ITIPO = 1
|
/* Formatted on 17/06/2014 18:17:06 (QP5 v5.227.12220.39754) */
CREATE OR REPLACE FORCE VIEW MCRE_OWN.VTMCRE0_APP_SCHEDA_ANAG_GL
(
COD_GRUPPO_LEGAME,
COD_LEGAME,
COD_SNDG,
VAL_PD_ONLINE,
VAL_RATING_ONLINE,
VAL_PD_MONIT_ONLINE,
VAL_RATING_MONIT_ONLINE,
VAL_IRIS,
VAL_LR,
VAL_LGD,
VAL_EAD,
VAL_PA,
VAL_ACCORDATO,
VAL_UTILIZZATO,
VAL_QI,
DTA_IRIS,
DTA_PD_ONLINE,
DTA_PD_MONITORAGGIO,
GLGB_QIS_ACC,
GLGB_QIS_UTI
)
AS
SELECT /*+full(le) noparallel(i)*/
-- V1 02/12/2010 VG: Congelata
-- V2 16/03/2011 LF: aggiunti dta_ris, dta_pd_online e dta_pd_monitoraggio
-- v3 28/03/2011 VG: presi dati PCR per GL
-- v4 21/04/2011 VG: aggiunto cod_sndg per capolegam
-- v5 04/05/2011 LF: aggiunti qis
-- v6 10/05/2011 VG: sistemata lettura dati CR
-- v7 15/05/2011 MM: su nuova pcr, senza CR
-- V8 20/06/2011 VG: Solo GL join FG
-- v9 080911 MM: allineata a scheda_GE, con CR
DISTINCT LE.COD_GRUPPO_LEGAME,
LE.COD_LEGAME,
LE.COD_SNDG,
A.VAL_PD_ONLINE,
A.VAL_RATING_ONLINE,
I.VAL_PD_MONITORAGGIO VAL_PD_MONIT_ONLINE,
I.VAL_RATING_MONITORAGGIO VAL_RATING_MONIT_ONLINE,
NULL VAL_IRIS,
NULL VAL_LR,
I.VAL_LGD VAL_LGD,
I.VAL_EAD VAL_EAD,
I.VAL_PA VAL_PA,
GLGB_ACC_CASSA + GLGB_ACC_FIRMA VAL_ACCORDATO,
GLGB_UTI_CASSA + GLGB_UTI_FIRMA VAL_UTILIZZATO,
NULL VAL_QI,
I.DTA_RIFERIMENTO DTA_IRIS,
A.DTA_RIF_PD_ONLINE DTA_PD_ONLINE,
I.DTA_PD_MONITORAGGIO,
CR.GLGB_QIS_ACC,
CR.GLGB_QIS_UTI
FROM T_MCRE0_APP_GRUPPO_LEGAME LE,
T_MCRE0_APP_ANAGRAFICA_GRUPPO A,
T_MCRE0_APP_CR CR,
VTMCRE0_APP_UPD_FIELDS_PALL B,
T_MCRE0_APP_IRIS I
WHERE LE.FLG_CAPOLEGAME = 1
AND LE.COD_SNDG = B.COD_SNDG
AND B.FLG_GRUPPO_LEGAME = '1'
AND LE.COD_SNDG = A.COD_SNDG
AND LE.COD_SNDG = I.COD_SNDG(+)
AND LE.COD_SNDG = CR.COD_SNDG(+);
GRANT DELETE, INSERT, REFERENCES, SELECT, UPDATE, ON COMMIT REFRESH, QUERY REWRITE, DEBUG, FLASHBACK ON MCRE_OWN.VTMCRE0_APP_SCHEDA_ANAG_GL TO MCRE_USR;
|
-- Exercices donné en classe
-- 1. Mettre en place un trigger qui paliera l'absence de contrainte "AUTO_INCREMENT"
-- suite à la copie de la table Personne
USE Monde;
DROP TABLE IF EXISTS PersBis;
CREATE TABLE IF NOT EXISTS PersBis AS SELECT * FROM personne;
DROP TRIGGER IF EXISTS bi_Pk_Sexe;
DELIMITER |
CREATE TRIGGER bi_Pk_Sexe BEFORE INSERT ON PersBis FOR EACH ROW
BEGIN
DECLARE _pk int;
SELECT MAX(id_pers) INTO _pk FROM PersBis;
SET NEW.id_pers = _pk + 1;
IF NEW.sexe != 'M' AND NEW.sexe != 'F' THEN
SET NEW.sexe = '?';
END IF;
END |
DELIMITER ;
INSERT INTO PersBis(nom, prenom, sexe, fk_pays) VALUES
('Leblanc', 'Luc', 'M', 1),
('Leroux', 'Pol', 'H', 1),
('Lenoir', 'Zoe', 'F', 1);
-- 2. Création d'un champ "date_inscription" dans la table T_Inscription.
-- Création d'un trigger qui ajoutera automatiquement la date du jour ainsi que l'heure lors d'une inscription
USE ecole;
ALTER TABLE T_Inscription
ADD COLUMN date_inscription DATETIME;
DROP TRIGGER IF EXISTS bi_date_Inscr;
DELIMITER |
CREATE TRIGGER bi_date_Inscr BEFORE INSERT ON T_Inscription FOR EACH ROW
BEGIN
SET NEW.date_inscription = NOW();
END |
DELIMITER ;
INSERT INTO T_Inscription(FK_Pers, FK_Cours) VALUES
(1, 'INFO');
ALTER TABLE T_Inscription
DROP COLUMN date_inscription;
-- 3. Cr�ation d'une table "Log" (PK, NomTable, TypeModif, Date, PK_Affect�e, User).
-- Chaque Update de la table "Monde.Personne" fera l'objet d'une ligne dans la table "Log"
USE Monde;
DROP TABLE IF EXISTS Mouchard;
CREATE TABLE IF NOT EXISTS Mouchard
(
PK SMALLINT unsigned NOT NULL AUTO_INCREMENT,
NomTable VARCHAR(25) NOT NULL,
TypeModif VARCHAR(10) NOT NULL,
Date_Upd DATETIME NOT NULL,
PK_Upd SMALLINT unsigned NOT NULL,
Pers VARCHAR(30),
PRIMARY KEY (PK)
)ENGINE = InnoDB ;
DROP TRIGGER IF EXISTS au_Mouchard;
DELIMITER |
CREATE TRIGGER au_Mouchard AFTER UPDATE ON Personne FOR EACH ROW
BEGIN
INSERT INTO Mouchard (NomTable, TypeModif, Date_Upd, PK_Upd, Pers)
VALUES("Personne", 'UPDATE', NOW(), OLD.ID_Pers, USER());
END |
DELIMITER ;
UPDATE Personne
SET prenom = 'Mitch'
WHERE ID_Pers = 1;
-- 4. Refuser l'inscription � plus de 2 cours => Message personnel
USE ecole;
DROP TRIGGER IF EXISTS bi_double_Inscription;
DELIMITER |
CREATE TRIGGER bi_double_Inscription BEFORE INSERT ON T_Inscription FOR EACH ROW
BEGIN
DECLARE _errorMessage VARCHAR(100);
DECLARE _nb SMALLINT;
SELECT COUNT(*) INTO _nb
FROM t_inscription
WHERE FK_Pers = NEW.FK_Pers;
IF (_nb > 0) THEN
SET _errorMessage = CONCAT('Maximum 2 Inscription !');
SIGNAL SQLSTATE '99999' SET MESSAGE_TEXT = _errorMessage;
END IF;
END |
DELIMITER ;
SELECT * FROM T_Inscription;
INSERT INTO T_Inscription (FK_Pers, FK_Cours) VALUES
(893, 'INFO');
INSERT INTO T_Inscription (FK_Pers, FK_Cours) VALUES
(893, 'LANG');
|
SELECT
r.id,
r.price,
r.rating,
r.content,
r.highlight,
r.suggestion,
r.creation_date,
array_agg(ra.asset_id) AS assets,
json_agg(u.*)->0 AS user,
json_agg(i.*)->0 AS item,
json_agg(p.*)->0 AS place,
COUNT(l.*) AS num_of_likes
FROM
tastespuds.review r
INNER JOIN
tastespuds.review_asset ra ON r.id = ra.review_id
INNER JOIN
tastespuds.user u ON u.id = r.user_id
INNER JOIN
tastespuds.item i ON r.item_id = i.id
INNER JOIN
tastespuds.place p ON i.place_id = p.id
LEFT JOIN
tastespuds.like_review l ON r.id = l.review_id
WHERE
r.id = $1::int
GROUP BY
r.id
LIMIT 1
|
INSERT INTO NOTE VALUES(1, 'Sample Note')
|
--liquibase formatted sql
--changeset tomas:name_unique_constraints splitStatements:false
ALTER TABLE product
ADD CONSTRAINT uk_product_name UNIQUE (name);
ALTER TABLE category
ADD CONSTRAINT uk_category_name UNIQUE (name);
ALTER TABLE presentation
ADD CONSTRAINT uk_presentation_name UNIQUE (name);
ALTER TABLE manufacturer
ADD CONSTRAINT uk_manufacturer_name UNIQUE (name);
ALTER TABLE measure_unit
ADD CONSTRAINT uk_measure_unit_name UNIQUE (name);
ALTER TABLE drug
ADD CONSTRAINT uk_drug_name UNIQUE (name); |
SELECT COUNT (*)
FROM
Profiles
WHERE
Uuid = '%1'
LIMIT 1;
|
/* a. (10 points) Translate the diagram above by writing the SQL CREATE TABLE
statements to represent this E/R diagram.
Include all key constraints; you should specify both primary and foreign keys.
Make sure that your statements are syntactically correct
(you might want to check them using SQLite, Azure SQL Server, or another
relational database). */
CREATE TABLE InsuranceCo(
name VARCHAR(256) PRIMARY KEY,
phone INTEGER
);
CREATE TABLE Vehicle(
licensePlate VARCHAR(256) PRIMARY KEY,
year INTEGER,
maxLiability REAL,
insuranceCompany VARCHAR(256) REFERENCES InsuranceCo(name),
ownerSsn INT REFERENCES Person(ssn)
);
CREATE TABLE Person(
name VARCHAR(256),
ssn INT PRIMARY KEY
);
CREATE TABLE Driver(
driverID INT,
ssn INT REFERENCES Person(ssn)
);
CREATE TABLE Car(
licensePlate VARCHAR(256) REFERENCES Vehicle(licensePlate),
make VARCHAR(256)
);
CREATE TABLE Truck(
licensePlate VARCHAR(256) REFERENCES Vehicle(licensePlate),
capacity INT,
driverID INT REFERENCES ProfessionalDriver(driverID)
);
CREATE TABLE CarDriver(
licensePlate VARCHAR(256) REFERENCES Car(licensePlate),
driverID INT REFERENCES NonProfessionalDriver(driverID)
);
CREATE TABLE NonProfessionalDriver(
driverID INT REFERENCES Driver(driverID)
);
CREATE TABLE ProfessionalDriver(
driverID INT REFERENCES Driver(driverID),
medicalHistory VARCHAR(256)
);
/*
b. (5 points) Which relation in your relational schema represents the relationship
"insures" in the E/R diagram? Why is that your representation?
The insures relationship is represented through the columns maxLiability and
insuranceCompany in the Vehicle relation/table because a vehicle can have
atmost one insurance company (the insure relationship is many to one) so I represented that in the vehicle relation.
I referenced insuranceCo(name) in order to make that relationship.
For example, if a vehicle does not have insurance the attributes will be null.
c. (5 points) Compare the representation of the relationships "drives" and "operates" in your schema,
and explain why they are different.
drives is a relationship between the car and the drivers. Since there can be multiple drivers for a single
car I created a new table called carDriver to represent the relationship. as for operates, a truck can only
have atmost one operator so the relationship expressed in the truck relation itself by adding the operators
driverID.
Drives is a many to many relation so requires an additional table/relation where operates is many to one
and can be inlined into the truck relation.
*/
|
#宋国
INSERT INTO `TECH` (COUNTRYID, TYPE, NAME) VALUES(2, 1, '布料类服装');
INSERT INTO `TECH` (COUNTRYID, TYPE, NAME) VALUES(2, 2, '皮甲类服装');
INSERT INTO `TECH` (COUNTRYID, TYPE, NAME) VALUES(2, 3, '铠甲类服装');
INSERT INTO `TECH` (COUNTRYID, TYPE, NAME) VALUES(2, 4, '刀盾类');
INSERT INTO `TECH` (COUNTRYID, TYPE, NAME) VALUES(2, 5, '弓类');
INSERT INTO `TECH` (COUNTRYID, TYPE, NAME) VALUES(2, 6, '棍类');
INSERT INTO `TECH` (COUNTRYID, TYPE, NAME) VALUES(2, 7, '杖类');
INSERT INTO `TECH` (COUNTRYID, TYPE, NAME) VALUES(2, 8, '扇类');
INSERT INTO `TECH` (COUNTRYID, TYPE, NAME) VALUES(2, 9, '项链类');
INSERT INTO `TECH` (COUNTRYID, TYPE, NAME) VALUES(2, 10, '戒指类');
INSERT INTO `TECH` (COUNTRYID, TYPE, NAME) VALUES(2, 11, '护腕类');
INSERT INTO `TECH` (COUNTRYID, TYPE, NAME) VALUES(2, 12, '腰带类');
INSERT INTO `TECH` (COUNTRYID, TYPE, NAME) VALUES(2, 13, '鞋子类');
INSERT INTO `TECH` (COUNTRYID, TYPE, NAME) VALUES(2, 14, '头盔类');
#魏国
INSERT INTO `TECH` (COUNTRYID, TYPE, NAME) VALUES(3, 1, '布料类服装');
INSERT INTO `TECH` (COUNTRYID, TYPE, NAME) VALUES(3, 2, '皮甲类服装');
INSERT INTO `TECH` (COUNTRYID, TYPE, NAME) VALUES(3, 3, '铠甲类服装');
INSERT INTO `TECH` (COUNTRYID, TYPE, NAME) VALUES(3, 4, '刀盾类');
INSERT INTO `TECH` (COUNTRYID, TYPE, NAME) VALUES(3, 5, '弓类');
INSERT INTO `TECH` (COUNTRYID, TYPE, NAME) VALUES(3, 6, '棍类');
INSERT INTO `TECH` (COUNTRYID, TYPE, NAME) VALUES(3, 7, '杖类');
INSERT INTO `TECH` (COUNTRYID, TYPE, NAME) VALUES(3, 8, '扇类');
INSERT INTO `TECH` (COUNTRYID, TYPE, NAME) VALUES(3, 9, '项链类');
INSERT INTO `TECH` (COUNTRYID, TYPE, NAME) VALUES(3, 10, '戒指类');
INSERT INTO `TECH` (COUNTRYID, TYPE, NAME) VALUES(3, 11, '护腕类');
INSERT INTO `TECH` (COUNTRYID, TYPE, NAME) VALUES(3, 12, '腰带类');
INSERT INTO `TECH` (COUNTRYID, TYPE, NAME) VALUES(3, 13, '鞋子类');
INSERT INTO `TECH` (COUNTRYID, TYPE, NAME) VALUES(3, 14, '头盔类');
#齐国
INSERT INTO `TECH` (COUNTRYID, TYPE, NAME) VALUES(4, 1, '布料类服装');
INSERT INTO `TECH` (COUNTRYID, TYPE, NAME) VALUES(4, 2, '皮甲类服装');
INSERT INTO `TECH` (COUNTRYID, TYPE, NAME) VALUES(4, 3, '铠甲类服装');
INSERT INTO `TECH` (COUNTRYID, TYPE, NAME) VALUES(4, 4, '刀盾类');
INSERT INTO `TECH` (COUNTRYID, TYPE, NAME) VALUES(4, 5, '弓类');
INSERT INTO `TECH` (COUNTRYID, TYPE, NAME) VALUES(4, 6, '棍类');
INSERT INTO `TECH` (COUNTRYID, TYPE, NAME) VALUES(4, 7, '杖类');
INSERT INTO `TECH` (COUNTRYID, TYPE, NAME) VALUES(4, 8, '扇类');
INSERT INTO `TECH` (COUNTRYID, TYPE, NAME) VALUES(4, 9, '项链类');
INSERT INTO `TECH` (COUNTRYID, TYPE, NAME) VALUES(4, 10, '戒指类');
INSERT INTO `TECH` (COUNTRYID, TYPE, NAME) VALUES(4, 11, '护腕类');
INSERT INTO `TECH` (COUNTRYID, TYPE, NAME) VALUES(4, 12, '腰带类');
INSERT INTO `TECH` (COUNTRYID, TYPE, NAME) VALUES(4, 13, '鞋子类');
INSERT INTO `TECH` (COUNTRYID, TYPE, NAME) VALUES(4, 14, '头盔类');
|
INSERT into people
VALUES (1, 'Andrea', 'Barion', 1998-05-15)
INSERT into people
VALUES (2, 'Andrea', 'Fabris', 1998-05-15)
INSERT into people
VALUES (3, 'Stefano', 'Ciafardini', 1999-12-18)
INSERT into people
VALUES (4, 'Riccardo', 'De Cicco', 1998-05-15)
INSERT into people
VALUES (5, 'Syed', 'Abbas', 1998-05-15)
|
SELECT 'coffees: CN-->DN' AS FD, CASE WHEN COUNT(*)=0 THEN 'Gildir' ELSE 'Gildir ekki' END AS VALIDITY
FROM(
SELECT CN
FROM coffees
GROUP BY CN
HAVING COUNT(DISTINCT DN) > 1
) X;
|
CREATE TABLE scuttlespace_user (
rowid BIGSERIAL PRIMARY KEY,
username VARCHAR(64) UNIQUE NOT NULL,
external_id VARCHAR(64) UNIQUE NOT NULL,
enabled BOOLEAN NOT NULL,
domain VARCHAR(128),
about TEXT
);
CREATE INDEX user_username_index ON scuttlespace_user(username);
CREATE INDEX user_external_id_index ON scuttlespace_user(external_id);
CREATE INDEX user_domain_index ON scuttlespace_user(domain);
CREATE TABLE user_permissions (
rowid BIGSERIAL PRIMARY KEY,
assignee_external_id VARCHAR(64) NOT NULL REFERENCES scuttlespace_user(external_id),
assigner_external_id VARCHAR(64) NOT NULL REFERENCES scuttlespace_user(external_id),
permissions TEXT NOT NULL
); |
/* Formatted on 21-Oct-21 2:56:56 AM (QP5 v5.287) */
SET SERVEROUTPUT ON;
DECLARE
a INTEGER := 30;
b INTEGER := 40;
c INTEGER := 30;
f REAL := 30;
sal REAL := 30;
bon REAL := 30;
BEGIN
SELECT max (salary)
INTO sal
FROM HR.EMPLOYEES
WHERE FIRST_NAME like 'Ste%';
--- AND SALARY BETWEEN 4000 AND 10000;
DBMS_OUTPUT.put_line ('Value Total Salary: ' || sal);
c := a + b;
DBMS_OUTPUT.put_line ('Value of c: ' || c);
f := 100.0 / 3.0;
DBMS_OUTPUT.put_line ('Value of f: ' || f);
END; |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.